blob: 5ff93a13e7c806fd8b80e4114b190075f09f4004 [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
LuK133769162bd2021-11-23 16:14:57 +020033 bash -c '\
34 $(or $(PRODUCT_BUILD_PROP_OVERRIDES),:);\
Jiyong Park35a83d12020-05-26 02:01:05 +090035 echo "####################################" >> $(2);\
36 echo "# from generate-common-build-props" >> $(2);\
37 echo "# These properties identify this partition image." >> $(2);\
38 echo "####################################" >> $(2);\
39 $(if $(filter system,$(1)),\
40 echo "ro.product.$(1).brand=$(PRODUCT_SYSTEM_BRAND)" >> $(2);\
41 echo "ro.product.$(1).device=$(PRODUCT_SYSTEM_DEVICE)" >> $(2);\
42 echo "ro.product.$(1).manufacturer=$(PRODUCT_SYSTEM_MANUFACTURER)" >> $(2);\
43 echo "ro.product.$(1).model=$(PRODUCT_SYSTEM_MODEL)" >> $(2);\
44 echo "ro.product.$(1).name=$(PRODUCT_SYSTEM_NAME)" >> $(2);\
45 ,\
46 echo "ro.product.$(1).brand=$(PRODUCT_BRAND)" >> $(2);\
LuK133769162bd2021-11-23 16:14:57 +020047 echo "ro.product.$(1).device=$${TARGET_DEVICE:-$(TARGET_DEVICE)}" >> $(2);\
Jiyong Park35a83d12020-05-26 02:01:05 +090048 echo "ro.product.$(1).manufacturer=$(PRODUCT_MANUFACTURER)" >> $(2);\
LuK133769162bd2021-11-23 16:14:57 +020049 echo "ro.product.$(1).model=$${PRODUCT_MODEL:-$(PRODUCT_MODEL)}" >> $(2);\
50 echo "ro.product.$(1).name=$${TARGET_PRODUCT:-$(TARGET_PRODUCT)}" >> $(2);\
Jiyong Park35a83d12020-05-26 02:01:05 +090051 )\
Christopher Ferris5a564d82022-04-08 15:20:23 -070052 $(if $(filter true,$(ZYGOTE_FORCE_64)),\
53 $(if $(filter vendor,$(1)),\
54 echo "ro.$(1).product.cpu.abilist=$(TARGET_CPU_ABI_LIST_64_BIT)" >> $(2);\
55 echo "ro.$(1).product.cpu.abilist32=" >> $(2);\
56 echo "ro.$(1).product.cpu.abilist64=$(TARGET_CPU_ABI_LIST_64_BIT)" >> $(2);\
57 )\
58 ,\
59 $(if $(filter system vendor odm,$(1)),\
60 echo "ro.$(1).product.cpu.abilist=$(TARGET_CPU_ABI_LIST)" >> $(2);\
61 echo "ro.$(1).product.cpu.abilist32=$(TARGET_CPU_ABI_LIST_32_BIT)" >> $(2);\
62 echo "ro.$(1).product.cpu.abilist64=$(TARGET_CPU_ABI_LIST_64_BIT)" >> $(2);\
63 )\
SzuWei Linbaf5c812020-12-31 16:59:27 +080064 )\
Jiyong Park35a83d12020-05-26 02:01:05 +090065 echo "ro.$(1).build.date=`$(DATE_FROM_FILE)`" >> $(2);\
66 echo "ro.$(1).build.date.utc=`$(DATE_FROM_FILE) +%s`" >> $(2);\
67 echo "ro.$(1).build.fingerprint=$(BUILD_FINGERPRINT_FROM_FILE)" >> $(2);\
68 echo "ro.$(1).build.id=$(BUILD_ID)" >> $(2);\
69 echo "ro.$(1).build.tags=$(BUILD_VERSION_TAGS)" >> $(2);\
70 echo "ro.$(1).build.type=$(TARGET_BUILD_VARIANT)" >> $(2);\
71 echo "ro.$(1).build.version.incremental=$(BUILD_NUMBER_FROM_FILE)" >> $(2);\
Tianjiee88ac672020-10-15 17:22:48 -070072 echo "ro.$(1).build.version.release=$(PLATFORM_VERSION_LAST_STABLE)" >> $(2);\
73 echo "ro.$(1).build.version.release_or_codename=$(PLATFORM_VERSION)" >> $(2);\
Jiyong Park35a83d12020-05-26 02:01:05 +090074 echo "ro.$(1).build.version.sdk=$(PLATFORM_SDK_VERSION)" >> $(2);\
LuK133769162bd2021-11-23 16:14:57 +020075 ';\
Jiyong Parke1346862020-05-18 14:31:30 +090076
Jiyong Parke1346862020-05-18 14:31:30 +090077endef
78
Jiyong Parkc0bd8c72020-06-29 10:46:22 +090079# Rule for generating <partition>/[etc/]build.prop file
Jiyong Parke28fa802020-05-26 00:21:20 +090080#
81# $(1): partition name
82# $(2): path to the output
83# $(3): path to the input *.prop files. The contents of the files are directly
84# emitted to the output
85# $(4): list of variable names each of which contains name=value pairs
86# $(5): optional list of prop names to force remove from the output. Properties from both
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +010087# $(3) and (4) are affected
88# $(6): optional list of files to append at the end. The content of each file is emitted
89# to the output
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +010090# $(7): optional flag to skip common properties generation
Jiyong Parke28fa802020-05-26 00:21:20 +090091define build-properties
92ALL_DEFAULT_INSTALLED_MODULES += $(2)
93
Jiyong Parkd721e872020-06-22 17:30:57 +090094$(eval # Properties can be assigned using `prop ?= value` or `prop = value` syntax.)
95$(eval # Eliminate spaces around the ?= and = separators.)
Jiyong Parke28fa802020-05-26 00:21:20 +090096$(foreach name,$(strip $(4)),\
Jiyong Parkd721e872020-06-22 17:30:57 +090097 $(eval _temp := $$(call collapse-pairs,$$($(name)),?=))\
98 $(eval _resolved_$(name) := $$(call collapse-pairs,$$(_temp),=))\
Jiyong Parke28fa802020-05-26 00:21:20 +090099)
100
Jiyong Park0b4fccb2020-06-26 17:38:00 +0900101$(eval # Implement the legacy behavior when BUILD_BROKEN_DUP_SYSPROP is on.)
102$(eval # Optional assignments are all converted to normal assignments and)
103$(eval # when their duplicates the first one wins)
104$(if $(filter true,$(BUILD_BROKEN_DUP_SYSPROP)),\
105 $(foreach name,$(strip $(4)),\
106 $(eval _temp := $$(subst ?=,=,$$(_resolved_$(name))))\
107 $(eval _resolved_$(name) := $$(call uniq-pairs-by-first-component,$$(_resolved_$(name)),=))\
108 )\
109 $(eval _option := --allow-dup)\
Jiyong Parke28fa802020-05-26 00:21:20 +0900110)
111
Inseob Kim2a70ea02021-06-09 17:36:08 +0900112$(2): $(POST_PROCESS_PROPS) $(INTERNAL_BUILD_ID_MAKEFILE) $(3) $(6)
Jiyong Parke28fa802020-05-26 00:21:20 +0900113 $(hide) echo Building $$@
114 $(hide) mkdir -p $$(dir $$@)
115 $(hide) rm -f $$@ && touch $$@
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100116ifneq ($(strip $(7)), true)
Jiyong Parke28fa802020-05-26 00:21:20 +0900117 $(hide) $$(call generate-common-build-props,$(call to-lower,$(strip $(1))),$$@)
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100118endif
Jiyong Parke28fa802020-05-26 00:21:20 +0900119 $(hide) $(foreach file,$(strip $(3)),\
120 if [ -f "$(file)" ]; then\
121 echo "" >> $$@;\
122 echo "####################################" >> $$@;\
123 echo "# from $(file)" >> $$@;\
124 echo "####################################" >> $$@;\
125 cat $(file) >> $$@;\
126 fi;)
127 $(hide) $(foreach name,$(strip $(4)),\
128 echo "" >> $$@;\
129 echo "####################################" >> $$@;\
130 echo "# from variable $(name)" >> $$@;\
131 echo "####################################" >> $$@;\
132 $$(foreach line,$$(_resolved_$(name)),\
133 echo "$$(line)" >> $$@;\
134 )\
135 )
Justin Yun07ceaa72021-04-02 16:29:06 +0900136 $(hide) $(POST_PROCESS_PROPS) $$(_option) --sdk-version $(PLATFORM_SDK_VERSION) $$@ $(5)
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100137 $(hide) $(foreach file,$(strip $(6)),\
138 if [ -f "$(file)" ]; then\
139 cat $(file) >> $$@;\
140 fi;)
Jiyong Parke28fa802020-05-26 00:21:20 +0900141 $(hide) echo "# end of file" >> $$@
Bob Badoure9bdbc52022-03-10 11:31:07 -0800142
143$(call declare-0p-target,$(2))
Jiyong Parke28fa802020-05-26 00:21:20 +0900144endef
145
Jiyong Parke1346862020-05-18 14:31:30 +0900146# -----------------------------------------------------------------
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900147# Define fingerprint, thumbprint, and version tags for the current build
Jiyong Parke28fa802020-05-26 00:21:20 +0900148#
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900149# BUILD_VERSION_TAGS is a comma-separated list of tags chosen by the device
150# implementer that further distinguishes the build. It's basically defined
151# by the device implementer. Here, we are adding a mandatory tag that
152# identifies the signing config of the build.
Jiyong Parke1346862020-05-18 14:31:30 +0900153BUILD_VERSION_TAGS := $(BUILD_VERSION_TAGS)
154ifeq ($(TARGET_BUILD_TYPE),debug)
155 BUILD_VERSION_TAGS += debug
156endif
157# The "test-keys" tag marks builds signed with the old test keys,
158# which are available in the SDK. "dev-keys" marks builds signed with
159# non-default dev keys (usually private keys from a vendor directory).
160# Both of these tags will be removed and replaced with "release-keys"
161# when the target-files is signed in a post-build step.
162ifeq ($(DEFAULT_SYSTEM_DEV_CERTIFICATE),build/make/target/product/security/testkey)
163BUILD_KEYS := test-keys
164else
165BUILD_KEYS := dev-keys
166endif
167BUILD_VERSION_TAGS += $(BUILD_KEYS)
168BUILD_VERSION_TAGS := $(subst $(space),$(comma),$(sort $(BUILD_VERSION_TAGS)))
169
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900170# BUILD_FINGERPRINT is used used to uniquely identify the combined build and
171# product; used by the OTA server.
Jiyong Parke1346862020-05-18 14:31:30 +0900172ifeq (,$(strip $(BUILD_FINGERPRINT)))
173 ifeq ($(strip $(HAS_BUILD_NUMBER)),false)
174 BF_BUILD_NUMBER := $(BUILD_USERNAME)$$($(DATE_FROM_FILE) +%m%d%H%M)
175 else
176 BF_BUILD_NUMBER := $(file <$(BUILD_NUMBER_FILE))
177 endif
178 BUILD_FINGERPRINT := $(PRODUCT_BRAND)/$(TARGET_PRODUCT)/$(TARGET_DEVICE):$(PLATFORM_VERSION)/$(BUILD_ID)/$(BF_BUILD_NUMBER):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS)
179endif
180# unset it for safety.
181BF_BUILD_NUMBER :=
182
183BUILD_FINGERPRINT_FILE := $(PRODUCT_OUT)/build_fingerprint.txt
184ifneq (,$(shell mkdir -p $(PRODUCT_OUT) && echo $(BUILD_FINGERPRINT) >$(BUILD_FINGERPRINT_FILE) && grep " " $(BUILD_FINGERPRINT_FILE)))
185 $(error BUILD_FINGERPRINT cannot contain spaces: "$(file <$(BUILD_FINGERPRINT_FILE))")
186endif
187BUILD_FINGERPRINT_FROM_FILE := $$(cat $(BUILD_FINGERPRINT_FILE))
188# unset it for safety.
189BUILD_FINGERPRINT :=
190
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900191# BUILD_THUMBPRINT is used to uniquely identify the system build; used by the
192# OTA server. This purposefully excludes any product-specific variables.
Jiyong Parke1346862020-05-18 14:31:30 +0900193ifeq (,$(strip $(BUILD_THUMBPRINT)))
194 BUILD_THUMBPRINT := $(PLATFORM_VERSION)/$(BUILD_ID)/$(BUILD_NUMBER_FROM_FILE):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS)
195endif
196
197BUILD_THUMBPRINT_FILE := $(PRODUCT_OUT)/build_thumbprint.txt
198ifneq (,$(shell mkdir -p $(PRODUCT_OUT) && echo $(BUILD_THUMBPRINT) >$(BUILD_THUMBPRINT_FILE) && grep " " $(BUILD_THUMBPRINT_FILE)))
199 $(error BUILD_THUMBPRINT cannot contain spaces: "$(file <$(BUILD_THUMBPRINT_FILE))")
200endif
201BUILD_THUMBPRINT_FROM_FILE := $$(cat $(BUILD_THUMBPRINT_FILE))
202# unset it for safety.
203BUILD_THUMBPRINT :=
204
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900205# -----------------------------------------------------------------
206# Define human readable strings that describe this build
207#
Jiyong Parke1346862020-05-18 14:31:30 +0900208
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900209# BUILD_ID: detail info; has the same info as the build fingerprint
210BUILD_DESC := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) $(PLATFORM_VERSION) $(BUILD_ID) $(BUILD_NUMBER_FROM_FILE) $(BUILD_VERSION_TAGS)
211
212# BUILD_DISPLAY_ID is shown under Settings -> About Phone
Jiyong Parke1346862020-05-18 14:31:30 +0900213ifeq ($(TARGET_BUILD_VARIANT),user)
214 # User builds should show:
215 # release build number or branch.buld_number non-release builds
216
217 # Dev. branches should have DISPLAY_BUILD_NUMBER set
218 ifeq (true,$(DISPLAY_BUILD_NUMBER))
219 BUILD_DISPLAY_ID := $(BUILD_ID).$(BUILD_NUMBER_FROM_FILE) $(BUILD_KEYS)
220 else
221 BUILD_DISPLAY_ID := $(BUILD_ID) $(BUILD_KEYS)
222 endif
223else
224 # Non-user builds should show detailed build information
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900225 BUILD_DISPLAY_ID := $(BUILD_DESC)
Jiyong Parke1346862020-05-18 14:31:30 +0900226endif
227
Jiyong Parke1346862020-05-18 14:31:30 +0900228# TARGET_BUILD_FLAVOR and ro.build.flavor are used only by the test
229# harness to distinguish builds. Only add _asan for a sanitized build
230# if it isn't already a part of the flavor (via a dedicated lunch
231# config for example).
232TARGET_BUILD_FLAVOR := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)
233ifneq (, $(filter address, $(SANITIZE_TARGET)))
234ifeq (,$(findstring _asan,$(TARGET_BUILD_FLAVOR)))
235TARGET_BUILD_FLAVOR := $(TARGET_BUILD_FLAVOR)_asan
236endif
237endif
238
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900239KNOWN_OEM_THUMBPRINT_PROPERTIES := \
240 ro.product.brand \
241 ro.product.name \
242 ro.product.device
243OEM_THUMBPRINT_PROPERTIES := $(filter $(KNOWN_OEM_THUMBPRINT_PROPERTIES),\
244 $(PRODUCT_OEM_PROPERTIES))
245KNOWN_OEM_THUMBPRINT_PROPERTIES:=
246
247# -----------------------------------------------------------------
248# system/build.prop
249#
250# Note: parts of this file that can't be generated by the build-properties
251# macro are manually created as separate files and then fed into the macro
252
253# Accepts a whitespace separated list of product locales such as
254# (en_US en_AU en_GB...) and returns the first locale in the list with
255# underscores replaced with hyphens. In the example above, this will
256# return "en-US".
257define get-default-product-locale
258$(strip $(subst _,-, $(firstword $(1))))
259endef
260
Jiyong Parkc60c5142020-07-14 15:15:50 +0900261gen_from_buildinfo_sh := $(call intermediates-dir-for,PACKAGING,system_build_prop)/buildinfo.prop
Rupert Shuttleworth3b37bc82020-12-08 09:46:55 +0000262$(gen_from_buildinfo_sh): $(INTERNAL_BUILD_ID_MAKEFILE) $(API_FINGERPRINT) | $(BUILD_DATETIME_FILE) $(BUILD_NUMBER_FILE)
Jiyong Parke1346862020-05-18 14:31:30 +0900263 $(hide) TARGET_BUILD_TYPE="$(TARGET_BUILD_VARIANT)" \
264 TARGET_BUILD_FLAVOR="$(TARGET_BUILD_FLAVOR)" \
265 TARGET_DEVICE="$(TARGET_DEVICE)" \
Luca Stefani93102ff2017-08-17 21:21:23 +0200266 LINEAGE_DEVICE="$(TARGET_DEVICE)" \
Jiyong Parke1346862020-05-18 14:31:30 +0900267 PRODUCT_DEFAULT_LOCALE="$(call get-default-product-locale,$(PRODUCT_LOCALES))" \
268 PRODUCT_DEFAULT_WIFI_CHANNELS="$(PRODUCT_DEFAULT_WIFI_CHANNELS)" \
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900269 PRIVATE_BUILD_DESC="$(BUILD_DESC)" \
Jiyong Parke1346862020-05-18 14:31:30 +0900270 BUILD_ID="$(BUILD_ID)" \
271 BUILD_DISPLAY_ID="$(BUILD_DISPLAY_ID)" \
272 DATE="$(DATE_FROM_FILE)" \
273 BUILD_USERNAME="$(BUILD_USERNAME)" \
274 BUILD_HOSTNAME="$(BUILD_HOSTNAME)" \
275 BUILD_NUMBER="$(BUILD_NUMBER_FROM_FILE)" \
276 BOARD_BUILD_SYSTEM_ROOT_IMAGE="$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)" \
Tianjie97976232021-05-05 12:07:33 -0700277 BOARD_USE_VBMETA_DIGTEST_IN_FINGERPRINT="$(BOARD_USE_VBMETA_DIGTEST_IN_FINGERPRINT)" \
Jiyong Parke1346862020-05-18 14:31:30 +0900278 PLATFORM_VERSION="$(PLATFORM_VERSION)" \
Colin Crossa4925442022-02-28 18:01:35 -0800279 PLATFORM_DISPLAY_VERSION="$(PLATFORM_DISPLAY_VERSION)" \
Jiyong Parke1346862020-05-18 14:31:30 +0900280 PLATFORM_VERSION_LAST_STABLE="$(PLATFORM_VERSION_LAST_STABLE)" \
281 PLATFORM_SECURITY_PATCH="$(PLATFORM_SECURITY_PATCH)" \
282 PLATFORM_BASE_OS="$(PLATFORM_BASE_OS)" \
283 PLATFORM_SDK_VERSION="$(PLATFORM_SDK_VERSION)" \
284 PLATFORM_PREVIEW_SDK_VERSION="$(PLATFORM_PREVIEW_SDK_VERSION)" \
285 PLATFORM_PREVIEW_SDK_FINGERPRINT="$$(cat $(API_FINGERPRINT))" \
286 PLATFORM_VERSION_CODENAME="$(PLATFORM_VERSION_CODENAME)" \
287 PLATFORM_VERSION_ALL_CODENAMES="$(PLATFORM_VERSION_ALL_CODENAMES)" \
satayev2d945862022-02-09 21:59:28 +0000288 PLATFORM_VERSION_KNOWN_CODENAMES="$(PLATFORM_VERSION_KNOWN_CODENAMES)" \
Jiyong Parke1346862020-05-18 14:31:30 +0900289 PLATFORM_MIN_SUPPORTED_TARGET_SDK_VERSION="$(PLATFORM_MIN_SUPPORTED_TARGET_SDK_VERSION)" \
290 BUILD_VERSION_TAGS="$(BUILD_VERSION_TAGS)" \
291 $(if $(OEM_THUMBPRINT_PROPERTIES),BUILD_THUMBPRINT="$(BUILD_THUMBPRINT_FROM_FILE)") \
292 TARGET_CPU_ABI_LIST="$(TARGET_CPU_ABI_LIST)" \
293 TARGET_CPU_ABI_LIST_32_BIT="$(TARGET_CPU_ABI_LIST_32_BIT)" \
294 TARGET_CPU_ABI_LIST_64_BIT="$(TARGET_CPU_ABI_LIST_64_BIT)" \
295 TARGET_CPU_ABI="$(TARGET_CPU_ABI)" \
296 TARGET_CPU_ABI2="$(TARGET_CPU_ABI2)" \
Christopher Ferris5a564d82022-04-08 15:20:23 -0700297 ZYGOTE_FORCE_64_BIT="$(ZYGOTE_FORCE_64_BIT)" \
Koushik Duttad291c582010-06-26 22:53:55 -0700298 $(PRODUCT_BUILD_PROP_OVERRIDES) \
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900299 bash $(BUILDINFO_SH) > $@
Jiyong Parke1346862020-05-18 14:31:30 +0900300
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900301ifdef TARGET_SYSTEM_PROP
302system_prop_file := $(TARGET_SYSTEM_PROP)
303else
304system_prop_file := $(wildcard $(TARGET_DEVICE_DIR)/system.prop)
305endif
306
307_prop_files_ := \
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900308 $(gen_from_buildinfo_sh) \
309 $(system_prop_file)
310
311# Order matters here. When there are duplicates, the last one wins.
312# TODO(b/117892318): don't allow duplicates so that the ordering doesn't matter
313_prop_vars_ := \
314 ADDITIONAL_SYSTEM_PROPERTIES \
Jiyong Parkeb49b342020-05-29 17:50:03 +0900315 PRODUCT_SYSTEM_PROPERTIES
316
317# TODO(b/117892318): deprecate this
318_prop_vars_ += \
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900319 PRODUCT_SYSTEM_DEFAULT_PROPERTIES
320
321ifndef property_overrides_split_enabled
322_prop_vars_ += \
Garfield Tan04714da2020-08-13 15:21:32 -0700323 ADDITIONAL_VENDOR_PROPERTIES \
324 PRODUCT_VENDOR_PROPERTIES
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900325endif
326
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900327INSTALLED_BUILD_PROP_TARGET := $(TARGET_OUT)/build.prop
328
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100329$(eval $(call build-properties,\
330 system,\
331 $(INSTALLED_BUILD_PROP_TARGET),\
332 $(_prop_files_),\
333 $(_prop_vars_),\
Peter Collingbourne0e3b0952022-02-18 19:17:04 -0800334 $(PRODUCT_SYSTEM_PROPERTY_BLACKLIST),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100335 $(empty),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100336 $(empty)))
Jiyong Parkbb26c6f2020-05-26 03:18:36 +0900337
Bob Badour70c07dd2022-02-12 15:39:22 -0800338$(eval $(call declare-1p-target,$(INSTALLED_BUILD_PROP_TARGET)))
339
Jiyong Parke1346862020-05-18 14:31:30 +0900340# -----------------------------------------------------------------
Jiyong Parke28fa802020-05-26 00:21:20 +0900341# vendor/build.prop
Jiyong Parke1346862020-05-18 14:31:30 +0900342#
Jiyong Parke28fa802020-05-26 00:21:20 +0900343_prop_files_ := $(if $(TARGET_VENDOR_PROP),\
344 $(TARGET_VENDOR_PROP),\
345 $(wildcard $(TARGET_DEVICE_DIR)/vendor.prop))
Jiyong Parke1346862020-05-18 14:31:30 +0900346
Jiyong Park3a2e95a2020-05-25 17:56:09 +0900347android_info_prop := $(call intermediates-dir-for,ETC,android_info_prop)/android_info.prop
348$(android_info_prop): $(INSTALLED_ANDROID_INFO_TXT_TARGET)
349 cat $< | grep 'require version-' | sed -e 's/require version-/ro.build.expect./g' > $@
350
Donghyun Jo8c65ef62021-03-02 08:51:03 +0900351_prop_files_ += $(android_info_prop)
Jiyong Park3a2e95a2020-05-25 17:56:09 +0900352
Jiyong Parke1346862020-05-18 14:31:30 +0900353ifdef property_overrides_split_enabled
Jiyong Parke28fa802020-05-26 00:21:20 +0900354# Order matters here. When there are duplicates, the last one wins.
355# TODO(b/117892318): don't allow duplicates so that the ordering doesn't matter
356_prop_vars_ := \
357 ADDITIONAL_VENDOR_PROPERTIES \
Jiyong Parkeb49b342020-05-29 17:50:03 +0900358 PRODUCT_VENDOR_PROPERTIES
359
360# TODO(b/117892318): deprecate this
361_prop_vars_ += \
362 PRODUCT_DEFAULT_PROPERTY_OVERRIDES \
Jiyong Parke28fa802020-05-26 00:21:20 +0900363 PRODUCT_PROPERTY_OVERRIDES
Jiyong Parke1346862020-05-18 14:31:30 +0900364else
Jiyong Parke28fa802020-05-26 00:21:20 +0900365_prop_vars_ :=
Jiyong Parke1346862020-05-18 14:31:30 +0900366endif
367
Jiyong Parke28fa802020-05-26 00:21:20 +0900368INSTALLED_VENDOR_BUILD_PROP_TARGET := $(TARGET_OUT_VENDOR)/build.prop
369$(eval $(call build-properties,\
370 vendor,\
371 $(INSTALLED_VENDOR_BUILD_PROP_TARGET),\
372 $(_prop_files_),\
373 $(_prop_vars_),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100374 $(PRODUCT_VENDOR_PROPERTY_BLACKLIST),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100375 $(empty),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100376 $(empty)))
Jiyong Parke1346862020-05-18 14:31:30 +0900377
Bob Badour70c07dd2022-02-12 15:39:22 -0800378$(eval $(call declare-1p-target,$(INSTALLED_VENDOR_BUILD_PROP_TARGET)))
379
Jiyong Parke28fa802020-05-26 00:21:20 +0900380# -----------------------------------------------------------------
Jiyong Parkc0bd8c72020-06-29 10:46:22 +0900381# product/etc/build.prop
Jiyong Parke28fa802020-05-26 00:21:20 +0900382#
383
384_prop_files_ := $(if $(TARGET_PRODUCT_PROP),\
385 $(TARGET_PRODUCT_PROP),\
386 $(wildcard $(TARGET_DEVICE_DIR)/product.prop))
387
388# Order matters here. When there are duplicates, the last one wins.
389# TODO(b/117892318): don't allow duplicates so that the ordering doesn't matter
390_prop_vars_ := \
391 ADDITIONAL_PRODUCT_PROPERTIES \
392 PRODUCT_PRODUCT_PROPERTIES
393
Jiyong Parkc0bd8c72020-06-29 10:46:22 +0900394INSTALLED_PRODUCT_BUILD_PROP_TARGET := $(TARGET_OUT_PRODUCT)/etc/build.prop
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100395
396ifdef PRODUCT_OEM_PROPERTIES
397import_oem_prop := $(call intermediates-dir-for,ETC,import_oem_prop)/oem.prop
398
399$(import_oem_prop):
400 $(hide) echo "####################################" >> $@; \
401 echo "# PRODUCT_OEM_PROPERTIES" >> $@; \
402 echo "####################################" >> $@;
403 $(hide) $(foreach prop,$(PRODUCT_OEM_PROPERTIES), \
404 echo "import /oem/oem.prop $(prop)" >> $@;)
405
406_footers_ := $(import_oem_prop)
407else
408_footers_ :=
409endif
410
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100411# Skip common /product properties generation if device released before R and
412# has no product partition. This is the first part of the check.
413ifeq ($(call math_lt,$(if $(PRODUCT_SHIPPING_API_LEVEL),$(PRODUCT_SHIPPING_API_LEVEL),30),30), true)
414 _skip_common_properties := true
415endif
416
417# The second part of the check - always generate common properties for the
418# devices with product partition regardless of shipping level.
419ifneq ($(BOARD_USES_PRODUCTIMAGE),)
420 _skip_common_properties :=
421endif
422
Jiyong Parke28fa802020-05-26 00:21:20 +0900423$(eval $(call build-properties,\
424 product,\
425 $(INSTALLED_PRODUCT_BUILD_PROP_TARGET),\
426 $(_prop_files_),\
427 $(_prop_vars_),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100428 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100429 $(_footers_),\
430 $(_skip_common_properties)))
431
Bob Badour70c07dd2022-02-12 15:39:22 -0800432$(eval $(call declare-1p-target,$(INSTALLED_PRODUCT_BUILD_PROP_TARGET)))
433
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100434_skip_common_properties :=
Jiyong Parke1346862020-05-18 14:31:30 +0900435
436# ----------------------------------------------------------------
Jiyong Park62117c82020-06-26 09:56:31 +0900437# odm/etc/build.prop
Jiyong Parke28fa802020-05-26 00:21:20 +0900438#
439_prop_files_ := $(if $(TARGET_ODM_PROP),\
440 $(TARGET_ODM_PROP),\
441 $(wildcard $(TARGET_DEVICE_DIR)/odm.prop))
Jiyong Parke1346862020-05-18 14:31:30 +0900442
Jiyong Parke28fa802020-05-26 00:21:20 +0900443# Order matters here. When there are duplicates, the last one wins.
444# TODO(b/117892318): don't allow duplicates so that the ordering doesn't matter
445_prop_vars_ := \
446 ADDITIONAL_ODM_PROPERTIES \
447 PRODUCT_ODM_PROPERTIES
Jiyong Parke1346862020-05-18 14:31:30 +0900448
Jiyong Park62117c82020-06-26 09:56:31 +0900449INSTALLED_ODM_BUILD_PROP_TARGET := $(TARGET_OUT_ODM)/etc/build.prop
Jiyong Parke28fa802020-05-26 00:21:20 +0900450$(eval $(call build-properties,\
451 odm,\
452 $(INSTALLED_ODM_BUILD_PROP_TARGET),\
Hidefumi Kanekob09a36c2021-07-30 17:38:36 +0900453 $(_prop_files_),\
Jiyong Parke28fa802020-05-26 00:21:20 +0900454 $(_prop_vars_),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100455 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100456 $(empty),\
Jiyong Parke28fa802020-05-26 00:21:20 +0900457 $(empty)))
Jiyong Parke1346862020-05-18 14:31:30 +0900458
Bob Badour70c07dd2022-02-12 15:39:22 -0800459$(eval $(call declare-1p-target,$(INSTALLED_ODM_BUILD_PROP_TARGET)))
460
Yifan Hong51a971b2020-06-25 17:00:27 -0700461# ----------------------------------------------------------------
462# vendor_dlkm/etc/build.prop
463#
464
465INSTALLED_VENDOR_DLKM_BUILD_PROP_TARGET := $(TARGET_OUT_VENDOR_DLKM)/etc/build.prop
466$(eval $(call build-properties,\
467 vendor_dlkm,\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100468 $(INSTALLED_VENDOR_DLKM_BUILD_PROP_TARGET),\
469 $(empty),\
470 $(empty),\
471 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100472 $(empty),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100473 $(empty)))
Yifan Hong51a971b2020-06-25 17:00:27 -0700474
Bob Badour70c07dd2022-02-12 15:39:22 -0800475$(eval $(call declare-1p-target,$(INSTALLED_VENDOR_DLKM_BUILD_PROP_TARGET)))
476
Yifan Hong81a092f2020-07-15 17:02:07 -0700477# ----------------------------------------------------------------
478# odm_dlkm/etc/build.prop
479#
480
481INSTALLED_ODM_DLKM_BUILD_PROP_TARGET := $(TARGET_OUT_ODM_DLKM)/etc/build.prop
482$(eval $(call build-properties,\
483 odm_dlkm,\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100484 $(INSTALLED_ODM_DLKM_BUILD_PROP_TARGET),\
485 $(empty),\
486 $(empty),\
487 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100488 $(empty),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100489 $(empty)))
Yifan Hong81a092f2020-07-15 17:02:07 -0700490
Bob Badour70c07dd2022-02-12 15:39:22 -0800491$(eval $(call declare-1p-target,$(INSTALLED_ODM_DLKM_BUILD_PROP_TARGET)))
492
Ramji Jiyani13a41372022-01-27 07:05:08 +0000493# ----------------------------------------------------------------
494# system_dlkm/build.prop
495#
496
497INSTALLED_SYSTEM_DLKM_BUILD_PROP_TARGET := $(TARGET_OUT_SYSTEM_DLKM)/etc/build.prop
498$(eval $(call build-properties,\
499 system_dlkm,\
500 $(INSTALLED_SYSTEM_DLKM_BUILD_PROP_TARGET),\
501 $(empty),\
502 $(empty),\
503 $(empty),\
504 $(empty),\
505 $(empty)))
506
Bob Badour70c07dd2022-02-12 15:39:22 -0800507$(eval $(call declare-1p-target,$(INSTALLED_SYSTEM_DLKM_BUILD_PROP_TARGET)))
508
Jiyong Parke1346862020-05-18 14:31:30 +0900509# -----------------------------------------------------------------
Jiyong Parkc0bd8c72020-06-29 10:46:22 +0900510# system_ext/etc/build.prop
Jiyong Parke28fa802020-05-26 00:21:20 +0900511#
512_prop_files_ := $(if $(TARGET_SYSTEM_EXT_PROP),\
513 $(TARGET_SYSTEM_EXT_PROP),\
514 $(wildcard $(TARGET_DEVICE_DIR)/system_ext.prop))
515
516# Order matters here. When there are duplicates, the last one wins.
517# TODO(b/117892318): don't allow duplicates so that the ordering doesn't matter
518_prop_vars_ := PRODUCT_SYSTEM_EXT_PROPERTIES
519
Jiyong Parkc0bd8c72020-06-29 10:46:22 +0900520INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET := $(TARGET_OUT_SYSTEM_EXT)/etc/build.prop
Jiyong Parke28fa802020-05-26 00:21:20 +0900521$(eval $(call build-properties,\
522 system_ext,\
523 $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET),\
524 $(_prop_files_),\
525 $(_prop_vars_),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100526 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100527 $(empty),\
Jiyong Parke28fa802020-05-26 00:21:20 +0900528 $(empty)))
Yifan Hong33fd5d42020-09-24 18:18:26 -0700529
Bob Badour70c07dd2022-02-12 15:39:22 -0800530$(eval $(call declare-1p-target,$(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET)))
531
Yifan Hong33fd5d42020-09-24 18:18:26 -0700532# ----------------------------------------------------------------
533# ramdisk/boot/etc/build.prop
534#
535
536RAMDISK_BUILD_PROP_REL_PATH := system/etc/ramdisk/build.prop
537INSTALLED_RAMDISK_BUILD_PROP_TARGET := $(TARGET_RAMDISK_OUT)/$(RAMDISK_BUILD_PROP_REL_PATH)
538$(eval $(call build-properties,\
Kelvin Zhang8250d2c2022-03-23 19:46:09 +0000539 bootimage,\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100540 $(INSTALLED_RAMDISK_BUILD_PROP_TARGET),\
541 $(empty),\
542 $(empty),\
543 $(empty),\
Oleksiy Avramchenkod3d0f7d2020-12-15 14:38:32 +0100544 $(empty),\
Alexander Mishkovets5a6bc222020-11-11 15:25:37 +0100545 $(empty)))
Bob Badour70c07dd2022-02-12 15:39:22 -0800546
547$(eval $(call declare-1p-target,$(INSTALLED_RAMDISK_BUILD_PROP_TARGET)))