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 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 7 | SYSTEM_NOTICE_DEPS := |
| 8 | VENDOR_NOTICE_DEPS := |
| 9 | UNMOUNTED_NOTICE_DEPS := |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 10 | UNMOUNTED_NOTICE_VENDOR_DEPS := |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 11 | ODM_NOTICE_DEPS := |
| 12 | OEM_NOTICE_DEPS := |
| 13 | PRODUCT_NOTICE_DEPS := |
| 14 | SYSTEM_EXT_NOTICE_DEPS := |
| 15 | VENDOR_DLKM_NOTICE_DEPS := |
| 16 | ODM_DLKM_NOTICE_DEPS := |
| 17 | SYSTEM_DLKM_NOTICE_DEPS := |
| 18 | |
Joe Onorato | 964f401 | 2023-05-06 12:29:01 -0700 | [diff] [blame] | 19 | |
Joe Onorato | 63a8455 | 2023-06-29 14:34:18 -0700 | [diff] [blame] | 20 | # IMAGES_TO_BUILD is a list of the partition .img files that will be created. |
| 21 | IMAGES_TO_BUILD:= |
| 22 | ifneq ($(BUILDING_BOOT_IMAGE),) |
| 23 | IMAGES_TO_BUILD += boot |
| 24 | endif |
| 25 | ifneq ($(BUILDING_CACHE_IMAGE),) |
| 26 | IMAGES_TO_BUILD += cache |
| 27 | endif |
| 28 | ifneq ($(BUILDING_DEBUG_BOOT_IMAGE),) |
| 29 | IMAGES_TO_BUILD += debug_boot |
| 30 | endif |
| 31 | ifneq ($(BUILDING_DEBUG_VENDOR_BOOT_IMAGE),) |
| 32 | IMAGES_TO_BUILD += debug_vendor_boot |
| 33 | endif |
| 34 | ifneq ($(BUILDING_INIT_BOOT_IMAGE),) |
| 35 | IMAGES_TO_BUILD += init_boot |
| 36 | endif |
| 37 | ifneq ($(BUILDING_ODM_DLKM_IMAGE),) |
| 38 | IMAGES_TO_BUILD += odm_dlkm |
| 39 | endif |
| 40 | ifneq ($(BUILDING_ODM_IMAGE),) |
| 41 | IMAGES_TO_BUILD += odm |
| 42 | endif |
| 43 | ifneq ($(BUILDING_PRODUCT_IMAGE),) |
| 44 | IMAGES_TO_BUILD += product |
| 45 | endif |
| 46 | ifneq ($(BUILDING_RAMDISK_IMAGE),) |
| 47 | IMAGES_TO_BUILD += ramdisk |
| 48 | endif |
| 49 | ifneq ($(BUILDING_RECOVERY_IMAGE),) |
| 50 | IMAGES_TO_BUILD += recovery |
| 51 | endif |
| 52 | ifneq ($(BUILDING_SUPER_EMPTY_IMAGE),) |
| 53 | IMAGES_TO_BUILD += super_empty |
| 54 | endif |
| 55 | ifneq ($(BUILDING_SYSTEM_DLKM_IMAGE),) |
| 56 | IMAGES_TO_BUILD += system_dlkm |
| 57 | endif |
| 58 | ifneq ($(BUILDING_SYSTEM_EXT_IMAGE),) |
| 59 | IMAGES_TO_BUILD += system_ext |
| 60 | endif |
| 61 | ifneq ($(BUILDING_SYSTEM_IMAGE),) |
| 62 | IMAGES_TO_BUILD += system |
| 63 | endif |
| 64 | ifneq ($(BUILDING_SYSTEM_OTHER_IMAGE),) |
| 65 | IMAGES_TO_BUILD += system_other |
| 66 | endif |
| 67 | ifneq ($(BUILDING_USERDATA_IMAGE),) |
| 68 | IMAGES_TO_BUILD += userdata |
| 69 | endif |
| 70 | ifneq ($(BUILDING_VBMETA_IMAGE),) |
| 71 | IMAGES_TO_BUILD += vbmeta |
| 72 | endif |
| 73 | ifneq ($(BUILDING_VENDOR_BOOT_IMAGE),) |
| 74 | IMAGES_TO_BUILD += vendor_boot |
| 75 | endif |
| 76 | ifneq ($(BUILDING_VENDOR_DLKM_IMAGE),) |
| 77 | IMAGES_TO_BUILD += vendor_dlkm |
| 78 | endif |
| 79 | ifneq ($(BUILDING_VENDOR_IMAGE),) |
| 80 | IMAGES_TO_BUILD += vendor |
| 81 | endif |
| 82 | ifneq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),) |
| 83 | IMAGES_TO_BUILD += vendor_kernel_boot |
| 84 | endif |
| 85 | |
| 86 | |
| 87 | ########################################################### |
| 88 | # Get the module names suitable for ALL_MODULES.* variables that are installed |
| 89 | # for a given partition |
| 90 | # |
| 91 | # $(1): Partition |
| 92 | ########################################################### |
| 93 | define register-names-for-partition |
| 94 | $(sort $(foreach m,$(product_MODULES),\ |
| 95 | $(if $(filter $(PRODUCT_OUT)/$(strip $(1))/%, $(ALL_MODULES.$(m).INSTALLED)), \ |
| 96 | $(m) |
| 97 | ) \ |
| 98 | )) |
Joe Onorato | 964f401 | 2023-05-06 12:29:01 -0700 | [diff] [blame] | 99 | endef |
| 100 | |
Joe Onorato | d6df20a | 2023-06-09 18:51:00 -0700 | [diff] [blame] | 101 | |
Joe Onorato | 63a8455 | 2023-06-29 14:34:18 -0700 | [diff] [blame] | 102 | # Release & Aconfig Flags |
| 103 | # ----------------------------------------------------------------- |
| 104 | include $(BUILD_SYSTEM)/packaging/flags.mk |
Joe Onorato | 964f401 | 2023-05-06 12:29:01 -0700 | [diff] [blame] | 105 | |
Joe Onorato | 964f401 | 2023-05-06 12:29:01 -0700 | [diff] [blame] | 106 | |
| 107 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 108 | # Define rules to copy PRODUCT_COPY_FILES defined by the product. |
Ying Wang | 4b0486b | 2012-09-20 16:35:36 -0700 | [diff] [blame] | 109 | # 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] | 110 | # <dest file> is relative to $(PRODUCT_OUT), so it should look like, |
| 111 | # e.g., "system/etc/file.xml". |
Jean-Baptiste Queru | 518ce57 | 2010-03-01 16:18:59 -0800 | [diff] [blame] | 112 | # 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] | 113 | # src:dest pair is the first one to match the same dest" |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 114 | #$(1): the src:dest pair |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 115 | #$(2): the dest |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 116 | define check-product-copy-files |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 117 | $(if $(filter-out $(TARGET_COPY_OUT_SYSTEM_OTHER)/%,$(2)), \ |
| 118 | $(if $(filter %.apk, $(2)),$(error \ |
Yifan Hong | 5e57a77 | 2020-01-09 16:15:11 -0800 | [diff] [blame] | 119 | Prebuilt apk found in PRODUCT_COPY_FILES: $(1), use BUILD_PREBUILT instead!))) \ |
| 120 | $(if $(filter true,$(BUILD_BROKEN_VINTF_PRODUCT_COPY_FILES)),, \ |
| 121 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM)/etc/vintf/% \ |
| 122 | $(TARGET_COPY_OUT_SYSTEM)/manifest.xml \ |
| 123 | $(TARGET_COPY_OUT_SYSTEM)/compatibility_matrix.xml,$(2)), \ |
| 124 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), use vintf_fragments instead!)) \ |
| 125 | $(if $(filter $(TARGET_COPY_OUT_PRODUCT)/etc/vintf/%,$(2)), \ |
| 126 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 127 | use PRODUCT_MANIFEST_FILES / DEVICE_PRODUCT_COMPATIBILITY_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 128 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM_EXT)/etc/vintf/%,$(2)), \ |
| 129 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 130 | use vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 131 | $(if $(filter $(TARGET_COPY_OUT_VENDOR)/etc/vintf/% \ |
| 132 | $(TARGET_COPY_OUT_VENDOR)/manifest.xml \ |
| 133 | $(TARGET_COPY_OUT_VENDOR)/compatibility_matrix.xml,$(2)), \ |
| 134 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 135 | use DEVICE_MANIFEST_FILE / DEVICE_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 136 | $(if $(filter $(TARGET_COPY_OUT_ODM)/etc/vintf/% \ |
| 137 | $(TARGET_COPY_OUT_ODM)/etc/manifest%,$(2)), \ |
| 138 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 139 | use ODM_MANIFEST_FILES / vintf_fragments instead!)) \ |
| 140 | ) |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 141 | endef |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 142 | |
Yo Chiang | 336883a | 2020-05-14 17:17:29 +0800 | [diff] [blame] | 143 | # Phony target to check PRODUCT_COPY_FILES copy pairs don't contain ELF files |
| 144 | .PHONY: check-elf-prebuilt-product-copy-files |
| 145 | check-elf-prebuilt-product-copy-files: |
| 146 | |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 147 | check_elf_prebuilt_product_copy_files := true |
Yo Chiang | 73d3148 | 2020-04-07 15:59:59 +0800 | [diff] [blame] | 148 | ifneq (,$(filter true,$(BUILD_BROKEN_ELF_PREBUILT_PRODUCT_COPY_FILES))) |
| 149 | check_elf_prebuilt_product_copy_files := |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 150 | endif |
| 151 | check_elf_prebuilt_product_copy_files_hint := \ |
| 152 | found ELF prebuilt in PRODUCT_COPY_FILES, use cc_prebuilt_binary / cc_prebuilt_library_shared instead. |
| 153 | |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 154 | # filter out the duplicate <source file>:<dest file> pairs. |
| 155 | unique_product_copy_files_pairs := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 156 | $(foreach cf,$(PRODUCT_COPY_FILES), \ |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 157 | $(if $(filter $(unique_product_copy_files_pairs),$(cf)),,\ |
| 158 | $(eval unique_product_copy_files_pairs += $(cf)))) |
| 159 | unique_product_copy_files_destinations := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 160 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 161 | $(foreach cf,$(unique_product_copy_files_pairs), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 162 | $(eval _src := $(call word-colon,1,$(cf))) \ |
| 163 | $(eval _dest := $(call word-colon,2,$(cf))) \ |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 164 | $(call check-product-copy-files,$(cf),$(_dest)) \ |
Ying Wang | 193010c | 2011-12-16 11:54:25 -0800 | [diff] [blame] | 165 | $(if $(filter $(unique_product_copy_files_destinations),$(_dest)), \ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 166 | $(eval product_copy_files_ignored += $(cf)), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 167 | $(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \ |
Ying Wang | 3ceecfa | 2012-05-14 14:39:00 -0700 | [diff] [blame] | 168 | $(if $(filter %.xml,$(_dest)),\ |
| 169 | $(eval $(call copy-xml-file-checked,$(_src),$(_fulldest))),\ |
Nicolas Geoffray | a95fbd1 | 2017-09-19 13:10:31 +0100 | [diff] [blame] | 170 | $(if $(and $(filter %.jar,$(_dest)),$(filter $(basename $(notdir $(_dest))),$(PRODUCT_LOADED_BY_PRIVILEGED_MODULES))),\ |
| 171 | $(eval $(call copy-and-uncompress-dexs,$(_src),$(_fulldest))), \ |
Tom Cherry | fc97764 | 2018-06-13 14:51:05 -0700 | [diff] [blame] | 172 | $(if $(filter init%rc,$(notdir $(_dest)))$(filter %/etc/init,$(dir $(_dest))),\ |
| 173 | $(eval $(call copy-init-script-file-checked,$(_src),$(_fulldest))),\ |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 174 | $(if $(and $(filter true,$(check_elf_prebuilt_product_copy_files)), \ |
| 175 | $(filter bin lib lib64,$(subst /,$(space),$(_dest)))), \ |
| 176 | $(eval $(call copy-non-elf-file-checked,$(_src),$(_fulldest),$(check_elf_prebuilt_product_copy_files_hint))), \ |
| 177 | $(eval $(call copy-one-file,$(_src),$(_fulldest))))))) \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 178 | $(eval unique_product_copy_files_destinations += $(_dest)))) |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 179 | |
| 180 | # Dump a list of overriden (and ignored PRODUCT_COPY_FILES entries) |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 181 | pcf_ignored_file := $(PRODUCT_OUT)/product_copy_files_ignored.txt |
| 182 | $(pcf_ignored_file): PRIVATE_IGNORED := $(sort $(product_copy_files_ignored)) |
| 183 | $(pcf_ignored_file): |
| 184 | echo "$(PRIVATE_IGNORED)" | tr " " "\n" >$@ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 185 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 186 | $(call declare-0p-target,$(pcf_ignored_file)) |
| 187 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 188 | $(call dist-for-goals,droidcore-unbundled,$(pcf_ignored_file):logs/$(notdir $(pcf_ignored_file))) |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 189 | |
| 190 | pcf_ignored_file := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 191 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 192 | unique_product_copy_files_pairs := |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 193 | unique_product_copy_files_destinations := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 194 | |
| 195 | # ----------------------------------------------------------------- |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 196 | # Returns the max allowed size for an image suitable for hash verification |
| 197 | # (e.g., boot.img, recovery.img, etc). |
| 198 | # The value 69632 derives from MAX_VBMETA_SIZE + MAX_FOOTER_SIZE in $(AVBTOOL). |
| 199 | # $(1): partition size to flash the image |
| 200 | define get-hash-image-max-size |
| 201 | $(if $(1), \ |
| 202 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 203 | $(eval _hash_meta_size := 69632), \ |
| 204 | $(eval _hash_meta_size := 0)) \ |
| 205 | $(1)-$(_hash_meta_size)) |
| 206 | endef |
| 207 | |
| 208 | # ----------------------------------------------------------------- |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 209 | # Define rules to copy headers defined in copy_headers.mk |
| 210 | # If more than one makefile declared a header, print a warning, |
| 211 | # then copy the last one defined. This matches the previous make |
| 212 | # behavior. |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 213 | has_dup_copy_headers := |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 214 | $(foreach dest,$(ALL_COPIED_HEADERS), \ |
| 215 | $(eval _srcs := $(ALL_COPIED_HEADERS.$(dest).SRC)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 216 | $(eval _src := $(lastword $(_srcs))) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 217 | $(if $(call streq,$(_src),$(_srcs)),, \ |
| 218 | $(warning Duplicate header copy: $(dest)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 219 | $(warning _ Using $(_src)) \ |
| 220 | $(warning __ from $(lastword $(ALL_COPIED_HEADERS.$(dest).MAKEFILE))) \ |
| 221 | $(eval _makefiles := $$(wordlist 1,$(call int_subtract,$(words $(ALL_COPIED_HEADERS.$(dest).MAKEFILE)),1),$$(ALL_COPIED_HEADERS.$$(dest).MAKEFILE))) \ |
| 222 | $(foreach src,$(wordlist 1,$(call int_subtract,$(words $(_srcs)),1),$(_srcs)), \ |
| 223 | $(warning _ Ignoring $(src)) \ |
| 224 | $(warning __ from $(firstword $(_makefiles))) \ |
| 225 | $(eval _makefiles := $$(wordlist 2,9999,$$(_makefiles)))) \ |
| 226 | $(eval has_dup_copy_headers := true)) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 227 | $(eval $(call copy-one-header,$(_src),$(dest)))) |
| 228 | all_copied_headers: $(ALL_COPIED_HEADERS) |
| 229 | |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 230 | ifdef has_dup_copy_headers |
| 231 | has_dup_copy_headers := |
Dan Willemsen | 1d4a56f | 2019-04-18 09:38:25 -0700 | [diff] [blame] | 232 | $(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] | 233 | endif |
| 234 | |
Dan Willemsen | 79a0caf | 2019-12-13 18:55:18 -0800 | [diff] [blame] | 235 | $(file >$(PRODUCT_OUT)/.copied_headers_list,$(TARGET_OUT_HEADERS) $(ALL_COPIED_HEADERS)) |
| 236 | |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 237 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 238 | # docs/index.html |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 239 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 240 | gen := $(OUT_DOCS)/index.html |
| 241 | ALL_DOCS += $(gen) |
| 242 | $(gen): frameworks/base/docs/docs-redirect-index.html |
| 243 | @mkdir -p $(dir $@) |
| 244 | @cp -f $< $@ |
Ying Wang | 3f45b3c | 2012-04-02 18:21:36 -0700 | [diff] [blame] | 245 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 246 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 247 | ndk_doxygen_out := $(OUT_NDK_DOCS) |
| 248 | ndk_headers := $(SOONG_OUT_DIR)/ndk/sysroot/usr/include |
| 249 | ndk_docs_src_dir := frameworks/native/docs |
| 250 | ndk_doxyfile := $(ndk_docs_src_dir)/Doxyfile |
| 251 | ifneq ($(wildcard $(ndk_docs_src_dir)),) |
| 252 | ndk_docs_srcs := $(addprefix $(ndk_docs_src_dir)/,\ |
| 253 | $(call find-files-in-subdirs,$(ndk_docs_src_dir),"*",.)) |
| 254 | $(ndk_doxygen_out)/index.html: $(ndk_docs_srcs) $(SOONG_OUT_DIR)/ndk.timestamp |
| 255 | @mkdir -p $(ndk_doxygen_out) |
| 256 | @echo "Generating NDK docs to $(ndk_doxygen_out)" |
| 257 | @( cat $(ndk_doxyfile); \ |
| 258 | echo "INPUT=$(ndk_headers)"; \ |
| 259 | echo "HTML_OUTPUT=$(ndk_doxygen_out)" \ |
| 260 | ) | doxygen - |
| 261 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 262 | $(call declare-1p-target,$(ndk_doxygen_out)/index.html,) |
| 263 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 264 | # Note: Not a part of the docs target because we don't have doxygen available. |
| 265 | # You can run this target locally if you have doxygen installed. |
| 266 | ndk-docs: $(ndk_doxygen_out)/index.html |
| 267 | .PHONY: ndk-docs |
| 268 | endif |
| 269 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 270 | ifeq ($(HOST_OS),linux) |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 271 | $(call dist-for-goals,sdk,$(API_FINGERPRINT)) |
Spandan Das | 10cd857 | 2023-02-14 21:26:55 +0000 | [diff] [blame] | 272 | $(call dist-for-goals,droidcore,$(API_FINGERPRINT)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 273 | endif |
Dan Willemsen | ad6a154 | 2018-12-14 01:04:19 -0800 | [diff] [blame] | 274 | |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 275 | INSTALLED_RECOVERYIMAGE_TARGET := |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 276 | # Build recovery image if |
| 277 | # BUILDING_RECOVERY_IMAGE && !BOARD_USES_RECOVERY_AS_BOOT && !BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT. |
| 278 | # If BOARD_USES_RECOVERY_AS_BOOT is true, leave empty because INSTALLED_BOOTIMAGE_TARGET is built |
| 279 | # with recovery resources. |
| 280 | # If BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT is true, leave empty to build recovery resources |
| 281 | # but not the final recovery image. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 282 | ifdef BUILDING_RECOVERY_IMAGE |
| 283 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 284 | ifneq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 285 | INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img |
| 286 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 287 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 288 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 289 | |
Jiyong Park | e134686 | 2020-05-18 14:31:30 +0900 | [diff] [blame] | 290 | include $(BUILD_SYSTEM)/sysprop.mk |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 291 | |
| 292 | # ---------------------------------------------------------------- |
| 293 | |
| 294 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 295 | # sdk-build.prop |
| 296 | # |
| 297 | # There are certain things in build.prop that we don't want to |
| 298 | # ship with the sdk; remove them. |
| 299 | |
| 300 | # This must be a list of entire property keys followed by |
| 301 | # "=" characters, without any internal spaces. |
| 302 | sdk_build_prop_remove := \ |
| 303 | ro.build.user= \ |
| 304 | ro.build.host= \ |
| 305 | ro.product.brand= \ |
| 306 | ro.product.manufacturer= \ |
| 307 | ro.product.device= |
| 308 | # TODO: Remove this soon-to-be obsolete property |
| 309 | sdk_build_prop_remove += ro.build.product= |
| 310 | INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop |
| 311 | $(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET) |
| 312 | @echo SDK buildinfo: $@ |
| 313 | @mkdir -p $(dir $@) |
| 314 | $(hide) grep -v "$(subst $(space),\|,$(strip \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 315 | $(sdk_build_prop_remove)))" $< > $@.tmp |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 316 | $(hide) for x in $(strip $(sdk_build_prop_remove)); do \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 317 | echo "$$x"generic >> $@.tmp; done |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 318 | $(hide) mv $@.tmp $@ |
| 319 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 320 | $(call declare-0p-target,$(INSTALLED_SDK_BUILD_PROP_TARGET)) |
| 321 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 322 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 323 | # declare recovery ramdisk files |
| 324 | ifeq ($(BUILDING_RECOVERY_IMAGE),true) |
| 325 | INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP := $(call intermediates-dir-for,PACKAGING,recovery)/ramdisk_files-timestamp |
| 326 | endif |
| 327 | |
| 328 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 329 | # Declare vendor ramdisk fragments |
| 330 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := |
| 331 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 332 | ifeq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 333 | ifneq (,$(filter recovery,$(BOARD_VENDOR_RAMDISK_FRAGMENTS))) |
| 334 | $(error BOARD_VENDOR_RAMDISK_FRAGMENTS must not contain "recovery" if \ |
| 335 | BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT is set) |
| 336 | endif |
| 337 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += recovery |
| 338 | VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 339 | VENDOR_RAMDISK_FRAGMENT.recovery.FILES := $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 340 | BOARD_VENDOR_RAMDISK_FRAGMENT.recovery.MKBOOTIMG_ARGS += --ramdisk_type RECOVERY |
| 341 | .KATI_READONLY := VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR |
| 342 | endif |
| 343 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 344 | # Validation check and assign default --ramdisk_type. |
| 345 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 346 | $(if $(and $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 347 | $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)), \ |
| 348 | $(error Must not specify KERNEL_MODULE_DIRS for prebuilt vendor ramdisk fragment "$(vendor_ramdisk_fragment)": $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS))) \ |
| 349 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragment-stage-$(vendor_ramdisk_fragment))) \ |
| 350 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES :=) \ |
| 351 | $(if $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 352 | $(if $(filter --ramdisk_type,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)),, \ |
| 353 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_type DLKM))) \ |
| 354 | ) |
| 355 | |
| 356 | # Create the "kernel module directory" to "vendor ramdisk fragment" inverse mapping. |
| 357 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 358 | $(foreach kmd,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 359 | $(eval kmd_vrf := KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd)) \ |
| 360 | $(if $($(kmd_vrf)),$(error Kernel module directory "$(kmd)" belongs to multiple vendor ramdisk fragments: "$($(kmd_vrf))" "$(vendor_ramdisk_fragment)", each kernel module directory should belong to exactly one or none vendor ramdisk fragment)) \ |
| 361 | $(eval $(kmd_vrf) := $(vendor_ramdisk_fragment)) \ |
| 362 | ) \ |
| 363 | ) |
| 364 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += $(BOARD_VENDOR_RAMDISK_FRAGMENTS) |
| 365 | |
Yi-Yo Chiang | 378b779 | 2021-04-09 20:09:13 +0800 | [diff] [blame] | 366 | # Strip the list in case of any whitespace. |
| 367 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := \ |
| 368 | $(strip $(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)) |
| 369 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 370 | # Assign --ramdisk_name for each vendor ramdisk fragment. |
| 371 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
| 372 | $(if $(filter --ramdisk_name,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)), \ |
| 373 | $(error Must not specify --ramdisk_name for vendor ramdisk fragment: $(vendor_ramdisk_fragment))) \ |
| 374 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_name $(vendor_ramdisk_fragment)) \ |
| 375 | $(eval .KATI_READONLY := BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) \ |
| 376 | ) |
| 377 | |
| 378 | # ----------------------------------------------------------------- |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 379 | # kernel modules |
| 380 | |
| 381 | # Depmod requires a well-formed kernel version so 0.0 is used as a placeholder. |
| 382 | DEPMOD_STAGING_SUBDIR :=$= lib/modules/0.0 |
| 383 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 384 | define copy-and-strip-kernel-module |
| 385 | $(2): $(1) |
J. Avila | f758602 | 2020-06-19 20:42:17 +0000 | [diff] [blame] | 386 | $(LLVM_STRIP) -o $(2) --strip-debug $(1) |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 387 | endef |
| 388 | |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 389 | # $(1): modules list |
| 390 | # $(2): output dir |
| 391 | # $(3): mount point |
| 392 | # $(4): staging dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 393 | # $(5): module load list |
| 394 | # $(6): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 395 | # $(7): module archive |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 396 | # $(8): staging dir for stripped modules |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 397 | # $(9): module directory name |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 398 | # $(10): extra modules that might be dependency of modules in this partition, but should not be copied to output dir |
| 399 | # $(11): mount point for extra modules |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 400 | # Returns a list of src:dest pairs to install the modules using copy-many-files. |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 401 | define build-image-kernel-modules |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 402 | $(if $(9), \ |
| 403 | $(eval _dir := $(9)/), \ |
| 404 | $(eval _dir :=)) \ |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 405 | $(foreach module,$(1), \ |
| 406 | $(eval _src := $(module)) \ |
| 407 | $(if $(8), \ |
| 408 | $(eval _src := $(8)/$(notdir $(module))) \ |
| 409 | $(eval $(call copy-and-strip-kernel-module,$(module),$(_src)))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 410 | $(_src):$(2)/lib/modules/$(_dir)$(notdir $(module))) \ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 411 | $(eval $(call build-image-kernel-modules-depmod,$(1),$(3),$(4),$(5),$(6),$(7),$(2),$(9),$(10),$(11))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 412 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.dep:$(2)/lib/modules/$(_dir)modules.dep \ |
| 413 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.alias:$(2)/lib/modules/$(_dir)modules.alias \ |
| 414 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.softdep:$(2)/lib/modules/$(_dir)modules.softdep \ |
| 415 | $(4)/$(DEPMOD_STAGING_SUBDIR)/$(6):$(2)/lib/modules/$(_dir)$(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 416 | endef |
| 417 | |
| 418 | # $(1): modules list |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 419 | # $(2): mount point |
| 420 | # $(3): staging dir |
| 421 | # $(4): module load list |
| 422 | # $(5): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 423 | # $(6): module archive |
| 424 | # $(7): output dir |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 425 | # $(8): module directory name |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 426 | # $(9): extra modules which should not be copied to output dir, but might be dependency of modules in this partition |
| 427 | # $(10): mount point for extra modules |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 428 | # TODO(b/144844424): If a module archive is being used, this step (which |
| 429 | # generates obj/PACKAGING/.../modules.dep) also unzips the module archive into |
| 430 | # the output directory. This should be moved to a module with a |
| 431 | # LOCAL_POST_INSTALL_CMD so that if modules.dep is removed from the output dir, |
| 432 | # the archive modules are restored along with modules.dep. |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 433 | define build-image-kernel-modules-depmod |
Steve Muckle | 0f7bb1b | 2019-07-11 17:42:13 -0700 | [diff] [blame] | 434 | $(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] | 435 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(DEPMOD) |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 436 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULES := $(strip $(1)) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 437 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_EXTRA_MODULES := $(strip $(9)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 438 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MOUNT_POINT := $(2) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 439 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_EXTRA_MOUNT_POINT := $(10) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 440 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_DIR := $(3)/$(DEPMOD_STAGING_SUBDIR)/$(2)/lib/modules/$(8) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 441 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_EXTRA_MODULE_DIR := $(3)/$(DEPMOD_STAGING_SUBDIR)/$(10)/lib/modules/$(8) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 442 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_STAGING_DIR := $(3) |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 443 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_LOAD_MODULES := $(strip $(4)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 444 | $(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] | 445 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_ARCHIVE := $(6) |
| 446 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_OUTPUT_DIR := $(7) |
| 447 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(1) $(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 448 | @echo depmod $$(PRIVATE_STAGING_DIR) |
| 449 | rm -rf $$(PRIVATE_STAGING_DIR) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 450 | mkdir -p $$(PRIVATE_MODULE_DIR) |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 451 | $(if $(6),\ |
Colin Cross | c27d795 | 2020-07-11 22:33:30 -0700 | [diff] [blame] | 452 | unzip -qoDD -d $$(PRIVATE_MODULE_DIR) $$(PRIVATE_MODULE_ARCHIVE); \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 453 | mkdir -p $$(PRIVATE_OUTPUT_DIR)/lib; \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 454 | cp -r $(3)/$(DEPMOD_STAGING_SUBDIR)/$(2)/lib/modules $$(PRIVATE_OUTPUT_DIR)/lib/; \ |
Rashid Zaman | c462446 | 2023-07-04 22:43:15 -0700 | [diff] [blame] | 455 | find $$(PRIVATE_MODULE_DIR) -type f -name '*.ko' | xargs basename -a > $$(PRIVATE_LOAD_FILE); \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 456 | ) |
| 457 | $(if $(1),\ |
| 458 | cp $$(PRIVATE_MODULES) $$(PRIVATE_MODULE_DIR)/; \ |
| 459 | for MODULE in $$(PRIVATE_LOAD_MODULES); do \ |
| 460 | basename $$$$MODULE >> $$(PRIVATE_LOAD_FILE); \ |
| 461 | done; \ |
| 462 | ) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 463 | # The ln -sf + find -delete sequence is to remove any modules in |
| 464 | # PRIVATE_EXTRA_MODULES which have same basename as MODULES in PRIVATE_MODULES |
| 465 | # Basically, it computes a set difference. When there is a duplicate module |
| 466 | # present in both directories, we want modules in PRIVATE_MODULES to take |
| 467 | # precedence. Since depmod does not provide any guarantee about ordering of |
| 468 | # dependency resolution, we achieve this by maually removing any duplicate |
| 469 | # modules with lower priority. |
| 470 | $(if $(9),\ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 471 | mkdir -p $$(PRIVATE_EXTRA_MODULE_DIR); \ |
Kelvin Zhang | 21b6cad | 2022-12-06 16:03:30 -0800 | [diff] [blame] | 472 | find $$(PRIVATE_EXTRA_MODULE_DIR) -maxdepth 1 -type f -name "*.ko" -delete; \ |
| 473 | cp $$(PRIVATE_EXTRA_MODULES) $$(PRIVATE_EXTRA_MODULE_DIR); \ |
| 474 | ln -sf $$(PRIVATE_MODULE_DIR)/*.ko $$(PRIVATE_EXTRA_MODULE_DIR); \ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 475 | find $$(PRIVATE_EXTRA_MODULE_DIR) -type l -delete; \ |
| 476 | ) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 477 | $(DEPMOD) -b $$(PRIVATE_STAGING_DIR) 0.0 |
| 478 | # Turn paths in modules.dep into absolute paths |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 479 | sed -i.tmp -e 's|\([^: ]*lib/modules/[^: ]*\)|/\1|g' $$(PRIVATE_STAGING_DIR)/$$(DEPMOD_STAGING_SUBDIR)/modules.dep |
| 480 | touch $$(PRIVATE_LOAD_FILE) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 481 | endef |
| 482 | |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 483 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 484 | # $(2): modules list |
| 485 | # $(3): module load list |
| 486 | # $(4): module load list filename |
| 487 | # $(5): output dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 488 | define module-load-list-copy-paths |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 489 | $(eval $(call build-image-module-load-list,$(1),$(2),$(3),$(4))) \ |
| 490 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4):$(5)/lib/modules/$(4) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 491 | endef |
| 492 | |
| 493 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 494 | # $(2): modules list |
| 495 | # $(3): module load list |
| 496 | # $(4): module load list filename |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 497 | define build-image-module-load-list |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 498 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): PRIVATE_LOAD_MODULES := $(3) |
| 499 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): $(2) |
| 500 | @echo load-list $$(@) |
| 501 | @echo '$$(strip $$(notdir $$(PRIVATE_LOAD_MODULES)))' | tr ' ' '\n' > $$(@) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 502 | endef |
| 503 | |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 504 | # $(1): source options file |
| 505 | # $(2): destination pathname |
| 506 | # Returns a build rule that checks the syntax of and installs a kernel modules |
| 507 | # options file. Strip and squeeze any extra space and blank lines. |
| 508 | # For use via $(eval). |
| 509 | define build-image-kernel-modules-options-file |
| 510 | $(2): $(1) |
| 511 | @echo "libmodprobe options $$(@)" |
| 512 | $(hide) mkdir -p "$$(dir $$@)" |
| 513 | $(hide) rm -f "$$@" |
| 514 | $(hide) awk <"$$<" >"$$@" \ |
| 515 | '/^#/ { print; next } \ |
| 516 | NF == 0 { next } \ |
| 517 | NF < 2 || $$$$1 != "options" \ |
| 518 | { print "Invalid options line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 519 | exit_status = 1; next } \ |
| 520 | { $$$$1 = $$$$1; print } \ |
| 521 | END { exit exit_status }' |
| 522 | endef |
| 523 | |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 524 | # $(1): source blocklist file |
| 525 | # $(2): destination pathname |
| 526 | # Returns a build rule that checks the syntax of and installs a kernel modules |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 527 | # blocklist file. Strip and squeeze any extra space and blank lines. |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 528 | # For use via $(eval). |
| 529 | define build-image-kernel-modules-blocklist-file |
| 530 | $(2): $(1) |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 531 | @echo "libmodprobe blocklist $$(@)" |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 532 | $(hide) mkdir -p "$$(dir $$@)" |
| 533 | $(hide) rm -f "$$@" |
| 534 | $(hide) awk <"$$<" >"$$@" \ |
| 535 | '/^#/ { print; next } \ |
| 536 | NF == 0 { next } \ |
| 537 | NF != 2 || $$$$1 != "blocklist" \ |
| 538 | { print "Invalid blocklist line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 539 | exit_status = 1; next } \ |
| 540 | { $$$$1 = $$$$1; print } \ |
| 541 | END { exit exit_status }' |
| 542 | endef |
| 543 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 544 | # $(1): image name |
| 545 | # $(2): build output directory (TARGET_OUT_VENDOR, TARGET_RECOVERY_ROOT_OUT, etc) |
| 546 | # $(3): mount point |
| 547 | # $(4): module load filename |
| 548 | # $(5): stripped staging directory |
| 549 | # $(6): kernel module directory name (top is an out of band value for no directory) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 550 | # $(7): list of extra modules that might be dependency of modules in this partition |
| 551 | # $(8): mount point for extra modules. e.g. system |
| 552 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 553 | define build-image-kernel-modules-dir |
| 554 | $(if $(filter top,$(6)),\ |
| 555 | $(eval _kver :=)$(eval _sep :=),\ |
| 556 | $(eval _kver := $(6))$(eval _sep :=_))\ |
| 557 | $(if $(5),\ |
| 558 | $(eval _stripped_staging_dir := $(5)$(_sep)$(_kver)),\ |
| 559 | $(eval _stripped_staging_dir :=))\ |
| 560 | $(if $(strip $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver))$(BOARD_$(1)_KERNEL_MODULES_ARCHIVE$(_sep)$(_kver))),\ |
| 561 | $(if $(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver)),,\ |
| 562 | $(eval BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver) := $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver)))) \ |
Kelvin Zhang | b66b11e | 2022-12-05 13:04:42 -0800 | [diff] [blame] | 563 | $(if $(filter false,$(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver))),\ |
| 564 | $(eval BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver) :=),) \ |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 565 | $(eval _files := $(call build-image-kernel-modules,$(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver)),$(2),$(3),$(call intermediates-dir-for,PACKAGING,depmod_$(1)$(_sep)$(_kver)),$(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver)),$(4),$(BOARD_$(1)_KERNEL_MODULES_ARCHIVE$(_sep)$(_kver)),$(_stripped_staging_dir),$(_kver),$(7),$(8))) \ |
| 566 | $(call copy-many-files,$(_files)) \ |
| 567 | $(eval _modules := $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver)) ANDROID-GEN ANDROID-GEN ANDROID-GEN ANDROID-GEN) \ |
| 568 | $(eval KERNEL_MODULE_COPY_FILES += $(join $(addsuffix :,$(_modules)),$(_files)))) \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 569 | $(if $(_kver), \ |
| 570 | $(eval _dir := $(_kver)/), \ |
| 571 | $(eval _dir :=)) \ |
| 572 | $(if $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 573 | $(eval $(call build-image-kernel-modules-options-file, \ |
| 574 | $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 575 | $(2)/lib/modules/$(_dir)modules.options)) \ |
| 576 | $(2)/lib/modules/$(_dir)modules.options) \ |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 577 | $(if $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
| 578 | $(eval $(call build-image-kernel-modules-blocklist-file, \ |
| 579 | $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 580 | $(2)/lib/modules/$(_dir)modules.blocklist)) \ |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 581 | $(eval ALL_KERNEL_MODULES_BLOCKLIST += $(2)/lib/modules/$(_dir)modules.blocklist) \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 582 | $(2)/lib/modules/$(_dir)modules.blocklist) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 583 | endef |
| 584 | |
| 585 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 586 | define build-recovery-as-boot-load |
| 587 | $(if $(filter top,$(1)),\ |
| 588 | $(eval _kver :=)$(eval _sep :=),\ |
| 589 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 590 | $(if $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 591 | $(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,ramdisk_module_list$(_sep)$(_kver)),$(BOARD_GENERIC_RAMDISK_KERNEL_MODULES$(_sep)$(_kver)),$(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD$(_sep)$(_kver)),modules.load,$(TARGET_RECOVERY_ROOT_OUT)))) |
| 592 | endef |
| 593 | |
| 594 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 595 | define build-vendor-ramdisk-recovery-load |
| 596 | $(if $(filter top,$(1)),\ |
| 597 | $(eval _kver :=)$(eval _sep :=),\ |
| 598 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 599 | $(if $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 600 | $(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,vendor_ramdisk_recovery_module_list$(_sep)$(_kver)),$(BOARD_VENDOR_RAMDISK_KERNEL_MODULES$(_sep)$(_kver)),$(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),modules.load.recovery,$(TARGET_VENDOR_RAMDISK_OUT)))) |
| 601 | endef |
| 602 | |
Mark Salyzyn | 46a9c02 | 2020-06-25 04:35:16 -0700 | [diff] [blame] | 603 | # $(1): kernel module directory name (top is an out of band value for no directory) |
Isaac J. Manjarres | 3a7fe91 | 2023-01-25 17:28:59 -0800 | [diff] [blame] | 604 | define build-vendor-kernel-ramdisk-recovery-load |
| 605 | $(if $(filter top,$(1)),\ |
| 606 | $(eval _kver :=)$(eval _sep :=),\ |
| 607 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 608 | $(if $(BOARD_VENDOR_KERNEL_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 609 | $(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,vendor_kernel_ramdisk_recovery_module_list$(_sep)$(_kver)),$(BOARD_VENDOR_KERNEL_RAMDISK_KERNEL_MODULES$(_sep)$(_kver)),$(BOARD_VENDOR_KERNEL_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),modules.load.recovery,$(TARGET_VENDOR_KERNEL_RAMDISK_OUT)))) |
| 610 | endef |
| 611 | |
| 612 | # $(1): kernel module directory name (top is an out of band value for no directory) |
Mark Salyzyn | 46a9c02 | 2020-06-25 04:35:16 -0700 | [diff] [blame] | 613 | define build-vendor-charger-load |
| 614 | $(if $(filter top,$(1)),\ |
| 615 | $(eval _kver :=)$(eval _sep :=),\ |
| 616 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 617 | $(if $(BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 618 | $(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,vendor_charger_module_list$(_sep)$(_kver)),$(BOARD_VENDOR_CHARGER_KERNEL_MODULES$(_sep)$(_kver)),$(BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),modules.load.charger,$(TARGET_OUT_VENDOR)))) |
| 619 | endef |
| 620 | |
Isaac J. Manjarres | 64fa9a3 | 2023-04-24 15:58:56 -0700 | [diff] [blame] | 621 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 622 | define build-vendor-ramdisk-charger-load |
| 623 | $(if $(filter top,$(1)),\ |
| 624 | $(eval _kver :=)$(eval _sep :=),\ |
| 625 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 626 | $(if $(BOARD_VENDOR_RAMDISK_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 627 | $(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,vendor_ramdisk_charger_module_list$(_sep)$(_kver)),$(BOARD_VENDOR_RAMDISK_KERNEL_MODULES$(_sep)$(_kver)),$(BOARD_VENDOR_RAMDISK_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),modules.load.charger,$(TARGET_VENDOR_RAMDISK_OUT)))) |
| 628 | endef |
| 629 | |
| 630 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 631 | define build-vendor-kernel-ramdisk-charger-load |
| 632 | $(if $(filter top,$(1)),\ |
| 633 | $(eval _kver :=)$(eval _sep :=),\ |
| 634 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 635 | $(if $(BOARD_VENDOR_KERNEL_RAMDISK_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 636 | $(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,vendor_kernel_ramdisk_charger_module_list$(_sep)$(_kver)),$(BOARD_VENDOR_KERNEL_RAMDISK_KERNEL_MODULES$(_sep)$(_kver)),$(BOARD_VENDOR_KERNEL_RAMDISK_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),modules.load.charger,$(TARGET_VENDOR_KERNEL_RAMDISK_OUT)))) |
| 637 | endef |
| 638 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 639 | ifneq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 640 | # If there is no vendor boot partition, store vendor ramdisk kernel modules in the |
| 641 | # boot ramdisk. |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 642 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 643 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD) |
| 644 | endif |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 645 | |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 646 | ifeq ($(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD),) |
| 647 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD := $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 648 | endif |
| 649 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 650 | ifneq ($(strip $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES)),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 651 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT), true) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 652 | BOARD_RECOVERY_KERNEL_MODULES += $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 653 | endif |
| 654 | endif |
| 655 | |
Mark-PK Tsai | 8c54396 | 2021-08-23 18:01:51 +0800 | [diff] [blame] | 656 | ifneq ($(BOARD_DO_NOT_STRIP_RECOVERY_MODULES),true) |
| 657 | RECOVERY_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_recovery_stripped) |
| 658 | else |
| 659 | RECOVERY_STRIPPED_MODULE_STAGING_DIR := |
| 660 | endif |
| 661 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 662 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_MODULES),true) |
| 663 | VENDOR_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_stripped) |
| 664 | else |
| 665 | VENDOR_STRIPPED_MODULE_STAGING_DIR := |
| 666 | endif |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 667 | |
Pierre Couillaud | d99da8f | 2020-06-02 13:13:32 -0700 | [diff] [blame] | 668 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_RAMDISK_MODULES),true) |
| 669 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_ramdisk_stripped) |
| 670 | else |
| 671 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 672 | endif |
| 673 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 674 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_KERNEL_RAMDISK_MODULES),true) |
| 675 | VENDOR_KERNEL_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_kernel_ramdisk_stripped) |
| 676 | else |
| 677 | VENDOR_KERNEL_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 678 | endif |
| 679 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 680 | BOARD_KERNEL_MODULE_DIRS += top |
Kelvin Zhang | 395d3df | 2022-12-07 10:36:10 -0800 | [diff] [blame] | 681 | |
| 682 | # Default to not generating modules.dep for kernel modules on system |
| 683 | # side. We should only load these modules if they are depended by vendor |
| 684 | # side modules. |
| 685 | ifeq ($(BOARD_SYSTEM_KERNEL_MODULES_LOAD),) |
| 686 | BOARD_SYSTEM_KERNEL_MODULES_LOAD := false |
| 687 | endif |
| 688 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 689 | $(foreach kmd,$(BOARD_KERNEL_MODULE_DIRS), \ |
Mark-PK Tsai | 8c54396 | 2021-08-23 18:01:51 +0800 | [diff] [blame] | 690 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,RECOVERY,$(TARGET_RECOVERY_ROOT_OUT),,modules.load.recovery,$(RECOVERY_STRIPPED_MODULE_STAGING_DIR),$(kmd))) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 691 | $(eval vendor_ramdisk_fragment := $(KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd))) \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 692 | $(if $(vendor_ramdisk_fragment), \ |
| 693 | $(eval output_dir := $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR)) \ |
| 694 | $(eval result_var := VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES) \ |
| 695 | $(eval ### else ###), \ |
| 696 | $(eval output_dir := $(TARGET_VENDOR_RAMDISK_OUT)) \ |
| 697 | $(eval result_var := ALL_DEFAULT_INSTALLED_MODULES)) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 698 | $(eval $(result_var) += $(call build-image-kernel-modules-dir,VENDOR_RAMDISK,$(output_dir),,modules.load,$(VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR),$(kmd))) \ |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 699 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,VENDOR_KERNEL_RAMDISK,$(TARGET_VENDOR_KERNEL_RAMDISK_OUT),,modules.load,$(VENDOR_KERNEL_RAMDISK_STRIPPED_MODULE_STAGING_DIR),$(kmd))) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 700 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-ramdisk-recovery-load,$(kmd))) \ |
Isaac J. Manjarres | 3a7fe91 | 2023-01-25 17:28:59 -0800 | [diff] [blame] | 701 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-kernel-ramdisk-recovery-load,$(kmd))) \ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 702 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,VENDOR,$(if $(filter true,$(BOARD_USES_VENDOR_DLKMIMAGE)),$(TARGET_OUT_VENDOR_DLKM),$(TARGET_OUT_VENDOR)),vendor,modules.load,$(VENDOR_STRIPPED_MODULE_STAGING_DIR),$(kmd),$(BOARD_SYSTEM_KERNEL_MODULES),system)) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 703 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-charger-load,$(kmd))) \ |
Isaac J. Manjarres | 64fa9a3 | 2023-04-24 15:58:56 -0700 | [diff] [blame] | 704 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-ramdisk-charger-load,$(kmd))) \ |
| 705 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-kernel-ramdisk-charger-load,$(kmd))) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 706 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,ODM,$(if $(filter true,$(BOARD_USES_ODM_DLKMIMAGE)),$(TARGET_OUT_ODM_DLKM),$(TARGET_OUT_ODM)),odm,modules.load,,$(kmd))) \ |
Ramji Jiyani | 49b70b6 | 2022-12-01 00:55:10 +0000 | [diff] [blame] | 707 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,SYSTEM,$(if $(filter true,$(BOARD_USES_SYSTEM_DLKMIMAGE)),$(TARGET_OUT_SYSTEM_DLKM),$(TARGET_OUT_SYSTEM)),system,modules.load,,$(kmd))) \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 708 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 709 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-recovery-as-boot-load,$(kmd))),\ |
| 710 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,GENERIC_RAMDISK,$(TARGET_RAMDISK_OUT),,modules.load,,$(kmd))))) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 711 | |
Kelvin Zhang | 0dbfd70 | 2023-01-31 10:47:48 -0800 | [diff] [blame] | 712 | ifeq ($(BOARD_SYSTEM_KERNEL_MODULES),) |
| 713 | ifneq ($(BOARD_SYSTEM_DLKM_SRC),) |
| 714 | ifneq ($(wildcard $(BOARD_SYSTEM_DLKM_SRC)/*),) |
Kelvin Zhang | 19961b5 | 2023-02-14 14:30:48 -0800 | [diff] [blame] | 715 | SYSTEM_KERNEL_MODULES := $(shell find $(BOARD_SYSTEM_DLKM_SRC) -type f) |
| 716 | SRC_SYSTEM_KERNEL_MODULES := $(SYSTEM_KERNEL_MODULES) |
| 717 | DST_SYSTEM_KERNEL_MODULES := $(patsubst $(BOARD_SYSTEM_DLKM_SRC)/%,:$(TARGET_OUT_SYSTEM_DLKM)/%,$(SRC_SYSTEM_KERNEL_MODULES)) |
Kelvin Zhang | 0dbfd70 | 2023-01-31 10:47:48 -0800 | [diff] [blame] | 718 | SYSTEM_KERNEL_MODULE_COPY_PAIRS := $(join $(SRC_SYSTEM_KERNEL_MODULES),$(DST_SYSTEM_KERNEL_MODULES)) |
| 719 | ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(SYSTEM_KERNEL_MODULE_COPY_PAIRS)) |
| 720 | endif |
| 721 | endif |
| 722 | endif |
| 723 | |
| 724 | |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 725 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 726 | # Cert-to-package mapping. Used by the post-build signing tools. |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 727 | # Use a macro to add newline to each echo command |
Jiyong Park | 7b96c59 | 2020-05-01 10:29:09 +0900 | [diff] [blame] | 728 | # $1 stem name of the package |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 729 | # $2 certificate |
| 730 | # $3 private key |
| 731 | # $4 compressed |
| 732 | # $5 partition tag |
| 733 | # $6 output file |
Narayan Kamath | 6a4bd69 | 2017-08-14 10:53:50 +0100 | [diff] [blame] | 734 | define _apkcerts_write_line |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 735 | $(hide) echo -n 'name="$(1).apk" certificate="$2" private_key="$3"' >> $6 |
| 736 | $(if $(4), $(hide) echo -n ' compressed="$4"' >> $6) |
| 737 | $(if $(5), $(hide) echo -n ' partition="$5"' >> $6) |
| 738 | $(hide) echo '' >> $6 |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 739 | |
| 740 | endef |
| 741 | |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 742 | # ----------------------------------------------------------------- |
| 743 | # Merge an individual apkcerts output into the final apkcerts.txt output. |
| 744 | # Use a macro to make it compatible with _apkcerts_write_line |
| 745 | # $1 apkcerts file to be merged |
| 746 | # $2 output file |
| 747 | define _apkcerts_merge |
| 748 | $(hide) cat $1 >> $2 |
| 749 | |
| 750 | endef |
| 751 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 752 | name := $(TARGET_PRODUCT) |
| 753 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 754 | name := $(name)_debug |
| 755 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 756 | name := $(name)-apkcerts |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 757 | intermediates := \ |
| 758 | $(call intermediates-dir-for,PACKAGING,apkcerts) |
| 759 | APKCERTS_FILE := $(intermediates)/$(name).txt |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 760 | all_apkcerts_files := $(sort $(foreach p,$(PACKAGES),$(PACKAGES.$(p).APKCERTS_FILE))) |
| 761 | $(APKCERTS_FILE): $(all_apkcerts_files) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 762 | # We don't need to really build all the modules. |
| 763 | # TODO: rebuild APKCERTS_FILE if any app change its cert. |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 764 | $(APKCERTS_FILE): |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 765 | @echo APK certs list: $@ |
| 766 | @mkdir -p $(dir $@) |
| 767 | @rm -f $@ |
Chris Gross | fabf50a | 2019-05-02 12:42:09 -0700 | [diff] [blame] | 768 | $(foreach p,$(sort $(PACKAGES)),\ |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 769 | $(if $(PACKAGES.$(p).APKCERTS_FILE),\ |
| 770 | $(call _apkcerts_merge,$(PACKAGES.$(p).APKCERTS_FILE), $@),\ |
| 771 | $(if $(PACKAGES.$(p).EXTERNAL_KEY),\ |
Jaewoong Jung | 7b634d3 | 2020-10-23 14:02:16 -0700 | [diff] [blame] | 772 | $(call _apkcerts_write_line,$(PACKAGES.$(p).STEM),EXTERNAL,,$(PACKAGES.$(p).COMPRESSED),$(PACKAGES.$(p).PARTITION),$@),\ |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 773 | $(call _apkcerts_write_line,$(PACKAGES.$(p).STEM),$(PACKAGES.$(p).CERTIFICATE),$(PACKAGES.$(p).PRIVATE_KEY),$(PACKAGES.$(p).COMPRESSED),$(PACKAGES.$(p).PARTITION),$@)))) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 774 | $(if $(filter true,$(PRODUCT_FSVERITY_GENERATE_METADATA)),\ |
| 775 | $(call _apkcerts_write_line,BuildManifest,$(FSVERITY_APK_KEY_PATH).x509.pem,$(FSVERITY_APK_KEY_PATH).pk8,,system,$@) \ |
| 776 | $(if $(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),\ |
Victor Hsieh | adc94a1 | 2022-09-20 11:46:09 -0700 | [diff] [blame] | 777 | $(call _apkcerts_write_line,BuildManifestSystemExt,$(FSVERITY_APK_KEY_PATH).x509.pem,$(FSVERITY_APK_KEY_PATH).pk8,,system_ext,$@))) |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 778 | # In case value of PACKAGES is empty. |
Ying Wang | f272cd6 | 2011-09-26 12:05:06 -0700 | [diff] [blame] | 779 | $(hide) touch $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 780 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 781 | $(call declare-0p-target,$(APKCERTS_FILE)) |
| 782 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 783 | .PHONY: apkcerts-list |
| 784 | apkcerts-list: $(APKCERTS_FILE) |
| 785 | |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 786 | ifneq (,$(TARGET_BUILD_APPS)) |
| 787 | $(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt) |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 788 | $(call dist-for-goals, apps_only, $(SOONG_APEX_KEYS_FILE):apexkeys.txt) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 789 | endif |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 790 | |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 791 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 792 | # ----------------------------------------------------------------- |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 793 | # build system stats |
| 794 | BUILD_SYSTEM_STATS := $(PRODUCT_OUT)/build_system_stats.txt |
| 795 | $(BUILD_SYSTEM_STATS): |
| 796 | @rm -f $@ |
| 797 | @$(foreach s,$(STATS.MODULE_TYPE),echo "modules_type_make,$(s),$(words $(STATS.MODULE_TYPE.$(s)))" >>$@;) |
| 798 | @$(foreach s,$(STATS.SOONG_MODULE_TYPE),echo "modules_type_soong,$(s),$(STATS.SOONG_MODULE_TYPE.$(s))" >>$@;) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 799 | $(call declare-1p-target,$(BUILD_SYSTEM_STATS),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 800 | $(call dist-for-goals,droidcore-unbundled,$(BUILD_SYSTEM_STATS)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 801 | |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 802 | # ----------------------------------------------------------------- |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 803 | # build /product/etc/security/avb/system_other.avbpubkey if needed |
| 804 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 805 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 806 | INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET := $(TARGET_OUT_PRODUCT_ETC)/security/avb/system_other.avbpubkey |
| 807 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET) |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 808 | endif # BOARD_AVB_ENABLE |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 809 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 810 | |
| 811 | # ----------------------------------------------------------------- |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 812 | # Modules ready to be converted to Soong, ordered by how many |
| 813 | # modules depend on them. |
| 814 | SOONG_CONV := $(sort $(SOONG_CONV)) |
| 815 | SOONG_CONV_DATA := $(call intermediates-dir-for,PACKAGING,soong_conversion)/soong_conv_data |
| 816 | $(SOONG_CONV_DATA): |
| 817 | @rm -f $@ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 818 | @$(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))),$(sort $(SOONG_CONV.$(s).MAKEFILES)),$(sort $(SOONG_CONV.$(s).INSTALLED))" >>$@;) |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 819 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 820 | $(call declare-1p-target,$(SOONG_CONV_DATA),build) |
| 821 | |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 822 | SOONG_TO_CONVERT_SCRIPT := build/make/tools/soong_to_convert.py |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 823 | SOONG_TO_CONVERT := $(PRODUCT_OUT)/soong_to_convert.txt |
| 824 | $(SOONG_TO_CONVERT): $(SOONG_CONV_DATA) $(SOONG_TO_CONVERT_SCRIPT) |
| 825 | @rm -f $@ |
| 826 | $(hide) $(SOONG_TO_CONVERT_SCRIPT) $< >$@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 827 | $(call declare-1p-target,$(SOONG_TO_CONVERT),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 828 | $(call dist-for-goals,droidcore-unbundled,$(SOONG_TO_CONVERT)) |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 829 | |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 830 | $(PRODUCT_OUT)/product_packages.txt: |
| 831 | @rm -f $@ |
| 832 | echo "" > $@ |
| 833 | $(foreach x,$(PRODUCT_PACKAGES),echo $(x) >> $@$(newline)) |
| 834 | |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 835 | MK2BP_CATALOG_SCRIPT := build/make/tools/mk2bp_catalog.py |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 836 | PRODUCT_PACKAGES_TXT := $(PRODUCT_OUT)/product_packages.txt |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 837 | MK2BP_REMAINING_HTML := $(PRODUCT_OUT)/mk2bp_remaining.html |
| 838 | $(MK2BP_REMAINING_HTML): PRIVATE_CODE_SEARCH_BASE_URL := "https://cs.android.com/android/platform/superproject/+/master:" |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 839 | $(MK2BP_REMAINING_HTML): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) $(PRODUCT_PACKAGES_TXT) |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 840 | @rm -f $@ |
| 841 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 842 | --device=$(TARGET_DEVICE) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 843 | --product-packages=$(PRODUCT_PACKAGES_TXT) \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 844 | --title="Remaining Android.mk files for $(TARGET_DEVICE)-$(TARGET_BUILD_VARIANT)" \ |
| 845 | --codesearch=$(PRIVATE_CODE_SEARCH_BASE_URL) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 846 | --out-dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 847 | --mode=html \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 848 | > $@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 849 | $(call declare-1p-target,$(MK2BP_REMAINING_HTML),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 850 | $(call dist-for-goals,droidcore-unbundled,$(MK2BP_REMAINING_HTML)) |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 851 | |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 852 | MK2BP_REMAINING_CSV := $(PRODUCT_OUT)/mk2bp_remaining.csv |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 853 | $(MK2BP_REMAINING_CSV): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) $(PRODUCT_PACKAGES_TXT) |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 854 | @rm -f $@ |
| 855 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 856 | --device=$(TARGET_DEVICE) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 857 | --product-packages=$(PRODUCT_PACKAGES_TXT) \ |
| 858 | --out-dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 859 | --mode=csv \ |
| 860 | > $@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 861 | $(call declare-1p-target,$(MK2BP_REMAINING_CSV)) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 862 | $(call dist-for-goals,droidcore-unbundled,$(MK2BP_REMAINING_CSV)) |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 863 | |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 864 | # ----------------------------------------------------------------- |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 865 | # Modules use -Wno-error, or added default -Wall -Werror |
| 866 | WALL_WERROR := $(PRODUCT_OUT)/wall_werror.txt |
| 867 | $(WALL_WERROR): |
| 868 | @rm -f $@ |
| 869 | echo "# Modules using -Wno-error" >> $@ |
| 870 | for m in $(sort $(SOONG_MODULES_USING_WNO_ERROR) $(MODULES_USING_WNO_ERROR)); do echo $$m >> $@; done |
Yi Kong | ee99ddf | 2022-05-19 20:13:55 +0800 | [diff] [blame] | 871 | echo "# Modules that allow warnings" >> $@ |
| 872 | for m in $(sort $(SOONG_MODULES_WARNINGS_ALLOWED) $(MODULES_WARNINGS_ALLOWED)); do echo $$m >> $@; done |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 873 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 874 | $(call declare-0p-target,$(WALL_WERROR)) |
| 875 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 876 | $(call dist-for-goals,droidcore-unbundled,$(WALL_WERROR)) |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 877 | |
| 878 | # ----------------------------------------------------------------- |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 879 | # Modules missing profile files |
| 880 | PGO_PROFILE_MISSING := $(PRODUCT_OUT)/pgo_profile_file_missing.txt |
| 881 | $(PGO_PROFILE_MISSING): |
| 882 | @rm -f $@ |
| 883 | echo "# Modules missing PGO profile files" >> $@ |
| 884 | for m in $(SOONG_MODULES_MISSING_PGO_PROFILE_FILE); do echo $$m >> $@; done |
| 885 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 886 | $(call declare-0p-target,$(PGO_PROFILE_MISSING)) |
| 887 | |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 888 | $(call dist-for-goals,droidcore,$(PGO_PROFILE_MISSING)) |
| 889 | |
Anton Hansson | cd8fa36 | 2020-12-08 20:56:02 +0000 | [diff] [blame] | 890 | CERTIFICATE_VIOLATION_MODULES_FILENAME := $(PRODUCT_OUT)/certificate_violation_modules.txt |
| 891 | $(CERTIFICATE_VIOLATION_MODULES_FILENAME): |
| 892 | rm -f $@ |
| 893 | $(foreach m,$(sort $(CERTIFICATE_VIOLATION_MODULES)), echo $(m) >> $@;) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 894 | $(call declare-0p-target,$(CERTIFICATE_VIOLATION_MODULES_FILENAME)) |
Anton Hansson | cd8fa36 | 2020-12-08 20:56:02 +0000 | [diff] [blame] | 895 | $(call dist-for-goals,droidcore,$(CERTIFICATE_VIOLATION_MODULES_FILENAME)) |
| 896 | |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 897 | # ----------------------------------------------------------------- |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 898 | # 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] | 899 | # for future OTA packages installed by this system. Actual product |
| 900 | # deliverables will be re-signed by hand. We expect this file to |
| 901 | # exist with the suffixes ".x509.pem" and ".pk8". |
Colin Cross | 21122f9 | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 902 | DEFAULT_KEY_CERT_PAIR := $(strip $(DEFAULT_SYSTEM_DEV_CERTIFICATE)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 903 | |
| 904 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 905 | # 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] | 906 | # if they don't do anything. |
| 907 | .PHONY: systemimage |
| 908 | systemimage: |
| 909 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 910 | # ----------------------------------------------------------------- |
| 911 | |
| 912 | .PHONY: event-log-tags |
| 913 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 914 | # Produce an event logs tag file for everything we know about, in order |
| 915 | # to properly allocate numbers. Then produce a file that's filtered |
| 916 | # for what's going to be installed. |
| 917 | |
| 918 | all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt |
| 919 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 920 | event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags |
| 921 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 922 | # Include tags from all packages that we know about |
| 923 | all_event_log_tags_src := \ |
| 924 | $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS))) |
| 925 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 926 | $(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src) |
| 927 | $(all_event_log_tags_file): $(all_event_log_tags_src) $(MERGETAGS) build/make/tools/event_log_tags.py |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 928 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 929 | $(hide) $(MERGETAGS) -o $@ $(PRIVATE_SRC_FILES) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 930 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 931 | $(call declare-0p-target,$(all_event_log_tags_file)) |
| 932 | |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 933 | # Include tags from all packages included in this product, plus all |
| 934 | # tags that are part of the system (ie, not in a vendor/ or device/ |
| 935 | # directory). |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 936 | event_log_tags_src := \ |
| 937 | $(sort $(foreach m,\ |
Yo Chiang | 5e85bfe | 2020-05-13 20:19:05 +0800 | [diff] [blame] | 938 | $(call resolve-bitness-for-modules,TARGET,$(PRODUCT_PACKAGES)) \ |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 939 | $(call module-names-for-tag-list,user), \ |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 940 | $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \ |
| 941 | $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src))) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 942 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 943 | $(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 944 | $(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file) |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 945 | $(event_log_tags_file): $(event_log_tags_src) $(all_event_log_tags_file) $(MERGETAGS) build/make/tools/event_log_tags.py |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 946 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 947 | $(hide) $(MERGETAGS) -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 948 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 949 | $(eval $(call declare-0p-target,$(event_log_tags_file))) |
| 950 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 951 | event-log-tags: $(event_log_tags_file) |
| 952 | |
| 953 | ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file) |
| 954 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 955 | # Initialize INSTALLED_FILES_OUTSIDE_IMAGES with the list of all device files, |
| 956 | # files installed in images will be filtered out later. |
| 957 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out \ |
| 958 | $(PRODUCT_OUT)/apex/% \ |
Colin Cross | 41e93ea | 2022-03-25 17:31:49 -0700 | [diff] [blame] | 959 | $(PRODUCT_OUT)/fake_packages/% \ |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 960 | $(PRODUCT_OUT)/testcases/%, \ |
| 961 | $(filter $(PRODUCT_OUT)/%,$(ALL_DEFAULT_INSTALLED_MODULES))) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 962 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 963 | # ################################################################# |
| 964 | # Targets for boot/OS images |
| 965 | # ################################################################# |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 966 | ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true) |
| 967 | INSTALLED_BOOTLOADER_MODULE := $(PRODUCT_OUT)/bootloader |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 968 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 969 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_BOOTLOADER),$(INSTALLED_BOOTLOADER_MODULE))) |
| 970 | $(call dist-for-goals,dist_files,$(INSTALLED_BOOTLOADER_MODULE)) |
| 971 | endif # BOARD_PREBUILT_BOOTLOADER |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 972 | ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true) |
| 973 | INSTALLED_2NDBOOTLOADER_TARGET := $(PRODUCT_OUT)/2ndbootloader |
| 974 | else |
| 975 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 976 | endif |
| 977 | else |
| 978 | INSTALLED_BOOTLOADER_MODULE := |
| 979 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 980 | endif # TARGET_NO_BOOTLOADER |
| 981 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 982 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 983 | INSTALLED_KERNEL_TARGET := $(foreach k,$(BOARD_KERNEL_BINARIES), \ |
| 984 | $(PRODUCT_OUT)/$(k)) |
| 985 | else |
| 986 | INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel |
| 987 | endif |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 988 | else |
| 989 | INSTALLED_KERNEL_TARGET := |
| 990 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 991 | |
| 992 | # ----------------------------------------------------------------- |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 993 | # the root dir |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 994 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_ROOT_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 995 | INTERNAL_ROOT_FILES := $(filter $(TARGET_ROOT_OUT)/%, \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 996 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 997 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 998 | |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 999 | INSTALLED_FILES_FILE_ROOT := $(PRODUCT_OUT)/installed-files-root.txt |
| 1000 | INSTALLED_FILES_JSON_ROOT := $(INSTALLED_FILES_FILE_ROOT:.txt=.json) |
| 1001 | $(INSTALLED_FILES_FILE_ROOT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ROOT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1002 | $(INSTALLED_FILES_FILE_ROOT) : $(INTERNAL_ROOT_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 1003 | @echo Installed file list: $@ |
SzuWei Lin | c230b0b | 2021-12-30 13:48:01 +0800 | [diff] [blame] | 1004 | mkdir -p $(TARGET_ROOT_OUT) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1005 | mkdir -p $(dir $@) |
| 1006 | rm -f $@ |
| 1007 | $(FILESLIST) $(TARGET_ROOT_OUT) > $(@:.txt=.json) |
| 1008 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 1009 | |
Bob Badour | e9bdbc5 | 2022-03-10 11:31:07 -0800 | [diff] [blame] | 1010 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ROOT)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1011 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ROOT)) |
Bob Badour | e9bdbc5 | 2022-03-10 11:31:07 -0800 | [diff] [blame] | 1012 | |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1013 | #------------------------------------------------------------------ |
| 1014 | # dtb |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 1015 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1016 | INSTALLED_DTBIMAGE_TARGET := $(PRODUCT_OUT)/dtb.img |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 1017 | ifdef BOARD_PREBUILT_DTBIMAGE_DIR |
Hridya Valsaraju | c63a744 | 2019-02-07 11:38:18 -0800 | [diff] [blame] | 1018 | $(INSTALLED_DTBIMAGE_TARGET) : $(sort $(wildcard $(BOARD_PREBUILT_DTBIMAGE_DIR)/*.dtb)) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1019 | cat $^ > $@ |
| 1020 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 1021 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1022 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1023 | # ----------------------------------------------------------------- |
| 1024 | # the ramdisk |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 1025 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_RAMDISK_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 1026 | ifdef BUILDING_RAMDISK_IMAGE |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1027 | INTERNAL_RAMDISK_FILES := $(filter $(TARGET_RAMDISK_OUT)/%, \ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1028 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1029 | |
| 1030 | INSTALLED_FILES_FILE_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk.txt |
| 1031 | INSTALLED_FILES_JSON_RAMDISK := $(INSTALLED_FILES_FILE_RAMDISK:.txt=.json) |
| 1032 | $(INSTALLED_FILES_FILE_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RAMDISK) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1033 | $(INSTALLED_FILES_FILE_RAMDISK) : $(INTERNAL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1034 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1035 | mkdir -p $(TARGET_RAMDISK_OUT) |
| 1036 | mkdir -p $(dir $@) |
| 1037 | rm -f $@ |
| 1038 | $(FILESLIST) $(TARGET_RAMDISK_OUT) > $(@:.txt=.json) |
| 1039 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1040 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1041 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1042 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_RAMDISK))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1043 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 1044 | BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img |
| 1045 | |
Kelvin Zhang | d8eac1c | 2023-05-19 20:05:18 +0000 | [diff] [blame] | 1046 | |
| 1047 | ifneq ($(BOARD_KERNEL_MODULES_16K),) |
| 1048 | |
| 1049 | TARGET_OUT_RAMDISK_16K := $(PRODUCT_OUT)/ramdisk_16k |
| 1050 | BUILT_RAMDISK_16K_TARGET := $(PRODUCT_OUT)/ramdisk_16k.img |
| 1051 | RAMDISK_16K_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_ramdisk_16k) |
| 1052 | |
| 1053 | $(BUILT_RAMDISK_16K_TARGET): $(DEPMOD) $(MKBOOTFS) |
| 1054 | $(BUILT_RAMDISK_16K_TARGET): $(call copy-many-files,$(foreach file,$(BOARD_KERNEL_MODULES_16K),$(file):$(RAMDISK_16K_STAGING_DIR)/lib/modules/0.0/$(notdir $(file)))) |
| 1055 | $(DEPMOD) -b $(RAMDISK_16K_STAGING_DIR) 0.0 |
| 1056 | for MODULE in $(BOARD_KERNEL_MODULES_16K); do \ |
| 1057 | basename $$MODULE >> $(RAMDISK_16K_STAGING_DIR)/lib/modules/0.0/modules.load ; \ |
| 1058 | done; |
| 1059 | mkdir -p $(TARGET_OUT_RAMDISK_16K)/lib |
| 1060 | rm -rf $(TARGET_OUT_RAMDISK_16K)/lib/modules |
| 1061 | cp -r $(RAMDISK_16K_STAGING_DIR)/lib/modules/0.0 $(TARGET_OUT_RAMDISK_16K)/lib/modules |
| 1062 | $(MKBOOTFS) $(TARGET_OUT_RAMDISK_16K) > $@ |
| 1063 | |
| 1064 | # Builds a ramdisk using modules defined in BOARD_KERNEL_MODULES_16K |
| 1065 | ramdisk_16k: $(BUILT_RAMDISK_16K_TARGET) |
| 1066 | .PHONY: ramdisk_16k |
| 1067 | |
| 1068 | endif |
| 1069 | |
| 1070 | ifneq ($(BOARD_KERNEL_PATH_16K),) |
| 1071 | BUILT_KERNEL_16K_TARGET := $(PRODUCT_OUT)/kernel_16k |
| 1072 | |
| 1073 | $(eval $(call copy-one-file,$(BOARD_KERNEL_PATH_16K),$(BUILT_KERNEL_16K_TARGET))) |
| 1074 | |
| 1075 | # Copies BOARD_KERNEL_PATH_16K to output directory as is |
| 1076 | kernel_16k: $(BUILT_KERNEL_16K_TARGET) |
| 1077 | .PHONY: kernel_16k |
| 1078 | |
| 1079 | endif |
| 1080 | |
| 1081 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1082 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 1083 | # -l enables the legacy format used by the Linux kernel |
| 1084 | COMPRESSION_COMMAND_DEPS := $(LZ4) |
| 1085 | COMPRESSION_COMMAND := $(LZ4) -l -12 --favor-decSpeed |
| 1086 | RAMDISK_EXT := .lz4 |
| 1087 | else |
Elliott Hughes | 97ad120 | 2023-06-20 16:41:58 -0700 | [diff] [blame] | 1088 | COMPRESSION_COMMAND_DEPS := $(GZIP) |
| 1089 | COMPRESSION_COMMAND := $(GZIP) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1090 | RAMDISK_EXT := .gz |
| 1091 | endif |
| 1092 | |
Vincent Donnefort | 4a5fd83 | 2022-12-22 13:48:55 +0000 | [diff] [blame] | 1093 | # This file contains /dev nodes description added to the generic ramdisk |
| 1094 | RAMDISK_NODE_LIST := $(PRODUCT_OUT)/ramdisk_node_list |
| 1095 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 1096 | # We just build this directly to the install location. |
| 1097 | INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET) |
Inseob Kim | adcdb2f | 2021-06-11 12:55:10 +0900 | [diff] [blame] | 1098 | $(INSTALLED_RAMDISK_TARGET): PRIVATE_DIRS := debug_ramdisk dev metadata mnt proc second_stage_resources sys |
Vincent Donnefort | 4a5fd83 | 2022-12-22 13:48:55 +0000 | [diff] [blame] | 1099 | $(INSTALLED_RAMDISK_TARGET): $(MKBOOTFS) $(RAMDISK_NODE_LIST) $(INTERNAL_RAMDISK_FILES) $(INSTALLED_FILES_FILE_RAMDISK) | $(COMPRESSION_COMMAND_DEPS) |
Petri Gynther | 4c063e3 | 2021-03-06 13:26:01 -0800 | [diff] [blame] | 1100 | $(call pretty,"Target ramdisk: $@") |
Inseob Kim | adcdb2f | 2021-06-11 12:55:10 +0900 | [diff] [blame] | 1101 | $(hide) mkdir -p $(addprefix $(TARGET_RAMDISK_OUT)/,$(PRIVATE_DIRS)) |
| 1102 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
| 1103 | $(hide) mkdir -p $(addprefix $(TARGET_RAMDISK_OUT)/first_stage_ramdisk/,$(PRIVATE_DIRS)) |
| 1104 | endif |
Vincent Donnefort | 4a5fd83 | 2022-12-22 13:48:55 +0000 | [diff] [blame] | 1105 | $(hide) $(MKBOOTFS) -n $(RAMDISK_NODE_LIST) -d $(TARGET_OUT) $(TARGET_RAMDISK_OUT) | $(COMPRESSION_COMMAND) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1106 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1107 | $(call declare-1p-container,$(INSTALLED_RAMDISK_TARGET),) |
| 1108 | $(call declare-container-license-deps,$(INSTALLED_RAMDISK_TARGET),$(INTERNAL_RAMDISK_FILE),$(PRODUCT_OUT)/:/) |
| 1109 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1110 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_RAMDISK_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1111 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1112 | .PHONY: ramdisk-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1113 | ramdisk-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1114 | @echo "make $@: ignoring dependencies" |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1115 | $(hide) $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RAMDISK_OUT) | $(COMPRESSION_COMMAND) > $(INSTALLED_RAMDISK_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1116 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 1117 | endif # BUILDING_RAMDISK_IMAGE |
| 1118 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1119 | # ----------------------------------------------------------------- |
| 1120 | # the boot image, which is a collection of other images. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1121 | |
| 1122 | # This is defined here since we may be building recovery as boot |
| 1123 | # below and only want to define this once |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1124 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 1125 | BUILT_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot,$(BOARD_KERNEL_BINARIES)), $(PRODUCT_OUT)/$(k).img) |
| 1126 | else |
| 1127 | BUILT_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 1128 | endif |
| 1129 | |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1130 | INTERNAL_PREBUILT_BOOTIMAGE := |
| 1131 | |
| 1132 | my_installed_prebuilt_gki_apex := $(strip $(foreach package,$(PRODUCT_PACKAGES),$(if $(ALL_MODULES.$(package).EXTRACTED_BOOT_IMAGE),$(package)))) |
| 1133 | ifdef my_installed_prebuilt_gki_apex |
| 1134 | ifneq (1,$(words $(my_installed_prebuilt_gki_apex))) # len(my_installed_prebuilt_gki_apex) > 1 |
| 1135 | $(error More than one prebuilt GKI APEXes are installed: $(my_installed_prebuilt_gki_apex)) |
| 1136 | endif # len(my_installed_prebuilt_gki_apex) > 1 |
| 1137 | |
| 1138 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 1139 | $(error Must not define BOARD_PREBUILT_BOOTIMAGE because a prebuilt GKI APEX is installed: $(my_installed_prebuilt_gki_apex)) |
| 1140 | endif # BOARD_PREBUILT_BOOTIMAGE defined |
| 1141 | |
| 1142 | my_apex_extracted_boot_image := $(ALL_MODULES.$(my_installed_prebuilt_gki_apex).EXTRACTED_BOOT_IMAGE) |
| 1143 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 1144 | $(eval $(call copy-one-file,$(my_apex_extracted_boot_image),$(INSTALLED_BOOTIMAGE_TARGET))) |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1145 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",boot) |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1146 | |
| 1147 | INTERNAL_PREBUILT_BOOTIMAGE := $(my_apex_extracted_boot_image) |
| 1148 | |
| 1149 | else # my_installed_prebuilt_gki_apex not defined |
| 1150 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1151 | # $1: boot image target |
| 1152 | # returns the kernel used to make the bootimage |
| 1153 | define bootimage-to-kernel |
| 1154 | $(if $(BOARD_KERNEL_BINARIES),\ |
| 1155 | $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $(1)))),\ |
| 1156 | $(INSTALLED_KERNEL_TARGET)) |
| 1157 | endef |
| 1158 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1159 | ifdef BOARD_BOOTIMAGE_PARTITION_SIZE |
| 1160 | BOARD_KERNEL_BOOTIMAGE_PARTITION_SIZE := $(BOARD_BOOTIMAGE_PARTITION_SIZE) |
| 1161 | endif |
| 1162 | |
| 1163 | # $1: boot image file name |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 1164 | # $2: boot image variant (boot, boot-debug, boot-test-harness) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1165 | define get-bootimage-partition-size |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1166 | $(BOARD_$(call to-upper,$(subst .img,,$(subst $(2),kernel,$(notdir $(1)))))_BOOTIMAGE_PARTITION_SIZE) |
| 1167 | endef |
| 1168 | |
| 1169 | # $1: partition size |
| 1170 | define get-partition-size-argument |
| 1171 | $(if $(1),--partition_size $(1),--dynamic_partition_size) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1172 | endef |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1173 | |
celeste wang | e3d4320 | 2022-08-12 08:36:37 +0000 | [diff] [blame] | 1174 | ifndef BOARD_PREBUILT_BOOTIMAGE |
| 1175 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1176 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1177 | INTERNAL_BOOTIMAGE_ARGS := \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1178 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 1179 | |
Bowgo Tsai | 85578e0 | 2022-04-19 10:50:59 +0800 | [diff] [blame] | 1180 | # TODO(b/229701033): clean up BOARD_BUILD_GKI_BOOT_IMAGE_WITHOUT_RAMDISK. |
| 1181 | ifneq ($(BOARD_BUILD_GKI_BOOT_IMAGE_WITHOUT_RAMDISK),true) |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 1182 | ifneq ($(BUILDING_INIT_BOOT_IMAGE),true) |
| 1183 | INTERNAL_BOOTIMAGE_ARGS += --ramdisk $(INSTALLED_RAMDISK_TARGET) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1184 | endif |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 1185 | endif |
| 1186 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1187 | ifndef BUILDING_VENDOR_BOOT_IMAGE |
| 1188 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1189 | INTERNAL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1190 | endif |
| 1191 | endif |
| 1192 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1193 | INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS)) |
| 1194 | |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 1195 | # kernel cmdline/base/pagesize in boot. |
| 1196 | # - If using GKI, use GENERIC_KERNEL_CMDLINE. Remove kernel base and pagesize because they are |
| 1197 | # device-specific. |
| 1198 | # - If not using GKI: |
| 1199 | # - If building vendor_boot, INTERNAL_KERNEL_CMDLINE, base and pagesize goes in vendor_boot. |
| 1200 | # - Otherwise, put them in boot. |
| 1201 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 1202 | ifdef GENERIC_KERNEL_CMDLINE |
| 1203 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(GENERIC_KERNEL_CMDLINE)" |
| 1204 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 1205 | else ifndef BUILDING_VENDOR_BOOT_IMAGE # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
| 1206 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1207 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1208 | endif |
| 1209 | ifdef BOARD_KERNEL_BASE |
| 1210 | INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1211 | endif |
| 1212 | ifdef BOARD_KERNEL_PAGESIZE |
| 1213 | INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1214 | endif |
| 1215 | endif # BUILDING_VENDOR_BOOT_IMAGE == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 1216 | |
Bowgo Tsai | 662a2c6 | 2022-03-14 17:59:55 +0800 | [diff] [blame] | 1217 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 1218 | # GKI boot images will not set system version & SPL value in the header. |
| 1219 | # They can be set by the device manufacturer in the AVB properties instead. |
| 1220 | INTERNAL_MKBOOTIMG_VERSION_ARGS := |
| 1221 | else |
| 1222 | INTERNAL_MKBOOTIMG_VERSION_ARGS := \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 1223 | --os_version $(PLATFORM_VERSION_LAST_STABLE) \ |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1224 | --os_patch_level $(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | 662a2c6 | 2022-03-14 17:59:55 +0800 | [diff] [blame] | 1225 | endif # BOARD_GKI_SIGNING_KEY_PATH |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1226 | |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1227 | # $(1): image target to certify |
| 1228 | # $(2): out certificate target |
| 1229 | # $(3): image name |
| 1230 | # $(4): additional AVB arguments |
| 1231 | define generate_generic_boot_image_certificate |
| 1232 | rm -rf "$(2)" |
| 1233 | mkdir -p "$(dir $(2))" |
| 1234 | $(GENERATE_GKI_CERTIFICATE) $(INTERNAL_GKI_CERTIFICATE_ARGS) \ |
| 1235 | --additional_avb_args "$(4)" \ |
| 1236 | --name "$(3)" --output "$(2)" "$(1)" |
| 1237 | endef |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 1238 | |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1239 | INTERNAL_GKI_CERTIFICATE_ARGS := |
| 1240 | INTERNAL_GKI_CERTIFICATE_DEPS := |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1241 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 1242 | ifndef BOARD_GKI_SIGNING_ALGORITHM |
| 1243 | $(error BOARD_GKI_SIGNING_ALGORITHM should be defined with BOARD_GKI_SIGNING_KEY_PATH) |
| 1244 | endif |
| 1245 | |
| 1246 | INTERNAL_GKI_CERTIFICATE_ARGS := \ |
| 1247 | --key "$(BOARD_GKI_SIGNING_KEY_PATH)" \ |
| 1248 | --algorithm "$(BOARD_GKI_SIGNING_ALGORITHM)" \ |
| 1249 | --avbtool "$(AVBTOOL)" |
| 1250 | |
| 1251 | # Quote and pass BOARD_GKI_SIGNING_SIGNATURE_ARGS as a single string argument. |
| 1252 | ifdef BOARD_GKI_SIGNING_SIGNATURE_ARGS |
| 1253 | INTERNAL_GKI_CERTIFICATE_ARGS += --additional_avb_args "$(BOARD_GKI_SIGNING_SIGNATURE_ARGS)" |
| 1254 | endif |
| 1255 | |
| 1256 | INTERNAL_GKI_CERTIFICATE_DEPS := \ |
| 1257 | $(GENERATE_GKI_CERTIFICATE) \ |
| 1258 | $(BOARD_GKI_SIGNING_KEY_PATH) \ |
| 1259 | $(AVBTOOL) |
| 1260 | |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 1261 | endif |
| 1262 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1263 | # Define these only if we are building boot |
| 1264 | ifdef BUILDING_BOOT_IMAGE |
| 1265 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 1266 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1267 | ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true) |
JP Abgrall | 7bb75e4 | 2015-02-11 15:04:59 -0800 | [diff] [blame] | 1268 | $(error TARGET_BOOTIMAGE_USE_EXT2 is not supported anymore) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1269 | endif # TARGET_BOOTIMAGE_USE_EXT2 |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1270 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1271 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET), $(eval $(call add-dependency,$(b),$(call bootimage-to-kernel,$(b))))) |
| 1272 | |
| 1273 | ifeq (true,$(BOARD_AVB_ENABLE)) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1274 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1275 | # $1: boot image target |
| 1276 | define build_boot_board_avb_enabled |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1277 | $(eval kernel := $(call bootimage-to-kernel,$(1))) |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1278 | $(MKBOOTIMG) --kernel $(kernel) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1279 | $(if $(BOARD_GKI_SIGNING_KEY_PATH), \ |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1280 | $(eval boot_signature := $(call intermediates-dir-for,PACKAGING,generic_boot)/$(notdir $(1)).boot_signature) \ |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1281 | $(eval kernel_signature := $(call intermediates-dir-for,PACKAGING,generic_kernel)/$(notdir $(kernel)).boot_signature) \ |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1282 | $(call generate_generic_boot_image_certificate,$(1),$(boot_signature),boot,$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)) $(newline) \ |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1283 | $(call generate_generic_boot_image_certificate,$(kernel),$(kernel_signature),generic_kernel,$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)) $(newline) \ |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1284 | cat $(kernel_signature) >> $(boot_signature) $(newline) \ |
| 1285 | $(call assert-max-image-size,$(boot_signature),16 << 10) $(newline) \ |
| 1286 | truncate -s $$(( 16 << 10 )) $(boot_signature) $(newline) \ |
| 1287 | cat "$(boot_signature)" >> $(1)) |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 1288 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(call get-bootimage-partition-size,$(1),boot))) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1289 | $(AVBTOOL) add_hash_footer \ |
| 1290 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1291 | $(call get-partition-size-argument,$(call get-bootimage-partition-size,$(1),boot)) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1292 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 1293 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1294 | endef |
| 1295 | |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1296 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(AVBTOOL) $(INTERNAL_BOOTIMAGE_FILES) $(BOARD_AVB_BOOT_KEY_PATH) $(INTERNAL_GKI_CERTIFICATE_DEPS) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1297 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1298 | $(call build_boot_board_avb_enabled,$@) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1299 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1300 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",boot) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1301 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES) $(INTERNAL_GKI_CERTIFICATE_DEPS),$(PRODUCT_OUT)/:/) |
| 1302 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1303 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1304 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1305 | .PHONY: bootimage-nodeps |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1306 | bootimage-nodeps: $(MKBOOTIMG) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) $(INTERNAL_GKI_CERTIFICATE_DEPS) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1307 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1308 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_board_avb_enabled,$(b))) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1309 | |
hungweichen | b2dd683 | 2022-08-08 09:16:30 +0000 | [diff] [blame] | 1310 | else ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) # BOARD_AVB_ENABLE != true |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1311 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1312 | # $1: boot image target |
| 1313 | define build_boot_supports_vboot |
| 1314 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1).unsigned |
| 1315 | $(VBOOT_SIGNER) $(FUTILITY) $(1).unsigned $(PRODUCT_VBOOT_SIGNING_KEY).vbpubk $(PRODUCT_VBOOT_SIGNING_KEY).vbprivk $(PRODUCT_VBOOT_SIGNING_SUBKEY).vbprivk $(1).keyblock $(1) |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 1316 | $(call assert-max-image-size,$(1),$(call get-bootimage-partition-size,$(1),boot)) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1317 | endef |
| 1318 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1319 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1320 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1321 | $(call build_boot_supports_vboot,$@) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1322 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1323 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",boot) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1324 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 1325 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1326 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1327 | |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1328 | .PHONY: bootimage-nodeps |
Tao Bao | 4b57741 | 2017-02-22 22:54:39 -0800 | [diff] [blame] | 1329 | bootimage-nodeps: $(MKBOOTIMG) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1330 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1331 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_supports_vboot,$(b))) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1332 | |
| 1333 | else # PRODUCT_SUPPORTS_VBOOT != true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1334 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1335 | # $1: boot image target |
| 1336 | define build_boot_novboot |
| 1337 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 1338 | $(call assert-max-image-size,$1,$(call get-bootimage-partition-size,$(1),boot)) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1339 | endef |
| 1340 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1341 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1342 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1343 | $(call build_boot_novboot,$@) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1344 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1345 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",boot) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1346 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 1347 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1348 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1349 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1350 | .PHONY: bootimage-nodeps |
| 1351 | bootimage-nodeps: $(MKBOOTIMG) |
| 1352 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1353 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_novboot,$(b))) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1354 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1355 | endif # BOARD_AVB_ENABLE |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1356 | endif # BUILDING_BOOT_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1357 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1358 | else # TARGET_NO_KERNEL == "true" |
celeste wang | e3d4320 | 2022-08-12 08:36:37 +0000 | [diff] [blame] | 1359 | INSTALLED_BOOTIMAGE_TARGET := |
| 1360 | endif # TARGET_NO_KERNEL |
| 1361 | |
| 1362 | else # BOARD_PREBUILT_BOOTIMAGE defined |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1363 | INTERNAL_PREBUILT_BOOTIMAGE := $(BOARD_PREBUILT_BOOTIMAGE) |
Kiyoung Kim | 62e2231 | 2019-06-20 14:27:45 +0900 | [diff] [blame] | 1364 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1365 | |
| 1366 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1367 | $(INSTALLED_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_BOOTIMAGE) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
| 1368 | cp $(INTERNAL_PREBUILT_BOOTIMAGE) $@ |
Peter Collingbourne | fd95f09 | 2023-03-24 11:34:24 -0700 | [diff] [blame] | 1369 | chmod +w $@ |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1370 | $(AVBTOOL) add_hash_footer \ |
| 1371 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1372 | $(call get-partition-size-argument,$(BOARD_BOOTIMAGE_PARTITION_SIZE)) \ |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1373 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 1374 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1375 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1376 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",bool) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1377 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_PREBUILT_BOOTIMAGE),$(PRODUCT_OUT)/:/) |
| 1378 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1379 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1380 | else |
| 1381 | $(INSTALLED_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_BOOTIMAGE) |
| 1382 | cp $(INTERNAL_PREBUILT_BOOTIMAGE) $@ |
| 1383 | endif # BOARD_AVB_ENABLE |
| 1384 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1385 | endif # BOARD_PREBUILT_BOOTIMAGE |
celeste wang | e3d4320 | 2022-08-12 08:36:37 +0000 | [diff] [blame] | 1386 | |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1387 | endif # my_installed_prebuilt_gki_apex not defined |
| 1388 | |
| 1389 | my_apex_extracted_boot_image := |
| 1390 | my_installed_prebuilt_gki_apex := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1391 | |
| 1392 | # ----------------------------------------------------------------- |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1393 | # init boot image |
| 1394 | ifeq ($(BUILDING_INIT_BOOT_IMAGE),true) |
| 1395 | |
| 1396 | INSTALLED_INIT_BOOT_IMAGE_TARGET := $(PRODUCT_OUT)/init_boot.img |
| 1397 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_RAMDISK_TARGET) |
| 1398 | |
Yi-Yo Chiang | 8b0776d | 2022-06-30 17:33:29 +0800 | [diff] [blame] | 1399 | INTERNAL_INIT_BOOT_IMAGE_ARGS := --ramdisk $(INSTALLED_RAMDISK_TARGET) |
| 1400 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1401 | ifdef BOARD_KERNEL_PAGESIZE |
| 1402 | INTERNAL_INIT_BOOT_IMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1403 | endif |
| 1404 | |
| 1405 | ifeq ($(BOARD_AVB_ENABLE),true) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 1406 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_INIT_BOOT_KEY_PATH) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1407 | $(call pretty,"Target init_boot image: $@") |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1408 | $(MKBOOTIMG) $(INTERNAL_INIT_BOOT_IMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_INIT_ARGS) --output "$@" |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1409 | $(call assert-max-image-size,$@,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) |
| 1410 | $(AVBTOOL) add_hash_footer \ |
| 1411 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1412 | $(call get-partition-size-argument,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1413 | --partition_name init_boot $(INTERNAL_AVB_INIT_BOOT_SIGNING_ARGS) \ |
| 1414 | $(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1415 | |
| 1416 | $(call declare-1p-container,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 1417 | $(call declare-container-license-deps,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),$(INTERNAL_GENERIC_RAMDISK_BOOT_SIGNATURE),$(PRODUCT_OUT)/:/) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1418 | else |
| 1419 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): |
| 1420 | $(call pretty,"Target init_boot image: $@") |
| 1421 | $(MKBOOTIMG) $(INTERNAL_INIT_BOOT_IMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_INIT_ARGS) --output $@ |
| 1422 | $(call assert-max-image-size,$@,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1423 | |
| 1424 | $(call declare-1p-target,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1425 | endif |
| 1426 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1427 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_INIT_BOOT_IMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1428 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1429 | else # BUILDING_INIT_BOOT_IMAGE is not true |
| 1430 | |
| 1431 | ifdef BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 1432 | INTERNAL_PREBUILT_INIT_BOOT_IMAGE := $(BOARD_PREBUILT_INIT_BOOT_IMAGE) |
| 1433 | INSTALLED_INIT_BOOT_IMAGE_TARGET := $(PRODUCT_OUT)/init_boot.img |
| 1434 | |
| 1435 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1436 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $(AVBTOOL) $(BOARD_AVB_INIT_BOOT_KEY_PATH) |
| 1437 | cp $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $@ |
Peter Collingbourne | fd95f09 | 2023-03-24 11:34:24 -0700 | [diff] [blame] | 1438 | chmod +w $@ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1439 | $(AVBTOOL) add_hash_footer \ |
| 1440 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1441 | $(call get-partition-size-argument,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) \ |
Devin Moore | 77ae07d | 2023-02-06 17:25:06 +0000 | [diff] [blame] | 1442 | --partition_name init_boot $(INTERNAL_AVB_INIT_BOOT_SIGNING_ARGS) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1443 | $(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1444 | |
| 1445 | $(call declare-1p-container,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 1446 | $(call declare-container-license-deps,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),$(INTERNAL_PREBUILT_INIT_BOOT_IMAGE),$(PRODUCT_OUT)/:/) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1447 | else |
| 1448 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) |
| 1449 | cp $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $@ |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1450 | |
| 1451 | $(call declare-1p-target,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1452 | endif # BOARD_AVB_ENABLE |
| 1453 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1454 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_INIT_BOOT_IMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1455 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1456 | else # BOARD_PREBUILT_INIT_BOOT_IMAGE not defined |
| 1457 | INSTALLED_INIT_BOOT_IMAGE_TARGET := |
| 1458 | endif # BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 1459 | |
| 1460 | endif # BUILDING_INIT_BOOT_IMAGE is not true |
Ramji Jiyani | 1065523 | 2022-01-20 06:43:09 +0000 | [diff] [blame] | 1461 | |
| 1462 | # ----------------------------------------------------------------- |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1463 | # vendor boot image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 1464 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_VENDOR_RAMDISK_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1465 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 1466 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1467 | INTERNAL_VENDOR_RAMDISK_FILES := $(filter $(TARGET_VENDOR_RAMDISK_OUT)/%, \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1468 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1469 | |
Petri Gynther | 6a6d621 | 2021-03-06 00:45:53 -0800 | [diff] [blame] | 1470 | INTERNAL_VENDOR_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot)/vendor_ramdisk.cpio$(RAMDISK_EXT) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1471 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1472 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 1473 | # recovery ramdisk in vendor_boot. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1474 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1475 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1476 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 1477 | $(INTERNAL_VENDOR_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 1478 | endif |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1479 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1480 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1481 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1482 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_VENDOR_RAMDISK_OUT) $(PRIVATE_ADDITIONAL_DIR) | $(COMPRESSION_COMMAND) > $@ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1483 | |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1484 | INSTALLED_VENDOR_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk.img |
| 1485 | $(INSTALLED_VENDOR_RAMDISK_TARGET): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 1486 | @echo "Target vendor ramdisk: $@" |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1487 | $(copy-file-to-target) |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1488 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1489 | $(call declare-1p-container,$(INSTALLED_VENDOR_RAMDISK_TARGET),) |
| 1490 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_RAMDISK_TARGET),$(INTERNAL_VENDOR_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 1491 | |
| 1492 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_RAMDISK_TARGET) |
| 1493 | |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1494 | INSTALLED_FILES_FILE_VENDOR_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk.txt |
| 1495 | INSTALLED_FILES_JSON_VENDOR_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_RAMDISK:.txt=.json) |
| 1496 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_RAMDISK) |
| 1497 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
| 1498 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1499 | @echo Installed file list: $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1500 | mkdir -p $(dir $@) |
| 1501 | rm -f $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1502 | $(FILESLIST) $(TARGET_VENDOR_RAMDISK_OUT) > $(@:.txt=.json) |
| 1503 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1504 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1505 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1506 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_RAMDISK))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1507 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1508 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1509 | ifneq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
| 1510 | # If we have vendor_kernel_boot partition, we migrate dtb image to that image |
| 1511 | # and allow dtb in vendor_boot to be empty. |
| 1512 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1513 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1514 | endif |
| 1515 | ifdef BOARD_KERNEL_BASE |
| 1516 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1517 | endif |
| 1518 | ifdef BOARD_KERNEL_PAGESIZE |
| 1519 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1520 | endif |
| 1521 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1522 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1523 | endif |
| 1524 | |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1525 | ifdef INTERNAL_BOOTCONFIG |
Yi-Yo Chiang | 9c46136 | 2021-04-04 03:26:18 +0800 | [diff] [blame] | 1526 | INTERNAL_VENDOR_BOOTCONFIG_TARGET := $(PRODUCT_OUT)/vendor-bootconfig.img |
| 1527 | $(INTERNAL_VENDOR_BOOTCONFIG_TARGET): |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1528 | rm -f $@ |
| 1529 | $(foreach param,$(INTERNAL_BOOTCONFIG), \ |
| 1530 | printf "%s\n" $(param) >> $@;) |
| 1531 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_bootconfig $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
| 1532 | endif |
| 1533 | |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1534 | # $(1): Build target name |
| 1535 | # $(2): Staging dir to be compressed |
| 1536 | # $(3): Build dependencies |
| 1537 | define build-vendor-ramdisk-fragment-target |
| 1538 | $(1): $(3) $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 1539 | $(MKBOOTFS) -d $(TARGET_OUT) $(2) | $(COMPRESSION_COMMAND) > $$@ |
| 1540 | endef |
| 1541 | |
| 1542 | # $(1): Ramdisk name |
| 1543 | define build-vendor-ramdisk-fragment |
| 1544 | $(strip \ |
| 1545 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragments)/$(1).cpio$(RAMDISK_EXT)) \ |
| 1546 | $(eval $(call build-vendor-ramdisk-fragment-target,$(build_target),$(VENDOR_RAMDISK_FRAGMENT.$(1).STAGING_DIR),$(VENDOR_RAMDISK_FRAGMENT.$(1).FILES))) \ |
| 1547 | $(build_target) \ |
| 1548 | ) |
| 1549 | endef |
| 1550 | |
| 1551 | # $(1): Ramdisk name |
| 1552 | # $(2): Prebuilt file path |
| 1553 | define build-prebuilt-vendor-ramdisk-fragment |
| 1554 | $(strip \ |
| 1555 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,prebuilt_vendor_ramdisk_fragments)/$(1)) \ |
| 1556 | $(eval $(call copy-one-file,$(2),$(build_target))) \ |
| 1557 | $(build_target) \ |
| 1558 | ) |
| 1559 | endef |
| 1560 | |
| 1561 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS := |
| 1562 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS := |
| 1563 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1564 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1565 | $(eval prebuilt_vendor_ramdisk_fragment_file := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 1566 | $(if $(prebuilt_vendor_ramdisk_fragment_file), \ |
| 1567 | $(eval vendor_ramdisk_fragment_target := $(call build-prebuilt-vendor-ramdisk-fragment,$(vendor_ramdisk_fragment),$(prebuilt_vendor_ramdisk_fragment_file))) \ |
| 1568 | $(eval ### else ###), \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1569 | $(eval vendor_ramdisk_fragment_target := $(call build-vendor-ramdisk-fragment,$(vendor_ramdisk_fragment)))) \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1570 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS += $(vendor_ramdisk_fragment_target)) \ |
| 1571 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS += $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) --vendor_ramdisk_fragment $(vendor_ramdisk_fragment_target)) \ |
| 1572 | ) |
| 1573 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1574 | INSTALLED_VENDOR_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot.img |
| 1575 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET) |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1576 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1577 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1578 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOTIMAGE_KEY_PATH) |
| 1579 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1580 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS) --vendor_boot $@ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1581 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1582 | $(AVBTOOL) add_hash_footer \ |
| 1583 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1584 | $(call get-partition-size-argument,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1585 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_SIGNING_ARGS) \ |
| 1586 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1587 | else |
| 1588 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): |
| 1589 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1590 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS) --vendor_boot $@ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1591 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1592 | endif |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1593 | |
| 1594 | $(call declare-1p-container,$(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 1595 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DTB_IMAGE_TARGET) $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) $(INTERNAL_VENDOR_BOOTCONDIG_TARGET),$(PRODUCT_OUT)/:/) |
| 1596 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1597 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 1598 | |
| 1599 | # ----------------------------------------------------------------- |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1600 | # vendor kernel boot image |
| 1601 | ifeq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
| 1602 | |
| 1603 | INTERNAL_VENDOR_KERNEL_RAMDISK_FILES := $(filter $(TARGET_VENDOR_KERNEL_RAMDISK_OUT)/%, \ |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1604 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1605 | |
| 1606 | INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_kernel_boot)/vendor_kernel_ramdisk.cpio$(RAMDISK_EXT) |
| 1607 | |
| 1608 | $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_KERNEL_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
| 1609 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_VENDOR_KERNEL_RAMDISK_OUT) | $(COMPRESSION_COMMAND) > $@ |
| 1610 | |
| 1611 | INSTALLED_VENDOR_KERNEL_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_kernel_ramdisk.img |
| 1612 | $(INSTALLED_VENDOR_KERNEL_RAMDISK_TARGET): $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1613 | @echo "Target vendor kernel ramdisk: $@" |
| 1614 | $(copy-file-to-target) |
| 1615 | |
| 1616 | INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-kernel-ramdisk.txt |
| 1617 | INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK:.txt=.json) |
| 1618 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK) |
| 1619 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1620 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): $(INTERNAL_VENDOR_KERNEL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 1621 | @echo Installed file list: $@ |
| 1622 | mkdir -p $(dir $@) |
| 1623 | rm -f $@ |
| 1624 | $(FILESLIST) $(TARGET_VENDOR_KERNEL_RAMDISK_OUT) > $(@:.txt=.json) |
| 1625 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 1626 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1627 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK)) |
| 1628 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK)) |
| 1629 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1630 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS := --vendor_ramdisk $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1631 | INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_kernel_boot.img |
| 1632 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1633 | |
| 1634 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1635 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1636 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(INSTALLED_DTBIMAGE_TARGET) |
| 1637 | endif |
| 1638 | ifdef BOARD_KERNEL_PAGESIZE |
| 1639 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1640 | endif |
| 1641 | |
| 1642 | |
| 1643 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1644 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_KERNEL_BOOTIMAGE_KEY_PATH) |
| 1645 | $(call pretty,"Target vendor_kernel_boot image: $@") |
| 1646 | $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_boot $@ |
| 1647 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) |
| 1648 | $(AVBTOOL) add_hash_footer \ |
| 1649 | --image $@ \ |
| 1650 | $(call get-partition-size-argument,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) \ |
| 1651 | --partition_name vendor_kernel_boot $(INTERNAL_AVB_VENDOR_KERNEL_BOOT_SIGNING_ARGS) \ |
| 1652 | $(BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1653 | else |
| 1654 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): |
| 1655 | $(call pretty,"Target vendor_kernel_boot image: $@") |
| 1656 | $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_boot $@ |
| 1657 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) |
| 1658 | endif |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1659 | $(call declare-1p-container,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) |
| 1660 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1661 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),\ |
| 1662 | $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET),\ |
| 1663 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET):) |
| 1664 | else |
| 1665 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET),$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET):) |
| 1666 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1667 | endif # BUILDING_VENDOR_KERNEL_BOOT_IMAGE |
| 1668 | |
| 1669 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1670 | # NOTICE files |
| 1671 | # |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 1672 | # We are required to publish the licenses for all code under BSD, GPL and |
| 1673 | # Apache licenses (and possibly other more exotic ones as well). We err on the |
| 1674 | # side of caution, so the licenses for other third-party code are included here |
| 1675 | # too. |
| 1676 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1677 | # This needs to be before the systemimage rules, because it adds to |
| 1678 | # ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files |
| 1679 | # go into the systemimage. |
| 1680 | |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1681 | .PHONY: notice_files |
| 1682 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1683 | # Convert license metadata into xml notice file. |
| 1684 | # $(1) - Output target notice filename |
| 1685 | # $(2) - Product name |
| 1686 | # $(3) - File title |
| 1687 | # $(4) - License metadata file roots |
| 1688 | # $(5) - Prefixes to strip |
| 1689 | # |
| 1690 | define xml-notice-rule |
| 1691 | $(1): PRIVATE_PRODUCT := $(2) |
| 1692 | $(1): PRIVATE_MESSAGE := $(3) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1693 | $(1): PRIVATE_DEPS := $(call corresponding-license-metadata,$(4)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1694 | $(1): $(call corresponding-license-metadata,$(4)) $(XMLNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1695 | OUT_DIR=$(OUT_DIR) $(XMLNOTICE) -o $$@ -product=$$(PRIVATE_PRODUCT) -title=$$(PRIVATE_MESSAGE) $(foreach prefix, $(5), -strip_prefix=$(prefix)) $$(PRIVATE_DEPS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1696 | |
| 1697 | notice_files: $(1) |
| 1698 | endef |
| 1699 | |
| 1700 | # Convert license metadata into text notice file. |
| 1701 | # $(1) - Output target notice filename |
| 1702 | # $(2) - Product name |
| 1703 | # $(3) - File title |
| 1704 | # $(4) - License metadata file roots |
| 1705 | # $(5) - Prefixes to strip |
| 1706 | # |
| 1707 | define text-notice-rule |
| 1708 | $(1): PRIVATE_PRODUCT := $(2) |
| 1709 | $(1): PRIVATE_MESSAGE := $(3) |
| 1710 | $(1): $(call corresponding-license-metadata,$(4)) $(TEXTNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | c778e4c | 2022-03-22 13:05:19 -0700 | [diff] [blame] | 1711 | OUT_DIR=$(OUT_DIR) $(TEXTNOTICE) -o $$@ -product=$$(PRIVATE_PRODUCT) -title=$$(PRIVATE_MESSAGE) $(foreach prefix, $(5), -strip_prefix=$(prefix)) $(call corresponding-license-metadata,$(4)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1712 | |
| 1713 | notice_files: $(1) |
| 1714 | endef |
| 1715 | |
| 1716 | # Conversion license metadata into html notice file. |
| 1717 | # $(1) - Output target notice filename |
| 1718 | # $(2) - Product name |
| 1719 | # $(3) - File title |
| 1720 | # $(4) - License metadata file roots |
| 1721 | # $(5) - Prefixes to strip |
| 1722 | # |
| 1723 | define html-notice-rule |
| 1724 | $(1): PRIVATE_PRODUCT := $(2) |
| 1725 | $(1): PRIVATE_MESSAGE := $(3) |
| 1726 | $(1): $(call corresponding-license-metadata,$(4)) $(HTMLNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | c778e4c | 2022-03-22 13:05:19 -0700 | [diff] [blame] | 1727 | OUT_DIR=$(OUT_DIR) $(HTMLNOTICE) -o $$@ -product=$$(PRIVATE_PRODUCT) -title=$$(PRIVATE_MESSAGE) $(foreach prefix, $(5), -strip_prefix=$(prefix)) $(call corresponding-license-metadata,$(4)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1728 | |
| 1729 | notice_files: $(1) |
| 1730 | endef |
| 1731 | |
Bob Badour | 6259a09 | 2022-03-23 23:28:40 -0700 | [diff] [blame] | 1732 | $(KATI_obsolete_var combine-notice-files, To create notice files use xml-notice-rule, html-notice-rule, or text-notice-rule.) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1733 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1734 | # Notice file logic isn't relevant for TARGET_BUILD_APPS |
| 1735 | ifndef TARGET_BUILD_APPS |
| 1736 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1737 | # TODO These intermediate NOTICE.txt/NOTICE.html files should go into |
| 1738 | # TARGET_OUT_NOTICE_FILES now that the notice files are gathered from |
| 1739 | # the src subdirectory. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1740 | kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1741 | |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1742 | # Some targets get included under $(PRODUCT_OUT) for debug symbols or other |
| 1743 | # reasons--not to be flashed onto any device. Targets under these directories |
| 1744 | # need no associated notice file on the device UI. |
| 1745 | exclude_target_dirs := apex |
| 1746 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 1747 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1748 | ifneq ($(PRODUCT_NOTICE_SPLIT),true) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1749 | #target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1750 | target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz |
| 1751 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.html.gz |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 1752 | |
| 1753 | $(call declare-0p-target,$(target_notice_file_html_gz)) |
| 1754 | $(call declare-0p-target,$(installed_notice_html_or_xml_gz)) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1755 | else |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1756 | # target_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1757 | target_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml.gz |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1758 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.xml.gz |
| 1759 | |
| 1760 | target_vendor_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.txt |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1761 | target_vendor_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml.gz |
| 1762 | installed_vendor_notice_xml_gz := $(TARGET_OUT_VENDOR)/etc/NOTICE.xml.gz |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1763 | |
| 1764 | target_product_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.txt |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1765 | target_product_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml.gz |
| 1766 | installed_product_notice_xml_gz := $(TARGET_OUT_PRODUCT)/etc/NOTICE.xml.gz |
Dario Freni | cbca113 | 2018-08-28 18:04:03 +0100 | [diff] [blame] | 1767 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1768 | target_system_ext_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.txt |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1769 | target_system_ext_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml.gz |
| 1770 | 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] | 1771 | |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1772 | target_odm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.txt |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1773 | target_odm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml.gz |
| 1774 | installed_odm_notice_xml_gz := $(TARGET_OUT_ODM)/etc/NOTICE.xml.gz |
| 1775 | |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1776 | target_vendor_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.txt |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1777 | target_vendor_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.xml.gz |
| 1778 | installed_vendor_dlkm_notice_xml_gz := $(TARGET_OUT_VENDOR_DLKM)/etc/NOTICE.xml.gz |
| 1779 | |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1780 | target_odm_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.txt |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1781 | target_odm_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.xml.gz |
| 1782 | installed_odm_dlkm_notice_xml_gz := $(TARGET_OUT_ODM_DLKM)/etc/NOTICE.xml.gz |
| 1783 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1784 | target_system_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_DLKM.txt |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1785 | target_system_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_DLKM.xml.gz |
| 1786 | installed_system_dlkm_notice_xml_gz := $(TARGET_OUT_SYSTEM_DLKM)/etc/NOTICE.xml.gz |
| 1787 | |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 1788 | ALL_INSTALLED_NOTICE_FILES := \ |
| 1789 | $(installed_notice_html_or_xml_gz) \ |
| 1790 | $(installed_vendor_notice_xml_gz) \ |
| 1791 | $(installed_product_notice_xml_gz) \ |
| 1792 | $(installed_system_ext_notice_xml_gz) \ |
| 1793 | $(installed_odm_notice_xml_gz) \ |
| 1794 | $(installed_vendor_dlkm_notice_xml_gz) \ |
| 1795 | $(installed_odm_dlkm_notice_xml_gz) \ |
| 1796 | $(installed_system_dlkm_notice_xml_gz) \ |
| 1797 | |
| 1798 | # $1 installed file path, e.g. out/target/product/vsoc_x86_64/system_ext/etc/NOTICE.xml.gz |
| 1799 | define is-notice-file |
| 1800 | $(if $(findstring $1,$(ALL_INSTALLED_NOTICE_FILES)),Y) |
| 1801 | endef |
| 1802 | |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1803 | # Notice files are copied to TARGET_OUT_NOTICE_FILES as a side-effect of their module |
| 1804 | # being built. A notice xml file must depend on all modules that could potentially |
| 1805 | # install a license file relevant to it. |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1806 | license_modules := $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1807 | # Only files copied to a system image need system image notices. |
| 1808 | license_modules := $(filter $(PRODUCT_OUT)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1809 | # Phonys/fakes don't have notice files (though their deps might) |
| 1810 | license_modules := $(filter-out $(TARGET_OUT_FAKE)/%,$(license_modules)) |
Jooyung Han | 4416b00 | 2019-05-29 18:28:22 +0900 | [diff] [blame] | 1811 | # testcases are not relevant to the system image. |
| 1812 | license_modules := $(filter-out $(TARGET_OUT_TESTCASES)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1813 | # filesystem images: system, vendor, product, system_ext, odm, vendor_dlkm, and odm_dlkm |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1814 | license_modules_system := $(filter $(TARGET_OUT)/%,$(license_modules)) |
Jeongik Cha | 9917520 | 2020-06-17 17:10:19 +0900 | [diff] [blame] | 1815 | # system_other is relevant to system partition. |
| 1816 | license_modules_system += $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1817 | license_modules_vendor := $(filter $(TARGET_OUT_VENDOR)/%,$(license_modules)) |
| 1818 | license_modules_product := $(filter $(TARGET_OUT_PRODUCT)/%,$(license_modules)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1819 | license_modules_system_ext := $(filter $(TARGET_OUT_SYSTEM_EXT)/%,$(license_modules)) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1820 | license_modules_odm := $(filter $(TARGET_OUT_ODM)/%,$(license_modules)) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1821 | license_modules_vendor_dlkm := $(filter $(TARGET_OUT_VENDOR_DLKM)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1822 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_ODM_DLKM)/%,$(license_modules)) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1823 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_SYSTEM_DLKM)/%,$(license_modules)) |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1824 | license_modules_agg := $(license_modules_system) \ |
| 1825 | $(license_modules_vendor) \ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1826 | $(license_modules_product) \ |
| 1827 | $(license_modules_system_ext) \ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1828 | $(license_modules_odm) \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1829 | $(license_modules_vendor_dlkm) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1830 | $(license_modules_odm_dlkm) \ |
| 1831 | $(license_modules_system_dlkm) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1832 | # targets used for debug symbols only and do not get copied to the device |
| 1833 | license_modules_symbols_only := $(filter $(PRODUCT_OUT)/apex/%,$(license_modules)) |
| 1834 | |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1835 | license_modules_rest := $(filter-out $(license_modules_agg),$(license_modules)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1836 | license_modules_rest := $(filter-out $(license_modules_symbols_only),$(license_modules_rest)) |
| 1837 | |
| 1838 | # Identify the other targets we expect to have notices for: |
| 1839 | # targets copied to the device but are not readable by the UI (e.g. must boot |
| 1840 | # into a different partition to read or don't have an associated /etc |
| 1841 | # directory) must have their notices built somewhere readable. |
| 1842 | license_modules_rehomed := $(filter-out $(PRODUCT_OUT)/%/%,$(license_modules_rest)) # files in root have no /etc |
| 1843 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/recovery/%,$(license_modules_rest)) |
| 1844 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/root/%,$(license_modules_rest)) |
| 1845 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/data/%,$(license_modules_rest)) |
| 1846 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/ramdisk/%,$(license_modules_rest)) |
| 1847 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/debug_ramdisk/%,$(license_modules_rest)) |
Petri Gynther | dc24d88 | 2021-03-02 23:54:08 -0800 | [diff] [blame] | 1848 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/vendor_ramdisk/%,$(license_modules_rest)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1849 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist/%,$(license_modules_rest)) |
| 1850 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist.img,$(license_modules_rest)) |
| 1851 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/system_other/%,$(license_modules_rest)) |
| 1852 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/kernel%,$(license_modules_rest)) |
| 1853 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.img,$(license_modules_rest)) |
| 1854 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.bin,$(license_modules_rest)) |
| 1855 | |
| 1856 | # after removing targets in system images, targets reported in system images, and |
| 1857 | # targets used for debug symbols that do not need notices, nothing must remain. |
| 1858 | license_modules_rest := $(filter-out $(license_modules_rehomed),$(license_modules_rest)) |
| 1859 | $(call maybe-print-list-and-error, $(license_modules_rest), \ |
| 1860 | "Targets added under $(PRODUCT_OUT)/ unaccounted for notice handling.") |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1861 | |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1862 | # If we are building in a configuration that includes a prebuilt vendor.img, we can't |
| 1863 | # update its notice file, so include those notices in the system partition instead |
| 1864 | ifdef BOARD_PREBUILT_VENDORIMAGE |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1865 | license_modules_system += $(license_modules_rehomed) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1866 | system_xml_directories := xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm |
| 1867 | system_notice_file_message := "Notices for files contained in all filesystem images except vendor/system_ext/product/odm/vendor_dlkm/odm_dlkm in this directory:" |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1868 | else |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1869 | license_modules_vendor += $(license_modules_rehomed) |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1870 | system_xml_directories := xml_system |
| 1871 | 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] | 1872 | endif |
| 1873 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1874 | endif # PRODUCT_NOTICE_SPLIT |
| 1875 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1876 | 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] | 1877 | |
Bob Badour | 56e0de5 | 2022-08-02 17:46:48 +0000 | [diff] [blame] | 1878 | need_vendor_notice:=false |
| 1879 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 1880 | need_vendor_notice:=true |
| 1881 | endif |
| 1882 | |
| 1883 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 1884 | need_vendor_notice:=true |
| 1885 | endif |
| 1886 | |
| 1887 | ifdef BUILDING_VENDOR_IMAGE |
| 1888 | need_vendor_notice:=true |
| 1889 | endif |
| 1890 | |
| 1891 | ifeq (true,$(need_vendor_notice)) |
| 1892 | ifneq (,$(installed_vendor_notice_xml_gz)) |
| 1893 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_notice_xml_gz) |
| 1894 | endif |
| 1895 | endif |
| 1896 | |
| 1897 | need_vendor_notice:= |
| 1898 | |
| 1899 | ifdef BUILDING_ODM_IMAGE |
| 1900 | ifneq (,$(installed_odm_notice_xml_gz)) |
| 1901 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_notice_xml_gz) |
| 1902 | endif |
| 1903 | endif |
| 1904 | |
| 1905 | ifdef BUILDING_PRODUCT_IMAGE |
| 1906 | ifneq (,$(installed_product_notice_xml_gz)) |
| 1907 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_product_notice_xml_gz) |
| 1908 | endif |
| 1909 | endif |
| 1910 | |
| 1911 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 1912 | ifneq (,$(installed_system_ext_notice_xml_gz)) |
| 1913 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_ext_notice_xml_gz) |
| 1914 | endif |
| 1915 | endif |
| 1916 | |
| 1917 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 1918 | ifneq (,$(installed_vendor_dlkm_notice_xml_gz) |
| 1919 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_dlkm_notice_xml_gz) |
| 1920 | endif |
| 1921 | endif |
| 1922 | |
| 1923 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 1924 | ifneq (,$(installed_odm_dlkm_notice_xml_gz)) |
| 1925 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_dlkm_notice_xml_gz) |
| 1926 | endif |
| 1927 | endif |
| 1928 | |
| 1929 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 1930 | ifneq (,$(installed_system_dlkm_notice_xml_gz)) |
| 1931 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_dlkm_notice_xml_gz) |
| 1932 | endif |
| 1933 | endif |
| 1934 | |
Ying Wang | 62c81f8 | 2013-08-22 20:02:03 -0700 | [diff] [blame] | 1935 | endif # TARGET_BUILD_APPS |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1936 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1937 | # Presently none of the prebuilts etc. comply with policy to have a license text. Fake one here. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 1938 | $(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] | 1939 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1940 | ifneq (,$(strip $(INSTALLED_KERNEL_TARGET))) |
| 1941 | $(call declare-license-metadata,$(INSTALLED_KERNEL_TARGET),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
| 1942 | endif |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1943 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1944 | # No matter where it gets copied from, a copied linux kernel is licensed under "GPL 2.0 only" |
| 1945 | $(eval $(call declare-copy-files-license-metadata,,:kernel,SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,kernel)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1946 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1947 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1948 | # ################################################################# |
| 1949 | # Targets for user images |
| 1950 | # ################################################################# |
| 1951 | |
JP Abgrall | 6ea5bd6 | 2014-10-22 20:01:22 -0700 | [diff] [blame] | 1952 | # These options tell the recovery updater/installer how to mount the partitions writebale. |
| 1953 | # <fstype>=<fstype_opts>[|<fstype_opts>]... |
| 1954 | # fstype_opts := <opt>[,<opt>]... |
| 1955 | # opt := <name>[=<value>] |
JP Abgrall | 775b1ab | 2014-10-23 16:27:03 -0700 | [diff] [blame] | 1956 | # The following worked on Nexus devices with Kernel 3.1, 3.4, 3.10 |
| 1957 | 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] | 1958 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1959 | INTERNAL_USERIMAGES_DEPS := \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1960 | $(BUILD_IMAGE) \ |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1961 | $(MKE2FS_CONF) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1962 | $(MKEXTUSERIMG) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1963 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 1964 | $(call declare-1p-target,$(MKE2FS_CONF),system/extras) |
| 1965 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1966 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
| 1967 | INTERNAL_USERIMAGES_DEPS += $(MKF2FSUSERIMG) |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 1968 | endif |
| 1969 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1970 | ifneq ($(filter \ |
| 1971 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1972 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1973 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1974 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1975 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1976 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1977 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1978 | $(BOARD_SYSTEM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1979 | ,erofs),) |
David Anderson | 94ad5bb | 2022-03-04 10:57:58 -0800 | [diff] [blame] | 1980 | INTERNAL_USERIMAGES_DEPS += $(MKEROFS) |
David Anderson | f54665f | 2022-03-04 14:42:18 -0800 | [diff] [blame] | 1981 | ifeq ($(BOARD_EROFS_USE_LEGACY_COMPRESSION),true) |
| 1982 | BOARD_EROFS_COMPRESSOR ?= "lz4" |
| 1983 | else |
Kelvin Zhang | 37d4929 | 2021-12-01 14:21:24 -0800 | [diff] [blame] | 1984 | BOARD_EROFS_COMPRESSOR ?= "lz4hc,9" |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1985 | endif |
David Anderson | f54665f | 2022-03-04 14:42:18 -0800 | [diff] [blame] | 1986 | endif |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1987 | |
| 1988 | ifneq ($(filter \ |
| 1989 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1990 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1991 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1992 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1993 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1994 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1995 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1996 | $(BOARD_SYSTEM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1997 | ,squashfs),) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1998 | INTERNAL_USERIMAGES_DEPS += $(MKSQUASHFSUSERIMG) |
| 1999 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2000 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 2001 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 2002 | INTERNAL_USERIMAGES_DEPS += $(AVBTOOL) |
| 2003 | endif |
| 2004 | |
| 2005 | # Get a colon-separated list of search paths. |
| 2006 | INTERNAL_USERIMAGES_BINARY_PATHS := $(subst $(space),:,$(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))) |
| 2007 | |
Jooyung Han | b27c2e8 | 2020-09-23 19:15:20 +0900 | [diff] [blame] | 2008 | # Collects file_contexts files from modules to be installed |
| 2009 | $(call merge-fc-files, \ |
| 2010 | $(sort $(foreach m,$(product_MODULES),$(ALL_MODULES.$(m).FILE_CONTEXTS))),\ |
| 2011 | $(call intermediates-dir-for,ETC,file_contexts.bin)/file_contexts.modules.tmp) |
| 2012 | |
Alex Klyubin | 092c902 | 2017-03-13 13:28:34 -0700 | [diff] [blame] | 2013 | SELINUX_FC := $(call intermediates-dir-for,ETC,file_contexts.bin)/file_contexts.bin |
Jooyung Han | b27c2e8 | 2020-09-23 19:15:20 +0900 | [diff] [blame] | 2014 | |
Ying Wang | fdbd9cb | 2012-11-21 10:47:00 -0800 | [diff] [blame] | 2015 | INTERNAL_USERIMAGES_DEPS += $(SELINUX_FC) |
| 2016 | |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2017 | # $(1) the partition name (eg system) |
| 2018 | # $(2) the image prop file |
| 2019 | define add-common-flags-to-image-props |
| 2020 | $(eval _var := $(call to-upper,$(1))) |
| 2021 | $(hide) echo "$(1)_selinux_fc=$(SELINUX_FC)" >> $(2) |
| 2022 | $(hide) echo "building_$(1)_image=$(BUILDING_$(_var)_IMAGE)" >> $(2) |
| 2023 | endef |
| 2024 | |
| 2025 | # $(1) the partition name (eg system) |
| 2026 | # $(2) the image prop file |
| 2027 | define add-common-ro-flags-to-image-props |
| 2028 | $(eval _var := $(call to-upper,$(1))) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 2029 | $(if $(BOARD_$(_var)IMAGE_EROFS_COMPRESSOR),$(hide) echo "$(1)_erofs_compressor=$(BOARD_$(_var)IMAGE_EROFS_COMPRESSOR)" >> $(2)) |
Dmitrii Merkurev | 8ab6603 | 2022-05-17 23:10:37 +0000 | [diff] [blame] | 2030 | $(if $(BOARD_$(_var)IMAGE_EROFS_COMPRESS_HINTS),$(hide) echo "$(1)_erofs_compress_hints=$(BOARD_$(_var)IMAGE_EROFS_COMPRESS_HINTS)" >> $(2)) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 2031 | $(if $(BOARD_$(_var)IMAGE_EROFS_PCLUSTER_SIZE),$(hide) echo "$(1)_erofs_pcluster_size=$(BOARD_$(_var)IMAGE_EROFS_PCLUSTER_SIZE)" >> $(2)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2032 | $(if $(BOARD_$(_var)IMAGE_EXTFS_INODE_COUNT),$(hide) echo "$(1)_extfs_inode_count=$(BOARD_$(_var)IMAGE_EXTFS_INODE_COUNT)" >> $(2)) |
| 2033 | $(if $(BOARD_$(_var)IMAGE_EXTFS_RSV_PCT),$(hide) echo "$(1)_extfs_rsv_pct=$(BOARD_$(_var)IMAGE_EXTFS_RSV_PCT)" >> $(2)) |
| 2034 | $(if $(BOARD_$(_var)IMAGE_F2FS_SLOAD_COMPRESS_FLAGS),$(hide) echo "$(1)_f2fs_sldc_flags=$(BOARD_$(_var)IMAGE_F2FS_SLOAD_COMPRESS_FLAGS)" >> $(2)) |
| 2035 | $(if $(BOARD_$(_var)IMAGE_FILE_SYSTEM_COMPRESS),$(hide) echo "$(1)_f2fs_compress=$(BOARD_$(_var)IMAGE_FILE_SYSTEM_COMPRESS)" >> $(2)) |
| 2036 | $(if $(BOARD_$(_var)IMAGE_FILE_SYSTEM_TYPE),$(hide) echo "$(1)_fs_type=$(BOARD_$(_var)IMAGE_FILE_SYSTEM_TYPE)" >> $(2)) |
| 2037 | $(if $(BOARD_$(_var)IMAGE_JOURNAL_SIZE),$(hide) echo "$(1)_journal_size=$(BOARD_$(_var)IMAGE_JOURNAL_SIZE)" >> $(2)) |
| 2038 | $(if $(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "$(1)_reserved_size=$(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE)" >> $(2)) |
| 2039 | $(if $(BOARD_$(_var)IMAGE_PARTITION_SIZE),$(hide) echo "$(1)_size=$(BOARD_$(_var)IMAGE_PARTITION_SIZE)" >> $(2)) |
| 2040 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "$(1)_squashfs_block_size=$(BOARD_$(_var)IMAGE_SQUASHFS_BLOCK_SIZE)" >> $(2)) |
| 2041 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "$(1)_squashfs_compressor=$(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR)" >> $(2)) |
| 2042 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "$(1)_squashfs_compressor_opt=$(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(2)) |
| 2043 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "$(1)_squashfs_disable_4k_align=$(BOARD_$(_var)IMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(2)) |
| 2044 | $(if $(PRODUCT_$(_var)_BASE_FS_PATH),$(hide) echo "$(1)_base_fs_file=$(PRODUCT_$(_var)_BASE_FS_PATH)" >> $(2)) |
| 2045 | $(eval _size := $(BOARD_$(_var)IMAGE_PARTITION_SIZE)) |
| 2046 | $(eval _reserved := $(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE)) |
| 2047 | $(eval _headroom := $(PRODUCT_$(_var)_HEADROOM)) |
David Anderson | 5f4aa6c | 2021-09-23 17:03:14 -0700 | [diff] [blame] | 2048 | $(if $(or $(_size), $(_reserved), $(_headroom)),, |
| 2049 | $(hide) echo "$(1)_disable_sparse=true" >> $(2)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2050 | $(call add-common-flags-to-image-props,$(1),$(2)) |
David Anderson | 9e95a02 | 2021-08-31 21:32:45 -0700 | [diff] [blame] | 2051 | endef |
| 2052 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2053 | # $(1): the path of the output dictionary file |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2054 | # $(2): a subset of "system vendor cache userdata product system_ext oem odm vendor_dlkm odm_dlkm system_dlkm" |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2055 | # $(3): additional "key=value" pairs to append to the dictionary file. |
| 2056 | define generate-image-prop-dictionary |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2057 | $(if $(filter $(2),system),\ |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 2058 | $(if $(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE),$(hide) echo "system_other_size=$(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2059 | $(if $(PRODUCT_SYSTEM_HEADROOM),$(hide) echo "system_headroom=$(PRODUCT_SYSTEM_HEADROOM)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2060 | $(call add-common-ro-flags-to-image-props,system,$(1)) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 2061 | ) |
| 2062 | $(if $(filter $(2),system_other),\ |
| 2063 | $(hide) echo "building_system_other_image=$(BUILDING_SYSTEM_OTHER_IMAGE)" >> $(1) |
David Anderson | 9e95a02 | 2021-08-31 21:32:45 -0700 | [diff] [blame] | 2064 | $(if $(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE),, |
| 2065 | $(hide) echo "system_other_disable_sparse=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2066 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2067 | $(if $(filter $(2),userdata),\ |
| 2068 | $(if $(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "userdata_fs_type=$(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 2069 | $(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] | 2070 | $(if $(PRODUCT_FS_CASEFOLD),$(hide) echo "needs_casefold=$(PRODUCT_FS_CASEFOLD)" >> $(1)) |
| 2071 | $(if $(PRODUCT_QUOTA_PROJID),$(hide) echo "needs_projid=$(PRODUCT_QUOTA_PROJID)" >> $(1)) |
Jaegeuk Kim | 55c16dd | 2020-10-12 19:50:05 -0700 | [diff] [blame] | 2072 | $(if $(PRODUCT_FS_COMPRESSION),$(hide) echo "needs_compress=$(PRODUCT_FS_COMPRESSION)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2073 | $(call add-common-flags-to-image-props,userdata,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2074 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2075 | $(if $(filter $(2),cache),\ |
| 2076 | $(if $(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "cache_fs_type=$(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 2077 | $(if $(BOARD_CACHEIMAGE_PARTITION_SIZE),$(hide) echo "cache_size=$(BOARD_CACHEIMAGE_PARTITION_SIZE)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2078 | $(call add-common-flags-to-image-props,cache,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2079 | ) |
| 2080 | $(if $(filter $(2),vendor),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2081 | $(call add-common-ro-flags-to-image-props,vendor,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2082 | ) |
| 2083 | $(if $(filter $(2),product),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2084 | $(call add-common-ro-flags-to-image-props,product,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2085 | ) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2086 | $(if $(filter $(2),system_ext),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2087 | $(call add-common-ro-flags-to-image-props,system_ext,$(1)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2088 | ) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2089 | $(if $(filter $(2),odm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2090 | $(call add-common-ro-flags-to-image-props,odm,$(1)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2091 | ) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2092 | $(if $(filter $(2),vendor_dlkm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2093 | $(call add-common-ro-flags-to-image-props,vendor_dlkm,$(1)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2094 | ) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2095 | $(if $(filter $(2),odm_dlkm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2096 | $(call add-common-ro-flags-to-image-props,odm_dlkm,$(1)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2097 | ) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2098 | $(if $(filter $(2),system_dlkm),\ |
| 2099 | $(call add-common-ro-flags-to-image-props,system_dlkm,$(1)) |
| 2100 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2101 | $(if $(filter $(2),oem),\ |
| 2102 | $(if $(BOARD_OEMIMAGE_PARTITION_SIZE),$(hide) echo "oem_size=$(BOARD_OEMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 2103 | $(if $(BOARD_OEMIMAGE_JOURNAL_SIZE),$(hide) echo "oem_journal_size=$(BOARD_OEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 2104 | $(if $(BOARD_OEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "oem_extfs_inode_count=$(BOARD_OEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 2105 | $(if $(BOARD_OEMIMAGE_EXTFS_RSV_PCT),$(hide) echo "oem_extfs_rsv_pct=$(BOARD_OEMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2106 | $(call add-common-flags-to-image-props,oem,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2107 | ) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 2108 | $(hide) echo "ext_mkuserimg=$(notdir $(MKEXTUSERIMG))" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2109 | |
Cole Faust | 8fc7bef | 2022-06-15 16:10:49 -0700 | [diff] [blame] | 2110 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT2)),$(hide) echo "fs_type=ext2" >> $(1), |
| 2111 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT3)),$(hide) echo "fs_type=ext3" >> $(1), |
| 2112 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT4)),$(hide) echo "fs_type=ext4" >> $(1)))) |
| 2113 | |
| 2114 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)),,$(hide) echo "extfs_sparse_flag=-s" >> $(1)) |
| 2115 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EROFS_DISABLED)),,$(hide) echo "erofs_sparse_flag=-s" >> $(1)) |
| 2116 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_SQUASHFS_DISABLED)),,$(hide) echo "squashfs_sparse_flag=-s" >> $(1)) |
| 2117 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)),,$(hide) echo "f2fs_sparse_flag=-S" >> $(1)) |
David Anderson | 40a821f | 2021-09-22 18:02:01 -0700 | [diff] [blame] | 2118 | $(if $(BOARD_EROFS_COMPRESSOR),$(hide) echo "erofs_default_compressor=$(BOARD_EROFS_COMPRESSOR)" >> $(1)) |
Dmitrii Merkurev | 8ab6603 | 2022-05-17 23:10:37 +0000 | [diff] [blame] | 2119 | $(if $(BOARD_EROFS_COMPRESS_HINTS),$(hide) echo "erofs_default_compress_hints=$(BOARD_EROFS_COMPRESS_HINTS)" >> $(1)) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 2120 | $(if $(BOARD_EROFS_PCLUSTER_SIZE),$(hide) echo "erofs_pcluster_size=$(BOARD_EROFS_PCLUSTER_SIZE)" >> $(1)) |
| 2121 | $(if $(BOARD_EROFS_SHARE_DUP_BLOCKS),$(hide) echo "erofs_share_dup_blocks=$(BOARD_EROFS_SHARE_DUP_BLOCKS)" >> $(1)) |
David Anderson | f54665f | 2022-03-04 14:42:18 -0800 | [diff] [blame] | 2122 | $(if $(BOARD_EROFS_USE_LEGACY_COMPRESSION),$(hide) echo "erofs_use_legacy_compression=$(BOARD_EROFS_USE_LEGACY_COMPRESSION)" >> $(1)) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 2123 | $(if $(BOARD_EXT4_SHARE_DUP_BLOCKS),$(hide) echo "ext4_share_dup_blocks=$(BOARD_EXT4_SHARE_DUP_BLOCKS)" >> $(1)) |
| 2124 | $(if $(BOARD_FLASH_LOGICAL_BLOCK_SIZE), $(hide) echo "flash_logical_block_size=$(BOARD_FLASH_LOGICAL_BLOCK_SIZE)" >> $(1)) |
| 2125 | $(if $(BOARD_FLASH_ERASE_BLOCK_SIZE), $(hide) echo "flash_erase_block_size=$(BOARD_FLASH_ERASE_BLOCK_SIZE)" >> $(1)) |
Bowgo Tsai | 6ceeb1a | 2017-10-11 16:21:48 +0800 | [diff] [blame] | 2126 | $(if $(filter eng, $(TARGET_BUILD_VARIANT)),$(hide) echo "verity_disable=true" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2127 | $(if $(PRODUCT_SYSTEM_VERITY_PARTITION),$(hide) echo "system_verity_block_device=$(PRODUCT_SYSTEM_VERITY_PARTITION)" >> $(1)) |
| 2128 | $(if $(PRODUCT_VENDOR_VERITY_PARTITION),$(hide) echo "vendor_verity_block_device=$(PRODUCT_VENDOR_VERITY_PARTITION)" >> $(1)) |
| 2129 | $(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] | 2130 | $(if $(PRODUCT_SYSTEM_EXT_VERITY_PARTITION),$(hide) echo "system_ext_verity_block_device=$(PRODUCT_SYSTEM_EXT_VERITY_PARTITION)" >> $(1)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2131 | $(if $(PRODUCT_VENDOR_DLKM_VERITY_PARTITION),$(hide) echo "vendor_dlkm_verity_block_device=$(PRODUCT_VENDOR_DLKM_VERITY_PARTITION)" >> $(1)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2132 | $(if $(PRODUCT_ODM_DLKM_VERITY_PARTITION),$(hide) echo "odm_dlkm_verity_block_device=$(PRODUCT_ODM_DLKM_VERITY_PARTITION)" >> $(1)) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2133 | $(if $(PRODUCT_SYSTEM_DLKM_VERITY_PARTITION),$(hide) echo "system_dlkm_verity_block_device=$(PRODUCT_SYSTEM_DLKM_VERITY_PARTITION)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2134 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot=$(PRODUCT_SUPPORTS_VBOOT)" >> $(1)) |
| 2135 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_key=$(PRODUCT_VBOOT_SIGNING_KEY)" >> $(1)) |
| 2136 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_subkey=$(PRODUCT_VBOOT_SIGNING_SUBKEY)" >> $(1)) |
| 2137 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "futility=$(notdir $(FUTILITY))" >> $(1)) |
| 2138 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_signer_cmd=$(VBOOT_SIGNER)" >> $(1)) |
Tao Bao | 3cba374 | 2017-05-16 16:27:25 -0700 | [diff] [blame] | 2139 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_avbtool=$(notdir $(AVBTOOL))" >> $(1)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 2140 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2141 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2142 | $(if $(BOARD_AVB_ENABLE),\ |
| 2143 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 2144 | $(hide) echo "avb_system_key_path=$(BOARD_AVB_SYSTEM_KEY_PATH)" >> $(1) |
| 2145 | $(hide) echo "avb_system_algorithm=$(BOARD_AVB_SYSTEM_ALGORITHM)" >> $(1) |
| 2146 | $(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] | 2147 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2148 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2149 | $(if $(BOARD_AVB_ENABLE),\ |
| 2150 | $(if $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH),\ |
| 2151 | $(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] | 2152 | $(hide) echo "avb_system_other_algorithm=$(BOARD_AVB_SYSTEM_OTHER_ALGORITHM)" >> $(1))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 2153 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2154 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2155 | $(if $(BOARD_AVB_ENABLE),\ |
| 2156 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 2157 | $(hide) echo "avb_vendor_key_path=$(BOARD_AVB_VENDOR_KEY_PATH)" >> $(1) |
| 2158 | $(hide) echo "avb_vendor_algorithm=$(BOARD_AVB_VENDOR_ALGORITHM)" >> $(1) |
| 2159 | $(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] | 2160 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2161 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_add_hashtree_footer_args=$(BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2162 | $(if $(BOARD_AVB_ENABLE),\ |
| 2163 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 2164 | $(hide) echo "avb_product_key_path=$(BOARD_AVB_PRODUCT_KEY_PATH)" >> $(1) |
| 2165 | $(hide) echo "avb_product_algorithm=$(BOARD_AVB_PRODUCT_ALGORITHM)" >> $(1) |
| 2166 | $(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] | 2167 | $(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] | 2168 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2169 | $(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] | 2170 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2171 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 2172 | $(hide) echo "avb_system_ext_key_path=$(BOARD_AVB_SYSTEM_EXT_KEY_PATH)" >> $(1) |
| 2173 | $(hide) echo "avb_system_ext_algorithm=$(BOARD_AVB_SYSTEM_EXT_ALGORITHM)" >> $(1) |
| 2174 | $(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] | 2175 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2176 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_add_hashtree_footer_args=$(BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2177 | $(if $(BOARD_AVB_ENABLE),\ |
| 2178 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 2179 | $(hide) echo "avb_odm_key_path=$(BOARD_AVB_ODM_KEY_PATH)" >> $(1) |
| 2180 | $(hide) echo "avb_odm_algorithm=$(BOARD_AVB_ODM_ALGORITHM)" >> $(1) |
| 2181 | $(hide) echo "avb_odm_rollback_index_location=$(BOARD_AVB_ODM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2182 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2183 | $(if $(BOARD_AVB_ENABLE),\ |
| 2184 | $(hide) echo "avb_vendor_dlkm_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2185 | $(if $(BOARD_AVB_ENABLE),\ |
| 2186 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 2187 | $(hide) echo "avb_vendor_dlkm_key_path=$(BOARD_AVB_VENDOR_DLKM_KEY_PATH)" >> $(1) |
| 2188 | $(hide) echo "avb_vendor_dlkm_algorithm=$(BOARD_AVB_VENDOR_DLKM_ALGORITHM)" >> $(1) |
| 2189 | $(hide) echo "avb_vendor_dlkm_rollback_index_location=$(BOARD_AVB_VENDOR_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2190 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2191 | $(if $(BOARD_AVB_ENABLE),\ |
| 2192 | $(hide) echo "avb_odm_dlkm_add_hashtree_footer_args=$(BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2193 | $(if $(BOARD_AVB_ENABLE),\ |
| 2194 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 2195 | $(hide) echo "avb_odm_dlkm_key_path=$(BOARD_AVB_ODM_DLKM_KEY_PATH)" >> $(1) |
| 2196 | $(hide) echo "avb_odm_dlkm_algorithm=$(BOARD_AVB_ODM_DLKM_ALGORITHM)" >> $(1) |
| 2197 | $(hide) echo "avb_odm_dlkm_rollback_index_location=$(BOARD_AVB_ODM_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2198 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2199 | $(if $(BOARD_AVB_ENABLE),\ |
| 2200 | $(hide) echo "avb_system_dlkm_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2201 | $(if $(BOARD_AVB_ENABLE),\ |
| 2202 | $(if $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH),\ |
| 2203 | $(hide) echo "avb_system_dlkm_key_path=$(BOARD_AVB_SYSTEM_DLKM_KEY_PATH)" >> $(1) |
| 2204 | $(hide) echo "avb_system_dlkm_algorithm=$(BOARD_AVB_SYSTEM_DLKM_ALGORITHM)" >> $(1) |
| 2205 | $(hide) echo "avb_system_dlkm_rollback_index_location=$(BOARD_SYSTEM_SYSTEM_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2206 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
| 2207 | $(hide) echo "recovery_as_boot=true" >> $(1)) |
Bowgo Tsai | 85578e0 | 2022-04-19 10:50:59 +0800 | [diff] [blame] | 2208 | $(if $(filter true,$(BOARD_BUILD_GKI_BOOT_IMAGE_WITHOUT_RAMDISK)),\ |
| 2209 | $(hide) echo "gki_boot_image_without_ramdisk=true" >> $(1)) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 2210 | $(hide) echo "root_dir=$(TARGET_ROOT_OUT)" >> $(1) |
Tamas Petz | 89418f0 | 2020-02-03 15:40:15 +0100 | [diff] [blame] | 2211 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITION_SIZE)),\ |
| 2212 | $(hide) echo "use_dynamic_partition_size=true" >> $(1)) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 2213 | $(if $(COPY_IMAGES_FOR_TARGET_FILES_ZIP),\ |
| 2214 | $(hide) echo "use_fixed_timestamp=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2215 | $(if $(3),$(hide) $(foreach kv,$(3),echo "$(kv)" >> $(1);)) |
| 2216 | endef |
| 2217 | |
| 2218 | # $(1): the path of the output dictionary file |
| 2219 | # $(2): additional "key=value" pairs to append to the dictionary file. |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2220 | PROP_DICTIONARY_IMAGES := oem |
| 2221 | ifdef BUILDING_CACHE_IMAGE |
| 2222 | PROP_DICTIONARY_IMAGES += cache |
| 2223 | endif |
| 2224 | ifdef BUILDING_SYSTEM_IMAGE |
| 2225 | PROP_DICTIONARY_IMAGES += system |
| 2226 | endif |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 2227 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 2228 | PROP_DICTIONARY_IMAGES += system_other |
| 2229 | endif |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2230 | ifdef BUILDING_USERDATA_IMAGE |
| 2231 | PROP_DICTIONARY_IMAGES += userdata |
| 2232 | endif |
| 2233 | ifdef BUILDING_VENDOR_IMAGE |
| 2234 | PROP_DICTIONARY_IMAGES += vendor |
| 2235 | endif |
| 2236 | ifdef BUILDING_PRODUCT_IMAGE |
| 2237 | PROP_DICTIONARY_IMAGES += product |
| 2238 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2239 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 2240 | PROP_DICTIONARY_IMAGES += system_ext |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2241 | endif |
| 2242 | ifdef BUILDING_ODM_IMAGE |
| 2243 | PROP_DICTIONARY_IMAGES += odm |
| 2244 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2245 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 2246 | PROP_DICTIONARY_IMAGES += vendor_dlkm |
| 2247 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2248 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 2249 | PROP_DICTIONARY_IMAGES += odm_dlkm |
| 2250 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2251 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 2252 | PROP_DICTIONARY_IMAGES += system_dlkm |
| 2253 | endif |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2254 | define generate-userimage-prop-dictionary |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2255 | $(call generate-image-prop-dictionary,$(1),$(PROP_DICTIONARY_IMAGES),$(2)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2256 | endef |
| 2257 | |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 2258 | # $(1): the path of the input dictionary file, where each line has the format key=value |
| 2259 | # $(2): the key to look up |
| 2260 | define read-image-prop-dictionary |
| 2261 | $$(grep '$(2)=' $(1) | cut -f2- -d'=') |
| 2262 | endef |
| 2263 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2264 | # ----------------------------------------------------------------- |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2265 | # Recovery image |
Doug Zongker | 8cebf1f | 2009-07-07 17:14:25 -0700 | [diff] [blame] | 2266 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2267 | # Recovery image exists if we are building recovery, or building recovery as boot. |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2268 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_RECOVERY_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2269 | ifdef BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2270 | |
Ying Wang | 3752614 | 2015-03-10 12:02:57 -0700 | [diff] [blame] | 2271 | INTERNAL_RECOVERYIMAGE_FILES := $(filter $(TARGET_RECOVERY_OUT)/%, \ |
| 2272 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2273 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2274 | INSTALLED_FILES_FILE_RECOVERY := $(PRODUCT_OUT)/installed-files-recovery.txt |
| 2275 | INSTALLED_FILES_JSON_RECOVERY := $(INSTALLED_FILES_FILE_RECOVERY:.txt=.json) |
| 2276 | |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 2277 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2278 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 2279 | endif |
| 2280 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2281 | # TODO(b/30414428): Can't depend on INTERNAL_RECOVERYIMAGE_FILES alone like other |
| 2282 | # INSTALLED_FILES_FILE_* rules. Because currently there're cp/rsync/rm commands in |
| 2283 | # build-recoveryimage-target, which would touch the files under TARGET_RECOVERY_OUT and race with |
| 2284 | # the call to FILELIST. |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 2285 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2286 | |
| 2287 | $(INSTALLED_FILES_FILE_RECOVERY): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RECOVERY) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2288 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERYIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2289 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 2290 | mkdir -p $(dir $@) |
| 2291 | rm -f $@ |
| 2292 | $(FILESLIST) $(TARGET_RECOVERY_ROOT_OUT) > $(@:.txt=.json) |
| 2293 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2294 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2295 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_RECOVERY))) |
| 2296 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_RECOVERY))) |
| 2297 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2298 | recovery_sepolicy := \ |
| 2299 | $(TARGET_RECOVERY_ROOT_OUT)/sepolicy \ |
Jeff Vander Stoep | 4ff042c | 2017-06-13 08:30:46 -0700 | [diff] [blame] | 2300 | $(TARGET_RECOVERY_ROOT_OUT)/plat_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2301 | $(TARGET_RECOVERY_ROOT_OUT)/plat_service_contexts \ |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2302 | $(TARGET_RECOVERY_ROOT_OUT)/plat_property_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 2303 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2304 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_service_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 2305 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_property_contexts \ |
| 2306 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2307 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_service_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2308 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_property_contexts \ |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 2309 | $(TARGET_RECOVERY_ROOT_OUT)/odm_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2310 | $(TARGET_RECOVERY_ROOT_OUT)/odm_property_contexts \ |
| 2311 | $(TARGET_RECOVERY_ROOT_OUT)/product_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2312 | $(TARGET_RECOVERY_ROOT_OUT)/product_service_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2313 | $(TARGET_RECOVERY_ROOT_OUT)/product_property_contexts |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 2314 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2315 | # Passed into rsync from non-recovery root to recovery root, to avoid overwriting recovery-specific |
| 2316 | # SELinux files |
| 2317 | IGNORE_RECOVERY_SEPOLICY := $(patsubst $(TARGET_RECOVERY_OUT)/%,--exclude=/%,$(recovery_sepolicy)) |
| 2318 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 2319 | # if building multiple boot images from multiple kernels, use the first kernel listed |
| 2320 | # for the recovery image |
| 2321 | recovery_kernel := $(firstword $(INSTALLED_KERNEL_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2322 | recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2323 | recovery_resources_common := bootable/recovery/res |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2324 | |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 2325 | # Set recovery_density to a density bucket based on TARGET_SCREEN_DENSITY, PRODUCT_AAPT_PREF_CONFIG, |
| 2326 | # or mdpi, in order of preference. We support both specific buckets (e.g. xdpi) and numbers, |
| 2327 | # which get remapped to a bucket. |
| 2328 | recovery_density := $(or $(TARGET_SCREEN_DENSITY),$(PRODUCT_AAPT_PREF_CONFIG),mdpi) |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 2329 | ifeq (,$(filter xxxhdpi xxhdpi xhdpi hdpi mdpi,$(recovery_density))) |
| 2330 | recovery_density_value := $(patsubst %dpi,%,$(recovery_density)) |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 2331 | # 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] | 2332 | # ------160------240------320----------480------------640------ |
| 2333 | # mdpi hdpi xhdpi xxhdpi xxxhdpi |
| 2334 | recovery_density := $(strip \ |
| 2335 | $(or $(if $(filter $(shell echo $$(($(recovery_density_value) >= 560))),1),xxxhdpi),\ |
| 2336 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 400))),1),xxhdpi),\ |
| 2337 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 280))),1),xhdpi),\ |
| 2338 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 200))),1),hdpi,mdpi))) |
Doug Zongker | 8eaeea9 | 2014-05-12 15:32:20 -0700 | [diff] [blame] | 2339 | endif |
| 2340 | |
| 2341 | ifneq (,$(wildcard $(recovery_resources_common)-$(recovery_density))) |
| 2342 | recovery_resources_common := $(recovery_resources_common)-$(recovery_density) |
| 2343 | else |
Doug Zongker | 25d55f8 | 2014-04-04 13:51:15 -0700 | [diff] [blame] | 2344 | recovery_resources_common := $(recovery_resources_common)-xhdpi |
| 2345 | endif |
| 2346 | |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 2347 | # Select the 18x32 font on high-density devices (xhdpi and up); and the 12x22 font on other devices. |
| 2348 | # Note that the font selected here can be overridden for a particular device by putting a font.png |
| 2349 | # in its private recovery resources. |
| 2350 | ifneq (,$(filter xxxhdpi xxhdpi xhdpi,$(recovery_density))) |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2351 | recovery_font := bootable/recovery/fonts/18x32.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2352 | else |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2353 | recovery_font := bootable/recovery/fonts/12x22.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2354 | endif |
| 2355 | |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2356 | |
| 2357 | # We will only generate the recovery background text images if the variable |
| 2358 | # TARGET_RECOVERY_UI_SCREEN_WIDTH is defined. For devices with xxxhdpi and xxhdpi, we set the |
| 2359 | # variable to the commonly used values here, if it hasn't been intialized elsewhere. While for |
| 2360 | # devices with lower density, they must have TARGET_RECOVERY_UI_SCREEN_WIDTH defined in their |
| 2361 | # BoardConfig in order to use this feature. |
| 2362 | ifeq ($(recovery_density),xxxhdpi) |
| 2363 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1440 |
| 2364 | else ifeq ($(recovery_density),xxhdpi) |
| 2365 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1080 |
| 2366 | endif |
| 2367 | |
| 2368 | ifneq ($(TARGET_RECOVERY_UI_SCREEN_WIDTH),) |
| 2369 | # Subtracts the margin width and menu indent from the screen width; it's safe to be conservative. |
| 2370 | ifeq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),) |
| 2371 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - 10)) |
| 2372 | else |
| 2373 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - $(TARGET_RECOVERY_UI_MARGIN_WIDTH) - 10)) |
| 2374 | endif |
| 2375 | |
| 2376 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2377 | RECOVERY_INSTALLING_TEXT_FILE := $(call intermediates-dir-for,ETC,recovery_text_res)/installing_text.png |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2378 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/installing_security_text.png |
| 2379 | RECOVERY_ERASING_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/erasing_text.png |
| 2380 | RECOVERY_ERROR_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/error_text.png |
| 2381 | RECOVERY_NO_COMMAND_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/no_command_text.png |
| 2382 | |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2383 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/cancel_wipe_data_text.png |
| 2384 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/factory_data_reset_text.png |
| 2385 | RECOVERY_TRY_AGAIN_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/try_again_text.png |
| 2386 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_confirmation_text.png |
| 2387 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_menu_header_text.png |
| 2388 | |
| 2389 | generated_recovery_text_files := \ |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2390 | $(RECOVERY_INSTALLING_TEXT_FILE) \ |
| 2391 | $(RECOVERY_INSTALLING_SECURITY_TEXT_FILE) \ |
| 2392 | $(RECOVERY_ERASING_TEXT_FILE) \ |
| 2393 | $(RECOVERY_ERROR_TEXT_FILE) \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2394 | $(RECOVERY_NO_COMMAND_TEXT_FILE) \ |
| 2395 | $(RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE) \ |
| 2396 | $(RECOVERY_FACTORY_DATA_RESET_TEXT_FILE) \ |
| 2397 | $(RECOVERY_TRY_AGAIN_TEXT_FILE) \ |
| 2398 | $(RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE) \ |
| 2399 | $(RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2400 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2401 | resource_dir := bootable/recovery/tools/recovery_l10n/res/ |
| 2402 | resource_dir_deps := $(sort $(shell find $(resource_dir) -name *.xml -not -name .*)) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2403 | image_generator_jar := $(HOST_OUT_JAVA_LIBRARIES)/RecoveryImageGenerator.jar |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2404 | zopflipng := $(HOST_OUT_EXECUTABLES)/zopflipng |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2405 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_SOURCE_FONTS := $(recovery_noto-fonts_dep) $(recovery_roboto-fonts_dep) |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2406 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_FONT_FILES_DIR := $(call intermediates-dir-for,ETC,recovery_font_files) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2407 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RESOURCE_DIR := $(resource_dir) |
| 2408 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_IMAGE_GENERATOR_JAR := $(image_generator_jar) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2409 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_ZOPFLIPNG := $(zopflipng) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2410 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_IMAGE_WIDTH := $(recovery_image_width) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2411 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_BACKGROUND_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2412 | recovery_installing \ |
| 2413 | recovery_installing_security \ |
| 2414 | recovery_erasing \ |
| 2415 | recovery_error \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2416 | recovery_no_command |
| 2417 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_WIPE_DATA_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2418 | recovery_cancel_wipe_data \ |
| 2419 | recovery_factory_data_reset \ |
| 2420 | recovery_try_again \ |
| 2421 | recovery_wipe_data_menu_header \ |
| 2422 | recovery_wipe_data_confirmation |
| 2423 | $(RECOVERY_INSTALLING_TEXT_FILE): .KATI_IMPLICIT_OUTPUTS := $(filter-out $(RECOVERY_INSTALLING_TEXT_FILE),$(generated_recovery_text_files)) |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2424 | $(RECOVERY_INSTALLING_TEXT_FILE): $(image_generator_jar) $(resource_dir_deps) $(recovery_noto-fonts_dep) $(recovery_roboto-fonts_dep) $(zopflipng) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2425 | # Prepares the font directory. |
| 2426 | @rm -rf $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
| 2427 | @mkdir -p $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2428 | $(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] | 2429 | @rm -rf $(dir $@) |
| 2430 | @mkdir -p $(dir $@) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2431 | $(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] | 2432 | $(eval output_file := $(dir $@)/$(patsubst recovery_%,%_text.png,$(text_name))) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2433 | $(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] | 2434 | java -jar $(PRIVATE_IMAGE_GENERATOR_JAR) \ |
| 2435 | --image_width $(PRIVATE_RECOVERY_IMAGE_WIDTH) \ |
| 2436 | --text_name $(text_name) \ |
| 2437 | --font_dir $(PRIVATE_RECOVERY_FONT_FILES_DIR) \ |
| 2438 | --resource_dir $(PRIVATE_RESOURCE_DIR) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2439 | --output_file $(output_file) $(center_alignment) && \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2440 | $(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] | 2441 | else |
| 2442 | RECOVERY_INSTALLING_TEXT_FILE := |
| 2443 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := |
| 2444 | RECOVERY_ERASING_TEXT_FILE := |
| 2445 | RECOVERY_ERROR_TEXT_FILE := |
| 2446 | RECOVERY_NO_COMMAND_TEXT_FILE := |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2447 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := |
| 2448 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := |
| 2449 | RECOVERY_TRY_AGAIN_TEXT_FILE := |
| 2450 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := |
| 2451 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2452 | endif # TARGET_RECOVERY_UI_SCREEN_WIDTH |
| 2453 | |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2454 | ifndef TARGET_PRIVATE_RES_DIRS |
| 2455 | TARGET_PRIVATE_RES_DIRS := $(wildcard $(TARGET_DEVICE_DIR)/recovery/res) |
| 2456 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2457 | recovery_resource_deps := $(shell find $(recovery_resources_common) \ |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2458 | $(TARGET_PRIVATE_RES_DIRS) -type f) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2459 | recovery_resource_deps += $(generated_recovery_text_files) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2460 | |
| 2461 | |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2462 | ifdef TARGET_RECOVERY_FSTAB |
| 2463 | recovery_fstab := $(TARGET_RECOVERY_FSTAB) |
Cole Faust | 64c2ddb | 2022-01-07 12:44:31 -0800 | [diff] [blame] | 2464 | else ifdef TARGET_RECOVERY_FSTAB_GENRULE |
| 2465 | # Specifies a soong genrule module that generates an fstab. |
| 2466 | recovery_fstab := $(call intermediates-dir-for,ETC,$(TARGET_RECOVERY_FSTAB_GENRULE))/$(TARGET_RECOVERY_FSTAB_GENRULE) |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2467 | else |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 2468 | recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab)) |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2469 | endif |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2470 | ifdef TARGET_RECOVERY_WIPE |
| 2471 | recovery_wipe := $(TARGET_RECOVERY_WIPE) |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2472 | else |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2473 | recovery_wipe := |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2474 | endif |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2475 | |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2476 | # Traditionally with non-A/B OTA we have: |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2477 | # boot.img + recovery-from-boot.p + recovery-resource.dat = recovery.img. |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2478 | # recovery-resource.dat is needed only if we carry an imgdiff patch of the boot and recovery images |
| 2479 | # 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] | 2480 | # |
| 2481 | # We no longer need that if one of the following conditions holds: |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2482 | # 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] | 2483 | # (BOARD_USES_FULL_RECOVERY_IMAGE = true); |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2484 | # b) We build a single image that contains boot and recovery both - no recovery image to install |
| 2485 | # (BOARD_USES_RECOVERY_AS_BOOT = true); |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2486 | # c) We include the recovery DTBO image within recovery - not needing the resource file as we |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2487 | # do bsdiff because boot and recovery will contain different number of entries |
| 2488 | # (BOARD_INCLUDE_RECOVERY_DTBO = true). |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2489 | # d) We include the recovery ACPIO image within recovery - not needing the resource file as we |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2490 | # do bsdiff because boot and recovery will contain different number of entries |
| 2491 | # (BOARD_INCLUDE_RECOVERY_ACPIO = true). |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2492 | # e) We build a single image that contains vendor_boot and recovery both - no recovery image to |
Yifan Hong | ef7a971 | 2020-10-20 13:17:42 -0700 | [diff] [blame] | 2493 | # install |
| 2494 | # (BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT = true). |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2495 | |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2496 | ifeq (,$(filter true, $(BOARD_USES_FULL_RECOVERY_IMAGE) $(BOARD_USES_RECOVERY_AS_BOOT) \ |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2497 | $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO) \ |
Yifan Hong | ef7a971 | 2020-10-20 13:17:42 -0700 | [diff] [blame] | 2498 | $(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT))) |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2499 | # 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] | 2500 | RECOVERY_RESOURCE_ZIP := $(TARGET_OUT_VENDOR)/etc/recovery-resource.dat |
| 2501 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_RESOURCE_ZIP) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2502 | else |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2503 | RECOVERY_RESOURCE_ZIP := |
| 2504 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2505 | |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2506 | INSTALLED_RECOVERY_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/prop.default |
| 2507 | |
| 2508 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): PRIVATE_RECOVERY_UI_PROPERTIES := \ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2509 | TARGET_RECOVERY_UI_ANIMATION_FPS:animation_fps \ |
| 2510 | TARGET_RECOVERY_UI_MARGIN_HEIGHT:margin_height \ |
| 2511 | TARGET_RECOVERY_UI_MARGIN_WIDTH:margin_width \ |
| 2512 | TARGET_RECOVERY_UI_MENU_UNUSABLE_ROWS:menu_unusable_rows \ |
| 2513 | TARGET_RECOVERY_UI_PROGRESS_BAR_BASELINE:progress_bar_baseline \ |
| 2514 | TARGET_RECOVERY_UI_TOUCH_LOW_THRESHOLD:touch_low_threshold \ |
| 2515 | TARGET_RECOVERY_UI_TOUCH_HIGH_THRESHOLD:touch_high_threshold \ |
Chuong Hoang | b684a13 | 2023-06-30 04:44:23 +0000 | [diff] [blame] | 2516 | TARGET_RECOVERY_UI_VR_STEREO_OFFSET:vr_stereo_offset \ |
| 2517 | TARGET_RECOVERY_UI_BRIGHTNESS_FILE:brightness_file \ |
| 2518 | TARGET_RECOVERY_UI_MAX_BRIGHTNESS_FILE:max_brightness_file \ |
| 2519 | TARGET_RECOVERY_UI_BRIGHTNESS_NORMAL:brightness_normal_percent \ |
| 2520 | TARGET_RECOVERY_UI_BRIGHTNESS_DIMMED:brightness_dimmed_percent |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2521 | |
| 2522 | # Parses the given list of build variables and writes their values as build properties if defined. |
| 2523 | # For example, if a target defines `TARGET_RECOVERY_UI_MARGIN_HEIGHT := 100`, |
| 2524 | # `ro.recovery.ui.margin_height=100` will be appended to the given output file. |
| 2525 | # $(1): Map from the build variable names to property names |
| 2526 | # $(2): Output file |
| 2527 | define append-recovery-ui-properties |
| 2528 | echo "#" >> $(2) |
| 2529 | echo "# RECOVERY UI BUILD PROPERTIES" >> $(2) |
| 2530 | echo "#" >> $(2) |
| 2531 | $(foreach prop,$(1), \ |
| 2532 | $(eval _varname := $(call word-colon,1,$(prop))) \ |
| 2533 | $(eval _propname := $(call word-colon,2,$(prop))) \ |
| 2534 | $(eval _value := $($(_varname))) \ |
| 2535 | $(if $(_value), \ |
| 2536 | echo ro.recovery.ui.$(_propname)=$(_value) >> $(2) &&)) true |
| 2537 | endef |
| 2538 | |
| 2539 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): \ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2540 | $(INSTALLED_BUILD_PROP_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2541 | $(INSTALLED_VENDOR_BUILD_PROP_TARGET) \ |
| 2542 | $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2543 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2544 | $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) |
Tao Bao | 1edaca1 | 2018-09-18 10:22:54 -0700 | [diff] [blame] | 2545 | @echo "Target recovery buildinfo: $@" |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2546 | $(hide) mkdir -p $(dir $@) |
| 2547 | $(hide) rm -f $@ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2548 | $(hide) cat $(INSTALLED_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2549 | $(hide) cat $(INSTALLED_VENDOR_BUILD_PROP_TARGET) >> $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2550 | $(hide) cat $(INSTALLED_ODM_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2551 | $(hide) cat $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) >> $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2552 | $(hide) cat $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2553 | $(call append-recovery-ui-properties,$(PRIVATE_RECOVERY_UI_PROPERTIES),$@) |
| 2554 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2555 | $(call declare-1p-target,$(INSTALLED_RECOVERY_BUILD_PROP_TARGET),build) |
| 2556 | $(call declare-license-deps,$(INSTALLED_RECOVERY_BUILD_PROP_TARGET),\ |
| 2557 | $(INSTALLED_BUILD_PROP_TARGET) $(INSTALLED_VENDOR_BUILD_PROP_TARGET) $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2558 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET)) |
| 2559 | |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2560 | # Only install boot/etc/build.prop to recovery image on recovery_as_boot. |
| 2561 | # On device with dedicated recovery partition, the file should come from the boot |
| 2562 | # ramdisk. |
| 2563 | ifeq (true,$(BOARD_USES_RECOVERY_AS_BOOT)) |
| 2564 | INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/$(RAMDISK_BUILD_PROP_REL_PATH) |
| 2565 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET): $(INSTALLED_RAMDISK_BUILD_PROP_TARGET) |
| 2566 | $(copy-file-to-target) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2567 | |
| 2568 | $(call declare-1p-target,$(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET),build) |
| 2569 | $(call declare-license-deps,$(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET),$(INSTALLED_RAMDISK_BUILD_PROP_TARGET)) |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2570 | endif |
| 2571 | |
Yifan Hong | c56931c | 2020-10-28 16:35:19 -0700 | [diff] [blame] | 2572 | INTERNAL_RECOVERYIMAGE_ARGS := --ramdisk $(recovery_ramdisk) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2573 | |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 2574 | ifneq (truetrue,$(strip $(BUILDING_VENDOR_BOOT_IMAGE))$(strip $(BOARD_USES_RECOVERY_AS_BOOT))) |
Yifan Hong | c56931c | 2020-10-28 16:35:19 -0700 | [diff] [blame] | 2575 | INTERNAL_RECOVERYIMAGE_ARGS += $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2576 | # Assumes this has already been stripped |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2577 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 2578 | ifdef INTERNAL_KERNEL_CMDLINE |
| 2579 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2580 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 2581 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2582 | ifdef BOARD_KERNEL_BASE |
| 2583 | INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 2584 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 2585 | ifdef BOARD_KERNEL_PAGESIZE |
| 2586 | INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 2587 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2588 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2589 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2590 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2591 | else |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2592 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_DTBOIMAGE) |
| 2593 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 2594 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2595 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 2596 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_acpio $(BOARD_RECOVERY_ACPIO) |
| 2597 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2598 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 2599 | INTERNAL_RECOVERYIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 2600 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 2601 | endif # (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2602 | ifndef BOARD_RECOVERY_MKBOOTIMG_ARGS |
| 2603 | BOARD_RECOVERY_MKBOOTIMG_ARGS := $(BOARD_MKBOOTIMG_ARGS) |
| 2604 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2605 | |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2606 | $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP): $(MKBOOTFS) $(COMPRESSION_COMMAND_DEPS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2607 | $(INTERNAL_ROOT_FILES) \ |
| 2608 | $(INSTALLED_RAMDISK_TARGET) \ |
| 2609 | $(INTERNAL_RECOVERYIMAGE_FILES) \ |
| 2610 | $(recovery_sepolicy) \ |
| 2611 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 2612 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET) \ |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2613 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2614 | $(recovery_resource_deps) \ |
| 2615 | $(recovery_fstab) |
| 2616 | # Making recovery image |
| 2617 | mkdir -p $(TARGET_RECOVERY_OUT) |
| 2618 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sdcard $(TARGET_RECOVERY_ROOT_OUT)/tmp |
| 2619 | # Copying baseline ramdisk... |
| 2620 | # Use rsync because "cp -Rf" fails to overwrite broken symlinks on Mac. |
| 2621 | rsync -a --exclude=sdcard $(IGNORE_RECOVERY_SEPOLICY) $(IGNORE_CACHE_LINK) $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT) |
| 2622 | # Modifying ramdisk contents... |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2623 | ln -sf /system/bin/init $(TARGET_RECOVERY_ROOT_OUT)/init |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2624 | # Removes $(TARGET_RECOVERY_ROOT_OUT)/init*.rc EXCEPT init.recovery*.rc. |
| 2625 | find $(TARGET_RECOVERY_ROOT_OUT) -maxdepth 1 -name 'init*.rc' -type f -not -name "init.recovery.*.rc" | xargs rm -f |
| 2626 | cp $(TARGET_ROOT_OUT)/init.recovery.*.rc $(TARGET_RECOVERY_ROOT_OUT)/ 2> /dev/null || true # Ignore error when the src file doesn't exist. |
| 2627 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2628 | rm -rf $(TARGET_RECOVERY_ROOT_OUT)/res/* |
| 2629 | cp -rf $(recovery_resources_common)/* $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2630 | $(foreach recovery_text_file,$(generated_recovery_text_files), \ |
| 2631 | cp -rf $(recovery_text_file) $(TARGET_RECOVERY_ROOT_OUT)/res/images/ &&) true |
| 2632 | cp -f $(recovery_font) $(TARGET_RECOVERY_ROOT_OUT)/res/images/font.png |
| 2633 | $(foreach item,$(TARGET_PRIVATE_RES_DIRS), \ |
| 2634 | cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/$(newline)) |
| 2635 | $(foreach item,$(recovery_fstab), \ |
| 2636 | cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.fstab) |
| 2637 | $(if $(strip $(recovery_wipe)), \ |
| 2638 | cp -f $(recovery_wipe) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.wipe) |
| 2639 | ln -sf prop.default $(TARGET_RECOVERY_ROOT_OUT)/default.prop |
| 2640 | $(BOARD_RECOVERY_IMAGE_PREPARE) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2641 | $(hide) touch $@ |
| 2642 | |
| 2643 | $(recovery_ramdisk): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2644 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RECOVERY_ROOT_OUT) | $(COMPRESSION_COMMAND) > $(recovery_ramdisk) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2645 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2646 | # $(1): output file |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2647 | # $(2): optional kernel file |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2648 | define build-recoveryimage-target |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2649 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2650 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2651 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_RECOVERY_MKBOOTIMG_ARGS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2652 | --output $(1).unsigned, \ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2653 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2654 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2655 | $(BOARD_RECOVERY_MKBOOTIMG_ARGS) --output $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2656 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
| 2657 | $(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] | 2658 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2659 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(call get-bootimage-partition-size,$(1),boot))), \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2660 | $(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] | 2661 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 2662 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 2663 | $(AVBTOOL) add_hash_footer --image $(1) $(call get-partition-size-argument,$(call get-bootimage-partition-size,$(1),boot)) --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS),\ |
| 2664 | $(AVBTOOL) add_hash_footer --image $(1) $(call get-partition-size-argument,$(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] | 2665 | endef |
| 2666 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2667 | recoveryimage-deps := $(MKBOOTIMG) $(recovery_ramdisk) $(recovery_kernel) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2668 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2669 | recoveryimage-deps += $(VBOOT_SIGNER) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 2670 | endif |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2671 | ifeq (true,$(BOARD_AVB_ENABLE)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2672 | recoveryimage-deps += $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2673 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2674 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2675 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2676 | recoveryimage-deps += $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2677 | else |
| 2678 | recoveryimage-deps += $(BOARD_PREBUILT_DTBOIMAGE) |
| 2679 | endif |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2680 | endif |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2681 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2682 | recoveryimage-deps += $(BOARD_RECOVERY_ACPIO) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2683 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2684 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2685 | recoveryimage-deps += $(INSTALLED_DTBIMAGE_TARGET) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2686 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2687 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2688 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 2689 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET), $(eval $(call add-dependency,$(b),$(call bootimage-to-kernel,$(b))))) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2690 | $(INSTALLED_BOOTIMAGE_TARGET): $(recoveryimage-deps) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2691 | $(call pretty,"Target boot image from recovery: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2692 | $(call build-recoveryimage-target, $@, $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $@)))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2693 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 2694 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",bool) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2695 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(recoveryimage-deps),$(PRODUCT_OUT)/:/) |
| 2696 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2697 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_BOOTIMAGE_TARGET) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2698 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2699 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2700 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(recoveryimage-deps) |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2701 | $(call build-recoveryimage-target, $@, \ |
| 2702 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2703 | |
Tao Bao | 4594d0e | 2015-12-22 09:47:46 -0800 | [diff] [blame] | 2704 | ifdef RECOVERY_RESOURCE_ZIP |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2705 | $(RECOVERY_RESOURCE_ZIP): $(INSTALLED_RECOVERYIMAGE_TARGET) | $(ZIPTIME) |
Doug Zongker | 1a09726 | 2012-09-04 14:45:11 -0700 | [diff] [blame] | 2706 | $(hide) mkdir -p $(dir $@) |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2707 | $(hide) find $(TARGET_RECOVERY_ROOT_OUT)/res -type f | sort | zip -0qrjX $@ -@ |
| 2708 | $(remove-timestamps-from-package) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2709 | endif |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2710 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2711 | |
| 2712 | $(call declare-1p-container,$(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 2713 | $(call declare-container-license-deps,$(INSTALLED_RECOVERYIMAGE_TARGET),$(recoveryimage-deps),$(PRODUCT_OUT)/:/) |
| 2714 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2715 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_RECOVERYIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2716 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2717 | .PHONY: recoveryimage-nodeps |
| 2718 | recoveryimage-nodeps: |
| 2719 | @echo "make $@: ignoring dependencies" |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2720 | $(call build-recoveryimage-target, $(INSTALLED_RECOVERYIMAGE_TARGET), \ |
| 2721 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2722 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2723 | else # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2724 | RECOVERY_RESOURCE_ZIP := |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2725 | endif # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2726 | |
| 2727 | .PHONY: recoveryimage |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2728 | recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET) $(RECOVERY_RESOURCE_ZIP) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2729 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2730 | ifneq ($(BOARD_NAND_PAGE_SIZE),) |
| 2731 | $(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] | 2732 | endif |
| 2733 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2734 | ifneq ($(BOARD_NAND_SPARE_SIZE),) |
| 2735 | $(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] | 2736 | endif |
| 2737 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2738 | |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2739 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2740 | # Build debug ramdisk and debug boot image. |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2741 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_DEBUG_RAMDISK_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2742 | ifneq ($(BUILDING_DEBUG_BOOT_IMAGE)$(BUILDING_DEBUG_VENDOR_BOOT_IMAGE),) |
| 2743 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2744 | INTERNAL_DEBUG_RAMDISK_FILES := $(filter $(TARGET_DEBUG_RAMDISK_OUT)/%, \ |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2745 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2746 | |
| 2747 | # Directories to be picked into the debug ramdisk. |
| 2748 | # As these directories are all merged into one single cpio archive, the order |
| 2749 | # matters. If there are multiple files with the same pathname, then the last one |
| 2750 | # wins. |
| 2751 | # |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2752 | # ramdisk-debug.img will merge the content from either ramdisk.img or |
| 2753 | # ramdisk-recovery.img, depending on whether BOARD_USES_RECOVERY_AS_BOOT |
| 2754 | # is set or not. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2755 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2756 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS := $(TARGET_RECOVERY_ROOT_OUT) |
| 2757 | INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET := $(recovery_ramdisk) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2758 | else # BOARD_USES_RECOVERY_AS_BOOT == true |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2759 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS := $(TARGET_RAMDISK_OUT) |
| 2760 | INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET := $(INSTALLED_RAMDISK_TARGET) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2761 | endif # BOARD_USES_RECOVERY_AS_BOOT != true |
| 2762 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2763 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS += $(TARGET_DEBUG_RAMDISK_OUT) |
| 2764 | INTERNAL_DEBUG_RAMDISK_SRC_DEPS := $(INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET) $(INTERNAL_DEBUG_RAMDISK_FILES) |
| 2765 | |
| 2766 | # INSTALLED_FILES_FILE_DEBUG_RAMDISK would ensure TARGET_DEBUG_RAMDISK_OUT is created. |
| 2767 | INSTALLED_FILES_FILE_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk-debug.txt |
| 2768 | INSTALLED_FILES_JSON_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK:.txt=.json) |
| 2769 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_DEBUG_RAMDISK) |
| 2770 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(INTERNAL_DEBUG_RAMDISK_SRC_DEPS) |
| 2771 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(FILESLIST) $(FILESLIST_UTIL) |
| 2772 | @echo "Installed file list: $@" |
| 2773 | $(hide) rm -f $@ |
| 2774 | $(hide) mkdir -p $(dir $@) $(TARGET_DEBUG_RAMDISK_OUT) |
| 2775 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
| 2776 | $(FILESLIST) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) > $(@:.txt=.json) |
| 2777 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2778 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2779 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_DEBUG_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2780 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_DEBUG_RAMDISK))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2781 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2782 | ifdef BUILDING_DEBUG_BOOT_IMAGE |
| 2783 | |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2784 | # ----------------------------------------------------------------- |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2785 | # the debug ramdisk, which is the original ramdisk plus additional |
| 2786 | # files: force_debuggable, adb_debug.prop and userdebug sepolicy. |
| 2787 | # When /force_debuggable is present, /init will load userdebug sepolicy |
| 2788 | # and property files to allow adb root, if the device is unlocked. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2789 | INSTALLED_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-debug.img |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2790 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2791 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2792 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2793 | @echo "Target debug ramdisk: $@" |
| 2794 | $(hide) rm -f $@ |
| 2795 | $(hide) mkdir -p $(dir $@) |
| 2796 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2797 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2798 | $(call declare-1p-container,$(INSTALLED_DEBUG_RAMDISK_TARGET),) |
| 2799 | $(call declare-container-license-deps,$(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2800 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2801 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2802 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2803 | .PHONY: ramdisk_debug-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2804 | ramdisk_debug-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2805 | @echo "make $@: ignoring dependencies" |
| 2806 | $(hide) rm -f $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2807 | $(hide) mkdir -p $(dir $(INSTALLED_DEBUG_RAMDISK_TARGET)) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) |
| 2808 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2809 | |
| 2810 | # ----------------------------------------------------------------- |
| 2811 | # the boot-debug.img, which is the kernel plus ramdisk-debug.img |
| 2812 | # |
| 2813 | # Note: it's intentional to skip signing for boot-debug.img, because it |
| 2814 | # can only be used if the device is unlocked with verification error. |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2815 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2816 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-debug,$(BOARD_KERNEL_BINARIES)), \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2817 | $(PRODUCT_OUT)/$(k).img) |
| 2818 | else |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2819 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-debug.img |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2820 | endif |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2821 | |
| 2822 | # Replace ramdisk.img in $(MKBOOTIMG) ARGS with ramdisk-debug.img to build boot-debug.img |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2823 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2824 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2825 | INTERNAL_DEBUG_BOOTIMAGE_ARGS := $(subst $(INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET),$(INSTALLED_DEBUG_RAMDISK_TARGET),$(INTERNAL_RECOVERYIMAGE_ARGS)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2826 | else |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2827 | INTERNAL_DEBUG_BOOTIMAGE_ARGS := $(subst $(INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET),$(INSTALLED_DEBUG_RAMDISK_TARGET),$(INTERNAL_BOOTIMAGE_ARGS)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2828 | endif |
| 2829 | |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2830 | # If boot.img is chained but boot-debug.img is not signed, libavb in bootloader |
| 2831 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2832 | # Using a test key to sign boot-debug.img to continue booting with the mismatched |
| 2833 | # public key, if the device is unlocked. |
| 2834 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2835 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2836 | endif |
| 2837 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2838 | BOARD_AVB_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2839 | INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2840 | # $(1): the bootimage to sign |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2841 | # $(2): boot image variant (boot, boot-debug, boot-test-harness) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2842 | define test-key-sign-bootimage |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2843 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(call get-bootimage-partition-size,$(1),$(2)))) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2844 | $(AVBTOOL) add_hash_footer \ |
| 2845 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 2846 | $(call get-partition-size-argument,$(call get-bootimage-partition-size,$(1),$(2)))\ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2847 | --partition_name boot $(INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS) \ |
| 2848 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2849 | $(call assert-max-image-size,$(1),$(call get-bootimage-partition-size,$(1),$(2))) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2850 | endef |
| 2851 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2852 | # $(1): output file |
| 2853 | define build-debug-bootimage-target |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2854 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-debug,kernel,$(notdir $(1)))) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2855 | $(INTERNAL_DEBUG_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2856 | $(BOARD_MKBOOTIMG_ARGS) --output $1 |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2857 | $(if $(BOARD_AVB_BOOT_KEY_PATH),$(call test-key-sign-bootimage,$1,boot-debug)) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2858 | endef |
| 2859 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2860 | # Depends on original boot.img and ramdisk-debug.img, to build the new boot-debug.img |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2861 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_BOOTIMAGE_TARGET) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2862 | $(call pretty,"Target boot debug image: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2863 | $(call build-debug-bootimage-target, $@) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2864 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 2865 | $(call declare-container-license-metadata,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",boot) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2866 | $(call declare-container-license-deps,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(INSTALLED_BOOTIMAGE_TARGET),$(PRODUCT_OUT)/:/) |
| 2867 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2868 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2869 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2870 | .PHONY: bootimage_debug-nodeps |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2871 | bootimage_debug-nodeps: $(MKBOOTIMG) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2872 | echo "make $@: ignoring dependencies" |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2873 | $(foreach b,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(call build-debug-bootimage-target,$b)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2874 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2875 | endif # BUILDING_DEBUG_BOOT_IMAGE |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2876 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2877 | # ----------------------------------------------------------------- |
| 2878 | # vendor debug ramdisk |
| 2879 | # Combines vendor ramdisk files and debug ramdisk files to build the vendor debug ramdisk. |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2880 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2881 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2882 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2883 | INTERNAL_VENDOR_DEBUG_RAMDISK_FILES := $(filter $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/%, \ |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2884 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2885 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2886 | # The debug vendor ramdisk combines vendor ramdisk and debug ramdisk. |
| 2887 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS := $(TARGET_VENDOR_RAMDISK_OUT) |
| 2888 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS := $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2889 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 2890 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 2891 | # recovery ramdisk in vendor_boot. |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2892 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2893 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 2894 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS += $(TARGET_RECOVERY_ROOT_OUT) |
| 2895 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS += $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 2896 | endif # BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT != true |
| 2897 | endif # BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT == true |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2898 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2899 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS += $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) $(TARGET_DEBUG_RAMDISK_OUT) |
| 2900 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS += $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
| 2901 | |
| 2902 | # INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK would ensure TARGET_VENDOR_DEBUG_RAMDISK_OUT is created. |
| 2903 | INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk-debug.txt |
| 2904 | INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK:.txt=.json) |
| 2905 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK) |
| 2906 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS) |
| 2907 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(FILESLIST) $(FILESLIST_UTIL) |
| 2908 | @echo "Installed file list: $@" |
| 2909 | $(hide) rm -f $@ |
| 2910 | $(hide) mkdir -p $(dir $@) $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) |
| 2911 | $(FILESLIST) $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) > $(@:.txt=.json) |
| 2912 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2913 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2914 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK)) |
| 2915 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2916 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2917 | INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-debug)/vendor_ramdisk-debug.cpio$(RAMDISK_EXT) |
| 2918 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2919 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2920 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2921 | $(hide) rm -f $@ |
| 2922 | $(hide) mkdir -p $(dir $@) |
| 2923 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2924 | |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2925 | INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-debug.img |
| 2926 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET) |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 2927 | @echo "Target debug vendor ramdisk: $@" |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2928 | $(copy-file-to-target) |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2929 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2930 | $(call declare-1p-container,$(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET),) |
| 2931 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET),$(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2932 | |
| 2933 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET) |
| 2934 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2935 | # ----------------------------------------------------------------- |
| 2936 | # vendor_boot-debug.img. |
| 2937 | INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-debug.img |
| 2938 | |
| 2939 | # The util to sign vendor_boot-debug.img with a test key. |
| 2940 | BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2941 | INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2942 | # $(1): the vendor bootimage to sign |
| 2943 | define test-key-sign-vendor-bootimage |
| 2944 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE))) |
| 2945 | $(AVBTOOL) add_hash_footer \ |
| 2946 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 2947 | $(call get-partition-size-argument,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) \ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2948 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS) \ |
| 2949 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 2950 | $(call assert-max-image-size,$(1),$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2951 | endef |
| 2952 | |
| 2953 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 2954 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2955 | endif |
| 2956 | |
| 2957 | # Depends on vendor_boot.img and vendor-ramdisk-debug.cpio.gz to build the new vendor_boot-debug.img |
Bowgo Tsai | 7ac9603 | 2021-01-20 16:29:49 +0800 | [diff] [blame] | 2958 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET) |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 2959 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2960 | $(call pretty,"Target vendor_boot debug image: $@") |
Bowgo Tsai | 7ac9603 | 2021-01-20 16:29:49 +0800 | [diff] [blame] | 2961 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS) --vendor_boot $@ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2962 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2963 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 2964 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2965 | $(call declare-1p-container,$(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET),) |
| 2966 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2967 | |
| 2968 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET) |
| 2969 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2970 | endif # BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2971 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2972 | # Appends a few test harness specific properties into the adb_debug.prop. |
| 2973 | ADDITIONAL_TEST_HARNESS_PROPERTIES := ro.audio.silent=1 |
| 2974 | ADDITIONAL_TEST_HARNESS_PROPERTIES += ro.test_harness=1 |
| 2975 | |
| 2976 | INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET := $(strip $(filter $(TARGET_DEBUG_RAMDISK_OUT)/adb_debug.prop,$(INTERNAL_DEBUG_RAMDISK_FILES))) |
| 2977 | INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET := $(TARGET_TEST_HARNESS_RAMDISK_OUT)/adb_debug.prop |
| 2978 | $(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET): $(INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET) |
| 2979 | $(hide) rm -f $@ |
| 2980 | $(hide) mkdir -p $(dir $@) |
| 2981 | ifdef INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET |
| 2982 | $(hide) cp $(INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET) $@ |
| 2983 | endif |
| 2984 | $(hide) echo "" >> $@ |
| 2985 | $(hide) echo "#" >> $@ |
| 2986 | $(hide) echo "# ADDITIONAL TEST HARNESS PROPERTIES" >> $@ |
| 2987 | $(hide) echo "#" >> $@ |
| 2988 | $(hide) $(foreach line,$(ADDITIONAL_TEST_HARNESS_PROPERTIES), \ |
| 2989 | echo "$(line)" >> $@;) |
| 2990 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 2991 | $(call declare-1p-target,$(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET)) |
| 2992 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2993 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_TEST_HARNESS_RAMDISK_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2994 | INTERNAL_TEST_HARNESS_RAMDISK_FILES := $(filter $(TARGET_TEST_HARNESS_RAMDISK_OUT)/%, \ |
| 2995 | $(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET) \ |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2996 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2997 | |
| 2998 | # The order is important here. The test harness ramdisk staging directory has to |
| 2999 | # come last so that it can override the adb_debug.prop in the debug ramdisk |
| 3000 | # staging directory. |
| 3001 | INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS := $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
| 3002 | INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) $(INTERNAL_TEST_HARNESS_RAMDISK_FILES) |
| 3003 | |
| 3004 | ifdef BUILDING_DEBUG_BOOT_IMAGE |
| 3005 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3006 | # ----------------------------------------------------------------- |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3007 | # The test harness ramdisk, which is based off debug_ramdisk, plus a |
| 3008 | # few additional test-harness-specific properties in adb_debug.prop. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 3009 | INSTALLED_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-test-harness.img |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3010 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3011 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS) |
| 3012 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 3013 | @echo "Target test harness ramdisk: $@" |
| 3014 | $(hide) rm -f $@ |
| 3015 | $(hide) mkdir -p $(dir $@) |
| 3016 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3017 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3018 | $(call declare-1p-container,$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),) |
| 3019 | $(call declare-container-license-deps,$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS),$(PRODUCT_OUT)/:/) |
| 3020 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3021 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3022 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3023 | .PHONY: ramdisk_test_harness-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 3024 | ramdisk_test_harness-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3025 | @echo "make $@: ignoring dependencies" |
| 3026 | $(hide) rm -f $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
| 3027 | $(hide) mkdir -p $(dir $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET)) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) |
| 3028 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3029 | |
| 3030 | # ----------------------------------------------------------------- |
| 3031 | # the boot-test-harness.img, which is the kernel plus ramdisk-test-harness.img |
| 3032 | # |
| 3033 | # Note: it's intentional to skip signing for boot-test-harness.img, because it |
| 3034 | # can only be used if the device is unlocked with verification error. |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 3035 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 3036 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-test-harness,$(BOARD_KERNEL_BINARIES)), \ |
| 3037 | $(PRODUCT_OUT)/$(k).img) |
| 3038 | else |
| 3039 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-test-harness.img |
| 3040 | endif |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3041 | |
| 3042 | # Replace ramdisk-debug.img in $(MKBOOTIMG) ARGS with ramdisk-test-harness.img to build boot-test-harness.img |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3043 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3044 | INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS := $(subst $(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_DEBUG_BOOTIMAGE_ARGS)) |
| 3045 | |
| 3046 | # If boot.img is chained but boot-test-harness.img is not signed, libavb in bootloader |
| 3047 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 3048 | # Using a test key to sign boot-test-harness.img to continue booting with the mismatched |
| 3049 | # public key, if the device is unlocked. |
| 3050 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
| 3051 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 3052 | endif |
| 3053 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 3054 | # $(1): output file |
| 3055 | define build-boot-test-harness-target |
| 3056 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-test-harness,kernel,$(notdir $(1)))) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 3057 | $(INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 3058 | $(BOARD_MKBOOTIMG_ARGS) --output $@ |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 3059 | $(if $(BOARD_AVB_BOOT_KEY_PATH),$(call test-key-sign-bootimage,$@,boot-test-harness)) |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 3060 | endef |
| 3061 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3062 | # Build the new boot-test-harness.img, based on boot-debug.img and ramdisk-test-harness.img. |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 3063 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3064 | $(call pretty,"Target boot test harness image: $@") |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 3065 | $(call build-boot-test-harness-target,$@) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3066 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3067 | $(call declare-1p-container,$(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET),) |
| 3068 | $(call declare-container-license-deps,$(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET),$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(PRODUCT_OUT)/:/) |
| 3069 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3070 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3071 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3072 | .PHONY: bootimage_test_harness-nodeps |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 3073 | bootimage_test_harness-nodeps: $(MKBOOTIMG) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3074 | echo "make $@: ignoring dependencies" |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 3075 | $(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] | 3076 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 3077 | endif # BUILDING_DEBUG_BOOT_IMAGE |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3078 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 3079 | # ----------------------------------------------------------------- |
| 3080 | # vendor test harness ramdisk, which is a vendor ramdisk combined with |
| 3081 | # a test harness ramdisk. |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 3082 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 3083 | |
| 3084 | INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-test-harness)/vendor_ramdisk-test-harness.cpio$(RAMDISK_EXT) |
| 3085 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3086 | # The order is important here. The test harness ramdisk staging directory has to |
| 3087 | # come last so that it can override the adb_debug.prop in the debug ramdisk |
| 3088 | # staging directory. |
| 3089 | INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DIRS := $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
| 3090 | INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DEPS := $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK) $(INTERNAL_TEST_HARNESS_RAMDISK_FILES) |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 3091 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3092 | $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DEPS) |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 3093 | $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3094 | $(hide) rm -f $@ |
| 3095 | $(hide) mkdir -p $(dir $@) |
| 3096 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 3097 | |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 3098 | INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-test-harness.img |
| 3099 | $(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 3100 | @echo "Target test harness vendor ramdisk: $@" |
| 3101 | $(copy-file-to-target) |
| 3102 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3103 | $(call declare-1p-container,$(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET),) |
| 3104 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 3105 | |
| 3106 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 3107 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 3108 | # ----------------------------------------------------------------- |
| 3109 | # vendor_boot-test-harness.img. |
| 3110 | INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-test-harness.img |
| 3111 | |
| 3112 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 3113 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 3114 | endif |
| 3115 | |
| 3116 | # Depends on vendor_boot.img and vendor_ramdisk-test-harness.cpio$(RAMDISK_EXT) to build the new vendor_boot-test-harness.img |
| 3117 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) |
| 3118 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 3119 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
| 3120 | $(call pretty,"Target vendor_boot test harness image: $@") |
| 3121 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS) --vendor_boot $@ |
| 3122 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 3123 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 3124 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3125 | $(call declare-1p-container,$(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET),) |
| 3126 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 3127 | |
| 3128 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET) |
| 3129 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 3130 | endif # BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 3131 | |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 3132 | endif # BUILDING_DEBUG_BOOT_IMAGE || BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 3133 | |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3134 | PARTITION_COMPAT_SYMLINKS := |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3135 | # Creates a compatibility symlink between two partitions, e.g. /system/vendor to /vendor |
| 3136 | # $1: from location (e.g $(TARGET_OUT)/vendor) |
| 3137 | # $2: destination location (e.g. /vendor) |
| 3138 | # $3: partition image name (e.g. vendor.img) |
| 3139 | define create-partition-compat-symlink |
| 3140 | $(eval \ |
| 3141 | $1: |
| 3142 | @echo Symlink $(patsubst $(PRODUCT_OUT)/%,%,$1) to $2 |
| 3143 | mkdir -p $(dir $1) |
| 3144 | if [ -d $1 ] && [ ! -h $1 ]; then \ |
| 3145 | echo 'Non-symlink $1 detected!' 1>&2; \ |
| 3146 | echo 'You cannot install files to $1 while building a separate $3!' 1>&2; \ |
| 3147 | exit 1; \ |
| 3148 | fi |
| 3149 | ln -sfn $2 $1 |
Jingwen Chen | 7d7f945 | 2020-09-22 13:47:13 +0000 | [diff] [blame] | 3150 | $1: .KATI_SYMLINK_OUTPUTS := $1 |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3151 | ) |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3152 | $(eval PARTITION_COMPAT_SYMLINKS += $1) |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3153 | $1 |
| 3154 | endef |
| 3155 | |
| 3156 | |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3157 | # FSVerity metadata generation |
| 3158 | # Generate fsverity metadata files (.fsv_meta) and build manifest |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3159 | # (<partition>/etc/security/fsverity/BuildManifest<suffix>.apk) BEFORE filtering systemimage, |
| 3160 | # vendorimage, odmimage, productimage files below. |
| 3161 | ifeq ($(PRODUCT_FSVERITY_GENERATE_METADATA),true) |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3162 | |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3163 | fsverity-metadata-targets-patterns := \ |
Victor Hsieh | fb3ef8a | 2022-01-07 14:05:42 -0800 | [diff] [blame] | 3164 | $(TARGET_OUT)/framework/% \ |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3165 | $(TARGET_OUT)/etc/boot-image.prof \ |
| 3166 | $(TARGET_OUT)/etc/dirty-image-objects \ |
Nicolas Geoffray | 13f2821 | 2022-03-18 17:28:14 +0000 | [diff] [blame] | 3167 | $(TARGET_OUT)/etc/preloaded-classes \ |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3168 | $(TARGET_OUT)/etc/classpaths/%.pb \ |
| 3169 | |
| 3170 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3171 | fsverity-metadata-targets-patterns += $(TARGET_OUT_SYSTEM_EXT)/framework/% |
| 3172 | endif |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3173 | |
| 3174 | # Generate fsv_meta |
| 3175 | fsverity-metadata-targets := $(sort $(filter \ |
| 3176 | $(fsverity-metadata-targets-patterns), \ |
Colin Cross | a1de5df | 2022-03-21 14:31:31 -0700 | [diff] [blame] | 3177 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3178 | |
| 3179 | define fsverity-generate-metadata |
Bob Badour | 2cd3536 | 2022-12-01 17:58:57 -0800 | [diff] [blame] | 3180 | $(call declare-0p-target,$(1).fsv_meta) |
| 3181 | |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3182 | $(1).fsv_meta: PRIVATE_SRC := $(1) |
| 3183 | $(1).fsv_meta: PRIVATE_FSVERITY := $(HOST_OUT_EXECUTABLES)/fsverity |
| 3184 | $(1).fsv_meta: $(HOST_OUT_EXECUTABLES)/fsverity_metadata_generator $(HOST_OUT_EXECUTABLES)/fsverity $(1) |
| 3185 | $$< --fsverity-path $$(PRIVATE_FSVERITY) --signature none \ |
| 3186 | --hash-alg sha256 --output $$@ $$(PRIVATE_SRC) |
| 3187 | endef |
| 3188 | |
| 3189 | $(foreach f,$(fsverity-metadata-targets),$(eval $(call fsverity-generate-metadata,$(f)))) |
| 3190 | ALL_DEFAULT_INSTALLED_MODULES += $(addsuffix .fsv_meta,$(fsverity-metadata-targets)) |
| 3191 | |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3192 | FSVERITY_APK_KEY_PATH := $(DEFAULT_SYSTEM_DEV_CERTIFICATE) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3193 | FSVERITY_APK_MANIFEST_TEMPLATE_PATH := system/security/fsverity/AndroidManifest.xml |
| 3194 | |
| 3195 | # Generate and install BuildManifest<suffix>.apk for the given partition |
| 3196 | # $(1): path of the output APK |
| 3197 | # $(2): partition name |
| 3198 | define fsverity-generate-and-install-manifest-apk |
| 3199 | fsverity-metadata-targets-$(2) := $(filter $(PRODUCT_OUT)/$(2)/%,\ |
| 3200 | $(fsverity-metadata-targets)) |
| 3201 | $(1): PRIVATE_FSVERITY := $(HOST_OUT_EXECUTABLES)/fsverity |
| 3202 | $(1): PRIVATE_AAPT2 := $(HOST_OUT_EXECUTABLES)/aapt2 |
| 3203 | $(1): PRIVATE_MIN_SDK_VERSION := $(DEFAULT_APP_TARGET_SDK) |
| 3204 | $(1): PRIVATE_VERSION_CODE := $(PLATFORM_SDK_VERSION) |
| 3205 | $(1): PRIVATE_VERSION_NAME := $(APPS_DEFAULT_VERSION_NAME) |
| 3206 | $(1): PRIVATE_APKSIGNER := $(HOST_OUT_EXECUTABLES)/apksigner |
| 3207 | $(1): PRIVATE_MANIFEST := $(FSVERITY_APK_MANIFEST_TEMPLATE_PATH) |
| 3208 | $(1): PRIVATE_FRAMEWORK_RES := $(call intermediates-dir-for,APPS,framework-res,,COMMON)/package-export.apk |
| 3209 | $(1): PRIVATE_KEY := $(FSVERITY_APK_KEY_PATH) |
| 3210 | $(1): PRIVATE_INPUTS := $$(fsverity-metadata-targets-$(2)) |
| 3211 | $(1): PRIVATE_ASSETS := $(call intermediates-dir-for,ETC,build_manifest-$(2))/assets |
| 3212 | $(1): $(HOST_OUT_EXECUTABLES)/fsverity_manifest_generator \ |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3213 | $(HOST_OUT_EXECUTABLES)/fsverity $(HOST_OUT_EXECUTABLES)/aapt2 \ |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3214 | $(HOST_OUT_EXECUTABLES)/apksigner $(FSVERITY_APK_MANIFEST_TEMPLATE_PATH) \ |
Victor Hsieh | be1029a | 2022-01-07 10:42:23 -0800 | [diff] [blame] | 3215 | $(FSVERITY_APK_KEY_PATH).x509.pem $(FSVERITY_APK_KEY_PATH).pk8 \ |
Jiyong Park | efbb6ff | 2022-01-10 17:14:30 +0900 | [diff] [blame] | 3216 | $(call intermediates-dir-for,APPS,framework-res,,COMMON)/package-export.apk \ |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3217 | $$(fsverity-metadata-targets-$(2)) |
| 3218 | rm -rf $$(PRIVATE_ASSETS) |
| 3219 | mkdir -p $$(PRIVATE_ASSETS) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3220 | $$< --fsverity-path $$(PRIVATE_FSVERITY) \ |
| 3221 | --base-dir $$(PRODUCT_OUT) \ |
| 3222 | --output $$(PRIVATE_ASSETS)/build_manifest.pb \ |
| 3223 | $$(PRIVATE_INPUTS) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3224 | $$(PRIVATE_AAPT2) link -o $$@ \ |
| 3225 | -A $$(PRIVATE_ASSETS) \ |
| 3226 | -I $$(PRIVATE_FRAMEWORK_RES) \ |
| 3227 | --min-sdk-version $$(PRIVATE_MIN_SDK_VERSION) \ |
| 3228 | --version-code $$(PRIVATE_VERSION_CODE) \ |
| 3229 | --version-name $$(PRIVATE_VERSION_NAME) \ |
| 3230 | --manifest $$(PRIVATE_MANIFEST) \ |
| 3231 | --rename-manifest-package com.android.security.fsverity_metadata.$(2) |
| 3232 | $$(PRIVATE_APKSIGNER) sign --in $$@ \ |
| 3233 | --cert $$(PRIVATE_KEY).x509.pem \ |
| 3234 | --key $$(PRIVATE_KEY).pk8 |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3235 | |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3236 | $(1).idsig: $(1) |
| 3237 | |
| 3238 | ALL_DEFAULT_INSTALLED_MODULES += $(1) $(1).idsig |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3239 | |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3240 | endef # fsverity-generate-and-install-manifest-apk |
| 3241 | |
| 3242 | $(eval $(call fsverity-generate-and-install-manifest-apk, \ |
| 3243 | $(TARGET_OUT)/etc/security/fsverity/BuildManifest.apk,system)) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3244 | ALL_FSVERITY_BUILD_MANIFEST_APK += $(TARGET_OUT)/etc/security/fsverity/BuildManifest.apk $(TARGET_OUT)/etc/security/fsverity/BuildManifest.apk.idsig |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3245 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3246 | $(eval $(call fsverity-generate-and-install-manifest-apk, \ |
| 3247 | $(TARGET_OUT_SYSTEM_EXT)/etc/security/fsverity/BuildManifestSystemExt.apk,system_ext)) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3248 | ALL_FSVERITY_BUILD_MANIFEST_APK += $(TARGET_OUT_SYSTEM_EXT)/etc/security/fsverity/BuildManifestSystemExt.apk $(TARGET_OUT_SYSTEM_EXT)/etc/security/fsverity/BuildManifestSystemExt.apk.idsig |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3249 | endif |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3250 | |
| 3251 | endif # PRODUCT_FSVERITY_GENERATE_METADATA |
| 3252 | |
| 3253 | |
| 3254 | # ----------------------------------------------------------------- |
| 3255 | # system image |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3256 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3257 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 37a1986 | 2018-10-31 16:31:46 -0700 | [diff] [blame] | 3258 | INTERNAL_SYSTEMIMAGE_FILES := $(sort $(filter $(TARGET_OUT)/%, \ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3259 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 3260 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3261 | # Create symlink /system/vendor to /vendor if necessary. |
| 3262 | ifdef BOARD_USES_VENDORIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3263 | _vendor_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT)/vendor,/vendor,vendor.img) |
| 3264 | INTERNAL_SYSTEMIMAGE_FILES += $(_vendor_symlink) |
| 3265 | ALL_DEFAULT_INSTALLED_MODULES += $(_vendor_symlink) |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3266 | endif |
| 3267 | |
| 3268 | # Create symlink /system/product to /product if necessary. |
| 3269 | ifdef BOARD_USES_PRODUCTIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3270 | _product_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT)/product,/product,product.img) |
| 3271 | INTERNAL_SYSTEMIMAGE_FILES += $(_product_symlink) |
| 3272 | ALL_DEFAULT_INSTALLED_MODULES += $(_product_symlink) |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3273 | endif |
| 3274 | |
| 3275 | # Create symlink /system/system_ext to /system_ext if necessary. |
| 3276 | ifdef BOARD_USES_SYSTEM_EXTIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3277 | _systemext_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT)/system_ext,/system_ext,system_ext.img) |
| 3278 | INTERNAL_SYSTEMIMAGE_FILES += $(_systemext_symlink) |
| 3279 | ALL_DEFAULT_INSTALLED_MODULES += $(_systemext_symlink) |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3280 | endif |
| 3281 | |
Ramji Jiyani | f9ce357 | 2021-12-01 00:03:11 +0000 | [diff] [blame] | 3282 | # ----------------------------------------------------------------- |
| 3283 | # system_dlkm partition image |
| 3284 | |
| 3285 | # Create symlinks for system_dlkm on devices with a system_dlkm partition: |
| 3286 | # /system/lib/modules -> /system_dlkm/lib/modules |
| 3287 | # |
| 3288 | # On devices with a system_dlkm partition, |
| 3289 | # - /system/lib/modules is a symlink to a directory that stores system DLKMs. |
| 3290 | # - The system_dlkm partition is mounted at /system_dlkm at runtime. |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3291 | ifdef BOARD_USES_SYSTEM_DLKMIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3292 | _system_dlkm_lib_modules_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT)/lib/modules,/system_dlkm/lib/modules,system_dlkm.img) |
| 3293 | INTERNAL_SYSTEMIMAGE_FILES += $(_system_dlkm_lib_modules_symlink) |
| 3294 | ALL_DEFAULT_INSTALLED_MODULES += $(_system_dlkm_lib_modules_symlink) |
Ramji Jiyani | f9ce357 | 2021-12-01 00:03:11 +0000 | [diff] [blame] | 3295 | endif |
| 3296 | |
Ying Wang | 82cceba | 2012-08-13 15:03:00 -0700 | [diff] [blame] | 3297 | FULL_SYSTEMIMAGE_DEPS := $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3298 | |
| 3299 | # ASAN libraries in the system image - add dependency. |
| 3300 | ASAN_IN_SYSTEM_INSTALLED := $(TARGET_OUT)/asan.tar.bz2 |
Evgenii Stepanov | 8841a7f | 2018-07-27 11:54:32 -0700 | [diff] [blame] | 3301 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3302 | ifeq (true,$(SANITIZE_TARGET_SYSTEM)) |
| 3303 | FULL_SYSTEMIMAGE_DEPS += $(ASAN_IN_SYSTEM_INSTALLED) |
| 3304 | endif |
| 3305 | endif |
| 3306 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 3307 | FULL_SYSTEMIMAGE_DEPS += $(INTERNAL_ROOT_FILES) $(INSTALLED_FILES_FILE_ROOT) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 3308 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3309 | # ----------------------------------------------------------------- |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3310 | ifdef BUILDING_SYSTEM_IMAGE |
| 3311 | |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3312 | # Install system linker configuration |
| 3313 | # Collect all available stub libraries installed in system and install with predefined linker configuration |
Kiyoung Kim | 0c07959 | 2022-12-01 10:15:10 +0900 | [diff] [blame] | 3314 | # Also append LLNDK libraries in the APEX as required libs |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3315 | SYSTEM_LINKER_CONFIG := $(TARGET_OUT)/etc/linker.config.pb |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3316 | SYSTEM_LINKER_CONFIG_SOURCE := $(call intermediates-dir-for,ETC,system_linker_config)/system_linker_config |
| 3317 | $(SYSTEM_LINKER_CONFIG): PRIVATE_SYSTEM_LINKER_CONFIG_SOURCE := $(SYSTEM_LINKER_CONFIG_SOURCE) |
Jooyung Han | 49bf691 | 2023-03-09 16:36:37 +0900 | [diff] [blame] | 3318 | $(SYSTEM_LINKER_CONFIG): $(INTERNAL_SYSTEMIMAGE_FILES) $(SYSTEM_LINKER_CONFIG_SOURCE) | conv_linker_config |
| 3319 | @echo Creating linker config: $@ |
| 3320 | @mkdir -p $(dir $@) |
| 3321 | @rm -f $@ |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3322 | $(HOST_OUT_EXECUTABLES)/conv_linker_config systemprovide --source $(PRIVATE_SYSTEM_LINKER_CONFIG_SOURCE) \ |
Jooyung Han | 49bf691 | 2023-03-09 16:36:37 +0900 | [diff] [blame] | 3323 | --output $@ --value "$(STUB_LIBRARIES)" --system "$(TARGET_OUT)" |
Kiyoung Kim | 0c07959 | 2022-12-01 10:15:10 +0900 | [diff] [blame] | 3324 | $(HOST_OUT_EXECUTABLES)/conv_linker_config append --source $@ --output $@ --key requireLibs \ |
Jooyung Han | 49bf691 | 2023-03-09 16:36:37 +0900 | [diff] [blame] | 3325 | --value "$(foreach lib,$(LLNDK_MOVED_TO_APEX_LIBRARIES), $(lib).so)" |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3326 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3327 | $(call declare-1p-target,$(SYSTEM_LINKER_CONFIG),) |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3328 | $(call declare-license-deps,$(SYSTEM_LINKER_CONFIG),$(INTERNAL_SYSTEMIMAGE_FILES) $(SYSTEM_LINKER_CONFIG_SOURCE)) |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3329 | |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3330 | FULL_SYSTEMIMAGE_DEPS += $(SYSTEM_LINKER_CONFIG) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3331 | ALL_DEFAULT_INSTALLED_MODULES += $(SYSTEM_LINKER_CONFIG) |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3332 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3333 | # installed file list |
| 3334 | # Depending on anything that $(BUILT_SYSTEMIMAGE) depends on. |
| 3335 | # We put installed-files.txt ahead of image itself in the dependency graph |
| 3336 | # so that we can get the size stat even if the build fails due to too large |
| 3337 | # system image. |
| 3338 | INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3339 | INSTALLED_FILES_JSON := $(INSTALLED_FILES_FILE:.txt=.json) |
| 3340 | $(INSTALLED_FILES_FILE): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3341 | $(INSTALLED_FILES_FILE): $(FULL_SYSTEMIMAGE_DEPS) $(FILESLIST) $(FILESLIST_UTIL) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3342 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3343 | mkdir -p $(dir $@) |
| 3344 | rm -f $@ |
| 3345 | $(FILESLIST) $(TARGET_OUT) > $(@:.txt=.json) |
| 3346 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3347 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3348 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3349 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3350 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3351 | .PHONY: installed-file-list |
| 3352 | installed-file-list: $(INSTALLED_FILES_FILE) |
Ying Wang | 534fcd7 | 2013-03-01 16:45:35 -0800 | [diff] [blame] | 3353 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3354 | systemimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3355 | $(call intermediates-dir-for,PACKAGING,systemimage) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3356 | BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img |
| 3357 | |
Cole Faust | 4ad906d | 2023-08-01 16:38:55 +0000 | [diff] [blame] | 3358 | # Used by the bazel sandwich to request the staging dir be built |
| 3359 | $(systemimage_intermediates)/staging_dir.stamp: $(FULL_SYSTEMIMAGE_DEPS) |
| 3360 | touch $@ |
| 3361 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3362 | # $(1): output file |
| 3363 | define build-systemimage-target |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3364 | @echo "Target system fs image: $(1)" |
| 3365 | @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] | 3366 | $(call generate-image-prop-dictionary, $(systemimage_intermediates)/system_image_info.txt,system, \ |
Geremy Condra | 5b5f495 | 2014-05-05 22:19:37 -0700 | [diff] [blame] | 3367 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3368 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3369 | $(BUILD_IMAGE) \ |
| 3370 | $(TARGET_OUT) $(systemimage_intermediates)/system_image_info.txt $(1) $(TARGET_OUT) \ |
| 3371 | || ( mkdir -p $${DIST_DIR}; \ |
| 3372 | cp $(INSTALLED_FILES_FILE) $${DIST_DIR}/installed-files-rescued.txt; \ |
| 3373 | exit 1 ) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3374 | endef |
| 3375 | |
Dan Willemsen | 6b72c73 | 2019-06-12 21:33:38 +0000 | [diff] [blame] | 3376 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3377 | $(BUILT_SYSTEMIMAGE): $(BOARD_AVB_SYSTEM_KEY_PATH) |
| 3378 | endif |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3379 | $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3380 | $(call build-systemimage-target,$@) |
| 3381 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3382 | $(call declare-1p-container,$(BUILT_SYSTEMIMAGE),system/extras) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3383 | $(call declare-container-license-deps,$(BUILT_SYSTEMIMAGE),$(FULL_SYSTEMIMAGE_DEPS),$(PRODUCT_OUT)/:/) |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3384 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3385 | INSTALLED_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/system.img |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 3386 | SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3387 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3388 | # INSTALLED_SYSTEMIMAGE_TARGET used to be named INSTALLED_SYSTEMIMAGE. Create an alias for backward |
| 3389 | # compatibility, in case device-specific Makefiles still refer to the old name. |
| 3390 | INSTALLED_SYSTEMIMAGE := $(INSTALLED_SYSTEMIMAGE_TARGET) |
| 3391 | |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3392 | # The system partition needs room for the recovery image as well. We |
| 3393 | # now store the recovery image as a binary patch using the boot image |
| 3394 | # as the source (since they are very similar). Generate the patch so |
| 3395 | # we can see how big it's going to be, and include that in the system |
| 3396 | # image size check calculation. |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3397 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
Sriram Raman | 1e96ac8 | 2009-07-24 13:52:32 -0700 | [diff] [blame] | 3398 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 3399 | ifneq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 3400 | ifneq (,$(filter true,$(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO))) |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 3401 | diff_tool := $(HOST_OUT_EXECUTABLES)/bsdiff |
| 3402 | else |
| 3403 | diff_tool := $(HOST_OUT_EXECUTABLES)/imgdiff |
| 3404 | endif |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3405 | intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch) |
| 3406 | RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 3407 | $(RECOVERY_FROM_BOOT_PATCH): PRIVATE_DIFF_TOOL := $(diff_tool) |
| 3408 | $(RECOVERY_FROM_BOOT_PATCH): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3409 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 3410 | $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3411 | $(diff_tool) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3412 | @echo "Construct recovery from boot" |
| 3413 | mkdir -p $(dir $@) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 3414 | $(PRIVATE_DIFF_TOOL) $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) $(INSTALLED_RECOVERYIMAGE_TARGET) $@ |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 3415 | else # $(BOARD_USES_FULL_RECOVERY_IMAGE) == true |
| 3416 | RECOVERY_FROM_BOOT_PATCH := $(INSTALLED_RECOVERYIMAGE_TARGET) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3417 | endif # BOARD_USES_FULL_RECOVERY_IMAGE |
| 3418 | endif # INSTALLED_RECOVERYIMAGE_TARGET |
| 3419 | endif # INSTALLED_BOOTIMAGE_TARGET |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3420 | |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3421 | $(INSTALLED_SYSTEMIMAGE_TARGET): $(BUILT_SYSTEMIMAGE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3422 | @echo "Install system fs image: $@" |
| 3423 | $(copy-file-to-target) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3424 | $(hide) $(call assert-max-image-size,$@,$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3425 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3426 | $(call declare-1p-container,$(INSTALLED_SYSTEMIMAGE_TARGET),) |
| 3427 | $(call declare-container-license-deps,$(INSTALLED_SYSTEMIMAGE_TARGET),$(BUILT_SYSTEMIMAGE),$(BUILT_SYSTEMIMAGE):/) |
| 3428 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3429 | systemimage: $(INSTALLED_SYSTEMIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3430 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3431 | SYSTEM_NOTICE_DEPS += $(INSTALLED_SYSTEMIMAGE_TARGET) |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3432 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3433 | .PHONY: systemimage-nodeps snod |
| 3434 | systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \ |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 3435 | | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3436 | @echo "make $@: ignoring dependencies" |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3437 | $(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE_TARGET)) |
Yifan Hong | 8c3dce0 | 2019-04-09 17:03:57 +0000 | [diff] [blame] | 3438 | $(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] | 3439 | ifeq (true,$(WITH_DEXPREOPT)) |
Dan Willemsen | 395358e | 2020-03-04 23:50:53 +0000 | [diff] [blame] | 3440 | $(warning Warning: with dexpreopt enabled, you may need a full rebuild.) |
Ying Wang | acf01ec | 2012-02-24 11:05:48 -0800 | [diff] [blame] | 3441 | endif |
| 3442 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3443 | endif # BUILDING_SYSTEM_IMAGE |
| 3444 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 3445 | .PHONY: sync syncsys sync_system |
| 3446 | sync syncsys sync_system: $(INTERNAL_SYSTEMIMAGE_FILES) |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 3447 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 3448 | # ----------------------------------------------------------------- |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3449 | # Old PDK fusion targets |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 3450 | .PHONY: platform |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3451 | platform: |
| 3452 | echo "Warning: 'platform' is obsolete" |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 3453 | |
| 3454 | .PHONY: platform-java |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3455 | platform-java: |
| 3456 | echo "Warning: 'platform-java' is obsolete" |
Colin Cross | 53c8f97 | 2018-09-28 16:19:42 -0700 | [diff] [blame] | 3457 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 3458 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3459 | # data partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3460 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_DATA)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3461 | INTERNAL_USERDATAIMAGE_FILES := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3462 | $(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3463 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3464 | ifdef BUILDING_USERDATA_IMAGE |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3465 | userdataimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3466 | $(call intermediates-dir-for,PACKAGING,userdata) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 3467 | BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img |
| 3468 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3469 | define build-userdataimage-target |
| 3470 | $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)") |
| 3471 | @mkdir -p $(TARGET_OUT_DATA) |
| 3472 | @mkdir -p $(userdataimage_intermediates) && rm -rf $(userdataimage_intermediates)/userdata_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3473 | $(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] | 3474 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3475 | $(BUILD_IMAGE) \ |
| 3476 | $(TARGET_OUT_DATA) $(userdataimage_intermediates)/userdata_image_info.txt \ |
| 3477 | $(INSTALLED_USERDATAIMAGE_TARGET) $(TARGET_OUT) |
| 3478 | $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3479 | endef |
| 3480 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 3481 | # We just build this directly to the install location. |
| 3482 | INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3483 | INSTALLED_USERDATAIMAGE_TARGET_DEPS := \ |
| 3484 | $(INTERNAL_USERIMAGES_DEPS) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3485 | $(INTERNAL_USERDATAIMAGE_FILES) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3486 | $(INSTALLED_USERDATAIMAGE_TARGET): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3487 | $(build-userdataimage-target) |
| 3488 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3489 | $(call declare-1p-container,$(INSTALLED_USERDATAIMAGE_TARGET),) |
| 3490 | $(call declare-container-license-deps,$(INSTALLED_USERDATAIMAGE_TARGET),$(INSTALLED_USERDATAIMAGE_TARGET_DEPS),$(PRODUCT_OUT)/:/) |
| 3491 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3492 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_USERDATAIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3493 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3494 | .PHONY: userdataimage-nodeps |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 3495 | userdataimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3496 | $(build-userdataimage-target) |
| 3497 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3498 | endif # BUILDING_USERDATA_IMAGE |
Ying Wang | e215ed5 | 2012-10-15 14:36:22 -0700 | [diff] [blame] | 3499 | |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3500 | # ASAN libraries in the system image - build rule. |
| 3501 | ASAN_OUT_DIRS_FOR_SYSTEM_INSTALL := $(sort $(patsubst $(PRODUCT_OUT)/%,%,\ |
| 3502 | $(TARGET_OUT_SHARED_LIBRARIES) \ |
| 3503 | $(2ND_TARGET_OUT_SHARED_LIBRARIES) \ |
| 3504 | $(TARGET_OUT_VENDOR_SHARED_LIBRARIES) \ |
| 3505 | $(2ND_TARGET_OUT_VENDOR_SHARED_LIBRARIES))) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 3506 | # Extra options: Enforce the system user for the files to avoid having to change ownership. |
| 3507 | ASAN_SYSTEM_INSTALL_OPTIONS := --owner=1000 --group=1000 |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3508 | # Note: experimentally, it seems not worth it to try to get "best" compression. We don't save |
| 3509 | # enough space. |
| 3510 | $(ASAN_IN_SYSTEM_INSTALLED): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 3511 | 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] | 3512 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3513 | # ----------------------------------------------------------------- |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3514 | # cache partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3515 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_CACHE)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3516 | ifdef BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3517 | INTERNAL_CACHEIMAGE_FILES := \ |
| 3518 | $(filter $(TARGET_OUT_CACHE)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
| 3519 | |
| 3520 | cacheimage_intermediates := \ |
| 3521 | $(call intermediates-dir-for,PACKAGING,cache) |
| 3522 | BUILT_CACHEIMAGE_TARGET := $(PRODUCT_OUT)/cache.img |
| 3523 | |
| 3524 | define build-cacheimage-target |
| 3525 | $(call pretty,"Target cache fs image: $(INSTALLED_CACHEIMAGE_TARGET)") |
| 3526 | @mkdir -p $(TARGET_OUT_CACHE) |
| 3527 | @mkdir -p $(cacheimage_intermediates) && rm -rf $(cacheimage_intermediates)/cache_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3528 | $(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] | 3529 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3530 | $(BUILD_IMAGE) \ |
| 3531 | $(TARGET_OUT_CACHE) $(cacheimage_intermediates)/cache_image_info.txt \ |
| 3532 | $(INSTALLED_CACHEIMAGE_TARGET) $(TARGET_OUT) |
| 3533 | $(call assert-max-image-size,$(INSTALLED_CACHEIMAGE_TARGET),$(BOARD_CACHEIMAGE_PARTITION_SIZE)) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3534 | endef |
| 3535 | |
| 3536 | # We just build this directly to the install location. |
| 3537 | INSTALLED_CACHEIMAGE_TARGET := $(BUILT_CACHEIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3538 | $(INSTALLED_CACHEIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3539 | $(build-cacheimage-target) |
| 3540 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3541 | $(call declare-1p-container,$(INSTALLED_CACHEIMAGE_TARGET),) |
| 3542 | $(call declare-container-license-deps,$(INSTALLED_CACHEIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 3543 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3544 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_CACHEIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3545 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3546 | .PHONY: cacheimage-nodeps |
| 3547 | cacheimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 3548 | $(build-cacheimage-target) |
| 3549 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3550 | else # BUILDING_CACHE_IMAGE |
Patrick Tjin | f3b0dc2 | 2016-05-13 15:26:09 -0700 | [diff] [blame] | 3551 | # we need to ignore the broken cache link when doing the rsync |
| 3552 | IGNORE_CACHE_LINK := --exclude=cache |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3553 | endif # BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3554 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 3555 | # ----------------------------------------------------------------- |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3556 | # system_other partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3557 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_SYSTEM_OTHER)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3558 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3559 | ifeq ($(BOARD_USES_SYSTEM_OTHER_ODEX),true) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3560 | # Marker file to identify that odex files are installed |
| 3561 | INSTALLED_SYSTEM_OTHER_ODEX_MARKER := $(TARGET_OUT_SYSTEM_OTHER)/system-other-odex-marker |
| 3562 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER) |
| 3563 | $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER): |
| 3564 | $(hide) touch $@ |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3565 | |
| 3566 | $(call declare-0p-target,$(INSTALLED_SYSTEM_OTHER_ODEX_MARKER)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3567 | endif |
| 3568 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3569 | INTERNAL_SYSTEMOTHERIMAGE_FILES := \ |
| 3570 | $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3571 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3572 | |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 3573 | # system_other dex files are installed as a side-effect of installing system image files |
| 3574 | INTERNAL_SYSTEMOTHERIMAGE_FILES += $(INTERNAL_SYSTEMIMAGE_FILES) |
| 3575 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3576 | INSTALLED_FILES_FILE_SYSTEMOTHER := $(PRODUCT_OUT)/installed-files-system-other.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3577 | INSTALLED_FILES_JSON_SYSTEMOTHER := $(INSTALLED_FILES_FILE_SYSTEMOTHER:.txt=.json) |
| 3578 | $(INSTALLED_FILES_FILE_SYSTEMOTHER): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEMOTHER) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3579 | $(INSTALLED_FILES_FILE_SYSTEMOTHER) : $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3580 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3581 | mkdir -p $(dir $@) |
| 3582 | rm -f $@ |
| 3583 | $(FILESLIST) $(TARGET_OUT_SYSTEM_OTHER) > $(@:.txt=.json) |
| 3584 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3585 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3586 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEMOTHER))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3587 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEMOTHER))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3588 | |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 3589 | # Determines partition size for system_other.img. |
| 3590 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 3591 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)),) |
| 3592 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE := $(BOARD_SUPER_PARTITION_SYSTEM_DEVICE_SIZE) |
| 3593 | endif |
| 3594 | endif |
| 3595 | |
| 3596 | ifndef INTERNAL_SYSTEM_OTHER_PARTITION_SIZE |
| 3597 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE:= $(BOARD_SYSTEMIMAGE_PARTITION_SIZE) |
| 3598 | endif |
| 3599 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3600 | systemotherimage_intermediates := \ |
| 3601 | $(call intermediates-dir-for,PACKAGING,system_other) |
| 3602 | BUILT_SYSTEMOTHERIMAGE_TARGET := $(PRODUCT_OUT)/system_other.img |
| 3603 | |
| 3604 | # Note that we assert the size is SYSTEMIMAGE_PARTITION_SIZE since this is the 'b' system image. |
| 3605 | define build-systemotherimage-target |
| 3606 | $(call pretty,"Target system_other fs image: $(INSTALLED_SYSTEMOTHERIMAGE_TARGET)") |
| 3607 | @mkdir -p $(TARGET_OUT_SYSTEM_OTHER) |
| 3608 | @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] | 3609 | $(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] | 3610 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3611 | $(BUILD_IMAGE) \ |
| 3612 | $(TARGET_OUT_SYSTEM_OTHER) $(systemotherimage_intermediates)/system_other_image_info.txt \ |
| 3613 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) $(TARGET_OUT) |
| 3614 | $(call assert-max-image-size,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3615 | endef |
| 3616 | |
| 3617 | # We just build this directly to the install location. |
| 3618 | INSTALLED_SYSTEMOTHERIMAGE_TARGET := $(BUILT_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3619 | ifneq (true,$(SANITIZE_LITE)) |
| 3620 | # 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] | 3621 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEMOTHER) |
| 3622 | $(build-systemotherimage-target) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3623 | |
| 3624 | $(call declare-1p-container,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),) |
| 3625 | $(call declare-container-license-deps,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 3626 | |
| 3627 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3628 | endif |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3629 | |
| 3630 | .PHONY: systemotherimage-nodeps |
| 3631 | systemotherimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 3632 | $(build-systemotherimage-target) |
| 3633 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3634 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3635 | |
| 3636 | |
| 3637 | # ----------------------------------------------------------------- |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3638 | # vendor partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3639 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_VENDOR)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3640 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3641 | INTERNAL_VENDORIMAGE_FILES := \ |
Ying Wang | cff3862 | 2014-07-16 17:46:35 -0700 | [diff] [blame] | 3642 | $(filter $(TARGET_OUT_VENDOR)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3643 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3644 | |
Ying Wang | 8da19e3 | 2015-09-15 14:22:12 -0700 | [diff] [blame] | 3645 | |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 3646 | # Create symlink /vendor/odm to /odm if necessary. |
| 3647 | ifdef BOARD_USES_ODMIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3648 | _odm_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT_VENDOR)/odm,/odm,odm.img) |
| 3649 | INTERNAL_VENDORIMAGE_FILES += $(_odm_symlink) |
| 3650 | ALL_DEFAULT_INSTALLED_MODULES += $(_odm_symlink) |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 3651 | endif |
| 3652 | |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 3653 | # Create symlinks for vendor_dlkm on devices with a vendor_dlkm partition: |
| 3654 | # /vendor/lib/modules -> /vendor_dlkm/lib/modules |
| 3655 | # |
| 3656 | # On devices with a vendor_dlkm partition, |
| 3657 | # - /vendor/lib/modules is a symlink to a directory that stores vendor DLKMs. |
| 3658 | # - /vendor_dlkm/{etc,...} store other vendor_dlkm files directly. The vendor_dlkm partition is |
| 3659 | # mounted at /vendor_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3660 | # are hidden. |
| 3661 | # On devices without a vendor_dlkm partition, |
| 3662 | # - /vendor/lib/modules stores vendor DLKMs directly. |
| 3663 | # - /vendor_dlkm/{etc,...} are symlinks to directories that store other vendor_dlkm files. |
| 3664 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3665 | # The vendor DLKMs and other vendor_dlkm files must not be accessed using other paths because they |
| 3666 | # are not guaranteed to exist on all devices. |
| 3667 | ifdef BOARD_USES_VENDOR_DLKMIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3668 | _vendor_dlkm_lib_modules_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT_VENDOR)/lib/modules,/vendor_dlkm/lib/modules,vendor_dlkm.img) |
| 3669 | INTERNAL_VENDORIMAGE_FILES += $(_vendor_dlkm_lib_modules_symlink) |
| 3670 | ALL_DEFAULT_INSTALLED_MODULES += $(_vendor_dlkm_lib_modules_symlink) |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 3671 | endif |
| 3672 | |
Jooyung Han | 8c11903 | 2023-03-04 08:32:34 +0900 | [diff] [blame] | 3673 | # Install vendor/etc/linker.config.pb with PRODUCT_VENDOR_LINKER_CONFIG_FRAGMENTS and STUB_LIBRARIES |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3674 | vendor_linker_config_file := $(TARGET_OUT_VENDOR)/etc/linker.config.pb |
| 3675 | $(vendor_linker_config_file): private_linker_config_fragments := $(PRODUCT_VENDOR_LINKER_CONFIG_FRAGMENTS) |
Jooyung Han | 63975d7 | 2023-03-07 18:25:02 +0900 | [diff] [blame] | 3676 | $(vendor_linker_config_file): $(INTERNAL_VENDORIMAGE_FILES) $(PRODUCT_VENDOR_LINKER_CONFIG_FRAGMENTS) | $(HOST_OUT_EXECUTABLES)/conv_linker_config |
Jooyung Han | 49bf691 | 2023-03-09 16:36:37 +0900 | [diff] [blame] | 3677 | @echo Creating linker config: $@ |
| 3678 | @mkdir -p $(dir $@) |
| 3679 | @rm -f $@ |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3680 | $(HOST_OUT_EXECUTABLES)/conv_linker_config proto \ |
| 3681 | --source $(call normalize-path-list,$(private_linker_config_fragments)) \ |
| 3682 | --output $@ |
Jooyung Han | 8c11903 | 2023-03-04 08:32:34 +0900 | [diff] [blame] | 3683 | $(HOST_OUT_EXECUTABLES)/conv_linker_config systemprovide --source $@ \ |
| 3684 | --output $@ --value "$(STUB_LIBRARIES)" --system "$(TARGET_OUT_VENDOR)" |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3685 | $(call define declare-0p-target,$(vendor_linker_config_file),) |
| 3686 | INTERNAL_VENDORIMAGE_FILES += $(vendor_linker_config_file) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3687 | ALL_DEFAULT_INSTALLED_MODULES += $(vendor_linker_config_file) |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3688 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3689 | INSTALLED_FILES_FILE_VENDOR := $(PRODUCT_OUT)/installed-files-vendor.txt |
| 3690 | INSTALLED_FILES_JSON_VENDOR := $(INSTALLED_FILES_FILE_VENDOR:.txt=.json) |
| 3691 | $(INSTALLED_FILES_FILE_VENDOR): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR) |
| 3692 | $(INSTALLED_FILES_FILE_VENDOR) : $(INTERNAL_VENDORIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3693 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3694 | mkdir -p $(dir $@) |
| 3695 | rm -f $@ |
| 3696 | $(FILESLIST) $(TARGET_OUT_VENDOR) > $(@:.txt=.json) |
| 3697 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | 3d5e2c2 | 2020-07-15 17:01:14 -0700 | [diff] [blame] | 3698 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3699 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR)) |
| 3700 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3701 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3702 | vendorimage_intermediates := \ |
| 3703 | $(call intermediates-dir-for,PACKAGING,vendor) |
| 3704 | BUILT_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3705 | define build-vendorimage-target |
| 3706 | $(call pretty,"Target vendor fs image: $(INSTALLED_VENDORIMAGE_TARGET)") |
| 3707 | @mkdir -p $(TARGET_OUT_VENDOR) |
| 3708 | @mkdir -p $(vendorimage_intermediates) && rm -rf $(vendorimage_intermediates)/vendor_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3709 | $(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] | 3710 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3711 | $(BUILD_IMAGE) \ |
| 3712 | $(TARGET_OUT_VENDOR) $(vendorimage_intermediates)/vendor_image_info.txt \ |
| 3713 | $(INSTALLED_VENDORIMAGE_TARGET) $(TARGET_OUT) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3714 | $(call assert-max-image-size,$(INSTALLED_VENDORIMAGE_TARGET) $(RECOVERY_FROM_BOOT_PATCH),$(BOARD_VENDORIMAGE_PARTITION_SIZE)) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3715 | endef |
| 3716 | |
| 3717 | # We just build this directly to the install location. |
| 3718 | INSTALLED_VENDORIMAGE_TARGET := $(BUILT_VENDORIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3719 | $(INSTALLED_VENDORIMAGE_TARGET): \ |
| 3720 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3721 | $(INTERNAL_VENDORIMAGE_FILES) \ |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3722 | $(INSTALLED_FILES_FILE_VENDOR) \ |
| 3723 | $(RECOVERY_FROM_BOOT_PATCH) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3724 | $(build-vendorimage-target) |
| 3725 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3726 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDORIMAGE_TARGET) |
| 3727 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3728 | $(call declare-container-license-metadata,$(INSTALLED_VENDORIMAGE_TARGET),legacy_proprietary,proprietary,,"Vendor Image",vendor) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3729 | $(call declare-container-license-deps,$(INSTALLED_VENDORIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_VENDORIMAGE_FILES) $(RECOVERY_FROM_BOOT_PATH),$(PRODUCT_OUT)/:/) |
| 3730 | |
Steven Moreland | a2e734d | 2017-03-07 12:10:09 -0800 | [diff] [blame] | 3731 | .PHONY: vendorimage-nodeps vnod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3732 | vendorimage-nodeps vnod: | $(INTERNAL_USERIMAGES_DEPS) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3733 | $(build-vendorimage-target) |
| 3734 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 3735 | .PHONY: sync_vendor |
| 3736 | sync sync_vendor: $(INTERNAL_VENDORIMAGE_FILES) |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 3737 | |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 3738 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 3739 | INSTALLED_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
| 3740 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDORIMAGE),$(INSTALLED_VENDORIMAGE_TARGET))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3741 | $(if $(strip $(ALL_TARGETS.$(INSTALLED_VENDORIMAGE_TARGET).META_LIC)),,\ |
| 3742 | $(if $(strip $(ALL_TARGETS.$(BOARD_PREBUILT_VENDORIMAGE).META_LIC)),\ |
Bob Badour | ba33724 | 2022-05-27 19:40:41 -0700 | [diff] [blame] | 3743 | $(call declare-copy-target-license-metadata,$(INSTALLED_VENDORIMAGE_TARGET),$(BOARD_PREBUILT_VENDORIMAGE)),\ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3744 | $(call declare-license-metadata,$(INSTALLED_VENDORIMAGE_TARGET),legacy_proprietary,proprietary,,"Vendor Image",vendor))) |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 3745 | endif |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3746 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3747 | # ----------------------------------------------------------------- |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3748 | # product partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3749 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_PRODUCT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3750 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3751 | INTERNAL_PRODUCTIMAGE_FILES := \ |
| 3752 | $(filter $(TARGET_OUT_PRODUCT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3753 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3754 | |
| 3755 | INSTALLED_FILES_FILE_PRODUCT := $(PRODUCT_OUT)/installed-files-product.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3756 | INSTALLED_FILES_JSON_PRODUCT := $(INSTALLED_FILES_FILE_PRODUCT:.txt=.json) |
| 3757 | $(INSTALLED_FILES_FILE_PRODUCT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_PRODUCT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3758 | $(INSTALLED_FILES_FILE_PRODUCT) : $(INTERNAL_PRODUCTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3759 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3760 | mkdir -p $(dir $@) |
| 3761 | rm -f $@ |
| 3762 | $(FILESLIST) $(TARGET_OUT_PRODUCT) > $(@:.txt=.json) |
| 3763 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3764 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3765 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_PRODUCT)) |
| 3766 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_PRODUCT)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3767 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3768 | productimage_intermediates := \ |
| 3769 | $(call intermediates-dir-for,PACKAGING,product) |
| 3770 | BUILT_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3771 | define build-productimage-target |
| 3772 | $(call pretty,"Target product fs image: $(INSTALLED_PRODUCTIMAGE_TARGET)") |
| 3773 | @mkdir -p $(TARGET_OUT_PRODUCT) |
| 3774 | @mkdir -p $(productimage_intermediates) && rm -rf $(productimage_intermediates)/product_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3775 | $(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] | 3776 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3777 | $(BUILD_IMAGE) \ |
| 3778 | $(TARGET_OUT_PRODUCT) $(productimage_intermediates)/product_image_info.txt \ |
| 3779 | $(INSTALLED_PRODUCTIMAGE_TARGET) $(TARGET_OUT) |
| 3780 | $(call assert-max-image-size,$(INSTALLED_PRODUCTIMAGE_TARGET),$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3781 | endef |
| 3782 | |
| 3783 | # We just build this directly to the install location. |
| 3784 | INSTALLED_PRODUCTIMAGE_TARGET := $(BUILT_PRODUCTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3785 | $(INSTALLED_PRODUCTIMAGE_TARGET): \ |
| 3786 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3787 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 3788 | $(INSTALLED_FILES_FILE_PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3789 | $(build-productimage-target) |
| 3790 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3791 | PRODUCT_NOTICE_DEPS += $(INSTALLED_PRODUCTIMAGE_TARGET) |
| 3792 | |
| 3793 | $(call declare-1p-container,$(INSTALLED_PRODUCTIMAGE_TARGET),) |
| 3794 | $(call declare-container-license-deps,$(INSTALLED_PRODUCTIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_PRODUCTIMAGE_FILES) $(INSTALLED_FILES_FILE_PRODUCT),$(PRODUCT_OUT)/:/) |
| 3795 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3796 | .PHONY: productimage-nodeps pnod |
| 3797 | productimage-nodeps pnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3798 | $(build-productimage-target) |
| 3799 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 3800 | .PHONY: sync_product |
| 3801 | sync sync_product: $(INTERNAL_PRODUCTIMAGE_FILES) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3802 | |
| 3803 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 3804 | INSTALLED_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3805 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_PRODUCTIMAGE),$(INSTALLED_PRODUCTIMAGE_TARGET))) |
| 3806 | endif |
| 3807 | |
| 3808 | # ----------------------------------------------------------------- |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3809 | # system_ext partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3810 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_SYSTEM_EXT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3811 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3812 | INTERNAL_SYSTEM_EXTIMAGE_FILES := \ |
| 3813 | $(filter $(TARGET_OUT_SYSTEM_EXT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3814 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3815 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3816 | INSTALLED_FILES_FILE_SYSTEM_EXT := $(PRODUCT_OUT)/installed-files-system_ext.txt |
| 3817 | INSTALLED_FILES_JSON_SYSTEM_EXT := $(INSTALLED_FILES_FILE_SYSTEM_EXT:.txt=.json) |
| 3818 | $(INSTALLED_FILES_FILE_SYSTEM_EXT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_EXT) |
| 3819 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) : $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3820 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3821 | mkdir -p $(dir $@) |
| 3822 | rm -f $@ |
| 3823 | $(FILESLIST) $(TARGET_OUT_SYSTEM_EXT) > $(@:.txt=.json) |
| 3824 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3825 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3826 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEM_EXT)) |
| 3827 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEM_EXT)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3828 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3829 | system_extimage_intermediates := \ |
| 3830 | $(call intermediates-dir-for,PACKAGING,system_ext) |
| 3831 | BUILT_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3832 | define build-system_extimage-target |
| 3833 | $(call pretty,"Target system_ext fs image: $(INSTALLED_SYSTEM_EXTIMAGE_TARGET)") |
| 3834 | @mkdir -p $(TARGET_OUT_SYSTEM_EXT) |
| 3835 | @mkdir -p $(system_extimage_intermediates) && rm -rf $(system_extimage_intermediates)/system_ext_image_info.txt |
| 3836 | $(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] | 3837 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3838 | $(BUILD_IMAGE) \ |
| 3839 | $(TARGET_OUT_SYSTEM_EXT) \ |
| 3840 | $(system_extimage_intermediates)/system_ext_image_info.txt \ |
| 3841 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 3842 | $(TARGET_OUT) |
| 3843 | $(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] | 3844 | endef |
| 3845 | |
| 3846 | # We just build this directly to the install location. |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3847 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(BUILT_SYSTEM_EXTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3848 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET): \ |
| 3849 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3850 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 3851 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3852 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3853 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3854 | SYSTEM_EXT_NOTICE_DEPS += $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
| 3855 | |
| 3856 | $(call declare-1p-container,$(INSTALLED_SYSTEM_EXTIMAGE_TARGET),) |
| 3857 | $(call declare-container-license-deps,$(INSTALLED_SYSTEM_EXTIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEM_EXT),$(PRODUCT_OUT)/:/) |
| 3858 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3859 | .PHONY: systemextimage-nodeps senod |
| 3860 | systemextimage-nodeps senod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3861 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3862 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 3863 | .PHONY: sync_system_ext |
| 3864 | sync sync_system_ext: $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3865 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3866 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 3867 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3868 | $(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] | 3869 | endif |
| 3870 | |
| 3871 | # ----------------------------------------------------------------- |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3872 | # odm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3873 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_ODM)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3874 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3875 | INTERNAL_ODMIMAGE_FILES := \ |
| 3876 | $(filter $(TARGET_OUT_ODM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3877 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3878 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3879 | # Create symlinks for odm_dlkm on devices with a odm_dlkm partition: |
| 3880 | # /odm/lib/modules -> /odm_dlkm/lib/modules |
| 3881 | # |
| 3882 | # On devices with a odm_dlkm partition, |
| 3883 | # - /odm/lib/modules is a symlink to a directory that stores odm DLKMs. |
| 3884 | # - /odm_dlkm/{etc,...} store other odm_dlkm files directly. The odm_dlkm partition is |
| 3885 | # mounted at /odm_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3886 | # are hidden. |
| 3887 | # On devices without a odm_dlkm partition, |
| 3888 | # - /odm/lib/modules stores odm DLKMs directly. |
| 3889 | # - /odm_dlkm/{etc,...} are symlinks to directories that store other odm_dlkm files. |
| 3890 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3891 | # The odm DLKMs and other odm_dlkm files must not be accessed using other paths because they |
| 3892 | # are not guaranteed to exist on all devices. |
| 3893 | ifdef BOARD_USES_ODM_DLKMIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3894 | _odm_dlkm_lib_modules_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT_ODM)/lib/modules,/odm_dlkm/lib/modules,odm_dlkm.img) |
| 3895 | INTERNAL_ODMIMAGE_FILES += $(_odm_dlkm_lib_modules_symlink) |
| 3896 | ALL_DEFAULT_INSTALLED_MODULES += $(_odm_dlkm_lib_modules_symlink) |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3897 | endif |
| 3898 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3899 | INSTALLED_FILES_FILE_ODM := $(PRODUCT_OUT)/installed-files-odm.txt |
| 3900 | INSTALLED_FILES_JSON_ODM := $(INSTALLED_FILES_FILE_ODM:.txt=.json) |
| 3901 | $(INSTALLED_FILES_FILE_ODM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3902 | $(INSTALLED_FILES_FILE_ODM) : $(INTERNAL_ODMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3903 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3904 | mkdir -p $(dir $@) |
| 3905 | rm -f $@ |
| 3906 | $(FILESLIST) $(TARGET_OUT_ODM) > $(@:.txt=.json) |
| 3907 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3908 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3909 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ODM)) |
| 3910 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ODM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3911 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3912 | odmimage_intermediates := \ |
| 3913 | $(call intermediates-dir-for,PACKAGING,odm) |
| 3914 | BUILT_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3915 | define build-odmimage-target |
| 3916 | $(call pretty,"Target odm fs image: $(INSTALLED_ODMIMAGE_TARGET)") |
| 3917 | @mkdir -p $(TARGET_OUT_ODM) |
| 3918 | @mkdir -p $(odmimage_intermediates) && rm -rf $(odmimage_intermediates)/odm_image_info.txt |
David Anderson | 17063cf | 2021-08-27 16:43:09 -0700 | [diff] [blame] | 3919 | $(call generate-image-prop-dictionary, $(odmimage_intermediates)/odm_image_info.txt, odm, \ |
| 3920 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3921 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3922 | $(BUILD_IMAGE) \ |
| 3923 | $(TARGET_OUT_ODM) $(odmimage_intermediates)/odm_image_info.txt \ |
| 3924 | $(INSTALLED_ODMIMAGE_TARGET) $(TARGET_OUT) |
| 3925 | $(call assert-max-image-size,$(INSTALLED_ODMIMAGE_TARGET),$(BOARD_ODMIMAGE_PARTITION_SIZE)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3926 | endef |
| 3927 | |
| 3928 | # We just build this directly to the install location. |
| 3929 | INSTALLED_ODMIMAGE_TARGET := $(BUILT_ODMIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3930 | $(INSTALLED_ODMIMAGE_TARGET): \ |
| 3931 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3932 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 3933 | $(INSTALLED_FILES_FILE_ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3934 | $(build-odmimage-target) |
| 3935 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3936 | ODM_NOTICE_DEPS += $(INSTALLED_ODMIMAGE_TARGET) |
| 3937 | |
| 3938 | $(call declare-1p-container,$(INSTALLED_ODMIMAGE_TARGET),) |
| 3939 | $(call declare-container-license-deps,$(INSTALLED_ODMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_ODMIMAGE_FILES) $(INSTALLED_FILES_FILE_ODM),$(PRODUCT_OUT)/:/) |
| 3940 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3941 | .PHONY: odmimage-nodeps onod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3942 | odmimage-nodeps onod: | $(INTERNAL_USERIMAGES_DEPS) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3943 | $(build-odmimage-target) |
| 3944 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 3945 | .PHONY: sync_odm |
| 3946 | sync sync_odm: $(INTERNAL_ODMIMAGE_FILES) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3947 | |
| 3948 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 3949 | INSTALLED_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3950 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODMIMAGE),$(INSTALLED_ODMIMAGE_TARGET))) |
| 3951 | endif |
| 3952 | |
| 3953 | # ----------------------------------------------------------------- |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3954 | # vendor_dlkm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3955 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_VENDOR_DLKM)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3956 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 3957 | INTERNAL_VENDOR_DLKMIMAGE_FILES := \ |
| 3958 | $(filter $(TARGET_OUT_VENDOR_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3959 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3960 | |
| 3961 | INSTALLED_FILES_FILE_VENDOR_DLKM := $(PRODUCT_OUT)/installed-files-vendor_dlkm.txt |
| 3962 | INSTALLED_FILES_JSON_VENDOR_DLKM := $(INSTALLED_FILES_FILE_VENDOR_DLKM:.txt=.json) |
| 3963 | $(INSTALLED_FILES_FILE_VENDOR_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DLKM) |
| 3964 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) : $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3965 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3966 | mkdir -p $(dir $@) |
| 3967 | rm -f $@ |
| 3968 | $(FILESLIST) $(TARGET_OUT_VENDOR_DLKM) > $(@:.txt=.json) |
| 3969 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3970 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3971 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_DLKM)) |
| 3972 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_DLKM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3973 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3974 | vendor_dlkmimage_intermediates := \ |
| 3975 | $(call intermediates-dir-for,PACKAGING,vendor_dlkm) |
| 3976 | BUILT_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 3977 | define build-vendor_dlkmimage-target |
| 3978 | $(call pretty,"Target vendor_dlkm fs image: $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)") |
| 3979 | @mkdir -p $(TARGET_OUT_VENDOR_DLKM) |
| 3980 | @mkdir -p $(vendor_dlkmimage_intermediates) && rm -rf $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt |
David Anderson | 17063cf | 2021-08-27 16:43:09 -0700 | [diff] [blame] | 3981 | $(call generate-image-prop-dictionary, $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt, \ |
| 3982 | vendor_dlkm, skip_fsck=true) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3983 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3984 | $(BUILD_IMAGE) \ |
| 3985 | $(TARGET_OUT_VENDOR_DLKM) $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt \ |
| 3986 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3987 | $(call assert-max-image-size,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE)) |
| 3988 | endef |
| 3989 | |
| 3990 | # We just build this directly to the install location. |
| 3991 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(BUILT_VENDOR_DLKMIMAGE_TARGET) |
| 3992 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET): \ |
| 3993 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3994 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 3995 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) |
| 3996 | $(build-vendor_dlkmimage-target) |
| 3997 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3998 | VENDOR_DLKM_NOTICE_DEPS += $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
| 3999 | |
| 4000 | $(call declare-1p-container,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),) |
| 4001 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_VENDOR_DLKM),$(PRODUCT_OUT)/:/) |
| 4002 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4003 | .PHONY: vendor_dlkmimage-nodeps vdnod |
| 4004 | vendor_dlkmimage-nodeps vdnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 4005 | $(build-vendor_dlkmimage-target) |
| 4006 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 4007 | .PHONY: sync_vendor_dlkm |
| 4008 | sync sync_vendor_dlkm: $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4009 | |
| 4010 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
| 4011 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 4012 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDOR_DLKMIMAGE),$(INSTALLED_VENDOR_DLKMIMAGE_TARGET))) |
| 4013 | endif |
| 4014 | |
| 4015 | # ----------------------------------------------------------------- |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4016 | # odm_dlkm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 4017 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_ODM_DLKM)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4018 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 4019 | INTERNAL_ODM_DLKMIMAGE_FILES := \ |
| 4020 | $(filter $(TARGET_OUT_ODM_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 4021 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4022 | |
| 4023 | INSTALLED_FILES_FILE_ODM_DLKM := $(PRODUCT_OUT)/installed-files-odm_dlkm.txt |
| 4024 | INSTALLED_FILES_JSON_ODM_DLKM := $(INSTALLED_FILES_FILE_ODM_DLKM:.txt=.json) |
| 4025 | $(INSTALLED_FILES_FILE_ODM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM_DLKM) |
| 4026 | $(INSTALLED_FILES_FILE_ODM_DLKM) : $(INTERNAL_ODM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 4027 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 4028 | mkdir -p $(dir $@) |
| 4029 | rm -f $@ |
| 4030 | $(FILESLIST) $(TARGET_OUT_ODM_DLKM) > $(@:.txt=.json) |
| 4031 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4032 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4033 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ODM_DLKM)) |
| 4034 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ODM_DLKM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4035 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4036 | odm_dlkmimage_intermediates := \ |
| 4037 | $(call intermediates-dir-for,PACKAGING,odm_dlkm) |
| 4038 | BUILT_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 4039 | define build-odm_dlkmimage-target |
| 4040 | $(call pretty,"Target odm_dlkm fs image: $(INSTALLED_ODM_DLKMIMAGE_TARGET)") |
| 4041 | @mkdir -p $(TARGET_OUT_ODM_DLKM) |
| 4042 | @mkdir -p $(odm_dlkmimage_intermediates) && rm -rf $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt |
David Anderson | 17063cf | 2021-08-27 16:43:09 -0700 | [diff] [blame] | 4043 | $(call generate-image-prop-dictionary, $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt, \ |
| 4044 | odm_dlkm, skip_fsck=true) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4045 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 4046 | $(BUILD_IMAGE) \ |
| 4047 | $(TARGET_OUT_ODM_DLKM) $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt \ |
| 4048 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 4049 | $(call assert-max-image-size,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE)) |
| 4050 | endef |
| 4051 | |
| 4052 | # We just build this directly to the install location. |
| 4053 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(BUILT_ODM_DLKMIMAGE_TARGET) |
| 4054 | $(INSTALLED_ODM_DLKMIMAGE_TARGET): \ |
| 4055 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 4056 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
| 4057 | $(INSTALLED_FILES_FILE_ODM_DLKM) |
| 4058 | $(build-odm_dlkmimage-target) |
| 4059 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4060 | ODM_DLKM_NOTICE_DEPS += $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
| 4061 | |
| 4062 | $(call declare-1p-container,$(INSTALLED_ODM_DLKMIMAGE_TARGET),) |
| 4063 | $(call declare-container-license-deps,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_ODM_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_ODM_DLKM),$(PRODUCT_OUT)/:/) |
| 4064 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4065 | .PHONY: odm_dlkmimage-nodeps odnod |
| 4066 | odm_dlkmimage-nodeps odnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 4067 | $(build-odm_dlkmimage-target) |
| 4068 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 4069 | .PHONY: sync_odm_dlkm |
| 4070 | sync sync_odm_dlkm: $(INTERNAL_ODM_DLKMIMAGE_FILES) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4071 | |
| 4072 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 4073 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 4074 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODM_DLKMIMAGE),$(INSTALLED_ODM_DLKMIMAGE_TARGET))) |
| 4075 | endif |
| 4076 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4077 | # ----------------------------------------------------------------- |
| 4078 | # system_dlkm partition image |
| 4079 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 4080 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_SYSTEM_DLKM)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4081 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 4082 | |
| 4083 | INTERNAL_SYSTEM_DLKMIMAGE_FILES := \ |
| 4084 | $(filter $(TARGET_OUT_SYSTEM_DLKM)/%,\ |
| 4085 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 4086 | |
| 4087 | INSTALLED_FILES_FILE_SYSTEM_DLKM := $(PRODUCT_OUT)/installed-files-system_dlkm.txt |
| 4088 | INSTALLED_FILES_JSON_SYSTEM_DLKM := $(INSTALLED_FILES_FILE_SYSTEM_DLKM:.txt=.json) |
| 4089 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_DLKM) |
| 4090 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM): $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 4091 | @echo Installed file list: $@ |
| 4092 | mkdir -p $(dir $@) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4093 | rm -f $@ |
| 4094 | $(FILESLIST) $(TARGET_OUT_SYSTEM_DLKM) > $(@:.txt=.json) |
| 4095 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 4096 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4097 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEM_DLKM)) |
| 4098 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEM_DLKM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4099 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4100 | system_dlkmimage_intermediates := \ |
| 4101 | $(call intermediates-dir-for,PACKAGING,system_dlkm) |
| 4102 | BUILT_SYSTEM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/system_dlkm.img |
| 4103 | define build-system_dlkmimage-target |
| 4104 | $(call pretty,"Target system_dlkm fs image: $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET)") |
| 4105 | @mkdir -p $(TARGET_OUT_SYSTEM_DLKM) |
| 4106 | @mkdir -p $(system_dlkmimage_intermediates) && rm -rf $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt |
| 4107 | $(call generate-image-prop-dictionary, $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt, \ |
| 4108 | system_dlkm, skip_fsck=true) |
| 4109 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 4110 | $(BUILD_IMAGE) \ |
| 4111 | $(TARGET_OUT_SYSTEM_DLKM) $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt \ |
| 4112 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 4113 | $(call assert-max-image-size,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(BOARD_SYSTEM_DLKMIMAGE_PARTITION_SIZE)) |
| 4114 | endef |
| 4115 | |
| 4116 | # We just build this directly to the install location. |
| 4117 | INSTALLED_SYSTEM_DLKMIMAGE_TARGET := $(BUILT_SYSTEM_DLKMIMAGE_TARGET) |
| 4118 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET): \ |
| 4119 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 4120 | $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) \ |
| 4121 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM) |
| 4122 | $(build-system_dlkmimage-target) |
| 4123 | |
Bob Badour | 56e0de5 | 2022-08-02 17:46:48 +0000 | [diff] [blame] | 4124 | SYSTEM_DLKM_NOTICE_DEPS += $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) |
| 4125 | |
| 4126 | $(call declare-1p-container,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),) |
| 4127 | $(call declare-container-license-deps,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEM_DLKM),$(PRODUCT_OUT)/:/) |
| 4128 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4129 | .PHONY: system_dlkmimage-nodeps sdnod |
| 4130 | system_dlkmimage-nodeps sdnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 4131 | $(build-system_dlkmimage-target) |
| 4132 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 4133 | .PHONY: sync_system_dlkm |
| 4134 | sync sync_system_dlkm: $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4135 | |
| 4136 | else ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
| 4137 | INSTALLED_SYSTEM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/system_dlkm.img |
| 4138 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_SYSTEM_DLKMIMAGE),$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET))) |
| 4139 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4140 | |
| 4141 | # ----------------------------------------------------------------- |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4142 | # dtbo image |
| 4143 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 4144 | INSTALLED_DTBOIMAGE_TARGET := $(PRODUCT_OUT)/dtbo.img |
| 4145 | |
| 4146 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4147 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) $(AVBTOOL) $(BOARD_AVB_DTBO_KEY_PATH) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4148 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
Peter Collingbourne | fd95f09 | 2023-03-24 11:34:24 -0700 | [diff] [blame] | 4149 | chmod +w $@ |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4150 | $(AVBTOOL) add_hash_footer \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4151 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 4152 | $(call get-partition-size-argument,$(BOARD_DTBOIMG_PARTITION_SIZE)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4153 | --partition_name dtbo $(INTERNAL_AVB_DTBO_SIGNING_ARGS) \ |
| 4154 | $(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4155 | |
| 4156 | $(call declare-1p-container,$(INSTALLED_DTBOIMAGE_TARGET),) |
| 4157 | $(call declare-container-license-deps,$(INSTALLED_DTBOIMAGE_TARGET),$(BOARD_PREBUILT_DTBOIMAGE),$(PRODUCT_OUT)/:/) |
| 4158 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 4159 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_DTBOIMAGE_TARGET) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4160 | else |
| 4161 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) |
| 4162 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 4163 | endif |
| 4164 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4165 | endif # BOARD_PREBUILT_DTBOIMAGE |
| 4166 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4167 | # ----------------------------------------------------------------- |
| 4168 | # Protected VM firmware image |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 4169 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Pierre-Clément Tosi | adbf4da | 2022-09-09 15:57:58 +0100 | [diff] [blame] | 4170 | |
| 4171 | .PHONY: pvmfwimage |
| 4172 | pvmfwimage: $(INSTALLED_PVMFWIMAGE_TARGET) |
| 4173 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4174 | INSTALLED_PVMFWIMAGE_TARGET := $(PRODUCT_OUT)/pvmfw.img |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 4175 | INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET := $(PRODUCT_OUT)/pvmfw_embedded.avbpubkey |
Pierre-Clément Tosi | 03975ed | 2022-10-02 12:11:06 +0100 | [diff] [blame] | 4176 | INSTALLED_PVMFW_BINARY_TARGET := $(call module-installed-files,pvmfw_bin) |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4177 | INTERNAL_PVMFWIMAGE_FILES := $(call module-target-built-files,pvmfw_img) |
Pierre-Clément Tosi | 615f081 | 2022-10-26 16:05:16 +0100 | [diff] [blame] | 4178 | INTERNAL_PVMFW_EMBEDDED_AVBKEY := $(call module-target-built-files,pvmfw_embedded_key) |
Jiyong Park | e219f00 | 2022-12-16 14:30:03 +0900 | [diff] [blame] | 4179 | INTERNAL_PVMFW_SYMBOL := $(TARGET_OUT_EXECUTABLES_UNSTRIPPED)/pvmfw |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4180 | |
| 4181 | $(call declare-1p-container,$(INSTALLED_PVMFWIMAGE_TARGET),) |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4182 | $(call declare-container-license-deps,$(INSTALLED_PVMFWIMAGE_TARGET),$(INTERNAL_PVMFWIMAGE_FILES),$(PRODUCT_OUT)/:/) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4183 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 4184 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_PVMFWIMAGE_TARGET) |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4185 | |
Jiyong Park | e219f00 | 2022-12-16 14:30:03 +0900 | [diff] [blame] | 4186 | # Place the unstripped pvmfw image to the symbols directory |
| 4187 | $(INTERNAL_PVMFWIMAGE_FILES): |$(INTERNAL_PVMFW_SYMBOL) |
| 4188 | |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4189 | $(eval $(call copy-one-file,$(INTERNAL_PVMFWIMAGE_FILES),$(INSTALLED_PVMFWIMAGE_TARGET))) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4190 | |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 4191 | $(INSTALLED_PVMFWIMAGE_TARGET): $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) |
| 4192 | |
| 4193 | $(eval $(call copy-one-file,$(INTERNAL_PVMFW_EMBEDDED_AVBKEY),$(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET))) |
| 4194 | |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 4195 | endif # BOARD_USES_PVMFWIMAGE |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4196 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4197 | # Returns a list of image targets corresponding to the given list of partitions. For example, it |
| 4198 | # returns "$(INSTALLED_PRODUCTIMAGE_TARGET)" for "product", or "$(INSTALLED_SYSTEMIMAGE_TARGET) |
| 4199 | # $(INSTALLED_VENDORIMAGE_TARGET)" for "system vendor". |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4200 | # (1): list of partitions like "system", "vendor" or "system product system_ext". |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4201 | define images-for-partitions |
Bowgo Tsai | 4f62aa0 | 2022-01-04 14:21:39 +0800 | [diff] [blame] | 4202 | $(strip $(foreach item,$(1),\ |
| 4203 | $(if $(filter $(item),system_other),$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),\ |
| 4204 | $(if $(filter $(item),init_boot),$(INSTALLED_INIT_BOOT_IMAGE_TARGET),\ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4205 | $(INSTALLED_$(call to-upper,$(item))IMAGE_TARGET))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4206 | endef |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4207 | |
| 4208 | # ----------------------------------------------------------------- |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4209 | # custom images |
| 4210 | INSTALLED_CUSTOMIMAGES_TARGET := |
| 4211 | |
| 4212 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 4213 | INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS := |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4214 | BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST := |
| 4215 | # If BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH is set, the image will be included in |
| 4216 | # BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST, otherwise the image won't be AVB signed. |
| 4217 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4218 | $(if $(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH), \ |
| 4219 | $(eval BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST += $(partition)) \ |
| 4220 | $(eval BOARD_$(call to-upper,$(partition))_IMAGE_LIST := $(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST)))) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4221 | |
| 4222 | # Sign custom image. |
| 4223 | # $(1): the prebuilt custom image. |
| 4224 | # $(2): the mount point of the prebuilt custom image. |
| 4225 | # $(3): the signed custom image target. |
| 4226 | define sign_custom_image |
| 4227 | $(3): $(1) $(INTERNAL_USERIMAGES_DEPS) |
| 4228 | @echo Target custom image: $(3) |
| 4229 | mkdir -p $(dir $(3)) |
| 4230 | cp $(1) $(3) |
| 4231 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4232 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$$$PATH \ |
| 4233 | $(AVBTOOL) add_hashtree_footer \ |
| 4234 | --image $(3) \ |
| 4235 | --key $(BOARD_AVB_$(call to-upper,$(2))_KEY_PATH) \ |
| 4236 | --algorithm $(BOARD_AVB_$(call to-upper,$(2))_ALGORITHM) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 4237 | $(call get-partition-size-argument,$(BOARD_AVB_$(call to-upper,$(2))_PARTITION_SIZE)) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4238 | --partition_name $(2) \ |
| 4239 | $(INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS) \ |
| 4240 | $(BOARD_AVB_$(call to-upper,$(2))_ADD_HASHTREE_FOOTER_ARGS) |
| 4241 | endif |
| 4242 | INSTALLED_CUSTOMIMAGES_TARGET += $(3) |
| 4243 | endef |
| 4244 | |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4245 | # Copy unsigned custom image. |
| 4246 | # $(1): the prebuilt custom image. |
| 4247 | # $(2): the signed custom image target. |
| 4248 | define copy_custom_image |
| 4249 | $(2): $(1) $(INTERNAL_USERIMAGES_DEPS) |
| 4250 | @echo Target custom image: $(2) |
| 4251 | mkdir -p $(dir $(2)) |
| 4252 | cp $(1) $(2) |
| 4253 | INSTALLED_CUSTOMIMAGES_TARGET += $(2) |
| 4254 | endef |
| 4255 | |
| 4256 | # Add AVB custom image to droid target |
| 4257 | $(foreach partition,$(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4258 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST), \ |
| 4259 | $(eval $(call sign_custom_image,$(image),$(partition),$(PRODUCT_OUT)/$(notdir $(image)))))) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4260 | |
| 4261 | # Add unsigned custom image to droid target |
| 4262 | $(foreach partition,$(filter-out $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), $(BOARD_CUSTOMIMAGES_PARTITION_LIST)), \ |
| 4263 | $(foreach image,$(BOARD_$(call to-upper,$(partition))_IMAGE_LIST), \ |
| 4264 | $(eval $(call copy_custom_image,$(image),$(PRODUCT_OUT)/$(notdir $(image)))))) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4265 | endif |
| 4266 | |
| 4267 | # ----------------------------------------------------------------- |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4268 | # vbmeta image |
| 4269 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4270 | |
| 4271 | BUILT_VBMETAIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta.img |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4272 | AVB_CHAIN_KEY_DIR := $(TARGET_OUT_INTERMEDIATES)/avb_chain_keys |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4273 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4274 | ifdef BOARD_AVB_KEY_PATH |
| 4275 | $(if $(BOARD_AVB_ALGORITHM),,$(error BOARD_AVB_ALGORITHM is not defined)) |
| 4276 | else |
| 4277 | # If key path isn't specified, use the 4096-bit test key. |
| 4278 | BOARD_AVB_ALGORITHM := SHA256_RSA4096 |
| 4279 | BOARD_AVB_KEY_PATH := external/avb/test/data/testkey_rsa4096.pem |
| 4280 | endif |
| 4281 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 4282 | # AVB signing for system_other.img. |
| 4283 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 4284 | ifdef BOARD_AVB_SYSTEM_OTHER_KEY_PATH |
| 4285 | $(if $(BOARD_AVB_SYSTEM_OTHER_ALGORITHM),,$(error BOARD_AVB_SYSTEM_OTHER_ALGORITHM is not defined)) |
| 4286 | else |
| 4287 | # If key path isn't specified, use the same key as BOARD_AVB_KEY_PATH. |
| 4288 | BOARD_AVB_SYSTEM_OTHER_KEY_PATH := $(BOARD_AVB_KEY_PATH) |
| 4289 | BOARD_AVB_SYSTEM_OTHER_ALGORITHM := $(BOARD_AVB_ALGORITHM) |
| 4290 | endif |
| 4291 | |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 4292 | $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET): $(AVBTOOL) $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) |
| 4293 | @echo Extracting system_other avb key: $@ |
| 4294 | @rm -f $@ |
| 4295 | @mkdir -p $(dir $@) |
| 4296 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) --output $@ |
Bowgo Tsai | 45db7ce | 2019-01-30 14:53:57 +0800 | [diff] [blame] | 4297 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4298 | $(eval $(call declare-0p-target,$(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET),)) |
| 4299 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 4300 | ifndef BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX |
| 4301 | BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX := $(PLATFORM_SECURITY_PATCH_TIMESTAMP) |
| 4302 | endif |
| 4303 | |
| 4304 | BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS += --rollback_index $(BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX) |
| 4305 | endif # end of AVB for BUILDING_SYSTEM_OTHER_IMAGE |
| 4306 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4307 | INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES := \ |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4308 | $(BOARD_AVB_VBMETA_SYSTEM) \ |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4309 | $(BOARD_AVB_VBMETA_VENDOR) \ |
| 4310 | $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),$(BOARD_AVB_VBMETA_$(call to-upper,$(partition)))) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4311 | |
| 4312 | # Not allowing the same partition to appear in multiple groups. |
| 4313 | 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] | 4314 | $(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] | 4315 | endif |
| 4316 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4317 | # When building a standalone recovery image for non-A/B devices, recovery image must be self-signed |
| 4318 | # to be verified independently, and cannot be chained into vbmeta.img. See the link below for |
| 4319 | # details. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4320 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4321 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 4322 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),,\ |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4323 | $(error BOARD_AVB_RECOVERY_KEY_PATH must be defined for if non-A/B is supported. \ |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4324 | See https://android.googlesource.com/platform/external/avb/+/master/README.md#booting-into-recovery)) |
| 4325 | endif |
| 4326 | endif |
| 4327 | |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4328 | # Appends os version as a AVB property descriptor. |
| 4329 | SYSTEM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4330 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4331 | --prop com.android.build.system.os_version:$(SYSTEM_OS_VERSION) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4332 | |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4333 | PRODUCT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4334 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4335 | --prop com.android.build.product.os_version:$(PRODUCT_OS_VERSION) |
| 4336 | |
| 4337 | SYSTEM_EXT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4338 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4339 | --prop com.android.build.system_ext.os_version:$(SYSTEM_EXT_OS_VERSION) |
| 4340 | |
| 4341 | INIT_BOOT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4342 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4343 | --prop com.android.build.init_boot.os_version:$(INIT_BOOT_OS_VERSION) |
| 4344 | |
| 4345 | BOOT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4346 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4347 | --prop com.android.build.boot.os_version:$(BOOT_OS_VERSION) |
| 4348 | |
| 4349 | VENDOR_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4350 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4351 | --prop com.android.build.vendor.os_version:$(VENDOR_OS_VERSION) |
| 4352 | |
| 4353 | ODM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4354 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4355 | --prop com.android.build.odm.os_version:$(ODM_OS_VERSION) |
| 4356 | |
| 4357 | VENDOR_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4358 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4359 | --prop com.android.build.vendor_dlkm.os_version:$(VENDOR_DLKM_OS_VERSION) |
| 4360 | |
| 4361 | ODM_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4362 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4363 | --prop com.android.build.odm_dlkm.os_version:$(ODM_DLKM_OS_VERSION) |
| 4364 | |
| 4365 | SYSTEM_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4366 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4367 | --prop com.android.build.system_dlkm.os_version:$(SYSTEM_DLKM_OS_VERSION) |
| 4368 | |
| 4369 | # Appends fingerprint and security patch level as a AVB property descriptor. |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4370 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4371 | --prop com.android.build.system.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4372 | --prop com.android.build.system.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 4373 | |
| 4374 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4375 | --prop com.android.build.product.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4376 | --prop com.android.build.product.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 4377 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4378 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4379 | --prop com.android.build.system_ext.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4380 | --prop com.android.build.system_ext.security_patch:$(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4381 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4382 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Bowgo Tsai | 8c7f820 | 2022-02-22 14:47:45 +0800 | [diff] [blame] | 4383 | --prop com.android.build.boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4384 | |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4385 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4386 | --prop com.android.build.init_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4387 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4388 | BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4389 | --prop com.android.build.vendor_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 4390 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4391 | BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4392 | --prop com.android.build.vendor_kernel_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 4393 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4394 | BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS += \ |
| 4395 | --prop com.android.build.recovery.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4396 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4397 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4398 | --prop com.android.build.vendor.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4399 | |
| 4400 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4401 | --prop com.android.build.odm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4402 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4403 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4404 | --prop com.android.build.vendor_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4405 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4406 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4407 | --prop com.android.build.odm_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4408 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4409 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4410 | --prop com.android.build.system_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4411 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4412 | BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS += \ |
| 4413 | --prop com.android.build.dtbo.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4414 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4415 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 4416 | --prop com.android.build.pvmfw.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4417 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4418 | # The following vendor- and odm-specific images needs explicit SPL set per board. |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4419 | # TODO(b/210875415) Is this security_patch property used? Should it be removed from |
| 4420 | # boot.img when there is no platform ramdisk included in it? |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4421 | ifdef BOOT_SECURITY_PATCH |
| 4422 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4423 | --prop com.android.build.boot.security_patch:$(BOOT_SECURITY_PATCH) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4424 | endif |
| 4425 | |
| 4426 | ifdef INIT_BOOT_SECURITY_PATCH |
| 4427 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4428 | --prop com.android.build.init_boot.security_patch:$(INIT_BOOT_SECURITY_PATCH) |
| 4429 | else ifdef BOOT_SECURITY_PATCH |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4430 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4431 | --prop com.android.build.init_boot.security_patch:$(BOOT_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4432 | endif |
| 4433 | |
| 4434 | ifdef VENDOR_SECURITY_PATCH |
| 4435 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4436 | --prop com.android.build.vendor.security_patch:$(VENDOR_SECURITY_PATCH) |
| 4437 | endif |
| 4438 | |
| 4439 | ifdef ODM_SECURITY_PATCH |
| 4440 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4441 | --prop com.android.build.odm.security_patch:$(ODM_SECURITY_PATCH) |
| 4442 | endif |
| 4443 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4444 | ifdef VENDOR_DLKM_SECURITY_PATCH |
| 4445 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4446 | --prop com.android.build.vendor_dlkm.security_patch:$(VENDOR_DLKM_SECURITY_PATCH) |
| 4447 | endif |
| 4448 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4449 | ifdef ODM_DLKM_SECURITY_PATCH |
| 4450 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4451 | --prop com.android.build.odm_dlkm.security_patch:$(ODM_DLKM_SECURITY_PATCH) |
| 4452 | endif |
| 4453 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4454 | ifdef SYSTEM_DLKM_SECURITY_PATCH |
| 4455 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4456 | --prop com.android.build.system_dlkm.security_patch:$(SYSTEM_DLKM_SECURITY_PATCH) |
| 4457 | endif |
| 4458 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4459 | ifdef PVMFW_SECURITY_PATCH |
| 4460 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 4461 | --prop com.android.build.pvmfw.security_patch:$(PVMFW_SECURITY_PATCH) |
| 4462 | endif |
| 4463 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4464 | BOOT_FOOTER_ARGS := BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4465 | INIT_BOOT_FOOTER_ARGS := BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4466 | VENDOR_BOOT_FOOTER_ARGS := BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4467 | VENDOR_KERNEL_BOOT_FOOTER_ARGS := BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4468 | DTBO_FOOTER_ARGS := BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4469 | PVMFW_FOOTER_ARGS := BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4470 | SYSTEM_FOOTER_ARGS := BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS |
| 4471 | VENDOR_FOOTER_ARGS := BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4472 | RECOVERY_FOOTER_ARGS := BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4473 | PRODUCT_FOOTER_ARGS := BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4474 | SYSTEM_EXT_FOOTER_ARGS := BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4475 | ODM_FOOTER_ARGS := BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4476 | VENDOR_DLKM_FOOTER_ARGS := BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4477 | ODM_DLKM_FOOTER_ARGS := BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4478 | SYSTEM_DLKM_FOOTER_ARGS := BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4479 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4480 | # 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] | 4481 | # $(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] | 4482 | define _check-and-set-avb-chain-args |
| 4483 | $(eval part := $(1)) |
| 4484 | $(eval PART=$(call to-upper,$(part))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4485 | |
| 4486 | $(eval _key_path := BOARD_AVB_$(PART)_KEY_PATH) |
| 4487 | $(eval _signing_algorithm := BOARD_AVB_$(PART)_ALGORITHM) |
| 4488 | $(eval _rollback_index := BOARD_AVB_$(PART)_ROLLBACK_INDEX) |
| 4489 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 4490 | $(if $($(_key_path)),,$(error $(_key_path) is not defined)) |
| 4491 | $(if $($(_signing_algorithm)),,$(error $(_signing_algorithm) is not defined)) |
| 4492 | $(if $($(_rollback_index)),,$(error $(_rollback_index) is not defined)) |
| 4493 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 4494 | |
| 4495 | # Set INTERNAL_AVB_(PART)_SIGNING_ARGS |
| 4496 | $(eval _signing_args := INTERNAL_AVB_$(PART)_SIGNING_ARGS) |
| 4497 | $(eval $(_signing_args) := \ |
| 4498 | --algorithm $($(_signing_algorithm)) --key $($(_key_path))) |
| 4499 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4500 | # The recovery partition in non-A/B devices should be verified separately. Skip adding the chain |
| 4501 | # partition descriptor for recovery partition into vbmeta.img. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4502 | $(if $(or $(filter-out true,$(TARGET_OTA_ALLOW_NON_AB)),$(filter-out recovery,$(part))),\ |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4503 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4504 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4505 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4506 | # 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] | 4507 | # 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] | 4508 | $(if $(filter $(part),$(part:vbmeta_%=%)),\ |
| 4509 | $(eval _footer_args := $(PART)_FOOTER_ARGS) \ |
| 4510 | $(eval $($(_footer_args)) += --rollback_index $($(_rollback_index)))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4511 | endef |
| 4512 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4513 | # Checks and sets the required build variables for an AVB partition. The partition will be |
| 4514 | # 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] | 4515 | # image descriptor will be included into vbmeta.img, unless it has been already added to any chained |
| 4516 | # VBMeta image. |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 4517 | # Multiple boot images can be generated based on BOARD_KERNEL_BINARIES |
| 4518 | # but vbmeta would capture the image descriptor of only the first boot |
| 4519 | # image specified in BUILT_BOOTIMAGE_TARGET. |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4520 | # $(1): Partition name, e.g. boot or system. |
| 4521 | define check-and-set-avb-args |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4522 | $(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] | 4523 | $(if $(BOARD_AVB_$(call to-upper,$(1))_KEY_PATH),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4524 | $(if $(_in_chained_vbmeta),\ |
| 4525 | $(error Chaining partition "$(1)" in chained VBMeta image is not supported)) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4526 | $(call _check-and-set-avb-chain-args,$(1)),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4527 | $(if $(_in_chained_vbmeta),,\ |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 4528 | $(if $(filter boot,$(1)),\ |
| 4529 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4530 | --include_descriptors_from_image $(firstword $(call images-for-partitions,$(1)))),\ |
| 4531 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4532 | --include_descriptors_from_image $(call images-for-partitions,$(1)))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4533 | endef |
| 4534 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4535 | # Checks and sets build variables for a custom chained partition to include it into vbmeta.img. |
| 4536 | # $(1): the custom partition to enable AVB chain. |
| 4537 | define check-and-set-custom-avb-chain-args |
| 4538 | $(eval part := $(1)) |
| 4539 | $(eval PART=$(call to-upper,$(part))) |
| 4540 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4541 | $(eval _key_path := BOARD_AVB_$(PART)_KEY_PATH) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4542 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4543 | $(if $($(_key_path)),,$(error $(_key_path) is not defined)) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4544 | |
| 4545 | INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4546 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey |
| 4547 | endef |
| 4548 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 4549 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4550 | $(eval $(call check-and-set-avb-args,boot)) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 4551 | endif |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4552 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4553 | ifdef INSTALLED_INIT_BOOT_IMAGE_TARGET |
| 4554 | $(eval $(call check-and-set-avb-args,init_boot)) |
| 4555 | endif |
| 4556 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4557 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 4558 | $(eval $(call check-and-set-avb-args,vendor_boot)) |
| 4559 | endif |
| 4560 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4561 | ifdef INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET |
| 4562 | $(eval $(call check-and-set-avb-args,vendor_kernel_boot)) |
| 4563 | endif |
| 4564 | |
Bowgo Tsai | e691aef | 2022-01-04 14:33:43 +0800 | [diff] [blame] | 4565 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4566 | $(eval $(call check-and-set-avb-args,system)) |
Bowgo Tsai | e691aef | 2022-01-04 14:33:43 +0800 | [diff] [blame] | 4567 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4568 | |
| 4569 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4570 | $(eval $(call check-and-set-avb-args,vendor)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4571 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4572 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4573 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4574 | $(eval $(call check-and-set-avb-args,product)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4575 | endif |
| 4576 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4577 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 4578 | $(eval $(call check-and-set-avb-args,system_ext)) |
Tao Bao | cee6d04 | 2018-08-22 23:39:03 -0700 | [diff] [blame] | 4579 | endif |
| 4580 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4581 | ifdef INSTALLED_ODMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4582 | $(eval $(call check-and-set-avb-args,odm)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4583 | endif |
| 4584 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4585 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 4586 | $(eval $(call check-and-set-avb-args,vendor_dlkm)) |
| 4587 | endif |
| 4588 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4589 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 4590 | $(eval $(call check-and-set-avb-args,odm_dlkm)) |
| 4591 | endif |
| 4592 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4593 | ifdef INSTALLED_SYSTEM_DLKMIMAGE_TARGET |
| 4594 | $(eval $(call check-and-set-avb-args,system_dlkm)) |
| 4595 | endif |
| 4596 | |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4597 | ifdef INSTALLED_DTBOIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4598 | $(eval $(call check-and-set-avb-args,dtbo)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4599 | endif |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4600 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4601 | ifdef INSTALLED_PVMFWIMAGE_TARGET |
| 4602 | $(eval $(call check-and-set-avb-args,pvmfw)) |
| 4603 | endif |
| 4604 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4605 | ifdef INSTALLED_RECOVERYIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4606 | $(eval $(call check-and-set-avb-args,recovery)) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4607 | endif |
Bowgo Tsai | 53cf999 | 2017-06-13 11:27:06 +0800 | [diff] [blame] | 4608 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4609 | # Not using INSTALLED_VBMETA_SYSTEMIMAGE_TARGET as it won't be set yet. |
| 4610 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 4611 | $(eval $(call check-and-set-avb-args,vbmeta_system)) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4612 | endif |
| 4613 | |
| 4614 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 4615 | $(eval $(call check-and-set-avb-args,vbmeta_vendor)) |
| 4616 | endif |
| 4617 | |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4618 | ifdef BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
| 4619 | $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),$(eval $(call check-and-set-avb-args,vbmeta_$(partition)))) |
| 4620 | $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),$(eval BOARD_AVB_MAKE_VBMETA_$(call to-upper,$(partition))_IMAGE_ARGS += --padding_size 4096)) |
| 4621 | endif |
| 4622 | |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4623 | ifneq ($(strip $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST)),) |
| 4624 | $(foreach partition,$(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4625 | $(eval $(call check-and-set-custom-avb-chain-args,$(partition)))) |
| 4626 | endif |
| 4627 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4628 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --padding_size 4096 |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4629 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += --padding_size 4096 |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4630 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += --padding_size 4096 |
| 4631 | |
| 4632 | ifeq (eng,$(filter eng, $(TARGET_BUILD_VARIANT))) |
Tao Bao | 240dcb8 | 2018-10-22 13:02:53 -0700 | [diff] [blame] | 4633 | # We only need the flag in top-level vbmeta.img. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4634 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --set_hashtree_disabled_flag |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4635 | endif |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4636 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4637 | ifdef BOARD_AVB_ROLLBACK_INDEX |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4638 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --rollback_index $(BOARD_AVB_ROLLBACK_INDEX) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4639 | endif |
| 4640 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4641 | ifdef BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX |
| 4642 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += \ |
| 4643 | --rollback_index $(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4644 | endif |
| 4645 | |
| 4646 | ifdef BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX |
| 4647 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += \ |
| 4648 | --rollback_index $(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX) |
John Reck | 0588b43 | 2018-05-03 13:20:01 -0700 | [diff] [blame] | 4649 | endif |
| 4650 | |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4651 | ifdef BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
| 4652 | $(foreach partition,$(call to-upper,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)), \ |
| 4653 | $(if $(BOARD_AVB_VBMETA_$(partition)_ROLLBACK_INDEX),$(eval \ |
| 4654 | BOARD_AVB_MAKE_VBMETA_$(partition)_IMAGE_ARGS += \ |
| 4655 | --rollback_index $(BOARD_AVB_VBMETA_$(partition)_ROLLBACK_INDEX)))) |
| 4656 | endif |
| 4657 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4658 | # $(1): the directory to extract public keys to |
| 4659 | define extract-avb-chain-public-keys |
| 4660 | $(if $(BOARD_AVB_BOOT_KEY_PATH),\ |
| 4661 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_BOOT_KEY_PATH) \ |
| 4662 | --output $(1)/boot.avbpubkey) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4663 | $(if $(BOARD_AVB_INIT_BOOT_KEY_PATH),\ |
| 4664 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_INIT_BOOT_KEY_PATH) \ |
| 4665 | --output $(1)/init_boot.avbpubkey) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4666 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),\ |
| 4667 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_BOOT_KEY_PATH) \ |
| 4668 | --output $(1)/vendor_boot.avbpubkey) |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4669 | $(if $(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH),\ |
| 4670 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH) \ |
| 4671 | --output $(1)/vendor_kernel_boot.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4672 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 4673 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_KEY_PATH) \ |
| 4674 | --output $(1)/system.avbpubkey) |
| 4675 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 4676 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KEY_PATH) \ |
| 4677 | --output $(1)/vendor.avbpubkey) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4678 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 4679 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PRODUCT_KEY_PATH) \ |
| 4680 | --output $(1)/product.avbpubkey) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4681 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 4682 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_EXT_KEY_PATH) \ |
| 4683 | --output $(1)/system_ext.avbpubkey) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4684 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 4685 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_KEY_PATH) \ |
| 4686 | --output $(1)/odm.avbpubkey) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4687 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 4688 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_DLKM_KEY_PATH) \ |
| 4689 | --output $(1)/vendor_dlkm.avbpubkey) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4690 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 4691 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_DLKM_KEY_PATH) \ |
| 4692 | --output $(1)/odm_dlkm.avbpubkey) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4693 | $(if $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH),\ |
| 4694 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH) \ |
| 4695 | --output $(1)/system_dlkm.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4696 | $(if $(BOARD_AVB_DTBO_KEY_PATH),\ |
| 4697 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_DTBO_KEY_PATH) \ |
| 4698 | --output $(1)/dtbo.avbpubkey) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4699 | $(if $(BOARD_AVB_PVMFW_KEY_PATH),\ |
| 4700 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PVMFW_KEY_PATH) \ |
| 4701 | --output $(1)/pvmfw.avbpubkey) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4702 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),\ |
| 4703 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_RECOVERY_KEY_PATH) \ |
| 4704 | --output $(1)/recovery.avbpubkey) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4705 | $(if $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH),\ |
| 4706 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 4707 | --output $(1)/vbmeta_system.avbpubkey) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4708 | $(if $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH),\ |
| 4709 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 4710 | --output $(1)/vbmeta_vendor.avbpubkey) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4711 | $(if $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST),\ |
| 4712 | $(hide) $(foreach partition,$(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4713 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH) \ |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4714 | --output $(1)/$(partition).avbpubkey;)) \ |
| 4715 | $(if $(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),\ |
| 4716 | $(hide) $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS), \ |
| 4717 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_KEY_PATH) \ |
| 4718 | --output $(1)/vbmeta_$(partition).avbpubkey;)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4719 | endef |
| 4720 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4721 | # Builds a chained VBMeta image. This VBMeta image will contain the descriptors for the partitions |
| 4722 | # 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] | 4723 | # 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] | 4724 | # := system system_ext`, `vbmeta_system.img` will be created that includes the descriptors for |
| 4725 | # `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] | 4726 | # `vbmeta.img` as a chained partition. |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4727 | # $(1): VBMeta image name, such as "vbmeta_system", "vbmeta_vendor" etc. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4728 | # $(2): Output filename. |
| 4729 | define build-chained-vbmeta-image |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4730 | $(call pretty,"Target chained vbmeta image: $@") |
| 4731 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 4732 | $(INTERNAL_AVB_$(call to-upper,$(1))_SIGNING_ARGS) \ |
| 4733 | $(BOARD_AVB_MAKE_$(call to-upper,$(1))_IMAGE_ARGS) \ |
| 4734 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(1))), \ |
| 4735 | --include_descriptors_from_image $(call images-for-partitions,$(image))) \ |
| 4736 | --output $@ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4737 | endef |
| 4738 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4739 | ifdef BUILDING_SYSTEM_IMAGE |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4740 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 4741 | INSTALLED_VBMETA_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_system.img |
| 4742 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4743 | $(AVBTOOL) \ |
| 4744 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_SYSTEM)) \ |
| 4745 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4746 | $(call build-chained-vbmeta-image,vbmeta_system) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4747 | |
| 4748 | $(call declare-1p-container,$(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET),) |
| 4749 | |
| 4750 | SYSTEM_NOTICE_DEPS += $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4751 | endif |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4752 | endif # BUILDING_SYSTEM_IMAGE |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4753 | |
| 4754 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 4755 | INSTALLED_VBMETA_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_vendor.img |
| 4756 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4757 | $(AVBTOOL) \ |
| 4758 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_VENDOR)) \ |
| 4759 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4760 | $(call build-chained-vbmeta-image,vbmeta_vendor) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4761 | |
| 4762 | $(call declare-1p-container,$(INSTALLED_VBMETA_VENDORIMAGE_TARGET),) |
| 4763 | |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4764 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) |
| 4765 | endif |
| 4766 | |
| 4767 | ifdef BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
| 4768 | define declare-custom-vbmeta-target |
| 4769 | INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_$(call to-lower,$(1)).img |
| 4770 | $$(INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET): \ |
| 4771 | $(AVBTOOL) \ |
| 4772 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_$(call to-upper,$(1)))) \ |
| 4773 | $(BOARD_AVB_VBMETA_$(call to-upper,$(1))_KEY_PATH) |
| 4774 | $$(call build-chained-vbmeta-image,vbmeta_$(call to-lower,$(1))) |
| 4775 | |
| 4776 | $(call declare-1p-container,$(INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET),) |
| 4777 | |
| 4778 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET) |
| 4779 | endef |
| 4780 | |
| 4781 | $(foreach partition,\ |
| 4782 | $(call to-upper,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)),\ |
| 4783 | $(eval $(call declare-custom-vbmeta-target,$(partition)))) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4784 | endif |
| 4785 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4786 | define build-vbmetaimage-target |
| 4787 | $(call pretty,"Target vbmeta image: $(INSTALLED_VBMETAIMAGE_TARGET)") |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4788 | $(hide) mkdir -p $(AVB_CHAIN_KEY_DIR) |
| 4789 | $(call extract-avb-chain-public-keys, $(AVB_CHAIN_KEY_DIR)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4790 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 4791 | $(INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4792 | $(PRIVATE_AVB_VBMETA_SIGNING_ARGS) \ |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4793 | $(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
| 4794 | --output $@ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4795 | $(hide) rm -rf $(AVB_CHAIN_KEY_DIR) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4796 | endef |
| 4797 | |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 4798 | ifdef BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4799 | INSTALLED_VBMETAIMAGE_TARGET := $(BUILT_VBMETAIMAGE_TARGET) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4800 | $(INSTALLED_VBMETAIMAGE_TARGET): PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 4801 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
| 4802 | |
Kelvin Zhang | 0841b90 | 2023-01-23 11:12:26 -0800 | [diff] [blame] | 4803 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4804 | $(INSTALLED_VBMETAIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4805 | $(AVBTOOL) \ |
| 4806 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4807 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4808 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) \ |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4809 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4810 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 4811 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 4812 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4813 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4814 | $(INSTALLED_ODMIMAGE_TARGET) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4815 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4816 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4817 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4818 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4819 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4820 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4821 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 4822 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) \ |
| 4823 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) \ |
Kelvin Zhang | 0841b90 | 2023-01-23 11:12:26 -0800 | [diff] [blame] | 4824 | $(foreach partition,$(call to-upper,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)),$(INSTALLED_VBMETA_$(partition)IMAGE_TARGET)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4825 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 4826 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
Kelvin Zhang | 0841b90 | 2023-01-23 11:12:26 -0800 | [diff] [blame] | 4827 | $(foreach partition,$(call to-upper,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)),$(BOARD_AVB_VBMETA_$(partition)_KEY_PATH)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4828 | $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4829 | $(build-vbmetaimage-target) |
| 4830 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4831 | $(call declare-1p-container,$(INSTALLED_VBMETAIMAGE_TARGET),) |
| 4832 | |
| 4833 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_VBMETAIMAGE_TARGET) |
| 4834 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4835 | .PHONY: vbmetaimage-nodeps |
Bowgo Tsai | 6a4eaa5 | 2019-12-09 15:48:09 +0800 | [diff] [blame] | 4836 | vbmetaimage-nodeps: PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 4837 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4838 | vbmetaimage-nodeps: |
| 4839 | $(build-vbmetaimage-target) |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 4840 | endif # BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4841 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4842 | endif # BOARD_AVB_ENABLE |
| 4843 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4844 | # List of files from all images |
| 4845 | INTERNAL_ALLIMAGES_FILES := \ |
| 4846 | $(FULL_SYSTEMIMAGE_DEPS) \ |
| 4847 | $(INTERNAL_RAMDISK_FILES) \ |
| 4848 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 4849 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 4850 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 4851 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 4852 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 4853 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 4854 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4855 | $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) \ |
Jiyong Park | e219f00 | 2022-12-16 14:30:03 +0900 | [diff] [blame] | 4856 | $(INTERNAL_PVMFWIMAGE_FILES) \ |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4857 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4858 | # ----------------------------------------------------------------- |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4859 | # Check VINTF of build |
| 4860 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4861 | # Note: vendor_dlkm, odm_dlkm, and system_dlkm does not have VINTF files. |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4862 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4863 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4864 | intermediates := $(call intermediates-dir-for,PACKAGING,check_vintf_all) |
| 4865 | check_vintf_all_deps := |
| 4866 | |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4867 | # ----------------------------------------------------------------- |
Jooyung Han | c9542ab | 2023-06-27 16:12:32 +0900 | [diff] [blame] | 4868 | # Activate vendor APEXes for checkvintf |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4869 | |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4870 | apex_dirs := \ |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4871 | $(TARGET_OUT_VENDOR)/apex/% \ |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4872 | |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4873 | apex_files := $(sort $(filter $(apex_dirs), $(INTERNAL_ALLIMAGES_FILES))) |
Jooyung Han | c9542ab | 2023-06-27 16:12:32 +0900 | [diff] [blame] | 4874 | |
| 4875 | APEX_OUT := $(intermediates)/apex |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4876 | APEX_INFO_FILE := $(APEX_OUT)/apex-info-list.xml |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4877 | |
Jooyung Han | c9542ab | 2023-06-27 16:12:32 +0900 | [diff] [blame] | 4878 | # apexd_host scans/activates APEX files and writes /apex/apex-info-list.xml |
| 4879 | $(APEX_INFO_FILE): $(HOST_OUT_EXECUTABLES)/apexd_host $(apex_files) |
| 4880 | @echo "Extracting apexes..." |
| 4881 | @rm -rf $(APEX_OUT) |
| 4882 | @mkdir -p $(APEX_OUT) |
| 4883 | $< --vendor_path $(TARGET_OUT_VENDOR) \ |
| 4884 | --apex_path $(APEX_OUT) |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4885 | |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4886 | apex_files := |
| 4887 | apex_dirs := |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4888 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4889 | # The build system only writes VINTF metadata to */etc/vintf paths. Legacy paths aren't needed here |
| 4890 | # because they are only used for prebuilt images. |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4891 | # APEX files in /vendor/apex can have VINTF fragments as well. |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4892 | check_vintf_common_srcs_patterns := \ |
| 4893 | $(TARGET_OUT)/etc/vintf/% \ |
| 4894 | $(TARGET_OUT_VENDOR)/etc/vintf/% \ |
| 4895 | $(TARGET_OUT_ODM)/etc/vintf/% \ |
| 4896 | $(TARGET_OUT_PRODUCT)/etc/vintf/% \ |
| 4897 | $(TARGET_OUT_SYSTEM_EXT)/etc/vintf/% \ |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4898 | $(TARGET_OUT_VENDOR)/apex/% \ |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4899 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4900 | check_vintf_common_srcs := $(sort $(filter $(check_vintf_common_srcs_patterns),$(INTERNAL_ALLIMAGES_FILES))) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4901 | check_vintf_common_srcs_patterns := |
| 4902 | |
| 4903 | check_vintf_has_system := |
| 4904 | check_vintf_has_vendor := |
| 4905 | |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4906 | ifneq (,$(filter EMPTY_ODM_SKU_PLACEHOLDER,$(ODM_MANIFEST_SKUS))) |
| 4907 | $(error EMPTY_ODM_SKU_PLACEHOLDER is an internal variable and cannot be used for ODM_MANIFEST_SKUS) |
| 4908 | endif |
| 4909 | ifneq (,$(filter EMPTY_VENDOR_SKU_PLACEHOLDER,$(DEVICE_MANIFEST_SKUS))) |
| 4910 | $(error EMPTY_VENDOR_SKU_PLACEHOLDER is an internal variable and cannot be used for DEIVCE_MANIFEST_SKUS) |
| 4911 | endif |
| 4912 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4913 | # -- 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] | 4914 | check_vintf_system_deps := $(filter $(TARGET_OUT)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 4915 | ifneq ($(check_vintf_system_deps),) |
| 4916 | check_vintf_has_system := true |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4917 | |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 4918 | check_vintf_system_log := $(intermediates)/check_vintf_system.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4919 | check_vintf_all_deps += $(check_vintf_system_log) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4920 | $(check_vintf_system_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_system_deps) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4921 | @( $< --check-one --dirmap /system:$(TARGET_OUT) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 4922 | $(call declare-1p-target,$(check_vintf_system_log)) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4923 | check_vintf_system_log := |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4924 | |
Devin Moore | 62d0a73 | 2022-10-13 16:50:50 +0000 | [diff] [blame] | 4925 | # -- Check framework manifest against frozen manifests for GSI targets. They need to be compatible. |
| 4926 | ifneq (true, $(BUILDING_VENDOR_IMAGE)) |
| 4927 | vintffm_log := $(intermediates)/vintffm.log |
| 4928 | endif |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4929 | check_vintf_all_deps += $(vintffm_log) |
| 4930 | $(vintffm_log): $(HOST_OUT_EXECUTABLES)/vintffm $(check_vintf_system_deps) |
| 4931 | @( $< --check --dirmap /system:$(TARGET_OUT) \ |
Devin Moore | 078bfdf | 2023-06-01 17:54:03 +0000 | [diff] [blame] | 4932 | --dirmap /system_ext:$(TARGET_OUT_SYSTEM_EXT) \ |
| 4933 | --dirmap /product:$(TARGET_OUT_PRODUCT) \ |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4934 | $(VINTF_FRAMEWORK_MANIFEST_FROZEN_DIR) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
| 4935 | |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 4936 | $(call declare-1p-target,$(vintffm_log)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4937 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4938 | endif # check_vintf_system_deps |
| 4939 | check_vintf_system_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4940 | |
| 4941 | # -- Check vendor manifest / matrix including fragments (excluding other device manifests / matrices) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4942 | check_vintf_vendor_deps := $(filter $(TARGET_OUT_VENDOR)/etc/vintf/%, $(check_vintf_common_srcs)) |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4943 | check_vintf_vendor_deps += $(filter $(TARGET_OUT_VENDOR)/apex/%, $(check_vintf_common_srcs)) |
| 4944 | ifneq ($(strip $(check_vintf_vendor_deps)),) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4945 | check_vintf_has_vendor := true |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 4946 | check_vintf_vendor_log := $(intermediates)/check_vintf_vendor.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4947 | check_vintf_all_deps += $(check_vintf_vendor_log) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4948 | # Check vendor SKU=(empty) case when: |
| 4949 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 4950 | # - 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] | 4951 | $(check_vintf_vendor_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4952 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 4953 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4954 | $(DEVICE_MANIFEST_SKUS) |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4955 | $(check_vintf_vendor_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_vendor_deps) $(APEX_INFO_FILE) |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4956 | $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4957 | ( $< --check-one --dirmap /vendor:$(TARGET_OUT_VENDOR) --dirmap /apex:$(APEX_OUT) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4958 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 4959 | > $@ 2>&1 ) || ( cat $@ && exit 1 ); ) |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 4960 | $(call declare-1p-target,$(check_vintf_vendor_log)) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4961 | check_vintf_vendor_log := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4962 | endif # check_vintf_vendor_deps |
| 4963 | check_vintf_vendor_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4964 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4965 | # -- Kernel version and configurations. |
| 4966 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
| 4967 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4968 | BUILT_KERNEL_CONFIGS_FILE := $(intermediates)/kernel_configs.txt |
| 4969 | BUILT_KERNEL_VERSION_FILE := $(intermediates)/kernel_version.txt |
| 4970 | |
| 4971 | my_board_extracted_kernel := |
| 4972 | |
| 4973 | # BOARD_KERNEL_CONFIG_FILE and BOARD_KERNEL_VERSION can be used to override the values extracted |
| 4974 | # from INSTALLED_KERNEL_TARGET. |
| 4975 | ifdef BOARD_KERNEL_CONFIG_FILE |
| 4976 | ifdef BOARD_KERNEL_VERSION |
| 4977 | $(BUILT_KERNEL_CONFIGS_FILE): $(BOARD_KERNEL_CONFIG_FILE) |
| 4978 | cp $< $@ |
| 4979 | $(BUILT_KERNEL_VERSION_FILE): |
| 4980 | echo $(BOARD_KERNEL_VERSION) > $@ |
| 4981 | |
Bob Badour | 7cc4e33 | 2023-03-01 10:16:04 -0800 | [diff] [blame] | 4982 | $(call declare-license-metadata,$(BUILT_KERNEL_CONFIGS_FILE),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
| 4983 | $(call declare-license-metadata,$(BUILT_KERNEL_VERSION_FILE),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4984 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4985 | my_board_extracted_kernel := true |
| 4986 | endif # BOARD_KERNEL_VERSION |
| 4987 | endif # BOARD_KERNEL_CONFIG_FILE |
| 4988 | |
| 4989 | ifneq ($(my_board_extracted_kernel),true) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4990 | # Tools for decompression that is not in PATH. |
| 4991 | # Check $(EXTRACT_KERNEL) for decompression algorithms supported by the script. |
| 4992 | # Algorithms that are in the script but not in this list will be found in PATH. |
| 4993 | my_decompress_tools := \ |
| 4994 | lz4:$(HOST_OUT_EXECUTABLES)/lz4 \ |
| 4995 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4996 | endif # my_board_extracted_kernel |
| 4997 | |
| 4998 | ifneq ($(my_board_extracted_kernel),true) |
| 4999 | ifdef INSTALLED_KERNEL_TARGET |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5000 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 5001 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 5002 | $(BUILT_KERNEL_CONFIGS_FILE): $(foreach pair,$(my_decompress_tools),$(call word-colon,2,$(pair))) |
Steve Muckle | bbdfbda | 2020-06-26 16:39:34 -0700 | [diff] [blame] | 5003 | $(BUILT_KERNEL_CONFIGS_FILE): $(EXTRACT_KERNEL) $(firstword $(INSTALLED_KERNEL_TARGET)) |
| 5004 | $< --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(firstword $(INSTALLED_KERNEL_TARGET)) \ |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5005 | --output-configs $@ \ |
Yifan Hong | b95d02e | 2020-11-13 18:33:01 -0800 | [diff] [blame] | 5006 | --output-release $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5007 | |
Bob Badour | 7cc4e33 | 2023-03-01 10:16:04 -0800 | [diff] [blame] | 5008 | $(call declare-license-metadata,$(BUILT_KERNEL_CONFIGS_FILE),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5009 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 5010 | my_board_extracted_kernel := true |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5011 | endif # INSTALLED_KERNEL_TARGET |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 5012 | endif # my_board_extracted_kernel |
| 5013 | |
| 5014 | ifneq ($(my_board_extracted_kernel),true) |
| 5015 | ifdef INSTALLED_BOOTIMAGE_TARGET |
| 5016 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 5017 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 5018 | $(BUILT_KERNEL_CONFIGS_FILE): $(foreach pair,$(my_decompress_tools),$(call word-colon,2,$(pair))) |
| 5019 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_UNPACKED_BOOTIMG := $(intermediates)/unpacked_bootimage |
| 5020 | $(BUILT_KERNEL_CONFIGS_FILE): \ |
| 5021 | $(HOST_OUT_EXECUTABLES)/unpack_bootimg \ |
| 5022 | $(EXTRACT_KERNEL) \ |
| 5023 | $(INSTALLED_BOOTIMAGE_TARGET) |
| 5024 | $(HOST_OUT_EXECUTABLES)/unpack_bootimg --boot_img $(INSTALLED_BOOTIMAGE_TARGET) --out $(PRIVATE_UNPACKED_BOOTIMG) |
| 5025 | $(EXTRACT_KERNEL) --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(PRIVATE_UNPACKED_BOOTIMG)/kernel \ |
| 5026 | --output-configs $@ \ |
| 5027 | --output-release $(BUILT_KERNEL_VERSION_FILE) |
| 5028 | |
Bob Badour | 7cc4e33 | 2023-03-01 10:16:04 -0800 | [diff] [blame] | 5029 | $(call declare-license-metadata,$(BUILT_KERNEL_CONFIGS_FILE),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5030 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 5031 | my_board_extracted_kernel := true |
| 5032 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 5033 | endif # my_board_extracted_kernel |
| 5034 | |
Colin Cross | 27f36d1 | 2023-07-07 11:21:35 -0700 | [diff] [blame] | 5035 | ifeq ($(my_board_extracted_kernel),true) |
| 5036 | $(call dist-for-goals, droid_targets, $(BUILT_KERNEL_VERSION_FILE)) |
| 5037 | else |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 5038 | $(warning Neither INSTALLED_KERNEL_TARGET nor INSTALLED_BOOTIMAGE_TARGET is defined when \ |
| 5039 | PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS is true. Information about the updated kernel \ |
| 5040 | cannot be built into OTA update package. You can fix this by: \ |
| 5041 | (1) setting TARGET_NO_KERNEL to false and installing the built kernel to $(PRODUCT_OUT)/kernel,\ |
| 5042 | so that kernel information will be extracted from the built kernel; or \ |
| 5043 | (2) Add a prebuilt boot image and specify it in BOARD_PREBUILT_BOOTIMAGE; or \ |
| 5044 | (3) extracting kernel configuration and defining BOARD_KERNEL_CONFIG_FILE and \ |
| 5045 | BOARD_KERNEL_VERSION manually; or \ |
| 5046 | (4) unsetting PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS manually.) |
| 5047 | # Clear their values to indicate that these two files does not exist. |
| 5048 | BUILT_KERNEL_CONFIGS_FILE := |
| 5049 | BUILT_KERNEL_VERSION_FILE := |
| 5050 | endif |
| 5051 | |
| 5052 | my_decompress_tools := |
| 5053 | my_board_extracted_kernel := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5054 | |
Yifan Hong | c0f904e | 2021-03-17 11:25:31 -0700 | [diff] [blame] | 5055 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 5056 | |
| 5057 | # -- Check VINTF compatibility of build. |
| 5058 | # Skip partial builds; only check full builds. Only check if: |
| 5059 | # - PRODUCT_ENFORCE_VINTF_MANIFEST is true |
| 5060 | # - system / vendor VINTF metadata exists |
| 5061 | # - Building product / system_ext / odm images if board has product / system_ext / odm images |
| 5062 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 5063 | ifeq ($(check_vintf_has_system),true) |
| 5064 | ifeq ($(check_vintf_has_vendor),true) |
| 5065 | ifeq ($(filter true,$(BUILDING_ODM_IMAGE)),$(filter true,$(BOARD_USES_ODMIMAGE))) |
| 5066 | ifeq ($(filter true,$(BUILDING_PRODUCT_IMAGE)),$(filter true,$(BOARD_USES_PRODUCTIMAGE))) |
| 5067 | ifeq ($(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),$(filter true,$(BOARD_USES_SYSTEM_EXTIMAGE))) |
| 5068 | |
| 5069 | check_vintf_compatible_log := $(intermediates)/check_vintf_compatible.log |
| 5070 | check_vintf_all_deps += $(check_vintf_compatible_log) |
| 5071 | |
| 5072 | check_vintf_compatible_args := |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 5073 | check_vintf_compatible_deps := $(check_vintf_common_srcs) $(APEX_INFO_FILE) |
Yifan Hong | c0f904e | 2021-03-17 11:25:31 -0700 | [diff] [blame] | 5074 | |
| 5075 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 5076 | ifneq (,$(BUILT_KERNEL_VERSION_FILE)$(BUILT_KERNEL_CONFIGS_FILE)) |
Yifan Hong | 72e78f2 | 2020-11-13 18:30:06 -0800 | [diff] [blame] | 5077 | check_vintf_compatible_args += --kernel $(BUILT_KERNEL_VERSION_FILE):$(BUILT_KERNEL_CONFIGS_FILE) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5078 | check_vintf_compatible_deps += $(BUILT_KERNEL_CONFIGS_FILE) $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 5079 | endif # BUILT_KERNEL_VERSION_FILE != "" || BUILT_KERNEL_CONFIGS_FILE != "" |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5080 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 5081 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5082 | check_vintf_compatible_args += \ |
| 5083 | --dirmap /system:$(TARGET_OUT) \ |
| 5084 | --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 5085 | --dirmap /odm:$(TARGET_OUT_ODM) \ |
| 5086 | --dirmap /product:$(TARGET_OUT_PRODUCT) \ |
| 5087 | --dirmap /system_ext:$(TARGET_OUT_SYSTEM_EXT) \ |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 5088 | --dirmap /apex:$(APEX_OUT) \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5089 | |
| 5090 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 5091 | check_vintf_compatible_args += --property ro.product.first_api_level=$(PRODUCT_SHIPPING_API_LEVEL) |
| 5092 | endif # PRODUCT_SHIPPING_API_LEVEL |
| 5093 | |
| 5094 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_ARGS := $(check_vintf_compatible_args) |
| 5095 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_DEPS := $(check_vintf_compatible_deps) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 5096 | # Check ODM SKU=(empty) case when: |
| 5097 | # - ODM_MANIFEST_FILES is not empty; OR |
| 5098 | # - 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] | 5099 | $(check_vintf_compatible_log): PRIVATE_ODM_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 5100 | $(if $(ODM_MANIFEST_FILES),EMPTY_ODM_SKU_PLACEHOLDER,\ |
| 5101 | $(if $(ODM_MANIFEST_SKUS),,EMPTY_ODM_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5102 | $(ODM_MANIFEST_SKUS) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 5103 | # Check vendor SKU=(empty) case when: |
| 5104 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 5105 | # - 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] | 5106 | $(check_vintf_compatible_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 5107 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 5108 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5109 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5110 | $(check_vintf_compatible_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_compatible_deps) |
Yifan Hong | 80ab214 | 2021-03-10 18:10:05 -0800 | [diff] [blame] | 5111 | @echo "PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS=$(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS)" > $@ |
| 5112 | @echo -n -e 'Deps: \n ' >> $@ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5113 | @sed 's/ /\n /g' <<< "$(PRIVATE_CHECK_VINTF_DEPS)" >> $@ |
| 5114 | @echo -n -e 'Args: \n ' >> $@ |
| 5115 | @cat <<< "$(PRIVATE_CHECK_VINTF_ARGS)" >> $@ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5116 | $(foreach odm_sku,$(PRIVATE_ODM_SKUS), $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 5117 | echo "For ODM SKU = $(odm_sku), vendor SKU = $(vendor_sku)" >> $@; \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5118 | ( $< --check-compat $(PRIVATE_CHECK_VINTF_ARGS) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5119 | --property ro.boot.product.hardware.sku=$(filter-out EMPTY_ODM_SKU_PLACEHOLDER,$(odm_sku)) \ |
| 5120 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 5121 | >> $@ 2>&1 ) || (cat $@ && exit 1); )) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5122 | |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 5123 | $(call declare-1p-target,$(check_vintf_compatible_log)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5124 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5125 | check_vintf_compatible_log := |
| 5126 | check_vintf_compatible_args := |
| 5127 | check_vintf_compatible_deps := |
| 5128 | |
| 5129 | endif # BUILDING_SYSTEM_EXT_IMAGE equals BOARD_USES_SYSTEM_EXTIMAGE |
| 5130 | endif # BUILDING_PRODUCT_IMAGE equals BOARD_USES_PRODUCTIMAGE |
| 5131 | endif # BUILDING_ODM_IMAGE equals BOARD_USES_ODMIMAGE |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5132 | endif # check_vintf_has_vendor |
| 5133 | endif # check_vintf_has_system |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5134 | endif # PRODUCT_ENFORCE_VINTF_MANIFEST |
| 5135 | |
| 5136 | # Add all logs of VINTF checks to dist builds |
| 5137 | droid_targets: $(check_vintf_all_deps) |
| 5138 | $(call dist-for-goals, droid_targets, $(check_vintf_all_deps)) |
| 5139 | |
| 5140 | # Helper alias to check all VINTF of current build. |
| 5141 | .PHONY: check-vintf-all |
| 5142 | check-vintf-all: $(check_vintf_all_deps) |
| 5143 | $(foreach file,$^,echo "$(file)"; cat "$(file)"; echo;) |
| 5144 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5145 | check_vintf_has_vendor := |
| 5146 | check_vintf_has_system := |
| 5147 | check_vintf_common_srcs := |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5148 | check_vintf_all_deps := |
| 5149 | intermediates := |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 5150 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5151 | |
| 5152 | # ----------------------------------------------------------------- |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 5153 | # Check image sizes <= size of super partition |
| 5154 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 5155 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 5156 | |
| 5157 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
Yifan Hong | 37c0c7c | 2018-07-24 17:45:08 -0700 | [diff] [blame] | 5158 | |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 5159 | PARTITIONS_AND_OTHER_IN_SUPER := $(BOARD_SUPER_PARTITION_PARTITION_LIST) |
| 5160 | |
| 5161 | # Add the system other image to the misc_info. Because factory ota may install system_other to the super partition. |
| 5162 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 5163 | PARTITIONS_AND_OTHER_IN_SUPER += system_other |
| 5164 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 5165 | |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5166 | # $(1): misc_info.txt |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5167 | # #(2): optional log file |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 5168 | define check-all-partition-sizes-target |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5169 | mkdir -p $(dir $(1)) |
| 5170 | rm -f $(1) |
| 5171 | $(call dump-super-image-info, $(1)) |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 5172 | $(foreach partition,$(PARTITIONS_AND_OTHER_IN_SUPER), \ |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5173 | echo "$(partition)_image="$(call images-for-partitions,$(partition)) >> $(1);) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5174 | $(CHECK_PARTITION_SIZES) $(if $(2),--logfile $(2),-v) $(1) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 5175 | endef |
| 5176 | |
Yifan Hong | d11953c | 2021-03-11 14:47:48 -0800 | [diff] [blame] | 5177 | check_all_partition_sizes_log := $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/check_all_partition_sizes.log |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5178 | droid_targets: $(check_all_partition_sizes_log) |
| 5179 | $(call dist-for-goals, droid_targets, $(check_all_partition_sizes_log)) |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 5180 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5181 | $(check_all_partition_sizes_log): \ |
| 5182 | $(CHECK_PARTITION_SIZES) \ |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 5183 | $(call images-for-partitions,$(PARTITIONS_AND_OTHER_IN_SUPER)) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5184 | $(call check-all-partition-sizes-target, \ |
| 5185 | $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/misc_info.txt, \ |
| 5186 | $@) |
| 5187 | |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 5188 | $(call declare-1p-target,$(check_all_partition_sizes_log)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5189 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5190 | .PHONY: check-all-partition-sizes |
| 5191 | check-all-partition-sizes: $(check_all_partition_sizes_log) |
| 5192 | |
| 5193 | .PHONY: check-all-partition-sizes-nodeps |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 5194 | check-all-partition-sizes-nodeps: |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5195 | $(call check-all-partition-sizes-target, \ |
| 5196 | $(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] | 5197 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 5198 | endif # PRODUCT_BUILD_SUPER_PARTITION |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 5199 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 5200 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 5201 | |
| 5202 | # ----------------------------------------------------------------- |
Greg Hartman | 2ebfef4 | 2014-11-04 21:17:06 -0800 | [diff] [blame] | 5203 | # bring in the installer image generation defines if necessary |
| 5204 | ifeq ($(TARGET_USE_DISKINSTALLER),true) |
| 5205 | include bootable/diskinstaller/config.mk |
| 5206 | endif |
| 5207 | |
| 5208 | # ----------------------------------------------------------------- |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame] | 5209 | # host tools needed to build dist and OTA packages |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5210 | |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 5211 | ifeq ($(BUILD_OS),darwin) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5212 | build_ota_package := false |
| 5213 | build_otatools_package := false |
| 5214 | else |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5215 | # Set build_ota_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5216 | build_ota_package := true |
| 5217 | ifeq ($(TARGET_SKIP_OTA_PACKAGE),true) |
| 5218 | build_ota_package := false |
| 5219 | endif |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 5220 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5221 | build_ota_package := false |
| 5222 | endif |
| 5223 | ifeq ($(TARGET_PRODUCT),sdk) |
| 5224 | build_ota_package := false |
| 5225 | endif |
Yifan Hong | f32f65c | 2021-07-14 14:19:12 -0700 | [diff] [blame] | 5226 | # A target without a kernel may be one of the following: |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 5227 | # - A generic target. In this case, the OTA package usually isn't built. |
| 5228 | # PRODUCT_BUILD_GENERIC_OTA_PACKAGE may be set to true to force OTA package |
| 5229 | # generation. |
| 5230 | # - A real device target, with TARGET_NO_KERNEL set to true and |
| 5231 | # BOARD_PREBUILT_BOOTIMAGE set. In this case, it is valid to generate |
| 5232 | # an OTA package. |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5233 | ifneq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 5234 | ifneq ($(filter generic%,$(TARGET_DEVICE)),) |
| 5235 | build_ota_package := false |
| 5236 | endif |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 5237 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 5238 | ifeq ($(TARGET_NO_KERNEL),true) |
| 5239 | build_ota_package := false |
| 5240 | endif |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 5241 | endif # INSTALLED_BOOTIMAGE_TARGET == "" |
Yifan Hong | bf77787 | 2021-07-19 16:28:49 +0000 | [diff] [blame] | 5242 | ifeq ($(recovery_fstab),) |
| 5243 | build_ota_package := false |
| 5244 | endif |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5245 | endif # PRODUCT_BUILD_GENERIC_OTA_PACKAGE |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5246 | |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5247 | # Set build_otatools_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5248 | build_otatools_package := true |
| 5249 | ifeq ($(TARGET_SKIP_OTATOOLS_PACKAGE),true) |
| 5250 | build_otatools_package := false |
| 5251 | endif |
Colin Cross | 481cc5a | 2016-02-04 15:09:23 -0800 | [diff] [blame] | 5252 | endif |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 5253 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5254 | ifeq ($(build_otatools_package),true) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5255 | |
| 5256 | INTERNAL_OTATOOLS_MODULES := \ |
changho.shin | 0f12536 | 2019-07-08 10:59:00 +0900 | [diff] [blame] | 5257 | aapt2 \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5258 | add_img_to_target_files \ |
Baligh Uddin | ab25b2d | 2020-05-29 19:01:32 +0000 | [diff] [blame] | 5259 | apksigner \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5260 | append2simg \ |
| 5261 | avbtool \ |
| 5262 | blk_alloc_to_base_fs \ |
| 5263 | boot_signer \ |
| 5264 | brillo_update_payload \ |
| 5265 | brotli \ |
| 5266 | bsdiff \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 5267 | build_image \ |
| 5268 | build_super_image \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5269 | build_verity_metadata \ |
| 5270 | build_verity_tree \ |
| 5271 | care_map_generator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5272 | check_ota_package_signature \ |
| 5273 | check_target_files_signatures \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5274 | check_target_files_vintf \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5275 | checkvintf \ |
Kelvin Zhang | ca81233 | 2023-04-19 16:15:29 -0700 | [diff] [blame] | 5276 | create_brick_ota \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5277 | delta_generator \ |
| 5278 | e2fsck \ |
| 5279 | e2fsdroid \ |
| 5280 | fc_sort \ |
| 5281 | fec \ |
Woody Lin | e416419 | 2022-03-21 18:29:41 +0800 | [diff] [blame] | 5282 | fsck.erofs \ |
Jaegeuk Kim | 01da65f | 2021-06-08 18:24:46 -0700 | [diff] [blame] | 5283 | fsck.f2fs \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5284 | fs_config \ |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 5285 | generate_gki_certificate \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5286 | generate_verity_key \ |
Daniel Norman | ee33b4e | 2020-12-02 16:18:25 -0800 | [diff] [blame] | 5287 | host_init_verifier \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5288 | img2simg \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5289 | img_from_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5290 | imgdiff \ |
Shikha Panwar | d3bef47 | 2023-01-13 08:09:29 +0000 | [diff] [blame] | 5291 | initrd_bootconfig \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5292 | libconscrypt_openjdk_jni \ |
| 5293 | lpmake \ |
Isaac Chen | eec4a7c | 2019-06-25 11:50:58 +0800 | [diff] [blame] | 5294 | lpunpack \ |
Tianjie | 3031c29 | 2020-06-24 11:20:36 -0700 | [diff] [blame] | 5295 | lz4 \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5296 | make_f2fs \ |
Jaegeuk Kim | 8ba4bab | 2020-07-17 20:18:10 -0700 | [diff] [blame] | 5297 | make_f2fs_casefold \ |
Satoshi Futenma | 6d56d45 | 2023-04-18 19:15:26 +0900 | [diff] [blame] | 5298 | merge_ota \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5299 | merge_target_files \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5300 | mk_combined_img \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5301 | mkbootfs \ |
| 5302 | mkbootimg \ |
| 5303 | mke2fs \ |
Baligh Uddin | 6a8234b | 2020-01-29 17:42:59 -0800 | [diff] [blame] | 5304 | mke2fs.conf \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 5305 | mkfs.erofs \ |
Cole Faust | b000208 | 2022-09-05 18:34:56 -0700 | [diff] [blame] | 5306 | mkf2fsuserimg \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5307 | mksquashfs \ |
Cole Faust | b000208 | 2022-09-05 18:34:56 -0700 | [diff] [blame] | 5308 | mksquashfsimage \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5309 | mkuserimg_mke2fs \ |
Kelvin Zhang | 83eb9f7 | 2022-03-15 11:12:50 -0700 | [diff] [blame] | 5310 | ota_extractor \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 5311 | ota_from_target_files \ |
Bowgo Tsai | 6c37c17 | 2021-02-05 18:01:15 +0800 | [diff] [blame] | 5312 | repack_bootimg \ |
Daniel Norman | 48603ff | 2021-02-22 15:15:24 -0800 | [diff] [blame] | 5313 | secilc \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5314 | sefcontext_compile \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5315 | sgdisk \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5316 | shflags \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5317 | sign_apex \ |
| 5318 | sign_target_files_apks \ |
Jooyung Han | 8caba5e | 2021-10-27 03:58:09 +0900 | [diff] [blame] | 5319 | sign_virt_apex \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5320 | signapk \ |
| 5321 | simg2img \ |
| 5322 | sload_f2fs \ |
Yifan Hong | 125d0b6 | 2020-09-24 17:07:03 -0700 | [diff] [blame] | 5323 | toybox \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5324 | tune2fs \ |
Daniel Mentz | 30652b3 | 2020-01-04 15:18:09 -0800 | [diff] [blame] | 5325 | unpack_bootimg \ |
Tianjie Xu | 4e5591f | 2019-06-11 14:35:59 -0700 | [diff] [blame] | 5326 | update_host_simulator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5327 | validate_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5328 | verity_signer \ |
| 5329 | verity_verifier \ |
| 5330 | zipalign \ |
Kelvin Zhang | b673bbf | 2021-08-20 10:09:20 -0700 | [diff] [blame] | 5331 | zucchini \ |
Kelvin Zhang | 6d366d3 | 2023-02-21 12:42:23 -0800 | [diff] [blame] | 5332 | zip2zip \ |
| 5333 | |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 5334 | |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5335 | # Additional tools to unpack and repack the apex file. |
| 5336 | INTERNAL_OTATOOLS_MODULES += \ |
Jooyung Han | 8f0dcc2 | 2023-06-29 12:43:10 +0900 | [diff] [blame] | 5337 | apexd_host \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5338 | apexer \ |
Nikita Ioffe | 3608148 | 2021-01-20 01:32:28 +0000 | [diff] [blame] | 5339 | apex_compression_tool \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5340 | deapexer \ |
| 5341 | debugfs_static \ |
Dennis Shen | 888539c | 2022-11-07 18:53:10 +0000 | [diff] [blame] | 5342 | fsck.erofs \ |
Dennis Shen | 03ef64b | 2023-03-08 15:39:28 +0000 | [diff] [blame] | 5343 | make_erofs \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5344 | merge_zips \ |
| 5345 | resize2fs \ |
| 5346 | soong_zip \ |
| 5347 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5348 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5349 | INTERNAL_OTATOOLS_MODULES += \ |
Aaron Kling | e380321 | 2022-10-20 21:24:23 -0500 | [diff] [blame] | 5350 | futility-host \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5351 | vboot_signer |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 5352 | endif |
Tao Bao | f8e6fbe | 2016-01-04 09:57:32 -0800 | [diff] [blame] | 5353 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5354 | INTERNAL_OTATOOLS_FILES := \ |
| 5355 | $(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] | 5356 | |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 5357 | .PHONY: otatools |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5358 | otatools: $(INTERNAL_OTATOOLS_FILES) |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 5359 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5360 | # For each module, recursively resolve its host shared library dependencies. Then we have a full |
| 5361 | # list of modules whose installed files need to be packed. |
| 5362 | INTERNAL_OTATOOLS_MODULES_WITH_DEPS := \ |
| 5363 | $(sort $(INTERNAL_OTATOOLS_MODULES) \ |
| 5364 | $(foreach m,$(INTERNAL_OTATOOLS_MODULES),$(call get-all-shared-libs-deps,$(m)))) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5365 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5366 | INTERNAL_OTATOOLS_PACKAGE_FILES := \ |
| 5367 | $(filter $(HOST_OUT)/%,$(call module-installed-files,$(INTERNAL_OTATOOLS_MODULES_WITH_DEPS))) |
| 5368 | |
| 5369 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 5370 | $(sort $(shell find build/make/target/product/security -type f -name "*.x509.pem" -o \ |
hungweichen | f1f5dd3 | 2022-08-17 08:01:50 +0000 | [diff] [blame] | 5371 | -name "*.pk8")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5372 | |
Hongguang | 07babe0 | 2022-10-31 17:21:22 -0700 | [diff] [blame] | 5373 | ifneq (,$(wildcard packages/modules)) |
Hongguang | 547812d | 2022-10-31 10:20:14 -0700 | [diff] [blame] | 5374 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 5375 | $(sort $(shell find packages/modules -type f -name "*.x509.pem" -o -name "*.pk8" -o -name \ |
| 5376 | "key.pem")) |
Hongguang | 07babe0 | 2022-10-31 17:21:22 -0700 | [diff] [blame] | 5377 | endif |
Hongguang | 547812d | 2022-10-31 10:20:14 -0700 | [diff] [blame] | 5378 | |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5379 | ifneq (,$(wildcard device)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5380 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Dan Willemsen | 60c6644 | 2018-05-01 19:07:27 -0700 | [diff] [blame] | 5381 | $(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] | 5382 | -name "*.pem" -o -name "oem*.prop" -o -name "*.avbpubkey")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5383 | endif |
| 5384 | ifneq (,$(wildcard external/avb)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5385 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5386 | $(sort $(shell find external/avb/test/data -type f -name "testkey_*.pem" -o \ |
| 5387 | -name "atx_metadata.bin")) |
| 5388 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5389 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5390 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 5232f09 | 2018-02-10 04:03:32 +0000 | [diff] [blame] | 5391 | $(sort $(shell find external/vboot_reference/tests/devkeys -type f)) |
Tao Bao | e8ef8f70 | 2017-05-17 11:41:50 -0700 | [diff] [blame] | 5392 | endif |
| 5393 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5394 | INTERNAL_OTATOOLS_RELEASETOOLS := \ |
Kelvin Zhang | ed714e0 | 2022-09-22 12:42:24 -0700 | [diff] [blame] | 5395 | $(shell find build/make/tools/releasetools -name "*.pyc" -prune -o \ |
| 5396 | \( -type f -o -type l \) -print | sort) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5397 | |
| 5398 | BUILT_OTATOOLS_PACKAGE := $(PRODUCT_OUT)/otatools.zip |
| 5399 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_ZIP_ROOT := $(call intermediates-dir-for,PACKAGING,otatools)/otatools |
| 5400 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_PACKAGE_FILES := $(INTERNAL_OTATOOLS_PACKAGE_FILES) |
| 5401 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_RELEASETOOLS := $(INTERNAL_OTATOOLS_RELEASETOOLS) |
| 5402 | $(BUILT_OTATOOLS_PACKAGE): $(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS) |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 5403 | $(BUILT_OTATOOLS_PACKAGE): $(SOONG_ZIP) $(ZIP2ZIP) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5404 | @echo "Package OTA tools: $@" |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5405 | rm -rf $@ $(PRIVATE_ZIP_ROOT) |
| 5406 | mkdir -p $(dir $@) |
| 5407 | $(call copy-files-with-structure,$(PRIVATE_OTATOOLS_PACKAGE_FILES),$(HOST_OUT)/,$(PRIVATE_ZIP_ROOT)) |
| 5408 | $(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] | 5409 | cp $(SOONG_ZIP) $(ZIP2ZIP) $(MERGE_ZIPS) $(PRIVATE_ZIP_ROOT)/bin/ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5410 | $(SOONG_ZIP) -o $@ -C $(PRIVATE_ZIP_ROOT) -D $(PRIVATE_ZIP_ROOT) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5411 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5412 | $(call declare-1p-container,$(BUILT_OTATOOLS_PACKAGE),build) |
| 5413 | $(call declare-container-license-deps,$(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS),$(BUILT_OTATOOLS_PACKAGE):) |
| 5414 | |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5415 | .PHONY: otatools-package |
| 5416 | otatools-package: $(BUILT_OTATOOLS_PACKAGE) |
| 5417 | |
Dennis Shen | 5acfb9c | 2023-03-30 12:27:31 +0000 | [diff] [blame] | 5418 | $(call dist-for-goals, otatools-package, \ |
| 5419 | $(BUILT_OTATOOLS_PACKAGE) \ |
| 5420 | ) |
| 5421 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5422 | endif # build_otatools_package |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5423 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5424 | # ----------------------------------------------------------------- |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5425 | # fastboot-info.txt |
Daniel Zheng | e05a15b | 2023-05-01 11:07:33 -0700 | [diff] [blame] | 5426 | FASTBOOT_INFO_VERSION = 1 |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5427 | |
| 5428 | INSTALLED_FASTBOOT_INFO_TARGET := $(PRODUCT_OUT)/fastboot-info.txt |
| 5429 | |
| 5430 | $(INSTALLED_FASTBOOT_INFO_TARGET): |
| 5431 | rm -f $@ |
| 5432 | $(call pretty,"Target fastboot-info.txt: $@") |
| 5433 | $(hide) echo "# fastboot-info for $(TARGET_PRODUCT)" >> $@ |
| 5434 | $(hide) echo "version $(FASTBOOT_INFO_VERSION)" >> $@ |
| 5435 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 5436 | $(hide) echo "flash boot" >> $@ |
| 5437 | endif |
| 5438 | ifneq ($(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 5439 | $(hide) echo "flash init_boot" >> $@ |
| 5440 | endif |
| 5441 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 5442 | $(hide) echo "flash dtbo" >> $@ |
| 5443 | endif |
Daniel Zheng | 8ad23cf | 2023-06-12 09:57:54 -0700 | [diff] [blame] | 5444 | ifneq ($(INSTALLED_DTIMAGE_TARGET),) |
| 5445 | $(hide) echo "flash dts dt.img" >> $@ |
| 5446 | endif |
Daniel Zheng | 7d85d4f | 2023-05-30 13:37:57 -0700 | [diff] [blame] | 5447 | ifneq ($(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) |
| 5448 | $(hide) echo "flash vendor_kernel_boot" >> $@ |
| 5449 | endif |
Daniel Zheng | 0d1b969 | 2023-06-22 14:52:59 -0700 | [diff] [blame] | 5450 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 5451 | $(hide) echo "flash recovery" >> $@ |
| 5452 | endif |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5453 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
| 5454 | $(hide) echo "flash pvmfw" >> $@ |
| 5455 | endif |
Daniel Zheng | f9c4bd3 | 2023-07-05 12:20:57 -0700 | [diff] [blame] | 5456 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 5457 | $(hide) echo "flash vendor_boot" >> $@ |
| 5458 | endif |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5459 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 5460 | ifeq ($(BUILDING_VBMETA_IMAGE),true) |
| 5461 | $(hide) echo "flash --apply-vbmeta vbmeta" >> $@ |
| 5462 | endif |
| 5463 | ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) |
Daniel Zheng | 9456228 | 2023-06-08 11:13:50 -0700 | [diff] [blame] | 5464 | $(hide) echo "flash vbmeta_system" >> $@ |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5465 | endif |
| 5466 | ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) |
| 5467 | $(hide) echo "flash --apply-vbmeta vbmeta_vendor" >> $@ |
| 5468 | endif |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5469 | ifneq (,$(strip $(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS))) |
Daniel Zheng | 2b7ddbd | 2023-05-05 13:57:49 -0700 | [diff] [blame] | 5470 | $(hide) $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS), \ |
Daniel Zheng | 9456228 | 2023-06-08 11:13:50 -0700 | [diff] [blame] | 5471 | echo "flash vbmeta_$(partition)" >> $@;) |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5472 | endif |
| 5473 | endif # BOARD_AVB_ENABLE |
| 5474 | $(hide) echo "reboot fastboot" >> $@ |
| 5475 | $(hide) echo "update-super" >> $@ |
Daniel Zheng | 2b7ddbd | 2023-05-05 13:57:49 -0700 | [diff] [blame] | 5476 | $(hide) $(foreach partition,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5477 | echo "flash $(partition)" >> $@;) |
| 5478 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 5479 | $(hide) echo "flash --slot-other system system_other.img" >> $@ |
| 5480 | endif |
| 5481 | ifdef BUILDING_CACHE_IMAGE |
| 5482 | $(hide) echo "if-wipe erase cache" >> $@ |
| 5483 | endif |
| 5484 | $(hide) echo "if-wipe erase userdata" >> $@ |
| 5485 | ifeq ($(BOARD_USES_METADATA_PARTITION),true) |
| 5486 | $(hide) echo "if-wipe erase metadata" >> $@ |
| 5487 | endif |
| 5488 | |
| 5489 | # ----------------------------------------------------------------- |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5490 | # misc_info.txt |
| 5491 | |
| 5492 | INSTALLED_MISC_INFO_TARGET := $(PRODUCT_OUT)/misc_info.txt |
| 5493 | |
| 5494 | ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),) |
| 5495 | # default to common dir for device vendor |
| 5496 | tool_extensions := $(TARGET_DEVICE_DIR)/../common |
| 5497 | else |
| 5498 | tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) |
| 5499 | endif |
| 5500 | .KATI_READONLY := tool_extensions |
| 5501 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 5502 | # $1: boot image file name |
| 5503 | define misc_boot_size |
| 5504 | $(subst .img,_size,$(1))=$(BOARD_KERNEL$(call to-upper,$(subst boot,,$(subst .img,,$(1))))_BOOTIMAGE_PARTITION_SIZE) |
| 5505 | endef |
| 5506 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5507 | $(INSTALLED_MISC_INFO_TARGET): |
| 5508 | rm -f $@ |
| 5509 | $(call pretty,"Target misc_info.txt: $@") |
| 5510 | $(hide) echo "recovery_api_version=$(RECOVERY_API_VERSION)" >> $@ |
| 5511 | $(hide) echo "fstab_version=$(RECOVERY_FSTAB_VERSION)" >> $@ |
| 5512 | ifdef BOARD_FLASH_BLOCK_SIZE |
| 5513 | $(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $@ |
| 5514 | endif |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 5515 | ifneq ($(strip $(BOARD_BOOTIMAGE_PARTITION_SIZE))$(strip $(BOARD_KERNEL_BINARIES)),) |
| 5516 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),\ |
| 5517 | echo "$(call misc_boot_size,$(notdir $(b)))" >> $@;) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5518 | endif |
| 5519 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 5520 | $(hide) echo "no_boot=true" >> $@ |
Steve Muckle | 9793cf6 | 2020-04-08 18:27:00 -0700 | [diff] [blame] | 5521 | else |
| 5522 | echo "boot_images=$(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(notdir $(b)))" >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5523 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5524 | ifneq ($(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 5525 | $(hide) echo "init_boot=true" >> $@ |
| 5526 | $(hide) echo "init_boot_size=$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)" >> $@ |
| 5527 | endif |
J. Avila | 98cd4cc | 2020-06-10 20:09:10 +0000 | [diff] [blame] | 5528 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 5529 | echo "lz4_ramdisks=true" >> $@ |
| 5530 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5531 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 5532 | echo "vendor_boot=true" >> $@ |
| 5533 | echo "vendor_boot_size=$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 5534 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5535 | ifneq ($(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) |
| 5536 | echo "vendor_kernel_boot=true" >> $@ |
| 5537 | echo "vendor_kernel_boot_size=$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 5538 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5539 | ifeq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 5540 | $(hide) echo "no_recovery=true" >> $@ |
| 5541 | endif |
| 5542 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
| 5543 | $(hide) echo "include_recovery_dtbo=true" >> $@ |
| 5544 | endif |
| 5545 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 5546 | $(hide) echo "include_recovery_acpio=true" >> $@ |
| 5547 | endif |
| 5548 | ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE |
| 5549 | $(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $@ |
| 5550 | endif |
| 5551 | ifdef TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS |
| 5552 | @# TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS can be empty to indicate that nothing but defaults should be used. |
| 5553 | $(hide) echo "recovery_mount_options=$(TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 5554 | else |
| 5555 | $(hide) echo "recovery_mount_options=$(DEFAULT_TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 5556 | endif |
| 5557 | $(hide) echo "tool_extensions=$(tool_extensions)" >> $@ |
| 5558 | $(hide) echo "default_system_dev_certificate=$(DEFAULT_SYSTEM_DEV_CERTIFICATE)" >> $@ |
Jacky Liu | beb0b69 | 2021-12-29 16:29:05 +0800 | [diff] [blame] | 5559 | ifdef PRODUCT_EXTRA_OTA_KEYS |
| 5560 | $(hide) echo "extra_ota_keys=$(PRODUCT_EXTRA_OTA_KEYS)" >> $@ |
| 5561 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5562 | ifdef PRODUCT_EXTRA_RECOVERY_KEYS |
| 5563 | $(hide) echo "extra_recovery_keys=$(PRODUCT_EXTRA_RECOVERY_KEYS)" >> $@ |
| 5564 | endif |
| 5565 | $(hide) echo 'mkbootimg_args=$(BOARD_MKBOOTIMG_ARGS)' >> $@ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 5566 | $(hide) echo 'recovery_mkbootimg_args=$(BOARD_RECOVERY_MKBOOTIMG_ARGS)' >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5567 | $(hide) echo 'mkbootimg_version_args=$(INTERNAL_MKBOOTIMG_VERSION_ARGS)' >> $@ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5568 | $(hide) echo 'mkbootimg_init_args=$(BOARD_MKBOOTIMG_INIT_ARGS)' >> $@ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 5569 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 5570 | $(hide) echo 'gki_signing_key_path=$(BOARD_GKI_SIGNING_KEY_PATH)' >> $@ |
| 5571 | $(hide) echo 'gki_signing_algorithm=$(BOARD_GKI_SIGNING_ALGORITHM)' >> $@ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 5572 | $(hide) echo 'gki_signing_signature_args=$(BOARD_GKI_SIGNING_SIGNATURE_ARGS)' >> $@ |
| 5573 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5574 | $(hide) echo "multistage_support=1" >> $@ |
| 5575 | $(hide) echo "blockimgdiff_versions=3,4" >> $@ |
| 5576 | ifeq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 5577 | $(hide) echo "build_generic_ota_package=true" >> $@ |
| 5578 | endif |
| 5579 | ifneq ($(OEM_THUMBPRINT_PROPERTIES),) |
| 5580 | # OTA scripts are only interested in fingerprint related properties |
| 5581 | $(hide) echo "oem_fingerprint_properties=$(OEM_THUMBPRINT_PROPERTIES)" >> $@ |
| 5582 | endif |
| 5583 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
| 5584 | # We need to create userdata.img with real data because the instrumented libraries are in userdata.img. |
| 5585 | $(hide) echo "userdata_img_with_data=true" >> $@ |
| 5586 | endif |
| 5587 | ifeq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
| 5588 | $(hide) echo "full_recovery_image=true" >> $@ |
| 5589 | endif |
Bill Peckham | e868aec | 2019-09-17 17:06:47 -0700 | [diff] [blame] | 5590 | ifdef BOARD_USES_VENDORIMAGE |
| 5591 | $(hide) echo "board_uses_vendorimage=true" >> $@ |
| 5592 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5593 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 8218225 | 2020-11-13 11:28:17 +0800 | [diff] [blame] | 5594 | ifeq ($(BUILDING_VBMETA_IMAGE),true) |
| 5595 | $(hide) echo "avb_building_vbmeta_image=true" >> $@ |
| 5596 | endif # BUILDING_VBMETA_IMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5597 | $(hide) echo "avb_enable=true" >> $@ |
| 5598 | $(hide) echo "avb_vbmeta_key_path=$(BOARD_AVB_KEY_PATH)" >> $@ |
| 5599 | $(hide) echo "avb_vbmeta_algorithm=$(BOARD_AVB_ALGORITHM)" >> $@ |
| 5600 | $(hide) echo "avb_vbmeta_args=$(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS)" >> $@ |
| 5601 | $(hide) echo "avb_boot_add_hash_footer_args=$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5602 | ifdef BOARD_AVB_BOOT_KEY_PATH |
| 5603 | $(hide) echo "avb_boot_key_path=$(BOARD_AVB_BOOT_KEY_PATH)" >> $@ |
| 5604 | $(hide) echo "avb_boot_algorithm=$(BOARD_AVB_BOOT_ALGORITHM)" >> $@ |
| 5605 | $(hide) echo "avb_boot_rollback_index_location=$(BOARD_AVB_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5606 | endif # BOARD_AVB_BOOT_KEY_PATH |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 5607 | $(hide) echo "avb_init_boot_add_hash_footer_args=$(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5608 | ifdef BOARD_AVB_INIT_BOOT_KEY_PATH |
| 5609 | $(hide) echo "avb_init_boot_key_path=$(BOARD_AVB_INIT_BOOT_KEY_PATH)" >> $@ |
| 5610 | $(hide) echo "avb_init_boot_algorithm=$(BOARD_AVB_INIT_BOOT_ALGORITHM)" >> $@ |
| 5611 | $(hide) echo "avb_init_boot_rollback_index_location=$(BOARD_AVB_INIT_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5612 | endif # BOARD_AVB_INIT_BOOT_KEY_PATH |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5613 | echo "avb_vendor_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5614 | ifdef BOARD_AVB_VENDOR_BOOT_KEY_PATH |
| 5615 | echo "avb_vendor_boot_key_path=$(BOARD_AVB_VENDOR_BOOT_KEY_PATH)" >> $@ |
| 5616 | echo "avb_vendor_boot_algorithm=$(BOARD_AVB_VENDOR_BOOT_ALGORITHM)" >> $@ |
| 5617 | echo "avb_vendor_boot_rollback_index_location=$(BOARD_AVB_VENDOR_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5618 | endif # BOARD_AVB_VENDOR_BOOT_KEY_PATH |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5619 | echo "avb_vendor_kernel_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5620 | ifdef BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH |
| 5621 | echo "avb_vendor_kernel_boot_key_path=$(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH)" >> $@ |
| 5622 | echo "avb_vendor_kernel_boot_algorithm=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ALGORITHM)" >> $@ |
| 5623 | echo "avb_vendor_kernel_boot_rollback_index_location=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5624 | endif # BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5625 | $(hide) echo "avb_recovery_add_hash_footer_args=$(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5626 | ifdef BOARD_AVB_RECOVERY_KEY_PATH |
| 5627 | $(hide) echo "avb_recovery_key_path=$(BOARD_AVB_RECOVERY_KEY_PATH)" >> $@ |
| 5628 | $(hide) echo "avb_recovery_algorithm=$(BOARD_AVB_RECOVERY_ALGORITHM)" >> $@ |
| 5629 | $(hide) echo "avb_recovery_rollback_index_location=$(BOARD_AVB_RECOVERY_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5630 | endif # BOARD_AVB_RECOVERY_KEY_PATH |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5631 | ifneq (,$(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST))) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 5632 | $(hide) echo "custom_images_partition_list=$(filter-out $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), $(BOARD_CUSTOMIMAGES_PARTITION_LIST))" >> $@ |
| 5633 | $(hide) $(foreach partition,$(filter-out $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), $(BOARD_CUSTOMIMAGES_PARTITION_LIST)), \ |
| 5634 | echo "$(partition)_image_list=$(foreach image,$(BOARD_$(call to-upper,$(partition))_IMAGE_LIST),$(notdir $(image)))" >> $@;) |
| 5635 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
| 5636 | ifneq (,$(strip $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST))) |
| 5637 | $(hide) echo "avb_custom_images_partition_list=$(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST)" >> $@ |
| 5638 | $(hide) $(foreach partition,$(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5639 | echo "avb_$(partition)_key_path=$(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH)" >> $@; \ |
| 5640 | echo "avb_$(partition)_algorithm=$(BOARD_AVB_$(call to-upper,$(partition))_ALGORITHM)" >> $@; \ |
| 5641 | echo "avb_$(partition)_add_hashtree_footer_args=$(BOARD_AVB_$(call to-upper,$(partition))_ADD_HASHTREE_FOOTER_ARGS)" >> $@; \ |
| 5642 | echo "avb_$(partition)_rollback_index_location=$(BOARD_AVB_$(call to-upper,$(partition))_ROLLBACK_INDEX_LOCATION)" >> $@; \ |
| 5643 | echo "avb_$(partition)_partition_size=$(BOARD_AVB_$(call to-upper,$(partition))_PARTITION_SIZE)" >> $@; \ |
| 5644 | echo "avb_$(partition)_image_list=$(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),$(notdir $(image)))" >> $@;) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 5645 | endif # BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5646 | ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) |
| 5647 | $(hide) echo "avb_vbmeta_system=$(BOARD_AVB_VBMETA_SYSTEM)" >> $@ |
| 5648 | $(hide) echo "avb_vbmeta_system_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 5649 | $(hide) echo "avb_vbmeta_system_key_path=$(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH)" >> $@ |
| 5650 | $(hide) echo "avb_vbmeta_system_algorithm=$(BOARD_AVB_VBMETA_SYSTEM_ALGORITHM)" >> $@ |
| 5651 | $(hide) echo "avb_vbmeta_system_rollback_index_location=$(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5652 | endif # BOARD_AVB_VBMETA_SYSTEM |
| 5653 | ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) |
| 5654 | $(hide) echo "avb_vbmeta_vendor=$(BOARD_AVB_VBMETA_VENDOR)" >> $@ |
Bowgo Tsai | c85a201 | 2022-06-07 11:36:35 +0800 | [diff] [blame] | 5655 | $(hide) echo "avb_vbmeta_vendor_args=$(BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS)" >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5656 | $(hide) echo "avb_vbmeta_vendor_key_path=$(BOARD_AVB_VBMETA_VENDOR_KEY_PATH)" >> $@ |
| 5657 | $(hide) echo "avb_vbmeta_vendor_algorithm=$(BOARD_AVB_VBMETA_VENDOR_ALGORITHM)" >> $@ |
| 5658 | $(hide) echo "avb_vbmeta_vendor_rollback_index_location=$(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5659 | endif # BOARD_AVB_VBMETA_VENDOR_KEY_PATH |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 5660 | ifneq (,$(strip $(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS))) |
| 5661 | $(hide) echo "avb_custom_vbmeta_images_partition_list=$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)" >> $@ |
| 5662 | $(hide) $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),\ |
| 5663 | echo "avb_vbmeta_$(partition)=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition)))" >> $@ ;\ |
| 5664 | echo "avb_vbmeta_$(partition)_args=$(BOARD_AVB_MAKE_VBMETA_$(call to-upper,$(partition))_IMAGE_ARGS)" >> $@ ;\ |
| 5665 | echo "avb_vbmeta_$(partition)_key_path=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_KEY_PATH)" >> $@ ;\ |
| 5666 | echo "avb_vbmeta_$(partition)_algorithm=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_ALGORITHM)" >> $@ ;\ |
| 5667 | echo "avb_vbmeta_$(partition)_rollback_index_location=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_ROLLBACK_INDEX_LOCATION)" >> $@ ;) |
| 5668 | endif # BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5669 | endif # BOARD_AVB_ENABLE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5670 | $(call generate-userimage-prop-dictionary, $@) |
| 5671 | ifeq ($(AB_OTA_UPDATER),true) |
| 5672 | @# Include the build type in META/misc_info.txt so the server can easily differentiate production builds. |
| 5673 | $(hide) echo "build_type=$(TARGET_BUILD_VARIANT)" >> $@ |
| 5674 | $(hide) echo "ab_update=true" >> $@ |
| 5675 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5676 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
| 5677 | $(hide) echo "allow_non_ab=true" >> $@ |
| 5678 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5679 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 5680 | $(hide) echo "has_dtbo=true" >> $@ |
| 5681 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 5682 | $(hide) echo "dtbo_size=$(BOARD_DTBOIMG_PARTITION_SIZE)" >> $@ |
| 5683 | $(hide) echo "avb_dtbo_add_hash_footer_args=$(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5684 | ifdef BOARD_AVB_DTBO_KEY_PATH |
| 5685 | $(hide) echo "avb_dtbo_key_path=$(BOARD_AVB_DTBO_KEY_PATH)" >> $@ |
| 5686 | $(hide) echo "avb_dtbo_algorithm=$(BOARD_AVB_DTBO_ALGORITHM)" >> $@ |
| 5687 | $(hide) echo "avb_dtbo_rollback_index_location=$(BOARD_AVB_DTBO_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5688 | endif # BOARD_AVB_DTBO_KEY_PATH |
| 5689 | endif # BOARD_AVB_ENABLE |
| 5690 | endif # BOARD_PREBUILT_DTBOIMAGE |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 5691 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5692 | $(hide) echo "has_pvmfw=true" >> $@ |
| 5693 | ifeq ($(BOARD_AVB_ENABLE),true) |
Pierre-Clément Tosi | 592a3ca | 2021-10-04 11:34:11 +0200 | [diff] [blame] | 5694 | $(hide) echo "pvmfw_size=$(BOARD_PVMFWIMAGE_PARTITION_SIZE)" >> $@ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5695 | $(hide) echo "avb_pvmfw_add_hash_footer_args=$(BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5696 | ifdef BOARD_AVB_PVMFW_KEY_PATH |
| 5697 | $(hide) echo "avb_pvmfw_key_path=$(BOARD_AVB_PVMFW_KEY_PATH)" >> $@ |
| 5698 | $(hide) echo "avb_pvmfw_algorithm=$(BOARD_AVB_PVMFW_ALGORITHM)" >> $@ |
| 5699 | $(hide) echo "avb_pvmfw_rollback_index_location=$(BOARD_AVB_PVMFW_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5700 | endif # BOARD_AVB_PVMFW_KEY_PATH |
| 5701 | endif # BOARD_AVB_ENABLE |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 5702 | endif # BOARD_USES_PVMFWIMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5703 | $(call dump-dynamic-partitions-info,$@) |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5704 | @# VINTF checks |
| 5705 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 5706 | $(hide) echo "vintf_enforce=true" >> $@ |
| 5707 | endif |
| 5708 | ifdef ODM_MANIFEST_SKUS |
| 5709 | $(hide) echo "vintf_odm_manifest_skus=$(ODM_MANIFEST_SKUS)" >> $@ |
| 5710 | endif |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5711 | ifdef ODM_MANIFEST_FILES |
| 5712 | $(hide) echo "vintf_include_empty_odm_sku=true" >> $@ |
| 5713 | endif |
| 5714 | ifdef DEVICE_MANIFEST_SKUS |
| 5715 | $(hide) echo "vintf_vendor_manifest_skus=$(DEVICE_MANIFEST_SKUS)" >> $@ |
| 5716 | endif |
| 5717 | ifdef DEVICE_MANIFEST_FILE |
| 5718 | $(hide) echo "vintf_include_empty_vendor_sku=true" >> $@ |
| 5719 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5720 | ifeq ($(BOARD_BOOTLOADER_IN_UPDATE_PACKAGE),true) |
| 5721 | $(hide) echo "bootloader_in_update_package=true" >> $@ |
| 5722 | endif |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 5723 | ifeq ($(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE),true) |
| 5724 | $(hide) echo "exclude_kernel_from_recovery_image=true" >> $@ |
| 5725 | endif |
Kelvin Zhang | 5a65f69 | 2020-11-03 16:40:18 -0500 | [diff] [blame] | 5726 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
| 5727 | $(hide) echo "partial_ota_update_partitions_list=$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)" >> $@ |
| 5728 | endif |
Jose Galmes | 9c8f6eb | 2021-07-21 09:34:08 -0700 | [diff] [blame] | 5729 | ifeq ($(BUILDING_WITH_VSDK),true) |
| 5730 | $(hide) echo "building_with_vsdk=true" >> $@ |
| 5731 | endif |
| 5732 | ifeq ($(TARGET_FLATTEN_APEX),false) |
| 5733 | $(hide) echo "target_flatten_apex=false" >> $@ |
| 5734 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5735 | |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5736 | $(call declare-0p-target,$(INSTALLED_FASTBOOT_INFO_TARGET)) |
| 5737 | |
| 5738 | .PHONY: fastboot_info |
| 5739 | fastboot_info: $(INSTALLED_FASTBOOT_INFO_TARGET) |
| 5740 | |
Daniel Zheng | eea63fa | 2023-05-08 12:11:56 -0700 | [diff] [blame] | 5741 | droidcore-unbundled: $(INSTALLED_FASTBOOT_INFO_TARGET) |
| 5742 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 5743 | $(call declare-0p-target,$(INSTALLED_MISC_INFO_TARGET)) |
| 5744 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5745 | .PHONY: misc_info |
| 5746 | misc_info: $(INSTALLED_MISC_INFO_TARGET) |
| 5747 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5748 | droidcore-unbundled: $(INSTALLED_MISC_INFO_TARGET) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5749 | |
| 5750 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5751 | # A zip of the directories that map to the target filesystem. |
| 5752 | # This zip can be used to create an OTA package or filesystem image |
| 5753 | # as a post-build step. |
| 5754 | # |
| 5755 | name := $(TARGET_PRODUCT) |
| 5756 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5757 | name := $(name)_debug |
| 5758 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 5759 | name := $(name)-target_files |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5760 | |
| 5761 | intermediates := $(call intermediates-dir-for,PACKAGING,target_files) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5762 | BUILT_TARGET_FILES_DIR := $(intermediates)/$(name).zip.list |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5763 | BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5764 | $(BUILT_TARGET_FILES_PACKAGE): zip_root := $(intermediates)/$(name) |
| 5765 | $(BUILT_TARGET_FILES_DIR): zip_root := $(intermediates)/$(name) |
| 5766 | $(BUILT_TARGET_FILES_DIR): intermediates := $(intermediates) |
| 5767 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5768 | |
| 5769 | # $(1): Directory to copy |
| 5770 | # $(2): Location to copy it to |
Jooyung Han | 8d72515 | 2023-07-25 11:25:11 +0900 | [diff] [blame] | 5771 | # The "ls -A" is to skip if $(1) is empty. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5772 | define package_files-copy-root |
| 5773 | if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \ |
| 5774 | mkdir -p $(2) && \ |
Jooyung Han | 8d72515 | 2023-07-25 11:25:11 +0900 | [diff] [blame] | 5775 | $(ACP) -rd $(strip $(1))/. $(strip $(2))/; \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5776 | fi |
| 5777 | endef |
| 5778 | |
Tao Bao | a04fca3 | 2015-11-30 12:22:24 -0800 | [diff] [blame] | 5779 | built_ota_tools := |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 5780 | |
| 5781 | # We can't build static executables when SANITIZE_TARGET=address |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 5782 | ifeq (,$(filter address, $(SANITIZE_TARGET))) |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 5783 | built_ota_tools += \ |
Elliott Hughes | 9b824d5 | 2020-04-17 15:46:55 -0700 | [diff] [blame] | 5784 | $(call intermediates-dir-for,EXECUTABLES,updater)/updater |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 5785 | endif |
| 5786 | |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5787 | $(BUILT_TARGET_FILES_DIR): PRIVATE_OTA_TOOLS := $(built_ota_tools) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5788 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5789 | tool_extension := $(wildcard $(tool_extensions)/releasetools.py) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5790 | $(BUILT_TARGET_FILES_DIR): PRIVATE_TOOL_EXTENSION := $(tool_extension) |
Doug Zongker | c18736b | 2009-09-30 09:20:32 -0700 | [diff] [blame] | 5791 | |
HÃ¥kan Kvist | 8cabc71 | 2022-05-02 07:43:34 +0200 | [diff] [blame] | 5792 | updater_dep := |
Sen Jiang | 4438fd9 | 2016-03-07 16:51:01 -0800 | [diff] [blame] | 5793 | ifeq ($(AB_OTA_UPDATER),true) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 5794 | updater_dep += system/update_engine/update_engine.conf |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5795 | $(call declare-1p-target,system/update_engine/update_engine.conf,system/update_engine) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 5796 | updater_dep += external/zucchini/version_info.h |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5797 | $(call declare-license-metadata,external/zucchini/version_info.h,legacy_notice,notice,external/zucchini/LICENSE,external/zucchini) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 5798 | updater_dep += $(HOST_OUT_SHARED_LIBRARIES)/liblz4.so |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5799 | endif |
| 5800 | |
| 5801 | # Build OTA tools if non-A/B is allowed |
| 5802 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 5803 | updater_dep += $(built_ota_tools) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5804 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5805 | |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5806 | $(BUILT_TARGET_FILES_DIR): $(updater_dep) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5807 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5808 | # If we are using recovery as boot, output recovery files to BOOT/. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 5809 | # If we are moving recovery resources to vendor_boot, output recovery files to VENDOR_BOOT/. |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5810 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5811 | $(BUILT_TARGET_FILES_DIR): PRIVATE_RECOVERY_OUT := BOOT |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 5812 | else ifeq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5813 | $(BUILT_TARGET_FILES_DIR): PRIVATE_RECOVERY_OUT := VENDOR_BOOT |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5814 | else |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5815 | $(BUILT_TARGET_FILES_DIR): PRIVATE_RECOVERY_OUT := RECOVERY |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5816 | endif |
| 5817 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5818 | ifeq ($(AB_OTA_UPDATER),true) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5819 | ifdef OSRELEASED_DIRECTORY |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5820 | $(BUILT_TARGET_FILES_DIR): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id |
| 5821 | $(BUILT_TARGET_FILES_DIR): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version |
| 5822 | $(BUILT_TARGET_FILES_DIR): $(TARGET_OUT_ETC)/$(OSRELEASED_DIRECTORY)/system_version |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5823 | endif |
Tao Bao | a835f38 | 2019-07-18 15:55:30 -0700 | [diff] [blame] | 5824 | |
| 5825 | # Not checking in board_config.mk, since AB_OTA_PARTITIONS may be updated in Android.mk (e.g. to |
| 5826 | # additionally include radio or bootloader partitions). |
| 5827 | ifeq ($(AB_OTA_PARTITIONS),) |
| 5828 | $(error AB_OTA_PARTITIONS must be defined when using AB_OTA_UPDATER) |
| 5829 | endif |
| 5830 | endif |
| 5831 | |
| 5832 | ifneq ($(AB_OTA_PARTITIONS),) |
| 5833 | ifneq ($(AB_OTA_UPDATER),true) |
| 5834 | $(error AB_OTA_UPDATER must be true when defining AB_OTA_PARTITIONS) |
| 5835 | endif |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5836 | endif |
| 5837 | |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5838 | # Run fs_config while creating the target files package |
| 5839 | # $1: root directory |
| 5840 | # $2: add prefix |
| 5841 | define fs_config |
Luis Hector Chavez | 440da2d | 2018-02-07 09:49:52 -0800 | [diff] [blame] | 5842 | (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] | 5843 | endef |
| 5844 | |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 5845 | define filter-out-missing-vendor |
| 5846 | $(if $(INSTALLED_VENDORIMAGE_TARGET),$(1),$(filter-out vendor,$(1))) |
| 5847 | endef |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5848 | define filter-out-missing-vendor_dlkm |
| 5849 | $(if $(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(1),$(filter-out vendor_dlkm,$(1))) |
| 5850 | endef |
| 5851 | define filter-out-missing-odm |
| 5852 | $(if $(INSTALLED_ODMIMAGE_TARGET),$(1),$(filter-out odm,$(1))) |
| 5853 | endef |
| 5854 | define filter-out-missing-odm_dlkm |
| 5855 | $(if $(INSTALLED_ODM_DLKMIMAGE_TARGET),$(1),$(filter-out odm_dlkm,$(1))) |
| 5856 | endef |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5857 | define filter-out-missing-system_dlkm |
| 5858 | $(if $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(1),$(filter-out system_dlkm,$(1))) |
| 5859 | endef |
| 5860 | # Filter out vendor,vendor_dlkm,odm,odm_dlkm,system_dlkm from the list for AOSP targets. |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5861 | # $(1): list |
| 5862 | define filter-out-missing-partitions |
| 5863 | $(call filter-out-missing-vendor,\ |
| 5864 | $(call filter-out-missing-vendor_dlkm,\ |
| 5865 | $(call filter-out-missing-odm,\ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5866 | $(call filter-out-missing-odm_dlkm,\ |
| 5867 | $(call filter-out-missing-system_dlkm,$(1)))))) |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5868 | endef |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 5869 | |
| 5870 | # Information related to dynamic partitions and virtual A/B. This information |
| 5871 | # is needed for building the super image (see dump-super-image-info) and |
| 5872 | # building OTA packages. |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5873 | # $(1): file |
| 5874 | define dump-dynamic-partitions-info |
| 5875 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)), \ |
| 5876 | echo "use_dynamic_partitions=true" >> $(1)) |
| 5877 | $(if $(filter true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)), \ |
| 5878 | echo "dynamic_partition_retrofit=true" >> $(1)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 5879 | echo "lpmake=$(notdir $(LPMAKE))" >> $(1) |
| 5880 | $(if $(filter true,$(PRODUCT_BUILD_SUPER_PARTITION)), $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 5881 | echo "build_super_partition=true" >> $(1))) |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 5882 | $(if $(BUILDING_SUPER_EMPTY_IMAGE), \ |
| 5883 | echo "build_super_empty_partition=true" >> $(1)) |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 5884 | $(if $(filter true,$(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE)), \ |
| 5885 | echo "build_retrofit_dynamic_partitions_ota_package=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5886 | echo "super_metadata_device=$(BOARD_SUPER_PARTITION_METADATA_DEVICE)" >> $(1) |
| 5887 | $(if $(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 5888 | echo "super_block_devices=$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)" >> $(1)) |
| 5889 | $(foreach device,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 5890 | echo "super_$(device)_device_size=$(BOARD_SUPER_PARTITION_$(call to-upper,$(device))_DEVICE_SIZE)" >> $(1);) |
| 5891 | $(if $(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5892 | echo "dynamic_partition_list=$(call filter-out-missing-partitions,$(BOARD_SUPER_PARTITION_PARTITION_LIST))" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5893 | $(if $(BOARD_SUPER_PARTITION_GROUPS), |
| 5894 | echo "super_partition_groups=$(BOARD_SUPER_PARTITION_GROUPS)" >> $(1)) |
| 5895 | $(foreach group,$(BOARD_SUPER_PARTITION_GROUPS), \ |
| 5896 | echo "super_$(group)_group_size=$(BOARD_$(call to-upper,$(group))_SIZE)" >> $(1); \ |
| 5897 | $(if $(BOARD_$(call to-upper,$(group))_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5898 | echo "super_$(group)_partition_list=$(call filter-out-missing-partitions,$(BOARD_$(call to-upper,$(group))_PARTITION_LIST))" >> $(1);)) |
Yifan Hong | cb35bd9 | 2019-04-02 16:29:59 -0700 | [diff] [blame] | 5899 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)), \ |
| 5900 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 5901 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)), \ |
| 5902 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5903 | $(if $(filter true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)), \ |
| 5904 | echo "super_image_in_update_package=true" >> $(1)) |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5905 | $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 5906 | echo "super_partition_size=$(BOARD_SUPER_PARTITION_SIZE)" >> $(1)) |
| 5907 | $(if $(BOARD_SUPER_PARTITION_ALIGNMENT), \ |
| 5908 | echo "super_partition_alignment=$(BOARD_SUPER_PARTITION_ALIGNMENT)" >> $(1)) |
| 5909 | $(if $(BOARD_SUPER_PARTITION_WARN_LIMIT), \ |
| 5910 | echo "super_partition_warn_limit=$(BOARD_SUPER_PARTITION_WARN_LIMIT)" >> $(1)) |
| 5911 | $(if $(BOARD_SUPER_PARTITION_ERROR_LIMIT), \ |
| 5912 | echo "super_partition_error_limit=$(BOARD_SUPER_PARTITION_ERROR_LIMIT)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 5913 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA)), \ |
| 5914 | echo "virtual_ab=true" >> $(1)) |
Kelvin Zhang | 239a79a | 2021-01-15 13:47:52 -0500 | [diff] [blame] | 5915 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_COMPRESSION)), \ |
| 5916 | echo "virtual_ab_compression=true" >> $(1)) |
Kelvin Zhang | fa91e98 | 2022-02-09 11:19:16 -0800 | [diff] [blame] | 5917 | # This value controls the compression algorithm used for VABC |
| 5918 | # valid options are defined in system/core/fs_mgr/libsnapshot/cow_writer.cpp |
| 5919 | # e.g. "none", "gz", "brotli" |
| 5920 | $(if $(PRODUCT_VIRTUAL_AB_COMPRESSION_METHOD), \ |
| 5921 | echo "virtual_ab_compression_method=$(PRODUCT_VIRTUAL_AB_COMPRESSION_METHOD)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 5922 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA_RETROFIT)), \ |
| 5923 | echo "virtual_ab_retrofit=true" >> $(1)) |
Daniel Zheng | 025099c | 2023-05-02 13:50:27 -0700 | [diff] [blame] | 5924 | $(if $(PRODUCT_VIRTUAL_AB_COW_VERSION), \ |
| 5925 | echo "virtual_ab_cow_version=$(PRODUCT_VIRTUAL_AB_COW_VERSION)" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5926 | endef |
| 5927 | |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 5928 | # Copy an image file to a directory and generate a block list map file from the image, |
| 5929 | # only if the map_file_generator supports the file system. |
| 5930 | # Otherwise, skip generating map files as well as copying images. The image will be |
| 5931 | # generated from the $(ADD_IMG_TO_TARGET_FILES) to generate the map file with it. |
Justin Yun | cff95e2 | 2023-05-26 11:26:43 +0900 | [diff] [blame] | 5932 | # $(1): path of the image file |
| 5933 | # $(2): target out directory |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 5934 | # $(3): image name to generate a map file. skip generating map file if empty |
Justin Yun | cff95e2 | 2023-05-26 11:26:43 +0900 | [diff] [blame] | 5935 | define copy-image-and-generate-map |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 5936 | $(if $(COPY_IMAGES_FOR_TARGET_FILES_ZIP), \ |
| 5937 | $(eval _supported_fs_for_map_file_generator := erofs ext%) \ |
| 5938 | $(eval _img := $(call to-upper,$(3))) \ |
| 5939 | $(if $(3),$(eval _map_fs_type := $(BOARD_$(_img)IMAGE_FILE_SYSTEM_TYPE)),\ |
| 5940 | $(eval _no_map_file := "true")) \ |
| 5941 | $(if $(filter $(_supported_fs_for_map_file_generator),$(_map_fs_type))$(_no_map_file),\ |
| 5942 | mkdir -p $(2); \ |
| 5943 | cp $(1) $(2); \ |
| 5944 | $(if $(3),$(HOST_OUT_EXECUTABLES)/map_file_generator $(1) $(2)/$(3).map)) \ |
| 5945 | $(eval _img :=) \ |
| 5946 | $(eval _map_fs_type :=) \ |
| 5947 | $(eval _no_map_file :=) \ |
| 5948 | ) |
Justin Yun | cff95e2 | 2023-05-26 11:26:43 +0900 | [diff] [blame] | 5949 | endef |
| 5950 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 5951 | # By conditionally including the dependency of the target files package on the |
| 5952 | # full system image deps, we speed up builds that do not build the system |
| 5953 | # image. |
| 5954 | ifdef BUILDING_SYSTEM_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5955 | $(BUILT_TARGET_FILES_DIR): $(FULL_SYSTEMIMAGE_DEPS) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 5956 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 5957 | $(BUILT_TARGET_FILES_DIR): $(BUILT_SYSTEMIMAGE) |
| 5958 | endif |
Yi-Yo Chiang | 9b25841 | 2022-01-04 00:05:11 +0800 | [diff] [blame] | 5959 | else |
| 5960 | # releasetools may need the system build.prop even when building a |
| 5961 | # system-image-less product. |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5962 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_BUILD_PROP_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5963 | endif |
| 5964 | |
| 5965 | ifdef BUILDING_USERDATA_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5966 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_USERDATAIMAGE_FILES) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5967 | endif |
| 5968 | |
| 5969 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5970 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_SYSTEMOTHERIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 5971 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 5972 | $(BUILT_TARGET_FILES_DIR): $(BUILT_SYSTEMOTHERIMAGE_TARGET) |
| 5973 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5974 | endif |
| 5975 | |
| 5976 | ifdef BUILDING_VENDOR_BOOT_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5977 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDOR_RAMDISK_FILES) |
| 5978 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
| 5979 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
Colin Cross | e643120 | 2021-02-24 11:44:55 -0800 | [diff] [blame] | 5980 | # The vendor ramdisk may be built from the recovery ramdisk. |
| 5981 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5982 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
Colin Cross | e643120 | 2021-02-24 11:44:55 -0800 | [diff] [blame] | 5983 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5984 | endif |
| 5985 | |
| 5986 | ifdef BUILDING_RECOVERY_IMAGE |
| 5987 | # TODO(b/30414428): Can't depend on INTERNAL_RECOVERYIMAGE_FILES alone like other |
Colin Cross | e643120 | 2021-02-24 11:44:55 -0800 | [diff] [blame] | 5988 | # BUILT_TARGET_FILES_PACKAGE dependencies because currently there're cp/rsync/rm |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5989 | # commands in build-recoveryimage-target, which would touch the files under |
| 5990 | # TARGET_RECOVERY_OUT and race with packaging target-files.zip. |
| 5991 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5992 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_BOOTIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5993 | else |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5994 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_RECOVERYIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5995 | endif |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 5996 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_RECOVERYIMAGE_FILES) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5997 | endif |
| 5998 | |
| 5999 | # Conditionally depend on the image files if the image is being built so the |
| 6000 | # target-files.zip rule doesn't wait on the image creation rule, or the image |
| 6001 | # if it is coming from a prebuilt. |
| 6002 | |
| 6003 | ifdef BUILDING_VENDOR_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6004 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDORIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6005 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6006 | $(BUILT_TARGET_FILES_DIR): $(BUILT_VENDORIMAGE_TARGET) |
| 6007 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6008 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6009 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_VENDORIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6010 | endif |
| 6011 | |
| 6012 | ifdef BUILDING_PRODUCT_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6013 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_PRODUCTIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6014 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6015 | $(BUILT_TARGET_FILES_DIR): $(BUILT_PRODUCTIMAGE_TARGET) |
| 6016 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6017 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6018 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_PRODUCTIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6019 | endif |
| 6020 | |
| 6021 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6022 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6023 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6024 | $(BUILT_TARGET_FILES_DIR): $(BUILT_SYSTEM_EXTIMAGE_TARGET) |
| 6025 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6026 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6027 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6028 | endif |
| 6029 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6030 | ifneq (,$(BUILDING_BOOT_IMAGE)$(BUILDING_INIT_BOOT_IMAGE)) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6031 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_RAMDISK_FILES) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6032 | endif # BUILDING_BOOT_IMAGE != "" || BUILDING_INIT_BOOT_IMAGE != "" |
| 6033 | |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 6034 | ifneq (,$(INTERNAL_PREBUILT_BOOTIMAGE) $(filter true,$(BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES))) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6035 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_BOOTIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6036 | endif |
| 6037 | |
| 6038 | ifdef BUILDING_ODM_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6039 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_ODMIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6040 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6041 | $(BUILT_TARGET_FILES_DIR): $(BUILT_ODMIMAGE_TARGET) |
| 6042 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6043 | else ifdef BOARD_PREBUILT_ODMIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6044 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_ODMIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6045 | endif |
| 6046 | |
| 6047 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6048 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6049 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6050 | $(BUILT_TARGET_FILES_DIR): $(BUILT_VENDOR_DLKMIMAGE_TARGET) |
| 6051 | endif |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 6052 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6053 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6054 | endif |
| 6055 | |
| 6056 | ifdef BUILDING_ODM_DLKM_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6057 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_ODM_DLKMIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6058 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6059 | $(BUILT_TARGET_FILES_DIR): $(BUILT_ODM_DLKMIMAGE_TARGET) |
| 6060 | endif |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 6061 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6062 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 6063 | endif |
| 6064 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6065 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6066 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6067 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6068 | $(BUILT_TARGET_FILES_DIR): $(BUILT_SYSTEM_DLKMIMAGE_TARGET) |
| 6069 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6070 | else ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6071 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6072 | endif |
| 6073 | |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6074 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6075 | MK_VBMETA_BOOT_KERNEL_CMDLINE_SH := device/generic/goldfish/tools/mk_vbmeta_boot_params.sh |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6076 | $(BUILT_TARGET_FILES_DIR): $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6077 | endif |
| 6078 | |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 6079 | ifdef BOARD_PREBUILT_BOOTLOADER |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6080 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_BOOTLOADER_MODULE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6081 | droidcore-unbundled: $(INSTALLED_BOOTLOADER_MODULE) |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 6082 | endif |
| 6083 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6084 | # Depending on the various images guarantees that the underlying |
| 6085 | # directories are up-to-date. |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6086 | $(BUILT_TARGET_FILES_DIR): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6087 | $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 6088 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6089 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6090 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 6091 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Pierre-Clément Tosi | 03975ed | 2022-10-02 12:11:06 +0100 | [diff] [blame] | 6092 | $(INSTALLED_PVMFW_BINARY_TARGET) \ |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 6093 | $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 6094 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6095 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 6096 | $(INSTALLED_KERNEL_TARGET) \ |
Enrico Granata | b582e0f | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 6097 | $(INSTALLED_RAMDISK_TARGET) \ |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 6098 | $(INSTALLED_DTBIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6099 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
Kelvin Zhang | decee4a | 2023-05-19 12:33:06 -0700 | [diff] [blame] | 6100 | $(BUILT_RAMDISK_16K_TARGET) \ |
| 6101 | $(BUILT_KERNEL_16K_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6102 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 6103 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 6104 | $(BOARD_RECOVERY_ACPIO) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6105 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 6106 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 6107 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6108 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6109 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6110 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6111 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6112 | $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6113 | $(LPMAKE) \ |
| 6114 | $(SELINUX_FC) \ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6115 | $(INSTALLED_MISC_INFO_TARGET) \ |
Daniel Zheng | c1ffd4c | 2023-05-09 13:35:33 -0700 | [diff] [blame] | 6116 | $(INSTALLED_FASTBOOT_INFO_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6117 | $(APKCERTS_FILE) \ |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 6118 | $(SOONG_APEX_KEYS_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6119 | $(SOONG_ZIP) \ |
| 6120 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
Justin Yun | cff95e2 | 2023-05-26 11:26:43 +0900 | [diff] [blame] | 6121 | $(HOST_OUT_EXECUTABLES)/map_file_generator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 6122 | $(ADD_IMG_TO_TARGET_FILES) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 6123 | $(MAKE_RECOVERY_PATCH) \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 6124 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 6125 | $(BUILT_KERNEL_VERSION_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6126 | | $(ACP) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6127 | @echo "Building target files: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 6128 | $(hide) rm -rf $@ $@.list $(zip_root) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6129 | $(hide) mkdir -p $(dir $@) $(zip_root) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 6130 | ifneq (,$(INSTALLED_RECOVERYIMAGE_TARGET)$(filter true,$(BOARD_USES_RECOVERY_AS_BOOT))$(filter true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6131 | @# Components of the recovery image |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 6132 | $(hide) mkdir -p $(zip_root)/$(PRIVATE_RECOVERY_OUT) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 6133 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 6134 | # recovery ramdisk in vendor_boot. |
| 6135 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6136 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6137 | $(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/$(PRIVATE_RECOVERY_OUT)/RAMDISK) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 6138 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6139 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 6140 | ifneq (,$(filter true,$(BOARD_USES_RECOVERY_AS_BOOT))) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 6141 | cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 6142 | else ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 6143 | cp $(firstword $(INSTALLED_KERNEL_TARGET)) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/kernel |
| 6144 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6145 | endif |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 6146 | ifneq (truetrue,$(strip $(BUILDING_VENDOR_BOOT_IMAGE))$(strip $(BOARD_USES_RECOVERY_AS_BOOT))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6147 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6148 | 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] | 6149 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 6150 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 6151 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6152 | cp $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 6153 | else |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6154 | cp $(BOARD_PREBUILT_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 6155 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6156 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 6157 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6158 | cp $(BOARD_RECOVERY_ACPIO) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_acpio |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 6159 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 6160 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6161 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 6162 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 6163 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 6164 | ifdef INTERNAL_KERNEL_CMDLINE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6165 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/cmdline |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 6166 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 6167 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 6168 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6169 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 6170 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 6171 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6172 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 6173 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 6174 | endif # not (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 6175 | 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] | 6176 | @# Components of the boot image |
| 6177 | $(hide) mkdir -p $(zip_root)/BOOT |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 6178 | $(hide) mkdir -p $(zip_root)/ROOT |
| 6179 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6180 | $(TARGET_ROOT_OUT),$(zip_root)/ROOT) |
Tom Cherry | 3871f0f | 2018-11-06 14:23:44 -0800 | [diff] [blame] | 6181 | @# If we are using recovery as boot, this is already done when processing recovery. |
| 6182 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6183 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6184 | $(TARGET_RAMDISK_OUT),$(zip_root)/BOOT/RAMDISK) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6185 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 6186 | $(hide) cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6187 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 6188 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 6189 | echo "$(GENERIC_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 6190 | else ifndef INSTALLED_VENDOR_BOOTIMAGE_TARGET # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 6191 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6192 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6193 | cp $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6194 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 6195 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6196 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/BOOT/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 6197 | endif |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 6198 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6199 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 6200 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 6201 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6202 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 6203 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 6204 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6205 | endif # BOARD_USES_RECOVERY_AS_BOOT not true |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 6206 | $(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\ |
| 6207 | mkdir -p $(zip_root)/RADIO; \ |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6208 | cp $(t) $(zip_root)/RADIO/$(notdir $(t));) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6209 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 6210 | mkdir -p $(zip_root)/VENDOR_BOOT |
| 6211 | $(call package_files-copy-root, \ |
| 6212 | $(TARGET_VENDOR_RAMDISK_OUT),$(zip_root)/VENDOR_BOOT/RAMDISK) |
| 6213 | ifdef INSTALLED_DTBIMAGE_TARGET |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 6214 | ifneq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6215 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_BOOT/dtb |
| 6216 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 6217 | endif # end of INSTALLED_DTBIMAGE_TARGET |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 6218 | ifdef INTERNAL_VENDOR_BOOTCONFIG_TARGET |
| 6219 | cp $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) $(zip_root)/VENDOR_BOOT/vendor_bootconfig |
| 6220 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6221 | ifdef BOARD_KERNEL_BASE |
| 6222 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/VENDOR_BOOT/base |
| 6223 | endif |
| 6224 | ifdef BOARD_KERNEL_PAGESIZE |
| 6225 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_BOOT/pagesize |
| 6226 | endif |
| 6227 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/VENDOR_BOOT/vendor_cmdline |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 6228 | ifdef INTERNAL_VENDOR_RAMDISK_FRAGMENTS |
| 6229 | echo "$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)" > "$(zip_root)/VENDOR_BOOT/vendor_ramdisk_fragments" |
| 6230 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 6231 | mkdir -p $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment); \ |
| 6232 | echo "$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)" > "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/mkbootimg_args"; \ |
| 6233 | $(eval prebuilt_ramdisk := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 6234 | $(if $(prebuilt_ramdisk), \ |
| 6235 | cp "$(prebuilt_ramdisk)" "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/prebuilt_ramdisk";, \ |
| 6236 | $(call package_files-copy-root, \ |
| 6237 | $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR), \ |
| 6238 | $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/RAMDISK); \ |
| 6239 | )) |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 6240 | endif # INTERNAL_VENDOR_RAMDISK_FRAGMENTS != "" |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6241 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 6242 | ifdef INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET |
| 6243 | mkdir -p $(zip_root)/VENDOR_KERNEL_BOOT |
| 6244 | $(call package_files-copy-root, \ |
| 6245 | $(TARGET_VENDOR_KERNEL_RAMDISK_OUT),$(zip_root)/VENDOR_KERNEL_BOOT/RAMDISK) |
| 6246 | ifdef INSTALLED_DTBIMAGE_TARGET |
| 6247 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_KERNEL_BOOT/dtb |
| 6248 | endif |
| 6249 | ifdef BOARD_KERNEL_PAGESIZE |
| 6250 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_KERNEL_BOOT/pagesize |
| 6251 | endif |
| 6252 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6253 | ifdef BUILDING_SYSTEM_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6254 | @# Contents of the system image |
| 6255 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6256 | $(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM) |
Yi-Yo Chiang | 9b25841 | 2022-01-04 00:05:11 +0800 | [diff] [blame] | 6257 | else ifdef INSTALLED_BUILD_PROP_TARGET |
| 6258 | @# Copy the system build.prop even if not building a system image |
| 6259 | @# because add_img_to_target_files may need it to build other partition |
| 6260 | @# images. |
| 6261 | $(hide) mkdir -p "$(zip_root)/SYSTEM" |
| 6262 | $(hide) cp "$(INSTALLED_BUILD_PROP_TARGET)" "$(patsubst $(TARGET_OUT)/%,$(zip_root)/SYSTEM/%,$(INSTALLED_BUILD_PROP_TARGET))" |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6263 | endif |
| 6264 | ifdef BUILDING_USERDATA_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6265 | @# Contents of the data image |
| 6266 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6267 | $(TARGET_OUT_DATA),$(zip_root)/DATA) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6268 | endif |
| 6269 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 6270 | @# Contents of the vendor image |
| 6271 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6272 | $(TARGET_OUT_VENDOR),$(zip_root)/VENDOR) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 6273 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6274 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6275 | @# Contents of the product image |
| 6276 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6277 | $(TARGET_OUT_PRODUCT),$(zip_root)/PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6278 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6279 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 6280 | @# Contents of the system_ext image |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6281 | $(hide) $(call package_files-copy-root, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6282 | $(TARGET_OUT_SYSTEM_EXT),$(zip_root)/SYSTEM_EXT) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6283 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6284 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6285 | @# Contents of the odm image |
| 6286 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6287 | $(TARGET_OUT_ODM),$(zip_root)/ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6288 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6289 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 6290 | @# Contents of the vendor_dlkm image |
| 6291 | $(hide) $(call package_files-copy-root, \ |
| 6292 | $(TARGET_OUT_VENDOR_DLKM),$(zip_root)/VENDOR_DLKM) |
| 6293 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6294 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 6295 | @# Contents of the odm_dlkm image |
| 6296 | $(hide) $(call package_files-copy-root, \ |
| 6297 | $(TARGET_OUT_ODM_DLKM),$(zip_root)/ODM_DLKM) |
| 6298 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6299 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 6300 | @# Contents of the system_dlkm image |
| 6301 | $(hide) $(call package_files-copy-root, \ |
| 6302 | $(TARGET_OUT_SYSTEM_DLKM),$(zip_root)/SYSTEM_DLKM) |
| 6303 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6304 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 6305 | @# Contents of the system_other image |
| 6306 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6307 | $(TARGET_OUT_SYSTEM_OTHER),$(zip_root)/SYSTEM_OTHER) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 6308 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6309 | @# Extra contents of the OTA package |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6310 | $(hide) mkdir -p $(zip_root)/OTA |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6311 | $(hide) cp $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/ |
Enrico Granata | b582e0f | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 6312 | ifdef BUILDING_RAMDISK_IMAGE |
| 6313 | ifeq (true,$(BOARD_IMG_USE_RAMDISK)) |
| 6314 | @# Contents of the ramdisk image |
| 6315 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6316 | $(hide) cp $(INSTALLED_RAMDISK_TARGET) $(zip_root)/IMAGES/ |
| 6317 | endif |
| 6318 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 6319 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 6320 | ifneq ($(built_ota_tools),) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6321 | $(hide) mkdir -p $(zip_root)/OTA/bin |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6322 | $(hide) cp $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/ |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6323 | endif |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 6324 | endif |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6325 | @# 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] | 6326 | @# build them. |
| 6327 | $(hide) mkdir -p $(zip_root)/META |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6328 | $(hide) cp $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 6329 | $(hide) cp $(SOONG_APEX_KEYS_FILE) $(zip_root)/META/apexkeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6330 | ifneq ($(tool_extension),) |
| 6331 | $(hide) cp $(PRIVATE_TOOL_EXTENSION) $(zip_root)/META/ |
| 6332 | endif |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 6333 | $(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6334 | $(hide) cp $(SELINUX_FC) $(zip_root)/META/file_contexts.bin |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6335 | $(hide) cp $(INSTALLED_MISC_INFO_TARGET) $(zip_root)/META/misc_info.txt |
Daniel Zheng | c1ffd4c | 2023-05-09 13:35:33 -0700 | [diff] [blame] | 6336 | ifneq ($(INSTALLED_FASTBOOT_INFO_TARGET),) |
| 6337 | $(hide) cp $(INSTALLED_FASTBOOT_INFO_TARGET) $(zip_root)/META/fastboot-info.txt |
| 6338 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6339 | ifneq ($(PRODUCT_SYSTEM_BASE_FS_PATH),) |
| 6340 | $(hide) cp $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 6341 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 6342 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6343 | ifneq ($(PRODUCT_VENDOR_BASE_FS_PATH),) |
| 6344 | $(hide) cp $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 6345 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 6346 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6347 | ifneq ($(PRODUCT_PRODUCT_BASE_FS_PATH),) |
| 6348 | $(hide) cp $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 6349 | $(zip_root)/META/$(notdir $(PRODUCT_PRODUCT_BASE_FS_PATH)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6350 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6351 | ifneq ($(PRODUCT_SYSTEM_EXT_BASE_FS_PATH),) |
| 6352 | $(hide) cp $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 6353 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6354 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6355 | ifneq ($(PRODUCT_ODM_BASE_FS_PATH),) |
| 6356 | $(hide) cp $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 6357 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_BASE_FS_PATH)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6358 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6359 | ifneq ($(PRODUCT_VENDOR_DLKM_BASE_FS_PATH),) |
| 6360 | $(hide) cp $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 6361 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH)) |
| 6362 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6363 | ifneq ($(PRODUCT_ODM_DLKM_BASE_FS_PATH),) |
| 6364 | $(hide) cp $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 6365 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_DLKM_BASE_FS_PATH)) |
| 6366 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6367 | ifneq ($(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH),) |
| 6368 | $(hide) cp $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
| 6369 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH)) |
| 6370 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 6371 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 6372 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 6373 | $(hide) PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 6374 | $(MAKE_RECOVERY_PATCH) $(zip_root) $(zip_root) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 6375 | endif |
Bill Peckham | c0f413f | 2019-11-07 11:27:02 -0800 | [diff] [blame] | 6376 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 6377 | ifeq ($(AB_OTA_UPDATER),true) |
| 6378 | @# 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] | 6379 | $(hide) cp $(TOPDIR)system/update_engine/update_engine.conf $(zip_root)/META/update_engine_config.txt |
Kelvin Zhang | c06f062 | 2021-11-30 12:38:39 -0800 | [diff] [blame] | 6380 | $(hide) cp $(TOPDIR)external/zucchini/version_info.h $(zip_root)/META/zucchini_config.txt |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 6381 | $(hide) cp $(HOST_OUT_SHARED_LIBRARIES)/liblz4.so $(zip_root)/META/liblz4.so |
Cole Faust | 9009999 | 2022-02-17 11:35:27 -0800 | [diff] [blame] | 6382 | $(hide) for part in $(sort $(AB_OTA_PARTITIONS)); do \ |
Alex Deymo | 8925d33 | 2015-10-01 17:38:09 -0700 | [diff] [blame] | 6383 | echo "$${part}" >> $(zip_root)/META/ab_partitions.txt; \ |
| 6384 | done |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 6385 | $(hide) for conf in $(strip $(AB_OTA_POSTINSTALL_CONFIG)); do \ |
Sen Jiang | 8f22e2a | 2015-11-12 13:53:25 -0800 | [diff] [blame] | 6386 | echo "$${conf}" >> $(zip_root)/META/postinstall_config.txt; \ |
| 6387 | done |
Bertrand SIMONNET | 4af7259 | 2015-10-08 15:32:40 -0700 | [diff] [blame] | 6388 | ifdef OSRELEASED_DIRECTORY |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6389 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id $(zip_root)/META/product_id.txt |
| 6390 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version $(zip_root)/META/product_version.txt |
| 6391 | $(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] | 6392 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 6393 | endif |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 6394 | ifeq ($(BREAKPAD_GENERATE_SYMBOLS),true) |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 6395 | @# If breakpad symbols have been generated, add them to the zip. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 6396 | $(hide) cp -R $(TARGET_OUT_BREAKPAD) $(zip_root)/BREAKPAD |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 6397 | endif |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 6398 | ifdef BOARD_PREBUILT_VENDORIMAGE |
| 6399 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6400 | $(hide) cp $(INSTALLED_VENDORIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6401 | endif |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6402 | ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 6403 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6404 | $(hide) cp $(INSTALLED_PRODUCTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6405 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6406 | ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6407 | $(hide) mkdir -p $(zip_root)/IMAGES |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6408 | $(hide) cp $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6409 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6410 | ifdef BOARD_PREBUILT_INIT_BOOT_IMAGE |
Devin Moore | cda41f0 | 2022-01-05 00:08:39 +0000 | [diff] [blame] | 6411 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6412 | $(hide) cp $(INSTALLED_INIT_BOOT_IMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6413 | endif |
Ramji Jiyani | 034e777 | 2022-01-24 04:00:29 +0000 | [diff] [blame] | 6414 | |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 6415 | ifndef BOARD_PREBUILT_BOOTIMAGE |
Yi-Yo Chiang | 8193900 | 2022-01-08 23:46:40 +0800 | [diff] [blame] | 6416 | ifneq (,$(strip $(INTERNAL_PREBUILT_BOOTIMAGE) $(filter true,$(BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES)))) |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 6417 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 6418 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6419 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 6420 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 6421 | endif # INTERNAL_PREBUILT_BOOTIMAGE != "" || BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES == true |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 6422 | else # BOARD_PREBUILT_BOOTIMAGE is defined |
| 6423 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6424 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
| 6425 | endif # BOARD_PREBUILT_BOOTIMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6426 | ifdef BOARD_PREBUILT_ODMIMAGE |
| 6427 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6428 | $(hide) cp $(INSTALLED_ODMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6429 | endif |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 6430 | ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6431 | $(hide) mkdir -p $(zip_root)/IMAGES |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 6432 | $(hide) cp $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6433 | endif |
| 6434 | ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 6435 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6436 | $(hide) cp $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6437 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6438 | ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
| 6439 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6440 | $(hide) cp $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6441 | endif |
Yueyao Zhu | 889ee5e | 2017-05-12 17:50:46 -0700 | [diff] [blame] | 6442 | ifdef BOARD_PREBUILT_DTBOIMAGE |
Tao Bao | c633ed0 | 2017-05-30 21:46:33 -0700 | [diff] [blame] | 6443 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6444 | $(hide) cp $(INSTALLED_DTBOIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 6445 | endif # BOARD_PREBUILT_DTBOIMAGE |
Kelvin Zhang | decee4a | 2023-05-19 12:33:06 -0700 | [diff] [blame] | 6446 | ifdef BUILT_KERNEL_16K_TARGET |
| 6447 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6448 | $(hide) cp $(BUILT_KERNEL_16K_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
| 6449 | endif # BUILT_KERNEL_16K_TARGET |
| 6450 | ifdef BUILT_RAMDISK_16K_TARGET |
| 6451 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6452 | $(hide) cp $(BUILT_RAMDISK_16K_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
| 6453 | endif # BUILT_RAMDISK_16K_TARGET |
Pierre-Clément Tosi | 4bbb8dd | 2022-01-31 20:25:52 +0100 | [diff] [blame] | 6454 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 6455 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6456 | $(hide) cp $(INSTALLED_PVMFWIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 6457 | $(hide) cp $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Pierre-Clément Tosi | 03975ed | 2022-10-02 12:11:06 +0100 | [diff] [blame] | 6458 | $(hide) mkdir -p $(zip_root)/PVMFW |
| 6459 | $(hide) cp $(INSTALLED_PVMFW_BINARY_TARGET) $(zip_root)/PVMFW/ |
Pierre-Clément Tosi | d8248af | 2021-10-07 12:18:17 +0200 | [diff] [blame] | 6460 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 6461 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 6462 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6463 | $(hide) cp $(INSTALLED_BOOTLOADER_MODULE) $(zip_root)/IMAGES/ |
| 6464 | endif |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 6465 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 6466 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6467 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 6468 | $(foreach image,$(BOARD_$(call to-upper,$(partition))_IMAGE_LIST),cp $(image) $(zip_root)/PREBUILT_IMAGES/;)) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 6469 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Tao Bao | 95a95c3 | 2017-06-16 15:30:23 -0700 | [diff] [blame] | 6470 | @# The radio images in BOARD_PACK_RADIOIMAGES will be additionally copied from RADIO/ into |
| 6471 | @# IMAGES/, which then will be added into <product>-img.zip. Such images must be listed in |
| 6472 | @# INSTALLED_RADIOIMAGE_TARGET. |
| 6473 | $(hide) $(foreach part,$(BOARD_PACK_RADIOIMAGES), \ |
| 6474 | echo $(part) >> $(zip_root)/META/pack_radioimages.txt;) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6475 | @# Run fs_config on all the system, vendor, boot ramdisk, |
| 6476 | @# and recovery ramdisk files in the zip, and save the output |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6477 | ifdef BUILDING_SYSTEM_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6478 | $(hide) $(call copy-image-and-generate-map,$(BUILT_SYSTEMIMAGE),$(zip_root)/IMAGES,system) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6479 | $(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] | 6480 | endif |
| 6481 | ifdef BUILDING_VENDOR_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6482 | $(hide) $(call copy-image-and-generate-map,$(BUILT_VENDORIMAGE_TARGET),$(zip_root)/IMAGES,vendor) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6483 | $(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.txt |
| 6484 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6485 | ifdef BUILDING_PRODUCT_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6486 | $(hide) $(call copy-image-and-generate-map,$(BUILT_PRODUCTIMAGE_TARGET),$(zip_root)/IMAGES,product) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6487 | $(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_config.txt |
| 6488 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6489 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6490 | $(hide) $(call copy-image-and-generate-map,$(BUILT_SYSTEM_EXTIMAGE_TARGET),$(zip_root)/IMAGES,system_ext) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6491 | $(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] | 6492 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6493 | ifdef BUILDING_ODM_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6494 | $(hide) $(call copy-image-and-generate-map,$(BUILT_ODMIMAGE_TARGET),$(zip_root)/IMAGES,odm) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6495 | $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt |
| 6496 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6497 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6498 | $(hide)$(call copy-image-and-generate-map,$(BUILT_VENDOR_DLKMIMAGE_TARGET),$(zip_root)/IMAGES,vendor_dlkm) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6499 | $(hide) $(call fs_config,$(zip_root)/VENDOR_DLKM,vendor_dlkm/) > $(zip_root)/META/vendor_dlkm_filesystem_config.txt |
| 6500 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6501 | ifdef BUILDING_ODM_DLKM_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6502 | $(hide) $(call copy-image-and-generate-map,$(BUILT_ODM_DLKMIMAGE_TARGET),$(zip_root)/IMAGES,odm_dlkm) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6503 | $(hide) $(call fs_config,$(zip_root)/ODM_DLKM,odm_dlkm/) > $(zip_root)/META/odm_dlkm_filesystem_config.txt |
| 6504 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6505 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6506 | $(hide) $(call copy-image-and-generate-map,$(BUILT_SYSTEM_DLKMIMAGE_TARGET),$(zip_root)/IMAGES,system_dlkm) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6507 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_DLKM,system_dlkm/) > $(zip_root)/META/system_dlkm_filesystem_config.txt |
| 6508 | endif |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 6509 | @# ROOT always contains the files for the root under normal boot. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6510 | $(hide) $(call fs_config,$(zip_root)/ROOT,) > $(zip_root)/META/root_filesystem_config.txt |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 6511 | @# BOOT/RAMDISK contains the first stage and recovery ramdisk. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6512 | $(hide) $(call fs_config,$(zip_root)/BOOT/RAMDISK,) > $(zip_root)/META/boot_filesystem_config.txt |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6513 | ifdef BUILDING_INIT_BOOT_IMAGE |
| 6514 | $(hide) $(call package_files-copy-root, $(TARGET_RAMDISK_OUT),$(zip_root)/INIT_BOOT/RAMDISK) |
| 6515 | $(hide) $(call fs_config,$(zip_root)/INIT_BOOT/RAMDISK,) > $(zip_root)/META/init_boot_filesystem_config.txt |
Vincent Donnefort | 6e861e9 | 2023-02-17 10:12:57 +0000 | [diff] [blame] | 6516 | $(hide) cp $(RAMDISK_NODE_LIST) $(zip_root)/META/ramdisk_node_list |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6517 | ifdef BOARD_KERNEL_PAGESIZE |
| 6518 | $(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/INIT_BOOT/pagesize |
| 6519 | endif # BOARD_KERNEL_PAGESIZE |
| 6520 | endif # BUILDING_INIT_BOOT_IMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6521 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 6522 | $(call fs_config,$(zip_root)/VENDOR_BOOT/RAMDISK,) > $(zip_root)/META/vendor_boot_filesystem_config.txt |
| 6523 | endif |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6524 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 6525 | $(hide) $(call fs_config,$(zip_root)/RECOVERY/RAMDISK,) > $(zip_root)/META/recovery_filesystem_config.txt |
| 6526 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6527 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Justin Yun | cff95e2 | 2023-05-26 11:26:43 +0900 | [diff] [blame] | 6528 | $(hide) $(call copy-image-and-generate-map,$(BUILT_SYSTEMOTHERIMAGE_TARGET),$(zip_root)/IMAGES) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6529 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_OTHER,system/) > $(zip_root)/META/system_other_filesystem_config.txt |
| 6530 | endif |
Michael Schwartz | 4d9cb56 | 2017-04-04 13:01:18 -0700 | [diff] [blame] | 6531 | @# Metadata for compatibility verification. |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 6532 | ifdef BUILT_KERNEL_CONFIGS_FILE |
| 6533 | $(hide) cp $(BUILT_KERNEL_CONFIGS_FILE) $(zip_root)/META/kernel_configs.txt |
| 6534 | endif |
| 6535 | ifdef BUILT_KERNEL_VERSION_FILE |
| 6536 | $(hide) cp $(BUILT_KERNEL_VERSION_FILE) $(zip_root)/META/kernel_version.txt |
| 6537 | endif |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 6538 | rm -rf $(zip_root)/META/dynamic_partitions_info.txt |
| 6539 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 6540 | $(call dump-dynamic-partitions-info, $(zip_root)/META/dynamic_partitions_info.txt) |
| 6541 | endif |
Tao Bao | cbd6d49 | 2019-10-07 22:46:02 -0700 | [diff] [blame] | 6542 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
| 6543 | $(ADD_IMG_TO_TARGET_FILES) -a -v -p $(HOST_OUT) $(zip_root) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6544 | ifeq ($(BUILD_QEMU_IMAGES),true) |
| 6545 | $(hide) AVBTOOL=$(AVBTOOL) $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(zip_root)/IMAGES/vbmeta.img \ |
| 6546 | $(zip_root)/IMAGES/system.img $(zip_root)/IMAGES/VerifiedBootParams.textproto |
| 6547 | endif |
Alex Deymo | 92cfd6f | 2016-01-26 18:47:44 -0800 | [diff] [blame] | 6548 | @# Zip everything up, preserving symlinks and placing META/ files first to |
| 6549 | @# help early validation of the .zip file while uploading it. |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6550 | $(hide) find $(zip_root)/META | sort >$@ |
| 6551 | $(hide) find $(zip_root) -path $(zip_root)/META -prune -o -print | sort >>$@ |
| 6552 | |
| 6553 | $(BUILT_TARGET_FILES_PACKAGE): $(BUILT_TARGET_FILES_DIR) |
| 6554 | @echo "Packaging target files: $@" |
Colin Cross | 17e98b7 | 2021-02-03 16:03:55 -0800 | [diff] [blame] | 6555 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(zip_root) -r $@.list |
Doug Zongker | 283e2a1 | 2010-03-15 17:52:32 -0700 | [diff] [blame] | 6556 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 6557 | .PHONY: target-files-package |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6558 | target-files-package: $(BUILT_TARGET_FILES_PACKAGE) |
| 6559 | |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6560 | .PHONY: target-files-dir |
| 6561 | target-files-dir: $(BUILT_TARGET_FILES_DIR) |
| 6562 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6563 | $(call declare-1p-container,$(BUILT_TARGET_FILES_PACKAGE),) |
| 6564 | $(call declare-container-license-deps,$(BUILT_TARGET_FILES_PACKAGE), $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 6565 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 6566 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
| 6567 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
| 6568 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
| 6569 | $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) \ |
| 6570 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
| 6571 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 6572 | $(INSTALLED_KERNEL_TARGET) \ |
| 6573 | $(INSTALLED_RAMDISK_TARGET) \ |
| 6574 | $(INSTALLED_DTBIMAGE_TARGET) \ |
| 6575 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 6576 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
| 6577 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
| 6578 | $(BOARD_RECOVERY_ACPIO) \ |
| 6579 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 6580 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 6581 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 6582 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 6583 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 6584 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 6585 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 6586 | $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
| 6587 | $(LPMAKE) \ |
| 6588 | $(SELINUX_FC) \ |
| 6589 | $(INSTALLED_MISC_INFO_TARGET) \ |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 6590 | $(INSTALLED_FASTBOOT_INFO_TARGET) \ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6591 | $(APKCERTS_FILE) \ |
| 6592 | $(SOONG_APEX_KEYS_FILE) \ |
| 6593 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
Justin Yun | cff95e2 | 2023-05-26 11:26:43 +0900 | [diff] [blame] | 6594 | $(HOST_OUT_EXECUTABLES)/map_file_generator \ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6595 | $(ADD_IMG_TO_TARGET_FILES) \ |
| 6596 | $(MAKE_RECOVERY_PATCH) \ |
| 6597 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 6598 | $(BUILT_KERNEL_VERSION_FILE),$(BUILT_TARGET_FILES_PACKAGE):) |
| 6599 | |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6600 | $(call dist-for-goals-with-filenametag, target-files-package, $(BUILT_TARGET_FILES_PACKAGE)) |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 6601 | |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 6602 | # ----------------------------------------------------------------- |
| 6603 | # NDK Sysroot Package |
| 6604 | NDK_SYSROOT_TARGET := $(PRODUCT_OUT)/ndk_sysroot.tar.bz2 |
Colin Cross | ec65b76 | 2022-10-20 14:03:47 -0700 | [diff] [blame] | 6605 | .PHONY: ndk_sysroot |
| 6606 | ndk_sysroot: $(NDK_SYSROOT_TARGET) |
Dan Willemsen | 14e1026 | 2018-06-17 21:54:21 -0700 | [diff] [blame] | 6607 | $(NDK_SYSROOT_TARGET): $(SOONG_OUT_DIR)/ndk.timestamp |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 6608 | @echo Package NDK sysroot... |
| 6609 | $(hide) tar cjf $@ -C $(SOONG_OUT_DIR) ndk |
| 6610 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 6611 | ifeq ($(HOST_OS),linux) |
Colin Cross | ec65b76 | 2022-10-20 14:03:47 -0700 | [diff] [blame] | 6612 | $(call dist-for-goals,sdk ndk_sysroot,$(NDK_SYSROOT_TARGET)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 6613 | endif |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 6614 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 6615 | ifeq ($(build_ota_package),true) |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 6616 | # ----------------------------------------------------------------- |
| 6617 | # OTA update package |
| 6618 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6619 | # $(1): output file |
| 6620 | # $(2): additional args |
| 6621 | define build-ota-package-target |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6622 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 6623 | $(OTA_FROM_TARGET_FILES) \ |
| 6624 | --verbose \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 6625 | --path $(HOST_OUT) \ |
| 6626 | $(if $(OEM_OTA_CONFIG), --oem_settings $(OEM_OTA_CONFIG)) \ |
| 6627 | $(2) \ |
Kelvin Zhang | 01e67f6 | 2023-05-10 17:03:40 +0000 | [diff] [blame] | 6628 | $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) $(1) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6629 | endef |
| 6630 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6631 | product_name := $(TARGET_PRODUCT) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6632 | ifeq ($(TARGET_BUILD_TYPE),debug) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6633 | product_name := $(product_name)_debug |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6634 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6635 | name := $(product_name)-ota |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6636 | |
| 6637 | INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 6638 | INTERNAL_OTA_METADATA := $(PRODUCT_OUT)/ota_metadata |
| 6639 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6640 | $(call declare-0p-target,$(INTERNAL_OTA_METADATA)) |
| 6641 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6642 | $(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 6643 | $(INTERNAL_OTA_PACKAGE_TARGET): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_OTA_METADATA) |
Kelvin Zhang | 01e67f6 | 2023-05-10 17:03:40 +0000 | [diff] [blame] | 6644 | $(INTERNAL_OTA_PACKAGE_TARGET): $(BUILT_TARGET_FILES_DIR) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6645 | @echo "Package OTA: $@" |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 6646 | $(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] | 6647 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6648 | $(call declare-1p-container,$(INTERNAL_OTA_PACKAGE_TARGET),) |
| 6649 | $(call declare-container-license-deps,$(INTERNAL_OTA_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES),$(PRODUCT_OUT)/:/) |
| 6650 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6651 | .PHONY: otapackage |
| 6652 | otapackage: $(INTERNAL_OTA_PACKAGE_TARGET) |
| 6653 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 6654 | ifeq ($(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE),true) |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6655 | name := $(product_name)-ota-retrofit |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6656 | |
| 6657 | INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6658 | $(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] | 6659 | $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET): \ |
| 6660 | $(BUILT_TARGET_FILES_PACKAGE) \ |
Yifan Hong | 5c1b199 | 2020-10-08 09:36:29 -0700 | [diff] [blame] | 6661 | $(OTA_FROM_TARGET_FILES) \ |
| 6662 | $(INTERNAL_OTATOOLS_FILES) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6663 | @echo "Package OTA (retrofit dynamic partitions): $@" |
| 6664 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --retrofit_dynamic_partitions) |
| 6665 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6666 | $(call declare-1p-container,$(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET),) |
| 6667 | $(call declare-container-license-deps,$(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES),$(PRODUCT_OUT)/:/) |
| 6668 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6669 | .PHONY: otardppackage |
| 6670 | |
| 6671 | otapackage otardppackage: $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET) |
| 6672 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 6673 | endif # BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6674 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6675 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6676 | name := $(product_name)-partial-ota |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6677 | |
| 6678 | INTERNAL_OTA_PARTIAL_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 6679 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
Kelvin Zhang | 01e67f6 | 2023-05-10 17:03:40 +0000 | [diff] [blame] | 6680 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): $(BUILT_TARGET_FILES_DIR) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6681 | @echo "Package partial OTA: $@" |
| 6682 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --partial "$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)") |
| 6683 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6684 | $(call declare-1p-container,$(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET),) |
| 6685 | $(call declare-container-license-deps,$(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES),$(PRODUCT_OUT)/:/) |
| 6686 | |
| 6687 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6688 | .PHONY: partialotapackage |
| 6689 | partialotapackage: $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET) |
| 6690 | |
| 6691 | endif # BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST |
| 6692 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 6693 | endif # build_ota_package |
Ying Wang | f8824af | 2014-06-03 14:07:27 -0700 | [diff] [blame] | 6694 | |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 6695 | # ----------------------------------------------------------------- |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 6696 | # A zip of the appcompat directory containing logs |
| 6697 | APPCOMPAT_ZIP := $(PRODUCT_OUT)/appcompat.zip |
| 6698 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 6699 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 6700 | $(APPCOMPAT_ZIP): $(FULL_SYSTEMIMAGE_DEPS) \ |
| 6701 | $(INTERNAL_RAMDISK_FILES) \ |
| 6702 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 6703 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 6704 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 6705 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 6706 | endif |
| 6707 | $(APPCOMPAT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,appcompat)/filelist |
| 6708 | $(APPCOMPAT_ZIP): $(SOONG_ZIP) |
| 6709 | @echo "appcompat logs: $@" |
| 6710 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 6711 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/appcompat $(dir $(PRIVATE_LIST_FILE)) |
| 6712 | $(hide) find $(PRODUCT_OUT)/appcompat | sort >$(PRIVATE_LIST_FILE) |
| 6713 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/appcompat -l $(PRIVATE_LIST_FILE) |
| 6714 | |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 6715 | # The mac build doesn't build dex2oat, so create the zip file only if the build OS is linux. |
| 6716 | ifeq ($(BUILD_OS),linux) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame] | 6717 | ifneq ($(DEX2OAT),) |
Saeid Farivar Asanjan | 0b4f8d5 | 2022-08-08 20:23:45 +0000 | [diff] [blame] | 6718 | dexpreopt_tools_deps := $(DEXPREOPT_GEN_DEPS) $(DEXPREOPT_GEN) |
Eric Miao | 1d0fd2c | 2021-11-08 19:34:50 +0000 | [diff] [blame] | 6719 | dexpreopt_tools_deps += $(HOST_OUT_EXECUTABLES)/dexdump |
| 6720 | dexpreopt_tools_deps += $(HOST_OUT_EXECUTABLES)/oatdump |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 6721 | DEXPREOPT_TOOLS_ZIP := $(PRODUCT_OUT)/dexpreopt_tools.zip |
| 6722 | $(DEXPREOPT_TOOLS_ZIP): $(dexpreopt_tools_deps) |
| 6723 | $(DEXPREOPT_TOOLS_ZIP): PRIVATE_DEXPREOPT_TOOLS_DEPS := $(dexpreopt_tools_deps) |
| 6724 | $(DEXPREOPT_TOOLS_ZIP): $(SOONG_ZIP) |
| 6725 | $(hide) mkdir -p $(dir $@) |
| 6726 | $(hide) $(SOONG_ZIP) -d -o $@ -j $(addprefix -f ,$(PRIVATE_DEXPREOPT_TOOLS_DEPS)) -f $$(realpath $(DEX2OAT)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6727 | $(call declare-1p-target,$(DEXPREOPT_TOOLS_ZIP),) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame] | 6728 | endif # DEX2OAT is set |
| 6729 | endif # BUILD_OS == linux |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 6730 | |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6731 | DEXPREOPT_CONFIG_ZIP := $(PRODUCT_OUT)/dexpreopt_config.zip |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6732 | |
| 6733 | $(DEXPREOPT_CONFIG_ZIP): $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6734 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 6735 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 6736 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 6737 | |
| 6738 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6739 | $(DEXPREOPT_CONFIG_ZIP): $(DEX_PREOPT_CONFIG_FOR_MAKE) \ |
| 6740 | $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) \ |
| 6741 | |
| 6742 | endif |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6743 | |
| 6744 | $(DEXPREOPT_CONFIG_ZIP): $(SOONG_ZIP) |
| 6745 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6746 | |
| 6747 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 6748 | ifneq (,$(DEX_PREOPT_CONFIG_FOR_MAKE)) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6749 | $(hide) cp $(DEX_PREOPT_CONFIG_FOR_MAKE) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 6750 | endif |
| 6751 | ifneq (,$(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE)) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6752 | $(hide) cp $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 6753 | endif |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6754 | endif #!TARGET_BUILD_UNBUNDLED |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6755 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/dexpreopt_config -D $(PRODUCT_OUT)/dexpreopt_config |
| 6756 | |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6757 | .PHONY: dexpreopt_config_zip |
| 6758 | dexpreopt_config_zip: $(DEXPREOPT_CONFIG_ZIP) |
| 6759 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6760 | $(call declare-1p-target,$(DEXPREOPT_CONFIG_ZIP),) |
| 6761 | |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 6762 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6763 | # A zip of the symbols directory. Keep the full paths to make it |
| 6764 | # more obvious where these files came from. |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6765 | # Also produces a textproto containing mappings from elf IDs to symbols |
| 6766 | # filename, which will allow finding the appropriate symbols to deobfuscate |
| 6767 | # a stack trace frame. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6768 | # |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6769 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6770 | name := $(TARGET_PRODUCT) |
| 6771 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6772 | name := $(name)_debug |
| 6773 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6774 | |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6775 | # The path to the zip file containing binaries with symbols. |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6776 | SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name)-symbols.zip |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6777 | # The path to a file containing mappings from elf IDs to filenames. |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6778 | SYMBOLS_MAPPING := $(PRODUCT_OUT)/$(name)-symbols-mapping.textproto |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6779 | .KATI_READONLY := SYMBOLS_ZIP SYMBOLS_MAPPING |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 6780 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 6781 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 6782 | $(SYMBOLS_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Ying Wang | da3b972 | 2014-10-24 11:36:59 -0700 | [diff] [blame] | 6783 | endif |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 6784 | $(SYMBOLS_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,symbols)/filelist |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6785 | $(SYMBOLS_ZIP): PRIVATE_MAPPING_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,elf_symbol_mapping) |
| 6786 | $(SYMBOLS_ZIP): $(SOONG_ZIP) $(SYMBOLS_MAP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6787 | @echo "Package symbols: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 6788 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6789 | $(hide) mkdir -p $(TARGET_OUT_UNSTRIPPED) $(dir $(PRIVATE_LIST_FILE)) $(PRIVATE_MAPPING_PACKAGING_DIR) |
| 6790 | # Find all of the files in the symbols directory and zip them into the symbols zip. |
Jiyong Park | 88e0980 | 2019-03-21 15:19:16 +0900 | [diff] [blame] | 6791 | $(hide) find -L $(TARGET_OUT_UNSTRIPPED) -type f | sort >$(PRIVATE_LIST_FILE) |
Colin Cross | 8d34244 | 2019-05-07 11:47:13 -0700 | [diff] [blame] | 6792 | $(hide) $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(OUT_DIR)/.. -l $(PRIVATE_LIST_FILE) |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6793 | # Find all of the files in the symbols mapping directory and merge them into the symbols mapping textproto. |
| 6794 | $(hide) find -L $(PRIVATE_MAPPING_PACKAGING_DIR) -type f | sort >$(PRIVATE_LIST_FILE) |
| 6795 | $(hide) $(SYMBOLS_MAP) -merge $(SYMBOLS_MAPPING) -ignore_missing_files @$(PRIVATE_LIST_FILE) |
| 6796 | $(SYMBOLS_ZIP): .KATI_IMPLICIT_OUTPUTS := $(SYMBOLS_MAPPING) |
| 6797 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6798 | $(call declare-1p-container,$(SYMBOLS_ZIP),) |
| 6799 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6800 | $(call declare-container-license-deps,$(SYMBOLS_ZIP),$(INTERNAL_ALLIMAGES_FILES) $(updater_dep),$(PRODUCT_OUT)/:/) |
| 6801 | endif |
| 6802 | |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6803 | # ----------------------------------------------------------------- |
| 6804 | # A zip of the coverage directory. |
| 6805 | # |
Oliver Nguyen | e91ab23 | 2019-04-30 15:14:44 -0700 | [diff] [blame] | 6806 | name := gcov-report-files-all |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6807 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6808 | name := $(name)_debug |
| 6809 | endif |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6810 | COVERAGE_ZIP := $(PRODUCT_OUT)/$(name).zip |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 6811 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 6812 | $(COVERAGE_ZIP): $(INTERNAL_ALLIMAGES_FILES) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6813 | endif |
| 6814 | $(COVERAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,coverage)/filelist |
| 6815 | $(COVERAGE_ZIP): $(SOONG_ZIP) |
| 6816 | @echo "Package coverage: $@" |
| 6817 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 6818 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_COVERAGE) $(dir $(PRIVATE_LIST_FILE)) |
| 6819 | $(hide) find $(TARGET_OUT_COVERAGE) | sort >$(PRIVATE_LIST_FILE) |
| 6820 | $(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] | 6821 | |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 6822 | $(call declare-1p-container,$(COVERAGE_ZIP),) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6823 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 6824 | $(call declare-container-license-deps,$(COVERAGE_ZIP),$(INTERNAL_ALLIMAGE_FILES),$(PRODUCT_OUT)/:/) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6825 | endif |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 6826 | |
| 6827 | SYSTEM_NOTICE_DEPS += $(COVERAGE_ZIP) |
| 6828 | |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 6829 | #------------------------------------------------------------------ |
| 6830 | # Export the LLVM profile data tool and dependencies for Clang coverage processing |
| 6831 | # |
| 6832 | ifeq (true,$(CLANG_COVERAGE)) |
| 6833 | LLVM_PROFDATA := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/bin/llvm-profdata |
Pirama Arumuga Nainar | 4e3d633 | 2022-03-08 22:28:33 -0800 | [diff] [blame] | 6834 | LLVM_COV := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/bin/llvm-cov |
Yabin Cui | f1b88bb | 2023-06-13 21:55:38 +0000 | [diff] [blame] | 6835 | LIBCXX := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/lib/x86_64-unknown-linux-gnu/libc++.so |
Pirama Arumuga Nainar | 4e3d633 | 2022-03-08 22:28:33 -0800 | [diff] [blame] | 6836 | # Use llvm-profdata.zip for backwards compatibility with tradefed code. |
| 6837 | LLVM_COVERAGE_TOOLS_ZIP := $(PRODUCT_OUT)/llvm-profdata.zip |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 6838 | |
Pirama Arumuga Nainar | 4e3d633 | 2022-03-08 22:28:33 -0800 | [diff] [blame] | 6839 | $(LLVM_COVERAGE_TOOLS_ZIP): $(SOONG_ZIP) |
| 6840 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION) -f $(LLVM_PROFDATA) -f $(LIBCXX) -f $(LLVM_COV) |
| 6841 | |
| 6842 | $(call dist-for-goals,droidcore-unbundled apps_only,$(LLVM_COVERAGE_TOOLS_ZIP)) |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 6843 | endif |
| 6844 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6845 | # ----------------------------------------------------------------- |
| 6846 | # A zip of the Android Apps. Not keeping full path so that we don't |
| 6847 | # include product names when distributing |
| 6848 | # |
| 6849 | name := $(TARGET_PRODUCT) |
| 6850 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6851 | name := $(name)_debug |
| 6852 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6853 | name := $(name)-apps |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6854 | |
| 6855 | APPS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 6856 | $(APPS_ZIP): $(FULL_SYSTEMIMAGE_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6857 | @echo "Package apps: $@" |
| 6858 | $(hide) rm -rf $@ |
| 6859 | $(hide) mkdir -p $(dir $@) |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 6860 | $(hide) apps_to_zip=`find $(TARGET_OUT_APPS) $(TARGET_OUT_APPS_PRIVILEGED) -mindepth 2 -maxdepth 3 -name "*.apk"`; \ |
| 6861 | if [ -z "$$apps_to_zip" ]; then \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6862 | echo "No apps to zip up. Generating empty apps archive." ; \ |
| 6863 | a=$$(mktemp /tmp/XXXXXXX) && touch $$a && zip $@ $$a && zip -d $@ $$a; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 6864 | else \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6865 | zip -qjX $@ $$apps_to_zip; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 6866 | fi |
Guang Zhu | 0198d6e | 2010-04-23 11:54:37 -0700 | [diff] [blame] | 6867 | |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 6868 | ifeq (true,$(EMMA_INSTRUMENT)) |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 6869 | #------------------------------------------------------------------ |
| 6870 | # An archive of classes for use in generating code-coverage reports |
| 6871 | # These are the uninstrumented versions of any classes that were |
| 6872 | # to be instrumented. |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 6873 | # Any dependencies are set up later in build/make/core/main.mk. |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 6874 | |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 6875 | JACOCO_REPORT_CLASSES_ALL := $(PRODUCT_OUT)/jacoco-report-classes-all.jar |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6876 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco) |
| 6877 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_HOST_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco,HOST) |
| 6878 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_PROGUARD_USAGE_DIR := $(call intermediates-dir-for,PACKAGING,proguard_usage) |
| 6879 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_HOST_PROGUARD_USAGE_DIR := $(call intermediates-dir-for,PACKAGING,proguard_usage,HOST) |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 6880 | $(JACOCO_REPORT_CLASSES_ALL) : |
| 6881 | @echo "Collecting uninstrumented classes" |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6882 | mkdir -p $(PRIVATE_TARGET_JACOCO_DIR) $(PRIVATE_HOST_JACOCO_DIR) $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) $(PRIVATE_HOST_PROGUARD_USAGE_DIR) |
| 6883 | $(SOONG_ZIP) -o $@ -L 0 \ |
| 6884 | -C $(PRIVATE_TARGET_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_JACOCO_DIR) \ |
| 6885 | -C $(PRIVATE_HOST_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_HOST_JACOCO_DIR) \ |
| 6886 | -C $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) \ |
| 6887 | -C $(PRIVATE_HOST_PROGUARD_USAGE_DIR) -P out/target/common/obj -D $(PRIVATE_HOST_PROGUARD_USAGE_DIR) |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 6888 | |
Jiyong Park | 3c87560 | 2021-01-21 12:46:56 +0900 | [diff] [blame] | 6889 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6890 | $(JACOCO_REPORT_CLASSES_ALL): $(INTERNAL_ALLIMAGES_FILES) |
| 6891 | endif |
Yu Liu | affd008 | 2023-08-11 12:59:45 -0700 | [diff] [blame^] | 6892 | |
| 6893 | # This is not ideal, but it is difficult to correctly figure out the actual jacoco report |
| 6894 | # jars we need to add here as dependencies, so we add the device-tests as a dependency when |
| 6895 | # the env variable is set and this should guarantee thaat all the jacoco report jars are ready |
| 6896 | # when we package the final report jar here. |
| 6897 | ifeq ($(JACOCO_PACKAGING_INCLUDE_DEVICE_TESTS),true) |
| 6898 | $(JACOCO_REPORT_CLASSES_ALL): $(COMPATIBILITY.device-tests.FILES) |
| 6899 | endif |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 6900 | endif # EMMA_INSTRUMENT=true |
| 6901 | |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 6902 | |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6903 | #------------------------------------------------------------------ |
| 6904 | # A zip of Proguard obfuscation dictionary files. |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6905 | # Also produces a textproto containing mappings from the hashes of the |
| 6906 | # dictionary contents (which are also stored in the dex files on the |
| 6907 | # devices) to the filename of the proguard dictionary, which will allow |
| 6908 | # finding the appropriate dictionary to deobfuscate a stack trace frame. |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6909 | # |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6910 | |
| 6911 | # The path to the zip file containing proguard dictionaries. |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6912 | PROGUARD_DICT_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict.zip |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6913 | # The path to the zip file containing mappings from dictionary hashes to filenames. |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6914 | PROGUARD_DICT_MAPPING := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict-mapping.textproto |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6915 | .KATI_READONLY := PROGUARD_DICT_ZIP PROGUARD_DICT_MAPPING |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 6916 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 6917 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 6918 | $(PROGUARD_DICT_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 6919 | endif |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6920 | $(PROGUARD_DICT_ZIP): PRIVATE_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,proguard_dictionary) |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6921 | $(PROGUARD_DICT_ZIP): PRIVATE_MAPPING_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,proguard_dictionary_mapping) |
| 6922 | $(PROGUARD_DICT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard_dictionary_filelist)/filelist |
| 6923 | $(PROGUARD_DICT_ZIP): $(SOONG_ZIP) $(SYMBOLS_MAP) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6924 | @echo "Packaging Proguard obfuscation dictionary files." |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6925 | rm -rf $@ $(PRIVATE_LIST_FILE) |
| 6926 | mkdir -p $(PRIVATE_PACKAGING_DIR) $(PRIVATE_MAPPING_PACKAGING_DIR) $(dir $(PRIVATE_LIST_FILE)) |
| 6927 | # Zip all of the files in the proguard dictionary directory. |
| 6928 | $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(PRIVATE_PACKAGING_DIR) -D $(PRIVATE_PACKAGING_DIR) |
| 6929 | # Find all of the files in the proguard dictionary mapping directory and merge them into the mapping textproto. |
| 6930 | # Strip the PRIVATE_PACKAGING_DIR off the filenames to match soong_zip's -C argument. |
| 6931 | $(hide) find -L $(PRIVATE_MAPPING_PACKAGING_DIR) -type f | sort >$(PRIVATE_LIST_FILE) |
| 6932 | $(SYMBOLS_MAP) -merge $(PROGUARD_DICT_MAPPING) -strip_prefix $(PRIVATE_PACKAGING_DIR)/ -ignore_missing_files @$(PRIVATE_LIST_FILE) |
| 6933 | $(PROGUARD_DICT_ZIP): .KATI_IMPLICIT_OUTPUTS := $(PROGUARD_DICT_MAPPING) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6934 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6935 | $(call declare-1p-container,$(PROGUARD_DICT_ZIP),) |
| 6936 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6937 | $(call declare-container-license-deps,$(PROGUARD_DICT_ZIP),$(INTERNAL_ALLIMAGES_FILES) $(updater_dep),$(PRODUCT_OUT)/:/) |
| 6938 | endif |
| 6939 | |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6940 | #------------------------------------------------------------------ |
| 6941 | # A zip of Proguard usage files. |
| 6942 | # |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6943 | PROGUARD_USAGE_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-usage.zip |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6944 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
| 6945 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6946 | $(PROGUARD_USAGE_ZIP): \ |
| 6947 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6948 | $(INSTALLED_RAMDISK_TARGET) \ |
| 6949 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6950 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6951 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 6952 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 6953 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 6954 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 6955 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 6956 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
| 6957 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6958 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6959 | $(updater_dep) |
| 6960 | endif |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6961 | $(PROGUARD_USAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard_usage.zip)/filelist |
| 6962 | $(PROGUARD_USAGE_ZIP): PRIVATE_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,proguard_usage) |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6963 | $(PROGUARD_USAGE_ZIP): $(MERGE_ZIPS) |
| 6964 | @echo "Packaging Proguard usage files." |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6965 | mkdir -p $(dir $@) $(PRIVATE_PACKAGING_DIR) $(dir $(PRIVATE_LIST_FILE)) |
| 6966 | find $(PRIVATE_PACKAGING_DIR) -name proguard_usage.zip > $(PRIVATE_LIST_FILE) |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6967 | $(MERGE_ZIPS) $@ @$(PRIVATE_LIST_FILE) |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 6968 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6969 | $(call declare-1p-container,$(PROGUARD_USAGE_ZIP),) |
| 6970 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6971 | $(call declare-container-license-deps,$(PROGUARD_USAGE_ZIP),$(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6972 | $(INSTALLED_RAMDISK_TARGET) \ |
| 6973 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 6974 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
| 6975 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 6976 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 6977 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 6978 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 6979 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 6980 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
| 6981 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
| 6982 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
| 6983 | $(updater_dep),$(PROGUARD_USAGE_ZIP):/) |
| 6984 | endif |
| 6985 | |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 6986 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 6987 | |
| 6988 | # Dump variables used by build_super_image.py (for building super.img and super_empty.img). |
| 6989 | # $(1): output file |
| 6990 | define dump-super-image-info |
| 6991 | $(call dump-dynamic-partitions-info,$(1)) |
| 6992 | $(if $(filter true,$(AB_OTA_UPDATER)), \ |
| 6993 | echo "ab_update=true" >> $(1)) |
| 6994 | endef |
| 6995 | |
| 6996 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
| 6997 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6998 | # ----------------------------------------------------------------- |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6999 | # super partition image (dist) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 7000 | |
| 7001 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 7002 | |
| 7003 | # BOARD_SUPER_PARTITION_SIZE must be defined to build super image. |
| 7004 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 7005 | |
| 7006 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7007 | |
| 7008 | # For real devices and for dist builds, build super image from target files to an intermediate directory. |
| 7009 | INTERNAL_SUPERIMAGE_DIST_TARGET := $(call intermediates-dir-for,PACKAGING,super.img)/super.img |
| 7010 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): extracted_input_target_files := $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) |
Kelvin Zhang | 01e67f6 | 2023-05-10 17:03:40 +0000 | [diff] [blame] | 7011 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): $(LPMAKE) $(BUILT_TARGET_FILES_DIR) $(BUILD_SUPER_IMAGE) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7012 | $(call pretty,"Target super fs image from target files: $@") |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 7013 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 7014 | $(BUILD_SUPER_IMAGE) -v $(extracted_input_target_files) $@ |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 7015 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7016 | # Skip packing it in dist package because it is in update package. |
| 7017 | ifneq (true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7018 | $(call dist-for-goals,dist_files,$(INTERNAL_SUPERIMAGE_DIST_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7019 | endif |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7020 | |
| 7021 | .PHONY: superimage_dist |
| 7022 | superimage_dist: $(INTERNAL_SUPERIMAGE_DIST_TARGET) |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 7023 | |
| 7024 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7025 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 7026 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 7027 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7028 | # ----------------------------------------------------------------- |
| 7029 | # super partition image for development |
| 7030 | |
| 7031 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 7032 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 7033 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
| 7034 | |
| 7035 | # Build super.img by using $(INSTALLED_*IMAGE_TARGET) to $(1) |
| 7036 | # $(1): built image path |
| 7037 | # $(2): misc_info.txt path; its contents should match expectation of build_super_image.py |
| 7038 | define build-superimage-target |
| 7039 | mkdir -p $(dir $(2)) |
| 7040 | rm -rf $(2) |
| 7041 | $(call dump-super-image-info,$(2)) |
| 7042 | $(foreach p,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 7043 | echo "$(p)_image=$(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)" >> $(2);) |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 7044 | $(if $(BUILDING_SYSTEM_OTHER_IMAGE), $(if $(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)), \ |
| 7045 | echo "system_other_image=$(INSTALLED_SYSTEMOTHERIMAGE_TARGET)" >> $(2);)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7046 | mkdir -p $(dir $(1)) |
| 7047 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 7048 | $(BUILD_SUPER_IMAGE) -v $(2) $(1) |
| 7049 | endef |
| 7050 | |
| 7051 | INSTALLED_SUPERIMAGE_TARGET := $(PRODUCT_OUT)/super.img |
| 7052 | INSTALLED_SUPERIMAGE_DEPENDENCIES := $(LPMAKE) $(BUILD_SUPER_IMAGE) \ |
| 7053 | $(foreach p, $(BOARD_SUPER_PARTITION_PARTITION_LIST), $(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)) |
| 7054 | |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 7055 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 7056 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
| 7057 | INSTALLED_SUPERIMAGE_DEPENDENCIES += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
| 7058 | endif |
| 7059 | endif |
| 7060 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7061 | $(INSTALLED_SUPERIMAGE_TARGET): $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 7062 | $(call pretty,"Target super fs image for debug: $@") |
| 7063 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 7064 | $(call intermediates-dir-for,PACKAGING,superimage_debug)/misc_info.txt) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7065 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7066 | # For devices that uses super image directly, the superimage target points to the file in $(PRODUCT_OUT). |
| 7067 | .PHONY: superimage |
| 7068 | superimage: $(INSTALLED_SUPERIMAGE_TARGET) |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 7069 | |
Peter Collingbourne | 683c493 | 2022-07-06 15:49:20 -0700 | [diff] [blame] | 7070 | # If BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT is set, super.img is built from images in the |
| 7071 | # $(PRODUCT_OUT) directory, and is built to $(PRODUCT_OUT)/super.img. Also, it will |
| 7072 | # be built for non-dist builds. This is useful for devices that uses super.img directly, e.g. |
| 7073 | # virtual devices. |
| 7074 | ifeq (true,$(BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT)) |
| 7075 | droidcore-unbundled: $(INSTALLED_SUPERIMAGE_TARGET) |
| 7076 | |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 7077 | $(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] | 7078 | endif # BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT |
| 7079 | |
| 7080 | # Build $(PRODUCT_OUT)/super.img without dependencies. |
| 7081 | .PHONY: superimage-nodeps supernod |
| 7082 | superimage-nodeps supernod: intermediates := |
| 7083 | superimage-nodeps supernod: | $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 7084 | $(call pretty,"make $(INSTALLED_SUPERIMAGE_TARGET): ignoring dependencies") |
| 7085 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
| 7086 | $(call intermediates-dir-for,PACKAGING,superimage-nodeps)/misc_info.txt) |
| 7087 | |
| 7088 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
| 7089 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 7090 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
| 7091 | |
| 7092 | # ----------------------------------------------------------------- |
| 7093 | # super empty image |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 7094 | ifdef BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 7095 | |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 7096 | INSTALLED_SUPERIMAGE_EMPTY_TARGET := $(PRODUCT_OUT)/super_empty.img |
| 7097 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): intermediates := $(call intermediates-dir-for,PACKAGING,super_empty) |
| 7098 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): $(LPMAKE) $(BUILD_SUPER_IMAGE) |
| 7099 | $(call pretty,"Target empty super fs image: $@") |
| 7100 | mkdir -p $(intermediates) |
| 7101 | rm -rf $(intermediates)/misc_info.txt |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 7102 | $(call dump-super-image-info,$(intermediates)/misc_info.txt) |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 7103 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 7104 | $(BUILD_SUPER_IMAGE) -v $(intermediates)/misc_info.txt $@ |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 7105 | |
| 7106 | $(call dist-for-goals,dist_files,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 7107 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 7108 | $(call declare-0p-target,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 7109 | |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 7110 | endif # BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 7111 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7112 | |
| 7113 | # ----------------------------------------------------------------- |
| 7114 | # The update package |
| 7115 | |
| 7116 | name := $(TARGET_PRODUCT) |
| 7117 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 7118 | name := $(name)_debug |
| 7119 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7120 | name := $(name)-img |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7121 | |
| 7122 | INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 7123 | |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 7124 | $(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES) |
| 7125 | $(call pretty,"Package: $@") |
| 7126 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
| 7127 | $(IMG_FROM_TARGET_FILES) \ |
| 7128 | --additional IMAGES/VerifiedBootParams.textproto:VerifiedBootParams.textproto \ |
| 7129 | $(BUILT_TARGET_FILES_PACKAGE) $@ |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7130 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7131 | $(call declare-1p-container,$(INTERNAL_UPDATE_PACKAGE_TARGET),) |
| 7132 | $(call declare-container-license-deps,$(INTERNAL_UPDATE_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES),$(PRODUCT_OUT)/:/) |
| 7133 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7134 | .PHONY: updatepackage |
| 7135 | updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET) |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7136 | $(call dist-for-goals-with-filenametag,updatepackage,$(INTERNAL_UPDATE_PACKAGE_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7137 | |
| 7138 | |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 7139 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7140 | # dalvik something |
| 7141 | .PHONY: dalvikfiles |
| 7142 | dalvikfiles: $(INTERNAL_DALVIK_MODULES) |
| 7143 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7144 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7145 | MK_QEMU_IMAGE_SH := device/generic/goldfish/tools/mk_qemu_image.sh |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 7146 | MK_COMBINE_QEMU_IMAGE := $(HOST_OUT_EXECUTABLES)/mk_combined_img |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7147 | SGDISK_HOST := $(HOST_OUT_EXECUTABLES)/sgdisk |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 7148 | |
| 7149 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
| 7150 | INSTALLED_QEMU_SYSTEMIMAGE := $(PRODUCT_OUT)/system-qemu.img |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 7151 | INSTALLED_SYSTEM_QEMU_CONFIG := $(PRODUCT_OUT)/system-qemu-config.txt |
| 7152 | $(INSTALLED_SYSTEM_QEMU_CONFIG): $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_VBMETAIMAGE_TARGET) |
| 7153 | @echo "$(PRODUCT_OUT)/vbmeta.img vbmeta 1" > $@ |
| 7154 | @echo "$(INSTALLED_SUPERIMAGE_TARGET) super 2" >> $@ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 7155 | $(INSTALLED_QEMU_SYSTEMIMAGE): $(INSTALLED_VBMETAIMAGE_TARGET) $(MK_COMBINE_QEMU_IMAGE) $(SGDISK_HOST) $(SIMG2IMG) \ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 7156 | $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_SYSTEM_QEMU_CONFIG) |
| 7157 | @echo Create system-qemu.img now |
| 7158 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 7159 | $(MK_COMBINE_QEMU_IMAGE) -i $(INSTALLED_SYSTEM_QEMU_CONFIG) -o $@) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7160 | |
| 7161 | systemimage: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7162 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 7163 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 7164 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7165 | INSTALLED_QEMU_VENDORIMAGE := $(PRODUCT_OUT)/vendor-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 7166 | $(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] | 7167 | @echo Create vendor-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 7168 | (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] | 7169 | |
| 7170 | vendorimage: $(INSTALLED_QEMU_VENDORIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7171 | droidcore-unbundled: $(INSTALLED_QEMU_VENDORIMAGE) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7172 | endif |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 7173 | |
| 7174 | ifdef INSTALLED_RAMDISK_TARGET |
| 7175 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 7176 | ifdef INTERNAL_VENDOR_RAMDISK_TARGET |
| 7177 | INSTALLED_QEMU_RAMDISKIMAGE := $(PRODUCT_OUT)/ramdisk-qemu.img |
| 7178 | $(INSTALLED_QEMU_RAMDISKIMAGE): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_RAMDISK_TARGET) |
| 7179 | @echo Create ramdisk-qemu.img |
| 7180 | (cat $(INSTALLED_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_TARGET) > $(INSTALLED_QEMU_RAMDISKIMAGE)) |
| 7181 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7182 | droidcore-unbundled: $(INSTALLED_QEMU_RAMDISKIMAGE) |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 7183 | endif |
| 7184 | endif |
| 7185 | endif |
| 7186 | |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 7187 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 7188 | INSTALLED_QEMU_PRODUCTIMAGE := $(PRODUCT_OUT)/product-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 7189 | $(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] | 7190 | @echo Create product-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 7191 | (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] | 7192 | |
| 7193 | productimage: $(INSTALLED_QEMU_PRODUCTIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7194 | droidcore-unbundled: $(INSTALLED_QEMU_PRODUCTIMAGE) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 7195 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 7196 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 7197 | INSTALLED_QEMU_SYSTEM_EXTIMAGE := $(PRODUCT_OUT)/system_ext-qemu.img |
| 7198 | $(INSTALLED_QEMU_SYSTEM_EXTIMAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) $(SIMG2IMG) |
| 7199 | @echo Create system_ext-qemu.img |
| 7200 | (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] | 7201 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 7202 | systemextimage: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7203 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 7204 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 7205 | ifdef INSTALLED_ODMIMAGE_TARGET |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 7206 | INSTALLED_QEMU_ODMIMAGE := $(PRODUCT_OUT)/odm-qemu.img |
| 7207 | $(INSTALLED_QEMU_ODMIMAGE): $(INSTALLED_ODMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 7208 | @echo Create odm-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 7209 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODMIMAGE_TARGET)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 7210 | |
| 7211 | odmimage: $(INSTALLED_QEMU_ODMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7212 | droidcore-unbundled: $(INSTALLED_QEMU_ODMIMAGE) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 7213 | endif |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 7214 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 7215 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 7216 | INSTALLED_QEMU_VENDOR_DLKMIMAGE := $(PRODUCT_OUT)/vendor_dlkm-qemu.img |
| 7217 | $(INSTALLED_QEMU_VENDOR_DLKMIMAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 7218 | @echo Create vendor_dlkm-qemu.img |
| 7219 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)) |
| 7220 | |
| 7221 | vendor_dlkmimage: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7222 | droidcore-unbundled: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 7223 | endif |
| 7224 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 7225 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 7226 | INSTALLED_QEMU_ODM_DLKMIMAGE := $(PRODUCT_OUT)/odm_dlkm-qemu.img |
| 7227 | $(INSTALLED_QEMU_ODM_DLKMIMAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 7228 | @echo Create odm_dlkm-qemu.img |
| 7229 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODM_DLKMIMAGE_TARGET)) |
| 7230 | |
| 7231 | odm_dlkmimage: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7232 | droidcore-unbundled: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 7233 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 7234 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 7235 | ifdef INSTALLED_SYSTEM_DLKMIMAGE_TARGET |
| 7236 | INSTALLED_QEMU_SYSTEM_DLKMIMAGE := $(PRODUCT_OUT)/system_dlkm-qemu.img |
| 7237 | $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE): $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 7238 | @echo Create system_dlkm-qemu.img |
| 7239 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET)) |
| 7240 | |
| 7241 | system_dlkmimage: $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE) |
| 7242 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE) |
| 7243 | endif |
| 7244 | |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 7245 | QEMU_VERIFIED_BOOT_PARAMS := $(PRODUCT_OUT)/VerifiedBootParams.textproto |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 7246 | $(QEMU_VERIFIED_BOOT_PARAMS): $(INSTALLED_VBMETAIMAGE_TARGET) $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 7247 | $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(AVBTOOL) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 7248 | @echo Creating $@ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 7249 | (export AVBTOOL=$(AVBTOOL); $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(INSTALLED_VBMETAIMAGE_TARGET) \ |
| 7250 | $(INSTALLED_SYSTEMIMAGE_TARGET) $(QEMU_VERIFIED_BOOT_PARAMS)) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 7251 | |
| 7252 | systemimage: $(QEMU_VERIFIED_BOOT_PARAMS) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7253 | droidcore-unbundled: $(QEMU_VERIFIED_BOOT_PARAMS) |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 7254 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7255 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7256 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7257 | # The emulator package |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 7258 | ifeq ($(BUILD_EMULATOR),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7259 | INTERNAL_EMULATOR_PACKAGE_FILES += \ |
| 7260 | $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7261 | $(INSTALLED_RAMDISK_TARGET) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 7262 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 7263 | $(INSTALLED_USERDATAIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7264 | |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7265 | name := $(TARGET_PRODUCT)-emulator |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7266 | |
| 7267 | INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 7268 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 7269 | $(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7270 | @echo "Package: $@" |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 7271 | $(hide) zip -qjX $@ $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7272 | |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 7273 | endif |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 7274 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7275 | |
| 7276 | # ----------------------------------------------------------------- |
| 7277 | # The SDK |
| 7278 | |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 7279 | ifneq ($(filter sdk,$(MAKECMDGOALS)),) |
| 7280 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7281 | # The SDK includes host-specific components, so it belongs under HOST_OUT. |
Ying Wang | d7af176 | 2014-06-02 16:16:53 -0700 | [diff] [blame] | 7282 | sdk_dir := $(HOST_OUT)/sdk/$(TARGET_PRODUCT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7283 | |
| 7284 | # Build a name that looks like: |
| 7285 | # |
| 7286 | # linux-x86 --> android-sdk_12345_linux-x86 |
| 7287 | # darwin-x86 --> android-sdk_12345_mac-x86 |
| 7288 | # windows-x86 --> android-sdk_12345_windows |
| 7289 | # |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 7290 | ifneq ($(HOST_OS),linux) |
| 7291 | $(error Building the monolithic SDK is only supported on Linux) |
| 7292 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7293 | sdk_name := android-sdk |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 7294 | INTERNAL_SDK_HOST_OS_NAME := linux-$(SDK_HOST_ARCH) |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 7295 | sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7296 | |
| 7297 | sdk_dep_file := $(sdk_dir)/sdk_deps.mk |
| 7298 | |
| 7299 | ATREE_FILES := |
| 7300 | -include $(sdk_dep_file) |
| 7301 | |
| 7302 | # if we don't have a real list, then use "everything" |
| 7303 | ifeq ($(strip $(ATREE_FILES)),) |
| 7304 | ATREE_FILES := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7305 | $(ALL_DOCS) \ |
| 7306 | $(ALL_SDK_FILES) |
| 7307 | endif |
| 7308 | |
| 7309 | atree_dir := development/build |
| 7310 | |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 7311 | |
Dan Willemsen | 53c98f7 | 2021-10-16 16:49:06 -0700 | [diff] [blame] | 7312 | sdk_atree_files := $(atree_dir)/sdk.exclude.atree |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7313 | |
David 'Digit' Turner | 77ec16a | 2011-06-23 12:49:02 +0200 | [diff] [blame] | 7314 | # development/build/sdk-android-<abi>.atree is used to differentiate |
| 7315 | # between architecture models (e.g. ARMv5TE versus ARMv7) when copying |
| 7316 | # files like the kernel image. We use TARGET_CPU_ABI because we don't |
| 7317 | # have a better way to distinguish between CPU models. |
| 7318 | ifneq (,$(strip $(wildcard $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree))) |
| 7319 | sdk_atree_files += $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree |
| 7320 | endif |
| 7321 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 7322 | ifneq ($(PRODUCT_SDK_ATREE_FILES),) |
| 7323 | sdk_atree_files += $(PRODUCT_SDK_ATREE_FILES) |
Griff Hazen | 433febb | 2014-02-28 08:45:59 -0800 | [diff] [blame] | 7324 | else |
| 7325 | sdk_atree_files += $(atree_dir)/sdk.atree |
| 7326 | endif |
| 7327 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7328 | deps := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7329 | $(OUT_DOCS)/offline-sdk-timestamp \ |
Jerome Gaillard | a0171af | 2019-10-10 19:35:08 +0100 | [diff] [blame] | 7330 | $(SDK_METADATA_FILES) \ |
Anton Hansson | 55a8f02 | 2022-05-12 08:45:29 +0000 | [diff] [blame] | 7331 | $(INSTALLED_SDK_BUILD_PROP_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7332 | $(ATREE_FILES) \ |
Ying Wang | 0c0a4ce | 2014-02-18 14:29:59 -0800 | [diff] [blame] | 7333 | $(sdk_atree_files) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7334 | $(HOST_OUT_EXECUTABLES)/atree \ |
Jerome Gaillard | cf713d4 | 2019-10-23 11:43:26 +0100 | [diff] [blame] | 7335 | $(HOST_OUT_EXECUTABLES)/line_endings |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7336 | |
Anton Hansson | 874dbe7 | 2022-10-26 15:00:55 +0000 | [diff] [blame] | 7337 | # The name of the subdir within the platforms dir of the sdk. One of: |
| 7338 | # - android-<SDK_INT> (stable base dessert SDKs) |
| 7339 | # - android-<CODENAME> (stable extension SDKs) |
| 7340 | # - android-<SDK_INT>-ext<EXT_INT> (codename SDKs) |
| 7341 | sdk_platform_dir_name := $(strip \ |
| 7342 | $(if $(filter REL,$(PLATFORM_VERSION_CODENAME)), \ |
| 7343 | $(if $(filter $(PLATFORM_SDK_EXTENSION_VERSION),$(PLATFORM_BASE_SDK_EXTENSION_VERSION)), \ |
| 7344 | android-$(PLATFORM_SDK_VERSION), \ |
| 7345 | android-$(PLATFORM_SDK_VERSION)-ext$(PLATFORM_SDK_EXTENSION_VERSION) \ |
| 7346 | ), \ |
| 7347 | android-$(PLATFORM_VERSION_CODENAME) \ |
| 7348 | ) \ |
| 7349 | ) |
| 7350 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7351 | INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip |
| 7352 | $(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name) |
| 7353 | $(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name) |
| 7354 | $(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file) |
| 7355 | $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files) |
Anton Hansson | 874dbe7 | 2022-10-26 15:00:55 +0000 | [diff] [blame] | 7356 | $(INTERNAL_SDK_TARGET): PRIVATE_PLATFORM_NAME := $(sdk_platform_dir_name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7357 | # Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built. |
| 7358 | # |
| 7359 | #SDK_GNU_ERROR := true |
| 7360 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 7361 | $(INTERNAL_SDK_TARGET): $(deps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7362 | @echo "Package SDK: $@" |
| 7363 | $(hide) rm -rf $(PRIVATE_DIR) $@ |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 7364 | $(hide) for f in $(strip $(target_gnu_MODULES)); do \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7365 | if [ -f $$f ]; then \ |
| 7366 | echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \ |
| 7367 | including GNU target $$f >&2; \ |
| 7368 | FAIL=$(SDK_GNU_ERROR); \ |
| 7369 | fi; \ |
| 7370 | done; \ |
| 7371 | if [ $$FAIL ]; then exit 1; fi |
| 7372 | $(hide) ( \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7373 | ATREE_STRIP="$(HOST_STRIP) -x" \ |
| 7374 | $(HOST_OUT_EXECUTABLES)/atree \ |
| 7375 | $(addprefix -f ,$(PRIVATE_INPUT_FILES)) \ |
| 7376 | -m $(PRIVATE_DEP_FILE) \ |
| 7377 | -I . \ |
| 7378 | -I $(PRODUCT_OUT) \ |
| 7379 | -I $(HOST_OUT) \ |
| 7380 | -I $(TARGET_COMMON_OUT_ROOT) \ |
Anton Hansson | 874dbe7 | 2022-10-26 15:00:55 +0000 | [diff] [blame] | 7381 | -v "PLATFORM_NAME=$(PRIVATE_PLATFORM_NAME)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7382 | -v "OUT_DIR=$(OUT_DIR)" \ |
| 7383 | -v "HOST_OUT=$(HOST_OUT)" \ |
| 7384 | -v "TARGET_ARCH=$(TARGET_ARCH)" \ |
| 7385 | -v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \ |
| 7386 | -v "DLL_EXTENSION=$(HOST_SHLIB_SUFFIX)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7387 | -o $(PRIVATE_DIR) && \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7388 | HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \ |
| 7389 | development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \ |
| 7390 | chmod -R ug+rwX $(PRIVATE_DIR) && \ |
| 7391 | cd $(dir $@) && zip -rqX $(notdir $@) $(PRIVATE_NAME) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7392 | ) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 ) |
| 7393 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 7394 | MAIN_SDK_DIR := $(sdk_dir) |
| 7395 | MAIN_SDK_ZIP := $(INTERNAL_SDK_TARGET) |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 7396 | |
| 7397 | endif # sdk in MAKECMDGOALS |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 7398 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7399 | # ----------------------------------------------------------------- |
| 7400 | # Findbugs |
| 7401 | INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml |
| 7402 | INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html |
| 7403 | $(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES) |
| 7404 | @echo UnionBugs: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 7405 | $(hide) $(FINDBUGS_DIR)/unionBugs $(ALL_FINDBUGS_FILES) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7406 | > $@ |
| 7407 | $(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET) |
| 7408 | @echo ConvertXmlToText: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 7409 | $(hide) $(FINDBUGS_DIR)/convertXmlToText -html:fancy.xsl \ |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 7410 | $(INTERNAL_FINDBUGS_XML_TARGET) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7411 | |
| 7412 | # ----------------------------------------------------------------- |
| 7413 | # Findbugs |
| 7414 | |
| 7415 | # ----------------------------------------------------------------- |
| 7416 | # These are some additional build tasks that need to be run. |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 7417 | ifneq ($(dont_bother),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7418 | include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk)) |
Claes Elgemark | e22ad67 | 2010-11-12 15:46:00 +0100 | [diff] [blame] | 7419 | -include $(sort $(wildcard vendor/*/build/tasks/*.mk)) |
Andrew Boie | f34a9ba | 2012-04-16 10:03:16 -0700 | [diff] [blame] | 7420 | -include $(sort $(wildcard device/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 7421 | -include $(sort $(wildcard product/*/build/tasks/*.mk)) |
Ying Wang | 66c78e4 | 2014-09-05 17:47:34 -0700 | [diff] [blame] | 7422 | # Also the project-specific tasks |
| 7423 | -include $(sort $(wildcard vendor/*/*/build/tasks/*.mk)) |
| 7424 | -include $(sort $(wildcard device/*/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 7425 | -include $(sort $(wildcard product/*/*/build/tasks/*.mk)) |
Guang Zhu | 8322be7 | 2016-06-20 22:03:24 -0700 | [diff] [blame] | 7426 | # Also add test specifc tasks |
| 7427 | include $(sort $(wildcard platform_testing/build/tasks/*.mk)) |
Keun Soo Yim | 199a710 | 2016-08-31 09:20:51 -0700 | [diff] [blame] | 7428 | include $(sort $(wildcard test/vts/tools/build/tasks/*.mk)) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 7429 | endif |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 7430 | |
Ying Wang | 67132ba | 2015-10-28 16:42:39 -0700 | [diff] [blame] | 7431 | include $(BUILD_SYSTEM)/product-graph.mk |
| 7432 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 7433 | # ----------------------------------------------------------------- |
| 7434 | # Create SDK repository packages. Must be done after tasks/* since |
| 7435 | # we need the addon rules defined. |
| 7436 | ifneq ($(sdk_repo_goal),) |
| 7437 | include $(TOPDIR)development/build/tools/sdk_repo.mk |
| 7438 | endif |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 7439 | |
| 7440 | # ----------------------------------------------------------------- |
Mitch Phillips | 3adbcb3 | 2019-10-17 19:24:46 -0700 | [diff] [blame] | 7441 | # Soong generates the list of all shared libraries that are depended on by fuzz |
| 7442 | # targets. It saves this list as a source:destination pair to |
| 7443 | # FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS, where the source is the path to the |
| 7444 | # build of the unstripped shared library, and the destination is the |
| 7445 | # /data/fuzz/$ARCH/lib (for device) or /fuzz/$ARCH/lib (for host) directory |
| 7446 | # where fuzz target shared libraries are to be "reinstalled". The |
| 7447 | # copy-many-files below generates the rules to copy the unstripped shared |
| 7448 | # libraries to the device or host "reinstallation" directory. These rules are |
| 7449 | # depended on by each module in soong_cc_prebuilt.mk, where the module will have |
| 7450 | # a dependency on each shared library that it needs to be "reinstalled". |
| 7451 | FUZZ_SHARED_DEPS := $(call copy-many-files,$(strip $(FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS))) |
| 7452 | |
| 7453 | # ----------------------------------------------------------------- |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 7454 | # The rule to build all fuzz targets for C++ and Rust, and package them. |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 7455 | # Note: The packages are created in Soong, and in a perfect world, |
| 7456 | # we'd be able to create the phony rule there. But, if we want to |
| 7457 | # have dist goals for the fuzz target, we need to have the PHONY |
| 7458 | # target defined in make. MakeVarsContext.DistForGoal doesn't take |
| 7459 | # into account that a PHONY rule create by Soong won't be available |
| 7460 | # during make, and such will fail with `writing to readonly |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 7461 | # directory`, because kati will see 'haiku' as being a file, not a |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 7462 | # phony target. |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 7463 | .PHONY: haiku |
| 7464 | haiku: $(SOONG_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_FUZZ_TARGETS) |
| 7465 | $(call dist-for-goals,haiku,$(SOONG_FUZZ_PACKAGING_ARCH_MODULES)) |
Mark | f7ffdac | 2022-10-04 20:09:44 +0000 | [diff] [blame] | 7466 | $(call dist-for-goals,haiku,$(PRODUCT_OUT)/module-info.json) |
Cory Barker | 4b01122 | 2023-02-03 00:19:34 +0000 | [diff] [blame] | 7467 | .PHONY: haiku-java |
| 7468 | haiku-java: $(SOONG_JAVA_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_JAVA_FUZZ_TARGETS) |
| 7469 | $(call dist-for-goals,haiku-java,$(SOONG_JAVA_FUZZ_PACKAGING_ARCH_MODULES)) |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 7470 | .PHONY: haiku-rust |
| 7471 | haiku-rust: $(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_RUST_FUZZ_TARGETS) |
| 7472 | $(call dist-for-goals,haiku-rust,$(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES)) |
Mark | f7ffdac | 2022-10-04 20:09:44 +0000 | [diff] [blame] | 7473 | $(call dist-for-goals,haiku-rust,$(PRODUCT_OUT)/module-info.json) |
David Fu | 05d16bc | 2023-07-07 18:18:32 +0000 | [diff] [blame] | 7474 | .PHONY: haiku-presubmit |
| 7475 | haiku-presubmit: $(SOONG_PRESUBMIT_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_PRESUBMIT_FUZZ_TARGETS) |
| 7476 | $(call dist-for-goals,haiku-presubmit,$(SOONG_PRESUBMIT_FUZZ_PACKAGING_ARCH_MODULES)) |
Jerome Gaillard | cf713d4 | 2019-10-23 11:43:26 +0100 | [diff] [blame] | 7477 | |
| 7478 | # ----------------------------------------------------------------- |
| 7479 | # Extract platform fonts used in Layoutlib |
| 7480 | include $(BUILD_SYSTEM)/layoutlib_fonts.mk |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 7481 | |
| 7482 | |
| 7483 | # ----------------------------------------------------------------- |
| 7484 | # OS Licensing |
| 7485 | |
| 7486 | include $(BUILD_SYSTEM)/os_licensing.mk |
| 7487 | |
| 7488 | # When appending new code to this file, please insert above OS Licensing |