blob: b9c05fe32d6578f9353efeb737fc0a5c9b07ce95 [file] [log] [blame]
Jiyong Parke1346862020-05-18 14:31:30 +09001#
2# Copyright (C) 2020 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Jiyong Parkc0bd8c72020-06-29 10:46:22 +090017# sysprop.mk defines rules for generating <partition>/[etc/]build.prop files
Jiyong Parke1346862020-05-18 14:31:30 +090018
19# -----------------------------------------------------------------
20# property_overrides_split_enabled
21property_overrides_split_enabled :=
22ifeq ($(BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED), true)
23 property_overrides_split_enabled := true
24endif
25
Jiyong Parke1346862020-05-18 14:31:30 +090026BUILDINFO_SH := build/make/tools/buildinfo.sh
Jiyong Parkae556382020-05-20 18:33:43 +090027POST_PROCESS_PROPS := $(HOST_OUT_EXECUTABLES)/post_process_props$(HOST_EXECUTABLE_SUFFIX)
Jiyong Parke1346862020-05-18 14:31:30 +090028
Jiyong Park35a83d12020-05-26 02:01:05 +090029# Emits a set of sysprops common to all partitions to a file.
Jiyong Parke1346862020-05-18 14:31:30 +090030# $(1): Partition name
31# $(2): Output file name
32define generate-common-build-props
Jiyong Park35a83d12020-05-26 02:01:05 +090033 echo "####################################" >> $(2);\
34 echo "# from generate-common-build-props" >> $(2);\
35 echo "# These properties identify this partition image." >> $(2);\
36 echo "####################################" >> $(2);\
37 $(if $(filter system,$(1)),\
38 echo "ro.product.$(1).brand=$(PRODUCT_SYSTEM_BRAND)" >> $(2);\
39 echo "ro.product.$(1).device=$(PRODUCT_SYSTEM_DEVICE)" >> $(2);\
40 echo "ro.product.$(1).manufacturer=$(PRODUCT_SYSTEM_MANUFACTURER)" >> $(2);\
41 echo "ro.product.$(1).model=$(PRODUCT_SYSTEM_MODEL)" >> $(2);\
42 echo "ro.product.$(1).name=$(PRODUCT_SYSTEM_NAME)" >> $(2);\
43 ,\
44 echo "ro.product.$(1).brand=$(PRODUCT_BRAND)" >> $(2);\
45 echo "ro.product.$(1).device=$(TARGET_DEVICE)" >> $(2);\
46 echo "ro.product.$(1).manufacturer=$(PRODUCT_MANUFACTURER)" >> $(2);\
47 echo "ro.product.$(1).model=$(PRODUCT_MODEL)" >> $(2);\
48 echo "ro.product.$(1).name=$(TARGET_PRODUCT)" >> $(2);\
49 )\
SzuWei Linbaf5c812020-12-31 16:59:27 +080050 $(if $(filter system vendor odm,$(1)),\
51 echo "ro.$(1).product.cpu.abilist=$(TARGET_CPU_ABI_LIST) " >> $(2);\
52 echo "ro.$(1).product.cpu.abilist32=$(TARGET_CPU_ABI_LIST_32_BIT)" >> $(2);\
53 echo "ro.$(1).product.cpu.abilist64=$(TARGET_CPU_ABI_LIST_64_BIT)" >> $(2);\
54 )\
Jiyong Park35a83d12020-05-26 02:01:05 +090055 echo "ro.$(1).build.date=`$(DATE_FROM_FILE)`" >> $(2);\
56 echo "ro.$(1).build.date.utc=`$(DATE_FROM_FILE) +%s`" >> $(2);\
57 echo "ro.$(1).build.fingerprint=$(BUILD_FINGERPRINT_FROM_FILE)" >> $(2);\
58 echo "ro.$(1).build.id=$(BUILD_ID)" >> $(2);\
59 echo "ro.$(1).build.tags=$(BUILD_VERSION_TAGS)" >> $(2);\
60 echo "ro.$(1).build.type=$(TARGET_BUILD_VARIANT)" >> $(2);\
61 echo "ro.$(1).build.version.incremental=$(BUILD_NUMBER_FROM_FILE)" >> $(2);\
Tianjiee88ac672020-10-15 17:22:48 -070062 echo "ro.$(1).build.version.release=$(PLATFORM_VERSION_LAST_STABLE)" >> $(2);\
63 echo "ro.$(1).build.version.release_or_codename=$(PLATFORM_VERSION)" >> $(2);\
Jiyong Park35a83d12020-05-26 02:01:05 +090064 echo "ro.$(1).build.version.sdk=$(PLATFORM_SDK_VERSION)" >> $(2);\
Jiyong Parke1346862020-05-18 14:31:30 +090065
Jiyong Parke1346862020-05-18 14:31:30 +090066endef
67
Jiyong Parkc0bd8c72020-06-29 10:46:22 +090068# Rule for generating <partition>/[etc/]build.prop file
Jiyong Parke28fa802020-05-26 00:21:20 +090069#
70# $(1): partition name
71# $(2): path to the output
72# $(3): path to the input *.prop files. The contents of the files are directly
73# emitted to the output
74# $(4): list of variable names each of which contains name=value pairs
75# $(5): optional list of prop names to force remove from the output. Properties from both
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +010076# $(3) and (4) are affected
77# $(6): optional list of files to append at the end. The content of each file is emitted
78# to the output
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +010079# $(7): optional flag to skip common properties generation
Jiyong Parke28fa802020-05-26 00:21:20 +090080define build-properties
81ALL_DEFAULT_INSTALLED_MODULES += $(2)
82
Jiyong Parkd721e872020-06-22 17:30:57 +090083$(eval # Properties can be assigned using `prop ?= value` or `prop = value` syntax.)
84$(eval # Eliminate spaces around the ?= and = separators.)
Jiyong Parke28fa802020-05-26 00:21:20 +090085$(foreach name,$(strip $(4)),\
Jiyong Parkd721e872020-06-22 17:30:57 +090086 $(eval _temp := $$(call collapse-pairs,$$($(name)),?=))\
87 $(eval _resolved_$(name) := $$(call collapse-pairs,$$(_temp),=))\
Jiyong Parke28fa802020-05-26 00:21:20 +090088)
89
Jiyong Park0b4fccb2020-06-26 17:38:00 +090090$(eval # Implement the legacy behavior when BUILD_BROKEN_DUP_SYSPROP is on.)
91$(eval # Optional assignments are all converted to normal assignments and)
92$(eval # when their duplicates the first one wins)
93$(if $(filter true,$(BUILD_BROKEN_DUP_SYSPROP)),\
94 $(foreach name,$(strip $(4)),\
95 $(eval _temp := $$(subst ?=,=,$$(_resolved_$(name))))\
96 $(eval _resolved_$(name) := $$(call uniq-pairs-by-first-component,$$(_resolved_$(name)),=))\
97 )\
98 $(eval _option := --allow-dup)\
Jiyong Parke28fa802020-05-26 00:21:20 +090099)
100
Inseob Kim2a70ea02021-06-09 17:36:08 +0900101$(2): $(POST_PROCESS_PROPS) $(INTERNAL_BUILD_ID_MAKEFILE) $(3) $(6)
Jiyong Parke28fa802020-05-26 00:21:20 +0900102 $(hide) echo Building $$@
103 $(hide) mkdir -p $$(dir $$@)
104 $(hide) rm -f $$@ && touch $$@
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100105ifneq ($(strip $(7)), true)
Jiyong Parke28fa802020-05-26 00:21:20 +0900106 $(hide) $$(call generate-common-build-props,$(call to-lower,$(strip $(1))),$$@)
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100107endif
Jiyong Parke28fa802020-05-26 00:21:20 +0900108 $(hide) $(foreach file,$(strip $(3)),\
109 if [ -f "$(file)" ]; then\
110 echo "" >> $$@;\
111 echo "####################################" >> $$@;\
112 echo "# from $(file)" >> $$@;\
113 echo "####################################" >> $$@;\
114 cat $(file) >> $$@;\
115 fi;)
116 $(hide) $(foreach name,$(strip $(4)),\
117 echo "" >> $$@;\
118 echo "####################################" >> $$@;\
119 echo "# from variable $(name)" >> $$@;\
120 echo "####################################" >> $$@;\
121 $$(foreach line,$$(_resolved_$(name)),\
122 echo "$$(line)" >> $$@;\
123 )\
124 )
Justin Yun07ceaa72021-04-02 16:29:06 +0900125 $(hide) $(POST_PROCESS_PROPS) $$(_option) --sdk-version $(PLATFORM_SDK_VERSION) $$@ $(5)
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100126 $(hide) $(foreach file,$(strip $(6)),\
127 if [ -f "$(file)" ]; then\
128 cat $(file) >> $$@;\
129 fi;)
Jiyong Parke28fa802020-05-26 00:21:20 +0900130 $(hide) echo "# end of file" >> $$@
Bob Badoure9bdbc52022-03-10 11:31:07 -0800131
132$(call declare-0p-target,$(2))
Jiyong Parke28fa802020-05-26 00:21:20 +0900133endef
134
Jiyong Parke1346862020-05-18 14:31:30 +0900135# -----------------------------------------------------------------
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900136# Define fingerprint, thumbprint, and version tags for the current build
Jiyong Parke28fa802020-05-26 00:21:20 +0900137#
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900138# BUILD_VERSION_TAGS is a comma-separated list of tags chosen by the device
139# implementer that further distinguishes the build. It's basically defined
140# by the device implementer. Here, we are adding a mandatory tag that
141# identifies the signing config of the build.
Jiyong Parke1346862020-05-18 14:31:30 +0900142BUILD_VERSION_TAGS := $(BUILD_VERSION_TAGS)
143ifeq ($(TARGET_BUILD_TYPE),debug)
144 BUILD_VERSION_TAGS += debug
145endif
146# The "test-keys" tag marks builds signed with the old test keys,
147# which are available in the SDK. "dev-keys" marks builds signed with
148# non-default dev keys (usually private keys from a vendor directory).
149# Both of these tags will be removed and replaced with "release-keys"
150# when the target-files is signed in a post-build step.
151ifeq ($(DEFAULT_SYSTEM_DEV_CERTIFICATE),build/make/target/product/security/testkey)
152BUILD_KEYS := test-keys
153else
154BUILD_KEYS := dev-keys
155endif
156BUILD_VERSION_TAGS += $(BUILD_KEYS)
157BUILD_VERSION_TAGS := $(subst $(space),$(comma),$(sort $(BUILD_VERSION_TAGS)))
158
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900159# BUILD_FINGERPRINT is used used to uniquely identify the combined build and
160# product; used by the OTA server.
Jiyong Parke1346862020-05-18 14:31:30 +0900161ifeq (,$(strip $(BUILD_FINGERPRINT)))
162 ifeq ($(strip $(HAS_BUILD_NUMBER)),false)
163 BF_BUILD_NUMBER := $(BUILD_USERNAME)$$($(DATE_FROM_FILE) +%m%d%H%M)
164 else
165 BF_BUILD_NUMBER := $(file <$(BUILD_NUMBER_FILE))
166 endif
167 BUILD_FINGERPRINT := $(PRODUCT_BRAND)/$(TARGET_PRODUCT)/$(TARGET_DEVICE):$(PLATFORM_VERSION)/$(BUILD_ID)/$(BF_BUILD_NUMBER):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS)
168endif
169# unset it for safety.
170BF_BUILD_NUMBER :=
171
172BUILD_FINGERPRINT_FILE := $(PRODUCT_OUT)/build_fingerprint.txt
173ifneq (,$(shell mkdir -p $(PRODUCT_OUT) && echo $(BUILD_FINGERPRINT) >$(BUILD_FINGERPRINT_FILE) && grep " " $(BUILD_FINGERPRINT_FILE)))
174 $(error BUILD_FINGERPRINT cannot contain spaces: "$(file <$(BUILD_FINGERPRINT_FILE))")
175endif
176BUILD_FINGERPRINT_FROM_FILE := $$(cat $(BUILD_FINGERPRINT_FILE))
177# unset it for safety.
178BUILD_FINGERPRINT :=
179
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900180# BUILD_THUMBPRINT is used to uniquely identify the system build; used by the
181# OTA server. This purposefully excludes any product-specific variables.
Jiyong Parke1346862020-05-18 14:31:30 +0900182ifeq (,$(strip $(BUILD_THUMBPRINT)))
183 BUILD_THUMBPRINT := $(PLATFORM_VERSION)/$(BUILD_ID)/$(BUILD_NUMBER_FROM_FILE):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS)
184endif
185
186BUILD_THUMBPRINT_FILE := $(PRODUCT_OUT)/build_thumbprint.txt
187ifneq (,$(shell mkdir -p $(PRODUCT_OUT) && echo $(BUILD_THUMBPRINT) >$(BUILD_THUMBPRINT_FILE) && grep " " $(BUILD_THUMBPRINT_FILE)))
188 $(error BUILD_THUMBPRINT cannot contain spaces: "$(file <$(BUILD_THUMBPRINT_FILE))")
189endif
190BUILD_THUMBPRINT_FROM_FILE := $$(cat $(BUILD_THUMBPRINT_FILE))
191# unset it for safety.
192BUILD_THUMBPRINT :=
193
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900194# -----------------------------------------------------------------
195# Define human readable strings that describe this build
196#
Jiyong Parke1346862020-05-18 14:31:30 +0900197
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900198# BUILD_ID: detail info; has the same info as the build fingerprint
199BUILD_DESC := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) $(PLATFORM_VERSION) $(BUILD_ID) $(BUILD_NUMBER_FROM_FILE) $(BUILD_VERSION_TAGS)
200
201# BUILD_DISPLAY_ID is shown under Settings -> About Phone
Jiyong Parke1346862020-05-18 14:31:30 +0900202ifeq ($(TARGET_BUILD_VARIANT),user)
203 # User builds should show:
204 # release build number or branch.buld_number non-release builds
205
206 # Dev. branches should have DISPLAY_BUILD_NUMBER set
207 ifeq (true,$(DISPLAY_BUILD_NUMBER))
208 BUILD_DISPLAY_ID := $(BUILD_ID).$(BUILD_NUMBER_FROM_FILE) $(BUILD_KEYS)
209 else
210 BUILD_DISPLAY_ID := $(BUILD_ID) $(BUILD_KEYS)
211 endif
212else
213 # Non-user builds should show detailed build information
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900214 BUILD_DISPLAY_ID := $(BUILD_DESC)
Jiyong Parke1346862020-05-18 14:31:30 +0900215endif
216
Jiyong Parke1346862020-05-18 14:31:30 +0900217# TARGET_BUILD_FLAVOR and ro.build.flavor are used only by the test
218# harness to distinguish builds. Only add _asan for a sanitized build
219# if it isn't already a part of the flavor (via a dedicated lunch
220# config for example).
221TARGET_BUILD_FLAVOR := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)
222ifneq (, $(filter address, $(SANITIZE_TARGET)))
223ifeq (,$(findstring _asan,$(TARGET_BUILD_FLAVOR)))
224TARGET_BUILD_FLAVOR := $(TARGET_BUILD_FLAVOR)_asan
225endif
226endif
227
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900228KNOWN_OEM_THUMBPRINT_PROPERTIES := \
229 ro.product.brand \
230 ro.product.name \
231 ro.product.device
232OEM_THUMBPRINT_PROPERTIES := $(filter $(KNOWN_OEM_THUMBPRINT_PROPERTIES),\
233 $(PRODUCT_OEM_PROPERTIES))
234KNOWN_OEM_THUMBPRINT_PROPERTIES:=
235
236# -----------------------------------------------------------------
237# system/build.prop
238#
239# Note: parts of this file that can't be generated by the build-properties
240# macro are manually created as separate files and then fed into the macro
241
242# Accepts a whitespace separated list of product locales such as
243# (en_US en_AU en_GB...) and returns the first locale in the list with
244# underscores replaced with hyphens. In the example above, this will
245# return "en-US".
246define get-default-product-locale
247$(strip $(subst _,-, $(firstword $(1))))
248endef
249
Jiyong Parkc60c5142020-07-14 15:15:50 +0900250gen_from_buildinfo_sh := $(call intermediates-dir-for,PACKAGING,system_build_prop)/buildinfo.prop
Rupert Shuttleworth3b37bc82020-12-08 09:46:55 +0000251$(gen_from_buildinfo_sh): $(INTERNAL_BUILD_ID_MAKEFILE) $(API_FINGERPRINT) | $(BUILD_DATETIME_FILE) $(BUILD_NUMBER_FILE)
Jiyong Parke1346862020-05-18 14:31:30 +0900252 $(hide) TARGET_BUILD_TYPE="$(TARGET_BUILD_VARIANT)" \
253 TARGET_BUILD_FLAVOR="$(TARGET_BUILD_FLAVOR)" \
254 TARGET_DEVICE="$(TARGET_DEVICE)" \
255 PRODUCT_DEFAULT_LOCALE="$(call get-default-product-locale,$(PRODUCT_LOCALES))" \
256 PRODUCT_DEFAULT_WIFI_CHANNELS="$(PRODUCT_DEFAULT_WIFI_CHANNELS)" \
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900257 PRIVATE_BUILD_DESC="$(BUILD_DESC)" \
Jiyong Parke1346862020-05-18 14:31:30 +0900258 BUILD_ID="$(BUILD_ID)" \
259 BUILD_DISPLAY_ID="$(BUILD_DISPLAY_ID)" \
260 DATE="$(DATE_FROM_FILE)" \
261 BUILD_USERNAME="$(BUILD_USERNAME)" \
262 BUILD_HOSTNAME="$(BUILD_HOSTNAME)" \
263 BUILD_NUMBER="$(BUILD_NUMBER_FROM_FILE)" \
264 BOARD_BUILD_SYSTEM_ROOT_IMAGE="$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)" \
Tianjie97976232021-05-05 12:07:33 -0700265 BOARD_USE_VBMETA_DIGTEST_IN_FINGERPRINT="$(BOARD_USE_VBMETA_DIGTEST_IN_FINGERPRINT)" \
Jiyong Parke1346862020-05-18 14:31:30 +0900266 PLATFORM_VERSION="$(PLATFORM_VERSION)" \
Colin Crossa4925442022-02-28 18:01:35 -0800267 PLATFORM_DISPLAY_VERSION="$(PLATFORM_DISPLAY_VERSION)" \
Jiyong Parke1346862020-05-18 14:31:30 +0900268 PLATFORM_VERSION_LAST_STABLE="$(PLATFORM_VERSION_LAST_STABLE)" \
269 PLATFORM_SECURITY_PATCH="$(PLATFORM_SECURITY_PATCH)" \
270 PLATFORM_BASE_OS="$(PLATFORM_BASE_OS)" \
271 PLATFORM_SDK_VERSION="$(PLATFORM_SDK_VERSION)" \
272 PLATFORM_PREVIEW_SDK_VERSION="$(PLATFORM_PREVIEW_SDK_VERSION)" \
273 PLATFORM_PREVIEW_SDK_FINGERPRINT="$$(cat $(API_FINGERPRINT))" \
274 PLATFORM_VERSION_CODENAME="$(PLATFORM_VERSION_CODENAME)" \
275 PLATFORM_VERSION_ALL_CODENAMES="$(PLATFORM_VERSION_ALL_CODENAMES)" \
satayev2d945862022-02-09 21:59:28 +0000276 PLATFORM_VERSION_KNOWN_CODENAMES="$(PLATFORM_VERSION_KNOWN_CODENAMES)" \
Jiyong Parke1346862020-05-18 14:31:30 +0900277 PLATFORM_MIN_SUPPORTED_TARGET_SDK_VERSION="$(PLATFORM_MIN_SUPPORTED_TARGET_SDK_VERSION)" \
278 BUILD_VERSION_TAGS="$(BUILD_VERSION_TAGS)" \
279 $(if $(OEM_THUMBPRINT_PROPERTIES),BUILD_THUMBPRINT="$(BUILD_THUMBPRINT_FROM_FILE)") \
280 TARGET_CPU_ABI_LIST="$(TARGET_CPU_ABI_LIST)" \
281 TARGET_CPU_ABI_LIST_32_BIT="$(TARGET_CPU_ABI_LIST_32_BIT)" \
282 TARGET_CPU_ABI_LIST_64_BIT="$(TARGET_CPU_ABI_LIST_64_BIT)" \
283 TARGET_CPU_ABI="$(TARGET_CPU_ABI)" \
284 TARGET_CPU_ABI2="$(TARGET_CPU_ABI2)" \
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900285 bash $(BUILDINFO_SH) > $@
Jiyong Parke1346862020-05-18 14:31:30 +0900286
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900287ifdef TARGET_SYSTEM_PROP
288system_prop_file := $(TARGET_SYSTEM_PROP)
289else
290system_prop_file := $(wildcard $(TARGET_DEVICE_DIR)/system.prop)
291endif
292
293_prop_files_ := \
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900294 $(gen_from_buildinfo_sh) \
295 $(system_prop_file)
296
297# Order matters here. When there are duplicates, the last one wins.
298# TODO(b/117892318): don't allow duplicates so that the ordering doesn't matter
299_prop_vars_ := \
300 ADDITIONAL_SYSTEM_PROPERTIES \
Jiyong Parkeb49b342020-05-29 17:50:03 +0900301 PRODUCT_SYSTEM_PROPERTIES
302
303# TODO(b/117892318): deprecate this
304_prop_vars_ += \
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900305 PRODUCT_SYSTEM_DEFAULT_PROPERTIES
306
307ifndef property_overrides_split_enabled
308_prop_vars_ += \
Garfield Tan04714da2020-08-13 15:21:32 -0700309 ADDITIONAL_VENDOR_PROPERTIES \
310 PRODUCT_VENDOR_PROPERTIES
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900311endif
312
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900313INSTALLED_BUILD_PROP_TARGET := $(TARGET_OUT)/build.prop
314
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100315$(eval $(call build-properties,\
316 system,\
317 $(INSTALLED_BUILD_PROP_TARGET),\
318 $(_prop_files_),\
319 $(_prop_vars_),\
Peter Collingbourne0e3b0952022-02-18 19:17:04 -0800320 $(PRODUCT_SYSTEM_PROPERTY_BLACKLIST),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100321 $(empty),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100322 $(empty)))
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900323
Jiyong Parke1346862020-05-18 14:31:30 +0900324# -----------------------------------------------------------------
Jiyong Parke28fa802020-05-26 00:21:20 +0900325# vendor/build.prop
Jiyong Parke1346862020-05-18 14:31:30 +0900326#
Jiyong Parke28fa802020-05-26 00:21:20 +0900327_prop_files_ := $(if $(TARGET_VENDOR_PROP),\
328 $(TARGET_VENDOR_PROP),\
329 $(wildcard $(TARGET_DEVICE_DIR)/vendor.prop))
Jiyong Parke1346862020-05-18 14:31:30 +0900330
Jiyong Park3a2e95a2020-05-25 17:56:09 +0900331android_info_prop := $(call intermediates-dir-for,ETC,android_info_prop)/android_info.prop
332$(android_info_prop): $(INSTALLED_ANDROID_INFO_TXT_TARGET)
333 cat $< | grep 'require version-' | sed -e 's/require version-/ro.build.expect./g' > $@
334
Donghyun Jo8c65ef62021-03-02 08:51:03 +0900335_prop_files_ += $(android_info_prop)
Jiyong Park3a2e95a2020-05-25 17:56:09 +0900336
Jiyong Parke1346862020-05-18 14:31:30 +0900337ifdef property_overrides_split_enabled
Jiyong Parke28fa802020-05-26 00:21:20 +0900338# Order matters here. When there are duplicates, the last one wins.
339# TODO(b/117892318): don't allow duplicates so that the ordering doesn't matter
340_prop_vars_ := \
341 ADDITIONAL_VENDOR_PROPERTIES \
Jiyong Parkeb49b342020-05-29 17:50:03 +0900342 PRODUCT_VENDOR_PROPERTIES
343
344# TODO(b/117892318): deprecate this
345_prop_vars_ += \
346 PRODUCT_DEFAULT_PROPERTY_OVERRIDES \
Jiyong Parke28fa802020-05-26 00:21:20 +0900347 PRODUCT_PROPERTY_OVERRIDES
Jiyong Parke1346862020-05-18 14:31:30 +0900348else
Jiyong Parke28fa802020-05-26 00:21:20 +0900349_prop_vars_ :=
Jiyong Parke1346862020-05-18 14:31:30 +0900350endif
351
Jiyong Parke28fa802020-05-26 00:21:20 +0900352INSTALLED_VENDOR_BUILD_PROP_TARGET := $(TARGET_OUT_VENDOR)/build.prop
353$(eval $(call build-properties,\
354 vendor,\
355 $(INSTALLED_VENDOR_BUILD_PROP_TARGET),\
356 $(_prop_files_),\
357 $(_prop_vars_),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100358 $(PRODUCT_VENDOR_PROPERTY_BLACKLIST),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100359 $(empty),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100360 $(empty)))
Jiyong Parke1346862020-05-18 14:31:30 +0900361
Jiyong Parke28fa802020-05-26 00:21:20 +0900362# -----------------------------------------------------------------
Jiyong Parkc0bd8c72020-06-29 10:46:22 +0900363# product/etc/build.prop
Jiyong Parke28fa802020-05-26 00:21:20 +0900364#
365
366_prop_files_ := $(if $(TARGET_PRODUCT_PROP),\
367 $(TARGET_PRODUCT_PROP),\
368 $(wildcard $(TARGET_DEVICE_DIR)/product.prop))
369
370# Order matters here. When there are duplicates, the last one wins.
371# TODO(b/117892318): don't allow duplicates so that the ordering doesn't matter
372_prop_vars_ := \
373 ADDITIONAL_PRODUCT_PROPERTIES \
374 PRODUCT_PRODUCT_PROPERTIES
375
Jiyong Parkc0bd8c72020-06-29 10:46:22 +0900376INSTALLED_PRODUCT_BUILD_PROP_TARGET := $(TARGET_OUT_PRODUCT)/etc/build.prop
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100377
378ifdef PRODUCT_OEM_PROPERTIES
379import_oem_prop := $(call intermediates-dir-for,ETC,import_oem_prop)/oem.prop
380
381$(import_oem_prop):
382 $(hide) echo "####################################" >> $@; \
383 echo "# PRODUCT_OEM_PROPERTIES" >> $@; \
384 echo "####################################" >> $@;
385 $(hide) $(foreach prop,$(PRODUCT_OEM_PROPERTIES), \
386 echo "import /oem/oem.prop $(prop)" >> $@;)
387
388_footers_ := $(import_oem_prop)
389else
390_footers_ :=
391endif
392
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100393# Skip common /product properties generation if device released before R and
394# has no product partition. This is the first part of the check.
395ifeq ($(call math_lt,$(if $(PRODUCT_SHIPPING_API_LEVEL),$(PRODUCT_SHIPPING_API_LEVEL),30),30), true)
396 _skip_common_properties := true
397endif
398
399# The second part of the check - always generate common properties for the
400# devices with product partition regardless of shipping level.
401ifneq ($(BOARD_USES_PRODUCTIMAGE),)
402 _skip_common_properties :=
403endif
404
Jiyong Parke28fa802020-05-26 00:21:20 +0900405$(eval $(call build-properties,\
406 product,\
407 $(INSTALLED_PRODUCT_BUILD_PROP_TARGET),\
408 $(_prop_files_),\
409 $(_prop_vars_),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100410 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100411 $(_footers_),\
412 $(_skip_common_properties)))
413
414_skip_common_properties :=
Jiyong Parke1346862020-05-18 14:31:30 +0900415
416# ----------------------------------------------------------------
Jiyong Park62117c82020-06-26 09:56:31 +0900417# odm/etc/build.prop
Jiyong Parke28fa802020-05-26 00:21:20 +0900418#
419_prop_files_ := $(if $(TARGET_ODM_PROP),\
420 $(TARGET_ODM_PROP),\
421 $(wildcard $(TARGET_DEVICE_DIR)/odm.prop))
Jiyong Parke1346862020-05-18 14:31:30 +0900422
Jiyong Parke28fa802020-05-26 00:21:20 +0900423# Order matters here. When there are duplicates, the last one wins.
424# TODO(b/117892318): don't allow duplicates so that the ordering doesn't matter
425_prop_vars_ := \
426 ADDITIONAL_ODM_PROPERTIES \
427 PRODUCT_ODM_PROPERTIES
Jiyong Parke1346862020-05-18 14:31:30 +0900428
Jiyong Park62117c82020-06-26 09:56:31 +0900429INSTALLED_ODM_BUILD_PROP_TARGET := $(TARGET_OUT_ODM)/etc/build.prop
Jiyong Parke28fa802020-05-26 00:21:20 +0900430$(eval $(call build-properties,\
431 odm,\
432 $(INSTALLED_ODM_BUILD_PROP_TARGET),\
Hidefumi Kanekob09a36c2021-07-30 17:38:36 +0900433 $(_prop_files_),\
Jiyong Parke28fa802020-05-26 00:21:20 +0900434 $(_prop_vars_),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100435 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100436 $(empty),\
Jiyong Parke28fa802020-05-26 00:21:20 +0900437 $(empty)))
Jiyong Parke1346862020-05-18 14:31:30 +0900438
Yifan Hong51a971b2020-06-25 17:00:27 -0700439# ----------------------------------------------------------------
440# vendor_dlkm/etc/build.prop
441#
442
443INSTALLED_VENDOR_DLKM_BUILD_PROP_TARGET := $(TARGET_OUT_VENDOR_DLKM)/etc/build.prop
444$(eval $(call build-properties,\
445 vendor_dlkm,\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100446 $(INSTALLED_VENDOR_DLKM_BUILD_PROP_TARGET),\
447 $(empty),\
448 $(empty),\
449 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100450 $(empty),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100451 $(empty)))
Yifan Hong51a971b2020-06-25 17:00:27 -0700452
Yifan Hong81a092f2020-07-15 17:02:07 -0700453# ----------------------------------------------------------------
454# odm_dlkm/etc/build.prop
455#
456
457INSTALLED_ODM_DLKM_BUILD_PROP_TARGET := $(TARGET_OUT_ODM_DLKM)/etc/build.prop
458$(eval $(call build-properties,\
459 odm_dlkm,\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100460 $(INSTALLED_ODM_DLKM_BUILD_PROP_TARGET),\
461 $(empty),\
462 $(empty),\
463 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100464 $(empty),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100465 $(empty)))
Yifan Hong81a092f2020-07-15 17:02:07 -0700466
Ramji Jiyani13a41372022-01-27 07:05:08 +0000467# ----------------------------------------------------------------
468# system_dlkm/build.prop
469#
470
471INSTALLED_SYSTEM_DLKM_BUILD_PROP_TARGET := $(TARGET_OUT_SYSTEM_DLKM)/etc/build.prop
472$(eval $(call build-properties,\
473 system_dlkm,\
474 $(INSTALLED_SYSTEM_DLKM_BUILD_PROP_TARGET),\
475 $(empty),\
476 $(empty),\
477 $(empty),\
478 $(empty),\
479 $(empty)))
480
Jiyong Parke1346862020-05-18 14:31:30 +0900481# -----------------------------------------------------------------
Jiyong Parkc0bd8c72020-06-29 10:46:22 +0900482# system_ext/etc/build.prop
Jiyong Parke28fa802020-05-26 00:21:20 +0900483#
484_prop_files_ := $(if $(TARGET_SYSTEM_EXT_PROP),\
485 $(TARGET_SYSTEM_EXT_PROP),\
486 $(wildcard $(TARGET_DEVICE_DIR)/system_ext.prop))
487
488# Order matters here. When there are duplicates, the last one wins.
489# TODO(b/117892318): don't allow duplicates so that the ordering doesn't matter
490_prop_vars_ := PRODUCT_SYSTEM_EXT_PROPERTIES
491
Jiyong Parkc0bd8c72020-06-29 10:46:22 +0900492INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET := $(TARGET_OUT_SYSTEM_EXT)/etc/build.prop
Jiyong Parke28fa802020-05-26 00:21:20 +0900493$(eval $(call build-properties,\
494 system_ext,\
495 $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET),\
496 $(_prop_files_),\
497 $(_prop_vars_),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100498 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100499 $(empty),\
Jiyong Parke28fa802020-05-26 00:21:20 +0900500 $(empty)))
Yifan Hong33fd5d42020-09-24 18:18:26 -0700501
502# ----------------------------------------------------------------
503# ramdisk/boot/etc/build.prop
504#
505
506RAMDISK_BUILD_PROP_REL_PATH := system/etc/ramdisk/build.prop
507INSTALLED_RAMDISK_BUILD_PROP_TARGET := $(TARGET_RAMDISK_OUT)/$(RAMDISK_BUILD_PROP_REL_PATH)
508$(eval $(call build-properties,\
509 bootimage,\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100510 $(INSTALLED_RAMDISK_BUILD_PROP_TARGET),\
511 $(empty),\
512 $(empty),\
513 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100514 $(empty),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100515 $(empty)))