The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # Put some miscellaneous rules here |
| 2 | |
Ying Wang | 3bbfddd | 2014-03-01 15:32:04 -0800 | [diff] [blame] | 3 | # HACK: clear LOCAL_PATH from including last build target before calling |
| 4 | # intermedites-dir-for |
| 5 | LOCAL_PATH := $(BUILD_SYSTEM) |
| 6 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7 | # ----------------------------------------------------------------- |
| 8 | # Define rules to copy PRODUCT_COPY_FILES defined by the product. |
Ying Wang | 4b0486b | 2012-09-20 16:35:36 -0700 | [diff] [blame] | 9 | # PRODUCT_COPY_FILES contains words like <source file>:<dest file>[:<owner>]. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 10 | # <dest file> is relative to $(PRODUCT_OUT), so it should look like, |
| 11 | # e.g., "system/etc/file.xml". |
Jean-Baptiste Queru | 518ce57 | 2010-03-01 16:18:59 -0800 | [diff] [blame] | 12 | # The filter part means "only eval the copy-one-file rule if this |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 13 | # src:dest pair is the first one to match the same dest" |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 14 | #$(1): the src:dest pair |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 15 | #$(2): the dest |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 16 | define check-product-copy-files |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 17 | $(if $(filter-out $(TARGET_COPY_OUT_SYSTEM_OTHER)/%,$(2)), \ |
| 18 | $(if $(filter %.apk, $(2)),$(error \ |
Yifan Hong | 5e57a77 | 2020-01-09 16:15:11 -0800 | [diff] [blame] | 19 | Prebuilt apk found in PRODUCT_COPY_FILES: $(1), use BUILD_PREBUILT instead!))) \ |
| 20 | $(if $(filter true,$(BUILD_BROKEN_VINTF_PRODUCT_COPY_FILES)),, \ |
| 21 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM)/etc/vintf/% \ |
| 22 | $(TARGET_COPY_OUT_SYSTEM)/manifest.xml \ |
| 23 | $(TARGET_COPY_OUT_SYSTEM)/compatibility_matrix.xml,$(2)), \ |
| 24 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), use vintf_fragments instead!)) \ |
| 25 | $(if $(filter $(TARGET_COPY_OUT_PRODUCT)/etc/vintf/%,$(2)), \ |
| 26 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 27 | use PRODUCT_MANIFEST_FILES / DEVICE_PRODUCT_COMPATIBILITY_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 28 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM_EXT)/etc/vintf/%,$(2)), \ |
| 29 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 30 | use vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 31 | $(if $(filter $(TARGET_COPY_OUT_VENDOR)/etc/vintf/% \ |
| 32 | $(TARGET_COPY_OUT_VENDOR)/manifest.xml \ |
| 33 | $(TARGET_COPY_OUT_VENDOR)/compatibility_matrix.xml,$(2)), \ |
| 34 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 35 | use DEVICE_MANIFEST_FILE / DEVICE_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 36 | $(if $(filter $(TARGET_COPY_OUT_ODM)/etc/vintf/% \ |
| 37 | $(TARGET_COPY_OUT_ODM)/etc/manifest%,$(2)), \ |
| 38 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 39 | use ODM_MANIFEST_FILES / vintf_fragments instead!)) \ |
| 40 | ) |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 41 | endef |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 42 | # filter out the duplicate <source file>:<dest file> pairs. |
| 43 | unique_product_copy_files_pairs := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 44 | $(foreach cf,$(PRODUCT_COPY_FILES), \ |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 45 | $(if $(filter $(unique_product_copy_files_pairs),$(cf)),,\ |
| 46 | $(eval unique_product_copy_files_pairs += $(cf)))) |
| 47 | unique_product_copy_files_destinations := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 48 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 49 | $(foreach cf,$(unique_product_copy_files_pairs), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 50 | $(eval _src := $(call word-colon,1,$(cf))) \ |
| 51 | $(eval _dest := $(call word-colon,2,$(cf))) \ |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 52 | $(call check-product-copy-files,$(cf),$(_dest)) \ |
Ying Wang | 193010c | 2011-12-16 11:54:25 -0800 | [diff] [blame] | 53 | $(if $(filter $(unique_product_copy_files_destinations),$(_dest)), \ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 54 | $(eval product_copy_files_ignored += $(cf)), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 55 | $(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \ |
Ying Wang | 3ceecfa | 2012-05-14 14:39:00 -0700 | [diff] [blame] | 56 | $(if $(filter %.xml,$(_dest)),\ |
| 57 | $(eval $(call copy-xml-file-checked,$(_src),$(_fulldest))),\ |
Nicolas Geoffray | a95fbd1 | 2017-09-19 13:10:31 +0100 | [diff] [blame] | 58 | $(if $(and $(filter %.jar,$(_dest)),$(filter $(basename $(notdir $(_dest))),$(PRODUCT_LOADED_BY_PRIVILEGED_MODULES))),\ |
| 59 | $(eval $(call copy-and-uncompress-dexs,$(_src),$(_fulldest))), \ |
Tom Cherry | fc97764 | 2018-06-13 14:51:05 -0700 | [diff] [blame] | 60 | $(if $(filter init%rc,$(notdir $(_dest)))$(filter %/etc/init,$(dir $(_dest))),\ |
| 61 | $(eval $(call copy-init-script-file-checked,$(_src),$(_fulldest))),\ |
| 62 | $(eval $(call copy-one-file,$(_src),$(_fulldest)))))) \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 63 | $(eval unique_product_copy_files_destinations += $(_dest)))) |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 64 | |
| 65 | # Dump a list of overriden (and ignored PRODUCT_COPY_FILES entries) |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 66 | pcf_ignored_file := $(PRODUCT_OUT)/product_copy_files_ignored.txt |
| 67 | $(pcf_ignored_file): PRIVATE_IGNORED := $(sort $(product_copy_files_ignored)) |
| 68 | $(pcf_ignored_file): |
| 69 | echo "$(PRIVATE_IGNORED)" | tr " " "\n" >$@ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 70 | |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 71 | $(call dist-for-goals,droidcore,$(pcf_ignored_file):logs/$(notdir $(pcf_ignored_file))) |
| 72 | |
| 73 | pcf_ignored_file := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 74 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 75 | unique_product_copy_files_pairs := |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 76 | unique_product_copy_files_destinations := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 77 | |
| 78 | # ----------------------------------------------------------------- |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 79 | # Returns the max allowed size for an image suitable for hash verification |
| 80 | # (e.g., boot.img, recovery.img, etc). |
| 81 | # The value 69632 derives from MAX_VBMETA_SIZE + MAX_FOOTER_SIZE in $(AVBTOOL). |
| 82 | # $(1): partition size to flash the image |
| 83 | define get-hash-image-max-size |
| 84 | $(if $(1), \ |
| 85 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 86 | $(eval _hash_meta_size := 69632), \ |
| 87 | $(eval _hash_meta_size := 0)) \ |
| 88 | $(1)-$(_hash_meta_size)) |
| 89 | endef |
| 90 | |
| 91 | # ----------------------------------------------------------------- |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 92 | # Define rules to copy headers defined in copy_headers.mk |
| 93 | # If more than one makefile declared a header, print a warning, |
| 94 | # then copy the last one defined. This matches the previous make |
| 95 | # behavior. |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 96 | has_dup_copy_headers := |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 97 | $(foreach dest,$(ALL_COPIED_HEADERS), \ |
| 98 | $(eval _srcs := $(ALL_COPIED_HEADERS.$(dest).SRC)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 99 | $(eval _src := $(lastword $(_srcs))) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 100 | $(if $(call streq,$(_src),$(_srcs)),, \ |
| 101 | $(warning Duplicate header copy: $(dest)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 102 | $(warning _ Using $(_src)) \ |
| 103 | $(warning __ from $(lastword $(ALL_COPIED_HEADERS.$(dest).MAKEFILE))) \ |
| 104 | $(eval _makefiles := $$(wordlist 1,$(call int_subtract,$(words $(ALL_COPIED_HEADERS.$(dest).MAKEFILE)),1),$$(ALL_COPIED_HEADERS.$$(dest).MAKEFILE))) \ |
| 105 | $(foreach src,$(wordlist 1,$(call int_subtract,$(words $(_srcs)),1),$(_srcs)), \ |
| 106 | $(warning _ Ignoring $(src)) \ |
| 107 | $(warning __ from $(firstword $(_makefiles))) \ |
| 108 | $(eval _makefiles := $$(wordlist 2,9999,$$(_makefiles)))) \ |
| 109 | $(eval has_dup_copy_headers := true)) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 110 | $(eval $(call copy-one-header,$(_src),$(dest)))) |
| 111 | all_copied_headers: $(ALL_COPIED_HEADERS) |
| 112 | |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 113 | ifdef has_dup_copy_headers |
| 114 | has_dup_copy_headers := |
Dan Willemsen | 1d4a56f | 2019-04-18 09:38:25 -0700 | [diff] [blame] | 115 | $(error duplicate header copies are no longer allowed. For more information about headers, see: https://android.googlesource.com/platform/build/soong/+/master/docs/best_practices.md#headers) |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 116 | endif |
| 117 | |
Dan Willemsen | 79a0caf | 2019-12-13 18:55:18 -0800 | [diff] [blame] | 118 | $(file >$(PRODUCT_OUT)/.copied_headers_list,$(TARGET_OUT_HEADERS) $(ALL_COPIED_HEADERS)) |
| 119 | |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 120 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 121 | # docs/index.html |
Ying Wang | 3f45b3c | 2012-04-02 18:21:36 -0700 | [diff] [blame] | 122 | ifeq (,$(TARGET_BUILD_APPS)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 123 | gen := $(OUT_DOCS)/index.html |
| 124 | ALL_DOCS += $(gen) |
| 125 | $(gen): frameworks/base/docs/docs-redirect-index.html |
| 126 | @mkdir -p $(dir $@) |
| 127 | @cp -f $< $@ |
Ying Wang | 3f45b3c | 2012-04-02 18:21:36 -0700 | [diff] [blame] | 128 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 129 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 130 | ndk_doxygen_out := $(OUT_NDK_DOCS) |
| 131 | ndk_headers := $(SOONG_OUT_DIR)/ndk/sysroot/usr/include |
| 132 | ndk_docs_src_dir := frameworks/native/docs |
| 133 | ndk_doxyfile := $(ndk_docs_src_dir)/Doxyfile |
| 134 | ifneq ($(wildcard $(ndk_docs_src_dir)),) |
| 135 | ndk_docs_srcs := $(addprefix $(ndk_docs_src_dir)/,\ |
| 136 | $(call find-files-in-subdirs,$(ndk_docs_src_dir),"*",.)) |
| 137 | $(ndk_doxygen_out)/index.html: $(ndk_docs_srcs) $(SOONG_OUT_DIR)/ndk.timestamp |
| 138 | @mkdir -p $(ndk_doxygen_out) |
| 139 | @echo "Generating NDK docs to $(ndk_doxygen_out)" |
| 140 | @( cat $(ndk_doxyfile); \ |
| 141 | echo "INPUT=$(ndk_headers)"; \ |
| 142 | echo "HTML_OUTPUT=$(ndk_doxygen_out)" \ |
| 143 | ) | doxygen - |
| 144 | |
| 145 | # Note: Not a part of the docs target because we don't have doxygen available. |
| 146 | # You can run this target locally if you have doxygen installed. |
| 147 | ndk-docs: $(ndk_doxygen_out)/index.html |
| 148 | .PHONY: ndk-docs |
| 149 | endif |
| 150 | |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 151 | $(call dist-for-goals,sdk,$(API_FINGERPRINT)) |
Dan Willemsen | ad6a154 | 2018-12-14 01:04:19 -0800 | [diff] [blame] | 152 | |
| 153 | # ----------------------------------------------------------------- |
Jaekyun Seok | fbc07f9 | 2017-03-03 12:40:21 +0900 | [diff] [blame] | 154 | # property_overrides_split_enabled |
| 155 | property_overrides_split_enabled := |
| 156 | ifeq ($(BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED), true) |
| 157 | property_overrides_split_enabled := true |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 158 | endif |
| 159 | |
| 160 | # ----------------------------------------------------------------- |
Jaekyun Seok | c227ce7 | 2018-02-08 07:19:55 +0900 | [diff] [blame] | 161 | # FINAL_VENDOR_DEFAULT_PROPERTIES will be installed in vendor/default.prop if |
| 162 | # property_overrides_split_enabled is true. Otherwise it will be installed in |
| 163 | # ROOT/default.prop. |
| 164 | ifdef BOARD_VNDK_VERSION |
| 165 | ifeq ($(BOARD_VNDK_VERSION),current) |
| 166 | FINAL_VENDOR_DEFAULT_PROPERTIES := ro.vndk.version=$(PLATFORM_VNDK_VERSION) |
| 167 | else |
| 168 | FINAL_VENDOR_DEFAULT_PROPERTIES := ro.vndk.version=$(BOARD_VNDK_VERSION) |
| 169 | endif |
Logan Chien | d73b94c | 2018-05-04 19:33:17 +0800 | [diff] [blame] | 170 | ifdef BOARD_VNDK_RUNTIME_DISABLE |
| 171 | FINAL_VENDOR_DEFAULT_PROPERTIES += ro.vndk.lite=true |
| 172 | endif |
Jaekyun Seok | c227ce7 | 2018-02-08 07:19:55 +0900 | [diff] [blame] | 173 | else |
Logan Chien | d73b94c | 2018-05-04 19:33:17 +0800 | [diff] [blame] | 174 | FINAL_VENDOR_DEFAULT_PROPERTIES := ro.vndk.version=$(PLATFORM_VNDK_VERSION) |
| 175 | FINAL_VENDOR_DEFAULT_PROPERTIES += ro.vndk.lite=true |
Jaekyun Seok | c227ce7 | 2018-02-08 07:19:55 +0900 | [diff] [blame] | 176 | endif |
| 177 | FINAL_VENDOR_DEFAULT_PROPERTIES += \ |
| 178 | $(call collapse-pairs, $(PRODUCT_DEFAULT_PROPERTY_OVERRIDES)) |
Tao Bao | 5f99923 | 2018-09-04 11:42:53 -0700 | [diff] [blame] | 179 | |
Anton Hansson | 30851f2 | 2019-02-21 11:51:26 +0000 | [diff] [blame] | 180 | # Add cpu properties for bionic and ART. |
Haibo Huang | ee0531d | 2018-11-04 09:20:09 -0800 | [diff] [blame] | 181 | FINAL_VENDOR_DEFAULT_PROPERTIES += ro.bionic.arch=$(TARGET_ARCH) |
Anton Hansson | 71b7f7f | 2019-02-21 11:36:37 +0000 | [diff] [blame] | 182 | FINAL_VENDOR_DEFAULT_PROPERTIES += ro.bionic.cpu_variant=$(TARGET_CPU_VARIANT_RUNTIME) |
Haibo Huang | ee0531d | 2018-11-04 09:20:09 -0800 | [diff] [blame] | 183 | FINAL_VENDOR_DEFAULT_PROPERTIES += ro.bionic.2nd_arch=$(TARGET_2ND_ARCH) |
Anton Hansson | 71b7f7f | 2019-02-21 11:36:37 +0000 | [diff] [blame] | 184 | FINAL_VENDOR_DEFAULT_PROPERTIES += ro.bionic.2nd_cpu_variant=$(TARGET_2ND_CPU_VARIANT_RUNTIME) |
Haibo Huang | ee0531d | 2018-11-04 09:20:09 -0800 | [diff] [blame] | 185 | |
Anton Hansson | 30851f2 | 2019-02-21 11:51:26 +0000 | [diff] [blame] | 186 | FINAL_VENDOR_DEFAULT_PROPERTIES += persist.sys.dalvik.vm.lib.2=libart.so |
Anton Hansson | 71b7f7f | 2019-02-21 11:36:37 +0000 | [diff] [blame] | 187 | FINAL_VENDOR_DEFAULT_PROPERTIES += dalvik.vm.isa.$(TARGET_ARCH).variant=$(DEX2OAT_TARGET_CPU_VARIANT_RUNTIME) |
Anton Hansson | 30851f2 | 2019-02-21 11:51:26 +0000 | [diff] [blame] | 188 | ifneq ($(DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES),) |
| 189 | FINAL_VENDOR_DEFAULT_PROPERTIES += dalvik.vm.isa.$(TARGET_ARCH).features=$(DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES) |
| 190 | endif |
| 191 | |
| 192 | ifdef TARGET_2ND_ARCH |
Anton Hansson | 71b7f7f | 2019-02-21 11:36:37 +0000 | [diff] [blame] | 193 | FINAL_VENDOR_DEFAULT_PROPERTIES += dalvik.vm.isa.$(TARGET_2ND_ARCH).variant=$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT_RUNTIME) |
Anton Hansson | 30851f2 | 2019-02-21 11:51:26 +0000 | [diff] [blame] | 194 | ifneq ($($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES),) |
| 195 | FINAL_VENDOR_DEFAULT_PROPERTIES += dalvik.vm.isa.$(TARGET_2ND_ARCH).features=$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES) |
| 196 | endif |
| 197 | endif |
| 198 | |
Tao Bao | 5f99923 | 2018-09-04 11:42:53 -0700 | [diff] [blame] | 199 | # Although these variables are prefixed with TARGET_RECOVERY_, they are also needed under charger |
| 200 | # mode (via libminui). |
| 201 | ifdef TARGET_RECOVERY_DEFAULT_ROTATION |
| 202 | FINAL_VENDOR_DEFAULT_PROPERTIES += \ |
| 203 | ro.minui.default_rotation=$(TARGET_RECOVERY_DEFAULT_ROTATION) |
| 204 | endif |
| 205 | ifdef TARGET_RECOVERY_OVERSCAN_PERCENT |
| 206 | FINAL_VENDOR_DEFAULT_PROPERTIES += \ |
| 207 | ro.minui.overscan_percent=$(TARGET_RECOVERY_OVERSCAN_PERCENT) |
| 208 | endif |
| 209 | ifdef TARGET_RECOVERY_PIXEL_FORMAT |
| 210 | FINAL_VENDOR_DEFAULT_PROPERTIES += \ |
| 211 | ro.minui.pixel_format=$(TARGET_RECOVERY_PIXEL_FORMAT) |
| 212 | endif |
Jaekyun Seok | c227ce7 | 2018-02-08 07:19:55 +0900 | [diff] [blame] | 213 | FINAL_VENDOR_DEFAULT_PROPERTIES := $(call uniq-pairs-by-first-component, \ |
| 214 | $(FINAL_VENDOR_DEFAULT_PROPERTIES),=) |
| 215 | |
| 216 | # ----------------------------------------------------------------- |
Hung-ying Tyan | f829b40 | 2017-05-01 21:56:26 +0800 | [diff] [blame] | 217 | # prop.default |
Anton Hansson | 1f8729e | 2018-08-15 12:11:55 +0100 | [diff] [blame] | 218 | |
| 219 | BUILDINFO_SH := build/make/tools/buildinfo.sh |
| 220 | BUILDINFO_COMMON_SH := build/make/tools/buildinfo_common.sh |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 221 | POST_PROCESS_PROPS :=$= build/make/tools/post_process_props.py |
Anton Hansson | ee4c970 | 2018-12-21 15:36:00 +0000 | [diff] [blame] | 222 | |
| 223 | # Generates a set of sysprops common to all partitions to a file. |
Anton Hansson | 1f8729e | 2018-08-15 12:11:55 +0100 | [diff] [blame] | 224 | # $(1): Partition name |
| 225 | # $(2): Output file name |
| 226 | define generate-common-build-props |
Anton Hansson | ee4c970 | 2018-12-21 15:36:00 +0000 | [diff] [blame] | 227 | PRODUCT_BRAND="$(PRODUCT_BRAND)" \ |
| 228 | PRODUCT_DEVICE="$(TARGET_DEVICE)" \ |
| 229 | PRODUCT_MANUFACTURER="$(PRODUCT_MANUFACTURER)" \ |
| 230 | PRODUCT_MODEL="$(PRODUCT_MODEL)" \ |
| 231 | PRODUCT_NAME="$(TARGET_PRODUCT)" \ |
| 232 | $(call generate-common-build-props-with-product-vars-set,$(1),$(2)) |
| 233 | endef |
| 234 | |
| 235 | # Like the above macro, but requiring the relevant PRODUCT_ environment |
| 236 | # variables to be set when called. |
| 237 | define generate-common-build-props-with-product-vars-set |
Anton Hansson | 1f8729e | 2018-08-15 12:11:55 +0100 | [diff] [blame] | 238 | BUILD_FINGERPRINT="$(BUILD_FINGERPRINT_FROM_FILE)" \ |
| 239 | BUILD_ID="$(BUILD_ID)" \ |
| 240 | BUILD_NUMBER="$(BUILD_NUMBER_FROM_FILE)" \ |
| 241 | BUILD_VERSION_TAGS="$(BUILD_VERSION_TAGS)" \ |
| 242 | DATE="$(DATE_FROM_FILE)" \ |
| 243 | PLATFORM_SDK_VERSION="$(PLATFORM_SDK_VERSION)" \ |
| 244 | PLATFORM_VERSION="$(PLATFORM_VERSION)" \ |
Anton Hansson | 1f8729e | 2018-08-15 12:11:55 +0100 | [diff] [blame] | 245 | TARGET_BUILD_TYPE="$(TARGET_BUILD_VARIANT)" \ |
Anton Hansson | 1f8729e | 2018-08-15 12:11:55 +0100 | [diff] [blame] | 246 | bash $(BUILDINFO_COMMON_SH) "$(1)" >> $(2) |
| 247 | endef |
| 248 | |
Hung-ying Tyan | f829b40 | 2017-05-01 21:56:26 +0800 | [diff] [blame] | 249 | ifdef property_overrides_split_enabled |
| 250 | INSTALLED_DEFAULT_PROP_TARGET := $(TARGET_OUT)/etc/prop.default |
Hung-ying Tyan | b260f0d | 2017-07-13 17:04:10 +0800 | [diff] [blame] | 251 | INSTALLED_DEFAULT_PROP_OLD_TARGET := $(TARGET_ROOT_OUT)/default.prop |
| 252 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_DEFAULT_PROP_OLD_TARGET) |
| 253 | $(INSTALLED_DEFAULT_PROP_OLD_TARGET): $(INSTALLED_DEFAULT_PROP_TARGET) |
Hung-ying Tyan | f829b40 | 2017-05-01 21:56:26 +0800 | [diff] [blame] | 254 | else |
| 255 | # legacy path |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 256 | INSTALLED_DEFAULT_PROP_TARGET := $(TARGET_ROOT_OUT)/default.prop |
Hung-ying Tyan | f829b40 | 2017-05-01 21:56:26 +0800 | [diff] [blame] | 257 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 258 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_DEFAULT_PROP_TARGET) |
Jaekyun Seok | 294286d | 2017-01-20 13:17:12 +0900 | [diff] [blame] | 259 | FINAL_DEFAULT_PROPERTIES := \ |
Jaekyun Seok | b31b9ba | 2017-11-03 15:18:55 +0900 | [diff] [blame] | 260 | $(call collapse-pairs, $(ADDITIONAL_DEFAULT_PROPERTIES)) \ |
| 261 | $(call collapse-pairs, $(PRODUCT_SYSTEM_DEFAULT_PROPERTIES)) |
Jaekyun Seok | fbc07f9 | 2017-03-03 12:40:21 +0900 | [diff] [blame] | 262 | ifndef property_overrides_split_enabled |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 263 | FINAL_DEFAULT_PROPERTIES += \ |
Jaekyun Seok | c227ce7 | 2018-02-08 07:19:55 +0900 | [diff] [blame] | 264 | $(call collapse-pairs, $(FINAL_VENDOR_DEFAULT_PROPERTIES)) |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 265 | endif |
Jaekyun Seok | 294286d | 2017-01-20 13:17:12 +0900 | [diff] [blame] | 266 | FINAL_DEFAULT_PROPERTIES := $(call uniq-pairs-by-first-component, \ |
| 267 | $(FINAL_DEFAULT_PROPERTIES),=) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 268 | |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 269 | intermediate_system_build_prop := $(call intermediates-dir-for,ETC,system_build_prop)/build.prop |
| 270 | |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 271 | $(INSTALLED_DEFAULT_PROP_TARGET): $(BUILDINFO_COMMON_SH) $(POST_PROCESS_PROPS) $(intermediate_system_build_prop) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 272 | @echo Target buildinfo: $@ |
| 273 | @mkdir -p $(dir $@) |
Hung-ying Tyan | f829b40 | 2017-05-01 21:56:26 +0800 | [diff] [blame] | 274 | @rm -f $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 275 | $(hide) echo "#" > $@; \ |
| 276 | echo "# ADDITIONAL_DEFAULT_PROPERTIES" >> $@; \ |
| 277 | echo "#" >> $@; |
Jaekyun Seok | 294286d | 2017-01-20 13:17:12 +0900 | [diff] [blame] | 278 | $(hide) $(foreach line,$(FINAL_DEFAULT_PROPERTIES), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 279 | echo "$(line)" >> $@;) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 280 | $(hide) $(POST_PROCESS_PROPS) $@ |
Hung-ying Tyan | f829b40 | 2017-05-01 21:56:26 +0800 | [diff] [blame] | 281 | ifdef property_overrides_split_enabled |
| 282 | $(hide) mkdir -p $(TARGET_ROOT_OUT) |
Hung-ying Tyan | b260f0d | 2017-07-13 17:04:10 +0800 | [diff] [blame] | 283 | $(hide) ln -sf system/etc/prop.default $(INSTALLED_DEFAULT_PROP_OLD_TARGET) |
Hung-ying Tyan | f829b40 | 2017-05-01 21:56:26 +0800 | [diff] [blame] | 284 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 285 | |
| 286 | # ----------------------------------------------------------------- |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 287 | # vendor default.prop |
| 288 | INSTALLED_VENDOR_DEFAULT_PROP_TARGET := |
Jaekyun Seok | fbc07f9 | 2017-03-03 12:40:21 +0900 | [diff] [blame] | 289 | ifdef property_overrides_split_enabled |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 290 | INSTALLED_VENDOR_DEFAULT_PROP_TARGET := $(TARGET_OUT_VENDOR)/default.prop |
| 291 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_VENDOR_DEFAULT_PROP_TARGET) |
| 292 | |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 293 | $(INSTALLED_VENDOR_DEFAULT_PROP_TARGET): $(INSTALLED_DEFAULT_PROP_TARGET) $(POST_PROCESS_PROPS) |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 294 | @echo Target buildinfo: $@ |
| 295 | @mkdir -p $(dir $@) |
| 296 | $(hide) echo "#" > $@; \ |
| 297 | echo "# ADDITIONAL VENDOR DEFAULT PROPERTIES" >> $@; \ |
| 298 | echo "#" >> $@; |
| 299 | $(hide) $(foreach line,$(FINAL_VENDOR_DEFAULT_PROPERTIES), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 300 | echo "$(line)" >> $@;) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 301 | $(hide) $(POST_PROCESS_PROPS) $@ |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 302 | |
Jaekyun Seok | fbc07f9 | 2017-03-03 12:40:21 +0900 | [diff] [blame] | 303 | endif # property_overrides_split_enabled |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 304 | |
| 305 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 306 | # build.prop |
| 307 | INSTALLED_BUILD_PROP_TARGET := $(TARGET_OUT)/build.prop |
| 308 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_BUILD_PROP_TARGET) |
Jaekyun Seok | 294286d | 2017-01-20 13:17:12 +0900 | [diff] [blame] | 309 | FINAL_BUILD_PROPERTIES := \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 310 | $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES)) |
Jaekyun Seok | 294286d | 2017-01-20 13:17:12 +0900 | [diff] [blame] | 311 | FINAL_BUILD_PROPERTIES := $(call uniq-pairs-by-first-component, \ |
| 312 | $(FINAL_BUILD_PROPERTIES),=) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 313 | |
| 314 | # A list of arbitrary tags describing the build configuration. |
| 315 | # Force ":=" so we can use += |
| 316 | BUILD_VERSION_TAGS := $(BUILD_VERSION_TAGS) |
| 317 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 318 | BUILD_VERSION_TAGS += debug |
| 319 | endif |
Doug Zongker | 49c6a2b | 2011-10-05 12:41:56 -0700 | [diff] [blame] | 320 | # The "test-keys" tag marks builds signed with the old test keys, |
| 321 | # which are available in the SDK. "dev-keys" marks builds signed with |
| 322 | # non-default dev keys (usually private keys from a vendor directory). |
| 323 | # Both of these tags will be removed and replaced with "release-keys" |
| 324 | # when the target-files is signed in a post-build step. |
Dan Willemsen | 0ab1be6 | 2019-04-09 21:35:37 -0700 | [diff] [blame] | 325 | ifeq ($(DEFAULT_SYSTEM_DEV_CERTIFICATE),build/make/target/product/security/testkey) |
Doug Zongker | a8608a7 | 2013-07-23 11:51:04 -0700 | [diff] [blame] | 326 | BUILD_KEYS := test-keys |
Doug Zongker | 49c6a2b | 2011-10-05 12:41:56 -0700 | [diff] [blame] | 327 | else |
Doug Zongker | a8608a7 | 2013-07-23 11:51:04 -0700 | [diff] [blame] | 328 | BUILD_KEYS := dev-keys |
Doug Zongker | 49c6a2b | 2011-10-05 12:41:56 -0700 | [diff] [blame] | 329 | endif |
Doug Zongker | a8608a7 | 2013-07-23 11:51:04 -0700 | [diff] [blame] | 330 | BUILD_VERSION_TAGS += $(BUILD_KEYS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 331 | BUILD_VERSION_TAGS := $(subst $(space),$(comma),$(sort $(BUILD_VERSION_TAGS))) |
| 332 | |
| 333 | # A human-readable string that descibes this build in detail. |
Colin Cross | f37b455 | 2015-07-16 17:15:19 -0700 | [diff] [blame] | 334 | build_desc := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) $(PLATFORM_VERSION) $(BUILD_ID) $(BUILD_NUMBER_FROM_FILE) $(BUILD_VERSION_TAGS) |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 335 | $(intermediate_system_build_prop): PRIVATE_BUILD_DESC := $(build_desc) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 336 | |
Jeff Sharkey | 26e1a28 | 2014-03-21 16:20:05 -0700 | [diff] [blame] | 337 | # The string used to uniquely identify the combined build and product; used by the OTA server. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 338 | ifeq (,$(strip $(BUILD_FINGERPRINT))) |
Nan Zhang | 0abdb58 | 2018-02-20 17:00:39 -0800 | [diff] [blame] | 339 | ifeq ($(strip $(HAS_BUILD_NUMBER)),false) |
Dan Willemsen | 63e48db | 2019-01-02 12:27:43 -0800 | [diff] [blame] | 340 | BF_BUILD_NUMBER := $(BUILD_USERNAME)$$($(DATE_FROM_FILE) +%m%d%H%M) |
Ying Wang | 50367cc | 2014-06-12 18:42:53 -0700 | [diff] [blame] | 341 | else |
Nan Zhang | 0abdb58 | 2018-02-20 17:00:39 -0800 | [diff] [blame] | 342 | BF_BUILD_NUMBER := $(file <$(BUILD_NUMBER_FILE)) |
Ying Wang | 50367cc | 2014-06-12 18:42:53 -0700 | [diff] [blame] | 343 | endif |
| 344 | BUILD_FINGERPRINT := $(PRODUCT_BRAND)/$(TARGET_PRODUCT)/$(TARGET_DEVICE):$(PLATFORM_VERSION)/$(BUILD_ID)/$(BF_BUILD_NUMBER):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 345 | endif |
Nan Zhang | 0abdb58 | 2018-02-20 17:00:39 -0800 | [diff] [blame] | 346 | # unset it for safety. |
| 347 | BF_BUILD_NUMBER := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 348 | |
Nan Zhang | 0abdb58 | 2018-02-20 17:00:39 -0800 | [diff] [blame] | 349 | BUILD_FINGERPRINT_FILE := $(PRODUCT_OUT)/build_fingerprint.txt |
| 350 | ifneq (,$(shell mkdir -p $(PRODUCT_OUT) && echo $(BUILD_FINGERPRINT) >$(BUILD_FINGERPRINT_FILE) && grep " " $(BUILD_FINGERPRINT_FILE))) |
| 351 | $(error BUILD_FINGERPRINT cannot contain spaces: "$(file <$(BUILD_FINGERPRINT_FILE))") |
| 352 | endif |
| 353 | BUILD_FINGERPRINT_FROM_FILE := $$(cat $(BUILD_FINGERPRINT_FILE)) |
| 354 | # unset it for safety. |
| 355 | BUILD_FINGERPRINT := |
Colin Cross | f37b455 | 2015-07-16 17:15:19 -0700 | [diff] [blame] | 356 | |
Jeff Sharkey | 26e1a28 | 2014-03-21 16:20:05 -0700 | [diff] [blame] | 357 | # The string used to uniquely identify the system build; used by the OTA server. |
| 358 | # This purposefully excludes any product-specific variables. |
| 359 | ifeq (,$(strip $(BUILD_THUMBPRINT))) |
Nan Zhang | 0abdb58 | 2018-02-20 17:00:39 -0800 | [diff] [blame] | 360 | BUILD_THUMBPRINT := $(PLATFORM_VERSION)/$(BUILD_ID)/$(BUILD_NUMBER_FROM_FILE):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS) |
Jeff Sharkey | 26e1a28 | 2014-03-21 16:20:05 -0700 | [diff] [blame] | 361 | endif |
Nan Zhang | 0abdb58 | 2018-02-20 17:00:39 -0800 | [diff] [blame] | 362 | |
| 363 | BUILD_THUMBPRINT_FILE := $(PRODUCT_OUT)/build_thumbprint.txt |
| 364 | ifneq (,$(shell mkdir -p $(PRODUCT_OUT) && echo $(BUILD_THUMBPRINT) >$(BUILD_THUMBPRINT_FILE) && grep " " $(BUILD_THUMBPRINT_FILE))) |
| 365 | $(error BUILD_THUMBPRINT cannot contain spaces: "$(file <$(BUILD_THUMBPRINT_FILE))") |
Jeff Sharkey | 26e1a28 | 2014-03-21 16:20:05 -0700 | [diff] [blame] | 366 | endif |
Nan Zhang | 0abdb58 | 2018-02-20 17:00:39 -0800 | [diff] [blame] | 367 | BUILD_THUMBPRINT_FROM_FILE := $$(cat $(BUILD_THUMBPRINT_FILE)) |
| 368 | # unset it for safety. |
| 369 | BUILD_THUMBPRINT := |
Jeff Sharkey | 26e1a28 | 2014-03-21 16:20:05 -0700 | [diff] [blame] | 370 | |
Ying Wang | e24e17a | 2014-10-07 18:42:11 -0700 | [diff] [blame] | 371 | KNOWN_OEM_THUMBPRINT_PROPERTIES := \ |
| 372 | ro.product.brand \ |
| 373 | ro.product.name \ |
| 374 | ro.product.device |
| 375 | OEM_THUMBPRINT_PROPERTIES := $(filter $(KNOWN_OEM_THUMBPRINT_PROPERTIES),\ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 376 | $(PRODUCT_OEM_PROPERTIES)) |
Ying Wang | e24e17a | 2014-10-07 18:42:11 -0700 | [diff] [blame] | 377 | |
Sriram Raman | 7b64124 | 2009-03-24 22:40:59 -0700 | [diff] [blame] | 378 | # Display parameters shown under Settings -> About Phone |
| 379 | ifeq ($(TARGET_BUILD_VARIANT),user) |
| 380 | # User builds should show: |
| 381 | # release build number or branch.buld_number non-release builds |
| 382 | |
| 383 | # Dev. branches should have DISPLAY_BUILD_NUMBER set |
Colin Cross | 63fe36a | 2017-02-21 17:23:02 -0800 | [diff] [blame] | 384 | ifeq (true,$(DISPLAY_BUILD_NUMBER)) |
Colin Cross | f37b455 | 2015-07-16 17:15:19 -0700 | [diff] [blame] | 385 | BUILD_DISPLAY_ID := $(BUILD_ID).$(BUILD_NUMBER_FROM_FILE) $(BUILD_KEYS) |
Sriram Raman | 7b64124 | 2009-03-24 22:40:59 -0700 | [diff] [blame] | 386 | else |
Doug Zongker | a8608a7 | 2013-07-23 11:51:04 -0700 | [diff] [blame] | 387 | BUILD_DISPLAY_ID := $(BUILD_ID) $(BUILD_KEYS) |
Sriram Raman | 7b64124 | 2009-03-24 22:40:59 -0700 | [diff] [blame] | 388 | endif |
| 389 | else |
| 390 | # Non-user builds should show detailed build information |
| 391 | BUILD_DISPLAY_ID := $(build_desc) |
| 392 | endif |
| 393 | |
Narayan Kamath | baf3eb9 | 2015-01-15 18:16:24 +0000 | [diff] [blame] | 394 | # Accepts a whitespace separated list of product locales such as |
| 395 | # (en_US en_AU en_GB...) and returns the first locale in the list with |
| 396 | # underscores replaced with hyphens. In the example above, this will |
| 397 | # return "en-US". |
| 398 | define get-default-product-locale |
| 399 | $(strip $(subst _,-, $(firstword $(1)))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 400 | endef |
| 401 | |
Vishwath Mohan | 9ebc278 | 2017-05-09 09:54:49 -0700 | [diff] [blame] | 402 | # TARGET_BUILD_FLAVOR and ro.build.flavor are used only by the test |
| 403 | # harness to distinguish builds. Only add _asan for a sanitized build |
| 404 | # if it isn't already a part of the flavor (via a dedicated lunch |
| 405 | # config for example). |
Ying Wang | 21ec03d | 2015-10-28 18:45:03 -0700 | [diff] [blame] | 406 | TARGET_BUILD_FLAVOR := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) |
Ivan Lozano | 0f71db3 | 2017-08-14 07:57:37 -0700 | [diff] [blame] | 407 | ifneq (, $(filter address, $(SANITIZE_TARGET))) |
Vishwath Mohan | 9ebc278 | 2017-05-09 09:54:49 -0700 | [diff] [blame] | 408 | ifeq (,$(findstring _asan,$(TARGET_BUILD_FLAVOR))) |
Ying Wang | 21ec03d | 2015-10-28 18:45:03 -0700 | [diff] [blame] | 409 | TARGET_BUILD_FLAVOR := $(TARGET_BUILD_FLAVOR)_asan |
| 410 | endif |
Vishwath Mohan | 9ebc278 | 2017-05-09 09:54:49 -0700 | [diff] [blame] | 411 | endif |
Ying Wang | 21ec03d | 2015-10-28 18:45:03 -0700 | [diff] [blame] | 412 | |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 413 | ifdef TARGET_SYSTEM_PROP |
| 414 | system_prop_file := $(TARGET_SYSTEM_PROP) |
| 415 | else |
| 416 | system_prop_file := $(wildcard $(TARGET_DEVICE_DIR)/system.prop) |
| 417 | endif |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 418 | $(intermediate_system_build_prop): $(BUILDINFO_SH) $(BUILDINFO_COMMON_SH) $(INTERNAL_BUILD_ID_MAKEFILE) $(BUILD_SYSTEM)/version_defaults.mk $(system_prop_file) $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(API_FINGERPRINT) $(POST_PROCESS_PROPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 419 | @echo Target buildinfo: $@ |
| 420 | @mkdir -p $(dir $@) |
Luca Stefani | 033c7eb | 2020-03-27 12:26:12 +0000 | [diff] [blame] | 421 | $(hide) rm -f $@ && touch $@ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 422 | ifneq ($(PRODUCT_OEM_PROPERTIES),) |
Jeff Sharkey | 26d22f7 | 2014-03-18 17:20:10 -0700 | [diff] [blame] | 423 | $(hide) echo "#" >> $@; \ |
| 424 | echo "# PRODUCT_OEM_PROPERTIES" >> $@; \ |
Jeff Sharkey | 26e1a28 | 2014-03-21 16:20:05 -0700 | [diff] [blame] | 425 | echo "#" >> $@; |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 426 | $(hide) $(foreach prop,$(PRODUCT_OEM_PROPERTIES), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 427 | echo "import /oem/oem.prop $(prop)" >> $@;) |
Jeff Sharkey | 26d22f7 | 2014-03-18 17:20:10 -0700 | [diff] [blame] | 428 | endif |
Anton Hansson | ee4c970 | 2018-12-21 15:36:00 +0000 | [diff] [blame] | 429 | $(hide) PRODUCT_BRAND="$(PRODUCT_SYSTEM_BRAND)" \ |
| 430 | PRODUCT_MANUFACTURER="$(PRODUCT_SYSTEM_MANUFACTURER)" \ |
| 431 | PRODUCT_MODEL="$(PRODUCT_SYSTEM_MODEL)" \ |
| 432 | PRODUCT_NAME="$(PRODUCT_SYSTEM_NAME)" \ |
| 433 | PRODUCT_DEVICE="$(PRODUCT_SYSTEM_DEVICE)" \ |
| 434 | $(call generate-common-build-props-with-product-vars-set,system,$@) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 435 | $(hide) TARGET_BUILD_TYPE="$(TARGET_BUILD_VARIANT)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 436 | TARGET_BUILD_FLAVOR="$(TARGET_BUILD_FLAVOR)" \ |
| 437 | TARGET_DEVICE="$(TARGET_DEVICE)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 438 | PRODUCT_DEFAULT_LOCALE="$(call get-default-product-locale,$(PRODUCT_LOCALES))" \ |
| 439 | PRODUCT_DEFAULT_WIFI_CHANNELS="$(PRODUCT_DEFAULT_WIFI_CHANNELS)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 440 | PRIVATE_BUILD_DESC="$(PRIVATE_BUILD_DESC)" \ |
| 441 | BUILD_ID="$(BUILD_ID)" \ |
| 442 | BUILD_DISPLAY_ID="$(BUILD_DISPLAY_ID)" \ |
| 443 | DATE="$(DATE_FROM_FILE)" \ |
Dan Willemsen | 63e48db | 2019-01-02 12:27:43 -0800 | [diff] [blame] | 444 | BUILD_USERNAME="$(BUILD_USERNAME)" \ |
| 445 | BUILD_HOSTNAME="$(BUILD_HOSTNAME)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 446 | BUILD_NUMBER="$(BUILD_NUMBER_FROM_FILE)" \ |
| 447 | BOARD_BUILD_SYSTEM_ROOT_IMAGE="$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 448 | PLATFORM_VERSION="$(PLATFORM_VERSION)" \ |
| 449 | PLATFORM_SECURITY_PATCH="$(PLATFORM_SECURITY_PATCH)" \ |
| 450 | PLATFORM_BASE_OS="$(PLATFORM_BASE_OS)" \ |
| 451 | PLATFORM_SDK_VERSION="$(PLATFORM_SDK_VERSION)" \ |
| 452 | PLATFORM_PREVIEW_SDK_VERSION="$(PLATFORM_PREVIEW_SDK_VERSION)" \ |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 453 | PLATFORM_PREVIEW_SDK_FINGERPRINT="$$(cat $(API_FINGERPRINT))" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 454 | PLATFORM_VERSION_CODENAME="$(PLATFORM_VERSION_CODENAME)" \ |
| 455 | PLATFORM_VERSION_ALL_CODENAMES="$(PLATFORM_VERSION_ALL_CODENAMES)" \ |
| 456 | PLATFORM_MIN_SUPPORTED_TARGET_SDK_VERSION="$(PLATFORM_MIN_SUPPORTED_TARGET_SDK_VERSION)" \ |
| 457 | BUILD_VERSION_TAGS="$(BUILD_VERSION_TAGS)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 458 | $(if $(OEM_THUMBPRINT_PROPERTIES),BUILD_THUMBPRINT="$(BUILD_THUMBPRINT_FROM_FILE)") \ |
| 459 | TARGET_CPU_ABI_LIST="$(TARGET_CPU_ABI_LIST)" \ |
| 460 | TARGET_CPU_ABI_LIST_32_BIT="$(TARGET_CPU_ABI_LIST_32_BIT)" \ |
| 461 | TARGET_CPU_ABI_LIST_64_BIT="$(TARGET_CPU_ABI_LIST_64_BIT)" \ |
| 462 | TARGET_CPU_ABI="$(TARGET_CPU_ABI)" \ |
| 463 | TARGET_CPU_ABI2="$(TARGET_CPU_ABI2)" \ |
Jeff Sharkey | 26d22f7 | 2014-03-18 17:20:10 -0700 | [diff] [blame] | 464 | bash $(BUILDINFO_SH) >> $@ |
Johan Redestig | 674a27d | 2012-04-12 17:00:58 +0200 | [diff] [blame] | 465 | $(hide) $(foreach file,$(system_prop_file), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 466 | if [ -f "$(file)" ]; then \ |
| 467 | echo Target buildinfo from: "$(file)"; \ |
| 468 | echo "" >> $@; \ |
| 469 | echo "#" >> $@; \ |
| 470 | echo "# from $(file)" >> $@; \ |
| 471 | echo "#" >> $@; \ |
| 472 | cat $(file) >> $@; \ |
| 473 | echo "# end of $(file)" >> $@; \ |
| 474 | fi;) |
Jaekyun Seok | 294286d | 2017-01-20 13:17:12 +0900 | [diff] [blame] | 475 | $(if $(FINAL_BUILD_PROPERTIES), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 476 | $(hide) echo >> $@; \ |
| 477 | echo "#" >> $@; \ |
| 478 | echo "# ADDITIONAL_BUILD_PROPERTIES" >> $@; \ |
| 479 | echo "#" >> $@; ) |
Jaekyun Seok | 294286d | 2017-01-20 13:17:12 +0900 | [diff] [blame] | 480 | $(hide) $(foreach line,$(FINAL_BUILD_PROPERTIES), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 481 | echo "$(line)" >> $@;) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 482 | $(hide) $(POST_PROCESS_PROPS) $@ $(PRODUCT_SYSTEM_PROPERTY_BLACKLIST) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 483 | |
| 484 | build_desc := |
| 485 | |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 486 | INSTALLED_RECOVERYIMAGE_TARGET := |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 487 | ifdef BUILDING_RECOVERY_IMAGE |
| 488 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 489 | INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img |
| 490 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 491 | endif |
| 492 | |
Jooyung Han | 72b65ab | 2019-05-23 19:48:13 +0900 | [diff] [blame] | 493 | $(INSTALLED_BUILD_PROP_TARGET): $(intermediate_system_build_prop) |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 494 | @echo "Target build info: $@" |
Steven Moreland | ec08265 | 2017-10-22 02:11:47 -0700 | [diff] [blame] | 495 | $(hide) grep -v 'ro.product.first_api_level' $(intermediate_system_build_prop) > $@ |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 496 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 497 | # ----------------------------------------------------------------- |
Daniel Rosenberg | 40b61ca | 2014-07-21 17:21:20 -0700 | [diff] [blame] | 498 | # vendor build.prop |
| 499 | # |
Alex Naidis | 47e24e9 | 2016-01-10 14:18:54 +0000 | [diff] [blame] | 500 | # For verifying that the vendor build is what we think it is |
Daniel Rosenberg | 40b61ca | 2014-07-21 17:21:20 -0700 | [diff] [blame] | 501 | INSTALLED_VENDOR_BUILD_PROP_TARGET := $(TARGET_OUT_VENDOR)/build.prop |
| 502 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_VENDOR_BUILD_PROP_TARGET) |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 503 | |
Rashed Abdel-Tawab | 194ed8e | 2017-12-26 01:59:15 +0200 | [diff] [blame] | 504 | ifdef TARGET_VENDOR_PROP |
| 505 | vendor_prop_files := $(TARGET_VENDOR_PROP) |
| 506 | else |
| 507 | vendor_prop_files := $(wildcard $(TARGET_DEVICE_DIR)/vendor.prop) |
| 508 | endif |
| 509 | |
Jaekyun Seok | fbc07f9 | 2017-03-03 12:40:21 +0900 | [diff] [blame] | 510 | ifdef property_overrides_split_enabled |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 511 | FINAL_VENDOR_BUILD_PROPERTIES += \ |
| 512 | $(call collapse-pairs, $(PRODUCT_PROPERTY_OVERRIDES)) |
| 513 | FINAL_VENDOR_BUILD_PROPERTIES := $(call uniq-pairs-by-first-component, \ |
| 514 | $(FINAL_VENDOR_BUILD_PROPERTIES),=) |
Jaekyun Seok | fbc07f9 | 2017-03-03 12:40:21 +0900 | [diff] [blame] | 515 | endif # property_overrides_split_enabled |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 516 | |
Rashed Abdel-Tawab | 194ed8e | 2017-12-26 01:59:15 +0200 | [diff] [blame] | 517 | $(INSTALLED_VENDOR_BUILD_PROP_TARGET): $(BUILDINFO_COMMON_SH) $(POST_PROCESS_PROPS) $(intermediate_system_build_prop) $(vendor_prop_files) |
Daniel Rosenberg | 40b61ca | 2014-07-21 17:21:20 -0700 | [diff] [blame] | 518 | @echo Target vendor buildinfo: $@ |
| 519 | @mkdir -p $(dir $@) |
Luca Stefani | 033c7eb | 2020-03-27 12:26:12 +0000 | [diff] [blame] | 520 | $(hide) rm -f $@ && touch $@ |
Hridya Valsaraju | 1fd498d | 2019-05-07 10:28:49 -0700 | [diff] [blame] | 521 | ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true) |
| 522 | $(hide) echo ro.boot.dynamic_partitions=true >> $@ |
| 523 | endif |
| 524 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 525 | $(hide) echo ro.boot.dynamic_partitions_retrofit=true >> $@ |
| 526 | endif |
Sandeep Patil | 127f501 | 2017-10-23 19:47:43 -0700 | [diff] [blame] | 527 | $(hide) grep 'ro.product.first_api_level' $(intermediate_system_build_prop) >> $@ || true |
Max Bires | a174998 | 2018-03-28 15:48:13 -0700 | [diff] [blame] | 528 | $(hide) echo ro.vendor.build.security_patch="$(VENDOR_SECURITY_PATCH)">>$@ |
Isaac Chen | 8d11feb | 2018-01-31 14:27:37 +0800 | [diff] [blame] | 529 | $(hide) echo ro.vendor.product.cpu.abilist="$(TARGET_CPU_ABI_LIST)">>$@ |
| 530 | $(hide) echo ro.vendor.product.cpu.abilist32="$(TARGET_CPU_ABI_LIST_32_BIT)">>$@ |
| 531 | $(hide) echo ro.vendor.product.cpu.abilist64="$(TARGET_CPU_ABI_LIST_64_BIT)">>$@ |
Anton Hansson | 1f8729e | 2018-08-15 12:11:55 +0100 | [diff] [blame] | 532 | $(hide) echo ro.product.board="$(TARGET_BOOTLOADER_BOARD_NAME)">>$@ |
| 533 | $(hide) echo ro.board.platform="$(TARGET_BOARD_PLATFORM)">>$@ |
Stan Iliev | 144d26a | 2018-12-14 13:18:05 -0500 | [diff] [blame] | 534 | $(hide) echo ro.hwui.use_vulkan="$(TARGET_USES_VULKAN)">>$@ |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 535 | ifdef TARGET_SCREEN_DENSITY |
| 536 | $(hide) echo ro.sf.lcd_density="$(TARGET_SCREEN_DENSITY)">>$@ |
| 537 | endif |
Tao Bao | 67932ab | 2019-04-19 00:09:16 -0700 | [diff] [blame] | 538 | ifeq ($(AB_OTA_UPDATER),true) |
| 539 | $(hide) echo ro.build.ab_update=true >> $@ |
| 540 | endif |
Anton Hansson | 1f8729e | 2018-08-15 12:11:55 +0100 | [diff] [blame] | 541 | $(hide) $(call generate-common-build-props,vendor,$@) |
Anton Hansson | 15794ca | 2019-04-08 17:47:35 +0100 | [diff] [blame] | 542 | $(hide) echo "#" >> $@; \ |
| 543 | echo "# BOOTIMAGE_BUILD_PROPERTIES" >> $@; \ |
| 544 | echo "#" >> $@; |
Anton Hansson | f299889 | 2019-04-29 15:39:10 +0100 | [diff] [blame] | 545 | $(hide) echo ro.bootimage.build.date=`$(DATE_FROM_FILE)`>>$@ |
| 546 | $(hide) echo ro.bootimage.build.date.utc=`$(DATE_FROM_FILE) +%s`>>$@ |
| 547 | $(hide) echo ro.bootimage.build.fingerprint="$(BUILD_FINGERPRINT_FROM_FILE)">>$@ |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 548 | $(hide) echo "#" >> $@; \ |
| 549 | echo "# ADDITIONAL VENDOR BUILD PROPERTIES" >> $@; \ |
| 550 | echo "#" >> $@; |
Anton Hansson | c65ebaf | 2019-04-09 16:21:51 +0100 | [diff] [blame] | 551 | $(hide) cat $(INSTALLED_ANDROID_INFO_TXT_TARGET) | grep 'require version-' | sed -e 's/require version-/ro.build.expect./g' >> $@ |
| 552 | ifdef property_overrides_split_enabled |
Rashed Abdel-Tawab | 194ed8e | 2017-12-26 01:59:15 +0200 | [diff] [blame] | 553 | $(hide) $(foreach file,$(vendor_prop_files), \ |
| 554 | if [ -f "$(file)" ]; then \ |
| 555 | echo Target vendor properties from: "$(file)"; \ |
| 556 | echo "" >> $@; \ |
| 557 | echo "#" >> $@; \ |
| 558 | echo "# from $(file)" >> $@; \ |
| 559 | echo "#" >> $@; \ |
| 560 | cat $(file) >> $@; \ |
| 561 | echo "# end of $(file)" >> $@; \ |
| 562 | fi;) |
Jaekyun Seok | 8bee120 | 2017-01-31 20:07:02 +0900 | [diff] [blame] | 563 | $(hide) $(foreach line,$(FINAL_VENDOR_BUILD_PROPERTIES), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 564 | echo "$(line)" >> $@;) |
Jaekyun Seok | fbc07f9 | 2017-03-03 12:40:21 +0900 | [diff] [blame] | 565 | endif # property_overrides_split_enabled |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 566 | $(hide) $(POST_PROCESS_PROPS) $@ $(PRODUCT_VENDOR_PROPERTY_BLACKLIST) |
Daniel Rosenberg | 40b61ca | 2014-07-21 17:21:20 -0700 | [diff] [blame] | 567 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 568 | # ----------------------------------------------------------------- |
| 569 | # product build.prop |
| 570 | INSTALLED_PRODUCT_BUILD_PROP_TARGET := $(TARGET_OUT_PRODUCT)/build.prop |
| 571 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) |
| 572 | |
Anton Hansson | e9ee80e | 2018-11-22 15:27:35 +0000 | [diff] [blame] | 573 | ifdef TARGET_PRODUCT_PROP |
| 574 | product_prop_files := $(TARGET_PRODUCT_PROP) |
| 575 | else |
| 576 | product_prop_files := $(wildcard $(TARGET_DEVICE_DIR)/product.prop) |
| 577 | endif |
| 578 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 579 | FINAL_PRODUCT_PROPERTIES += \ |
Yifan Hong | af9e7f0 | 2018-07-27 13:11:50 -0700 | [diff] [blame] | 580 | $(call collapse-pairs, $(PRODUCT_PRODUCT_PROPERTIES) $(ADDITIONAL_PRODUCT_PROPERTIES)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 581 | FINAL_PRODUCT_PROPERTIES := $(call uniq-pairs-by-first-component, \ |
| 582 | $(FINAL_PRODUCT_PROPERTIES),=) |
| 583 | |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 584 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET): $(BUILDINFO_COMMON_SH) $(POST_PROCESS_PROPS) $(product_prop_files) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 585 | @echo Target product buildinfo: $@ |
| 586 | @mkdir -p $(dir $@) |
Luca Stefani | 033c7eb | 2020-03-27 12:26:12 +0000 | [diff] [blame] | 587 | $(hide) rm -f $@ && touch $@ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 588 | ifdef BOARD_USES_PRODUCTIMAGE |
Anton Hansson | 1f8729e | 2018-08-15 12:11:55 +0100 | [diff] [blame] | 589 | $(hide) $(call generate-common-build-props,product,$@) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 590 | endif # BOARD_USES_PRODUCTIMAGE |
Anton Hansson | e9ee80e | 2018-11-22 15:27:35 +0000 | [diff] [blame] | 591 | $(hide) $(foreach file,$(product_prop_files), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 592 | if [ -f "$(file)" ]; then \ |
| 593 | echo Target product properties from: "$(file)"; \ |
| 594 | echo "" >> $@; \ |
| 595 | echo "#" >> $@; \ |
| 596 | echo "# from $(file)" >> $@; \ |
| 597 | echo "#" >> $@; \ |
| 598 | cat $(file) >> $@; \ |
| 599 | echo "# end of $(file)" >> $@; \ |
| 600 | fi;) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 601 | $(hide) echo "#" >> $@; \ |
| 602 | echo "# ADDITIONAL PRODUCT PROPERTIES" >> $@; \ |
Anton Hansson | 5ac408b | 2018-11-05 17:29:28 +0000 | [diff] [blame] | 603 | echo "#" >> $@; \ |
Anton Hansson | e9ee80e | 2018-11-22 15:27:35 +0000 | [diff] [blame] | 604 | echo "ro.build.characteristics=$(TARGET_AAPT_CHARACTERISTICS)" >> $@; |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 605 | $(hide) $(foreach line,$(FINAL_PRODUCT_PROPERTIES), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 606 | echo "$(line)" >> $@;) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 607 | $(hide) $(POST_PROCESS_PROPS) $@ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 608 | |
Andres Morales | 9c820f8 | 2015-01-13 15:30:34 -0800 | [diff] [blame] | 609 | # ---------------------------------------------------------------- |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 610 | # odm build.prop |
Bowgo Tsai | 71a4d5c | 2019-05-17 23:21:48 +0800 | [diff] [blame] | 611 | INSTALLED_ODM_BUILD_PROP_TARGET := $(TARGET_OUT_ODM)/etc/build.prop |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 612 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_ODM_BUILD_PROP_TARGET) |
| 613 | |
Rashed Abdel-Tawab | 194ed8e | 2017-12-26 01:59:15 +0200 | [diff] [blame] | 614 | ifdef TARGET_ODM_PROP |
| 615 | odm_prop_files := $(TARGET_ODM_PROP) |
| 616 | else |
| 617 | odm_prop_files := $(wildcard $(TARGET_DEVICE_DIR)/odm.prop) |
| 618 | endif |
| 619 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 620 | FINAL_ODM_BUILD_PROPERTIES += \ |
| 621 | $(call collapse-pairs, $(PRODUCT_ODM_PROPERTIES)) |
| 622 | FINAL_ODM_BUILD_PROPERTIES := $(call uniq-pairs-by-first-component, \ |
| 623 | $(FINAL_ODM_BUILD_PROPERTIES),=) |
| 624 | |
Rashed Abdel-Tawab | 194ed8e | 2017-12-26 01:59:15 +0200 | [diff] [blame] | 625 | $(INSTALLED_ODM_BUILD_PROP_TARGET): $(BUILDINFO_COMMON_SH) $(POST_PROCESS_PROPS) $(odm_prop_files) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 626 | @echo Target odm buildinfo: $@ |
| 627 | @mkdir -p $(dir $@) |
Luca Stefani | 033c7eb | 2020-03-27 12:26:12 +0000 | [diff] [blame] | 628 | $(hide) rm -f $@ && touch $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 629 | $(hide) echo ro.odm.product.cpu.abilist="$(TARGET_CPU_ABI_LIST)">>$@ |
| 630 | $(hide) echo ro.odm.product.cpu.abilist32="$(TARGET_CPU_ABI_LIST_32_BIT)">>$@ |
| 631 | $(hide) echo ro.odm.product.cpu.abilist64="$(TARGET_CPU_ABI_LIST_64_BIT)">>$@ |
Anton Hansson | 1f8729e | 2018-08-15 12:11:55 +0100 | [diff] [blame] | 632 | $(hide) $(call generate-common-build-props,odm,$@) |
Rashed Abdel-Tawab | 194ed8e | 2017-12-26 01:59:15 +0200 | [diff] [blame] | 633 | $(hide) $(foreach file,$(odm_prop_files), \ |
| 634 | if [ -f "$(file)" ]; then \ |
| 635 | echo Target odm properties from: "$(file)"; \ |
| 636 | echo "" >> $@; \ |
| 637 | echo "#" >> $@; \ |
| 638 | echo "# from $(file)" >> $@; \ |
| 639 | echo "#" >> $@; \ |
| 640 | cat $(file) >> $@; \ |
| 641 | echo "# end of $(file)" >> $@; \ |
| 642 | fi;) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 643 | $(hide) echo "#" >> $@; \ |
| 644 | echo "# ADDITIONAL ODM BUILD PROPERTIES" >> $@; \ |
| 645 | echo "#" >> $@; |
| 646 | $(hide) $(foreach line,$(FINAL_ODM_BUILD_PROPERTIES), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 647 | echo "$(line)" >> $@;) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 648 | $(hide) $(POST_PROCESS_PROPS) $@ |
Andres Morales | 9c820f8 | 2015-01-13 15:30:34 -0800 | [diff] [blame] | 649 | |
Daniel Rosenberg | 40b61ca | 2014-07-21 17:21:20 -0700 | [diff] [blame] | 650 | # ----------------------------------------------------------------- |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 651 | # system_ext build.prop |
| 652 | INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET := $(TARGET_OUT_SYSTEM_EXT)/build.prop |
| 653 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 654 | |
Bowgo Tsai | 06533fe | 2019-09-02 18:17:02 +0800 | [diff] [blame] | 655 | ifdef TARGET_SYSTEM_EXT_PROP |
| 656 | system_ext_prop_files := $(TARGET_SYSTEM_EXT_PROP) |
| 657 | else |
| 658 | system_ext_prop_files := $(wildcard $(TARGET_DEVICE_DIR)/system_ext.prop) |
| 659 | endif |
| 660 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 661 | FINAL_SYSTEM_EXT_PROPERTIES += \ |
| 662 | $(call collapse-pairs, $(PRODUCT_SYSTEM_EXT_PROPERTIES)) |
| 663 | FINAL_SYSTEM_EXT_PROPERTIES := $(call uniq-pairs-by-first-component, \ |
| 664 | $(FINAL_SYSTEM_EXT_PROPERTIES),=) |
| 665 | |
Bowgo Tsai | 06533fe | 2019-09-02 18:17:02 +0800 | [diff] [blame] | 666 | $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET): $(BUILDINFO_COMMON_SH) $(POST_PROCESS_PROPS) $(system_ext_prop_files) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 667 | @echo Target system_ext buildinfo: $@ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 668 | @mkdir -p $(dir $@) |
Luca Stefani | 033c7eb | 2020-03-27 12:26:12 +0000 | [diff] [blame] | 669 | $(hide) rm -f $@ && touch $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 670 | $(hide) $(call generate-common-build-props,system_ext,$@) |
Bowgo Tsai | 06533fe | 2019-09-02 18:17:02 +0800 | [diff] [blame] | 671 | $(hide) $(foreach file,$(system_ext_prop_files), \ |
| 672 | if [ -f "$(file)" ]; then \ |
| 673 | echo Target system_ext properties from: "$(file)"; \ |
| 674 | echo "" >> $@; \ |
| 675 | echo "#" >> $@; \ |
| 676 | echo "# from $(file)" >> $@; \ |
| 677 | echo "#" >> $@; \ |
| 678 | cat $(file) >> $@; \ |
| 679 | echo "# end of $(file)" >> $@; \ |
| 680 | fi;) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 681 | $(hide) echo "#" >> $@; \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 682 | echo "# ADDITIONAL SYSTEM_EXT BUILD PROPERTIES" >> $@; \ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 683 | echo "#" >> $@; |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 684 | $(hide) $(foreach line,$(FINAL_SYSTEM_EXT_PROPERTIES), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 685 | echo "$(line)" >> $@;) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 686 | $(hide) $(POST_PROCESS_PROPS) $@ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 687 | |
| 688 | # ---------------------------------------------------------------- |
| 689 | |
| 690 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 691 | # sdk-build.prop |
| 692 | # |
| 693 | # There are certain things in build.prop that we don't want to |
| 694 | # ship with the sdk; remove them. |
| 695 | |
| 696 | # This must be a list of entire property keys followed by |
| 697 | # "=" characters, without any internal spaces. |
| 698 | sdk_build_prop_remove := \ |
| 699 | ro.build.user= \ |
| 700 | ro.build.host= \ |
| 701 | ro.product.brand= \ |
| 702 | ro.product.manufacturer= \ |
| 703 | ro.product.device= |
| 704 | # TODO: Remove this soon-to-be obsolete property |
| 705 | sdk_build_prop_remove += ro.build.product= |
| 706 | INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop |
| 707 | $(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET) |
| 708 | @echo SDK buildinfo: $@ |
| 709 | @mkdir -p $(dir $@) |
| 710 | $(hide) grep -v "$(subst $(space),\|,$(strip \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 711 | $(sdk_build_prop_remove)))" $< > $@.tmp |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 712 | $(hide) for x in $(sdk_build_prop_remove); do \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 713 | echo "$$x"generic >> $@.tmp; done |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 714 | $(hide) mv $@.tmp $@ |
| 715 | |
| 716 | # ----------------------------------------------------------------- |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 717 | # kernel modules |
| 718 | |
| 719 | # Depmod requires a well-formed kernel version so 0.0 is used as a placeholder. |
| 720 | DEPMOD_STAGING_SUBDIR :=$= lib/modules/0.0 |
| 721 | |
| 722 | # $(1): modules list |
| 723 | # $(2): output dir |
| 724 | # $(3): mount point |
| 725 | # $(4): staging dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 726 | # $(5): module load list |
| 727 | # $(6): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 728 | # $(7): module archive |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 729 | # Returns the a list of src:dest pairs to install the modules using copy-many-files. |
| 730 | define build-image-kernel-modules |
| 731 | $(foreach module,$(1),$(module):$(2)/lib/modules/$(notdir $(module))) \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 732 | $(eval $(call build-image-kernel-modules-depmod,$(1),$(3),$(4),$(5),$(6),$(7),$(2))) \ |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 733 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.dep:$(2)/lib/modules/modules.dep \ |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 734 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.alias:$(2)/lib/modules/modules.alias \ |
Steve Muckle | 0f7bb1b | 2019-07-11 17:42:13 -0700 | [diff] [blame] | 735 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.softdep:$(2)/lib/modules/modules.softdep \ |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 736 | $(4)/$(DEPMOD_STAGING_SUBDIR)/$(6):$(2)/lib/modules/$(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 737 | endef |
| 738 | |
| 739 | # $(1): modules list |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 740 | # $(2): mount point |
| 741 | # $(3): staging dir |
| 742 | # $(4): module load list |
| 743 | # $(5): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 744 | # $(6): module archive |
| 745 | # $(7): output dir |
| 746 | # TODO(b/144844424): If a module archive is being used, this step (which |
| 747 | # generates obj/PACKAGING/.../modules.dep) also unzips the module archive into |
| 748 | # the output directory. This should be moved to a module with a |
| 749 | # LOCAL_POST_INSTALL_CMD so that if modules.dep is removed from the output dir, |
| 750 | # the archive modules are restored along with modules.dep. |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 751 | define build-image-kernel-modules-depmod |
Steve Muckle | 0f7bb1b | 2019-07-11 17:42:13 -0700 | [diff] [blame] | 752 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: .KATI_IMPLICIT_OUTPUTS := $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.alias $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.softdep $(3)/$(DEPMOD_STAGING_SUBDIR)/$(5) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 753 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(DEPMOD) |
| 754 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULES := $(1) |
| 755 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MOUNT_POINT := $(2) |
| 756 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_DIR := $(3)/$(DEPMOD_STAGING_SUBDIR)/$(2)/lib/modules |
| 757 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_STAGING_DIR := $(3) |
| 758 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_LOAD_MODULES := $(4) |
| 759 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_LOAD_FILE := $(3)/$(DEPMOD_STAGING_SUBDIR)/$(5) |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 760 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_ARCHIVE := $(6) |
| 761 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_OUTPUT_DIR := $(7) |
| 762 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(1) $(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 763 | @echo depmod $$(PRIVATE_STAGING_DIR) |
| 764 | rm -rf $$(PRIVATE_STAGING_DIR) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 765 | mkdir -p $$(PRIVATE_MODULE_DIR) |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 766 | $(if $(6),\ |
| 767 | unzip -qo -d $$(PRIVATE_MODULE_DIR) $$(PRIVATE_MODULE_ARCHIVE); \ |
| 768 | mkdir -p $$(PRIVATE_OUTPUT_DIR)/lib; \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 769 | cp -r $$(PRIVATE_MODULE_DIR) $$(PRIVATE_OUTPUT_DIR)/lib/; \ |
| 770 | find $$(PRIVATE_MODULE_DIR) -type f -name *.ko | xargs basename -a > $$(PRIVATE_LOAD_FILE); \ |
| 771 | ) |
| 772 | $(if $(1),\ |
| 773 | cp $$(PRIVATE_MODULES) $$(PRIVATE_MODULE_DIR)/; \ |
| 774 | for MODULE in $$(PRIVATE_LOAD_MODULES); do \ |
| 775 | basename $$$$MODULE >> $$(PRIVATE_LOAD_FILE); \ |
| 776 | done; \ |
| 777 | ) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 778 | $(DEPMOD) -b $$(PRIVATE_STAGING_DIR) 0.0 |
| 779 | # Turn paths in modules.dep into absolute paths |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 780 | sed -i.tmp -e 's|\([^: ]*lib/modules/[^: ]*\)|/\1|g' $$(PRIVATE_STAGING_DIR)/$$(DEPMOD_STAGING_SUBDIR)/modules.dep |
| 781 | touch $$(PRIVATE_LOAD_FILE) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 782 | endef |
| 783 | |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 784 | # $(1): staging dir |
| 785 | # $(2): module load list |
| 786 | # $(3): module load list filename |
| 787 | # $(4): output dir |
| 788 | define module-load-list-copy-paths |
| 789 | $(eval $(call build-image-module-load-list,$(1),$(2),$(3))) \ |
| 790 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(3):$(4)/lib/modules/$(3) |
| 791 | endef |
| 792 | |
| 793 | # $(1): staging dir |
| 794 | # $(2): module load list |
| 795 | # $(3): module load list filename |
| 796 | define build-image-module-load-list |
| 797 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(3): PRIVATE_STAGING_DIR := $(1) |
| 798 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(3): PRIVATE_LOAD_MODULES := $(2) |
| 799 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(3): PRIVATE_LOAD_FILENAME := $(3) |
| 800 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(3): $(2) |
| 801 | rm -f $$@ |
| 802 | (for MODULE in $$(PRIVATE_LOAD_MODULES); do basename $$$$MODULE >> $$@; done) |
| 803 | endef |
| 804 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 805 | ifneq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 806 | # If there is no vendor boot partition, store vendor ramdisk kernel modules in the |
| 807 | # boot ramdisk. |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 808 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 809 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD) |
| 810 | endif |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 811 | |
| 812 | ifeq ($(BOARD_RECOVERY_KERNEL_MODULES_LOAD),) |
| 813 | BOARD_RECOVERY_KERNEL_MODULES_LOAD := $(BOARD_RECOVERY_KERNEL_MODULES) |
| 814 | endif |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 815 | ifeq ($(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD),) |
| 816 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD := $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 817 | endif |
| 818 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 819 | ifneq ($(strip $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES)),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 820 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT), true) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 821 | BOARD_RECOVERY_KERNEL_MODULES += $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 822 | endif |
| 823 | endif |
| 824 | |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 825 | ifneq ($(strip $(BOARD_RECOVERY_KERNEL_MODULES))$(strip $(BOARD_RECOVERY_KERNEL_MODULES_ARCHIVE)),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 826 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT), true) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 827 | ifdef BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD |
| 828 | ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,ramdisk_modules),$(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD),modules.load,$(TARGET_RECOVERY_ROOT_OUT))) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 829 | endif |
| 830 | endif |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 831 | ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(call build-image-kernel-modules,$(BOARD_RECOVERY_KERNEL_MODULES),$(TARGET_RECOVERY_ROOT_OUT),,$(call intermediates-dir-for,PACKAGING,depmod_recovery),$(BOARD_RECOVERY_KERNEL_MODULES_LOAD),modules.load.recovery,$(BOARD_RECOVERY_KERNEL_MODULES_ARCHIVE))) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 832 | endif |
| 833 | |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 834 | ifneq ($(strip $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES))$(strip $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_ARCHIVE)),) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 835 | ifeq ($(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD),) |
| 836 | BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD := $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES) |
| 837 | endif |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 838 | ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(call build-image-kernel-modules,$(BOARD_VENDOR_RAMDISK_KERNEL_MODULES),$(TARGET_VENDOR_RAMDISK_OUT),,$(call intermediates-dir-for,PACKAGING,depmod_vendor_ramdisk),$(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD),modules.load,$(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_ARCHIVE))) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 839 | endif |
| 840 | |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 841 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT), true) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 842 | ifneq ($(strip $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES)),) |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 843 | ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(call build-image-kernel-modules,$(BOARD_GENERIC_RAMDISK_KERNEL_MODULES),$(TARGET_RAMDISK_OUT),,$(call intermediates-dir-for,PACKAGING,depmod_ramdisk),$(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD),modules.load,)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 844 | endif |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 845 | endif |
| 846 | |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 847 | ifneq ($(strip $(BOARD_VENDOR_KERNEL_MODULES)$(strip $(BOARD_VENDOR_KERNEL_MODULES_ARCHIVE))),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 848 | ifeq ($(BOARD_VENDOR_KERNEL_MODULES_LOAD),) |
| 849 | BOARD_VENDOR_KERNEL_MODULES_LOAD := $(BOARD_VENDOR_KERNEL_MODULES) |
| 850 | endif |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 851 | ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(call build-image-kernel-modules,$(BOARD_VENDOR_KERNEL_MODULES),$(TARGET_OUT_VENDOR),vendor,$(call intermediates-dir-for,PACKAGING,depmod_vendor),$(BOARD_VENDOR_KERNEL_MODULES_LOAD),modules.load,$(BOARD_VENDOR_KERNEL_MODULES_ARCHIVE))) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 852 | endif |
| 853 | |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 854 | ifneq ($(strip $(BOARD_ODM_KERNEL_MODULES))$(strip $(BOARD_ODM_KERNEL_MODULES_ARCHIVE)),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 855 | ifeq ($(BOARD_RECOVERY_KERNEL_MODULES_LOAD),) |
| 856 | BOARD_ODM_KERNEL_MODULES_LOAD := $(BOARD_ODM_KERNEL_MODULES) |
| 857 | endif |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 858 | ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(call build-image-kernel-modules,$(BOARD_ODM_KERNEL_MODULES),$(TARGET_OUT_ODM),odm,$(call intermediates-dir-for,PACKAGING,depmod_odm),$(BOARD_ODM_KERNEL_MODULES_LOAD),modules.load,$(BOARD_ODM_KERNEL_MODULES_ARCHIVE))) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 859 | endif |
| 860 | |
| 861 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 862 | # Cert-to-package mapping. Used by the post-build signing tools. |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 863 | # Use a macro to add newline to each echo command |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 864 | # $1 package name |
| 865 | # $2 certificate |
| 866 | # $3 private key |
| 867 | # $4 compressed |
| 868 | # $5 partition tag |
| 869 | # $6 output file |
Narayan Kamath | 6a4bd69 | 2017-08-14 10:53:50 +0100 | [diff] [blame] | 870 | define _apkcerts_write_line |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 871 | $(hide) echo -n 'name="$(1).apk" certificate="$2" private_key="$3"' >> $6 |
| 872 | $(if $(4), $(hide) echo -n ' compressed="$4"' >> $6) |
| 873 | $(if $(5), $(hide) echo -n ' partition="$5"' >> $6) |
| 874 | $(hide) echo '' >> $6 |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 875 | |
| 876 | endef |
| 877 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 878 | name := $(TARGET_PRODUCT) |
| 879 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 880 | name := $(name)_debug |
| 881 | endif |
| 882 | name := $(name)-apkcerts-$(FILE_NAME_TAG) |
| 883 | intermediates := \ |
| 884 | $(call intermediates-dir-for,PACKAGING,apkcerts) |
| 885 | APKCERTS_FILE := $(intermediates)/$(name).txt |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 886 | # We don't need to really build all the modules. |
| 887 | # TODO: rebuild APKCERTS_FILE if any app change its cert. |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 888 | $(APKCERTS_FILE): |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 889 | @echo APK certs list: $@ |
| 890 | @mkdir -p $(dir $@) |
| 891 | @rm -f $@ |
Chris Gross | fabf50a | 2019-05-02 12:42:09 -0700 | [diff] [blame] | 892 | $(foreach p,$(sort $(PACKAGES)),\ |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 893 | $(if $(PACKAGES.$(p).EXTERNAL_KEY),\ |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 894 | $(call _apkcerts_write_line,$(p),"EXTERNAL","",$(PACKAGES.$(p).COMPRESSED),$(PACKAGES.$(p).PARTITION),$@),\ |
| 895 | $(call _apkcerts_write_line,$(p),$(PACKAGES.$(p).CERTIFICATE),$(PACKAGES.$(p).PRIVATE_KEY),$(PACKAGES.$(p).COMPRESSED),$(PACKAGES.$(p).PARTITION),$@))) |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 896 | # In case value of PACKAGES is empty. |
Ying Wang | f272cd6 | 2011-09-26 12:05:06 -0700 | [diff] [blame] | 897 | $(hide) touch $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 898 | |
| 899 | .PHONY: apkcerts-list |
| 900 | apkcerts-list: $(APKCERTS_FILE) |
| 901 | |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 902 | ifneq (,$(TARGET_BUILD_APPS)) |
| 903 | $(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt) |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 904 | $(call dist-for-goals, apps_only, $(SOONG_APEX_KEYS_FILE):apexkeys.txt) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 905 | endif |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 906 | |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 907 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 908 | # ----------------------------------------------------------------- |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 909 | # build system stats |
| 910 | BUILD_SYSTEM_STATS := $(PRODUCT_OUT)/build_system_stats.txt |
| 911 | $(BUILD_SYSTEM_STATS): |
| 912 | @rm -f $@ |
| 913 | @$(foreach s,$(STATS.MODULE_TYPE),echo "modules_type_make,$(s),$(words $(STATS.MODULE_TYPE.$(s)))" >>$@;) |
| 914 | @$(foreach s,$(STATS.SOONG_MODULE_TYPE),echo "modules_type_soong,$(s),$(STATS.SOONG_MODULE_TYPE.$(s))" >>$@;) |
| 915 | $(call dist-for-goals,droidcore,$(BUILD_SYSTEM_STATS)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 916 | |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 917 | # ----------------------------------------------------------------- |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 918 | # build /product/etc/security/avb/system_other.avbpubkey if needed |
| 919 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 920 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 921 | INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET := $(TARGET_OUT_PRODUCT_ETC)/security/avb/system_other.avbpubkey |
| 922 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET) |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 923 | endif # BOARD_AVB_ENABLE |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 924 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 925 | |
| 926 | # ----------------------------------------------------------------- |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 927 | # Modules ready to be converted to Soong, ordered by how many |
| 928 | # modules depend on them. |
| 929 | SOONG_CONV := $(sort $(SOONG_CONV)) |
| 930 | SOONG_CONV_DATA := $(call intermediates-dir-for,PACKAGING,soong_conversion)/soong_conv_data |
| 931 | $(SOONG_CONV_DATA): |
| 932 | @rm -f $@ |
Colin Cross | 3277ba3 | 2017-12-06 14:37:06 -0800 | [diff] [blame] | 933 | @$(foreach s,$(SOONG_CONV),echo "$(s),$(SOONG_CONV.$(s).TYPE),$(sort $(SOONG_CONV.$(s).PROBLEMS)),$(sort $(filter-out $(SOONG_ALREADY_CONV),$(SOONG_CONV.$(s).DEPS)))" >>$@;) |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 934 | |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 935 | SOONG_TO_CONVERT_SCRIPT := build/make/tools/soong_to_convert.py |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 936 | SOONG_TO_CONVERT := $(PRODUCT_OUT)/soong_to_convert.txt |
| 937 | $(SOONG_TO_CONVERT): $(SOONG_CONV_DATA) $(SOONG_TO_CONVERT_SCRIPT) |
| 938 | @rm -f $@ |
| 939 | $(hide) $(SOONG_TO_CONVERT_SCRIPT) $< >$@ |
| 940 | $(call dist-for-goals,droidcore,$(SOONG_TO_CONVERT)) |
| 941 | |
| 942 | # ----------------------------------------------------------------- |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 943 | # Modules use -Wno-error, or added default -Wall -Werror |
| 944 | WALL_WERROR := $(PRODUCT_OUT)/wall_werror.txt |
| 945 | $(WALL_WERROR): |
| 946 | @rm -f $@ |
| 947 | echo "# Modules using -Wno-error" >> $@ |
| 948 | for m in $(sort $(SOONG_MODULES_USING_WNO_ERROR) $(MODULES_USING_WNO_ERROR)); do echo $$m >> $@; done |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 949 | echo "# Modules added default -Wall" >> $@ |
| 950 | for m in $(sort $(SOONG_MODULES_ADDED_WALL) $(MODULES_ADDED_WALL)); do echo $$m >> $@; done |
| 951 | |
| 952 | $(call dist-for-goals,droidcore,$(WALL_WERROR)) |
| 953 | |
| 954 | # ----------------------------------------------------------------- |
Jesse Pai | d004692 | 2019-09-13 17:02:32 -0700 | [diff] [blame] | 955 | # C/C++ flag information for modules |
| 956 | $(call dist-for-goals,droidcore,$(SOONG_MODULES_CFLAG_ARTIFACTS)) |
| 957 | |
| 958 | # ----------------------------------------------------------------- |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 959 | # Modules missing profile files |
| 960 | PGO_PROFILE_MISSING := $(PRODUCT_OUT)/pgo_profile_file_missing.txt |
| 961 | $(PGO_PROFILE_MISSING): |
| 962 | @rm -f $@ |
| 963 | echo "# Modules missing PGO profile files" >> $@ |
| 964 | for m in $(SOONG_MODULES_MISSING_PGO_PROFILE_FILE); do echo $$m >> $@; done |
| 965 | |
| 966 | $(call dist-for-goals,droidcore,$(PGO_PROFILE_MISSING)) |
| 967 | |
| 968 | # ----------------------------------------------------------------- |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 969 | # The dev key is used to sign this package, and as the key required |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 970 | # for future OTA packages installed by this system. Actual product |
| 971 | # deliverables will be re-signed by hand. We expect this file to |
| 972 | # exist with the suffixes ".x509.pem" and ".pk8". |
Colin Cross | 21122f9 | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 973 | DEFAULT_KEY_CERT_PAIR := $(strip $(DEFAULT_SYSTEM_DEV_CERTIFICATE)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 974 | |
| 975 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 976 | # Rules that need to be present for the all targets, even |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 977 | # if they don't do anything. |
| 978 | .PHONY: systemimage |
| 979 | systemimage: |
| 980 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 981 | # ----------------------------------------------------------------- |
| 982 | |
| 983 | .PHONY: event-log-tags |
| 984 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 985 | # Produce an event logs tag file for everything we know about, in order |
| 986 | # to properly allocate numbers. Then produce a file that's filtered |
| 987 | # for what's going to be installed. |
| 988 | |
| 989 | all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt |
| 990 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 991 | event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags |
| 992 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 993 | # Include tags from all packages that we know about |
| 994 | all_event_log_tags_src := \ |
| 995 | $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS))) |
| 996 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 997 | # PDK builds will already have a full list of tags that needs to get merged |
| 998 | # in with the ones from source |
| 999 | pdk_fusion_log_tags_file := $(patsubst $(PRODUCT_OUT)/%,$(_pdk_fusion_intermediates)/%,$(filter $(event_log_tags_file),$(ALL_PDK_FUSION_FILES))) |
| 1000 | |
| 1001 | $(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src) $(pdk_fusion_log_tags_file) |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 1002 | $(all_event_log_tags_file): $(all_event_log_tags_src) $(pdk_fusion_log_tags_file) $(MERGETAGS) build/make/tools/event_log_tags.py |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 1003 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 1004 | $(hide) $(MERGETAGS) -o $@ $(PRIVATE_SRC_FILES) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 1005 | |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 1006 | # Include tags from all packages included in this product, plus all |
| 1007 | # tags that are part of the system (ie, not in a vendor/ or device/ |
| 1008 | # directory). |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 1009 | event_log_tags_src := \ |
| 1010 | $(sort $(foreach m,\ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1011 | $(PRODUCT_PACKAGES) \ |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 1012 | $(call module-names-for-tag-list,user), \ |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 1013 | $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \ |
| 1014 | $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src))) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 1015 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 1016 | $(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src) $(pdk_fusion_log_tags_file) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 1017 | $(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file) |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 1018 | $(event_log_tags_file): $(event_log_tags_src) $(all_event_log_tags_file) $(pdk_fusion_log_tags_file) $(MERGETAGS) build/make/tools/event_log_tags.py |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 1019 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 1020 | $(hide) $(MERGETAGS) -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 1021 | |
| 1022 | event-log-tags: $(event_log_tags_file) |
| 1023 | |
| 1024 | ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file) |
| 1025 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 1026 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1027 | # ################################################################# |
| 1028 | # Targets for boot/OS images |
| 1029 | # ################################################################# |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 1030 | ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true) |
| 1031 | INSTALLED_BOOTLOADER_MODULE := $(PRODUCT_OUT)/bootloader |
| 1032 | ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true) |
| 1033 | INSTALLED_2NDBOOTLOADER_TARGET := $(PRODUCT_OUT)/2ndbootloader |
| 1034 | else |
| 1035 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 1036 | endif |
| 1037 | else |
| 1038 | INSTALLED_BOOTLOADER_MODULE := |
| 1039 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 1040 | endif # TARGET_NO_BOOTLOADER |
| 1041 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1042 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 1043 | INSTALLED_KERNEL_TARGET := $(foreach k,$(BOARD_KERNEL_BINARIES), \ |
| 1044 | $(PRODUCT_OUT)/$(k)) |
| 1045 | else |
| 1046 | INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel |
| 1047 | endif |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 1048 | else |
| 1049 | INSTALLED_KERNEL_TARGET := |
| 1050 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1051 | |
| 1052 | # ----------------------------------------------------------------- |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1053 | # the root dir |
| 1054 | INTERNAL_ROOT_FILES := $(filter $(TARGET_ROOT_OUT)/%, \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1055 | $(ALL_GENERATED_SOURCES) \ |
| 1056 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1057 | |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 1058 | INSTALLED_FILES_FILE_ROOT := $(PRODUCT_OUT)/installed-files-root.txt |
| 1059 | INSTALLED_FILES_JSON_ROOT := $(INSTALLED_FILES_FILE_ROOT:.txt=.json) |
| 1060 | $(INSTALLED_FILES_FILE_ROOT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ROOT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1061 | $(INSTALLED_FILES_FILE_ROOT) : $(INTERNAL_ROOT_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 1062 | @echo Installed file list: $@ |
| 1063 | @mkdir -p $(dir $@) |
| 1064 | @rm -f $@ |
| 1065 | $(hide) $(FILESLIST) $(TARGET_ROOT_OUT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1066 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 1067 | |
| 1068 | $(call dist-for-goals, sdk win_sdk sdk_addon, $(INSTALLED_FILES_FILE_ROOT)) |
| 1069 | |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1070 | #------------------------------------------------------------------ |
| 1071 | # dtb |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 1072 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1073 | INSTALLED_DTBIMAGE_TARGET := $(PRODUCT_OUT)/dtb.img |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 1074 | ifdef BOARD_PREBUILT_DTBIMAGE_DIR |
Hridya Valsaraju | c63a744 | 2019-02-07 11:38:18 -0800 | [diff] [blame] | 1075 | $(INSTALLED_DTBIMAGE_TARGET) : $(sort $(wildcard $(BOARD_PREBUILT_DTBIMAGE_DIR)/*.dtb)) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1076 | cat $^ > $@ |
| 1077 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 1078 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1079 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1080 | # ----------------------------------------------------------------- |
| 1081 | # the ramdisk |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 1082 | ifdef BUILDING_RAMDISK_IMAGE |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1083 | INTERNAL_RAMDISK_FILES := $(filter $(TARGET_RAMDISK_OUT)/%, \ |
| 1084 | $(ALL_GENERATED_SOURCES) \ |
| 1085 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1086 | |
| 1087 | INSTALLED_FILES_FILE_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk.txt |
| 1088 | INSTALLED_FILES_JSON_RAMDISK := $(INSTALLED_FILES_FILE_RAMDISK:.txt=.json) |
| 1089 | $(INSTALLED_FILES_FILE_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RAMDISK) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1090 | $(INSTALLED_FILES_FILE_RAMDISK) : $(INTERNAL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1091 | @echo Installed file list: $@ |
SzuWei Lin | 29770fa | 2019-03-28 11:46:48 +0800 | [diff] [blame] | 1092 | @mkdir -p $(TARGET_RAMDISK_OUT) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1093 | @mkdir -p $(dir $@) |
| 1094 | @rm -f $@ |
| 1095 | $(hide) $(FILESLIST) $(TARGET_RAMDISK_OUT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1096 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1097 | |
| 1098 | $(call dist-for-goals, sdk win_sdk sdk_addon, $(INSTALLED_FILES_FILE_RAMDISK)) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 1099 | BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img |
| 1100 | |
| 1101 | # We just build this directly to the install location. |
| 1102 | INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1103 | $(INSTALLED_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_RAMDISK_FILES) $(INSTALLED_FILES_FILE_RAMDISK) | $(MINIGZIP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1104 | $(call pretty,"Target ram disk: $@") |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1105 | $(hide) $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RAMDISK_OUT) | $(MINIGZIP) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1106 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1107 | .PHONY: ramdisk-nodeps |
| 1108 | ramdisk-nodeps: $(MKBOOTFS) | $(MINIGZIP) |
| 1109 | @echo "make $@: ignoring dependencies" |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1110 | $(hide) $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RAMDISK_OUT) | $(MINIGZIP) > $(INSTALLED_RAMDISK_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1111 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 1112 | endif # BUILDING_RAMDISK_IMAGE |
| 1113 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1114 | # ----------------------------------------------------------------- |
| 1115 | # the boot image, which is a collection of other images. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1116 | |
| 1117 | # This is defined here since we may be building recovery as boot |
| 1118 | # below and only want to define this once |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1119 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 1120 | BUILT_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot,$(BOARD_KERNEL_BINARIES)), $(PRODUCT_OUT)/$(k).img) |
| 1121 | else |
| 1122 | BUILT_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 1123 | endif |
| 1124 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1125 | |
| 1126 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1127 | INTERNAL_BOOTIMAGE_ARGS := \ |
| 1128 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \ |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 1129 | --kernel $(INSTALLED_KERNEL_TARGET) |
| 1130 | |
| 1131 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 1132 | INTERNAL_BOOTIMAGE_ARGS += --ramdisk $(INSTALLED_RAMDISK_TARGET) |
| 1133 | endif |
| 1134 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1135 | ifndef BUILDING_VENDOR_BOOT_IMAGE |
| 1136 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1137 | INTERNAL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1138 | endif |
| 1139 | endif |
| 1140 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1141 | INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS)) |
| 1142 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1143 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 1144 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1145 | VERITY_KEYID := veritykeyid=id:`openssl x509 -in $(PRODUCT_VERITY_SIGNING_KEY).x509.pem -text \ |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 1146 | | grep keyid | sed 's/://g' | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]' | sed 's/keyid//g'` |
| 1147 | endif |
| 1148 | endif |
| 1149 | |
Anton Hansson | 72e36f0 | 2019-02-26 17:36:30 +0000 | [diff] [blame] | 1150 | INTERNAL_KERNEL_CMDLINE := $(strip $(INTERNAL_KERNEL_CMDLINE) buildvariant=$(TARGET_BUILD_VARIANT) $(VERITY_KEYID)) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1151 | |
| 1152 | ifndef BUILDING_VENDOR_BOOT_IMAGE |
| 1153 | ifdef BOARD_KERNEL_BASE |
| 1154 | INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1155 | endif |
| 1156 | ifdef BOARD_KERNEL_PAGESIZE |
| 1157 | INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1158 | endif |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 1159 | ifdef INTERNAL_KERNEL_CMDLINE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1160 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1161 | endif |
| 1162 | else |
| 1163 | # building vendor boot image, dtb/base/pagesize go there |
| 1164 | ifdef GENERIC_KERNEL_CMDLINE |
| 1165 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(GENERIC_KERNEL_CMDLINE)" |
| 1166 | endif |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 1167 | endif |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 1168 | |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1169 | INTERNAL_MKBOOTIMG_VERSION_ARGS := \ |
| 1170 | --os_version $(PLATFORM_VERSION) \ |
| 1171 | --os_patch_level $(PLATFORM_SECURITY_PATCH) |
| 1172 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1173 | # Define these only if we are building boot |
| 1174 | ifdef BUILDING_BOOT_IMAGE |
| 1175 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 1176 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1177 | ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true) |
JP Abgrall | 7bb75e4 | 2015-02-11 15:04:59 -0800 | [diff] [blame] | 1178 | $(error TARGET_BOOTIMAGE_USE_EXT2 is not supported anymore) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1179 | |
| 1180 | else ifeq (true,$(BOARD_AVB_ENABLE)) # TARGET_BOOTIMAGE_USE_EXT2 != true |
| 1181 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1182 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(AVBTOOL) $(INTERNAL_BOOTIMAGE_FILES) $(BOARD_AVB_BOOT_KEY_PATH) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1183 | $(call pretty,"Target boot image: $@") |
| 1184 | $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@ |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 1185 | $(hide) $(call assert-max-image-size,$@,$(call get-hash-image-max-size,$(BOARD_BOOTIMAGE_PARTITION_SIZE))) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1186 | $(hide) $(AVBTOOL) add_hash_footer \ |
| 1187 | --image $@ \ |
| 1188 | --partition_size $(BOARD_BOOTIMAGE_PARTITION_SIZE) \ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1189 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1190 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1191 | |
| 1192 | .PHONY: bootimage-nodeps |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1193 | bootimage-nodeps: $(MKBOOTIMG) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1194 | @echo "make $@: ignoring dependencies" |
| 1195 | $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(INSTALLED_BOOTIMAGE_TARGET) |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 1196 | $(hide) $(call assert-max-image-size,$(INSTALLED_BOOTIMAGE_TARGET),$(call get-hash-image-max-size,$(BOARD_BOOTIMAGE_PARTITION_SIZE))) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1197 | $(hide) $(AVBTOOL) add_hash_footer \ |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 1198 | --image $(INSTALLED_BOOTIMAGE_TARGET) \ |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1199 | --partition_size $(BOARD_BOOTIMAGE_PARTITION_SIZE) \ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1200 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1201 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1202 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1203 | else ifeq (true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)) # BOARD_AVB_ENABLE != true |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 1204 | |
| 1205 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(BOOT_SIGNER) |
| 1206 | $(call pretty,"Target boot image: $@") |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1207 | $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1208 | $(BOOT_SIGNER) /boot $@ $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $@ |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 1209 | $(hide) $(call assert-max-image-size,$@,$(BOARD_BOOTIMAGE_PARTITION_SIZE)) |
| 1210 | |
| 1211 | .PHONY: bootimage-nodeps |
| 1212 | bootimage-nodeps: $(MKBOOTIMG) $(BOOT_SIGNER) |
| 1213 | @echo "make $@: ignoring dependencies" |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1214 | $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(INSTALLED_BOOTIMAGE_TARGET) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1215 | $(BOOT_SIGNER) /boot $(INSTALLED_BOOTIMAGE_TARGET) $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $(INSTALLED_BOOTIMAGE_TARGET) |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 1216 | $(hide) $(call assert-max-image-size,$(INSTALLED_BOOTIMAGE_TARGET),$(BOARD_BOOTIMAGE_PARTITION_SIZE)) |
| 1217 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1218 | else ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) # PRODUCT_SUPPORTS_BOOT_SIGNER != true |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1219 | |
Tao Bao | 4b57741 | 2017-02-22 22:54:39 -0800 | [diff] [blame] | 1220 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1221 | $(call pretty,"Target boot image: $@") |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1222 | $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@.unsigned |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1223 | $(VBOOT_SIGNER) $(FUTILITY) $@.unsigned $(PRODUCT_VBOOT_SIGNING_KEY).vbpubk $(PRODUCT_VBOOT_SIGNING_KEY).vbprivk $(PRODUCT_VBOOT_SIGNING_SUBKEY).vbprivk $@.keyblock $@ |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1224 | $(hide) $(call assert-max-image-size,$@,$(BOARD_BOOTIMAGE_PARTITION_SIZE)) |
| 1225 | |
| 1226 | .PHONY: bootimage-nodeps |
Tao Bao | 4b57741 | 2017-02-22 22:54:39 -0800 | [diff] [blame] | 1227 | bootimage-nodeps: $(MKBOOTIMG) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1228 | @echo "make $@: ignoring dependencies" |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1229 | $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(INSTALLED_BOOTIMAGE_TARGET).unsigned |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1230 | $(VBOOT_SIGNER) $(FUTILITY) $(INSTALLED_BOOTIMAGE_TARGET).unsigned $(PRODUCT_VBOOT_SIGNING_KEY).vbpubk $(PRODUCT_VBOOT_SIGNING_KEY).vbprivk $(PRODUCT_VBOOT_SIGNING_SUBKEY).vbprivk $(INSTALLED_BOOTIMAGE_TARGET).keyblock $(INSTALLED_BOOTIMAGE_TARGET) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1231 | $(hide) $(call assert-max-image-size,$(INSTALLED_BOOTIMAGE_TARGET),$(BOARD_BOOTIMAGE_PARTITION_SIZE)) |
| 1232 | |
| 1233 | else # PRODUCT_SUPPORTS_VBOOT != true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1234 | |
| 1235 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) |
| 1236 | $(call pretty,"Target boot image: $@") |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1237 | $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@ |
JP Abgrall | 0ed7cec | 2014-06-16 14:19:36 -0700 | [diff] [blame] | 1238 | $(hide) $(call assert-max-image-size,$@,$(BOARD_BOOTIMAGE_PARTITION_SIZE)) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1239 | |
| 1240 | .PHONY: bootimage-nodeps |
| 1241 | bootimage-nodeps: $(MKBOOTIMG) |
| 1242 | @echo "make $@: ignoring dependencies" |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1243 | $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(INSTALLED_BOOTIMAGE_TARGET) |
JP Abgrall | 0ed7cec | 2014-06-16 14:19:36 -0700 | [diff] [blame] | 1244 | $(hide) $(call assert-max-image-size,$(INSTALLED_BOOTIMAGE_TARGET),$(BOARD_BOOTIMAGE_PARTITION_SIZE)) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1245 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1246 | endif # TARGET_BOOTIMAGE_USE_EXT2 |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1247 | endif # BUILDING_BOOT_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1248 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1249 | else # TARGET_NO_KERNEL == "true" |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 1250 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 1251 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 1252 | # Remove when b/63676296 is resolved. |
| 1253 | $(error Prebuilt bootimage is only supported for AB targets) |
| 1254 | endif |
Kiyoung Kim | 62e2231 | 2019-06-20 14:27:45 +0900 | [diff] [blame] | 1255 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 1256 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_BOOTIMAGE),$(INSTALLED_BOOTIMAGE_TARGET))) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1257 | else # BOARD_PREBUILT_BOOTIMAGE not defined |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1258 | INSTALLED_BOOTIMAGE_TARGET := |
| 1259 | endif # BOARD_PREBUILT_BOOTIMAGE |
| 1260 | endif # TARGET_NO_KERNEL |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1261 | |
| 1262 | # ----------------------------------------------------------------- |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1263 | # vendor boot image |
| 1264 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 1265 | |
| 1266 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
| 1267 | $(error vboot 1.0 does not support vendor_boot partition) |
| 1268 | endif |
| 1269 | |
| 1270 | INTERNAL_VENDOR_RAMDISK_FILES := $(filter $(TARGET_VENDOR_RAMDISK_OUT)/%, \ |
| 1271 | $(ALL_GENERATED_SOURCES) \ |
| 1272 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1273 | |
| 1274 | INTERNAL_VENDOR_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor-boot)/vendor-ramdisk.cpio.gz |
| 1275 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_RAMDISK_FILES) | $(MINIGZIP) |
| 1276 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_VENDOR_RAMDISK_OUT) | $(MINIGZIP) > $@ |
| 1277 | |
| 1278 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1279 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1280 | endif |
| 1281 | ifdef BOARD_KERNEL_BASE |
| 1282 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1283 | endif |
| 1284 | ifdef BOARD_KERNEL_PAGESIZE |
| 1285 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1286 | endif |
| 1287 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1288 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1289 | endif |
| 1290 | |
| 1291 | INSTALLED_VENDOR_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot.img |
| 1292 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET) |
| 1293 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1294 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOTIMAGE_KEY_PATH) |
| 1295 | $(call pretty,"Target vendor_boot image: $@") |
| 1296 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_RAMDISK_TARGET) --vendor_boot $@ |
| 1297 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1298 | $(AVBTOOL) add_hash_footer \ |
| 1299 | --image $@ \ |
| 1300 | --partition_size $(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE) \ |
| 1301 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_SIGNING_ARGS) \ |
| 1302 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1303 | else |
| 1304 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): |
| 1305 | $(call pretty,"Target vendor_boot image: $@") |
| 1306 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_RAMDISK_TARGET) --vendor_boot $@ |
| 1307 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1308 | endif |
| 1309 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 1310 | |
| 1311 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1312 | # NOTICE files |
| 1313 | # |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 1314 | # We are required to publish the licenses for all code under BSD, GPL and |
| 1315 | # Apache licenses (and possibly other more exotic ones as well). We err on the |
| 1316 | # side of caution, so the licenses for other third-party code are included here |
| 1317 | # too. |
| 1318 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1319 | # This needs to be before the systemimage rules, because it adds to |
| 1320 | # ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files |
| 1321 | # go into the systemimage. |
| 1322 | |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1323 | .PHONY: notice_files |
| 1324 | |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1325 | # Create the rule to combine the files into text and html/xml forms |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1326 | # $(1) - xml_excluded_system_product_odm|xml_excluded_vendor_product_odm |
| 1327 | # xml_product|xml_odm|xml_system_ext|xml_system|html |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1328 | # $(2) - Plain text output file |
| 1329 | # $(3) - HTML/XML output file |
| 1330 | # $(4) - File title |
Jaewoong Jung | e6f57e0 | 2019-06-16 21:48:42 -0700 | [diff] [blame] | 1331 | # $(5) - Directory to use. Notice files are all $(5)/src. Other |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1332 | # directories in there will be used for scratch |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1333 | # $(6) - Dependencies for the output files |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1334 | # $(7) - Directories to exclude |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1335 | # |
| 1336 | # The algorithm here is that we go collect a hash for each of the notice |
| 1337 | # files and write the names of the files that match that hash. Then |
| 1338 | # to generate the real files, we go print out all of the files and their |
| 1339 | # hashes. |
| 1340 | # |
| 1341 | # These rules are fairly complex, so they depend on this makefile so if |
| 1342 | # it changes, they'll run again. |
| 1343 | # |
| 1344 | # TODO: We could clean this up so that we just record the locations of the |
| 1345 | # original notice files instead of making rules to copy them somwehere. |
| 1346 | # Then we could traverse that without quite as much bash drama. |
| 1347 | define combine-notice-files |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1348 | $(2) $(3): PRIVATE_MESSAGE := $(4) |
| 1349 | $(2) $(3): PRIVATE_DIR := $(5) |
| 1350 | $(2) : $(3) |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 1351 | $(3) : $(6) $(BUILD_SYSTEM)/Makefile build/make/tools/generate-notice-files.py |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1352 | build/make/tools/generate-notice-files.py --text-output $(2) $(foreach xdir, $(7), -e $(xdir) )\ |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1353 | $(if $(filter $(1),xml_excluded_vendor_product_odm),-e vendor -e product -e system_ext -e odm --xml-output, \ |
| 1354 | $(if $(filter $(1),xml_excluded_system_product_odm),-e system -e product -e system_ext -e odm --xml-output, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1355 | $(if $(filter $(1),xml_product),-i product --xml-output, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1356 | $(if $(filter $(1),xml_system_ext),-i system_ext --xml-output, \ |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1357 | $(if $(filter $(1),xml_system),-i system --xml-output, \ |
| 1358 | $(if $(filter $(1),xml_odm),-i odm --xml-output, \ |
| 1359 | --html-output)))))) $(3) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1360 | -t $$(PRIVATE_MESSAGE) -s $$(PRIVATE_DIR)/src |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1361 | notice_files: $(2) $(3) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1362 | endef |
| 1363 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1364 | # Notice file logic isn't relevant for TARGET_BUILD_APPS |
| 1365 | ifndef TARGET_BUILD_APPS |
| 1366 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1367 | # TODO These intermediate NOTICE.txt/NOTICE.html files should go into |
| 1368 | # TARGET_OUT_NOTICE_FILES now that the notice files are gathered from |
| 1369 | # the src subdirectory. |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1370 | target_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE.txt |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1371 | tools_notice_file_txt := $(HOST_OUT_INTERMEDIATES)/NOTICE.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1372 | tools_notice_file_html := $(HOST_OUT_INTERMEDIATES)/NOTICE.html |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1373 | kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt |
| 1374 | winpthreads_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/winpthreads.txt |
| 1375 | pdk_fusion_notice_files := $(filter $(TARGET_OUT_NOTICE_FILES)/%, $(ALL_PDK_FUSION_FILES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1376 | |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1377 | # Some targets get included under $(PRODUCT_OUT) for debug symbols or other |
| 1378 | # reasons--not to be flashed onto any device. Targets under these directories |
| 1379 | # need no associated notice file on the device UI. |
| 1380 | exclude_target_dirs := apex |
| 1381 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 1382 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1383 | ifneq ($(PRODUCT_NOTICE_SPLIT),true) |
| 1384 | target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html |
| 1385 | target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz |
| 1386 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.html.gz |
| 1387 | $(eval $(call combine-notice-files, html, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1388 | $(target_notice_file_txt), \ |
| 1389 | $(target_notice_file_html), \ |
| 1390 | "Notices for files contained in the filesystem images in this directory:", \ |
| 1391 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1392 | $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) $(pdk_fusion_notice_files), \ |
| 1393 | $(exclude_target_dirs))) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1394 | $(target_notice_file_html_gz): $(target_notice_file_html) | $(MINIGZIP) |
| 1395 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1396 | $(installed_notice_html_or_xml_gz): $(target_notice_file_html_gz) |
| 1397 | $(copy-file-to-target) |
| 1398 | else |
| 1399 | target_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml |
| 1400 | target_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml.gz |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1401 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.xml.gz |
| 1402 | |
| 1403 | target_vendor_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.txt |
| 1404 | target_vendor_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml |
| 1405 | target_vendor_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml.gz |
| 1406 | installed_vendor_notice_xml_gz := $(TARGET_OUT_VENDOR)/etc/NOTICE.xml.gz |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1407 | |
| 1408 | target_product_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.txt |
| 1409 | target_product_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml |
| 1410 | target_product_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml.gz |
| 1411 | installed_product_notice_xml_gz := $(TARGET_OUT_PRODUCT)/etc/NOTICE.xml.gz |
Dario Freni | cbca113 | 2018-08-28 18:04:03 +0100 | [diff] [blame] | 1412 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1413 | target_system_ext_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.txt |
| 1414 | target_system_ext_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml |
| 1415 | target_system_ext_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml.gz |
| 1416 | installed_system_ext_notice_xml_gz := $(TARGET_OUT_SYSTEM_EXT)/etc/NOTICE.xml.gz |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1417 | |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1418 | target_odm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.txt |
| 1419 | target_odm_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml |
| 1420 | target_odm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml.gz |
| 1421 | installed_odm_notice_xml_gz := $(TARGET_OUT_ODM)/etc/NOTICE.xml.gz |
| 1422 | |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1423 | # Notice files are copied to TARGET_OUT_NOTICE_FILES as a side-effect of their module |
| 1424 | # being built. A notice xml file must depend on all modules that could potentially |
| 1425 | # install a license file relevant to it. |
| 1426 | license_modules := $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) $(pdk_fusion_notice_files) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1427 | # Only files copied to a system image need system image notices. |
| 1428 | license_modules := $(filter $(PRODUCT_OUT)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1429 | # Phonys/fakes don't have notice files (though their deps might) |
| 1430 | license_modules := $(filter-out $(TARGET_OUT_FAKE)/%,$(license_modules)) |
Jooyung Han | 4416b00 | 2019-05-29 18:28:22 +0900 | [diff] [blame] | 1431 | # testcases are not relevant to the system image. |
| 1432 | license_modules := $(filter-out $(TARGET_OUT_TESTCASES)/%,$(license_modules)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1433 | # filesystem images: system, vendor, product, system_ext, and odm |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1434 | license_modules_system := $(filter $(TARGET_OUT)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1435 | license_modules_vendor := $(filter $(TARGET_OUT_VENDOR)/%,$(license_modules)) |
| 1436 | license_modules_product := $(filter $(TARGET_OUT_PRODUCT)/%,$(license_modules)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1437 | license_modules_system_ext := $(filter $(TARGET_OUT_SYSTEM_EXT)/%,$(license_modules)) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1438 | license_modules_odm := $(filter $(TARGET_OUT_ODM)/%,$(license_modules)) |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1439 | license_modules_agg := $(license_modules_system) \ |
| 1440 | $(license_modules_vendor) \ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1441 | $(license_modules_product) \ |
| 1442 | $(license_modules_system_ext) \ |
| 1443 | $(license_modules_odm) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1444 | # targets used for debug symbols only and do not get copied to the device |
| 1445 | license_modules_symbols_only := $(filter $(PRODUCT_OUT)/apex/%,$(license_modules)) |
| 1446 | |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1447 | license_modules_rest := $(filter-out $(license_modules_agg),$(license_modules)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1448 | license_modules_rest := $(filter-out $(license_modules_symbols_only),$(license_modules_rest)) |
| 1449 | |
| 1450 | # Identify the other targets we expect to have notices for: |
| 1451 | # targets copied to the device but are not readable by the UI (e.g. must boot |
| 1452 | # into a different partition to read or don't have an associated /etc |
| 1453 | # directory) must have their notices built somewhere readable. |
| 1454 | license_modules_rehomed := $(filter-out $(PRODUCT_OUT)/%/%,$(license_modules_rest)) # files in root have no /etc |
| 1455 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/recovery/%,$(license_modules_rest)) |
| 1456 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/root/%,$(license_modules_rest)) |
| 1457 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/data/%,$(license_modules_rest)) |
| 1458 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/ramdisk/%,$(license_modules_rest)) |
| 1459 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/debug_ramdisk/%,$(license_modules_rest)) |
| 1460 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/vendor-ramdisk/%,$(license_modules_rest)) |
| 1461 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist/%,$(license_modules_rest)) |
| 1462 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist.img,$(license_modules_rest)) |
| 1463 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/system_other/%,$(license_modules_rest)) |
| 1464 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/kernel%,$(license_modules_rest)) |
| 1465 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.img,$(license_modules_rest)) |
| 1466 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.bin,$(license_modules_rest)) |
| 1467 | |
| 1468 | # after removing targets in system images, targets reported in system images, and |
| 1469 | # targets used for debug symbols that do not need notices, nothing must remain. |
| 1470 | license_modules_rest := $(filter-out $(license_modules_rehomed),$(license_modules_rest)) |
| 1471 | $(call maybe-print-list-and-error, $(license_modules_rest), \ |
| 1472 | "Targets added under $(PRODUCT_OUT)/ unaccounted for notice handling.") |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1473 | |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1474 | # If we are building in a configuration that includes a prebuilt vendor.img, we can't |
| 1475 | # update its notice file, so include those notices in the system partition instead |
| 1476 | ifdef BOARD_PREBUILT_VENDORIMAGE |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1477 | license_modules_system += $(license_modules_rehomed) |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1478 | system_xml_directories := xml_excluded_vendor_product_odm |
| 1479 | system_notice_file_message := "Notices for files contained in all filesystem images except vendor/system_ext/product/odm in this directory:" |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1480 | else |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1481 | license_modules_vendor += $(license_modules_rehomed) |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1482 | system_xml_directories := xml_system |
| 1483 | system_notice_file_message := "Notices for files contained in the system filesystem image in this directory:" |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1484 | endif |
| 1485 | |
| 1486 | $(eval $(call combine-notice-files, $(system_xml_directories), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1487 | $(target_notice_file_txt), \ |
| 1488 | $(target_notice_file_xml), \ |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1489 | $(system_notice_file_message), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1490 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1491 | $(license_modules_system), \ |
| 1492 | $(exclude_target_dirs))) |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1493 | $(eval $(call combine-notice-files, xml_excluded_system_product_odm, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1494 | $(target_vendor_notice_file_txt), \ |
| 1495 | $(target_vendor_notice_file_xml), \ |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1496 | "Notices for files contained in all filesystem images except system/system_ext/product/odm in this directory:", \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1497 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1498 | $(license_modules_vendor), \ |
| 1499 | $(exclude_target_dirs))) |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1500 | $(eval $(call combine-notice-files, xml_product, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1501 | $(target_product_notice_file_txt), \ |
| 1502 | $(target_product_notice_file_xml), \ |
| 1503 | "Notices for files contained in the product filesystem image in this directory:", \ |
| 1504 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1505 | $(license_modules_product), \ |
| 1506 | $(exclude_target_dirs))) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1507 | $(eval $(call combine-notice-files, xml_system_ext, \ |
| 1508 | $(target_system_ext_notice_file_txt), \ |
| 1509 | $(target_system_ext_notice_file_xml), \ |
| 1510 | "Notices for files contained in the system_ext filesystem image in this directory:", \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1511 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1512 | $(license_modules_system_ext), \ |
| 1513 | $(exclude_target_dirs))) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1514 | $(eval $(call combine-notice-files, xml_odm, \ |
| 1515 | $(target_odm_notice_file_txt), \ |
| 1516 | $(target_odm_notice_file_xml), \ |
| 1517 | "Notices for files contained in the odm filesystem image in this directory:", \ |
| 1518 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1519 | $(license_modules_odm), \ |
| 1520 | $(exclude_target_dirs))) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1521 | |
| 1522 | $(target_notice_file_xml_gz): $(target_notice_file_xml) | $(MINIGZIP) |
| 1523 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1524 | $(target_vendor_notice_file_xml_gz): $(target_vendor_notice_file_xml) | $(MINIGZIP) |
| 1525 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1526 | $(target_product_notice_file_xml_gz): $(target_product_notice_file_xml) | $(MINIGZIP) |
| 1527 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1528 | $(target_system_ext_notice_file_xml_gz): $(target_system_ext_notice_file_xml) | $(MINIGZIP) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1529 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1530 | $(target_odm_notice_file_xml_gz): $(target_odm_notice_file_xml) | $(MINIGZIP) |
| 1531 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1532 | $(installed_notice_html_or_xml_gz): $(target_notice_file_xml_gz) |
| 1533 | $(copy-file-to-target) |
| 1534 | $(installed_vendor_notice_xml_gz): $(target_vendor_notice_file_xml_gz) |
| 1535 | $(copy-file-to-target) |
| 1536 | $(installed_product_notice_xml_gz): $(target_product_notice_file_xml_gz) |
| 1537 | $(copy-file-to-target) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1538 | $(installed_system_ext_notice_xml_gz): $(target_system_ext_notice_file_xml_gz) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1539 | $(copy-file-to-target) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1540 | $(installed_odm_notice_xml_gz): $(target_odm_notice_file_xml_gz) |
| 1541 | $(copy-file-to-target) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1542 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1543 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_or_xml_gz) |
| 1544 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_notice_xml_gz) |
| 1545 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_product_notice_xml_gz) |
| 1546 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_ext_notice_xml_gz) |
| 1547 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_notice_xml_gz) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1548 | endif # PRODUCT_NOTICE_SPLIT |
| 1549 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1550 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_or_xml_gz) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1551 | |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1552 | $(eval $(call combine-notice-files, html, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1553 | $(tools_notice_file_txt), \ |
| 1554 | $(tools_notice_file_html), \ |
| 1555 | "Notices for files contained in the tools directory:", \ |
| 1556 | $(HOST_OUT_NOTICE_FILES), \ |
| 1557 | $(ALL_DEFAULT_INSTALLED_MODULES) \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1558 | $(winpthreads_notice_file), \ |
| 1559 | $(exclude_target_dirs))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1560 | |
Ying Wang | 62c81f8 | 2013-08-22 20:02:03 -0700 | [diff] [blame] | 1561 | endif # TARGET_BUILD_APPS |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1562 | |
| 1563 | # The kernel isn't really a module, so to get its module file in there, we |
| 1564 | # make the target NOTICE files depend on this particular file too, which will |
| 1565 | # then be in the right directory for the find in combine-notice-files to work. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 1566 | $(eval $(call copy-one-file,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,$(kernel_notice_file))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1567 | |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 1568 | $(eval $(call copy-one-file,$(BUILD_SYSTEM)/WINPTHREADS_COPYING,$(winpthreads_notice_file))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1569 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1570 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1571 | # ################################################################# |
| 1572 | # Targets for user images |
| 1573 | # ################################################################# |
| 1574 | |
Ying Wang | 933abf1 | 2010-06-16 14:31:34 -0700 | [diff] [blame] | 1575 | INTERNAL_USERIMAGES_EXT_VARIANT := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1576 | ifeq ($(TARGET_USERIMAGES_USE_EXT2),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1577 | INTERNAL_USERIMAGES_EXT_VARIANT := ext2 |
| 1578 | else |
| 1579 | ifeq ($(TARGET_USERIMAGES_USE_EXT3),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1580 | INTERNAL_USERIMAGES_EXT_VARIANT := ext3 |
| 1581 | else |
| 1582 | ifeq ($(TARGET_USERIMAGES_USE_EXT4),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1583 | INTERNAL_USERIMAGES_EXT_VARIANT := ext4 |
| 1584 | endif |
| 1585 | endif |
| 1586 | endif |
| 1587 | |
JP Abgrall | 6ea5bd6 | 2014-10-22 20:01:22 -0700 | [diff] [blame] | 1588 | # These options tell the recovery updater/installer how to mount the partitions writebale. |
| 1589 | # <fstype>=<fstype_opts>[|<fstype_opts>]... |
| 1590 | # fstype_opts := <opt>[,<opt>]... |
| 1591 | # opt := <name>[=<value>] |
JP Abgrall | 775b1ab | 2014-10-23 16:27:03 -0700 | [diff] [blame] | 1592 | # The following worked on Nexus devices with Kernel 3.1, 3.4, 3.10 |
| 1593 | DEFAULT_TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS := ext4=max_batch_time=0,commit=1,data=ordered,barrier=1,errors=panic,nodelalloc |
JP Abgrall | 6ea5bd6 | 2014-10-22 20:01:22 -0700 | [diff] [blame] | 1594 | |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 1595 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)) |
| 1596 | INTERNAL_USERIMAGES_SPARSE_EXT_FLAG := -s |
| 1597 | endif |
Todd Poynor | b2a555e | 2015-12-15 18:00:14 -0800 | [diff] [blame] | 1598 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_SQUASHFS_DISABLED)) |
| 1599 | INTERNAL_USERIMAGES_SPARSE_SQUASHFS_FLAG := -s |
| 1600 | endif |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 1601 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)) |
| 1602 | INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG := -S |
| 1603 | endif |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1604 | |
| 1605 | INTERNAL_USERIMAGES_DEPS := \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1606 | $(BUILD_IMAGE) \ |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1607 | $(MKE2FS_CONF) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1608 | $(MKEXTUSERIMG) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1609 | |
| 1610 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
| 1611 | INTERNAL_USERIMAGES_DEPS += $(MKF2FSUSERIMG) |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 1612 | endif |
| 1613 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1614 | ifneq ($(filter $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE),squashfs),) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1615 | INTERNAL_USERIMAGES_DEPS += $(MKSQUASHFSUSERIMG) |
| 1616 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1617 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1618 | ifeq (true,$(PRODUCT_SUPPORTS_VERITY)) |
Tao Bao | b4ec6d7 | 2018-03-15 23:21:28 -0700 | [diff] [blame] | 1619 | INTERNAL_USERIMAGES_DEPS += $(BUILD_VERITY_METADATA) $(BUILD_VERITY_TREE) $(APPEND2SIMG) $(VERITY_SIGNER) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1620 | ifeq (true,$(PRODUCT_SUPPORTS_VERITY_FEC)) |
Sami Tolvanen | f99b531 | 2015-05-20 07:30:57 +0100 | [diff] [blame] | 1621 | INTERNAL_USERIMAGES_DEPS += $(FEC) |
| 1622 | endif |
Geremy Condra | fd6f751 | 2013-06-16 17:26:08 -0700 | [diff] [blame] | 1623 | endif |
| 1624 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1625 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1626 | INTERNAL_USERIMAGES_DEPS += $(AVBTOOL) |
| 1627 | endif |
| 1628 | |
| 1629 | # Get a colon-separated list of search paths. |
| 1630 | INTERNAL_USERIMAGES_BINARY_PATHS := $(subst $(space),:,$(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))) |
| 1631 | |
Alex Klyubin | 092c902 | 2017-03-13 13:28:34 -0700 | [diff] [blame] | 1632 | SELINUX_FC := $(call intermediates-dir-for,ETC,file_contexts.bin)/file_contexts.bin |
Ying Wang | fdbd9cb | 2012-11-21 10:47:00 -0800 | [diff] [blame] | 1633 | INTERNAL_USERIMAGES_DEPS += $(SELINUX_FC) |
| 1634 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 1635 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1636 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1637 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1638 | $(error vboot 1.0 doesn't support logical partition) |
| 1639 | endif |
| 1640 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 1641 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1642 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1643 | # $(1): the path of the output dictionary file |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1644 | # $(2): a subset of "system vendor cache userdata product system_ext oem odm" |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1645 | # $(3): additional "key=value" pairs to append to the dictionary file. |
| 1646 | define generate-image-prop-dictionary |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1647 | $(if $(filter $(2),system),\ |
| 1648 | $(if $(BOARD_SYSTEMIMAGE_PARTITION_SIZE),$(hide) echo "system_size=$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)" >> $(1)) |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 1649 | $(if $(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE),$(hide) echo "system_other_size=$(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE)" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1650 | $(if $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "system_fs_type=$(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1651 | $(if $(BOARD_SYSTEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "system_extfs_inode_count=$(BOARD_SYSTEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1652 | $(if $(BOARD_SYSTEMIMAGE_EXTFS_RSV_PCT),$(hide) echo "system_extfs_rsv_pct=$(BOARD_SYSTEMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1653 | $(if $(BOARD_SYSTEMIMAGE_JOURNAL_SIZE),$(hide) echo "system_journal_size=$(BOARD_SYSTEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1654 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "system_squashfs_compressor=$(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1655 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "system_squashfs_compressor_opt=$(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1656 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "system_squashfs_block_size=$(BOARD_SYSTEMIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1657 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "system_squashfs_disable_4k_align=$(BOARD_SYSTEMIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1658 | $(if $(PRODUCT_SYSTEM_BASE_FS_PATH),$(hide) echo "system_base_fs_file=$(PRODUCT_SYSTEM_BASE_FS_PATH)" >> $(1)) |
| 1659 | $(if $(PRODUCT_SYSTEM_HEADROOM),$(hide) echo "system_headroom=$(PRODUCT_SYSTEM_HEADROOM)" >> $(1)) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1660 | $(if $(BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "system_reserved_size=$(BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1661 | $(hide) echo "system_selinux_fc=$(SELINUX_FC)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1662 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1663 | $(if $(filter $(2),userdata),\ |
| 1664 | $(if $(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "userdata_fs_type=$(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1665 | $(if $(BOARD_USERDATAIMAGE_PARTITION_SIZE),$(hide) echo "userdata_size=$(BOARD_USERDATAIMAGE_PARTITION_SIZE)" >> $(1)) |
Daniel Rosenberg | 6cc2c81 | 2019-12-17 17:36:31 -0800 | [diff] [blame] | 1666 | $(if $(PRODUCT_FS_CASEFOLD),$(hide) echo "needs_casefold=$(PRODUCT_FS_CASEFOLD)" >> $(1)) |
| 1667 | $(if $(PRODUCT_QUOTA_PROJID),$(hide) echo "needs_projid=$(PRODUCT_QUOTA_PROJID)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1668 | $(hide) echo "userdata_selinux_fc=$(SELINUX_FC)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1669 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1670 | $(if $(filter $(2),cache),\ |
| 1671 | $(if $(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "cache_fs_type=$(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1672 | $(if $(BOARD_CACHEIMAGE_PARTITION_SIZE),$(hide) echo "cache_size=$(BOARD_CACHEIMAGE_PARTITION_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1673 | $(hide) echo "cache_selinux_fc=$(SELINUX_FC)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1674 | ) |
| 1675 | $(if $(filter $(2),vendor),\ |
| 1676 | $(if $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "vendor_fs_type=$(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1677 | $(if $(BOARD_VENDORIMAGE_EXTFS_INODE_COUNT),$(hide) echo "vendor_extfs_inode_count=$(BOARD_VENDORIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1678 | $(if $(BOARD_VENDORIMAGE_EXTFS_RSV_PCT),$(hide) echo "vendor_extfs_rsv_pct=$(BOARD_VENDORIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1679 | $(if $(BOARD_VENDORIMAGE_PARTITION_SIZE),$(hide) echo "vendor_size=$(BOARD_VENDORIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1680 | $(if $(BOARD_VENDORIMAGE_JOURNAL_SIZE),$(hide) echo "vendor_journal_size=$(BOARD_VENDORIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1681 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "vendor_squashfs_compressor=$(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1682 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "vendor_squashfs_compressor_opt=$(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1683 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "vendor_squashfs_block_size=$(BOARD_VENDORIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1684 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "vendor_squashfs_disable_4k_align=$(BOARD_VENDORIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1685 | $(if $(PRODUCT_VENDOR_BASE_FS_PATH),$(hide) echo "vendor_base_fs_file=$(PRODUCT_VENDOR_BASE_FS_PATH)" >> $(1)) |
Yifan Hong | 749062d | 2018-06-19 16:23:16 -0700 | [diff] [blame] | 1686 | $(if $(BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "vendor_reserved_size=$(BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1687 | $(hide) echo "vendor_selinux_fc=$(SELINUX_FC)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1688 | ) |
| 1689 | $(if $(filter $(2),product),\ |
| 1690 | $(if $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "product_fs_type=$(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1691 | $(if $(BOARD_PRODUCTIMAGE_EXTFS_INODE_COUNT),$(hide) echo "product_extfs_inode_count=$(BOARD_PRODUCTIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1692 | $(if $(BOARD_PRODUCTIMAGE_EXTFS_RSV_PCT),$(hide) echo "product_extfs_rsv_pct=$(BOARD_PRODUCTIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1693 | $(if $(BOARD_PRODUCTIMAGE_PARTITION_SIZE),$(hide) echo "product_size=$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1694 | $(if $(BOARD_PRODUCTIMAGE_JOURNAL_SIZE),$(hide) echo "product_journal_size=$(BOARD_PRODUCTIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1695 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "product_squashfs_compressor=$(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1696 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "product_squashfs_compressor_opt=$(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1697 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "product_squashfs_block_size=$(BOARD_PRODUCTIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1698 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "product_squashfs_disable_4k_align=$(BOARD_PRODUCTIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1699 | $(if $(PRODUCT_PRODUCT_BASE_FS_PATH),$(hide) echo "product_base_fs_file=$(PRODUCT_PRODUCT_BASE_FS_PATH)" >> $(1)) |
Yifan Hong | 56a6c3b | 2018-07-20 15:19:34 -0700 | [diff] [blame] | 1700 | $(if $(BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "product_reserved_size=$(BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1701 | $(hide) echo "product_selinux_fc=$(SELINUX_FC)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1702 | ) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1703 | $(if $(filter $(2),system_ext),\ |
| 1704 | $(if $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "system_ext_fs_type=$(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1705 | $(if $(BOARD_SYSTEM_EXTIMAGE_EXTFS_INODE_COUNT),$(hide) echo "system_ext_extfs_inode_count=$(BOARD_SYSTEM_EXTIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1706 | $(if $(BOARD_SYSTEM_EXTIMAGE_EXTFS_RSV_PCT),$(hide) echo "system_ext_extfs_rsv_pct=$(BOARD_SYSTEM_EXTIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1707 | $(if $(BOARD_SYSTEM_EXTIMAGE_PARTITION_SIZE),$(hide) echo "system_ext_size=$(BOARD_SYSTEM_EXTIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1708 | $(if $(BOARD_SYSTEM_EXTIMAGE_JOURNAL_SIZE),$(hide) echo "system_ext_journal_size=$(BOARD_SYSTEM_EXTIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1709 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "system_ext_squashfs_compressor=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1710 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "system_ext_squashfs_compressor_opt=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1711 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "system_ext_squashfs_block_size=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1712 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "system_ext_squashfs_disable_4k_align=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
| 1713 | $(if $(BOARD_SYSTEM_EXTIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "system_ext_reserved_size=$(BOARD_SYSTEM_EXTIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
| 1714 | $(hide) echo "system_ext_selinux_fc=$(SELINUX_FC)" >> $(1) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 1715 | ) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1716 | $(if $(filter $(2),odm),\ |
| 1717 | $(if $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "odm_fs_type=$(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1718 | $(if $(BOARD_ODMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "odm_extfs_inode_count=$(BOARD_ODMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1719 | $(if $(BOARD_ODMIMAGE_EXTFS_RSV_PCT),$(hide) echo "odm_extfs_rsv_pct=$(BOARD_ODMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1720 | $(if $(BOARD_ODMIMAGE_PARTITION_SIZE),$(hide) echo "odm_size=$(BOARD_ODMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1721 | $(if $(BOARD_ODMIMAGE_JOURNAL_SIZE),$(hide) echo "odm_journal_size=$(BOARD_ODMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1722 | $(if $(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "odm_squashfs_compressor=$(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1723 | $(if $(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "odm_squashfs_compressor_opt=$(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1724 | $(if $(BOARD_ODMIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "odm_squashfs_block_size=$(BOARD_ODMIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1725 | $(if $(BOARD_ODMIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "odm_squashfs_disable_4k_align=$(BOARD_ODMIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1726 | $(if $(PRODUCT_ODM_BASE_FS_PATH),$(hide) echo "odm_base_fs_file=$(PRODUCT_ODM_BASE_FS_PATH)" >> $(1)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1727 | $(if $(BOARD_ODMIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "odm_reserved_size=$(BOARD_ODMIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1728 | $(hide) echo "odm_selinux_fc=$(SELINUX_FC)" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1729 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1730 | $(if $(filter $(2),oem),\ |
| 1731 | $(if $(BOARD_OEMIMAGE_PARTITION_SIZE),$(hide) echo "oem_size=$(BOARD_OEMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1732 | $(if $(BOARD_OEMIMAGE_JOURNAL_SIZE),$(hide) echo "oem_journal_size=$(BOARD_OEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1733 | $(if $(BOARD_OEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "oem_extfs_inode_count=$(BOARD_OEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1734 | $(if $(BOARD_OEMIMAGE_EXTFS_RSV_PCT),$(hide) echo "oem_extfs_rsv_pct=$(BOARD_OEMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1735 | $(hide) echo "oem_selinux_fc=$(SELINUX_FC)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1736 | ) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1737 | $(hide) echo "ext_mkuserimg=$(notdir $(MKEXTUSERIMG))" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1738 | |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1739 | $(if $(INTERNAL_USERIMAGES_EXT_VARIANT),$(hide) echo "fs_type=$(INTERNAL_USERIMAGES_EXT_VARIANT)" >> $(1)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1740 | $(if $(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG),$(hide) echo "extfs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG)" >> $(1)) |
Todd Poynor | b2a555e | 2015-12-15 18:00:14 -0800 | [diff] [blame] | 1741 | $(if $(INTERNAL_USERIMAGES_SPARSE_SQUASHFS_FLAG),$(hide) echo "squashfs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_SQUASHFS_FLAG)" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 1742 | $(if $(INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG),$(hide) echo "f2fs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG)" >> $(1)) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1743 | $(if $(BOARD_EXT4_SHARE_DUP_BLOCKS),$(hide) echo "ext4_share_dup_blocks=$(BOARD_EXT4_SHARE_DUP_BLOCKS)" >> $(1)) |
| 1744 | $(if $(BOARD_FLASH_LOGICAL_BLOCK_SIZE), $(hide) echo "flash_logical_block_size=$(BOARD_FLASH_LOGICAL_BLOCK_SIZE)" >> $(1)) |
| 1745 | $(if $(BOARD_FLASH_ERASE_BLOCK_SIZE), $(hide) echo "flash_erase_block_size=$(BOARD_FLASH_ERASE_BLOCK_SIZE)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1746 | $(if $(PRODUCT_SUPPORTS_BOOT_SIGNER),$(hide) echo "boot_signer=$(PRODUCT_SUPPORTS_BOOT_SIGNER)" >> $(1)) |
| 1747 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity=$(PRODUCT_SUPPORTS_VERITY)" >> $(1)) |
| 1748 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity_key=$(PRODUCT_VERITY_SIGNING_KEY)" >> $(1)) |
| 1749 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity_signer_cmd=$(notdir $(VERITY_SIGNER))" >> $(1)) |
| 1750 | $(if $(PRODUCT_SUPPORTS_VERITY_FEC),$(hide) echo "verity_fec=$(PRODUCT_SUPPORTS_VERITY_FEC)" >> $(1)) |
Bowgo Tsai | 6ceeb1a | 2017-10-11 16:21:48 +0800 | [diff] [blame] | 1751 | $(if $(filter eng, $(TARGET_BUILD_VARIANT)),$(hide) echo "verity_disable=true" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1752 | $(if $(PRODUCT_SYSTEM_VERITY_PARTITION),$(hide) echo "system_verity_block_device=$(PRODUCT_SYSTEM_VERITY_PARTITION)" >> $(1)) |
| 1753 | $(if $(PRODUCT_VENDOR_VERITY_PARTITION),$(hide) echo "vendor_verity_block_device=$(PRODUCT_VENDOR_VERITY_PARTITION)" >> $(1)) |
| 1754 | $(if $(PRODUCT_PRODUCT_VERITY_PARTITION),$(hide) echo "product_verity_block_device=$(PRODUCT_PRODUCT_VERITY_PARTITION)" >> $(1)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1755 | $(if $(PRODUCT_SYSTEM_EXT_VERITY_PARTITION),$(hide) echo "system_ext_verity_block_device=$(PRODUCT_SYSTEM_EXT_VERITY_PARTITION)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1756 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot=$(PRODUCT_SUPPORTS_VBOOT)" >> $(1)) |
| 1757 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_key=$(PRODUCT_VBOOT_SIGNING_KEY)" >> $(1)) |
| 1758 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_subkey=$(PRODUCT_VBOOT_SIGNING_SUBKEY)" >> $(1)) |
| 1759 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "futility=$(notdir $(FUTILITY))" >> $(1)) |
| 1760 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_signer_cmd=$(VBOOT_SIGNER)" >> $(1)) |
Tao Bao | 3cba374 | 2017-05-16 16:27:25 -0700 | [diff] [blame] | 1761 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_avbtool=$(notdir $(AVBTOOL))" >> $(1)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1762 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1763 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1764 | $(if $(BOARD_AVB_ENABLE),\ |
| 1765 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 1766 | $(hide) echo "avb_system_key_path=$(BOARD_AVB_SYSTEM_KEY_PATH)" >> $(1) |
| 1767 | $(hide) echo "avb_system_algorithm=$(BOARD_AVB_SYSTEM_ALGORITHM)" >> $(1) |
| 1768 | $(hide) echo "avb_system_rollback_index_location=$(BOARD_AVB_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 1769 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1770 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1771 | $(if $(BOARD_AVB_ENABLE),\ |
| 1772 | $(if $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH),\ |
| 1773 | $(hide) echo "avb_system_other_key_path=$(BOARD_AVB_SYSTEM_OTHER_KEY_PATH)" >> $(1) |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 1774 | $(hide) echo "avb_system_other_algorithm=$(BOARD_AVB_SYSTEM_OTHER_ALGORITHM)" >> $(1))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1775 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1776 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1777 | $(if $(BOARD_AVB_ENABLE),\ |
| 1778 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 1779 | $(hide) echo "avb_vendor_key_path=$(BOARD_AVB_VENDOR_KEY_PATH)" >> $(1) |
| 1780 | $(hide) echo "avb_vendor_algorithm=$(BOARD_AVB_VENDOR_ALGORITHM)" >> $(1) |
| 1781 | $(hide) echo "avb_vendor_rollback_index_location=$(BOARD_AVB_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 1782 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1783 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_add_hashtree_footer_args=$(BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1784 | $(if $(BOARD_AVB_ENABLE),\ |
| 1785 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 1786 | $(hide) echo "avb_product_key_path=$(BOARD_AVB_PRODUCT_KEY_PATH)" >> $(1) |
| 1787 | $(hide) echo "avb_product_algorithm=$(BOARD_AVB_PRODUCT_ALGORITHM)" >> $(1) |
| 1788 | $(hide) echo "avb_product_rollback_index_location=$(BOARD_AVB_PRODUCT_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1789 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_ext_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
Tao Bao | 1ebda8d | 2018-08-01 17:21:14 -0700 | [diff] [blame] | 1790 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1791 | $(hide) echo "avb_system_ext_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 1792 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1793 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 1794 | $(hide) echo "avb_system_ext_key_path=$(BOARD_AVB_SYSTEM_EXT_KEY_PATH)" >> $(1) |
| 1795 | $(hide) echo "avb_system_ext_algorithm=$(BOARD_AVB_SYSTEM_EXT_ALGORITHM)" >> $(1) |
| 1796 | $(hide) echo "avb_system_ext_rollback_index_location=$(BOARD_AVB_SYSTEM_EXT_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1797 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1798 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_add_hashtree_footer_args=$(BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1799 | $(if $(BOARD_AVB_ENABLE),\ |
| 1800 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 1801 | $(hide) echo "avb_odm_key_path=$(BOARD_AVB_ODM_KEY_PATH)" >> $(1) |
| 1802 | $(hide) echo "avb_odm_algorithm=$(BOARD_AVB_ODM_ALGORITHM)" >> $(1) |
| 1803 | $(hide) echo "avb_odm_rollback_index_location=$(BOARD_AVB_ODM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 1804 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
| 1805 | $(hide) echo "recovery_as_boot=true" >> $(1)) |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 1806 | $(if $(filter true,$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)),\ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1807 | $(hide) echo "system_root_image=true" >> $(1)) |
| 1808 | $(hide) echo "root_dir=$(TARGET_ROOT_OUT)" >> $(1) |
Tamas Petz | 89418f0 | 2020-02-03 15:40:15 +0100 | [diff] [blame] | 1809 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITION_SIZE)),\ |
| 1810 | $(hide) echo "use_dynamic_partition_size=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1811 | $(if $(3),$(hide) $(foreach kv,$(3),echo "$(kv)" >> $(1);)) |
| 1812 | endef |
| 1813 | |
| 1814 | # $(1): the path of the output dictionary file |
| 1815 | # $(2): additional "key=value" pairs to append to the dictionary file. |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1816 | PROP_DICTIONARY_IMAGES := oem |
| 1817 | ifdef BUILDING_CACHE_IMAGE |
| 1818 | PROP_DICTIONARY_IMAGES += cache |
| 1819 | endif |
| 1820 | ifdef BUILDING_SYSTEM_IMAGE |
| 1821 | PROP_DICTIONARY_IMAGES += system |
| 1822 | endif |
| 1823 | ifdef BUILDING_USERDATA_IMAGE |
| 1824 | PROP_DICTIONARY_IMAGES += userdata |
| 1825 | endif |
| 1826 | ifdef BUILDING_VENDOR_IMAGE |
| 1827 | PROP_DICTIONARY_IMAGES += vendor |
| 1828 | endif |
| 1829 | ifdef BUILDING_PRODUCT_IMAGE |
| 1830 | PROP_DICTIONARY_IMAGES += product |
| 1831 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1832 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 1833 | PROP_DICTIONARY_IMAGES += system_ext |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1834 | endif |
| 1835 | ifdef BUILDING_ODM_IMAGE |
| 1836 | PROP_DICTIONARY_IMAGES += odm |
| 1837 | endif |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1838 | define generate-userimage-prop-dictionary |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1839 | $(call generate-image-prop-dictionary,$(1),$(PROP_DICTIONARY_IMAGES),$(2)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1840 | endef |
| 1841 | |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1842 | # $(1): the path of the input dictionary file, where each line has the format key=value |
| 1843 | # $(2): the key to look up |
| 1844 | define read-image-prop-dictionary |
| 1845 | $$(grep '$(2)=' $(1) | cut -f2- -d'=') |
| 1846 | endef |
| 1847 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1848 | # ----------------------------------------------------------------- |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1849 | # Recovery image |
Doug Zongker | 8cebf1f | 2009-07-07 17:14:25 -0700 | [diff] [blame] | 1850 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 1851 | # Recovery image exists if we are building recovery, or building recovery as boot. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1852 | ifdef BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1853 | |
Ying Wang | 3752614 | 2015-03-10 12:02:57 -0700 | [diff] [blame] | 1854 | INTERNAL_RECOVERYIMAGE_FILES := $(filter $(TARGET_RECOVERY_OUT)/%, \ |
| 1855 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1856 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1857 | INSTALLED_FILES_FILE_RECOVERY := $(PRODUCT_OUT)/installed-files-recovery.txt |
| 1858 | INSTALLED_FILES_JSON_RECOVERY := $(INSTALLED_FILES_FILE_RECOVERY:.txt=.json) |
| 1859 | |
| 1860 | # TODO(b/30414428): Can't depend on INTERNAL_RECOVERYIMAGE_FILES alone like other |
| 1861 | # INSTALLED_FILES_FILE_* rules. Because currently there're cp/rsync/rm commands in |
| 1862 | # build-recoveryimage-target, which would touch the files under TARGET_RECOVERY_OUT and race with |
| 1863 | # the call to FILELIST. |
| 1864 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1865 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1866 | $(INSTALLED_FILES_FILE_RECOVERY): $(INSTALLED_BOOTIMAGE_TARGET) |
| 1867 | else |
| 1868 | $(INSTALLED_FILES_FILE_RECOVERY): $(INSTALLED_RECOVERYIMAGE_TARGET) |
| 1869 | endif |
| 1870 | |
| 1871 | $(INSTALLED_FILES_FILE_RECOVERY): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RECOVERY) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1872 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERYIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1873 | @echo Installed file list: $@ |
| 1874 | @mkdir -p $(dir $@) |
| 1875 | @rm -f $@ |
| 1876 | $(hide) $(FILESLIST) $(TARGET_RECOVERY_ROOT_OUT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1877 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1878 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1879 | recovery_sepolicy := \ |
| 1880 | $(TARGET_RECOVERY_ROOT_OUT)/sepolicy \ |
Jeff Vander Stoep | 4ff042c | 2017-06-13 08:30:46 -0700 | [diff] [blame] | 1881 | $(TARGET_RECOVERY_ROOT_OUT)/plat_file_contexts \ |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1882 | $(TARGET_RECOVERY_ROOT_OUT)/plat_property_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 1883 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_file_contexts \ |
| 1884 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_property_contexts \ |
| 1885 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 1886 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_property_contexts \ |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 1887 | $(TARGET_RECOVERY_ROOT_OUT)/odm_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 1888 | $(TARGET_RECOVERY_ROOT_OUT)/odm_property_contexts \ |
| 1889 | $(TARGET_RECOVERY_ROOT_OUT)/product_file_contexts \ |
| 1890 | $(TARGET_RECOVERY_ROOT_OUT)/product_property_contexts |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 1891 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1892 | # Passed into rsync from non-recovery root to recovery root, to avoid overwriting recovery-specific |
| 1893 | # SELinux files |
| 1894 | IGNORE_RECOVERY_SEPOLICY := $(patsubst $(TARGET_RECOVERY_OUT)/%,--exclude=/%,$(recovery_sepolicy)) |
| 1895 | |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1896 | recovery_kernel := $(INSTALLED_KERNEL_TARGET) # same as a non-recovery system |
| 1897 | recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1898 | recovery_resources_common := $(call include-path-for, recovery)/res |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 1899 | |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 1900 | # Set recovery_density to a density bucket based on TARGET_SCREEN_DENSITY, PRODUCT_AAPT_PREF_CONFIG, |
| 1901 | # or mdpi, in order of preference. We support both specific buckets (e.g. xdpi) and numbers, |
| 1902 | # which get remapped to a bucket. |
| 1903 | recovery_density := $(or $(TARGET_SCREEN_DENSITY),$(PRODUCT_AAPT_PREF_CONFIG),mdpi) |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 1904 | ifeq (,$(filter xxxhdpi xxhdpi xhdpi hdpi mdpi,$(recovery_density))) |
| 1905 | recovery_density_value := $(patsubst %dpi,%,$(recovery_density)) |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 1906 | # We roughly use the medium point between the primary densities to split buckets. |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 1907 | # ------160------240------320----------480------------640------ |
| 1908 | # mdpi hdpi xhdpi xxhdpi xxxhdpi |
| 1909 | recovery_density := $(strip \ |
| 1910 | $(or $(if $(filter $(shell echo $$(($(recovery_density_value) >= 560))),1),xxxhdpi),\ |
| 1911 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 400))),1),xxhdpi),\ |
| 1912 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 280))),1),xhdpi),\ |
| 1913 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 200))),1),hdpi,mdpi))) |
Doug Zongker | 8eaeea9 | 2014-05-12 15:32:20 -0700 | [diff] [blame] | 1914 | endif |
| 1915 | |
| 1916 | ifneq (,$(wildcard $(recovery_resources_common)-$(recovery_density))) |
| 1917 | recovery_resources_common := $(recovery_resources_common)-$(recovery_density) |
| 1918 | else |
Doug Zongker | 25d55f8 | 2014-04-04 13:51:15 -0700 | [diff] [blame] | 1919 | recovery_resources_common := $(recovery_resources_common)-xhdpi |
| 1920 | endif |
| 1921 | |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 1922 | # Select the 18x32 font on high-density devices (xhdpi and up); and the 12x22 font on other devices. |
| 1923 | # Note that the font selected here can be overridden for a particular device by putting a font.png |
| 1924 | # in its private recovery resources. |
| 1925 | ifneq (,$(filter xxxhdpi xxhdpi xhdpi,$(recovery_density))) |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 1926 | recovery_font := $(call include-path-for, recovery)/fonts/18x32.png |
| 1927 | else |
| 1928 | recovery_font := $(call include-path-for, recovery)/fonts/12x22.png |
| 1929 | endif |
| 1930 | |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1931 | |
| 1932 | # We will only generate the recovery background text images if the variable |
| 1933 | # TARGET_RECOVERY_UI_SCREEN_WIDTH is defined. For devices with xxxhdpi and xxhdpi, we set the |
| 1934 | # variable to the commonly used values here, if it hasn't been intialized elsewhere. While for |
| 1935 | # devices with lower density, they must have TARGET_RECOVERY_UI_SCREEN_WIDTH defined in their |
| 1936 | # BoardConfig in order to use this feature. |
| 1937 | ifeq ($(recovery_density),xxxhdpi) |
| 1938 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1440 |
| 1939 | else ifeq ($(recovery_density),xxhdpi) |
| 1940 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1080 |
| 1941 | endif |
| 1942 | |
| 1943 | ifneq ($(TARGET_RECOVERY_UI_SCREEN_WIDTH),) |
| 1944 | # Subtracts the margin width and menu indent from the screen width; it's safe to be conservative. |
| 1945 | ifeq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),) |
| 1946 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - 10)) |
| 1947 | else |
| 1948 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - $(TARGET_RECOVERY_UI_MARGIN_WIDTH) - 10)) |
| 1949 | endif |
| 1950 | |
| 1951 | |
| 1952 | RECOVERY_INSTALLING_TEXT_FILE := $(call intermediates-dir-for,PACKAGING,recovery_text_res)/installing_text.png |
| 1953 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/installing_security_text.png |
| 1954 | RECOVERY_ERASING_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/erasing_text.png |
| 1955 | RECOVERY_ERROR_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/error_text.png |
| 1956 | RECOVERY_NO_COMMAND_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/no_command_text.png |
| 1957 | |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1958 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/cancel_wipe_data_text.png |
| 1959 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/factory_data_reset_text.png |
| 1960 | RECOVERY_TRY_AGAIN_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/try_again_text.png |
| 1961 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_confirmation_text.png |
| 1962 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_menu_header_text.png |
| 1963 | |
| 1964 | generated_recovery_text_files := \ |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1965 | $(RECOVERY_INSTALLING_TEXT_FILE) \ |
| 1966 | $(RECOVERY_INSTALLING_SECURITY_TEXT_FILE) \ |
| 1967 | $(RECOVERY_ERASING_TEXT_FILE) \ |
| 1968 | $(RECOVERY_ERROR_TEXT_FILE) \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1969 | $(RECOVERY_NO_COMMAND_TEXT_FILE) \ |
| 1970 | $(RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE) \ |
| 1971 | $(RECOVERY_FACTORY_DATA_RESET_TEXT_FILE) \ |
| 1972 | $(RECOVERY_TRY_AGAIN_TEXT_FILE) \ |
| 1973 | $(RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE) \ |
| 1974 | $(RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1975 | |
| 1976 | resource_dir := $(call include-path-for, recovery)/tools/recovery_l10n/res/ |
| 1977 | image_generator_jar := $(HOST_OUT_JAVA_LIBRARIES)/RecoveryImageGenerator.jar |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1978 | zopflipng := $(HOST_OUT_EXECUTABLES)/zopflipng |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1979 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_SOURCE_FONTS := $(recovery_noto-fonts_dep) $(recovery_roboto-fonts_dep) |
| 1980 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_FONT_FILES_DIR := $(call intermediates-dir-for,PACKAGING,recovery_font_files) |
| 1981 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RESOURCE_DIR := $(resource_dir) |
| 1982 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_IMAGE_GENERATOR_JAR := $(image_generator_jar) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1983 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_ZOPFLIPNG := $(zopflipng) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1984 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_IMAGE_WIDTH := $(recovery_image_width) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 1985 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_BACKGROUND_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1986 | recovery_installing \ |
| 1987 | recovery_installing_security \ |
| 1988 | recovery_erasing \ |
| 1989 | recovery_error \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 1990 | recovery_no_command |
| 1991 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_WIPE_DATA_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1992 | recovery_cancel_wipe_data \ |
| 1993 | recovery_factory_data_reset \ |
| 1994 | recovery_try_again \ |
| 1995 | recovery_wipe_data_menu_header \ |
| 1996 | recovery_wipe_data_confirmation |
| 1997 | $(RECOVERY_INSTALLING_TEXT_FILE): .KATI_IMPLICIT_OUTPUTS := $(filter-out $(RECOVERY_INSTALLING_TEXT_FILE),$(generated_recovery_text_files)) |
| 1998 | $(RECOVERY_INSTALLING_TEXT_FILE): $(image_generator_jar) $(resource_dir) $(recovery_noto-fonts_dep) $(recovery_roboto-fonts_dep) $(zopflipng) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1999 | # Prepares the font directory. |
| 2000 | @rm -rf $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
| 2001 | @mkdir -p $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2002 | $(foreach filename,$(PRIVATE_SOURCE_FONTS), cp $(filename) $(PRIVATE_RECOVERY_FONT_FILES_DIR) &&) true |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2003 | @rm -rf $(dir $@) |
| 2004 | @mkdir -p $(dir $@) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2005 | $(foreach text_name,$(PRIVATE_RECOVERY_BACKGROUND_TEXT_LIST) $(PRIVATE_RECOVERY_WIPE_DATA_TEXT_LIST), \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2006 | $(eval output_file := $(dir $@)/$(patsubst recovery_%,%_text.png,$(text_name))) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2007 | $(eval center_alignment := $(if $(filter $(text_name),$(PRIVATE_RECOVERY_BACKGROUND_TEXT_LIST)), --center_alignment)) \ |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2008 | java -jar $(PRIVATE_IMAGE_GENERATOR_JAR) \ |
| 2009 | --image_width $(PRIVATE_RECOVERY_IMAGE_WIDTH) \ |
| 2010 | --text_name $(text_name) \ |
| 2011 | --font_dir $(PRIVATE_RECOVERY_FONT_FILES_DIR) \ |
| 2012 | --resource_dir $(PRIVATE_RESOURCE_DIR) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2013 | --output_file $(output_file) $(center_alignment) && \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2014 | $(PRIVATE_ZOPFLIPNG) -y --iterations=1 --filters=0 $(output_file) $(output_file) > /dev/null &&) true |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2015 | else |
| 2016 | RECOVERY_INSTALLING_TEXT_FILE := |
| 2017 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := |
| 2018 | RECOVERY_ERASING_TEXT_FILE := |
| 2019 | RECOVERY_ERROR_TEXT_FILE := |
| 2020 | RECOVERY_NO_COMMAND_TEXT_FILE := |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2021 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := |
| 2022 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := |
| 2023 | RECOVERY_TRY_AGAIN_TEXT_FILE := |
| 2024 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := |
| 2025 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2026 | endif # TARGET_RECOVERY_UI_SCREEN_WIDTH |
| 2027 | |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2028 | ifndef TARGET_PRIVATE_RES_DIRS |
| 2029 | TARGET_PRIVATE_RES_DIRS := $(wildcard $(TARGET_DEVICE_DIR)/recovery/res) |
| 2030 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2031 | recovery_resource_deps := $(shell find $(recovery_resources_common) \ |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2032 | $(TARGET_PRIVATE_RES_DIRS) -type f) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2033 | recovery_resource_deps += $(generated_recovery_text_files) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2034 | |
| 2035 | |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2036 | ifdef TARGET_RECOVERY_FSTAB |
| 2037 | recovery_fstab := $(TARGET_RECOVERY_FSTAB) |
| 2038 | else |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 2039 | recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab)) |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2040 | endif |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2041 | ifdef TARGET_RECOVERY_WIPE |
| 2042 | recovery_wipe := $(TARGET_RECOVERY_WIPE) |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2043 | else |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2044 | recovery_wipe := |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2045 | endif |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2046 | |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2047 | # Traditionally with non-A/B OTA we have: |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2048 | # boot.img + recovery-from-boot.p + recovery-resource.dat = recovery.img. |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2049 | # recovery-resource.dat is needed only if we carry an imgdiff patch of the boot and recovery images |
| 2050 | # and invoke install-recovery.sh on the first boot post an OTA update. |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2051 | # |
| 2052 | # We no longer need that if one of the following conditions holds: |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2053 | # a) We carry a full copy of the recovery image - no patching needed |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2054 | # (BOARD_USES_FULL_RECOVERY_IMAGE = true); |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2055 | # b) We build a single image that contains boot and recovery both - no recovery image to install |
| 2056 | # (BOARD_USES_RECOVERY_AS_BOOT = true); |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2057 | # c) We mount the system image as / and therefore do not have a ramdisk in boot.img |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2058 | # (BOARD_BUILD_SYSTEM_ROOT_IMAGE = true). |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2059 | # d) We include the recovery DTBO image within recovery - not needing the resource file as we |
| 2060 | # do bsdiff because boot and recovery will contain different number of entries |
| 2061 | # (BOARD_INCLUDE_RECOVERY_DTBO = true). |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2062 | # e) We include the recovery ACPIO image within recovery - not needing the resource file as we |
| 2063 | # do bsdiff because boot and recovery will contain different number of entries |
| 2064 | # (BOARD_INCLUDE_RECOVERY_ACPIO = true). |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2065 | |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2066 | ifeq (,$(filter true, $(BOARD_USES_FULL_RECOVERY_IMAGE) $(BOARD_USES_RECOVERY_AS_BOOT) \ |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2067 | $(BOARD_BUILD_SYSTEM_ROOT_IMAGE) $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO))) |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2068 | # Named '.dat' so we don't attempt to use imgdiff for patching it. |
Bill Peckham | e868aec | 2019-09-17 17:06:47 -0700 | [diff] [blame] | 2069 | RECOVERY_RESOURCE_ZIP := $(TARGET_OUT_VENDOR)/etc/recovery-resource.dat |
| 2070 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_RESOURCE_ZIP) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2071 | else |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2072 | RECOVERY_RESOURCE_ZIP := |
| 2073 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2074 | |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2075 | INSTALLED_RECOVERY_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/prop.default |
| 2076 | |
| 2077 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): PRIVATE_RECOVERY_UI_PROPERTIES := \ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2078 | TARGET_RECOVERY_UI_ANIMATION_FPS:animation_fps \ |
| 2079 | TARGET_RECOVERY_UI_MARGIN_HEIGHT:margin_height \ |
| 2080 | TARGET_RECOVERY_UI_MARGIN_WIDTH:margin_width \ |
| 2081 | TARGET_RECOVERY_UI_MENU_UNUSABLE_ROWS:menu_unusable_rows \ |
| 2082 | TARGET_RECOVERY_UI_PROGRESS_BAR_BASELINE:progress_bar_baseline \ |
| 2083 | TARGET_RECOVERY_UI_TOUCH_LOW_THRESHOLD:touch_low_threshold \ |
| 2084 | TARGET_RECOVERY_UI_TOUCH_HIGH_THRESHOLD:touch_high_threshold \ |
| 2085 | TARGET_RECOVERY_UI_VR_STEREO_OFFSET:vr_stereo_offset |
| 2086 | |
| 2087 | # Parses the given list of build variables and writes their values as build properties if defined. |
| 2088 | # For example, if a target defines `TARGET_RECOVERY_UI_MARGIN_HEIGHT := 100`, |
| 2089 | # `ro.recovery.ui.margin_height=100` will be appended to the given output file. |
| 2090 | # $(1): Map from the build variable names to property names |
| 2091 | # $(2): Output file |
| 2092 | define append-recovery-ui-properties |
| 2093 | echo "#" >> $(2) |
| 2094 | echo "# RECOVERY UI BUILD PROPERTIES" >> $(2) |
| 2095 | echo "#" >> $(2) |
| 2096 | $(foreach prop,$(1), \ |
| 2097 | $(eval _varname := $(call word-colon,1,$(prop))) \ |
| 2098 | $(eval _propname := $(call word-colon,2,$(prop))) \ |
| 2099 | $(eval _value := $($(_varname))) \ |
| 2100 | $(if $(_value), \ |
| 2101 | echo ro.recovery.ui.$(_propname)=$(_value) >> $(2) &&)) true |
| 2102 | endef |
| 2103 | |
| 2104 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2105 | $(INSTALLED_DEFAULT_PROP_TARGET) \ |
| 2106 | $(INSTALLED_VENDOR_DEFAULT_PROP_TARGET) \ |
| 2107 | $(intermediate_system_build_prop) \ |
| 2108 | $(INSTALLED_VENDOR_BUILD_PROP_TARGET) \ |
| 2109 | $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2110 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2111 | $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) |
Tao Bao | 1edaca1 | 2018-09-18 10:22:54 -0700 | [diff] [blame] | 2112 | @echo "Target recovery buildinfo: $@" |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2113 | $(hide) mkdir -p $(dir $@) |
| 2114 | $(hide) rm -f $@ |
| 2115 | $(hide) cat $(INSTALLED_DEFAULT_PROP_TARGET) > $@ |
| 2116 | $(hide) cat $(INSTALLED_VENDOR_DEFAULT_PROP_TARGET) >> $@ |
Tao Bao | 6eb1a99 | 2018-08-06 07:33:45 -0700 | [diff] [blame] | 2117 | $(hide) cat $(intermediate_system_build_prop) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2118 | $(hide) cat $(INSTALLED_VENDOR_BUILD_PROP_TARGET) >> $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2119 | $(hide) cat $(INSTALLED_ODM_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2120 | $(hide) cat $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) >> $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2121 | $(hide) cat $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2122 | $(call append-recovery-ui-properties,$(PRIVATE_RECOVERY_UI_PROPERTIES),$@) |
| 2123 | |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame^] | 2124 | ifeq (truetrue,$(strip $(BUILDING_VENDOR_BOOT_IMAGE))$(strip $(AB_OTA_UPDATER))) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 2125 | INTERNAL_RECOVERYIMAGE_ARGS := \ |
| 2126 | --kernel $(recovery_kernel) --ramdisk $(recovery_ramdisk) |
| 2127 | ifdef GENERIC_KERNEL_CMDLINE |
| 2128 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(GENERIC_KERNEL_CMDLINE)" |
| 2129 | endif |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame^] | 2130 | else # not (BUILDING_VENDOR_BOOT_IMAGE and AB_OTA_UPDATER) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 2131 | INTERNAL_RECOVERYIMAGE_ARGS := \ |
| 2132 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2133 | --ramdisk $(recovery_ramdisk) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2134 | # Assumes this has already been stripped |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 2135 | ifdef INTERNAL_KERNEL_CMDLINE |
| 2136 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2137 | endif |
| 2138 | ifdef BOARD_KERNEL_BASE |
| 2139 | INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 2140 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 2141 | ifdef BOARD_KERNEL_PAGESIZE |
| 2142 | INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 2143 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2144 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2145 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2146 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2147 | else |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2148 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_DTBOIMAGE) |
| 2149 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 2150 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2151 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 2152 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_acpio $(BOARD_RECOVERY_ACPIO) |
| 2153 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2154 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 2155 | INTERNAL_RECOVERYIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 2156 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 2157 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET not defined |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame^] | 2158 | ifndef BOARD_RECOVERY_MKBOOTIMG_ARGS |
| 2159 | BOARD_RECOVERY_MKBOOTIMG_ARGS := $(BOARD_MKBOOTIMG_ARGS) |
| 2160 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2161 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2162 | $(recovery_ramdisk): $(MKBOOTFS) $(MINIGZIP) \ |
| 2163 | $(INTERNAL_ROOT_FILES) \ |
| 2164 | $(INSTALLED_RAMDISK_TARGET) \ |
| 2165 | $(INTERNAL_RECOVERYIMAGE_FILES) \ |
| 2166 | $(recovery_sepolicy) \ |
| 2167 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 2168 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET) \ |
| 2169 | $(recovery_resource_deps) \ |
| 2170 | $(recovery_fstab) |
| 2171 | # Making recovery image |
| 2172 | mkdir -p $(TARGET_RECOVERY_OUT) |
| 2173 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sdcard $(TARGET_RECOVERY_ROOT_OUT)/tmp |
| 2174 | # Copying baseline ramdisk... |
| 2175 | # Use rsync because "cp -Rf" fails to overwrite broken symlinks on Mac. |
| 2176 | rsync -a --exclude=sdcard $(IGNORE_RECOVERY_SEPOLICY) $(IGNORE_CACHE_LINK) $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT) |
| 2177 | # Modifying ramdisk contents... |
| 2178 | $(if $(filter true,$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)),, \ |
| 2179 | ln -sf /system/bin/init $(TARGET_RECOVERY_ROOT_OUT)/init) |
| 2180 | # Removes $(TARGET_RECOVERY_ROOT_OUT)/init*.rc EXCEPT init.recovery*.rc. |
| 2181 | find $(TARGET_RECOVERY_ROOT_OUT) -maxdepth 1 -name 'init*.rc' -type f -not -name "init.recovery.*.rc" | xargs rm -f |
| 2182 | cp $(TARGET_ROOT_OUT)/init.recovery.*.rc $(TARGET_RECOVERY_ROOT_OUT)/ 2> /dev/null || true # Ignore error when the src file doesn't exist. |
| 2183 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2184 | rm -rf $(TARGET_RECOVERY_ROOT_OUT)/res/* |
| 2185 | cp -rf $(recovery_resources_common)/* $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2186 | $(foreach recovery_text_file,$(generated_recovery_text_files), \ |
| 2187 | cp -rf $(recovery_text_file) $(TARGET_RECOVERY_ROOT_OUT)/res/images/ &&) true |
| 2188 | cp -f $(recovery_font) $(TARGET_RECOVERY_ROOT_OUT)/res/images/font.png |
| 2189 | $(foreach item,$(TARGET_PRIVATE_RES_DIRS), \ |
| 2190 | cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/$(newline)) |
| 2191 | $(foreach item,$(recovery_fstab), \ |
| 2192 | cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.fstab) |
| 2193 | $(if $(strip $(recovery_wipe)), \ |
| 2194 | cp -f $(recovery_wipe) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.wipe) |
| 2195 | ln -sf prop.default $(TARGET_RECOVERY_ROOT_OUT)/default.prop |
| 2196 | $(BOARD_RECOVERY_IMAGE_PREPARE) |
| 2197 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RECOVERY_ROOT_OUT) | $(MINIGZIP) > $(recovery_ramdisk) |
| 2198 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2199 | # $(1): output file |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2200 | # $(2): kernel file |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2201 | define build-recoveryimage-target |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2202 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2203 | $(MKBOOTIMG) --kernel $(2) $(MKBOOTIMG_KERNEL_ARG) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame^] | 2204 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_RECOVERY_MKBOOTIMG_ARGS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2205 | --output $(1).unsigned, \ |
| 2206 | $(MKBOOTIMG) --kernel $(2) $(MKBOOTIMG_KERNEL_ARG) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame^] | 2207 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_RECOVERY_MKBOOTIMG_ARGS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2208 | --output $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2209 | $(if $(filter true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)),\ |
Nick Desaulniers | d491fcf | 2016-08-08 10:51:10 -0700 | [diff] [blame] | 2210 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2211 | $(BOOT_SIGNER) /boot $(1) $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $(1),\ |
| 2212 | $(BOOT_SIGNER) /recovery $(1) $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $(1)\ |
Nick Desaulniers | d491fcf | 2016-08-08 10:51:10 -0700 | [diff] [blame] | 2213 | )\ |
| 2214 | ) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2215 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
| 2216 | $(VBOOT_SIGNER) $(FUTILITY) $(1).unsigned $(PRODUCT_VBOOT_SIGNING_KEY).vbpubk $(PRODUCT_VBOOT_SIGNING_KEY).vbprivk $(PRODUCT_VBOOT_SIGNING_SUBKEY).vbprivk $(1).keyblock $(1)) |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 2217 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2218 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_BOOTIMAGE_PARTITION_SIZE))), \ |
| 2219 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)))) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 2220 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 2221 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2222 | $(AVBTOOL) add_hash_footer --image $(1) --partition_size $(BOARD_BOOTIMAGE_PARTITION_SIZE) --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS),\ |
| 2223 | $(AVBTOOL) add_hash_footer --image $(1) --partition_size $(BOARD_RECOVERYIMAGE_PARTITION_SIZE) --partition_name recovery $(INTERNAL_AVB_RECOVERY_SIGNING_ARGS) $(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS))) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2224 | endef |
| 2225 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2226 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2227 | ifeq (true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 2228 | $(INSTALLED_BOOTIMAGE_TARGET) : $(BOOT_SIGNER) |
| 2229 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2230 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 2231 | $(INSTALLED_BOOTIMAGE_TARGET) : $(VBOOT_SIGNER) |
| 2232 | endif |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2233 | ifeq (true,$(BOARD_AVB_ENABLE)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 2234 | $(INSTALLED_BOOTIMAGE_TARGET) : $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2235 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2236 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2237 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2238 | $(INSTALLED_BOOTIMAGE_TARGET): $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2239 | else |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2240 | $(INSTALLED_BOOTIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) |
| 2241 | endif |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2242 | endif |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2243 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 2244 | $(INSTALLED_BOOTIMAGE_TARGET): $(BOARD_RECOVERY_ACPIO) |
| 2245 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2246 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 2247 | $(INSTALLED_BOOTIMAGE_TARGET): $(INSTALLED_DTBIMAGE_TARGET) |
| 2248 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2249 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2250 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(recovery_ramdisk) \ |
| 2251 | $(recovery_kernel) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2252 | $(call pretty,"Target boot image from recovery: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2253 | $(call build-recoveryimage-target, $@, $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $@)))) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2254 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2255 | |
| 2256 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2257 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2258 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2259 | else |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2260 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2261 | endif |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2262 | endif |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2263 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 2264 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(BOARD_RECOVERY_ACPIO) |
| 2265 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2266 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 2267 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(INSTALLED_DTBIMAGE_TARGET) |
| 2268 | endif |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2269 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2270 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(MKBOOTIMG) $(recovery_ramdisk) \ |
| 2271 | $(recovery_kernel) |
| 2272 | $(call build-recoveryimage-target, $@, $(recovery_kernel)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2273 | |
Tao Bao | 4594d0e | 2015-12-22 09:47:46 -0800 | [diff] [blame] | 2274 | ifdef RECOVERY_RESOURCE_ZIP |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2275 | $(RECOVERY_RESOURCE_ZIP): $(INSTALLED_RECOVERYIMAGE_TARGET) | $(ZIPTIME) |
Doug Zongker | 1a09726 | 2012-09-04 14:45:11 -0700 | [diff] [blame] | 2276 | $(hide) mkdir -p $(dir $@) |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2277 | $(hide) find $(TARGET_RECOVERY_ROOT_OUT)/res -type f | sort | zip -0qrjX $@ -@ |
| 2278 | $(remove-timestamps-from-package) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2279 | endif |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2280 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2281 | .PHONY: recoveryimage-nodeps |
| 2282 | recoveryimage-nodeps: |
| 2283 | @echo "make $@: ignoring dependencies" |
| 2284 | $(call build-recoveryimage-target, $(INSTALLED_RECOVERYIMAGE_TARGET)) |
| 2285 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2286 | else # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2287 | RECOVERY_RESOURCE_ZIP := |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2288 | endif # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2289 | |
| 2290 | .PHONY: recoveryimage |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2291 | recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET) $(RECOVERY_RESOURCE_ZIP) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2292 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2293 | ifneq ($(BOARD_NAND_PAGE_SIZE),) |
| 2294 | $(error MTD device is no longer supported and thus BOARD_NAND_PAGE_SIZE is deprecated.) |
Dima Zavin | 1181898 | 2010-02-05 13:34:34 -0800 | [diff] [blame] | 2295 | endif |
| 2296 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2297 | ifneq ($(BOARD_NAND_SPARE_SIZE),) |
| 2298 | $(error MTD device is no longer supported and thus BOARD_NAND_SPARE_SIZE is deprecated.) |
Naseer Ahmed | 5387188 | 2010-08-06 12:19:29 -0700 | [diff] [blame] | 2299 | endif |
| 2300 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2301 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2302 | # ----------------------------------------------------------------- |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2303 | # the debug ramdisk, which is the original ramdisk plus additional |
| 2304 | # files: force_debuggable, adb_debug.prop and userdebug sepolicy. |
| 2305 | # When /force_debuggable is present, /init will load userdebug sepolicy |
| 2306 | # and property files to allow adb root, if the device is unlocked. |
| 2307 | |
| 2308 | ifdef BUILDING_RAMDISK_IMAGE |
| 2309 | BUILT_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-debug.img |
| 2310 | INSTALLED_DEBUG_RAMDISK_TARGET := $(BUILT_DEBUG_RAMDISK_TARGET) |
| 2311 | |
| 2312 | INTERNAL_DEBUG_RAMDISK_FILES := $(filter $(TARGET_DEBUG_RAMDISK_OUT)/%, \ |
| 2313 | $(ALL_GENERATED_SOURCES) \ |
| 2314 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2315 | |
| 2316 | # Note: TARGET_DEBUG_RAMDISK_OUT will be $(PRODUCT_OUT)/debug_ramdisk/first_stage_ramdisk, |
| 2317 | # if BOARD_USES_RECOVERY_AS_BOOT is true. Otherwise, it will be $(PRODUCT_OUT)/debug_ramdisk. |
| 2318 | # But the root dir of the ramdisk to build is always $(PRODUCT_OUT)/debug_ramdisk. |
| 2319 | my_debug_ramdisk_root_dir := $(PRODUCT_OUT)/debug_ramdisk |
| 2320 | |
| 2321 | INSTALLED_FILES_FILE_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk-debug.txt |
| 2322 | INSTALLED_FILES_JSON_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK:.txt=.json) |
| 2323 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_DEBUG_RAMDISK) |
| 2324 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): DEBUG_RAMDISK_ROOT_DIR := $(my_debug_ramdisk_root_dir) |
| 2325 | |
| 2326 | # Cannot just depend on INTERNAL_DEBUG_RAMDISK_FILES like other INSTALLED_FILES_FILE_* rules. |
| 2327 | # Because ramdisk-debug.img will rsync from either ramdisk.img or ramdisk-recovery.img. |
| 2328 | # Need to depend on the built ramdisk-debug.img, to get a complete list of the installed files. |
| 2329 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) : $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2330 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) : $(INTERNAL_DEBUG_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2331 | echo Installed file list: $@ |
| 2332 | mkdir -p $(dir $@) |
| 2333 | rm -f $@ |
| 2334 | $(FILESLIST) $(DEBUG_RAMDISK_ROOT_DIR) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2335 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2336 | |
| 2337 | # ramdisk-debug.img will rsync the content from either ramdisk.img or ramdisk-recovery.img, |
| 2338 | # depending on whether BOARD_USES_RECOVERY_AS_BOOT is set or not. |
| 2339 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2340 | my_debug_ramdisk_sync_dir := $(TARGET_RECOVERY_ROOT_OUT) |
| 2341 | else |
| 2342 | my_debug_ramdisk_sync_dir := $(TARGET_RAMDISK_OUT) |
| 2343 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2344 | |
| 2345 | $(INSTALLED_DEBUG_RAMDISK_TARGET): DEBUG_RAMDISK_SYNC_DIR := $(my_debug_ramdisk_sync_dir) |
| 2346 | $(INSTALLED_DEBUG_RAMDISK_TARGET): DEBUG_RAMDISK_ROOT_DIR := $(my_debug_ramdisk_root_dir) |
Bowgo Tsai | c3e8cc9 | 2019-04-24 12:35:50 +0800 | [diff] [blame] | 2347 | |
| 2348 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2349 | # ramdisk-recovery.img isn't a make target, need to depend on boot.img if it's for recovery. |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2350 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_BOOTIMAGE_TARGET) |
Bowgo Tsai | c3e8cc9 | 2019-04-24 12:35:50 +0800 | [diff] [blame] | 2351 | else |
| 2352 | # Depends on ramdisk.img, note that some target has ramdisk.img but no boot.img, e.g., emulator. |
| 2353 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_RAMDISK_TARGET) |
| 2354 | endif # BOARD_USES_RECOVERY_AS_BOOT |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2355 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_DEBUG_RAMDISK_FILES) | $(MINIGZIP) |
| 2356 | $(call pretty,"Target debug ram disk: $@") |
| 2357 | mkdir -p $(TARGET_DEBUG_RAMDISK_OUT) |
| 2358 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
Bowgo Tsai | 1578e23 | 2019-04-24 15:33:03 +0800 | [diff] [blame] | 2359 | rsync -a $(DEBUG_RAMDISK_SYNC_DIR)/ $(DEBUG_RAMDISK_ROOT_DIR) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2360 | $(MKBOOTFS) -d $(TARGET_OUT) $(DEBUG_RAMDISK_ROOT_DIR) | $(MINIGZIP) > $@ |
| 2361 | |
| 2362 | .PHONY: ramdisk_debug-nodeps |
| 2363 | ramdisk_debug-nodeps: DEBUG_RAMDISK_SYNC_DIR := $(my_debug_ramdisk_sync_dir) |
| 2364 | ramdisk_debug-nodeps: DEBUG_RAMDISK_ROOT_DIR := $(my_debug_ramdisk_root_dir) |
| 2365 | ramdisk_debug-nodeps: $(MKBOOTFS) | $(MINIGZIP) |
| 2366 | echo "make $@: ignoring dependencies" |
| 2367 | mkdir -p $(TARGET_DEBUG_RAMDISK_OUT) |
| 2368 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
Bowgo Tsai | 1578e23 | 2019-04-24 15:33:03 +0800 | [diff] [blame] | 2369 | rsync -a $(DEBUG_RAMDISK_SYNC_DIR)/ $(DEBUG_RAMDISK_ROOT_DIR) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2370 | $(MKBOOTFS) -d $(TARGET_OUT) $(DEBUG_RAMDISK_ROOT_DIR) | $(MINIGZIP) > $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2371 | |
| 2372 | my_debug_ramdisk_sync_dir := |
| 2373 | my_debug_ramdisk_root_dir := |
| 2374 | |
| 2375 | endif # BUILDING_RAMDISK_IMAGE |
| 2376 | |
| 2377 | # ----------------------------------------------------------------- |
| 2378 | # the boot-debug.img, which is the kernel plus ramdisk-debug.img |
| 2379 | # |
| 2380 | # Note: it's intentional to skip signing for boot-debug.img, because it |
| 2381 | # can only be used if the device is unlocked with verification error. |
| 2382 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2383 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 2384 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-debug,$(BOARD_KERNEL_BINARIES)), \ |
| 2385 | $(PRODUCT_OUT)/$(k).img) |
| 2386 | else |
| 2387 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-debug.img |
| 2388 | endif |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2389 | |
| 2390 | # Replace ramdisk.img in $(MKBOOTIMG) ARGS with ramdisk-debug.img to build boot-debug.img |
| 2391 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2392 | INTERNAL_DEBUG_BOOTIMAGE_ARGS := $(subst $(recovery_ramdisk),$(INSTALLED_DEBUG_RAMDISK_TARGET), $(INTERNAL_RECOVERYIMAGE_ARGS)) |
| 2393 | else |
| 2394 | INTERNAL_DEBUG_BOOTIMAGE_ARGS := $(subst $(INSTALLED_RAMDISK_TARGET),$(INSTALLED_DEBUG_RAMDISK_TARGET), $(INTERNAL_BOOTIMAGE_ARGS)) |
| 2395 | endif |
| 2396 | |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2397 | # If boot.img is chained but boot-debug.img is not signed, libavb in bootloader |
| 2398 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2399 | # Using a test key to sign boot-debug.img to continue booting with the mismatched |
| 2400 | # public key, if the device is unlocked. |
| 2401 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2402 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2403 | endif |
| 2404 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2405 | BOARD_AVB_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2406 | INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2407 | # $(1): the bootimage to sign |
| 2408 | define test-key-sign-bootimage |
| 2409 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_BOOTIMAGE_PARTITION_SIZE))) |
| 2410 | $(AVBTOOL) add_hash_footer \ |
| 2411 | --image $(1) \ |
| 2412 | --partition_size $(BOARD_BOOTIMAGE_PARTITION_SIZE) \ |
| 2413 | --partition_name boot $(INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS) \ |
| 2414 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 2415 | $(call assert-max-image-size,$(1),$(BOARD_BOOTIMAGE_PARTITION_SIZE)) |
| 2416 | endef |
| 2417 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2418 | # $(1): output file |
| 2419 | define build-debug-bootimage-target |
| 2420 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-debug,kernel,$(notdir $(1)))) \ |
| 2421 | $(INTERNAL_DEBUG_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $1 |
| 2422 | $(if $(BOARD_AVB_BOOT_KEY_PATH),$(call test-key-sign-bootimage,$1)) |
| 2423 | endef |
| 2424 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2425 | # Depends on original boot.img and ramdisk-debug.img, to build the new boot-debug.img |
| 2426 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2427 | $(call pretty,"Target boot debug image: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2428 | $(call build-debug-bootimage-target, $@) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2429 | |
| 2430 | .PHONY: bootimage_debug-nodeps |
| 2431 | bootimage_debug-nodeps: $(MKBOOTIMG) |
| 2432 | echo "make $@: ignoring dependencies" |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2433 | $(foreach b,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(call build-debug-bootimage-target,$b)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2434 | |
| 2435 | endif # TARGET_NO_KERNEL |
| 2436 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2437 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 2438 | ifeq ($(BUILDING_RAMDISK_IMAGE),true) |
| 2439 | # ----------------------------------------------------------------- |
| 2440 | # vendor debug ramdisk |
| 2441 | # Combines vendor ramdisk files and debug ramdisk files to build the vendor debug ramdisk. |
| 2442 | INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor-ramdisk-debug.cpio.gz |
| 2443 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): DEBUG_RAMDISK_FILES := $(INTERNAL_DEBUG_RAMDISK_FILES) |
| 2444 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): VENDOR_RAMDISK_DIR := $(TARGET_VENDOR_RAMDISK_OUT) |
| 2445 | |
| 2446 | INTERNAL_VENDOR_DEBUG_RAMDISK_FILES := $(filter $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/%, \ |
| 2447 | $(ALL_GENERATED_SOURCES) \ |
| 2448 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2449 | |
| 2450 | # Note: TARGET_VENDOR_DEBUG_RAMDISK_OUT will be $(PRODUCT_OUT)/vendor_debug_ramdisk/first_stage_ramdisk, |
| 2451 | # if BOARD_USES_RECOVERY_AS_BOOT is true. Otherwise, it will be $(PRODUCT_OUT)/vendor_debug_ramdisk. |
| 2452 | # But the path of $(VENDOR_DEBUG_RAMDISK_DIR) to build the vendor debug ramdisk, is always |
| 2453 | # $(PRODUCT_OUT)/vendor_debug_ramdisk. |
| 2454 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): VENDOR_DEBUG_RAMDISK_DIR := $(PRODUCT_OUT)/vendor_debug_ramdisk |
| 2455 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2456 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) | $(MINIGZIP) |
| 2457 | $(call pretty,"Target vendor debug ram disk: $@") |
| 2458 | mkdir -p $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) |
| 2459 | touch $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/force_debuggable |
| 2460 | $(foreach debug_file,$(DEBUG_RAMDISK_FILES), \ |
| 2461 | cp -f $(debug_file) $(subst $(PRODUCT_OUT)/debug_ramdisk,$(PRODUCT_OUT)/vendor_debug_ramdisk,$(debug_file)) &&) true |
| 2462 | rsync -a $(VENDOR_RAMDISK_DIR)/ $(VENDOR_DEBUG_RAMDISK_DIR) |
| 2463 | $(MKBOOTFS) -d $(TARGET_OUT) $(VENDOR_DEBUG_RAMDISK_DIR) | $(MINIGZIP) > $@ |
| 2464 | |
| 2465 | INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk-debug.txt |
| 2466 | INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK:.txt=.json) |
| 2467 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK) |
| 2468 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): VENDOR_DEBUG_RAMDISK_DIR := $(PRODUCT_OUT)/vendor_debug_ramdisk |
| 2469 | |
| 2470 | # The vendor debug ramdisk will rsync from $(TARGET_VENDOR_RAMDISK_OUT) and $(INTERNAL_DEBUG_RAMDISK_FILES), |
| 2471 | # so we have to wait for the vendor debug ramdisk to be built before generating the installed file list. |
| 2472 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET) |
| 2473 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 2474 | echo Installed file list: $@ |
| 2475 | mkdir -p $(dir $@) |
| 2476 | rm -f $@ |
| 2477 | $(FILESLIST) $(VENDOR_DEBUG_RAMDISK_DIR) > $(@:.txt=.json) |
| 2478 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2479 | |
| 2480 | # ----------------------------------------------------------------- |
| 2481 | # vendor_boot-debug.img. |
| 2482 | INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-debug.img |
| 2483 | |
| 2484 | # The util to sign vendor_boot-debug.img with a test key. |
| 2485 | BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2486 | INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2487 | # $(1): the vendor bootimage to sign |
| 2488 | define test-key-sign-vendor-bootimage |
| 2489 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE))) |
| 2490 | $(AVBTOOL) add_hash_footer \ |
| 2491 | --image $(1) \ |
| 2492 | --partition_size $(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE) \ |
| 2493 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS) \ |
| 2494 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 2495 | $(call assert-max-image-size,$(1),$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2496 | endef |
| 2497 | |
| 2498 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 2499 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2500 | endif |
| 2501 | |
| 2502 | # Depends on vendor_boot.img and vendor-ramdisk-debug.cpio.gz to build the new vendor_boot-debug.img |
| 2503 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET) |
| 2504 | $(call pretty,"Target vendor_boot debug image: $@") |
| 2505 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET) --vendor_boot $@ |
| 2506 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2507 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 2508 | |
| 2509 | endif # BUILDING_RAMDISK_IMAGE |
| 2510 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 2511 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2512 | # ----------------------------------------------------------------- |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2513 | # The test harness ramdisk, which is based off debug_ramdisk, plus a |
| 2514 | # few additional test-harness-specific properties in adb_debug.prop. |
| 2515 | |
| 2516 | ifdef BUILDING_RAMDISK_IMAGE |
| 2517 | BUILT_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-test-harness.img |
| 2518 | INSTALLED_TEST_HARNESS_RAMDISK_TARGET := $(BUILT_TEST_HARNESS_RAMDISK_TARGET) |
| 2519 | |
| 2520 | # rsync the content from ramdisk-debug.img to ramdisk-test-harness.img, then |
| 2521 | # appends a few test harness specific properties into the adb_debug.prop. |
| 2522 | TEST_HARNESS_RAMDISK_SYNC_DIR := $(PRODUCT_OUT)/debug_ramdisk |
| 2523 | TEST_HARNESS_RAMDISK_ROOT_DIR := $(PRODUCT_OUT)/test_harness_ramdisk |
| 2524 | |
| 2525 | # The following TARGET_TEST_HARNESS_RAMDISK_OUT will be $(PRODUCT_OUT)/test_harness_ramdisk/first_stage_ramdisk, |
| 2526 | # if BOARD_USES_RECOVERY_AS_BOOT is true. Otherwise, it will be $(PRODUCT_OUT)/test_harness_ramdisk. |
| 2527 | TEST_HARNESS_PROP_TARGET := $(TARGET_TEST_HARNESS_RAMDISK_OUT)/adb_debug.prop |
| 2528 | ADDITIONAL_TEST_HARNESS_PROPERTIES := ro.audio.silent=1 |
| 2529 | ADDITIONAL_TEST_HARNESS_PROPERTIES += ro.test_harness=1 |
| 2530 | |
| 2531 | # $(1): a list of key=value pairs for additional property assignments |
| 2532 | # $(2): the target .prop file to append the properties from $(1) |
| 2533 | define append-test-harness-props |
| 2534 | echo "#" >> $(2); \ |
| 2535 | echo "# ADDITIONAL TEST HARNESS_PROPERTIES" >> $(2); \ |
| 2536 | echo "#" >> $(2); |
| 2537 | $(foreach line,$(1), echo "$(line)" >> $(2);) |
| 2538 | endef |
| 2539 | |
| 2540 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2541 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_TEST_HARNESS_RAMDISK_FILES) | $(MINIGZIP) |
| 2542 | $(call pretty,"Target test harness ram disk: $@") |
| 2543 | rsync -a $(TEST_HARNESS_RAMDISK_SYNC_DIR)/ $(TEST_HARNESS_RAMDISK_ROOT_DIR) |
| 2544 | $(call append-test-harness-props,$(ADDITIONAL_TEST_HARNESS_PROPERTIES),$(TEST_HARNESS_PROP_TARGET)) |
| 2545 | $(MKBOOTFS) -d $(TARGET_OUT) $(TEST_HARNESS_RAMDISK_ROOT_DIR) | $(MINIGZIP) > $@ |
| 2546 | |
| 2547 | .PHONY: ramdisk_test_harness-nodeps |
| 2548 | ramdisk_test_harness-nodeps: $(MKBOOTFS) | $(MINIGZIP) |
| 2549 | echo "make $@: ignoring dependencies" |
| 2550 | rsync -a $(TEST_HARNESS_RAMDISK_SYNC_DIR)/ $(TEST_HARNESS_RAMDISK_ROOT_DIR) |
| 2551 | $(call append-test-harness-props,$(ADDITIONAL_TEST_HARNESS_PROPERTIES),$(TEST_HARNESS_PROP_TARGET)) |
| 2552 | $(MKBOOTFS) -d $(TARGET_OUT) $(TEST_HARNESS_RAMDISK_ROOT_DIR) | $(MINIGZIP) > $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
| 2553 | |
| 2554 | endif # BUILDING_RAMDISK_IMAGE |
| 2555 | |
| 2556 | # ----------------------------------------------------------------- |
| 2557 | # the boot-test-harness.img, which is the kernel plus ramdisk-test-harness.img |
| 2558 | # |
| 2559 | # Note: it's intentional to skip signing for boot-test-harness.img, because it |
| 2560 | # can only be used if the device is unlocked with verification error. |
| 2561 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
| 2562 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2563 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 2564 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-test-harness,$(BOARD_KERNEL_BINARIES)), \ |
| 2565 | $(PRODUCT_OUT)/$(k).img) |
| 2566 | else |
| 2567 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-test-harness.img |
| 2568 | endif |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2569 | |
| 2570 | # Replace ramdisk-debug.img in $(MKBOOTIMG) ARGS with ramdisk-test-harness.img to build boot-test-harness.img |
| 2571 | INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS := $(subst $(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_DEBUG_BOOTIMAGE_ARGS)) |
| 2572 | |
| 2573 | # If boot.img is chained but boot-test-harness.img is not signed, libavb in bootloader |
| 2574 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2575 | # Using a test key to sign boot-test-harness.img to continue booting with the mismatched |
| 2576 | # public key, if the device is unlocked. |
| 2577 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
| 2578 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2579 | endif |
| 2580 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2581 | # $(1): output file |
| 2582 | define build-boot-test-harness-target |
| 2583 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-test-harness,kernel,$(notdir $(1)))) \ |
| 2584 | $(INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@ |
| 2585 | $(if $(BOARD_AVB_BOOT_KEY_PATH),$(call test-key-sign-bootimage,$@)) |
| 2586 | endef |
| 2587 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2588 | # Build the new boot-test-harness.img, based on boot-debug.img and ramdisk-test-harness.img. |
| 2589 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
| 2590 | $(call pretty,"Target boot test harness image: $@") |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2591 | $(call build-boot-test-harness-target,$@) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2592 | |
| 2593 | .PHONY: bootimage_test_harness-nodeps |
| 2594 | bootimage_test_harness-nodeps: $(MKBOOTIMG) |
| 2595 | echo "make $@: ignoring dependencies" |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2596 | $(foreach b,$(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET),$(call build-boot-test-harness-target,$b)) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2597 | |
| 2598 | endif # TARGET_NO_KERNEL |
| 2599 | endif # BOARD_BUILD_SYSTEM_ROOT_IMAGE is not true |
| 2600 | |
| 2601 | # ----------------------------------------------------------------- |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 2602 | # system image |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2603 | # |
Ying Wang | 9c649a7 | 2012-08-08 15:27:00 -0700 | [diff] [blame] | 2604 | # Remove overridden packages from $(ALL_PDK_FUSION_FILES) |
| 2605 | PDK_FUSION_SYSIMG_FILES := \ |
| 2606 | $(filter-out $(foreach p,$(overridden_packages),$(p) %/$(p).apk), \ |
| 2607 | $(ALL_PDK_FUSION_FILES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2608 | |
Dan Willemsen | 37a1986 | 2018-10-31 16:31:46 -0700 | [diff] [blame] | 2609 | INTERNAL_SYSTEMIMAGE_FILES := $(sort $(filter $(TARGET_OUT)/%, \ |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 2610 | $(ALL_GENERATED_SOURCES) \ |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2611 | $(ALL_DEFAULT_INSTALLED_MODULES) \ |
Bill Peckham | e868aec | 2019-09-17 17:06:47 -0700 | [diff] [blame] | 2612 | $(PDK_FUSION_SYSIMG_FILES)) \ |
Dan Willemsen | 37a1986 | 2018-10-31 16:31:46 -0700 | [diff] [blame] | 2613 | $(PDK_FUSION_SYMLINK_STAMP)) |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 2614 | |
Ying Wang | 82cceba | 2012-08-13 15:03:00 -0700 | [diff] [blame] | 2615 | FULL_SYSTEMIMAGE_DEPS := $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2616 | |
| 2617 | # ASAN libraries in the system image - add dependency. |
| 2618 | ASAN_IN_SYSTEM_INSTALLED := $(TARGET_OUT)/asan.tar.bz2 |
Evgenii Stepanov | 8841a7f | 2018-07-27 11:54:32 -0700 | [diff] [blame] | 2619 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2620 | ifeq (true,$(SANITIZE_TARGET_SYSTEM)) |
| 2621 | FULL_SYSTEMIMAGE_DEPS += $(ASAN_IN_SYSTEM_INSTALLED) |
| 2622 | endif |
| 2623 | endif |
| 2624 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 2625 | FULL_SYSTEMIMAGE_DEPS += $(INTERNAL_ROOT_FILES) $(INSTALLED_FILES_FILE_ROOT) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 2626 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2627 | # ----------------------------------------------------------------- |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2628 | ifdef BUILDING_SYSTEM_IMAGE |
| 2629 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2630 | # installed file list |
| 2631 | # Depending on anything that $(BUILT_SYSTEMIMAGE) depends on. |
| 2632 | # We put installed-files.txt ahead of image itself in the dependency graph |
| 2633 | # so that we can get the size stat even if the build fails due to too large |
| 2634 | # system image. |
| 2635 | INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 2636 | INSTALLED_FILES_JSON := $(INSTALLED_FILES_FILE:.txt=.json) |
| 2637 | $(INSTALLED_FILES_FILE): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2638 | $(INSTALLED_FILES_FILE): $(FULL_SYSTEMIMAGE_DEPS) $(FILESLIST) $(FILESLIST_UTIL) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2639 | @echo Installed file list: $@ |
| 2640 | @mkdir -p $(dir $@) |
| 2641 | @rm -f $@ |
Makoto Onuki | 9fe97e2 | 2017-03-16 09:41:19 -0700 | [diff] [blame] | 2642 | $(hide) $(FILESLIST) $(TARGET_OUT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2643 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2644 | |
| 2645 | .PHONY: installed-file-list |
| 2646 | installed-file-list: $(INSTALLED_FILES_FILE) |
Ying Wang | 534fcd7 | 2013-03-01 16:45:35 -0800 | [diff] [blame] | 2647 | |
| 2648 | $(call dist-for-goals, sdk win_sdk sdk_addon, $(INSTALLED_FILES_FILE)) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2649 | |
| 2650 | systemimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2651 | $(call intermediates-dir-for,PACKAGING,systemimage) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2652 | BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img |
| 2653 | |
Ying Wang | 23898df | 2014-06-18 20:26:24 -0700 | [diff] [blame] | 2654 | # Create symlink /system/vendor to /vendor if necessary. |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 2655 | ifdef BOARD_USES_VENDORIMAGE |
Ying Wang | 23898df | 2014-06-18 20:26:24 -0700 | [diff] [blame] | 2656 | define create-system-vendor-symlink |
Ying Wang | 3e72ed1 | 2014-07-17 12:56:49 -0700 | [diff] [blame] | 2657 | $(hide) if [ -d $(TARGET_OUT)/vendor ] && [ ! -h $(TARGET_OUT)/vendor ]; then \ |
| 2658 | echo 'Non-symlink $(TARGET_OUT)/vendor detected!' 1>&2; \ |
| 2659 | echo 'You cannot install files to $(TARGET_OUT)/vendor while building a separate vendor.img!' 1>&2; \ |
| 2660 | exit 1; \ |
| 2661 | fi |
Ying Wang | 23898df | 2014-06-18 20:26:24 -0700 | [diff] [blame] | 2662 | $(hide) ln -sf /vendor $(TARGET_OUT)/vendor |
| 2663 | endef |
| 2664 | else |
| 2665 | define create-system-vendor-symlink |
| 2666 | endef |
| 2667 | endif |
| 2668 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2669 | # Create symlink /system/product to /product if necessary. |
| 2670 | ifdef BOARD_USES_PRODUCTIMAGE |
| 2671 | define create-system-product-symlink |
| 2672 | $(hide) if [ -d $(TARGET_OUT)/product ] && [ ! -h $(TARGET_OUT)/product ]; then \ |
| 2673 | echo 'Non-symlink $(TARGET_OUT)/product detected!' 1>&2; \ |
| 2674 | echo 'You cannot install files to $(TARGET_OUT)/product while building a separate product.img!' 1>&2; \ |
| 2675 | exit 1; \ |
| 2676 | fi |
| 2677 | $(hide) ln -sf /product $(TARGET_OUT)/product |
| 2678 | endef |
| 2679 | else |
| 2680 | define create-system-product-symlink |
| 2681 | endef |
| 2682 | endif |
| 2683 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2684 | # Create symlink /system/system_ext to /system_ext if necessary. |
| 2685 | ifdef BOARD_USES_SYSTEM_EXTIMAGE |
| 2686 | define create-system-system_ext-symlink |
| 2687 | $(hide) if [ -d $(TARGET_OUT)/system_ext ] && [ ! -h $(TARGET_OUT)/system_ext ]; then \ |
| 2688 | echo 'Non-symlink $(TARGET_OUT)/system_ext detected!' 1>&2; \ |
| 2689 | echo 'You cannot install files to $(TARGET_OUT)/system_ext while building a separate system_ext.img!' 1>&2; \ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2690 | exit 1; \ |
| 2691 | fi |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2692 | $(hide) ln -sf /system_ext $(TARGET_OUT)/system_ext |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2693 | endef |
| 2694 | else |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2695 | define create-system-system_ext-symlink |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2696 | endef |
| 2697 | endif |
| 2698 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2699 | # $(1): output file |
| 2700 | define build-systemimage-target |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2701 | @echo "Target system fs image: $(1)" |
Ying Wang | 23898df | 2014-06-18 20:26:24 -0700 | [diff] [blame] | 2702 | $(call create-system-vendor-symlink) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2703 | $(call create-system-product-symlink) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2704 | $(call create-system-system_ext-symlink) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2705 | @mkdir -p $(dir $(1)) $(systemimage_intermediates) && rm -rf $(systemimage_intermediates)/system_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2706 | $(call generate-image-prop-dictionary, $(systemimage_intermediates)/system_image_info.txt,system, \ |
Geremy Condra | 5b5f495 | 2014-05-05 22:19:37 -0700 | [diff] [blame] | 2707 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 2708 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2709 | $(BUILD_IMAGE) \ |
| 2710 | $(TARGET_OUT) $(systemimage_intermediates)/system_image_info.txt $(1) $(TARGET_OUT) \ |
| 2711 | || ( mkdir -p $${DIST_DIR}; \ |
| 2712 | cp $(INSTALLED_FILES_FILE) $${DIST_DIR}/installed-files-rescued.txt; \ |
| 2713 | exit 1 ) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2714 | endef |
| 2715 | |
Dan Willemsen | 6b72c73 | 2019-06-12 21:33:38 +0000 | [diff] [blame] | 2716 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 2717 | $(BUILT_SYSTEMIMAGE): $(BOARD_AVB_SYSTEM_KEY_PATH) |
| 2718 | endif |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2719 | $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2720 | $(call build-systemimage-target,$@) |
| 2721 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2722 | INSTALLED_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/system.img |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 2723 | SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2724 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2725 | # INSTALLED_SYSTEMIMAGE_TARGET used to be named INSTALLED_SYSTEMIMAGE. Create an alias for backward |
| 2726 | # compatibility, in case device-specific Makefiles still refer to the old name. |
| 2727 | INSTALLED_SYSTEMIMAGE := $(INSTALLED_SYSTEMIMAGE_TARGET) |
| 2728 | |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2729 | # The system partition needs room for the recovery image as well. We |
| 2730 | # now store the recovery image as a binary patch using the boot image |
| 2731 | # as the source (since they are very similar). Generate the patch so |
| 2732 | # we can see how big it's going to be, and include that in the system |
| 2733 | # image size check calculation. |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 2734 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
Sriram Raman | 1e96ac8 | 2009-07-24 13:52:32 -0700 | [diff] [blame] | 2735 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2736 | ifneq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2737 | ifneq (,$(filter true, $(BOARD_BUILD_SYSTEM_ROOT_IMAGE) $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO))) |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2738 | diff_tool := $(HOST_OUT_EXECUTABLES)/bsdiff |
| 2739 | else |
| 2740 | diff_tool := $(HOST_OUT_EXECUTABLES)/imgdiff |
| 2741 | endif |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2742 | intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch) |
| 2743 | RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2744 | $(RECOVERY_FROM_BOOT_PATCH): PRIVATE_DIFF_TOOL := $(diff_tool) |
| 2745 | $(RECOVERY_FROM_BOOT_PATCH): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2746 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 2747 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 2748 | $(diff_tool) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2749 | @echo "Construct recovery from boot" |
| 2750 | mkdir -p $(dir $@) |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2751 | $(PRIVATE_DIFF_TOOL) $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_RECOVERYIMAGE_TARGET) $@ |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2752 | else # $(BOARD_USES_FULL_RECOVERY_IMAGE) == true |
| 2753 | RECOVERY_FROM_BOOT_PATCH := $(INSTALLED_RECOVERYIMAGE_TARGET) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 2754 | endif # BOARD_USES_FULL_RECOVERY_IMAGE |
| 2755 | endif # INSTALLED_RECOVERYIMAGE_TARGET |
| 2756 | endif # INSTALLED_BOOTIMAGE_TARGET |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2757 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2758 | $(INSTALLED_SYSTEMIMAGE_TARGET): $(BUILT_SYSTEMIMAGE) $(RECOVERY_FROM_BOOT_PATCH) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2759 | @echo "Install system fs image: $@" |
| 2760 | $(copy-file-to-target) |
Yifan Hong | 8c3dce0 | 2019-04-09 17:03:57 +0000 | [diff] [blame] | 2761 | $(hide) $(call assert-max-image-size,$@ $(RECOVERY_FROM_BOOT_PATCH),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2762 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2763 | systemimage: $(INSTALLED_SYSTEMIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2764 | |
| 2765 | .PHONY: systemimage-nodeps snod |
| 2766 | systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \ |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 2767 | | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2768 | @echo "make $@: ignoring dependencies" |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2769 | $(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE_TARGET)) |
Yifan Hong | 8c3dce0 | 2019-04-09 17:03:57 +0000 | [diff] [blame] | 2770 | $(hide) $(call assert-max-image-size,$(INSTALLED_SYSTEMIMAGE_TARGET),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
Ying Wang | acf01ec | 2012-02-24 11:05:48 -0800 | [diff] [blame] | 2771 | ifeq (true,$(WITH_DEXPREOPT)) |
Dan Willemsen | 395358e | 2020-03-04 23:50:53 +0000 | [diff] [blame] | 2772 | $(warning Warning: with dexpreopt enabled, you may need a full rebuild.) |
Ying Wang | acf01ec | 2012-02-24 11:05:48 -0800 | [diff] [blame] | 2773 | endif |
| 2774 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2775 | endif # BUILDING_SYSTEM_IMAGE |
| 2776 | |
Anton Hansson | 30e061b | 2018-11-12 13:36:46 +0000 | [diff] [blame] | 2777 | .PHONY: sync syncsys |
| 2778 | sync syncsys: $(INTERNAL_SYSTEMIMAGE_FILES) |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 2779 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2780 | # ----------------------------------------------------------------- |
Ying Wang | 4534d81 | 2012-04-09 17:04:12 -0700 | [diff] [blame] | 2781 | ## platform.zip: system, plus other files to be used in PDK fusion build, |
| 2782 | ## in a zip file |
keunyoung | c017806 | 2013-07-22 14:54:58 -0700 | [diff] [blame] | 2783 | ## |
| 2784 | ## PDK_PLATFORM_ZIP_PRODUCT_BINARIES is used to store specified files to platform.zip. |
| 2785 | ## The variable will be typically set from BoardConfig.mk. |
| 2786 | ## Files under out dir will be rejected to prevent possible conflicts with other rules. |
Colin Cross | 53c8f97 | 2018-09-28 16:19:42 -0700 | [diff] [blame] | 2787 | ifneq (,$(BUILD_PLATFORM_ZIP)) |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2788 | pdk_odex_javalibs := $(strip $(foreach m,$(DEXPREOPT.MODULES.JAVA_LIBRARIES),\ |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 2789 | $(if $(filter $(DEXPREOPT.$(m).INSTALLED_STRIPPED),$(ALL_DEFAULT_INSTALLED_MODULES)),$(m)))) |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2790 | pdk_odex_apps := $(strip $(foreach m,$(DEXPREOPT.MODULES.APPS),\ |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 2791 | $(if $(filter $(DEXPREOPT.$(m).INSTALLED_STRIPPED),$(ALL_DEFAULT_INSTALLED_MODULES)),$(m)))) |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2792 | pdk_classes_dex := $(strip \ |
| 2793 | $(foreach m,$(pdk_odex_javalibs),$(call intermediates-dir-for,JAVA_LIBRARIES,$(m),,COMMON)/javalib.jar) \ |
Nicolas Geoffray | 2ca0e49 | 2019-10-18 14:47:19 +0100 | [diff] [blame] | 2794 | $(foreach m,$(pdk_odex_apps),$(call intermediates-dir-for,APPS,$(m))/package.apk)) |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2795 | |
| 2796 | pdk_odex_config_mk := $(PRODUCT_OUT)/pdk_dexpreopt_config.mk |
| 2797 | $(pdk_odex_config_mk): PRIVATE_JAVA_LIBRARIES := $(pdk_odex_javalibs) |
| 2798 | $(pdk_odex_config_mk): PRIVATE_APPS := $(pdk_odex_apps) |
| 2799 | $(pdk_odex_config_mk) : |
| 2800 | @echo "PDK odex config makefile: $@" |
| 2801 | $(hide) mkdir -p $(dir $@) |
| 2802 | $(hide) echo "# Auto-generated. Do not modify." > $@ |
| 2803 | $(hide) echo "PDK.DEXPREOPT.JAVA_LIBRARIES:=$(PRIVATE_JAVA_LIBRARIES)" >> $@ |
| 2804 | $(hide) echo "PDK.DEXPREOPT.APPS:=$(PRIVATE_APPS)" >> $@ |
| 2805 | $(foreach m,$(PRIVATE_JAVA_LIBRARIES),\ |
| 2806 | $(hide) echo "PDK.DEXPREOPT.$(m).SRC:=$(patsubst $(OUT_DIR)/%,%,$(call intermediates-dir-for,JAVA_LIBRARIES,$(m),,COMMON)/javalib.jar)" >> $@$(newline)\ |
| 2807 | $(hide) echo "PDK.DEXPREOPT.$(m).DEX_PREOPT:=$(DEXPREOPT.$(m).DEX_PREOPT)" >> $@$(newline)\ |
| 2808 | $(hide) echo "PDK.DEXPREOPT.$(m).MULTILIB:=$(DEXPREOPT.$(m).MULTILIB)" >> $@$(newline)\ |
| 2809 | $(hide) echo "PDK.DEXPREOPT.$(m).DEX_PREOPT_FLAGS:=$(DEXPREOPT.$(m).DEX_PREOPT_FLAGS)" >> $@$(newline)\ |
| 2810 | ) |
| 2811 | $(foreach m,$(PRIVATE_APPS),\ |
Nicolas Geoffray | 2ca0e49 | 2019-10-18 14:47:19 +0100 | [diff] [blame] | 2812 | $(hide) echo "PDK.DEXPREOPT.$(m).SRC:=$(patsubst $(OUT_DIR)/%,%,$(call intermediates-dir-for,APPS,$(m))/package.apk)" >> $@$(newline)\ |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2813 | $(hide) echo "PDK.DEXPREOPT.$(m).DEX_PREOPT:=$(DEXPREOPT.$(m).DEX_PREOPT)" >> $@$(newline)\ |
| 2814 | $(hide) echo "PDK.DEXPREOPT.$(m).MULTILIB:=$(DEXPREOPT.$(m).MULTILIB)" >> $@$(newline)\ |
| 2815 | $(hide) echo "PDK.DEXPREOPT.$(m).DEX_PREOPT_FLAGS:=$(DEXPREOPT.$(m).DEX_PREOPT_FLAGS)" >> $@$(newline)\ |
| 2816 | $(hide) echo "PDK.DEXPREOPT.$(m).PRIVILEGED_MODULE:=$(DEXPREOPT.$(m).PRIVILEGED_MODULE)" >> $@$(newline)\ |
Dan Willemsen | 05a2b93 | 2017-03-20 18:31:17 -0700 | [diff] [blame] | 2817 | $(hide) echo "PDK.DEXPREOPT.$(m).VENDOR_MODULE:=$(DEXPREOPT.$(m).VENDOR_MODULE)" >> $@$(newline)\ |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2818 | $(hide) echo "PDK.DEXPREOPT.$(m).TARGET_ARCH:=$(DEXPREOPT.$(m).TARGET_ARCH)" >> $@$(newline)\ |
| 2819 | $(hide) echo "PDK.DEXPREOPT.$(m).STRIPPED_SRC:=$(patsubst $(PRODUCT_OUT)/%,%,$(DEXPREOPT.$(m).INSTALLED_STRIPPED))" >> $@$(newline)\ |
| 2820 | ) |
| 2821 | |
keunyoung | c017806 | 2013-07-22 14:54:58 -0700 | [diff] [blame] | 2822 | PDK_PLATFORM_ZIP_PRODUCT_BINARIES := $(filter-out $(OUT_DIR)/%,$(PDK_PLATFORM_ZIP_PRODUCT_BINARIES)) |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 2823 | INSTALLED_PLATFORM_ZIP := $(PRODUCT_OUT)/platform.zip |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2824 | |
| 2825 | $(INSTALLED_PLATFORM_ZIP): PRIVATE_DEX_FILES := $(pdk_classes_dex) |
| 2826 | $(INSTALLED_PLATFORM_ZIP): PRIVATE_ODEX_CONFIG := $(pdk_odex_config_mk) |
Colin Cross | 7363cde | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 2827 | $(INSTALLED_PLATFORM_ZIP) : $(SOONG_ZIP) |
| 2828 | # dependencies for the other partitions are defined below after their file lists |
| 2829 | # are known |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 2830 | $(INSTALLED_PLATFORM_ZIP) : $(INTERNAL_SYSTEMIMAGE_FILES) $(pdk_classes_dex) $(pdk_odex_config_mk) $(API_FINGERPRINT) |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 2831 | $(call pretty,"Platform zip package: $(INSTALLED_PLATFORM_ZIP)") |
Colin Cross | 7363cde | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 2832 | rm -f $@ $@.lst |
| 2833 | echo "-C $(PRODUCT_OUT)" >> $@.lst |
| 2834 | echo "-D $(TARGET_OUT)" >> $@.lst |
| 2835 | echo "-D $(TARGET_OUT_NOTICE_FILES)" >> $@.lst |
| 2836 | echo "$(addprefix -f $(TARGET_OUT_UNSTRIPPED)/,$(PDK_SYMBOL_FILES_LIST))" >> $@.lst |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2837 | ifdef BUILDING_VENDOR_IMAGE |
Colin Cross | 7363cde | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 2838 | echo "-D $(TARGET_OUT_VENDOR)" >> $@.lst |
Ying Wang | cff3862 | 2014-07-16 17:46:35 -0700 | [diff] [blame] | 2839 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2840 | ifdef BUILDING_PRODUCT_IMAGE |
Colin Cross | 7363cde | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 2841 | echo "-D $(TARGET_OUT_PRODUCT)" >> $@.lst |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2842 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2843 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 2844 | echo "-D $(TARGET_OUT_SYSTEM_EXT)" >> $@.lst |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2845 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2846 | ifdef BUILDING_ODM_IMAGE |
Colin Cross | 7363cde | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 2847 | echo "-D $(TARGET_OUT_ODM)" >> $@.lst |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2848 | endif |
Colin Cross | c451a37 | 2013-12-18 19:36:44 -0800 | [diff] [blame] | 2849 | ifneq ($(PDK_PLATFORM_JAVA_ZIP_CONTENTS),) |
Colin Cross | 7363cde | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 2850 | echo "-C $(OUT_DIR)" >> $@.lst |
| 2851 | for f in $(filter-out $(PRIVATE_DEX_FILES),$(addprefix -f $(OUT_DIR)/,$(PDK_PLATFORM_JAVA_ZIP_CONTENTS))); do \ |
| 2852 | if [ -e $$f ]; then \ |
| 2853 | echo "-f $$f"; \ |
| 2854 | fi \ |
| 2855 | done >> $@.lst |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 2856 | endif |
keunyoung | c017806 | 2013-07-22 14:54:58 -0700 | [diff] [blame] | 2857 | ifneq ($(PDK_PLATFORM_ZIP_PRODUCT_BINARIES),) |
Colin Cross | 7363cde | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 2858 | echo "-C . $(addprefix -f ,$(PDK_PLATFORM_ZIP_PRODUCT_BINARIES))" >> $@.lst |
keunyoung | c017806 | 2013-07-22 14:54:58 -0700 | [diff] [blame] | 2859 | endif |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2860 | @# Add dex-preopt files and config. |
Colin Cross | 7363cde | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 2861 | $(if $(PRIVATE_DEX_FILES),\ |
| 2862 | echo "-C $(OUT_DIR) $(addprefix -f ,$(PRIVATE_DEX_FILES))") >> $@.lst |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 2863 | echo "-C $(dir $(API_FINGERPRINT)) -f $(API_FINGERPRINT)" >> $@.lst |
Colin Cross | 7363cde | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 2864 | touch $(PRODUCT_OUT)/pdk.mk |
| 2865 | echo "-C $(PRODUCT_OUT) -f $(PRIVATE_ODEX_CONFIG) -f $(PRODUCT_OUT)/pdk.mk" >> $@.lst |
| 2866 | $(SOONG_ZIP) --ignore_missing_files -o $@ @$@.lst |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 2867 | |
| 2868 | .PHONY: platform |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 2869 | platform: $(INSTALLED_PLATFORM_ZIP) |
| 2870 | |
| 2871 | .PHONY: platform-java |
| 2872 | platform-java: platform |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 2873 | |
| 2874 | # Dist the platform.zip |
Keun young Park | 3e93aea | 2012-05-29 17:55:46 -0700 | [diff] [blame] | 2875 | ifneq (,$(filter platform platform-java, $(MAKECMDGOALS))) |
| 2876 | $(call dist-for-goals, platform platform-java, $(INSTALLED_PLATFORM_ZIP)) |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 2877 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2878 | |
Colin Cross | 53c8f97 | 2018-09-28 16:19:42 -0700 | [diff] [blame] | 2879 | endif # BUILD_PLATFORM_ZIP |
| 2880 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2881 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2882 | # data partition image |
| 2883 | INTERNAL_USERDATAIMAGE_FILES := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2884 | $(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2885 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2886 | ifdef BUILDING_USERDATA_IMAGE |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2887 | userdataimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2888 | $(call intermediates-dir-for,PACKAGING,userdata) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 2889 | BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img |
| 2890 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2891 | define build-userdataimage-target |
| 2892 | $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)") |
| 2893 | @mkdir -p $(TARGET_OUT_DATA) |
| 2894 | @mkdir -p $(userdataimage_intermediates) && rm -rf $(userdataimage_intermediates)/userdata_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2895 | $(call generate-image-prop-dictionary, $(userdataimage_intermediates)/userdata_image_info.txt,userdata,skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 2896 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2897 | $(BUILD_IMAGE) \ |
| 2898 | $(TARGET_OUT_DATA) $(userdataimage_intermediates)/userdata_image_info.txt \ |
| 2899 | $(INSTALLED_USERDATAIMAGE_TARGET) $(TARGET_OUT) |
| 2900 | $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2901 | endef |
| 2902 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 2903 | # We just build this directly to the install location. |
| 2904 | INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2905 | INSTALLED_USERDATAIMAGE_TARGET_DEPS := \ |
| 2906 | $(INTERNAL_USERIMAGES_DEPS) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2907 | $(INTERNAL_USERDATAIMAGE_FILES) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2908 | $(INSTALLED_USERDATAIMAGE_TARGET): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2909 | $(build-userdataimage-target) |
| 2910 | |
| 2911 | .PHONY: userdataimage-nodeps |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 2912 | userdataimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2913 | $(build-userdataimage-target) |
| 2914 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2915 | endif # BUILDING_USERDATA_IMAGE |
Ying Wang | e215ed5 | 2012-10-15 14:36:22 -0700 | [diff] [blame] | 2916 | |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2917 | # ASAN libraries in the system image - build rule. |
| 2918 | ASAN_OUT_DIRS_FOR_SYSTEM_INSTALL := $(sort $(patsubst $(PRODUCT_OUT)/%,%,\ |
| 2919 | $(TARGET_OUT_SHARED_LIBRARIES) \ |
| 2920 | $(2ND_TARGET_OUT_SHARED_LIBRARIES) \ |
| 2921 | $(TARGET_OUT_VENDOR_SHARED_LIBRARIES) \ |
| 2922 | $(2ND_TARGET_OUT_VENDOR_SHARED_LIBRARIES))) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 2923 | # Extra options: Enforce the system user for the files to avoid having to change ownership. |
| 2924 | ASAN_SYSTEM_INSTALL_OPTIONS := --owner=1000 --group=1000 |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2925 | # Note: experimentally, it seems not worth it to try to get "best" compression. We don't save |
| 2926 | # enough space. |
| 2927 | $(ASAN_IN_SYSTEM_INSTALLED): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 2928 | tar cfj $(ASAN_IN_SYSTEM_INSTALLED) $(ASAN_SYSTEM_INSTALL_OPTIONS) -C $(TARGET_OUT_DATA)/.. $(ASAN_OUT_DIRS_FOR_SYSTEM_INSTALL) >/dev/null |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2929 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2930 | # ----------------------------------------------------------------- |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2931 | # partition table image |
| 2932 | ifdef BOARD_BPT_INPUT_FILES |
| 2933 | |
| 2934 | BUILT_BPTIMAGE_TARGET := $(PRODUCT_OUT)/partition-table.img |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 2935 | BUILT_BPTJSON_TARGET := $(PRODUCT_OUT)/partition-table.bpt |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2936 | |
| 2937 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS := \ |
| 2938 | --output_gpt $(BUILT_BPTIMAGE_TARGET) \ |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 2939 | --output_json $(BUILT_BPTJSON_TARGET) \ |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2940 | $(foreach file, $(BOARD_BPT_INPUT_FILES), --input $(file)) |
| 2941 | |
| 2942 | ifdef BOARD_BPT_DISK_SIZE |
| 2943 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS += --disk_size $(BOARD_BPT_DISK_SIZE) |
| 2944 | endif |
| 2945 | |
| 2946 | define build-bptimage-target |
| 2947 | $(call pretty,"Target partition table image: $(INSTALLED_BPTIMAGE_TARGET)") |
| 2948 | $(hide) $(BPTTOOL) make_table $(INTERNAL_BVBTOOL_MAKE_TABLE_ARGS) $(BOARD_BPT_MAKE_TABLE_ARGS) |
| 2949 | endef |
| 2950 | |
| 2951 | INSTALLED_BPTIMAGE_TARGET := $(BUILT_BPTIMAGE_TARGET) |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 2952 | $(BUILT_BPTJSON_TARGET): $(INSTALLED_BPTIMAGE_TARGET) |
| 2953 | $(hide) touch -c $(BUILT_BPTJSON_TARGET) |
| 2954 | |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2955 | $(INSTALLED_BPTIMAGE_TARGET): $(BPTTOOL) $(BOARD_BPT_INPUT_FILES) |
| 2956 | $(build-bptimage-target) |
| 2957 | |
| 2958 | .PHONY: bptimage-nodeps |
| 2959 | bptimage-nodeps: |
| 2960 | $(build-bptimage-target) |
| 2961 | |
| 2962 | endif # BOARD_BPT_INPUT_FILES |
| 2963 | |
| 2964 | # ----------------------------------------------------------------- |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2965 | # cache partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2966 | ifdef BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2967 | INTERNAL_CACHEIMAGE_FILES := \ |
| 2968 | $(filter $(TARGET_OUT_CACHE)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2969 | |
| 2970 | cacheimage_intermediates := \ |
| 2971 | $(call intermediates-dir-for,PACKAGING,cache) |
| 2972 | BUILT_CACHEIMAGE_TARGET := $(PRODUCT_OUT)/cache.img |
| 2973 | |
| 2974 | define build-cacheimage-target |
| 2975 | $(call pretty,"Target cache fs image: $(INSTALLED_CACHEIMAGE_TARGET)") |
| 2976 | @mkdir -p $(TARGET_OUT_CACHE) |
| 2977 | @mkdir -p $(cacheimage_intermediates) && rm -rf $(cacheimage_intermediates)/cache_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2978 | $(call generate-image-prop-dictionary, $(cacheimage_intermediates)/cache_image_info.txt,cache,skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 2979 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2980 | $(BUILD_IMAGE) \ |
| 2981 | $(TARGET_OUT_CACHE) $(cacheimage_intermediates)/cache_image_info.txt \ |
| 2982 | $(INSTALLED_CACHEIMAGE_TARGET) $(TARGET_OUT) |
| 2983 | $(call assert-max-image-size,$(INSTALLED_CACHEIMAGE_TARGET),$(BOARD_CACHEIMAGE_PARTITION_SIZE)) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2984 | endef |
| 2985 | |
| 2986 | # We just build this directly to the install location. |
| 2987 | INSTALLED_CACHEIMAGE_TARGET := $(BUILT_CACHEIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2988 | $(INSTALLED_CACHEIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2989 | $(build-cacheimage-target) |
| 2990 | |
| 2991 | .PHONY: cacheimage-nodeps |
| 2992 | cacheimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 2993 | $(build-cacheimage-target) |
| 2994 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2995 | else # BUILDING_CACHE_IMAGE |
Patrick Tjin | f3b0dc2 | 2016-05-13 15:26:09 -0700 | [diff] [blame] | 2996 | # we need to ignore the broken cache link when doing the rsync |
| 2997 | IGNORE_CACHE_LINK := --exclude=cache |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2998 | endif # BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2999 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 3000 | # ----------------------------------------------------------------- |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3001 | # system_other partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3002 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3003 | ifeq ($(BOARD_USES_SYSTEM_OTHER_ODEX),true) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3004 | # Marker file to identify that odex files are installed |
| 3005 | INSTALLED_SYSTEM_OTHER_ODEX_MARKER := $(TARGET_OUT_SYSTEM_OTHER)/system-other-odex-marker |
| 3006 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER) |
| 3007 | $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER): |
| 3008 | $(hide) touch $@ |
| 3009 | endif |
| 3010 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3011 | INTERNAL_SYSTEMOTHERIMAGE_FILES := \ |
| 3012 | $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,\ |
| 3013 | $(ALL_DEFAULT_INSTALLED_MODULES)\ |
Dan Willemsen | 0663f68 | 2018-03-06 14:07:21 -0800 | [diff] [blame] | 3014 | $(ALL_PDK_FUSION_FILES)) \ |
| 3015 | $(PDK_FUSION_SYMLINK_STAMP) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3016 | |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 3017 | # system_other dex files are installed as a side-effect of installing system image files |
| 3018 | INTERNAL_SYSTEMOTHERIMAGE_FILES += $(INTERNAL_SYSTEMIMAGE_FILES) |
| 3019 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3020 | INSTALLED_FILES_FILE_SYSTEMOTHER := $(PRODUCT_OUT)/installed-files-system-other.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3021 | INSTALLED_FILES_JSON_SYSTEMOTHER := $(INSTALLED_FILES_FILE_SYSTEMOTHER:.txt=.json) |
| 3022 | $(INSTALLED_FILES_FILE_SYSTEMOTHER): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEMOTHER) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3023 | $(INSTALLED_FILES_FILE_SYSTEMOTHER) : $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3024 | @echo Installed file list: $@ |
| 3025 | @mkdir -p $(dir $@) |
| 3026 | @rm -f $@ |
Makoto Onuki | 9fe97e2 | 2017-03-16 09:41:19 -0700 | [diff] [blame] | 3027 | $(hide) $(FILESLIST) $(TARGET_OUT_SYSTEM_OTHER) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3028 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3029 | |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 3030 | # Determines partition size for system_other.img. |
| 3031 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 3032 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)),) |
| 3033 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE := $(BOARD_SUPER_PARTITION_SYSTEM_DEVICE_SIZE) |
| 3034 | endif |
| 3035 | endif |
| 3036 | |
| 3037 | ifndef INTERNAL_SYSTEM_OTHER_PARTITION_SIZE |
| 3038 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE:= $(BOARD_SYSTEMIMAGE_PARTITION_SIZE) |
| 3039 | endif |
| 3040 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3041 | systemotherimage_intermediates := \ |
| 3042 | $(call intermediates-dir-for,PACKAGING,system_other) |
| 3043 | BUILT_SYSTEMOTHERIMAGE_TARGET := $(PRODUCT_OUT)/system_other.img |
| 3044 | |
| 3045 | # Note that we assert the size is SYSTEMIMAGE_PARTITION_SIZE since this is the 'b' system image. |
| 3046 | define build-systemotherimage-target |
| 3047 | $(call pretty,"Target system_other fs image: $(INSTALLED_SYSTEMOTHERIMAGE_TARGET)") |
| 3048 | @mkdir -p $(TARGET_OUT_SYSTEM_OTHER) |
| 3049 | @mkdir -p $(systemotherimage_intermediates) && rm -rf $(systemotherimage_intermediates)/system_other_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3050 | $(call generate-image-prop-dictionary, $(systemotherimage_intermediates)/system_other_image_info.txt,system,skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3051 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3052 | $(BUILD_IMAGE) \ |
| 3053 | $(TARGET_OUT_SYSTEM_OTHER) $(systemotherimage_intermediates)/system_other_image_info.txt \ |
| 3054 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) $(TARGET_OUT) |
| 3055 | $(call assert-max-image-size,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3056 | endef |
| 3057 | |
| 3058 | # We just build this directly to the install location. |
| 3059 | INSTALLED_SYSTEMOTHERIMAGE_TARGET := $(BUILT_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3060 | ifneq (true,$(SANITIZE_LITE)) |
| 3061 | # Only create system_other when not building the second stage of a SANITIZE_LITE build. |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3062 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEMOTHER) |
| 3063 | $(build-systemotherimage-target) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3064 | endif |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3065 | |
| 3066 | .PHONY: systemotherimage-nodeps |
| 3067 | systemotherimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 3068 | $(build-systemotherimage-target) |
| 3069 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3070 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3071 | |
| 3072 | |
| 3073 | # ----------------------------------------------------------------- |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3074 | # vendor partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3075 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3076 | INTERNAL_VENDORIMAGE_FILES := \ |
Ying Wang | cff3862 | 2014-07-16 17:46:35 -0700 | [diff] [blame] | 3077 | $(filter $(TARGET_OUT_VENDOR)/%,\ |
| 3078 | $(ALL_DEFAULT_INSTALLED_MODULES)\ |
Dan Willemsen | 0663f68 | 2018-03-06 14:07:21 -0800 | [diff] [blame] | 3079 | $(ALL_PDK_FUSION_FILES)) \ |
| 3080 | $(PDK_FUSION_SYMLINK_STAMP) |
Ying Wang | cff3862 | 2014-07-16 17:46:35 -0700 | [diff] [blame] | 3081 | |
| 3082 | # platform.zip depends on $(INTERNAL_VENDORIMAGE_FILES). |
| 3083 | $(INSTALLED_PLATFORM_ZIP) : $(INTERNAL_VENDORIMAGE_FILES) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3084 | |
Ying Wang | 8da19e3 | 2015-09-15 14:22:12 -0700 | [diff] [blame] | 3085 | INSTALLED_FILES_FILE_VENDOR := $(PRODUCT_OUT)/installed-files-vendor.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3086 | INSTALLED_FILES_JSON_VENDOR := $(INSTALLED_FILES_FILE_VENDOR:.txt=.json) |
| 3087 | $(INSTALLED_FILES_FILE_VENDOR): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3088 | $(INSTALLED_FILES_FILE_VENDOR) : $(INTERNAL_VENDORIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Ying Wang | 8da19e3 | 2015-09-15 14:22:12 -0700 | [diff] [blame] | 3089 | @echo Installed file list: $@ |
| 3090 | @mkdir -p $(dir $@) |
| 3091 | @rm -f $@ |
Makoto Onuki | 9fe97e2 | 2017-03-16 09:41:19 -0700 | [diff] [blame] | 3092 | $(hide) $(FILESLIST) $(TARGET_OUT_VENDOR) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3093 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Ying Wang | 8da19e3 | 2015-09-15 14:22:12 -0700 | [diff] [blame] | 3094 | |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 3095 | # Create symlink /vendor/odm to /odm if necessary. |
| 3096 | ifdef BOARD_USES_ODMIMAGE |
| 3097 | define create-vendor-odm-symlink |
| 3098 | $(hide) if [ -d $(TARGET_OUT_VENDOR)/odm ] && [ ! -h $(TARGET_OUT_VENDOR)/odm ]; then \ |
| 3099 | echo 'Non-symlink $(TARGET_OUT_VENDOR)/odm detected!' 1>&2; \ |
| 3100 | echo 'You cannot install files to $(TARGET_OUT_VENDOR)/odm while building a separate odm.img!' 1>&2; \ |
| 3101 | exit 1; \ |
| 3102 | fi |
| 3103 | $(hide) ln -sf /odm $(TARGET_OUT_VENDOR)/odm |
| 3104 | endef |
| 3105 | else |
| 3106 | define create-vendor-odm-symlink |
| 3107 | endef |
| 3108 | endif |
| 3109 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3110 | vendorimage_intermediates := \ |
| 3111 | $(call intermediates-dir-for,PACKAGING,vendor) |
| 3112 | BUILT_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3113 | define build-vendorimage-target |
| 3114 | $(call pretty,"Target vendor fs image: $(INSTALLED_VENDORIMAGE_TARGET)") |
| 3115 | @mkdir -p $(TARGET_OUT_VENDOR) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3116 | $(call create-vendor-odm-symlink) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3117 | @mkdir -p $(vendorimage_intermediates) && rm -rf $(vendorimage_intermediates)/vendor_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3118 | $(call generate-image-prop-dictionary, $(vendorimage_intermediates)/vendor_image_info.txt,vendor,skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3119 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3120 | $(BUILD_IMAGE) \ |
| 3121 | $(TARGET_OUT_VENDOR) $(vendorimage_intermediates)/vendor_image_info.txt \ |
| 3122 | $(INSTALLED_VENDORIMAGE_TARGET) $(TARGET_OUT) |
| 3123 | $(call assert-max-image-size,$(INSTALLED_VENDORIMAGE_TARGET),$(BOARD_VENDORIMAGE_PARTITION_SIZE)) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3124 | endef |
| 3125 | |
| 3126 | # We just build this directly to the install location. |
| 3127 | INSTALLED_VENDORIMAGE_TARGET := $(BUILT_VENDORIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3128 | $(INSTALLED_VENDORIMAGE_TARGET): \ |
| 3129 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3130 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 3131 | $(INSTALLED_FILES_FILE_VENDOR) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3132 | $(build-vendorimage-target) |
| 3133 | |
Steven Moreland | a2e734d | 2017-03-07 12:10:09 -0800 | [diff] [blame] | 3134 | .PHONY: vendorimage-nodeps vnod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3135 | vendorimage-nodeps vnod: | $(INTERNAL_USERIMAGES_DEPS) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3136 | $(build-vendorimage-target) |
| 3137 | |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 3138 | sync: $(INTERNAL_VENDORIMAGE_FILES) |
| 3139 | |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 3140 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 3141 | INSTALLED_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
| 3142 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDORIMAGE),$(INSTALLED_VENDORIMAGE_TARGET))) |
| 3143 | endif |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3144 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3145 | # ----------------------------------------------------------------- |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3146 | # product partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3147 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3148 | INTERNAL_PRODUCTIMAGE_FILES := \ |
| 3149 | $(filter $(TARGET_OUT_PRODUCT)/%,\ |
| 3150 | $(ALL_DEFAULT_INSTALLED_MODULES)\ |
Dan Willemsen | 0663f68 | 2018-03-06 14:07:21 -0800 | [diff] [blame] | 3151 | $(ALL_PDK_FUSION_FILES)) \ |
| 3152 | $(PDK_FUSION_SYMLINK_STAMP) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3153 | |
| 3154 | # platform.zip depends on $(INTERNAL_PRODUCTIMAGE_FILES). |
| 3155 | $(INSTALLED_PLATFORM_ZIP) : $(INTERNAL_PRODUCTIMAGE_FILES) |
| 3156 | |
| 3157 | INSTALLED_FILES_FILE_PRODUCT := $(PRODUCT_OUT)/installed-files-product.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3158 | INSTALLED_FILES_JSON_PRODUCT := $(INSTALLED_FILES_FILE_PRODUCT:.txt=.json) |
| 3159 | $(INSTALLED_FILES_FILE_PRODUCT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_PRODUCT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3160 | $(INSTALLED_FILES_FILE_PRODUCT) : $(INTERNAL_PRODUCTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3161 | @echo Installed file list: $@ |
| 3162 | @mkdir -p $(dir $@) |
| 3163 | @rm -f $@ |
| 3164 | $(hide) $(FILESLIST) $(TARGET_OUT_PRODUCT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3165 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3166 | |
| 3167 | productimage_intermediates := \ |
| 3168 | $(call intermediates-dir-for,PACKAGING,product) |
| 3169 | BUILT_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3170 | define build-productimage-target |
| 3171 | $(call pretty,"Target product fs image: $(INSTALLED_PRODUCTIMAGE_TARGET)") |
| 3172 | @mkdir -p $(TARGET_OUT_PRODUCT) |
| 3173 | @mkdir -p $(productimage_intermediates) && rm -rf $(productimage_intermediates)/product_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3174 | $(call generate-image-prop-dictionary, $(productimage_intermediates)/product_image_info.txt,product,skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3175 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3176 | $(BUILD_IMAGE) \ |
| 3177 | $(TARGET_OUT_PRODUCT) $(productimage_intermediates)/product_image_info.txt \ |
| 3178 | $(INSTALLED_PRODUCTIMAGE_TARGET) $(TARGET_OUT) |
| 3179 | $(call assert-max-image-size,$(INSTALLED_PRODUCTIMAGE_TARGET),$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3180 | endef |
| 3181 | |
| 3182 | # We just build this directly to the install location. |
| 3183 | INSTALLED_PRODUCTIMAGE_TARGET := $(BUILT_PRODUCTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3184 | $(INSTALLED_PRODUCTIMAGE_TARGET): \ |
| 3185 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3186 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 3187 | $(INSTALLED_FILES_FILE_PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3188 | $(build-productimage-target) |
| 3189 | |
| 3190 | .PHONY: productimage-nodeps pnod |
| 3191 | productimage-nodeps pnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3192 | $(build-productimage-target) |
| 3193 | |
| 3194 | sync: $(INTERNAL_PRODUCTIMAGE_FILES) |
| 3195 | |
| 3196 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 3197 | INSTALLED_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3198 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_PRODUCTIMAGE),$(INSTALLED_PRODUCTIMAGE_TARGET))) |
| 3199 | endif |
| 3200 | |
| 3201 | # ----------------------------------------------------------------- |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3202 | # system_ext partition image |
| 3203 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3204 | INTERNAL_SYSTEM_EXTIMAGE_FILES := \ |
| 3205 | $(filter $(TARGET_OUT_SYSTEM_EXT)/%,\ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3206 | $(ALL_DEFAULT_INSTALLED_MODULES)\ |
| 3207 | $(ALL_PDK_FUSION_FILES)) \ |
| 3208 | $(PDK_FUSION_SYMLINK_STAMP) |
| 3209 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3210 | # platform.zip depends on $(INTERNAL_SYSTEM_EXTIMAGE_FILES). |
| 3211 | $(INSTALLED_PLATFORM_ZIP) : $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3212 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3213 | INSTALLED_FILES_FILE_SYSTEM_EXT := $(PRODUCT_OUT)/installed-files-system_ext.txt |
| 3214 | INSTALLED_FILES_JSON_SYSTEM_EXT := $(INSTALLED_FILES_FILE_SYSTEM_EXT:.txt=.json) |
| 3215 | $(INSTALLED_FILES_FILE_SYSTEM_EXT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_EXT) |
| 3216 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) : $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3217 | @echo Installed file list: $@ |
| 3218 | @mkdir -p $(dir $@) |
| 3219 | @rm -f $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3220 | $(hide) $(FILESLIST) $(TARGET_OUT_SYSTEM_EXT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3221 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3222 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3223 | system_extimage_intermediates := \ |
| 3224 | $(call intermediates-dir-for,PACKAGING,system_ext) |
| 3225 | BUILT_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3226 | define build-system_extimage-target |
| 3227 | $(call pretty,"Target system_ext fs image: $(INSTALLED_SYSTEM_EXTIMAGE_TARGET)") |
| 3228 | @mkdir -p $(TARGET_OUT_SYSTEM_EXT) |
| 3229 | @mkdir -p $(system_extimage_intermediates) && rm -rf $(system_extimage_intermediates)/system_ext_image_info.txt |
| 3230 | $(call generate-image-prop-dictionary, $(system_extimage_intermediates)/system_ext_image_info.txt,system_ext, skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3231 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3232 | $(BUILD_IMAGE) \ |
| 3233 | $(TARGET_OUT_SYSTEM_EXT) \ |
| 3234 | $(system_extimage_intermediates)/system_ext_image_info.txt \ |
| 3235 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 3236 | $(TARGET_OUT) |
| 3237 | $(call assert-max-image-size,$(INSTALLED_PRODUCT_SERVICESIMAGE_TARGET),$(BOARD_PRODUCT_SERVICESIMAGE_PARTITION_SIZE)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3238 | endef |
| 3239 | |
| 3240 | # We just build this directly to the install location. |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3241 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(BUILT_SYSTEM_EXTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3242 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET): \ |
| 3243 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3244 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 3245 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3246 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3247 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3248 | .PHONY: systemextimage-nodeps senod |
| 3249 | systemextimage-nodeps senod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3250 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3251 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3252 | sync: $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3253 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3254 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 3255 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3256 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_SYSTEM_EXTIMAGE),$(INSTALLED_SYSTEM_EXTIMAGE_TARGET))) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3257 | endif |
| 3258 | |
| 3259 | # ----------------------------------------------------------------- |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3260 | # odm partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3261 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3262 | INTERNAL_ODMIMAGE_FILES := \ |
| 3263 | $(filter $(TARGET_OUT_ODM)/%,\ |
| 3264 | $(ALL_DEFAULT_INSTALLED_MODULES)\ |
| 3265 | $(ALL_PDK_FUSION_FILES)) \ |
| 3266 | $(PDK_FUSION_SYMLINK_STAMP) |
| 3267 | # platform.zip depends on $(INTERNAL_ODMIMAGE_FILES). |
| 3268 | $(INSTALLED_PLATFORM_ZIP) : $(INTERNAL_ODMIMAGE_FILES) |
| 3269 | |
| 3270 | INSTALLED_FILES_FILE_ODM := $(PRODUCT_OUT)/installed-files-odm.txt |
| 3271 | INSTALLED_FILES_JSON_ODM := $(INSTALLED_FILES_FILE_ODM:.txt=.json) |
| 3272 | $(INSTALLED_FILES_FILE_ODM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3273 | $(INSTALLED_FILES_FILE_ODM) : $(INTERNAL_ODMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3274 | @echo Installed file list: $@ |
| 3275 | @mkdir -p $(dir $@) |
| 3276 | @rm -f $@ |
| 3277 | $(hide) $(FILESLIST) $(TARGET_OUT_ODM) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3278 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3279 | |
| 3280 | odmimage_intermediates := \ |
| 3281 | $(call intermediates-dir-for,PACKAGING,odm) |
| 3282 | BUILT_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3283 | define build-odmimage-target |
| 3284 | $(call pretty,"Target odm fs image: $(INSTALLED_ODMIMAGE_TARGET)") |
| 3285 | @mkdir -p $(TARGET_OUT_ODM) |
| 3286 | @mkdir -p $(odmimage_intermediates) && rm -rf $(odmimage_intermediates)/odm_image_info.txt |
| 3287 | $(call generate-userimage-prop-dictionary, $(odmimage_intermediates)/odm_image_info.txt, skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3288 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3289 | $(BUILD_IMAGE) \ |
| 3290 | $(TARGET_OUT_ODM) $(odmimage_intermediates)/odm_image_info.txt \ |
| 3291 | $(INSTALLED_ODMIMAGE_TARGET) $(TARGET_OUT) |
| 3292 | $(call assert-max-image-size,$(INSTALLED_ODMIMAGE_TARGET),$(BOARD_ODMIMAGE_PARTITION_SIZE)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3293 | endef |
| 3294 | |
| 3295 | # We just build this directly to the install location. |
| 3296 | INSTALLED_ODMIMAGE_TARGET := $(BUILT_ODMIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3297 | $(INSTALLED_ODMIMAGE_TARGET): \ |
| 3298 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3299 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 3300 | $(INSTALLED_FILES_FILE_ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3301 | $(build-odmimage-target) |
| 3302 | |
| 3303 | .PHONY: odmimage-nodeps onod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3304 | odmimage-nodeps onod: | $(INTERNAL_USERIMAGES_DEPS) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3305 | $(build-odmimage-target) |
| 3306 | |
| 3307 | sync: $(INTERNAL_ODMIMAGE_FILES) |
| 3308 | |
| 3309 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 3310 | INSTALLED_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3311 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODMIMAGE),$(INSTALLED_ODMIMAGE_TARGET))) |
| 3312 | endif |
| 3313 | |
| 3314 | # ----------------------------------------------------------------- |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3315 | # dtbo image |
| 3316 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 3317 | INSTALLED_DTBOIMAGE_TARGET := $(PRODUCT_OUT)/dtbo.img |
| 3318 | |
| 3319 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3320 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) $(AVBTOOL) $(BOARD_AVB_DTBO_KEY_PATH) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3321 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 3322 | $(AVBTOOL) add_hash_footer \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3323 | --image $@ \ |
| 3324 | --partition_size $(BOARD_DTBOIMG_PARTITION_SIZE) \ |
| 3325 | --partition_name dtbo $(INTERNAL_AVB_DTBO_SIGNING_ARGS) \ |
| 3326 | $(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3327 | else |
| 3328 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) |
| 3329 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 3330 | endif |
| 3331 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3332 | endif # BOARD_PREBUILT_DTBOIMAGE |
| 3333 | |
| 3334 | # Returns a list of image targets corresponding to the given list of partitions. For example, it |
| 3335 | # returns "$(INSTALLED_PRODUCTIMAGE_TARGET)" for "product", or "$(INSTALLED_SYSTEMIMAGE_TARGET) |
| 3336 | # $(INSTALLED_VENDORIMAGE_TARGET)" for "system vendor". |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3337 | # (1): list of partitions like "system", "vendor" or "system product system_ext". |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3338 | define images-for-partitions |
| 3339 | $(strip $(foreach item,$(1),$(INSTALLED_$(call to-upper,$(item))IMAGE_TARGET))) |
| 3340 | endef |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3341 | |
| 3342 | # ----------------------------------------------------------------- |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3343 | # vbmeta image |
| 3344 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3345 | |
| 3346 | BUILT_VBMETAIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta.img |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3347 | AVB_CHAIN_KEY_DIR := $(TARGET_OUT_INTERMEDIATES)/avb_chain_keys |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3348 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3349 | ifdef BOARD_AVB_KEY_PATH |
| 3350 | $(if $(BOARD_AVB_ALGORITHM),,$(error BOARD_AVB_ALGORITHM is not defined)) |
| 3351 | else |
| 3352 | # If key path isn't specified, use the 4096-bit test key. |
| 3353 | BOARD_AVB_ALGORITHM := SHA256_RSA4096 |
| 3354 | BOARD_AVB_KEY_PATH := external/avb/test/data/testkey_rsa4096.pem |
| 3355 | endif |
| 3356 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 3357 | # AVB signing for system_other.img. |
| 3358 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 3359 | ifdef BOARD_AVB_SYSTEM_OTHER_KEY_PATH |
| 3360 | $(if $(BOARD_AVB_SYSTEM_OTHER_ALGORITHM),,$(error BOARD_AVB_SYSTEM_OTHER_ALGORITHM is not defined)) |
| 3361 | else |
| 3362 | # If key path isn't specified, use the same key as BOARD_AVB_KEY_PATH. |
| 3363 | BOARD_AVB_SYSTEM_OTHER_KEY_PATH := $(BOARD_AVB_KEY_PATH) |
| 3364 | BOARD_AVB_SYSTEM_OTHER_ALGORITHM := $(BOARD_AVB_ALGORITHM) |
| 3365 | endif |
| 3366 | |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 3367 | $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET): $(AVBTOOL) $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) |
| 3368 | @echo Extracting system_other avb key: $@ |
| 3369 | @rm -f $@ |
| 3370 | @mkdir -p $(dir $@) |
| 3371 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) --output $@ |
Bowgo Tsai | 45db7ce | 2019-01-30 14:53:57 +0800 | [diff] [blame] | 3372 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 3373 | ifndef BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX |
| 3374 | BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX := $(PLATFORM_SECURITY_PATCH_TIMESTAMP) |
| 3375 | endif |
| 3376 | |
| 3377 | BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS += --rollback_index $(BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX) |
| 3378 | endif # end of AVB for BUILDING_SYSTEM_OTHER_IMAGE |
| 3379 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3380 | INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES := \ |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3381 | $(BOARD_AVB_VBMETA_SYSTEM) \ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3382 | $(BOARD_AVB_VBMETA_VENDOR) |
| 3383 | |
| 3384 | # Not allowing the same partition to appear in multiple groups. |
| 3385 | ifneq ($(words $(sort $(INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES))),$(words $(INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES))) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3386 | $(error BOARD_AVB_VBMETA_SYSTEM and BOARD_AVB_VBMETA_VENDOR cannot have duplicates) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3387 | endif |
| 3388 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3389 | # When building a standalone recovery image for non-A/B devices, recovery image must be self-signed |
| 3390 | # to be verified independently, and cannot be chained into vbmeta.img. See the link below for |
| 3391 | # details. |
| 3392 | ifneq ($(AB_OTA_UPDATER),true) |
| 3393 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 3394 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),,\ |
| 3395 | $(error BOARD_AVB_RECOVERY_KEY_PATH must be defined for non-A/B devices. \ |
| 3396 | See https://android.googlesource.com/platform/external/avb/+/master/README.md#booting-into-recovery)) |
| 3397 | endif |
| 3398 | endif |
| 3399 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3400 | # Appends os version and security patch level as a AVB property descriptor |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3401 | |
| 3402 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3403 | --prop com.android.build.system.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3404 | --prop com.android.build.system.os_version:$(PLATFORM_VERSION) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3405 | --prop com.android.build.system.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 3406 | |
| 3407 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3408 | --prop com.android.build.product.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3409 | --prop com.android.build.product.os_version:$(PLATFORM_VERSION) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3410 | --prop com.android.build.product.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 3411 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3412 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3413 | --prop com.android.build.system_ext.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3414 | --prop com.android.build.system_ext.os_version:$(PLATFORM_VERSION) \ |
| 3415 | --prop com.android.build.system_ext.security_patch:$(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3416 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3417 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3418 | --prop com.android.build.boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3419 | --prop com.android.build.boot.os_version:$(PLATFORM_VERSION) |
| 3420 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3421 | BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 3422 | --prop com.android.build.vendor_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 3423 | |
| 3424 | BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS += \ |
| 3425 | --prop com.android.build.recovery.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 3426 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3427 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3428 | --prop com.android.build.vendor.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3429 | --prop com.android.build.vendor.os_version:$(PLATFORM_VERSION) |
| 3430 | |
| 3431 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3432 | --prop com.android.build.odm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3433 | --prop com.android.build.odm.os_version:$(PLATFORM_VERSION) |
| 3434 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3435 | BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS += \ |
| 3436 | --prop com.android.build.dtbo.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 3437 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3438 | # The following vendor- and odm-specific images needs explicit SPL set per board. |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3439 | ifdef BOOT_SECURITY_PATCH |
| 3440 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 3441 | --prop com.android.build.boot.security_patch:$(BOOT_SECURITY_PATCH) |
| 3442 | endif |
| 3443 | |
| 3444 | ifdef VENDOR_SECURITY_PATCH |
| 3445 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3446 | --prop com.android.build.vendor.security_patch:$(VENDOR_SECURITY_PATCH) |
| 3447 | endif |
| 3448 | |
| 3449 | ifdef ODM_SECURITY_PATCH |
| 3450 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3451 | --prop com.android.build.odm.security_patch:$(ODM_SECURITY_PATCH) |
| 3452 | endif |
| 3453 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3454 | BOOT_FOOTER_ARGS := BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3455 | VENDOR_BOOT_FOOTER_ARGS := BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3456 | DTBO_FOOTER_ARGS := BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS |
| 3457 | SYSTEM_FOOTER_ARGS := BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS |
| 3458 | VENDOR_FOOTER_ARGS := BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3459 | RECOVERY_FOOTER_ARGS := BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3460 | PRODUCT_FOOTER_ARGS := BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3461 | SYSTEM_EXT_FOOTER_ARGS := BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3462 | ODM_FOOTER_ARGS := BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3463 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3464 | # Helper function that checks and sets required build variables for an AVB chained partition. |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3465 | # $(1): the partition to enable AVB chain, e.g., boot or system or vbmeta_system. |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3466 | define _check-and-set-avb-chain-args |
| 3467 | $(eval part := $(1)) |
| 3468 | $(eval PART=$(call to-upper,$(part))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3469 | |
| 3470 | $(eval _key_path := BOARD_AVB_$(PART)_KEY_PATH) |
| 3471 | $(eval _signing_algorithm := BOARD_AVB_$(PART)_ALGORITHM) |
| 3472 | $(eval _rollback_index := BOARD_AVB_$(PART)_ROLLBACK_INDEX) |
| 3473 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 3474 | $(if $($(_key_path)),,$(error $(_key_path) is not defined)) |
| 3475 | $(if $($(_signing_algorithm)),,$(error $(_signing_algorithm) is not defined)) |
| 3476 | $(if $($(_rollback_index)),,$(error $(_rollback_index) is not defined)) |
| 3477 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 3478 | |
| 3479 | # Set INTERNAL_AVB_(PART)_SIGNING_ARGS |
| 3480 | $(eval _signing_args := INTERNAL_AVB_$(PART)_SIGNING_ARGS) |
| 3481 | $(eval $(_signing_args) := \ |
| 3482 | --algorithm $($(_signing_algorithm)) --key $($(_key_path))) |
| 3483 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3484 | # The recovery partition in non-A/B devices should be verified separately. Skip adding the chain |
| 3485 | # partition descriptor for recovery partition into vbmeta.img. |
| 3486 | $(if $(or $(filter true,$(AB_OTA_UPDATER)),$(filter-out recovery,$(part))),\ |
| 3487 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3488 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3489 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3490 | # Set rollback_index via footer args for non-chained vbmeta image. Chained vbmeta image will pick up |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3491 | # the index via a separate flag (e.g. BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX). |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3492 | $(if $(filter $(part),$(part:vbmeta_%=%)),\ |
| 3493 | $(eval _footer_args := $(PART)_FOOTER_ARGS) \ |
| 3494 | $(eval $($(_footer_args)) += --rollback_index $($(_rollback_index)))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3495 | endef |
| 3496 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3497 | # Checks and sets the required build variables for an AVB partition. The partition will be |
| 3498 | # configured as a chained partition, if BOARD_AVB_<partition>_KEY_PATH is defined. Otherwise the |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3499 | # image descriptor will be included into vbmeta.img, unless it has been already added to any chained |
| 3500 | # VBMeta image. |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3501 | # $(1): Partition name, e.g. boot or system. |
| 3502 | define check-and-set-avb-args |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3503 | $(eval _in_chained_vbmeta := $(filter $(1),$(INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3504 | $(if $(BOARD_AVB_$(call to-upper,$(1))_KEY_PATH),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3505 | $(if $(_in_chained_vbmeta),\ |
| 3506 | $(error Chaining partition "$(1)" in chained VBMeta image is not supported)) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3507 | $(call _check-and-set-avb-chain-args,$(1)),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3508 | $(if $(_in_chained_vbmeta),,\ |
| 3509 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3510 | --include_descriptors_from_image $(call images-for-partitions,$(1))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3511 | endef |
| 3512 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3513 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3514 | $(eval $(call check-and-set-avb-args,boot)) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3515 | endif |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3516 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3517 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 3518 | $(eval $(call check-and-set-avb-args,vendor_boot)) |
| 3519 | endif |
| 3520 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3521 | $(eval $(call check-and-set-avb-args,system)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3522 | |
| 3523 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3524 | $(eval $(call check-and-set-avb-args,vendor)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3525 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3526 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3527 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3528 | $(eval $(call check-and-set-avb-args,product)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3529 | endif |
| 3530 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3531 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 3532 | $(eval $(call check-and-set-avb-args,system_ext)) |
Tao Bao | cee6d04 | 2018-08-22 23:39:03 -0700 | [diff] [blame] | 3533 | endif |
| 3534 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3535 | ifdef INSTALLED_ODMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3536 | $(eval $(call check-and-set-avb-args,odm)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3537 | endif |
| 3538 | |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3539 | ifdef INSTALLED_DTBOIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3540 | $(eval $(call check-and-set-avb-args,dtbo)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3541 | endif |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3542 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3543 | ifdef INSTALLED_RECOVERYIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3544 | $(eval $(call check-and-set-avb-args,recovery)) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3545 | endif |
Bowgo Tsai | 53cf999 | 2017-06-13 11:27:06 +0800 | [diff] [blame] | 3546 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3547 | # Not using INSTALLED_VBMETA_SYSTEMIMAGE_TARGET as it won't be set yet. |
| 3548 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 3549 | $(eval $(call check-and-set-avb-args,vbmeta_system)) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3550 | endif |
| 3551 | |
| 3552 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 3553 | $(eval $(call check-and-set-avb-args,vbmeta_vendor)) |
| 3554 | endif |
| 3555 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3556 | # Add kernel cmdline descriptor for kernel to mount system.img as root with |
| 3557 | # dm-verity. This works when system.img is either chained or not-chained: |
| 3558 | # - chained: The --setup_as_rootfs_from_kernel option will add dm-verity kernel |
| 3559 | # cmdline descriptor to system.img |
| 3560 | # - not-chained: The --include_descriptors_from_image option for make_vbmeta_image |
| 3561 | # will include the kernel cmdline descriptor from system.img into vbmeta.img |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3562 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
David Anderson | 8916a2a | 2018-09-18 15:46:59 -0700 | [diff] [blame] | 3563 | ifeq ($(filter system, $(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3564 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += --setup_as_rootfs_from_kernel |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3565 | endif |
David Anderson | 8916a2a | 2018-09-18 15:46:59 -0700 | [diff] [blame] | 3566 | endif |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3567 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3568 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --padding_size 4096 |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3569 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += --padding_size 4096 |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3570 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += --padding_size 4096 |
| 3571 | |
| 3572 | ifeq (eng,$(filter eng, $(TARGET_BUILD_VARIANT))) |
Tao Bao | 240dcb8 | 2018-10-22 13:02:53 -0700 | [diff] [blame] | 3573 | # We only need the flag in top-level vbmeta.img. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3574 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --set_hashtree_disabled_flag |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3575 | endif |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3576 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3577 | ifdef BOARD_AVB_ROLLBACK_INDEX |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3578 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --rollback_index $(BOARD_AVB_ROLLBACK_INDEX) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3579 | endif |
| 3580 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3581 | ifdef BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX |
| 3582 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += \ |
| 3583 | --rollback_index $(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3584 | endif |
| 3585 | |
| 3586 | ifdef BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX |
| 3587 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += \ |
| 3588 | --rollback_index $(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX) |
John Reck | 0588b43 | 2018-05-03 13:20:01 -0700 | [diff] [blame] | 3589 | endif |
| 3590 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3591 | # $(1): the directory to extract public keys to |
| 3592 | define extract-avb-chain-public-keys |
| 3593 | $(if $(BOARD_AVB_BOOT_KEY_PATH),\ |
| 3594 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_BOOT_KEY_PATH) \ |
| 3595 | --output $(1)/boot.avbpubkey) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3596 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),\ |
| 3597 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_BOOT_KEY_PATH) \ |
| 3598 | --output $(1)/vendor_boot.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3599 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 3600 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_KEY_PATH) \ |
| 3601 | --output $(1)/system.avbpubkey) |
| 3602 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 3603 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KEY_PATH) \ |
| 3604 | --output $(1)/vendor.avbpubkey) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3605 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 3606 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PRODUCT_KEY_PATH) \ |
| 3607 | --output $(1)/product.avbpubkey) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3608 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 3609 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_EXT_KEY_PATH) \ |
| 3610 | --output $(1)/system_ext.avbpubkey) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3611 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 3612 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_KEY_PATH) \ |
| 3613 | --output $(1)/odm.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3614 | $(if $(BOARD_AVB_DTBO_KEY_PATH),\ |
| 3615 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_DTBO_KEY_PATH) \ |
| 3616 | --output $(1)/dtbo.avbpubkey) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3617 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),\ |
| 3618 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_RECOVERY_KEY_PATH) \ |
| 3619 | --output $(1)/recovery.avbpubkey) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3620 | $(if $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH),\ |
| 3621 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 3622 | --output $(1)/vbmeta_system.avbpubkey) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3623 | $(if $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH),\ |
| 3624 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 3625 | --output $(1)/vbmeta_vendor.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3626 | endef |
| 3627 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3628 | # Builds a chained VBMeta image. This VBMeta image will contain the descriptors for the partitions |
| 3629 | # specified in BOARD_AVB_VBMETA_<NAME>. The built VBMeta image will be included into the top-level |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3630 | # vbmeta image as a chained partition. For example, if a target defines `BOARD_AVB_VBMETA_SYSTEM |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3631 | # := system system_ext`, `vbmeta_system.img` will be created that includes the descriptors for |
| 3632 | # `system.img` and `system_ext.img`. `vbmeta_system.img` itself will be included into |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3633 | # `vbmeta.img` as a chained partition. |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3634 | # $(1): VBMeta image name, such as "vbmeta_system", "vbmeta_vendor" etc. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3635 | # $(2): Output filename. |
| 3636 | define build-chained-vbmeta-image |
| 3637 | $(call pretty,"Target chained vbmeta image: $@") |
| 3638 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 3639 | $(INTERNAL_AVB_$(call to-upper,$(1))_SIGNING_ARGS) \ |
| 3640 | $(BOARD_AVB_MAKE_$(call to-upper,$(1))_IMAGE_ARGS) \ |
| 3641 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(1))), \ |
| 3642 | --include_descriptors_from_image $(call images-for-partitions,$(image))) \ |
| 3643 | --output $@ |
| 3644 | endef |
| 3645 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 3646 | ifdef BUILDING_SYSTEM_IMAGE |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3647 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 3648 | INSTALLED_VBMETA_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_system.img |
| 3649 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3650 | $(AVBTOOL) \ |
| 3651 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_SYSTEM)) \ |
| 3652 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3653 | $(call build-chained-vbmeta-image,vbmeta_system) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3654 | endif |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 3655 | endif # BUILDING_SYSTEM_IMAGE |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3656 | |
| 3657 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 3658 | INSTALLED_VBMETA_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_vendor.img |
| 3659 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3660 | $(AVBTOOL) \ |
| 3661 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_VENDOR)) \ |
| 3662 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3663 | $(call build-chained-vbmeta-image,vbmeta_vendor) |
| 3664 | endif |
| 3665 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3666 | define build-vbmetaimage-target |
| 3667 | $(call pretty,"Target vbmeta image: $(INSTALLED_VBMETAIMAGE_TARGET)") |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3668 | $(hide) mkdir -p $(AVB_CHAIN_KEY_DIR) |
| 3669 | $(call extract-avb-chain-public-keys, $(AVB_CHAIN_KEY_DIR)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3670 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 3671 | $(INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3672 | $(PRIVATE_AVB_VBMETA_SIGNING_ARGS) \ |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3673 | $(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
| 3674 | --output $@ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3675 | $(hide) rm -rf $(AVB_CHAIN_KEY_DIR) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3676 | endef |
| 3677 | |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 3678 | ifdef BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3679 | INSTALLED_VBMETAIMAGE_TARGET := $(BUILT_VBMETAIMAGE_TARGET) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3680 | $(INSTALLED_VBMETAIMAGE_TARGET): PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 3681 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
| 3682 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3683 | $(INSTALLED_VBMETAIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3684 | $(AVBTOOL) \ |
| 3685 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3686 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3687 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 3688 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 3689 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3690 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3691 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 3692 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
| 3693 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 3694 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) \ |
| 3695 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) \ |
| 3696 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 3697 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 3698 | $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3699 | $(build-vbmetaimage-target) |
| 3700 | |
| 3701 | .PHONY: vbmetaimage-nodeps |
Bowgo Tsai | 6a4eaa5 | 2019-12-09 15:48:09 +0800 | [diff] [blame] | 3702 | vbmetaimage-nodeps: PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 3703 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3704 | vbmetaimage-nodeps: |
| 3705 | $(build-vbmetaimage-target) |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 3706 | endif # BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3707 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3708 | endif # BOARD_AVB_ENABLE |
| 3709 | |
| 3710 | # ----------------------------------------------------------------- |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3711 | # Check VINTF of build |
| 3712 | |
| 3713 | ifndef TARGET_BUILD_APPS |
| 3714 | intermediates := $(call intermediates-dir-for,PACKAGING,check_vintf_all) |
| 3715 | check_vintf_all_deps := |
| 3716 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3717 | # The build system only writes VINTF metadata to */etc/vintf paths. Legacy paths aren't needed here |
| 3718 | # because they are only used for prebuilt images. |
| 3719 | check_vintf_common_srcs_patterns := \ |
| 3720 | $(TARGET_OUT)/etc/vintf/% \ |
| 3721 | $(TARGET_OUT_VENDOR)/etc/vintf/% \ |
| 3722 | $(TARGET_OUT_ODM)/etc/vintf/% \ |
| 3723 | $(TARGET_OUT_PRODUCT)/etc/vintf/% \ |
| 3724 | $(TARGET_OUT_SYSTEM_EXT)/etc/vintf/% \ |
| 3725 | |
| 3726 | check_vintf_common_srcs := $(sort $(filter $(check_vintf_common_srcs_patterns), \ |
| 3727 | $(INTERNAL_SYSTEMIMAGE_FILES) \ |
| 3728 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 3729 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 3730 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 3731 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 3732 | )) |
| 3733 | check_vintf_common_srcs_patterns := |
| 3734 | |
| 3735 | check_vintf_has_system := |
| 3736 | check_vintf_has_vendor := |
| 3737 | |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3738 | ifneq (,$(filter EMPTY_ODM_SKU_PLACEHOLDER,$(ODM_MANIFEST_SKUS))) |
| 3739 | $(error EMPTY_ODM_SKU_PLACEHOLDER is an internal variable and cannot be used for ODM_MANIFEST_SKUS) |
| 3740 | endif |
| 3741 | ifneq (,$(filter EMPTY_VENDOR_SKU_PLACEHOLDER,$(DEVICE_MANIFEST_SKUS))) |
| 3742 | $(error EMPTY_VENDOR_SKU_PLACEHOLDER is an internal variable and cannot be used for DEIVCE_MANIFEST_SKUS) |
| 3743 | endif |
| 3744 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3745 | # -- Check system manifest / matrix including fragments (excluding other framework manifests / matrices, e.g. product); |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3746 | check_vintf_system_deps := $(filter $(TARGET_OUT)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 3747 | ifneq ($(check_vintf_system_deps),) |
| 3748 | check_vintf_has_system := true |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3749 | check_vintf_system_log := $(intermediates)/check_vintf_system_log |
| 3750 | check_vintf_all_deps += $(check_vintf_system_log) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3751 | $(check_vintf_system_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_system_deps) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3752 | @( $< --check-one --dirmap /system:$(TARGET_OUT) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
| 3753 | check_vintf_system_log := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3754 | endif # check_vintf_system_deps |
| 3755 | check_vintf_system_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3756 | |
| 3757 | # -- Check vendor manifest / matrix including fragments (excluding other device manifests / matrices) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3758 | check_vintf_vendor_deps := $(filter $(TARGET_OUT_VENDOR)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 3759 | ifneq ($(check_vintf_vendor_deps),) |
| 3760 | check_vintf_has_vendor := true |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3761 | check_vintf_vendor_log := $(intermediates)/check_vintf_vendor_log |
| 3762 | check_vintf_all_deps += $(check_vintf_vendor_log) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3763 | # Check vendor SKU=(empty) case when: |
| 3764 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 3765 | # - DEVICE_MANIFEST_FILE is empty AND DEVICE_MANIFEST_SKUS is empty (only vendor manifest fragments are used) |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3766 | $(check_vintf_vendor_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3767 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 3768 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3769 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3770 | $(check_vintf_vendor_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_vendor_deps) |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3771 | $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 3772 | ( $< --check-one --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 3773 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 3774 | > $@ 2>&1 ) || ( cat $@ && exit 1 ); ) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3775 | check_vintf_vendor_log := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3776 | endif # check_vintf_vendor_deps |
| 3777 | check_vintf_vendor_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3778 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3779 | # -- Check VINTF compatibility of build. |
| 3780 | # Skip partial builds; only check full builds. Only check if: |
| 3781 | # - PRODUCT_ENFORCE_VINTF_MANIFEST is true |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3782 | # - system / vendor VINTF metadata exists |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3783 | # - Building product / system_ext / odm images if board has product / system_ext / odm images |
| 3784 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3785 | ifeq ($(check_vintf_has_system),true) |
| 3786 | ifeq ($(check_vintf_has_vendor),true) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3787 | ifeq ($(filter true,$(BUILDING_ODM_IMAGE)),$(filter true,$(BOARD_USES_ODMIMAGE))) |
| 3788 | ifeq ($(filter true,$(BUILDING_PRODUCT_IMAGE)),$(filter true,$(BOARD_USES_PRODUCTIMAGE))) |
| 3789 | ifeq ($(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),$(filter true,$(BOARD_USES_SYSTEM_EXTIMAGE))) |
| 3790 | |
| 3791 | check_vintf_compatible_log := $(intermediates)/check_vintf_compatible_log |
| 3792 | check_vintf_all_deps += $(check_vintf_compatible_log) |
| 3793 | |
| 3794 | check_vintf_compatible_args := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3795 | check_vintf_compatible_deps := $(check_vintf_common_srcs) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3796 | |
| 3797 | # -- Kernel version and configurations. |
| 3798 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
| 3799 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3800 | BUILT_KERNEL_CONFIGS_FILE := $(intermediates)/kernel_configs.txt |
| 3801 | BUILT_KERNEL_VERSION_FILE := $(intermediates)/kernel_version.txt |
| 3802 | |
| 3803 | my_board_extracted_kernel := |
| 3804 | |
| 3805 | # BOARD_KERNEL_CONFIG_FILE and BOARD_KERNEL_VERSION can be used to override the values extracted |
| 3806 | # from INSTALLED_KERNEL_TARGET. |
| 3807 | ifdef BOARD_KERNEL_CONFIG_FILE |
| 3808 | ifdef BOARD_KERNEL_VERSION |
| 3809 | $(BUILT_KERNEL_CONFIGS_FILE): $(BOARD_KERNEL_CONFIG_FILE) |
| 3810 | cp $< $@ |
| 3811 | $(BUILT_KERNEL_VERSION_FILE): |
| 3812 | echo $(BOARD_KERNEL_VERSION) > $@ |
| 3813 | |
| 3814 | my_board_extracted_kernel := true |
| 3815 | endif # BOARD_KERNEL_VERSION |
| 3816 | endif # BOARD_KERNEL_CONFIG_FILE |
| 3817 | |
| 3818 | ifneq ($(my_board_extracted_kernel),true) |
| 3819 | ifndef INSTALLED_KERNEL_TARGET |
| 3820 | $(warning No INSTALLED_KERNEL_TARGET is defined when PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS \ |
| 3821 | is true. Information about the updated kernel cannot be built into OTA update package. \ |
| 3822 | You can fix this by: (1) setting TARGET_NO_KERNEL to false and installing the built kernel \ |
| 3823 | to $(PRODUCT_OUT)/kernel, so that kernel information will be extracted from the built kernel; \ |
| 3824 | or (2) extracting kernel configuration and defining BOARD_KERNEL_CONFIG_FILE and \ |
| 3825 | BOARD_KERNEL_VERSION manually; or (3) unsetting PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS \ |
| 3826 | manually.) |
| 3827 | else |
| 3828 | |
| 3829 | # Tools for decompression that is not in PATH. |
| 3830 | # Check $(EXTRACT_KERNEL) for decompression algorithms supported by the script. |
| 3831 | # Algorithms that are in the script but not in this list will be found in PATH. |
| 3832 | my_decompress_tools := \ |
| 3833 | lz4:$(HOST_OUT_EXECUTABLES)/lz4 \ |
| 3834 | |
| 3835 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 3836 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 3837 | $(BUILT_KERNEL_CONFIGS_FILE): $(foreach pair,$(my_decompress_tools),$(call word-colon,2,$(pair))) |
| 3838 | $(BUILT_KERNEL_CONFIGS_FILE): $(EXTRACT_KERNEL) $(INSTALLED_KERNEL_TARGET) |
| 3839 | $< --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(INSTALLED_KERNEL_TARGET) \ |
| 3840 | --output-configs $@ \ |
| 3841 | --output-version $(BUILT_KERNEL_VERSION_FILE) |
| 3842 | |
| 3843 | my_decompress_tools := |
| 3844 | |
| 3845 | endif # my_board_extracted_kernel |
| 3846 | my_board_extracted_kernel := |
| 3847 | |
| 3848 | endif # INSTALLED_KERNEL_TARGET |
| 3849 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3850 | check_vintf_compatible_args += --kernel $$(cat $(BUILT_KERNEL_VERSION_FILE)):$(BUILT_KERNEL_CONFIGS_FILE) |
| 3851 | check_vintf_compatible_deps += $(BUILT_KERNEL_CONFIGS_FILE) $(BUILT_KERNEL_VERSION_FILE) |
| 3852 | |
| 3853 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 3854 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3855 | check_vintf_compatible_args += \ |
| 3856 | --dirmap /system:$(TARGET_OUT) \ |
| 3857 | --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 3858 | --dirmap /odm:$(TARGET_OUT_ODM) \ |
| 3859 | --dirmap /product:$(TARGET_OUT_PRODUCT) \ |
| 3860 | --dirmap /system_ext:$(TARGET_OUT_SYSTEM_EXT) \ |
| 3861 | |
| 3862 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 3863 | check_vintf_compatible_args += --property ro.product.first_api_level=$(PRODUCT_SHIPPING_API_LEVEL) |
| 3864 | endif # PRODUCT_SHIPPING_API_LEVEL |
| 3865 | |
| 3866 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_ARGS := $(check_vintf_compatible_args) |
| 3867 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_DEPS := $(check_vintf_compatible_deps) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3868 | # Check ODM SKU=(empty) case when: |
| 3869 | # - ODM_MANIFEST_FILES is not empty; OR |
| 3870 | # - ODM_MANIFEST_FILES is empty AND ODM_MANIFEST_SKUS is empty (only ODM manifest fragments are used) |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3871 | $(check_vintf_compatible_log): PRIVATE_ODM_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3872 | $(if $(ODM_MANIFEST_FILES),EMPTY_ODM_SKU_PLACEHOLDER,\ |
| 3873 | $(if $(ODM_MANIFEST_SKUS),,EMPTY_ODM_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3874 | $(ODM_MANIFEST_SKUS) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3875 | # Check vendor SKU=(empty) case when: |
| 3876 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 3877 | # - DEVICE_MANIFEST_FILE is empty AND DEVICE_MANIFEST_SKUS is empty (only vendor manifest fragments are used) |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3878 | $(check_vintf_compatible_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3879 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 3880 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3881 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3882 | $(check_vintf_compatible_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_compatible_deps) |
| 3883 | @echo -n -e 'Deps: \n ' > $@ |
| 3884 | @sed 's/ /\n /g' <<< "$(PRIVATE_CHECK_VINTF_DEPS)" >> $@ |
| 3885 | @echo -n -e 'Args: \n ' >> $@ |
| 3886 | @cat <<< "$(PRIVATE_CHECK_VINTF_ARGS)" >> $@ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3887 | $(foreach odm_sku,$(PRIVATE_ODM_SKUS), $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 3888 | echo "For ODM SKU = $(odm_sku), vendor SKU = $(vendor_sku)" >> $@; \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3889 | ( $< --check-compat $(PRIVATE_CHECK_VINTF_ARGS) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3890 | --property ro.boot.product.hardware.sku=$(filter-out EMPTY_ODM_SKU_PLACEHOLDER,$(odm_sku)) \ |
| 3891 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 3892 | >> $@ 2>&1 ) || (cat $@ && exit 1); )) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3893 | |
| 3894 | check_vintf_compatible_log := |
| 3895 | check_vintf_compatible_args := |
| 3896 | check_vintf_compatible_deps := |
| 3897 | |
| 3898 | endif # BUILDING_SYSTEM_EXT_IMAGE equals BOARD_USES_SYSTEM_EXTIMAGE |
| 3899 | endif # BUILDING_PRODUCT_IMAGE equals BOARD_USES_PRODUCTIMAGE |
| 3900 | endif # BUILDING_ODM_IMAGE equals BOARD_USES_ODMIMAGE |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3901 | endif # check_vintf_has_vendor |
| 3902 | endif # check_vintf_has_system |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3903 | endif # PRODUCT_ENFORCE_VINTF_MANIFEST |
| 3904 | |
| 3905 | # Add all logs of VINTF checks to dist builds |
| 3906 | droid_targets: $(check_vintf_all_deps) |
| 3907 | $(call dist-for-goals, droid_targets, $(check_vintf_all_deps)) |
| 3908 | |
| 3909 | # Helper alias to check all VINTF of current build. |
| 3910 | .PHONY: check-vintf-all |
| 3911 | check-vintf-all: $(check_vintf_all_deps) |
| 3912 | $(foreach file,$^,echo "$(file)"; cat "$(file)"; echo;) |
| 3913 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3914 | check_vintf_has_vendor := |
| 3915 | check_vintf_has_system := |
| 3916 | check_vintf_common_srcs := |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3917 | check_vintf_all_deps := |
| 3918 | intermediates := |
| 3919 | endif # !TARGET_BUILD_APPS |
| 3920 | |
| 3921 | # ----------------------------------------------------------------- |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 3922 | # Check image sizes <= size of super partition |
| 3923 | |
| 3924 | ifeq (,$(TARGET_BUILD_APPS)) |
| 3925 | # Do not check for apps-only build |
| 3926 | |
| 3927 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
Yifan Hong | 37c0c7c | 2018-07-24 17:45:08 -0700 | [diff] [blame] | 3928 | |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 3929 | # $(1): misc_info.txt |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 3930 | # #(2): optional log file |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 3931 | define check-all-partition-sizes-target |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 3932 | mkdir -p $(dir $(1)) |
| 3933 | rm -f $(1) |
| 3934 | $(call dump-super-image-info, $(1)) |
| 3935 | $(foreach partition,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 3936 | echo "$(partition)_image="$(call images-for-partitions,$(partition)) >> $(1);) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 3937 | $(CHECK_PARTITION_SIZES) $(if $(2),--logfile $(2),-v) $(1) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 3938 | endef |
| 3939 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 3940 | check_all_partition_sizes_log := $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/check_all_partition_sizes_log |
| 3941 | droid_targets: $(check_all_partition_sizes_log) |
| 3942 | $(call dist-for-goals, droid_targets, $(check_all_partition_sizes_log)) |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 3943 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 3944 | $(check_all_partition_sizes_log): \ |
| 3945 | $(CHECK_PARTITION_SIZES) \ |
| 3946 | $(call images-for-partitions,$(BOARD_SUPER_PARTITION_PARTITION_LIST)) |
| 3947 | $(call check-all-partition-sizes-target, \ |
| 3948 | $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/misc_info.txt, \ |
| 3949 | $@) |
| 3950 | |
| 3951 | .PHONY: check-all-partition-sizes |
| 3952 | check-all-partition-sizes: $(check_all_partition_sizes_log) |
| 3953 | |
| 3954 | .PHONY: check-all-partition-sizes-nodeps |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 3955 | check-all-partition-sizes-nodeps: |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 3956 | $(call check-all-partition-sizes-target, \ |
| 3957 | $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes-nodeps)/misc_info.txt) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 3958 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 3959 | endif # PRODUCT_BUILD_SUPER_PARTITION |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 3960 | |
| 3961 | endif # TARGET_BUILD_APPS |
| 3962 | |
| 3963 | # ----------------------------------------------------------------- |
Greg Hartman | 2ebfef4 | 2014-11-04 21:17:06 -0800 | [diff] [blame] | 3964 | # bring in the installer image generation defines if necessary |
| 3965 | ifeq ($(TARGET_USE_DISKINSTALLER),true) |
| 3966 | include bootable/diskinstaller/config.mk |
| 3967 | endif |
| 3968 | |
| 3969 | # ----------------------------------------------------------------- |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame] | 3970 | # host tools needed to build dist and OTA packages |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3971 | |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 3972 | ifeq ($(BUILD_OS),darwin) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3973 | build_ota_package := false |
| 3974 | build_otatools_package := false |
| 3975 | else |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 3976 | # Set build_ota_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3977 | build_ota_package := true |
| 3978 | ifeq ($(TARGET_SKIP_OTA_PACKAGE),true) |
| 3979 | build_ota_package := false |
| 3980 | endif |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 3981 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3982 | build_ota_package := false |
| 3983 | endif |
| 3984 | ifeq ($(TARGET_PRODUCT),sdk) |
| 3985 | build_ota_package := false |
| 3986 | endif |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3987 | ifeq ($(TARGET_BUILD_PDK),true) |
| 3988 | build_ota_package := false |
| 3989 | endif |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 3990 | ifneq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 3991 | ifneq ($(filter generic%,$(TARGET_DEVICE)),) |
| 3992 | build_ota_package := false |
| 3993 | endif |
| 3994 | ifeq ($(TARGET_NO_KERNEL),true) |
| 3995 | build_ota_package := false |
| 3996 | endif |
| 3997 | ifeq ($(recovery_fstab),) |
| 3998 | build_ota_package := false |
| 3999 | endif |
| 4000 | endif # PRODUCT_BUILD_GENERIC_OTA_PACKAGE |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4001 | |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4002 | # Set build_otatools_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4003 | build_otatools_package := true |
| 4004 | ifeq ($(TARGET_SKIP_OTATOOLS_PACKAGE),true) |
| 4005 | build_otatools_package := false |
| 4006 | endif |
Colin Cross | 481cc5a | 2016-02-04 15:09:23 -0800 | [diff] [blame] | 4007 | endif |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 4008 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4009 | ifeq ($(build_otatools_package),true) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4010 | |
| 4011 | INTERNAL_OTATOOLS_MODULES := \ |
changho.shin | 0f12536 | 2019-07-08 10:59:00 +0900 | [diff] [blame] | 4012 | aapt2 \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4013 | add_img_to_target_files \ |
Tianjie Xu | eaed60c | 2020-03-12 00:33:28 -0700 | [diff] [blame] | 4014 | aftltool \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4015 | append2simg \ |
| 4016 | avbtool \ |
| 4017 | blk_alloc_to_base_fs \ |
| 4018 | boot_signer \ |
| 4019 | brillo_update_payload \ |
| 4020 | brotli \ |
| 4021 | bsdiff \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4022 | build_image \ |
| 4023 | build_super_image \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4024 | build_verity_metadata \ |
| 4025 | build_verity_tree \ |
| 4026 | care_map_generator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4027 | check_ota_package_signature \ |
| 4028 | check_target_files_signatures \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4029 | check_target_files_vintf \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4030 | checkvintf \ |
| 4031 | delta_generator \ |
| 4032 | e2fsck \ |
| 4033 | e2fsdroid \ |
| 4034 | fc_sort \ |
| 4035 | fec \ |
| 4036 | fs_config \ |
| 4037 | generate_verity_key \ |
| 4038 | img2simg \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4039 | img_from_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4040 | imgdiff \ |
| 4041 | libconscrypt_openjdk_jni \ |
| 4042 | lpmake \ |
Isaac Chen | eec4a7c | 2019-06-25 11:50:58 +0800 | [diff] [blame] | 4043 | lpunpack \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4044 | make_f2fs \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4045 | merge_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4046 | minigzip \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4047 | mk_combined_img \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4048 | mkbootfs \ |
| 4049 | mkbootimg \ |
| 4050 | mke2fs \ |
Baligh Uddin | 6a8234b | 2020-01-29 17:42:59 -0800 | [diff] [blame] | 4051 | mke2fs.conf \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4052 | mkf2fsuserimg.sh \ |
| 4053 | mksquashfs \ |
| 4054 | mksquashfsimage.sh \ |
| 4055 | mkuserimg_mke2fs \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 4056 | ota_from_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4057 | sefcontext_compile \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4058 | sgdisk \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4059 | shflags \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4060 | sign_apex \ |
| 4061 | sign_target_files_apks \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4062 | signapk \ |
| 4063 | simg2img \ |
| 4064 | sload_f2fs \ |
| 4065 | tune2fs \ |
Daniel Mentz | 30652b3 | 2020-01-04 15:18:09 -0800 | [diff] [blame] | 4066 | unpack_bootimg \ |
Tianjie Xu | 4e5591f | 2019-06-11 14:35:59 -0700 | [diff] [blame] | 4067 | update_host_simulator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4068 | validate_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4069 | verity_signer \ |
| 4070 | verity_verifier \ |
| 4071 | zipalign \ |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 4072 | |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 4073 | # Additional tools to unpack and repack the apex file. |
| 4074 | INTERNAL_OTATOOLS_MODULES += \ |
| 4075 | apexer \ |
| 4076 | deapexer \ |
| 4077 | debugfs_static \ |
| 4078 | merge_zips \ |
| 4079 | resize2fs \ |
| 4080 | soong_zip \ |
| 4081 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4082 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4083 | INTERNAL_OTATOOLS_MODULES += \ |
| 4084 | futility \ |
| 4085 | vboot_signer |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 4086 | endif |
Tao Bao | f8e6fbe | 2016-01-04 09:57:32 -0800 | [diff] [blame] | 4087 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4088 | INTERNAL_OTATOOLS_FILES := \ |
| 4089 | $(filter $(HOST_OUT)/%,$(call module-installed-files,$(INTERNAL_OTATOOLS_MODULES))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4090 | |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 4091 | .PHONY: otatools |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4092 | otatools: $(INTERNAL_OTATOOLS_FILES) |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 4093 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4094 | # For each module, recursively resolve its host shared library dependencies. Then we have a full |
| 4095 | # list of modules whose installed files need to be packed. |
| 4096 | INTERNAL_OTATOOLS_MODULES_WITH_DEPS := \ |
| 4097 | $(sort $(INTERNAL_OTATOOLS_MODULES) \ |
| 4098 | $(foreach m,$(INTERNAL_OTATOOLS_MODULES),$(call get-all-shared-libs-deps,$(m)))) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4099 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4100 | INTERNAL_OTATOOLS_PACKAGE_FILES := \ |
| 4101 | $(filter $(HOST_OUT)/%,$(call module-installed-files,$(INTERNAL_OTATOOLS_MODULES_WITH_DEPS))) |
| 4102 | |
| 4103 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 4104 | $(sort $(shell find build/make/target/product/security -type f -name "*.x509.pem" -o \ |
| 4105 | -name "*.pk8" -o -name verity_key)) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 4106 | |
| 4107 | ifneq (,$(wildcard device)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4108 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Dan Willemsen | 60c6644 | 2018-05-01 19:07:27 -0700 | [diff] [blame] | 4109 | $(sort $(shell find device $(wildcard vendor) -type f -name "*.pk8" -o -name "verifiedboot*" -o \ |
Baligh Uddin | df238b4 | 2019-07-29 21:12:37 -0700 | [diff] [blame] | 4110 | -name "*.pem" -o -name "oem*.prop" -o -name "*.avbpubkey")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 4111 | endif |
| 4112 | ifneq (,$(wildcard external/avb)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4113 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 4114 | $(sort $(shell find external/avb/test/data -type f -name "testkey_*.pem" -o \ |
| 4115 | -name "atx_metadata.bin")) |
| 4116 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4117 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4118 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 5232f09 | 2018-02-10 04:03:32 +0000 | [diff] [blame] | 4119 | $(sort $(shell find external/vboot_reference/tests/devkeys -type f)) |
Tao Bao | e8ef8f70 | 2017-05-17 11:41:50 -0700 | [diff] [blame] | 4120 | endif |
| 4121 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4122 | INTERNAL_OTATOOLS_RELEASETOOLS := \ |
| 4123 | $(sort $(shell find build/make/tools/releasetools -name "*.pyc" -prune -o \ |
| 4124 | \( -type f -o -type l \) -print)) |
| 4125 | |
| 4126 | BUILT_OTATOOLS_PACKAGE := $(PRODUCT_OUT)/otatools.zip |
| 4127 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_ZIP_ROOT := $(call intermediates-dir-for,PACKAGING,otatools)/otatools |
| 4128 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_PACKAGE_FILES := $(INTERNAL_OTATOOLS_PACKAGE_FILES) |
| 4129 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_RELEASETOOLS := $(INTERNAL_OTATOOLS_RELEASETOOLS) |
| 4130 | $(BUILT_OTATOOLS_PACKAGE): $(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS) |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 4131 | $(BUILT_OTATOOLS_PACKAGE): $(SOONG_ZIP) $(ZIP2ZIP) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4132 | @echo "Package OTA tools: $@" |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4133 | rm -rf $@ $(PRIVATE_ZIP_ROOT) |
| 4134 | mkdir -p $(dir $@) |
| 4135 | $(call copy-files-with-structure,$(PRIVATE_OTATOOLS_PACKAGE_FILES),$(HOST_OUT)/,$(PRIVATE_ZIP_ROOT)) |
| 4136 | $(call copy-files-with-structure,$(PRIVATE_OTATOOLS_RELEASETOOLS),build/make/tools/,$(PRIVATE_ZIP_ROOT)) |
Tianjie Xu | a25d76f | 2020-01-28 19:17:35 -0800 | [diff] [blame] | 4137 | cp $(SOONG_ZIP) $(ZIP2ZIP) $(MERGE_ZIPS) $(PRIVATE_ZIP_ROOT)/bin/ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4138 | $(SOONG_ZIP) -o $@ -C $(PRIVATE_ZIP_ROOT) -D $(PRIVATE_ZIP_ROOT) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4139 | |
| 4140 | .PHONY: otatools-package |
| 4141 | otatools-package: $(BUILT_OTATOOLS_PACKAGE) |
| 4142 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4143 | endif # build_otatools_package |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4144 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4145 | # ----------------------------------------------------------------- |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4146 | # misc_info.txt |
| 4147 | |
| 4148 | INSTALLED_MISC_INFO_TARGET := $(PRODUCT_OUT)/misc_info.txt |
| 4149 | |
| 4150 | ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),) |
| 4151 | # default to common dir for device vendor |
| 4152 | tool_extensions := $(TARGET_DEVICE_DIR)/../common |
| 4153 | else |
| 4154 | tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) |
| 4155 | endif |
| 4156 | .KATI_READONLY := tool_extensions |
| 4157 | |
| 4158 | $(INSTALLED_MISC_INFO_TARGET): |
| 4159 | rm -f $@ |
| 4160 | $(call pretty,"Target misc_info.txt: $@") |
| 4161 | $(hide) echo "recovery_api_version=$(RECOVERY_API_VERSION)" >> $@ |
| 4162 | $(hide) echo "fstab_version=$(RECOVERY_FSTAB_VERSION)" >> $@ |
| 4163 | ifdef BOARD_FLASH_BLOCK_SIZE |
| 4164 | $(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $@ |
| 4165 | endif |
| 4166 | ifdef BOARD_BOOTIMAGE_PARTITION_SIZE |
| 4167 | $(hide) echo "boot_size=$(BOARD_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 4168 | endif |
| 4169 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 4170 | $(hide) echo "no_boot=true" >> $@ |
| 4171 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4172 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 4173 | echo "vendor_boot=true" >> $@ |
| 4174 | echo "vendor_boot_size=$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 4175 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4176 | ifeq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 4177 | $(hide) echo "no_recovery=true" >> $@ |
| 4178 | endif |
| 4179 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
| 4180 | $(hide) echo "include_recovery_dtbo=true" >> $@ |
| 4181 | endif |
| 4182 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 4183 | $(hide) echo "include_recovery_acpio=true" >> $@ |
| 4184 | endif |
| 4185 | ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE |
| 4186 | $(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $@ |
| 4187 | endif |
| 4188 | ifdef TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS |
| 4189 | @# TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS can be empty to indicate that nothing but defaults should be used. |
| 4190 | $(hide) echo "recovery_mount_options=$(TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 4191 | else |
| 4192 | $(hide) echo "recovery_mount_options=$(DEFAULT_TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 4193 | endif |
| 4194 | $(hide) echo "tool_extensions=$(tool_extensions)" >> $@ |
| 4195 | $(hide) echo "default_system_dev_certificate=$(DEFAULT_SYSTEM_DEV_CERTIFICATE)" >> $@ |
| 4196 | ifdef PRODUCT_EXTRA_RECOVERY_KEYS |
| 4197 | $(hide) echo "extra_recovery_keys=$(PRODUCT_EXTRA_RECOVERY_KEYS)" >> $@ |
| 4198 | endif |
| 4199 | $(hide) echo 'mkbootimg_args=$(BOARD_MKBOOTIMG_ARGS)' >> $@ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame^] | 4200 | $(hide) echo 'recovery_mkbootimg_args=$(BOARD_RECOVERY_MKBOOTIMG_ARGS)' >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4201 | $(hide) echo 'mkbootimg_version_args=$(INTERNAL_MKBOOTIMG_VERSION_ARGS)' >> $@ |
| 4202 | $(hide) echo "multistage_support=1" >> $@ |
| 4203 | $(hide) echo "blockimgdiff_versions=3,4" >> $@ |
| 4204 | ifeq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 4205 | $(hide) echo "build_generic_ota_package=true" >> $@ |
| 4206 | endif |
| 4207 | ifneq ($(OEM_THUMBPRINT_PROPERTIES),) |
| 4208 | # OTA scripts are only interested in fingerprint related properties |
| 4209 | $(hide) echo "oem_fingerprint_properties=$(OEM_THUMBPRINT_PROPERTIES)" >> $@ |
| 4210 | endif |
| 4211 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
| 4212 | # We need to create userdata.img with real data because the instrumented libraries are in userdata.img. |
| 4213 | $(hide) echo "userdata_img_with_data=true" >> $@ |
| 4214 | endif |
| 4215 | ifeq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
| 4216 | $(hide) echo "full_recovery_image=true" >> $@ |
| 4217 | endif |
Bill Peckham | e868aec | 2019-09-17 17:06:47 -0700 | [diff] [blame] | 4218 | ifdef BOARD_USES_VENDORIMAGE |
| 4219 | $(hide) echo "board_uses_vendorimage=true" >> $@ |
| 4220 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4221 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4222 | $(hide) echo "avb_enable=true" >> $@ |
| 4223 | $(hide) echo "avb_vbmeta_key_path=$(BOARD_AVB_KEY_PATH)" >> $@ |
| 4224 | $(hide) echo "avb_vbmeta_algorithm=$(BOARD_AVB_ALGORITHM)" >> $@ |
| 4225 | $(hide) echo "avb_vbmeta_args=$(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS)" >> $@ |
| 4226 | $(hide) echo "avb_boot_add_hash_footer_args=$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4227 | ifdef BOARD_AVB_BOOT_KEY_PATH |
| 4228 | $(hide) echo "avb_boot_key_path=$(BOARD_AVB_BOOT_KEY_PATH)" >> $@ |
| 4229 | $(hide) echo "avb_boot_algorithm=$(BOARD_AVB_BOOT_ALGORITHM)" >> $@ |
| 4230 | $(hide) echo "avb_boot_rollback_index_location=$(BOARD_AVB_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4231 | endif # BOARD_AVB_BOOT_KEY_PATH |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4232 | echo "avb_vendor_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4233 | ifdef BOARD_AVB_VENDOR_BOOT_KEY_PATH |
| 4234 | echo "avb_vendor_boot_key_path=$(BOARD_AVB_VENDOR_BOOT_KEY_PATH)" >> $@ |
| 4235 | echo "avb_vendor_boot_algorithm=$(BOARD_AVB_VENDOR_BOOT_ALGORITHM)" >> $@ |
| 4236 | echo "avb_vendor_boot_rollback_index_location=$(BOARD_AVB_VENDOR_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4237 | endif # BOARD_AVB_VENDOR_BOOT_KEY_PATH |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4238 | $(hide) echo "avb_recovery_add_hash_footer_args=$(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4239 | ifdef BOARD_AVB_RECOVERY_KEY_PATH |
| 4240 | $(hide) echo "avb_recovery_key_path=$(BOARD_AVB_RECOVERY_KEY_PATH)" >> $@ |
| 4241 | $(hide) echo "avb_recovery_algorithm=$(BOARD_AVB_RECOVERY_ALGORITHM)" >> $@ |
| 4242 | $(hide) echo "avb_recovery_rollback_index_location=$(BOARD_AVB_RECOVERY_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4243 | endif # BOARD_AVB_RECOVERY_KEY_PATH |
| 4244 | ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) |
| 4245 | $(hide) echo "avb_vbmeta_system=$(BOARD_AVB_VBMETA_SYSTEM)" >> $@ |
| 4246 | $(hide) echo "avb_vbmeta_system_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 4247 | $(hide) echo "avb_vbmeta_system_key_path=$(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH)" >> $@ |
| 4248 | $(hide) echo "avb_vbmeta_system_algorithm=$(BOARD_AVB_VBMETA_SYSTEM_ALGORITHM)" >> $@ |
| 4249 | $(hide) echo "avb_vbmeta_system_rollback_index_location=$(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4250 | endif # BOARD_AVB_VBMETA_SYSTEM |
| 4251 | ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) |
| 4252 | $(hide) echo "avb_vbmeta_vendor=$(BOARD_AVB_VBMETA_VENDOR)" >> $@ |
| 4253 | $(hide) echo "avb_vbmeta_vendor_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 4254 | $(hide) echo "avb_vbmeta_vendor_key_path=$(BOARD_AVB_VBMETA_VENDOR_KEY_PATH)" >> $@ |
| 4255 | $(hide) echo "avb_vbmeta_vendor_algorithm=$(BOARD_AVB_VBMETA_VENDOR_ALGORITHM)" >> $@ |
| 4256 | $(hide) echo "avb_vbmeta_vendor_rollback_index_location=$(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4257 | endif # BOARD_AVB_VBMETA_VENDOR_KEY_PATH |
| 4258 | endif # BOARD_AVB_ENABLE |
| 4259 | ifdef BOARD_BPT_INPUT_FILES |
| 4260 | $(hide) echo "board_bpt_enable=true" >> $@ |
| 4261 | $(hide) echo "board_bpt_make_table_args=$(BOARD_BPT_MAKE_TABLE_ARGS)" >> $@ |
| 4262 | $(hide) echo "board_bpt_input_files=$(BOARD_BPT_INPUT_FILES)" >> $@ |
| 4263 | endif |
| 4264 | ifdef BOARD_BPT_DISK_SIZE |
| 4265 | $(hide) echo "board_bpt_disk_size=$(BOARD_BPT_DISK_SIZE)" >> $@ |
| 4266 | endif |
| 4267 | $(call generate-userimage-prop-dictionary, $@) |
| 4268 | ifeq ($(AB_OTA_UPDATER),true) |
| 4269 | @# Include the build type in META/misc_info.txt so the server can easily differentiate production builds. |
| 4270 | $(hide) echo "build_type=$(TARGET_BUILD_VARIANT)" >> $@ |
| 4271 | $(hide) echo "ab_update=true" >> $@ |
| 4272 | endif |
| 4273 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 4274 | $(hide) echo "has_dtbo=true" >> $@ |
| 4275 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4276 | $(hide) echo "dtbo_size=$(BOARD_DTBOIMG_PARTITION_SIZE)" >> $@ |
| 4277 | $(hide) echo "avb_dtbo_add_hash_footer_args=$(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4278 | ifdef BOARD_AVB_DTBO_KEY_PATH |
| 4279 | $(hide) echo "avb_dtbo_key_path=$(BOARD_AVB_DTBO_KEY_PATH)" >> $@ |
| 4280 | $(hide) echo "avb_dtbo_algorithm=$(BOARD_AVB_DTBO_ALGORITHM)" >> $@ |
| 4281 | $(hide) echo "avb_dtbo_rollback_index_location=$(BOARD_AVB_DTBO_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4282 | endif # BOARD_AVB_DTBO_KEY_PATH |
| 4283 | endif # BOARD_AVB_ENABLE |
| 4284 | endif # BOARD_PREBUILT_DTBOIMAGE |
| 4285 | $(call dump-dynamic-partitions-info,$@) |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4286 | @# VINTF checks |
| 4287 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 4288 | $(hide) echo "vintf_enforce=true" >> $@ |
| 4289 | endif |
| 4290 | ifdef ODM_MANIFEST_SKUS |
| 4291 | $(hide) echo "vintf_odm_manifest_skus=$(ODM_MANIFEST_SKUS)" >> $@ |
| 4292 | endif |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4293 | ifdef ODM_MANIFEST_FILES |
| 4294 | $(hide) echo "vintf_include_empty_odm_sku=true" >> $@ |
| 4295 | endif |
| 4296 | ifdef DEVICE_MANIFEST_SKUS |
| 4297 | $(hide) echo "vintf_vendor_manifest_skus=$(DEVICE_MANIFEST_SKUS)" >> $@ |
| 4298 | endif |
| 4299 | ifdef DEVICE_MANIFEST_FILE |
| 4300 | $(hide) echo "vintf_include_empty_vendor_sku=true" >> $@ |
| 4301 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4302 | |
| 4303 | .PHONY: misc_info |
| 4304 | misc_info: $(INSTALLED_MISC_INFO_TARGET) |
| 4305 | |
| 4306 | droidcore: $(INSTALLED_MISC_INFO_TARGET) |
| 4307 | |
| 4308 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4309 | # A zip of the directories that map to the target filesystem. |
| 4310 | # This zip can be used to create an OTA package or filesystem image |
| 4311 | # as a post-build step. |
| 4312 | # |
| 4313 | name := $(TARGET_PRODUCT) |
| 4314 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4315 | name := $(name)_debug |
| 4316 | endif |
| 4317 | name := $(name)-target_files-$(FILE_NAME_TAG) |
| 4318 | |
| 4319 | intermediates := $(call intermediates-dir-for,PACKAGING,target_files) |
| 4320 | BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip |
| 4321 | $(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates) |
| 4322 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4323 | zip_root := $(intermediates)/$(name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4324 | |
| 4325 | # $(1): Directory to copy |
| 4326 | # $(2): Location to copy it to |
| 4327 | # The "ls -A" is to prevent "acp s/* d" from failing if s is empty. |
| 4328 | define package_files-copy-root |
| 4329 | if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \ |
| 4330 | mkdir -p $(2) && \ |
| 4331 | $(ACP) -rd $(strip $(1))/* $(2); \ |
| 4332 | fi |
| 4333 | endef |
| 4334 | |
Tao Bao | a04fca3 | 2015-11-30 12:22:24 -0800 | [diff] [blame] | 4335 | built_ota_tools := |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4336 | |
| 4337 | # We can't build static executables when SANITIZE_TARGET=address |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 4338 | ifeq (,$(filter address, $(SANITIZE_TARGET))) |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4339 | built_ota_tools += \ |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4340 | $(call intermediates-dir-for,EXECUTABLES,updater,,,$(TARGET_PREFER_32_BIT))/updater |
| 4341 | endif |
| 4342 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4343 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools) |
| 4344 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4345 | tool_extension := $(wildcard $(tool_extensions)/releasetools.py) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4346 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_TOOL_EXTENSION := $(tool_extension) |
Doug Zongker | c18736b | 2009-09-30 09:20:32 -0700 | [diff] [blame] | 4347 | |
Sen Jiang | 4438fd9 | 2016-03-07 16:51:01 -0800 | [diff] [blame] | 4348 | ifeq ($(AB_OTA_UPDATER),true) |
Sen Jiang | 4393563 | 2017-12-19 15:24:43 -0800 | [diff] [blame] | 4349 | updater_dep := system/update_engine/update_engine.conf |
Sen Jiang | 4438fd9 | 2016-03-07 16:51:01 -0800 | [diff] [blame] | 4350 | else |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4351 | # Build OTA tools if not using the AB Updater. |
Shinichiro Hamaji | ee2d211 | 2016-05-10 16:40:38 +0900 | [diff] [blame] | 4352 | updater_dep := $(built_ota_tools) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4353 | endif |
Shinichiro Hamaji | ee2d211 | 2016-05-10 16:40:38 +0900 | [diff] [blame] | 4354 | $(BUILT_TARGET_FILES_PACKAGE): $(updater_dep) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4355 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4356 | # If we are using recovery as boot, output recovery files to BOOT/. |
| 4357 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 4358 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := BOOT |
| 4359 | else |
| 4360 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := RECOVERY |
| 4361 | endif |
| 4362 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4363 | ifeq ($(AB_OTA_UPDATER),true) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4364 | ifdef OSRELEASED_DIRECTORY |
| 4365 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id |
| 4366 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version |
| 4367 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_ETC)/$(OSRELEASED_DIRECTORY)/system_version |
| 4368 | endif |
Tao Bao | a835f38 | 2019-07-18 15:55:30 -0700 | [diff] [blame] | 4369 | |
| 4370 | # Not checking in board_config.mk, since AB_OTA_PARTITIONS may be updated in Android.mk (e.g. to |
| 4371 | # additionally include radio or bootloader partitions). |
| 4372 | ifeq ($(AB_OTA_PARTITIONS),) |
| 4373 | $(error AB_OTA_PARTITIONS must be defined when using AB_OTA_UPDATER) |
| 4374 | endif |
| 4375 | endif |
| 4376 | |
| 4377 | ifneq ($(AB_OTA_PARTITIONS),) |
| 4378 | ifneq ($(AB_OTA_UPDATER),true) |
| 4379 | $(error AB_OTA_UPDATER must be true when defining AB_OTA_PARTITIONS) |
| 4380 | endif |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4381 | endif |
| 4382 | |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4383 | # Run fs_config while creating the target files package |
| 4384 | # $1: root directory |
| 4385 | # $2: add prefix |
| 4386 | define fs_config |
Luis Hector Chavez | 440da2d | 2018-02-07 09:49:52 -0800 | [diff] [blame] | 4387 | (cd $(1); find . -type d | sed 's,$$,/,'; find . \! -type d) | cut -c 3- | sort | sed 's,^,$(2),' | $(HOST_OUT_EXECUTABLES)/fs_config -C -D $(TARGET_OUT) -S $(SELINUX_FC) -R "$(2)" |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4388 | endef |
| 4389 | |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 4390 | # Filter out vendor from the list for AOSP targets. |
| 4391 | # $(1): list |
| 4392 | define filter-out-missing-vendor |
| 4393 | $(if $(INSTALLED_VENDORIMAGE_TARGET),$(1),$(filter-out vendor,$(1))) |
| 4394 | endef |
| 4395 | |
| 4396 | # Information related to dynamic partitions and virtual A/B. This information |
| 4397 | # is needed for building the super image (see dump-super-image-info) and |
| 4398 | # building OTA packages. |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4399 | # $(1): file |
| 4400 | define dump-dynamic-partitions-info |
| 4401 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)), \ |
| 4402 | echo "use_dynamic_partitions=true" >> $(1)) |
| 4403 | $(if $(filter true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)), \ |
| 4404 | echo "dynamic_partition_retrofit=true" >> $(1)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4405 | echo "lpmake=$(notdir $(LPMAKE))" >> $(1) |
| 4406 | $(if $(filter true,$(PRODUCT_BUILD_SUPER_PARTITION)), $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 4407 | echo "build_super_partition=true" >> $(1))) |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 4408 | $(if $(filter true,$(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE)), \ |
| 4409 | echo "build_retrofit_dynamic_partitions_ota_package=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4410 | echo "super_metadata_device=$(BOARD_SUPER_PARTITION_METADATA_DEVICE)" >> $(1) |
| 4411 | $(if $(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 4412 | echo "super_block_devices=$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)" >> $(1)) |
| 4413 | $(foreach device,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 4414 | echo "super_$(device)_device_size=$(BOARD_SUPER_PARTITION_$(call to-upper,$(device))_DEVICE_SIZE)" >> $(1);) |
| 4415 | $(if $(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 4416 | echo "dynamic_partition_list=$(call filter-out-missing-vendor, $(BOARD_SUPER_PARTITION_PARTITION_LIST))" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4417 | $(if $(BOARD_SUPER_PARTITION_GROUPS), |
| 4418 | echo "super_partition_groups=$(BOARD_SUPER_PARTITION_GROUPS)" >> $(1)) |
| 4419 | $(foreach group,$(BOARD_SUPER_PARTITION_GROUPS), \ |
| 4420 | echo "super_$(group)_group_size=$(BOARD_$(call to-upper,$(group))_SIZE)" >> $(1); \ |
| 4421 | $(if $(BOARD_$(call to-upper,$(group))_PARTITION_LIST), \ |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 4422 | echo "super_$(group)_partition_list=$(call filter-out-missing-vendor, $(BOARD_$(call to-upper,$(group))_PARTITION_LIST))" >> $(1);)) |
Yifan Hong | cb35bd9 | 2019-04-02 16:29:59 -0700 | [diff] [blame] | 4423 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)), \ |
| 4424 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 4425 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)), \ |
| 4426 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 4427 | $(if $(filter true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)), \ |
| 4428 | echo "super_image_in_update_package=true" >> $(1)) |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4429 | $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 4430 | echo "super_partition_size=$(BOARD_SUPER_PARTITION_SIZE)" >> $(1)) |
| 4431 | $(if $(BOARD_SUPER_PARTITION_ALIGNMENT), \ |
| 4432 | echo "super_partition_alignment=$(BOARD_SUPER_PARTITION_ALIGNMENT)" >> $(1)) |
| 4433 | $(if $(BOARD_SUPER_PARTITION_WARN_LIMIT), \ |
| 4434 | echo "super_partition_warn_limit=$(BOARD_SUPER_PARTITION_WARN_LIMIT)" >> $(1)) |
| 4435 | $(if $(BOARD_SUPER_PARTITION_ERROR_LIMIT), \ |
| 4436 | echo "super_partition_error_limit=$(BOARD_SUPER_PARTITION_ERROR_LIMIT)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 4437 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA)), \ |
| 4438 | echo "virtual_ab=true" >> $(1)) |
| 4439 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA_RETROFIT)), \ |
| 4440 | echo "virtual_ab_retrofit=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4441 | endef |
| 4442 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4443 | # By conditionally including the dependency of the target files package on the |
| 4444 | # full system image deps, we speed up builds that do not build the system |
| 4445 | # image. |
| 4446 | ifdef BUILDING_SYSTEM_IMAGE |
| 4447 | $(BUILT_TARGET_FILES_PACKAGE): $(FULL_SYSTEMIMAGE_DEPS) |
| 4448 | endif |
| 4449 | |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4450 | ifeq ($(BUILD_QEMU_IMAGES),true) |
| 4451 | MK_VBMETA_BOOT_KERNEL_CMDLINE_SH := device/generic/goldfish/tools/mk_vbmeta_boot_params.sh |
| 4452 | $(BUILT_TARGET_FILES_PACKAGE): $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) |
| 4453 | endif |
| 4454 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4455 | # Depending on the various images guarantees that the underlying |
| 4456 | # directories are up-to-date. |
| 4457 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4458 | $(INSTALLED_RAMDISK_TARGET) \ |
| 4459 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4460 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4461 | $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 4462 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4463 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 4464 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
| 4465 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 4466 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4467 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4468 | $(INSTALLED_VBMETAIMAGE_TARGET) \ |
| 4469 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 4470 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
| 4471 | $(INTERNAL_SYSTEMOTHERIMAGE_FILES) \ |
| 4472 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 4473 | $(INSTALLED_KERNEL_TARGET) \ |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 4474 | $(INSTALLED_DTBIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4475 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 4476 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 4477 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 4478 | $(BOARD_RECOVERY_ACPIO) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4479 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 4480 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 4481 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4482 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4483 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4484 | $(LPMAKE) \ |
| 4485 | $(SELINUX_FC) \ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4486 | $(INSTALLED_MISC_INFO_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4487 | $(APKCERTS_FILE) \ |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 4488 | $(SOONG_APEX_KEYS_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4489 | $(SOONG_ZIP) \ |
| 4490 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4491 | $(ADD_IMG_TO_TARGET_FILES) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 4492 | $(MAKE_RECOVERY_PATCH) \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4493 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 4494 | $(BUILT_KERNEL_VERSION_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4495 | | $(ACP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4496 | @echo "Package target files: $@" |
Dan Willemsen | f75d7fa | 2017-03-23 13:09:21 -0700 | [diff] [blame] | 4497 | $(call create-system-vendor-symlink) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4498 | $(call create-system-product-symlink) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4499 | $(call create-system-system_ext-symlink) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4500 | $(call create-vendor-odm-symlink) |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4501 | $(hide) rm -rf $@ $@.list $(zip_root) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4502 | $(hide) mkdir -p $(dir $@) $(zip_root) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4503 | ifneq (,$(INSTALLED_RECOVERYIMAGE_TARGET)$(filter true,$(BOARD_USES_RECOVERY_AS_BOOT))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4504 | @# Components of the recovery image |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4505 | $(hide) mkdir -p $(zip_root)/$(PRIVATE_RECOVERY_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4506 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4507 | $(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/$(PRIVATE_RECOVERY_OUT)/RAMDISK) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4508 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 4509 | cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4510 | endif |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame^] | 4511 | ifeq (truetrue,$(strip $(BUILDING_VENDOR_BOOT_IMAGE))$(strip $(AB_OTA_UPDATER))) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4512 | echo "$(GENERIC_KERNEL_CMDLINE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/cmdline |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame^] | 4513 | else # not (BUILDING_VENDOR_BOOT_IMAGE and AB_OTA_UPDATER) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4514 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4515 | cp $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/second |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4516 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 4517 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 4518 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4519 | cp $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 4520 | else |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4521 | cp $(BOARD_PREBUILT_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 4522 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4523 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 4524 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4525 | cp $(BOARD_RECOVERY_ACPIO) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_acpio |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 4526 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 4527 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4528 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 4529 | endif |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 4530 | ifdef INTERNAL_KERNEL_CMDLINE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4531 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/cmdline |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4532 | endif |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4533 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4534 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4535 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4536 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4537 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4538 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4539 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET not defined |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4540 | endif # INSTALLED_RECOVERYIMAGE_TARGET defined or BOARD_USES_RECOVERY_AS_BOOT is true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4541 | @# Components of the boot image |
| 4542 | $(hide) mkdir -p $(zip_root)/BOOT |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 4543 | $(hide) mkdir -p $(zip_root)/ROOT |
| 4544 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4545 | $(TARGET_ROOT_OUT),$(zip_root)/ROOT) |
Tom Cherry | 3871f0f | 2018-11-06 14:23:44 -0800 | [diff] [blame] | 4546 | @# If we are using recovery as boot, this is already done when processing recovery. |
| 4547 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 4548 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4549 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4550 | $(TARGET_RAMDISK_OUT),$(zip_root)/BOOT/RAMDISK) |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 4551 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4552 | ifdef INSTALLED_KERNEL_TARGET |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4553 | $(hide) cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/kernel |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4554 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4555 | ifndef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4556 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4557 | cp $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4558 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 4559 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4560 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/BOOT/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 4561 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4562 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4563 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4564 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4565 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4566 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4567 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4568 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4569 | else # INSTALLED_VENDOR_BOOTIMAGE_TARGET defined |
| 4570 | echo "$(GENERIC_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
| 4571 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET defined |
| 4572 | endif # BOARD_USES_RECOVERY_AS_BOOT not true |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 4573 | $(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\ |
| 4574 | mkdir -p $(zip_root)/RADIO; \ |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4575 | cp $(t) $(zip_root)/RADIO/$(notdir $(t));) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4576 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 4577 | mkdir -p $(zip_root)/VENDOR_BOOT |
| 4578 | $(call package_files-copy-root, \ |
| 4579 | $(TARGET_VENDOR_RAMDISK_OUT),$(zip_root)/VENDOR_BOOT/RAMDISK) |
| 4580 | ifdef INSTALLED_DTBIMAGE_TARGET |
| 4581 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_BOOT/dtb |
| 4582 | endif |
| 4583 | ifdef BOARD_KERNEL_BASE |
| 4584 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/VENDOR_BOOT/base |
| 4585 | endif |
| 4586 | ifdef BOARD_KERNEL_PAGESIZE |
| 4587 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_BOOT/pagesize |
| 4588 | endif |
| 4589 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/VENDOR_BOOT/vendor_cmdline |
| 4590 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4591 | ifdef BUILDING_SYSTEM_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4592 | @# Contents of the system image |
| 4593 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4594 | $(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4595 | endif |
| 4596 | ifdef BUILDING_USERDATA_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4597 | @# Contents of the data image |
| 4598 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4599 | $(TARGET_OUT_DATA),$(zip_root)/DATA) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4600 | endif |
| 4601 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 4602 | @# Contents of the vendor image |
| 4603 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4604 | $(TARGET_OUT_VENDOR),$(zip_root)/VENDOR) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 4605 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4606 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4607 | @# Contents of the product image |
| 4608 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4609 | $(TARGET_OUT_PRODUCT),$(zip_root)/PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4610 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4611 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 4612 | @# Contents of the system_ext image |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4613 | $(hide) $(call package_files-copy-root, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4614 | $(TARGET_OUT_SYSTEM_EXT),$(zip_root)/SYSTEM_EXT) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4615 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4616 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4617 | @# Contents of the odm image |
| 4618 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4619 | $(TARGET_OUT_ODM),$(zip_root)/ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4620 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4621 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 4622 | @# Contents of the system_other image |
| 4623 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4624 | $(TARGET_OUT_SYSTEM_OTHER),$(zip_root)/SYSTEM_OTHER) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 4625 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4626 | @# Extra contents of the OTA package |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4627 | $(hide) mkdir -p $(zip_root)/OTA |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4628 | $(hide) cp $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/ |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4629 | ifneq ($(AB_OTA_UPDATER),true) |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 4630 | ifneq ($(built_ota_tools),) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4631 | $(hide) mkdir -p $(zip_root)/OTA/bin |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4632 | $(hide) cp $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/ |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4633 | endif |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 4634 | endif |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 4635 | @# Files that do not end up in any images, but are necessary to |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4636 | @# build them. |
| 4637 | $(hide) mkdir -p $(zip_root)/META |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4638 | $(hide) cp $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 4639 | $(hide) cp $(SOONG_APEX_KEYS_FILE) $(zip_root)/META/apexkeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4640 | ifneq ($(tool_extension),) |
| 4641 | $(hide) cp $(PRIVATE_TOOL_EXTENSION) $(zip_root)/META/ |
| 4642 | endif |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 4643 | $(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4644 | $(hide) cp $(SELINUX_FC) $(zip_root)/META/file_contexts.bin |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4645 | $(hide) cp $(INSTALLED_MISC_INFO_TARGET) $(zip_root)/META/misc_info.txt |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4646 | ifneq ($(PRODUCT_SYSTEM_BASE_FS_PATH),) |
| 4647 | $(hide) cp $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 4648 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 4649 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4650 | ifneq ($(PRODUCT_VENDOR_BASE_FS_PATH),) |
| 4651 | $(hide) cp $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 4652 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 4653 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4654 | ifneq ($(PRODUCT_PRODUCT_BASE_FS_PATH),) |
| 4655 | $(hide) cp $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 4656 | $(zip_root)/META/$(notdir $(PRODUCT_PRODUCT_BASE_FS_PATH)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4657 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4658 | ifneq ($(PRODUCT_SYSTEM_EXT_BASE_FS_PATH),) |
| 4659 | $(hide) cp $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 4660 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4661 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4662 | ifneq ($(PRODUCT_ODM_BASE_FS_PATH),) |
| 4663 | $(hide) cp $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 4664 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_BASE_FS_PATH)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4665 | endif |
Bill Peckham | c0f413f | 2019-11-07 11:27:02 -0800 | [diff] [blame] | 4666 | ifneq ($(AB_OTA_UPDATER),true) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 4667 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 4668 | $(hide) PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 4669 | $(MAKE_RECOVERY_PATCH) $(zip_root) $(zip_root) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 4670 | endif |
Bill Peckham | c0f413f | 2019-11-07 11:27:02 -0800 | [diff] [blame] | 4671 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 4672 | ifeq ($(AB_OTA_UPDATER),true) |
| 4673 | @# When using the A/B updater, include the updater config files in the zip. |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4674 | $(hide) cp $(TOPDIR)system/update_engine/update_engine.conf $(zip_root)/META/update_engine_config.txt |
Alex Deymo | 49be2b1 | 2015-10-22 18:15:27 -0700 | [diff] [blame] | 4675 | $(hide) for part in $(AB_OTA_PARTITIONS); do \ |
Alex Deymo | 8925d33 | 2015-10-01 17:38:09 -0700 | [diff] [blame] | 4676 | echo "$${part}" >> $(zip_root)/META/ab_partitions.txt; \ |
| 4677 | done |
Sen Jiang | 8f22e2a | 2015-11-12 13:53:25 -0800 | [diff] [blame] | 4678 | $(hide) for conf in $(AB_OTA_POSTINSTALL_CONFIG); do \ |
| 4679 | echo "$${conf}" >> $(zip_root)/META/postinstall_config.txt; \ |
| 4680 | done |
Bertrand SIMONNET | 4af7259 | 2015-10-08 15:32:40 -0700 | [diff] [blame] | 4681 | ifdef OSRELEASED_DIRECTORY |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4682 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id $(zip_root)/META/product_id.txt |
| 4683 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version $(zip_root)/META/product_version.txt |
| 4684 | $(hide) cp $(TARGET_OUT_ETC)/$(OSRELEASED_DIRECTORY)/system_version $(zip_root)/META/system_version.txt |
Bertrand SIMONNET | 4af7259 | 2015-10-08 15:32:40 -0700 | [diff] [blame] | 4685 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 4686 | endif |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 4687 | ifeq ($(BREAKPAD_GENERATE_SYMBOLS),true) |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 4688 | @# If breakpad symbols have been generated, add them to the zip. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 4689 | $(hide) cp -R $(TARGET_OUT_BREAKPAD) $(zip_root)/BREAKPAD |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 4690 | endif |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 4691 | ifdef BOARD_PREBUILT_VENDORIMAGE |
| 4692 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 4693 | $(hide) cp $(INSTALLED_VENDORIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 4694 | endif |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4695 | ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 4696 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 4697 | $(hide) cp $(INSTALLED_PRODUCTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 4698 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4699 | ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4700 | $(hide) mkdir -p $(zip_root)/IMAGES |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4701 | $(hide) cp $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4702 | endif |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 4703 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 4704 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 4705 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 4706 | endif |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4707 | ifdef BOARD_PREBUILT_ODMIMAGE |
| 4708 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 4709 | $(hide) cp $(INSTALLED_ODMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 4710 | endif |
Yueyao Zhu | 889ee5e | 2017-05-12 17:50:46 -0700 | [diff] [blame] | 4711 | ifdef BOARD_PREBUILT_DTBOIMAGE |
Tao Bao | c633ed0 | 2017-05-30 21:46:33 -0700 | [diff] [blame] | 4712 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 4713 | $(hide) cp $(INSTALLED_DTBOIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4714 | endif # BOARD_PREBUILT_DTBOIMAGE |
Tao Bao | 95a95c3 | 2017-06-16 15:30:23 -0700 | [diff] [blame] | 4715 | @# The radio images in BOARD_PACK_RADIOIMAGES will be additionally copied from RADIO/ into |
| 4716 | @# IMAGES/, which then will be added into <product>-img.zip. Such images must be listed in |
| 4717 | @# INSTALLED_RADIOIMAGE_TARGET. |
| 4718 | $(hide) $(foreach part,$(BOARD_PACK_RADIOIMAGES), \ |
| 4719 | echo $(part) >> $(zip_root)/META/pack_radioimages.txt;) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4720 | @# Run fs_config on all the system, vendor, boot ramdisk, |
| 4721 | @# and recovery ramdisk files in the zip, and save the output |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4722 | ifdef BUILDING_SYSTEM_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4723 | $(hide) $(call fs_config,$(zip_root)/SYSTEM,system/) > $(zip_root)/META/filesystem_config.txt |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4724 | endif |
| 4725 | ifdef BUILDING_VENDOR_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4726 | $(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.txt |
| 4727 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4728 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4729 | $(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_config.txt |
| 4730 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4731 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 4732 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_EXT,system_ext/) > $(zip_root)/META/system_ext_filesystem_config.txt |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4733 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4734 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4735 | $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt |
| 4736 | endif |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 4737 | @# ROOT always contains the files for the root under normal boot. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4738 | $(hide) $(call fs_config,$(zip_root)/ROOT,) > $(zip_root)/META/root_filesystem_config.txt |
Tao Bao | da01b21 | 2018-02-28 21:20:08 -0800 | [diff] [blame] | 4739 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 4740 | @# BOOT/RAMDISK exists and contains the ramdisk for recovery if using BOARD_USES_RECOVERY_AS_BOOT. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4741 | $(hide) $(call fs_config,$(zip_root)/BOOT/RAMDISK,) > $(zip_root)/META/boot_filesystem_config.txt |
Tao Bao | da01b21 | 2018-02-28 21:20:08 -0800 | [diff] [blame] | 4742 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4743 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 4744 | $(call fs_config,$(zip_root)/VENDOR_BOOT/RAMDISK,) > $(zip_root)/META/vendor_boot_filesystem_config.txt |
| 4745 | endif |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 4746 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 4747 | @# BOOT/RAMDISK also exists and contains the first stage ramdisk if not using BOARD_BUILD_SYSTEM_ROOT_IMAGE. |
Tao Bao | da01b21 | 2018-02-28 21:20:08 -0800 | [diff] [blame] | 4748 | $(hide) $(call fs_config,$(zip_root)/BOOT/RAMDISK,) > $(zip_root)/META/boot_filesystem_config.txt |
| 4749 | endif |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4750 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 4751 | $(hide) $(call fs_config,$(zip_root)/RECOVERY/RAMDISK,) > $(zip_root)/META/recovery_filesystem_config.txt |
| 4752 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4753 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4754 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_OTHER,system/) > $(zip_root)/META/system_other_filesystem_config.txt |
| 4755 | endif |
Michael Schwartz | 4d9cb56 | 2017-04-04 13:01:18 -0700 | [diff] [blame] | 4756 | @# Metadata for compatibility verification. |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4757 | ifdef BUILT_KERNEL_CONFIGS_FILE |
| 4758 | $(hide) cp $(BUILT_KERNEL_CONFIGS_FILE) $(zip_root)/META/kernel_configs.txt |
| 4759 | endif |
| 4760 | ifdef BUILT_KERNEL_VERSION_FILE |
| 4761 | $(hide) cp $(BUILT_KERNEL_VERSION_FILE) $(zip_root)/META/kernel_version.txt |
| 4762 | endif |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 4763 | rm -rf $(zip_root)/META/dynamic_partitions_info.txt |
| 4764 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 4765 | $(call dump-dynamic-partitions-info, $(zip_root)/META/dynamic_partitions_info.txt) |
| 4766 | endif |
Tao Bao | cbd6d49 | 2019-10-07 22:46:02 -0700 | [diff] [blame] | 4767 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
| 4768 | $(ADD_IMG_TO_TARGET_FILES) -a -v -p $(HOST_OUT) $(zip_root) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4769 | ifeq ($(BUILD_QEMU_IMAGES),true) |
| 4770 | $(hide) AVBTOOL=$(AVBTOOL) $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(zip_root)/IMAGES/vbmeta.img \ |
| 4771 | $(zip_root)/IMAGES/system.img $(zip_root)/IMAGES/VerifiedBootParams.textproto |
| 4772 | endif |
Alex Deymo | 92cfd6f | 2016-01-26 18:47:44 -0800 | [diff] [blame] | 4773 | @# Zip everything up, preserving symlinks and placing META/ files first to |
| 4774 | @# help early validation of the .zip file while uploading it. |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4775 | $(hide) find $(zip_root)/META | sort >$@.list |
Nan Zhang | cabecd9 | 2017-03-20 18:22:43 -0700 | [diff] [blame] | 4776 | $(hide) find $(zip_root) -path $(zip_root)/META -prune -o -print | sort >>$@.list |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4777 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(zip_root) -l $@.list |
Doug Zongker | 283e2a1 | 2010-03-15 17:52:32 -0700 | [diff] [blame] | 4778 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 4779 | .PHONY: target-files-package |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4780 | target-files-package: $(BUILT_TARGET_FILES_PACKAGE) |
| 4781 | |
Ying Wang | 4709d7c | 2014-04-14 17:25:43 -0700 | [diff] [blame] | 4782 | ifneq ($(filter $(MAKECMDGOALS),target-files-package),) |
| 4783 | $(call dist-for-goals, target-files-package, $(BUILT_TARGET_FILES_PACKAGE)) |
| 4784 | endif |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 4785 | |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 4786 | # ----------------------------------------------------------------- |
| 4787 | # NDK Sysroot Package |
| 4788 | NDK_SYSROOT_TARGET := $(PRODUCT_OUT)/ndk_sysroot.tar.bz2 |
Dan Willemsen | 14e1026 | 2018-06-17 21:54:21 -0700 | [diff] [blame] | 4789 | $(NDK_SYSROOT_TARGET): $(SOONG_OUT_DIR)/ndk.timestamp |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 4790 | @echo Package NDK sysroot... |
| 4791 | $(hide) tar cjf $@ -C $(SOONG_OUT_DIR) ndk |
| 4792 | |
| 4793 | $(call dist-for-goals,sdk,$(NDK_SYSROOT_TARGET)) |
| 4794 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 4795 | ifeq ($(build_ota_package),true) |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 4796 | # ----------------------------------------------------------------- |
| 4797 | # OTA update package |
| 4798 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4799 | # $(1): output file |
| 4800 | # $(2): additional args |
| 4801 | define build-ota-package-target |
Tao Bao | c931547 | 2019-06-25 12:17:08 -0700 | [diff] [blame] | 4802 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 4803 | $(OTA_FROM_TARGET_FILES) \ |
| 4804 | --verbose \ |
| 4805 | --extracted_input_target_files $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) \ |
| 4806 | --path $(HOST_OUT) \ |
| 4807 | $(if $(OEM_OTA_CONFIG), --oem_settings $(OEM_OTA_CONFIG)) \ |
| 4808 | $(2) \ |
| 4809 | $(BUILT_TARGET_FILES_PACKAGE) $(1) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4810 | endef |
| 4811 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 4812 | name := $(TARGET_PRODUCT) |
| 4813 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4814 | name := $(name)_debug |
| 4815 | endif |
| 4816 | name := $(name)-ota-$(FILE_NAME_TAG) |
| 4817 | |
| 4818 | INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 4819 | INTERNAL_OTA_METADATA := $(PRODUCT_OUT)/ota_metadata |
| 4820 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 4821 | $(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 4822 | $(INTERNAL_OTA_PACKAGE_TARGET): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_OTA_METADATA) |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 4823 | $(INTERNAL_OTA_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 4824 | @echo "Package OTA: $@" |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 4825 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --output_metadata_path $(INTERNAL_OTA_METADATA)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 4826 | |
| 4827 | .PHONY: otapackage |
| 4828 | otapackage: $(INTERNAL_OTA_PACKAGE_TARGET) |
| 4829 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 4830 | ifeq ($(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE),true) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4831 | name := $(TARGET_PRODUCT) |
| 4832 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4833 | name := $(name)_debug |
| 4834 | endif |
| 4835 | name := $(name)-ota-retrofit-$(FILE_NAME_TAG) |
| 4836 | |
| 4837 | INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4838 | $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 4839 | $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET): \ |
| 4840 | $(BUILT_TARGET_FILES_PACKAGE) \ |
| 4841 | $(OTA_FROM_TARGET_FILES) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4842 | @echo "Package OTA (retrofit dynamic partitions): $@" |
| 4843 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --retrofit_dynamic_partitions) |
| 4844 | |
| 4845 | .PHONY: otardppackage |
| 4846 | |
| 4847 | otapackage otardppackage: $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET) |
| 4848 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 4849 | endif # BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4850 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 4851 | endif # build_ota_package |
Ying Wang | f8824af | 2014-06-03 14:07:27 -0700 | [diff] [blame] | 4852 | |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 4853 | # ----------------------------------------------------------------- |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 4854 | # A zip of the appcompat directory containing logs |
| 4855 | APPCOMPAT_ZIP := $(PRODUCT_OUT)/appcompat.zip |
| 4856 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
| 4857 | ifndef TARGET_BUILD_APPS |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4858 | $(APPCOMPAT_ZIP): $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4859 | $(INSTALLED_RAMDISK_TARGET) \ |
| 4860 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 4861 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 4862 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 4863 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4864 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 4865 | endif |
| 4866 | $(APPCOMPAT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,appcompat)/filelist |
| 4867 | $(APPCOMPAT_ZIP): $(SOONG_ZIP) |
| 4868 | @echo "appcompat logs: $@" |
| 4869 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 4870 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/appcompat $(dir $(PRIVATE_LIST_FILE)) |
| 4871 | $(hide) find $(PRODUCT_OUT)/appcompat | sort >$(PRIVATE_LIST_FILE) |
| 4872 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/appcompat -l $(PRIVATE_LIST_FILE) |
| 4873 | |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 4874 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4875 | # A zip of the symbols directory. Keep the full paths to make it |
| 4876 | # more obvious where these files came from. |
| 4877 | # |
| 4878 | name := $(TARGET_PRODUCT) |
| 4879 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4880 | name := $(name)_debug |
| 4881 | endif |
| 4882 | name := $(name)-symbols-$(FILE_NAME_TAG) |
| 4883 | |
| 4884 | SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 4885 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
Ying Wang | da3b972 | 2014-10-24 11:36:59 -0700 | [diff] [blame] | 4886 | ifndef TARGET_BUILD_APPS |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4887 | $(SYMBOLS_ZIP): $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4888 | $(INSTALLED_RAMDISK_TARGET) \ |
| 4889 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 4890 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 4891 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 4892 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4893 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4894 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 4895 | $(updater_dep) |
Ying Wang | da3b972 | 2014-10-24 11:36:59 -0700 | [diff] [blame] | 4896 | endif |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4897 | $(SYMBOLS_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,symbols)/filelist |
| 4898 | $(SYMBOLS_ZIP): $(SOONG_ZIP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4899 | @echo "Package symbols: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4900 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 4901 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_UNSTRIPPED) $(dir $(PRIVATE_LIST_FILE)) |
Jiyong Park | 88e0980 | 2019-03-21 15:19:16 +0900 | [diff] [blame] | 4902 | $(hide) find -L $(TARGET_OUT_UNSTRIPPED) -type f | sort >$(PRIVATE_LIST_FILE) |
Colin Cross | 8d34244 | 2019-05-07 11:47:13 -0700 | [diff] [blame] | 4903 | $(hide) $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(OUT_DIR)/.. -l $(PRIVATE_LIST_FILE) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 4904 | # ----------------------------------------------------------------- |
| 4905 | # A zip of the coverage directory. |
| 4906 | # |
Oliver Nguyen | e91ab23 | 2019-04-30 15:14:44 -0700 | [diff] [blame] | 4907 | name := gcov-report-files-all |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 4908 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4909 | name := $(name)_debug |
| 4910 | endif |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 4911 | COVERAGE_ZIP := $(PRODUCT_OUT)/$(name).zip |
| 4912 | ifndef TARGET_BUILD_APPS |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4913 | $(COVERAGE_ZIP): $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4914 | $(INSTALLED_RAMDISK_TARGET) \ |
| 4915 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 4916 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 4917 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 4918 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4919 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4920 | $(INSTALLED_ODMIMAGE_TARGET) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 4921 | endif |
| 4922 | $(COVERAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,coverage)/filelist |
| 4923 | $(COVERAGE_ZIP): $(SOONG_ZIP) |
| 4924 | @echo "Package coverage: $@" |
| 4925 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 4926 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_COVERAGE) $(dir $(PRIVATE_LIST_FILE)) |
| 4927 | $(hide) find $(TARGET_OUT_COVERAGE) | sort >$(PRIVATE_LIST_FILE) |
| 4928 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(TARGET_OUT_COVERAGE) -l $(PRIVATE_LIST_FILE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4929 | |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 4930 | #------------------------------------------------------------------ |
| 4931 | # Export the LLVM profile data tool and dependencies for Clang coverage processing |
| 4932 | # |
| 4933 | ifeq (true,$(CLANG_COVERAGE)) |
| 4934 | LLVM_PROFDATA := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/bin/llvm-profdata |
| 4935 | LIBCXX := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/lib64/libc++.so.1 |
| 4936 | PROFDATA_ZIP := $(PRODUCT_OUT)/llvm-profdata.zip |
| 4937 | $(PROFDATA_ZIP): $(SOONG_ZIP) |
| 4938 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION) -f $(LLVM_PROFDATA) -f $(LIBCXX) |
| 4939 | |
| 4940 | $(call dist-for-goals,droidcore,$(PROFDATA_ZIP)) |
| 4941 | endif |
| 4942 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4943 | # ----------------------------------------------------------------- |
| 4944 | # A zip of the Android Apps. Not keeping full path so that we don't |
| 4945 | # include product names when distributing |
| 4946 | # |
| 4947 | name := $(TARGET_PRODUCT) |
| 4948 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4949 | name := $(name)_debug |
| 4950 | endif |
| 4951 | name := $(name)-apps-$(FILE_NAME_TAG) |
| 4952 | |
| 4953 | APPS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4954 | $(APPS_ZIP): $(INSTALLED_SYSTEMIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4955 | @echo "Package apps: $@" |
| 4956 | $(hide) rm -rf $@ |
| 4957 | $(hide) mkdir -p $(dir $@) |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 4958 | $(hide) apps_to_zip=`find $(TARGET_OUT_APPS) $(TARGET_OUT_APPS_PRIVILEGED) -mindepth 2 -maxdepth 3 -name "*.apk"`; \ |
| 4959 | if [ -z "$$apps_to_zip" ]; then \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4960 | echo "No apps to zip up. Generating empty apps archive." ; \ |
| 4961 | a=$$(mktemp /tmp/XXXXXXX) && touch $$a && zip $@ $$a && zip -d $@ $$a; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 4962 | else \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4963 | zip -qjX $@ $$apps_to_zip; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 4964 | fi |
Guang Zhu | 0198d6e | 2010-04-23 11:54:37 -0700 | [diff] [blame] | 4965 | |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 4966 | ifeq (true,$(EMMA_INSTRUMENT)) |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 4967 | #------------------------------------------------------------------ |
| 4968 | # An archive of classes for use in generating code-coverage reports |
| 4969 | # These are the uninstrumented versions of any classes that were |
| 4970 | # to be instrumented. |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 4971 | # Any dependencies are set up later in build/make/core/main.mk. |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 4972 | |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 4973 | JACOCO_REPORT_CLASSES_ALL := $(PRODUCT_OUT)/jacoco-report-classes-all.jar |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 4974 | $(JACOCO_REPORT_CLASSES_ALL) : |
| 4975 | @echo "Collecting uninstrumented classes" |
Colin Cross | d81f4b3 | 2020-02-12 14:14:27 -0800 | [diff] [blame] | 4976 | find $(TARGET_COMMON_OUT_ROOT) $(HOST_COMMON_OUT_ROOT) -name "jacoco-report-classes.jar" 2>/dev/null | sort > $@.list |
| 4977 | $(SOONG_ZIP) -o $@ -L 0 -C $(OUT_DIR) -P out -l $@.list |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 4978 | |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 4979 | endif # EMMA_INSTRUMENT=true |
| 4980 | |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 4981 | |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 4982 | #------------------------------------------------------------------ |
| 4983 | # A zip of Proguard obfuscation dictionary files. |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 4984 | # |
Ying Wang | c62c92c | 2013-08-28 18:38:25 -0700 | [diff] [blame] | 4985 | PROGUARD_DICT_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict-$(FILE_NAME_TAG).zip |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 4986 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
| 4987 | ifndef TARGET_BUILD_APPS |
| 4988 | $(PROGUARD_DICT_ZIP): \ |
| 4989 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 4990 | $(INSTALLED_RAMDISK_TARGET) \ |
| 4991 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 4992 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 4993 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 4994 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 4995 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 4996 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 4997 | $(updater_dep) |
| 4998 | endif |
| 4999 | $(PROGUARD_DICT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard)/filelist |
| 5000 | $(PROGUARD_DICT_ZIP): $(SOONG_ZIP) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 5001 | @echo "Packaging Proguard obfuscation dictionary files." |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 5002 | mkdir -p $(dir $@) $(TARGET_OUT_COMMON_INTERMEDIATES)/APPS $(dir $(PRIVATE_LIST_FILE)) |
| 5003 | find $(TARGET_OUT_COMMON_INTERMEDIATES)/APPS -name proguard_dictionary | \ |
| 5004 | sed -e 's/\(.*\)\/proguard_dictionary/\0\n\1\/classes.jar/' > $(PRIVATE_LIST_FILE) |
| 5005 | $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(OUT_DIR)/.. -l $(PRIVATE_LIST_FILE) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 5006 | |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 5007 | |
| 5008 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 5009 | |
| 5010 | # Dump variables used by build_super_image.py (for building super.img and super_empty.img). |
| 5011 | # $(1): output file |
| 5012 | define dump-super-image-info |
| 5013 | $(call dump-dynamic-partitions-info,$(1)) |
| 5014 | $(if $(filter true,$(AB_OTA_UPDATER)), \ |
| 5015 | echo "ab_update=true" >> $(1)) |
| 5016 | endef |
| 5017 | |
| 5018 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
| 5019 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5020 | # ----------------------------------------------------------------- |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5021 | # super partition image (dist) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5022 | |
| 5023 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 5024 | |
| 5025 | # BOARD_SUPER_PARTITION_SIZE must be defined to build super image. |
| 5026 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 5027 | |
| 5028 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5029 | |
| 5030 | # For real devices and for dist builds, build super image from target files to an intermediate directory. |
| 5031 | INTERNAL_SUPERIMAGE_DIST_TARGET := $(call intermediates-dir-for,PACKAGING,super.img)/super.img |
| 5032 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): extracted_input_target_files := $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) |
| 5033 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): $(LPMAKE) $(BUILT_TARGET_FILES_PACKAGE) $(BUILD_SUPER_IMAGE) |
| 5034 | $(call pretty,"Target super fs image from target files: $@") |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 5035 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5036 | $(BUILD_SUPER_IMAGE) -v $(extracted_input_target_files) $@ |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5037 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5038 | # Skip packing it in dist package because it is in update package. |
| 5039 | ifneq (true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5040 | $(call dist-for-goals,dist_files,$(INTERNAL_SUPERIMAGE_DIST_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5041 | endif |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5042 | |
| 5043 | .PHONY: superimage_dist |
| 5044 | superimage_dist: $(INTERNAL_SUPERIMAGE_DIST_TARGET) |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5045 | |
| 5046 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5047 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 5048 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5049 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5050 | # ----------------------------------------------------------------- |
| 5051 | # super partition image for development |
| 5052 | |
| 5053 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 5054 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 5055 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
| 5056 | |
| 5057 | # Build super.img by using $(INSTALLED_*IMAGE_TARGET) to $(1) |
| 5058 | # $(1): built image path |
| 5059 | # $(2): misc_info.txt path; its contents should match expectation of build_super_image.py |
| 5060 | define build-superimage-target |
| 5061 | mkdir -p $(dir $(2)) |
| 5062 | rm -rf $(2) |
| 5063 | $(call dump-super-image-info,$(2)) |
| 5064 | $(foreach p,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 5065 | echo "$(p)_image=$(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)" >> $(2);) |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 5066 | $(if $(BUILDING_SYSTEM_OTHER_IMAGE), $(if $(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)), \ |
| 5067 | echo "system_other_image=$(INSTALLED_SYSTEMOTHERIMAGE_TARGET)" >> $(2);)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5068 | mkdir -p $(dir $(1)) |
| 5069 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5070 | $(BUILD_SUPER_IMAGE) -v $(2) $(1) |
| 5071 | endef |
| 5072 | |
| 5073 | INSTALLED_SUPERIMAGE_TARGET := $(PRODUCT_OUT)/super.img |
| 5074 | INSTALLED_SUPERIMAGE_DEPENDENCIES := $(LPMAKE) $(BUILD_SUPER_IMAGE) \ |
| 5075 | $(foreach p, $(BOARD_SUPER_PARTITION_PARTITION_LIST), $(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)) |
| 5076 | |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 5077 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 5078 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
| 5079 | INSTALLED_SUPERIMAGE_DEPENDENCIES += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
| 5080 | endif |
| 5081 | endif |
| 5082 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5083 | # If BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT is set, super.img is built from images in the |
| 5084 | # $(PRODUCT_OUT) directory, and is built to $(PRODUCT_OUT)/super.img. Also, it will |
| 5085 | # be built for non-dist builds. This is useful for devices that uses super.img directly, e.g. |
| 5086 | # virtual devices. |
| 5087 | ifeq (true,$(BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT)) |
| 5088 | $(INSTALLED_SUPERIMAGE_TARGET): $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 5089 | $(call pretty,"Target super fs image for debug: $@") |
| 5090 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 5091 | $(call intermediates-dir-for,PACKAGING,superimage_debug)/misc_info.txt) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5092 | |
| 5093 | droidcore: $(INSTALLED_SUPERIMAGE_TARGET) |
| 5094 | |
| 5095 | # For devices that uses super image directly, the superimage target points to the file in $(PRODUCT_OUT). |
| 5096 | .PHONY: superimage |
| 5097 | superimage: $(INSTALLED_SUPERIMAGE_TARGET) |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 5098 | |
| 5099 | $(call dist-for-goals,dist_files,$(INSTALLED_MISC_INFO_TARGET):super_misc_info.txt) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5100 | endif # BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT |
| 5101 | |
| 5102 | # Build $(PRODUCT_OUT)/super.img without dependencies. |
| 5103 | .PHONY: superimage-nodeps supernod |
| 5104 | superimage-nodeps supernod: intermediates := |
| 5105 | superimage-nodeps supernod: | $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 5106 | $(call pretty,"make $(INSTALLED_SUPERIMAGE_TARGET): ignoring dependencies") |
| 5107 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
| 5108 | $(call intermediates-dir-for,PACKAGING,superimage-nodeps)/misc_info.txt) |
| 5109 | |
| 5110 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
| 5111 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 5112 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
| 5113 | |
| 5114 | # ----------------------------------------------------------------- |
| 5115 | # super empty image |
| 5116 | |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 5117 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5118 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5119 | |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 5120 | INSTALLED_SUPERIMAGE_EMPTY_TARGET := $(PRODUCT_OUT)/super_empty.img |
| 5121 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): intermediates := $(call intermediates-dir-for,PACKAGING,super_empty) |
| 5122 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): $(LPMAKE) $(BUILD_SUPER_IMAGE) |
| 5123 | $(call pretty,"Target empty super fs image: $@") |
| 5124 | mkdir -p $(intermediates) |
| 5125 | rm -rf $(intermediates)/misc_info.txt |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5126 | $(call dump-super-image-info,$(intermediates)/misc_info.txt) |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 5127 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5128 | $(BUILD_SUPER_IMAGE) -v $(intermediates)/misc_info.txt $@ |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 5129 | |
| 5130 | $(call dist-for-goals,dist_files,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 5131 | |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5132 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 5133 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS == "true" |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5134 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5135 | |
| 5136 | # ----------------------------------------------------------------- |
| 5137 | # The update package |
| 5138 | |
| 5139 | name := $(TARGET_PRODUCT) |
| 5140 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5141 | name := $(name)_debug |
| 5142 | endif |
| 5143 | name := $(name)-img-$(FILE_NAME_TAG) |
| 5144 | |
| 5145 | INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 5146 | |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 5147 | $(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES) |
| 5148 | $(call pretty,"Package: $@") |
| 5149 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
| 5150 | $(IMG_FROM_TARGET_FILES) \ |
| 5151 | --additional IMAGES/VerifiedBootParams.textproto:VerifiedBootParams.textproto \ |
| 5152 | $(BUILT_TARGET_FILES_PACKAGE) $@ |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5153 | |
| 5154 | .PHONY: updatepackage |
| 5155 | updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET) |
Dan Willemsen | 9ae6495 | 2019-08-05 14:45:11 -0700 | [diff] [blame] | 5156 | $(call dist-for-goals,updatepackage,$(INTERNAL_UPDATE_PACKAGE_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5157 | |
| 5158 | |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5159 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5160 | # dalvik something |
| 5161 | .PHONY: dalvikfiles |
| 5162 | dalvikfiles: $(INTERNAL_DALVIK_MODULES) |
| 5163 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5164 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5165 | MK_QEMU_IMAGE_SH := device/generic/goldfish/tools/mk_qemu_image.sh |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5166 | MK_COMBINE_QEMU_IMAGE := $(HOST_OUT_EXECUTABLES)/mk_combined_img |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5167 | SGDISK_HOST := $(HOST_OUT_EXECUTABLES)/sgdisk |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 5168 | |
| 5169 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
| 5170 | INSTALLED_QEMU_SYSTEMIMAGE := $(PRODUCT_OUT)/system-qemu.img |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5171 | INSTALLED_SYSTEM_QEMU_CONFIG := $(PRODUCT_OUT)/system-qemu-config.txt |
| 5172 | $(INSTALLED_SYSTEM_QEMU_CONFIG): $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_VBMETAIMAGE_TARGET) |
| 5173 | @echo "$(PRODUCT_OUT)/vbmeta.img vbmeta 1" > $@ |
| 5174 | @echo "$(INSTALLED_SUPERIMAGE_TARGET) super 2" >> $@ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5175 | $(INSTALLED_QEMU_SYSTEMIMAGE): $(INSTALLED_VBMETAIMAGE_TARGET) $(MK_COMBINE_QEMU_IMAGE) $(SGDISK_HOST) $(SIMG2IMG) \ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5176 | $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_SYSTEM_QEMU_CONFIG) |
| 5177 | @echo Create system-qemu.img now |
| 5178 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5179 | $(MK_COMBINE_QEMU_IMAGE) -i $(INSTALLED_SYSTEM_QEMU_CONFIG) -o $@) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5180 | |
| 5181 | systemimage: $(INSTALLED_QEMU_SYSTEMIMAGE) |
| 5182 | droidcore: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 5183 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5184 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5185 | INSTALLED_QEMU_VENDORIMAGE := $(PRODUCT_OUT)/vendor-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 5186 | $(INSTALLED_QEMU_VENDORIMAGE): $(INSTALLED_VENDORIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) $(SIMG2IMG) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5187 | @echo Create vendor-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5188 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); $(MK_QEMU_IMAGE_SH) $(INSTALLED_VENDORIMAGE_TARGET)) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5189 | |
| 5190 | vendorimage: $(INSTALLED_QEMU_VENDORIMAGE) |
| 5191 | droidcore: $(INSTALLED_QEMU_VENDORIMAGE) |
| 5192 | endif |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 5193 | |
| 5194 | ifdef INSTALLED_RAMDISK_TARGET |
| 5195 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 5196 | ifdef INTERNAL_VENDOR_RAMDISK_TARGET |
| 5197 | INSTALLED_QEMU_RAMDISKIMAGE := $(PRODUCT_OUT)/ramdisk-qemu.img |
| 5198 | $(INSTALLED_QEMU_RAMDISKIMAGE): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_RAMDISK_TARGET) |
| 5199 | @echo Create ramdisk-qemu.img |
| 5200 | (cat $(INSTALLED_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_TARGET) > $(INSTALLED_QEMU_RAMDISKIMAGE)) |
| 5201 | |
| 5202 | droidcore: $(INSTALLED_QEMU_RAMDISKIMAGE) |
| 5203 | endif |
| 5204 | endif |
| 5205 | endif |
| 5206 | |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5207 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5208 | INSTALLED_QEMU_PRODUCTIMAGE := $(PRODUCT_OUT)/product-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 5209 | $(INSTALLED_QEMU_PRODUCTIMAGE): $(INSTALLED_PRODUCTIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) $(SIMG2IMG) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5210 | @echo Create product-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5211 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); $(MK_QEMU_IMAGE_SH) $(INSTALLED_PRODUCTIMAGE_TARGET)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5212 | |
| 5213 | productimage: $(INSTALLED_QEMU_PRODUCTIMAGE) |
| 5214 | droidcore: $(INSTALLED_QEMU_PRODUCTIMAGE) |
| 5215 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5216 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 5217 | INSTALLED_QEMU_SYSTEM_EXTIMAGE := $(PRODUCT_OUT)/system_ext-qemu.img |
| 5218 | $(INSTALLED_QEMU_SYSTEM_EXTIMAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) $(SIMG2IMG) |
| 5219 | @echo Create system_ext-qemu.img |
| 5220 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); $(MK_QEMU_IMAGE_SH) $(INSTALLED_SYSTEM_EXTIMAGE_TARGET)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5221 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5222 | systemextimage: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
| 5223 | droidcore: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5224 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5225 | ifdef INSTALLED_ODMIMAGE_TARGET |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5226 | INSTALLED_QEMU_ODMIMAGE := $(PRODUCT_OUT)/odm-qemu.img |
| 5227 | $(INSTALLED_QEMU_ODMIMAGE): $(INSTALLED_ODMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 5228 | @echo Create odm-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5229 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODMIMAGE_TARGET)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5230 | |
| 5231 | odmimage: $(INSTALLED_QEMU_ODMIMAGE) |
| 5232 | droidcore: $(INSTALLED_QEMU_ODMIMAGE) |
| 5233 | endif |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5234 | |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5235 | QEMU_VERIFIED_BOOT_PARAMS := $(PRODUCT_OUT)/VerifiedBootParams.textproto |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5236 | $(QEMU_VERIFIED_BOOT_PARAMS): $(INSTALLED_VBMETAIMAGE_TARGET) $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 5237 | $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(AVBTOOL) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5238 | @echo Creating $@ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5239 | (export AVBTOOL=$(AVBTOOL); $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(INSTALLED_VBMETAIMAGE_TARGET) \ |
| 5240 | $(INSTALLED_SYSTEMIMAGE_TARGET) $(QEMU_VERIFIED_BOOT_PARAMS)) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5241 | |
| 5242 | systemimage: $(QEMU_VERIFIED_BOOT_PARAMS) |
| 5243 | droidcore: $(QEMU_VERIFIED_BOOT_PARAMS) |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5244 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5245 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5246 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5247 | # The emulator package |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 5248 | ifeq ($(BUILD_EMULATOR),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5249 | INTERNAL_EMULATOR_PACKAGE_FILES += \ |
| 5250 | $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \ |
Jean-Baptiste Queru | 5ea72ef | 2012-01-06 16:44:06 -0800 | [diff] [blame] | 5251 | prebuilts/qemu-kernel/$(TARGET_ARCH)/kernel-qemu \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5252 | $(INSTALLED_RAMDISK_TARGET) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5253 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 5254 | $(INSTALLED_USERDATAIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5255 | |
| 5256 | name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG) |
| 5257 | |
| 5258 | INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 5259 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 5260 | $(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5261 | @echo "Package: $@" |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 5262 | $(hide) zip -qjX $@ $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5263 | |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 5264 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5265 | # ----------------------------------------------------------------- |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 5266 | # Old PDK stuffs, retired |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5267 | # The pdk package (Platform Development Kit) |
| 5268 | |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 5269 | #ifneq (,$(filter pdk,$(MAKECMDGOALS))) |
| 5270 | # include development/pdk/Pdk.mk |
| 5271 | #endif |
| 5272 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5273 | |
| 5274 | # ----------------------------------------------------------------- |
| 5275 | # The SDK |
| 5276 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5277 | # The SDK includes host-specific components, so it belongs under HOST_OUT. |
Ying Wang | d7af176 | 2014-06-02 16:16:53 -0700 | [diff] [blame] | 5278 | sdk_dir := $(HOST_OUT)/sdk/$(TARGET_PRODUCT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5279 | |
| 5280 | # Build a name that looks like: |
| 5281 | # |
| 5282 | # linux-x86 --> android-sdk_12345_linux-x86 |
| 5283 | # darwin-x86 --> android-sdk_12345_mac-x86 |
| 5284 | # windows-x86 --> android-sdk_12345_windows |
| 5285 | # |
| 5286 | sdk_name := android-sdk_$(FILE_NAME_TAG) |
| 5287 | ifeq ($(HOST_OS),darwin) |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 5288 | INTERNAL_SDK_HOST_OS_NAME := mac |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5289 | else |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 5290 | INTERNAL_SDK_HOST_OS_NAME := $(HOST_OS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5291 | endif |
| 5292 | ifneq ($(HOST_OS),windows) |
Ying Wang | 2713fce | 2014-06-09 12:31:12 -0700 | [diff] [blame] | 5293 | INTERNAL_SDK_HOST_OS_NAME := $(INTERNAL_SDK_HOST_OS_NAME)-$(SDK_HOST_ARCH) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5294 | endif |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 5295 | sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5296 | |
| 5297 | sdk_dep_file := $(sdk_dir)/sdk_deps.mk |
| 5298 | |
| 5299 | ATREE_FILES := |
| 5300 | -include $(sdk_dep_file) |
| 5301 | |
| 5302 | # if we don't have a real list, then use "everything" |
| 5303 | ifeq ($(strip $(ATREE_FILES)),) |
| 5304 | ATREE_FILES := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5305 | $(ALL_DEFAULT_INSTALLED_MODULES) \ |
| 5306 | $(INSTALLED_RAMDISK_TARGET) \ |
| 5307 | $(ALL_DOCS) \ |
| 5308 | $(ALL_SDK_FILES) |
| 5309 | endif |
| 5310 | |
| 5311 | atree_dir := development/build |
| 5312 | |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 5313 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5314 | sdk_atree_files := \ |
| 5315 | $(atree_dir)/sdk.exclude.atree \ |
Ying Wang | 2713fce | 2014-06-09 12:31:12 -0700 | [diff] [blame] | 5316 | $(atree_dir)/sdk-$(HOST_OS)-$(SDK_HOST_ARCH).atree |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5317 | |
David 'Digit' Turner | 77ec16a | 2011-06-23 12:49:02 +0200 | [diff] [blame] | 5318 | # development/build/sdk-android-<abi>.atree is used to differentiate |
| 5319 | # between architecture models (e.g. ARMv5TE versus ARMv7) when copying |
| 5320 | # files like the kernel image. We use TARGET_CPU_ABI because we don't |
| 5321 | # have a better way to distinguish between CPU models. |
| 5322 | ifneq (,$(strip $(wildcard $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree))) |
| 5323 | sdk_atree_files += $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree |
| 5324 | endif |
| 5325 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5326 | ifneq ($(PRODUCT_SDK_ATREE_FILES),) |
| 5327 | sdk_atree_files += $(PRODUCT_SDK_ATREE_FILES) |
Griff Hazen | 433febb | 2014-02-28 08:45:59 -0800 | [diff] [blame] | 5328 | else |
| 5329 | sdk_atree_files += $(atree_dir)/sdk.atree |
| 5330 | endif |
| 5331 | |
Deepanshu Gupta | 7a864ea | 2014-08-11 15:20:02 -0700 | [diff] [blame] | 5332 | include $(BUILD_SYSTEM)/sdk_font.mk |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 5333 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5334 | deps := \ |
| 5335 | $(target_notice_file_txt) \ |
| 5336 | $(tools_notice_file_txt) \ |
| 5337 | $(OUT_DOCS)/offline-sdk-timestamp \ |
Jerome Gaillard | a0171af | 2019-10-10 19:35:08 +0100 | [diff] [blame] | 5338 | $(SDK_METADATA_FILES) \ |
Ying Wang | 139e332 | 2010-03-31 17:29:04 -0700 | [diff] [blame] | 5339 | $(SYMBOLS_ZIP) \ |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 5340 | $(COVERAGE_ZIP) \ |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 5341 | $(APPCOMPAT_ZIP) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5342 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5343 | $(INSTALLED_QEMU_SYSTEMIMAGE) \ |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 5344 | $(INSTALLED_QEMU_RAMDISKIMAGE) \ |
bohu | 18d1868 | 2017-08-14 14:52:20 -0700 | [diff] [blame] | 5345 | $(INSTALLED_QEMU_VENDORIMAGE) \ |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5346 | $(QEMU_VERIFIED_BOOT_PARAMS) \ |
Doug Zongker | dddd957 | 2009-06-15 21:25:32 -0700 | [diff] [blame] | 5347 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 5348 | $(INSTALLED_RAMDISK_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5349 | $(INSTALLED_SDK_BUILD_PROP_TARGET) \ |
Ying Wang | 139e332 | 2010-03-31 17:29:04 -0700 | [diff] [blame] | 5350 | $(INSTALLED_BUILD_PROP_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5351 | $(ATREE_FILES) \ |
Ying Wang | 0c0a4ce | 2014-02-18 14:29:59 -0800 | [diff] [blame] | 5352 | $(sdk_atree_files) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5353 | $(HOST_OUT_EXECUTABLES)/atree \ |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 5354 | $(HOST_OUT_EXECUTABLES)/line_endings \ |
Deepanshu Gupta | 7a864ea | 2014-08-11 15:20:02 -0700 | [diff] [blame] | 5355 | $(SDK_FONT_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5356 | |
| 5357 | INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip |
| 5358 | $(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name) |
| 5359 | $(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name) |
| 5360 | $(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file) |
| 5361 | $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files) |
| 5362 | |
| 5363 | # Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built. |
| 5364 | # |
| 5365 | #SDK_GNU_ERROR := true |
| 5366 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 5367 | $(INTERNAL_SDK_TARGET): $(deps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5368 | @echo "Package SDK: $@" |
| 5369 | $(hide) rm -rf $(PRIVATE_DIR) $@ |
| 5370 | $(hide) for f in $(target_gnu_MODULES); do \ |
| 5371 | if [ -f $$f ]; then \ |
| 5372 | echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \ |
| 5373 | including GNU target $$f >&2; \ |
| 5374 | FAIL=$(SDK_GNU_ERROR); \ |
| 5375 | fi; \ |
| 5376 | done; \ |
| 5377 | if [ $$FAIL ]; then exit 1; fi |
Deepanshu Gupta | 88a307e | 2014-08-12 10:23:58 -0700 | [diff] [blame] | 5378 | $(hide) echo $(notdir $(SDK_FONT_DEPS)) | tr " " "\n" > $(SDK_FONT_TEMP)/fontsInSdk.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5379 | $(hide) ( \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5380 | ATREE_STRIP="$(HOST_STRIP) -x" \ |
| 5381 | $(HOST_OUT_EXECUTABLES)/atree \ |
| 5382 | $(addprefix -f ,$(PRIVATE_INPUT_FILES)) \ |
| 5383 | -m $(PRIVATE_DEP_FILE) \ |
| 5384 | -I . \ |
| 5385 | -I $(PRODUCT_OUT) \ |
| 5386 | -I $(HOST_OUT) \ |
| 5387 | -I $(TARGET_COMMON_OUT_ROOT) \ |
| 5388 | -v "PLATFORM_NAME=android-$(PLATFORM_VERSION)" \ |
| 5389 | -v "OUT_DIR=$(OUT_DIR)" \ |
| 5390 | -v "HOST_OUT=$(HOST_OUT)" \ |
| 5391 | -v "TARGET_ARCH=$(TARGET_ARCH)" \ |
| 5392 | -v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \ |
| 5393 | -v "DLL_EXTENSION=$(HOST_SHLIB_SUFFIX)" \ |
| 5394 | -v "FONT_OUT=$(SDK_FONT_TEMP)" \ |
| 5395 | -o $(PRIVATE_DIR) && \ |
| 5396 | cp -f $(target_notice_file_txt) \ |
| 5397 | $(PRIVATE_DIR)/system-images/android-$(PLATFORM_VERSION)/$(TARGET_CPU_ABI)/NOTICE.txt && \ |
| 5398 | cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/platform-tools/NOTICE.txt && \ |
| 5399 | HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \ |
| 5400 | development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \ |
| 5401 | chmod -R ug+rwX $(PRIVATE_DIR) && \ |
| 5402 | cd $(dir $@) && zip -rqX $(notdir $@) $(PRIVATE_NAME) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5403 | ) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 ) |
| 5404 | |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 5405 | |
| 5406 | # Is a Windows SDK requested? If so, we need some definitions from here |
| 5407 | # in order to find the Linux SDK used to create the Windows one. |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 5408 | MAIN_SDK_NAME := $(sdk_name) |
| 5409 | MAIN_SDK_DIR := $(sdk_dir) |
| 5410 | MAIN_SDK_ZIP := $(INTERNAL_SDK_TARGET) |
Ying Wang | ff1fe68 | 2015-01-27 12:47:10 -0800 | [diff] [blame] | 5411 | ifneq ($(filter win_sdk winsdk-tools,$(MAKECMDGOALS)),) |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 5412 | include $(TOPDIR)development/build/tools/windows_sdk.mk |
| 5413 | endif |
| 5414 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5415 | # ----------------------------------------------------------------- |
| 5416 | # Findbugs |
| 5417 | INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml |
| 5418 | INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html |
| 5419 | $(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES) |
| 5420 | @echo UnionBugs: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 5421 | $(hide) $(FINDBUGS_DIR)/unionBugs $(ALL_FINDBUGS_FILES) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5422 | > $@ |
| 5423 | $(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET) |
| 5424 | @echo ConvertXmlToText: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 5425 | $(hide) $(FINDBUGS_DIR)/convertXmlToText -html:fancy.xsl \ |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 5426 | $(INTERNAL_FINDBUGS_XML_TARGET) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5427 | |
| 5428 | # ----------------------------------------------------------------- |
| 5429 | # Findbugs |
| 5430 | |
| 5431 | # ----------------------------------------------------------------- |
| 5432 | # These are some additional build tasks that need to be run. |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 5433 | ifneq ($(dont_bother),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5434 | include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk)) |
Claes Elgemark | e22ad67 | 2010-11-12 15:46:00 +0100 | [diff] [blame] | 5435 | -include $(sort $(wildcard vendor/*/build/tasks/*.mk)) |
Andrew Boie | f34a9ba | 2012-04-16 10:03:16 -0700 | [diff] [blame] | 5436 | -include $(sort $(wildcard device/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 5437 | -include $(sort $(wildcard product/*/build/tasks/*.mk)) |
Ying Wang | 66c78e4 | 2014-09-05 17:47:34 -0700 | [diff] [blame] | 5438 | # Also the project-specific tasks |
| 5439 | -include $(sort $(wildcard vendor/*/*/build/tasks/*.mk)) |
| 5440 | -include $(sort $(wildcard device/*/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 5441 | -include $(sort $(wildcard product/*/*/build/tasks/*.mk)) |
Guang Zhu | 8322be7 | 2016-06-20 22:03:24 -0700 | [diff] [blame] | 5442 | # Also add test specifc tasks |
| 5443 | include $(sort $(wildcard platform_testing/build/tasks/*.mk)) |
Keun Soo Yim | 199a710 | 2016-08-31 09:20:51 -0700 | [diff] [blame] | 5444 | include $(sort $(wildcard test/vts/tools/build/tasks/*.mk)) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 5445 | endif |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 5446 | |
Ying Wang | 67132ba | 2015-10-28 16:42:39 -0700 | [diff] [blame] | 5447 | include $(BUILD_SYSTEM)/product-graph.mk |
| 5448 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 5449 | # ----------------------------------------------------------------- |
| 5450 | # Create SDK repository packages. Must be done after tasks/* since |
| 5451 | # we need the addon rules defined. |
| 5452 | ifneq ($(sdk_repo_goal),) |
| 5453 | include $(TOPDIR)development/build/tools/sdk_repo.mk |
| 5454 | endif |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 5455 | |
| 5456 | # ----------------------------------------------------------------- |
Mitch Phillips | 3adbcb3 | 2019-10-17 19:24:46 -0700 | [diff] [blame] | 5457 | # Soong generates the list of all shared libraries that are depended on by fuzz |
| 5458 | # targets. It saves this list as a source:destination pair to |
| 5459 | # FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS, where the source is the path to the |
| 5460 | # build of the unstripped shared library, and the destination is the |
| 5461 | # /data/fuzz/$ARCH/lib (for device) or /fuzz/$ARCH/lib (for host) directory |
| 5462 | # where fuzz target shared libraries are to be "reinstalled". The |
| 5463 | # copy-many-files below generates the rules to copy the unstripped shared |
| 5464 | # libraries to the device or host "reinstallation" directory. These rules are |
| 5465 | # depended on by each module in soong_cc_prebuilt.mk, where the module will have |
| 5466 | # a dependency on each shared library that it needs to be "reinstalled". |
| 5467 | FUZZ_SHARED_DEPS := $(call copy-many-files,$(strip $(FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS))) |
| 5468 | |
| 5469 | # ----------------------------------------------------------------- |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 5470 | # The rule to build all fuzz targets, and package them. |
| 5471 | # Note: The packages are created in Soong, and in a perfect world, |
| 5472 | # we'd be able to create the phony rule there. But, if we want to |
| 5473 | # have dist goals for the fuzz target, we need to have the PHONY |
| 5474 | # target defined in make. MakeVarsContext.DistForGoal doesn't take |
| 5475 | # into account that a PHONY rule create by Soong won't be available |
| 5476 | # during make, and such will fail with `writing to readonly |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 5477 | # directory`, because kati will see 'haiku' as being a file, not a |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 5478 | # phony target. |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 5479 | .PHONY: haiku |
| 5480 | haiku: $(SOONG_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_FUZZ_TARGETS) |
| 5481 | $(call dist-for-goals,haiku,$(SOONG_FUZZ_PACKAGING_ARCH_MODULES)) |
Kyriakos Ispoglou | f00a0db | 2020-02-06 16:41:49 -0800 | [diff] [blame] | 5482 | |
| 5483 | # ----------------------------------------------------------------- |
| 5484 | # The makefile for haiku line coverage. |
| 5485 | include $(BUILD_SYSTEM)/line_coverage.mk |