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 | |
Cole Faust | cc00a0c | 2024-11-12 14:04:29 -0800 | [diff] [blame] | 195 | |
| 196 | # Returns a list of EXTRA_INSTALL_ZIPS trios whose primary file is contained within $(1) |
| 197 | # The trios will contain the primary installed file : the directory to unzip the zip to : the zip |
| 198 | define relevant-extra-install-zips |
| 199 | $(strip $(foreach p,$(EXTRA_INSTALL_ZIPS), \ |
| 200 | $(if $(filter $(call word-colon,1,$(p)),$(1)), \ |
| 201 | $(p)))) |
| 202 | endef |
| 203 | |
| 204 | # Writes a text file that contains all of the files that will be inside a partition. |
| 205 | # All the file paths will be relative to the partition's staging directory. |
| 206 | # It will also take into account files inside zips listed in EXTRA_INSTALL_ZIPS. |
| 207 | # |
| 208 | # Arguments: |
| 209 | # $(1): Output file |
| 210 | # $(2): The partition's staging directory |
| 211 | # $(3): Files to include in the partition |
| 212 | define write-partition-file-list |
| 213 | $(1): PRIVATE_FILES := $(subst $(2)/,,$(filter $(2)/%,$(3))) |
| 214 | $(1): PRIVATE_EXTRA_INSTALL_ZIPS := $(call relevant-extra-install-zips,$(filter $(2)/%,$(3))) |
| 215 | $(1): $$(HOST_OUT_EXECUTABLES)/extra_install_zips_file_list $(foreach p,$(call relevant-extra-install-zips,$(filter $(2)/%,$(3))),$(call word-colon,3,$(p))) |
| 216 | @echo Writing $$@ |
| 217 | rm -f $$@ |
| 218 | echo -n > $$@ |
| 219 | $$(foreach f,$$(PRIVATE_FILES),echo "$$(f)" >> $$@$$(newline)) |
| 220 | $$(HOST_OUT_EXECUTABLES)/extra_install_zips_file_list $(2) $$(PRIVATE_EXTRA_INSTALL_ZIPS) >> $$@ |
| 221 | endef |
| 222 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 223 | # ----------------------------------------------------------------- |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 224 | # Returns the max allowed size for an image suitable for hash verification |
| 225 | # (e.g., boot.img, recovery.img, etc). |
| 226 | # The value 69632 derives from MAX_VBMETA_SIZE + MAX_FOOTER_SIZE in $(AVBTOOL). |
| 227 | # $(1): partition size to flash the image |
| 228 | define get-hash-image-max-size |
| 229 | $(if $(1), \ |
| 230 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 231 | $(eval _hash_meta_size := 69632), \ |
| 232 | $(eval _hash_meta_size := 0)) \ |
| 233 | $(1)-$(_hash_meta_size)) |
| 234 | endef |
| 235 | |
| 236 | # ----------------------------------------------------------------- |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 237 | # Define rules to copy headers defined in copy_headers.mk |
| 238 | # If more than one makefile declared a header, print a warning, |
| 239 | # then copy the last one defined. This matches the previous make |
| 240 | # behavior. |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 241 | has_dup_copy_headers := |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 242 | $(foreach dest,$(ALL_COPIED_HEADERS), \ |
| 243 | $(eval _srcs := $(ALL_COPIED_HEADERS.$(dest).SRC)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 244 | $(eval _src := $(lastword $(_srcs))) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 245 | $(if $(call streq,$(_src),$(_srcs)),, \ |
| 246 | $(warning Duplicate header copy: $(dest)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 247 | $(warning _ Using $(_src)) \ |
| 248 | $(warning __ from $(lastword $(ALL_COPIED_HEADERS.$(dest).MAKEFILE))) \ |
| 249 | $(eval _makefiles := $$(wordlist 1,$(call int_subtract,$(words $(ALL_COPIED_HEADERS.$(dest).MAKEFILE)),1),$$(ALL_COPIED_HEADERS.$$(dest).MAKEFILE))) \ |
| 250 | $(foreach src,$(wordlist 1,$(call int_subtract,$(words $(_srcs)),1),$(_srcs)), \ |
| 251 | $(warning _ Ignoring $(src)) \ |
| 252 | $(warning __ from $(firstword $(_makefiles))) \ |
| 253 | $(eval _makefiles := $$(wordlist 2,9999,$$(_makefiles)))) \ |
| 254 | $(eval has_dup_copy_headers := true)) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 255 | $(eval $(call copy-one-header,$(_src),$(dest)))) |
| 256 | all_copied_headers: $(ALL_COPIED_HEADERS) |
| 257 | |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 258 | ifdef has_dup_copy_headers |
| 259 | has_dup_copy_headers := |
Dan Willemsen | 1d4a56f | 2019-04-18 09:38:25 -0700 | [diff] [blame] | 260 | $(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] | 261 | endif |
| 262 | |
Dan Willemsen | 79a0caf | 2019-12-13 18:55:18 -0800 | [diff] [blame] | 263 | $(file >$(PRODUCT_OUT)/.copied_headers_list,$(TARGET_OUT_HEADERS) $(ALL_COPIED_HEADERS)) |
| 264 | |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 265 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 266 | # docs/index.html |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 267 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 268 | gen := $(OUT_DOCS)/index.html |
| 269 | ALL_DOCS += $(gen) |
| 270 | $(gen): frameworks/base/docs/docs-redirect-index.html |
| 271 | @mkdir -p $(dir $@) |
| 272 | @cp -f $< $@ |
Ying Wang | 3f45b3c | 2012-04-02 18:21:36 -0700 | [diff] [blame] | 273 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 274 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 275 | ndk_doxygen_out := $(OUT_NDK_DOCS) |
| 276 | ndk_headers := $(SOONG_OUT_DIR)/ndk/sysroot/usr/include |
| 277 | ndk_docs_src_dir := frameworks/native/docs |
| 278 | ndk_doxyfile := $(ndk_docs_src_dir)/Doxyfile |
| 279 | ifneq ($(wildcard $(ndk_docs_src_dir)),) |
| 280 | ndk_docs_srcs := $(addprefix $(ndk_docs_src_dir)/,\ |
| 281 | $(call find-files-in-subdirs,$(ndk_docs_src_dir),"*",.)) |
| 282 | $(ndk_doxygen_out)/index.html: $(ndk_docs_srcs) $(SOONG_OUT_DIR)/ndk.timestamp |
| 283 | @mkdir -p $(ndk_doxygen_out) |
| 284 | @echo "Generating NDK docs to $(ndk_doxygen_out)" |
| 285 | @( cat $(ndk_doxyfile); \ |
| 286 | echo "INPUT=$(ndk_headers)"; \ |
| 287 | echo "HTML_OUTPUT=$(ndk_doxygen_out)" \ |
| 288 | ) | doxygen - |
| 289 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 290 | $(call declare-1p-target,$(ndk_doxygen_out)/index.html,) |
| 291 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 292 | # Note: Not a part of the docs target because we don't have doxygen available. |
| 293 | # You can run this target locally if you have doxygen installed. |
| 294 | ndk-docs: $(ndk_doxygen_out)/index.html |
| 295 | .PHONY: ndk-docs |
| 296 | endif |
| 297 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 298 | ifeq ($(HOST_OS),linux) |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 299 | $(call dist-for-goals,sdk,$(API_FINGERPRINT)) |
Spandan Das | 10cd857 | 2023-02-14 21:26:55 +0000 | [diff] [blame] | 300 | $(call dist-for-goals,droidcore,$(API_FINGERPRINT)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 301 | endif |
Dan Willemsen | ad6a154 | 2018-12-14 01:04:19 -0800 | [diff] [blame] | 302 | |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 303 | INSTALLED_RECOVERYIMAGE_TARGET := |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 304 | # Build recovery image if |
| 305 | # BUILDING_RECOVERY_IMAGE && !BOARD_USES_RECOVERY_AS_BOOT && !BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT. |
| 306 | # If BOARD_USES_RECOVERY_AS_BOOT is true, leave empty because INSTALLED_BOOTIMAGE_TARGET is built |
| 307 | # with recovery resources. |
| 308 | # If BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT is true, leave empty to build recovery resources |
| 309 | # but not the final recovery image. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 310 | ifdef BUILDING_RECOVERY_IMAGE |
| 311 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 312 | ifneq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 313 | INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img |
| 314 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 315 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 316 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 317 | |
Jiakai Zhang | 53dd895 | 2024-01-18 17:22:13 +0000 | [diff] [blame] | 318 | # Do this early because sysprop.mk depends on BUILT_KERNEL_VERSION_FILE_FOR_UFFD_GC. |
| 319 | ifeq (default,$(ENABLE_UFFD_GC)) |
| 320 | BUILT_KERNEL_VERSION_FILE_FOR_UFFD_GC := $(OUT_DIR)/soong/dexpreopt/kernel_version_for_uffd_gc.txt |
| 321 | endif # ENABLE_UFFD_GC |
| 322 | |
Jiyong Park | e134686 | 2020-05-18 14:31:30 +0900 | [diff] [blame] | 323 | include $(BUILD_SYSTEM)/sysprop.mk |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 324 | |
| 325 | # ---------------------------------------------------------------- |
| 326 | |
| 327 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 328 | # sdk-build.prop |
| 329 | # |
| 330 | # There are certain things in build.prop that we don't want to |
| 331 | # ship with the sdk; remove them. |
| 332 | |
| 333 | # This must be a list of entire property keys followed by |
| 334 | # "=" characters, without any internal spaces. |
| 335 | sdk_build_prop_remove := \ |
| 336 | ro.build.user= \ |
| 337 | ro.build.host= \ |
| 338 | ro.product.brand= \ |
| 339 | ro.product.manufacturer= \ |
| 340 | ro.product.device= |
| 341 | # TODO: Remove this soon-to-be obsolete property |
| 342 | sdk_build_prop_remove += ro.build.product= |
| 343 | INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop |
| 344 | $(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET) |
| 345 | @echo SDK buildinfo: $@ |
| 346 | @mkdir -p $(dir $@) |
| 347 | $(hide) grep -v "$(subst $(space),\|,$(strip \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 348 | $(sdk_build_prop_remove)))" $< > $@.tmp |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 349 | $(hide) for x in $(strip $(sdk_build_prop_remove)); do \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 350 | echo "$$x"generic >> $@.tmp; done |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 351 | $(hide) mv $@.tmp $@ |
| 352 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 353 | $(call declare-0p-target,$(INSTALLED_SDK_BUILD_PROP_TARGET)) |
| 354 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 355 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 356 | # declare recovery ramdisk files |
| 357 | ifeq ($(BUILDING_RECOVERY_IMAGE),true) |
| 358 | INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP := $(call intermediates-dir-for,PACKAGING,recovery)/ramdisk_files-timestamp |
| 359 | endif |
| 360 | |
| 361 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 362 | # Declare vendor ramdisk fragments |
| 363 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := |
| 364 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 365 | ifeq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 366 | ifneq (,$(filter recovery,$(BOARD_VENDOR_RAMDISK_FRAGMENTS))) |
| 367 | $(error BOARD_VENDOR_RAMDISK_FRAGMENTS must not contain "recovery" if \ |
| 368 | BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT is set) |
| 369 | endif |
| 370 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += recovery |
| 371 | VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 372 | VENDOR_RAMDISK_FRAGMENT.recovery.FILES := $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 373 | BOARD_VENDOR_RAMDISK_FRAGMENT.recovery.MKBOOTIMG_ARGS += --ramdisk_type RECOVERY |
| 374 | .KATI_READONLY := VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR |
| 375 | endif |
| 376 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 377 | # Validation check and assign default --ramdisk_type. |
| 378 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 379 | $(if $(and $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 380 | $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)), \ |
| 381 | $(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))) \ |
| 382 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragment-stage-$(vendor_ramdisk_fragment))) \ |
| 383 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES :=) \ |
| 384 | $(if $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 385 | $(if $(filter --ramdisk_type,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)),, \ |
| 386 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_type DLKM))) \ |
| 387 | ) |
| 388 | |
| 389 | # Create the "kernel module directory" to "vendor ramdisk fragment" inverse mapping. |
| 390 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 391 | $(foreach kmd,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 392 | $(eval kmd_vrf := KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd)) \ |
| 393 | $(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)) \ |
| 394 | $(eval $(kmd_vrf) := $(vendor_ramdisk_fragment)) \ |
| 395 | ) \ |
| 396 | ) |
| 397 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += $(BOARD_VENDOR_RAMDISK_FRAGMENTS) |
| 398 | |
Kelvin Zhang | b71bc1b | 2023-08-18 11:09:06 -0700 | [diff] [blame] | 399 | ifneq ($(BOARD_KERNEL_MODULES_16K),) |
| 400 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += 16K |
| 401 | endif |
| 402 | |
Yi-Yo Chiang | 378b779 | 2021-04-09 20:09:13 +0800 | [diff] [blame] | 403 | # Strip the list in case of any whitespace. |
| 404 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := \ |
| 405 | $(strip $(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)) |
| 406 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 407 | # Assign --ramdisk_name for each vendor ramdisk fragment. |
| 408 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
| 409 | $(if $(filter --ramdisk_name,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)), \ |
| 410 | $(error Must not specify --ramdisk_name for vendor ramdisk fragment: $(vendor_ramdisk_fragment))) \ |
| 411 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_name $(vendor_ramdisk_fragment)) \ |
| 412 | $(eval .KATI_READONLY := BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) \ |
| 413 | ) |
| 414 | |
| 415 | # ----------------------------------------------------------------- |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 416 | # kernel modules |
| 417 | |
| 418 | # Depmod requires a well-formed kernel version so 0.0 is used as a placeholder. |
| 419 | DEPMOD_STAGING_SUBDIR :=$= lib/modules/0.0 |
| 420 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 421 | define copy-and-strip-kernel-module |
| 422 | $(2): $(1) |
J. Avila | f758602 | 2020-06-19 20:42:17 +0000 | [diff] [blame] | 423 | $(LLVM_STRIP) -o $(2) --strip-debug $(1) |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 424 | endef |
| 425 | |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 426 | # $(1): modules list |
| 427 | # $(2): output dir |
| 428 | # $(3): mount point |
| 429 | # $(4): staging dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 430 | # $(5): module load list |
| 431 | # $(6): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 432 | # $(7): module archive |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 433 | # $(8): staging dir for stripped modules |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 434 | # $(9): module directory name |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 435 | # $(10): extra modules that might be dependency of modules in this partition, but should not be copied to output dir |
| 436 | # $(11): mount point for extra modules |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 437 | # 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] | 438 | define build-image-kernel-modules |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 439 | $(if $(9), \ |
| 440 | $(eval _dir := $(9)/), \ |
| 441 | $(eval _dir :=)) \ |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 442 | $(foreach module,$(1), \ |
| 443 | $(eval _src := $(module)) \ |
| 444 | $(if $(8), \ |
| 445 | $(eval _src := $(8)/$(notdir $(module))) \ |
| 446 | $(eval $(call copy-and-strip-kernel-module,$(module),$(_src)))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 447 | $(_src):$(2)/lib/modules/$(_dir)$(notdir $(module))) \ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 448 | $(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] | 449 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.dep:$(2)/lib/modules/$(_dir)modules.dep \ |
| 450 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.alias:$(2)/lib/modules/$(_dir)modules.alias \ |
| 451 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.softdep:$(2)/lib/modules/$(_dir)modules.softdep \ |
| 452 | $(4)/$(DEPMOD_STAGING_SUBDIR)/$(6):$(2)/lib/modules/$(_dir)$(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 453 | endef |
| 454 | |
| 455 | # $(1): modules list |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 456 | # $(2): mount point |
| 457 | # $(3): staging dir |
| 458 | # $(4): module load list |
| 459 | # $(5): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 460 | # $(6): module archive |
| 461 | # $(7): output dir |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 462 | # $(8): module directory name |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 463 | # $(9): extra modules which should not be copied to output dir, but might be dependency of modules in this partition |
| 464 | # $(10): mount point for extra modules |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 465 | # TODO(b/144844424): If a module archive is being used, this step (which |
| 466 | # generates obj/PACKAGING/.../modules.dep) also unzips the module archive into |
| 467 | # the output directory. This should be moved to a module with a |
| 468 | # LOCAL_POST_INSTALL_CMD so that if modules.dep is removed from the output dir, |
| 469 | # the archive modules are restored along with modules.dep. |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 470 | define build-image-kernel-modules-depmod |
Steve Muckle | 0f7bb1b | 2019-07-11 17:42:13 -0700 | [diff] [blame] | 471 | $(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] | 472 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(DEPMOD) |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 473 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULES := $(strip $(1)) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 474 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_EXTRA_MODULES := $(strip $(9)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 475 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MOUNT_POINT := $(2) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 476 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_EXTRA_MOUNT_POINT := $(10) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 477 | $(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] | 478 | $(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] | 479 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_STAGING_DIR := $(3) |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 480 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_LOAD_MODULES := $(strip $(4)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 481 | $(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] | 482 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_ARCHIVE := $(6) |
| 483 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_OUTPUT_DIR := $(7) |
| 484 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(1) $(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 485 | @echo depmod $$(PRIVATE_STAGING_DIR) |
| 486 | rm -rf $$(PRIVATE_STAGING_DIR) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 487 | mkdir -p $$(PRIVATE_MODULE_DIR) |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 488 | $(if $(6),\ |
Colin Cross | c27d795 | 2020-07-11 22:33:30 -0700 | [diff] [blame] | 489 | unzip -qoDD -d $$(PRIVATE_MODULE_DIR) $$(PRIVATE_MODULE_ARCHIVE); \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 490 | mkdir -p $$(PRIVATE_OUTPUT_DIR)/lib; \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 491 | 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] | 492 | 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] | 493 | ) |
| 494 | $(if $(1),\ |
| 495 | cp $$(PRIVATE_MODULES) $$(PRIVATE_MODULE_DIR)/; \ |
Bart Van Assche | 594180d | 2024-02-28 12:37:40 -0800 | [diff] [blame] | 496 | if [ -n "$$(PRIVATE_LOAD_MODULES)" ]; then basename -a $$(PRIVATE_LOAD_MODULES); fi > $$(PRIVATE_LOAD_FILE); \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 497 | ) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 498 | # The ln -sf + find -delete sequence is to remove any modules in |
| 499 | # PRIVATE_EXTRA_MODULES which have same basename as MODULES in PRIVATE_MODULES |
| 500 | # Basically, it computes a set difference. When there is a duplicate module |
| 501 | # present in both directories, we want modules in PRIVATE_MODULES to take |
| 502 | # precedence. Since depmod does not provide any guarantee about ordering of |
| 503 | # dependency resolution, we achieve this by maually removing any duplicate |
| 504 | # modules with lower priority. |
| 505 | $(if $(9),\ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 506 | mkdir -p $$(PRIVATE_EXTRA_MODULE_DIR); \ |
Kelvin Zhang | 21b6cad | 2022-12-06 16:03:30 -0800 | [diff] [blame] | 507 | find $$(PRIVATE_EXTRA_MODULE_DIR) -maxdepth 1 -type f -name "*.ko" -delete; \ |
| 508 | cp $$(PRIVATE_EXTRA_MODULES) $$(PRIVATE_EXTRA_MODULE_DIR); \ |
| 509 | ln -sf $$(PRIVATE_MODULE_DIR)/*.ko $$(PRIVATE_EXTRA_MODULE_DIR); \ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 510 | find $$(PRIVATE_EXTRA_MODULE_DIR) -type l -delete; \ |
| 511 | ) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 512 | $(DEPMOD) -b $$(PRIVATE_STAGING_DIR) 0.0 |
| 513 | # Turn paths in modules.dep into absolute paths |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 514 | sed -i.tmp -e 's|\([^: ]*lib/modules/[^: ]*\)|/\1|g' $$(PRIVATE_STAGING_DIR)/$$(DEPMOD_STAGING_SUBDIR)/modules.dep |
| 515 | touch $$(PRIVATE_LOAD_FILE) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 516 | endef |
| 517 | |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 518 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 519 | # $(2): modules list |
| 520 | # $(3): module load list |
| 521 | # $(4): module load list filename |
| 522 | # $(5): output dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 523 | define module-load-list-copy-paths |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 524 | $(eval $(call build-image-module-load-list,$(1),$(2),$(3),$(4))) \ |
| 525 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4):$(5)/lib/modules/$(4) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 526 | endef |
| 527 | |
| 528 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 529 | # $(2): modules list |
| 530 | # $(3): module load list |
| 531 | # $(4): module load list filename |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 532 | define build-image-module-load-list |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 533 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): PRIVATE_LOAD_MODULES := $(3) |
| 534 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): $(2) |
| 535 | @echo load-list $$(@) |
| 536 | @echo '$$(strip $$(notdir $$(PRIVATE_LOAD_MODULES)))' | tr ' ' '\n' > $$(@) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 537 | endef |
| 538 | |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 539 | # $(1): source options file |
| 540 | # $(2): destination pathname |
| 541 | # Returns a build rule that checks the syntax of and installs a kernel modules |
| 542 | # options file. Strip and squeeze any extra space and blank lines. |
| 543 | # For use via $(eval). |
| 544 | define build-image-kernel-modules-options-file |
| 545 | $(2): $(1) |
| 546 | @echo "libmodprobe options $$(@)" |
| 547 | $(hide) mkdir -p "$$(dir $$@)" |
| 548 | $(hide) rm -f "$$@" |
| 549 | $(hide) awk <"$$<" >"$$@" \ |
| 550 | '/^#/ { print; next } \ |
| 551 | NF == 0 { next } \ |
| 552 | NF < 2 || $$$$1 != "options" \ |
| 553 | { print "Invalid options line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 554 | exit_status = 1; next } \ |
| 555 | { $$$$1 = $$$$1; print } \ |
| 556 | END { exit exit_status }' |
| 557 | endef |
| 558 | |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 559 | # $(1): source blocklist file |
| 560 | # $(2): destination pathname |
| 561 | # 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] | 562 | # blocklist file. Strip and squeeze any extra space and blank lines. |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 563 | # For use via $(eval). |
| 564 | define build-image-kernel-modules-blocklist-file |
| 565 | $(2): $(1) |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 566 | @echo "libmodprobe blocklist $$(@)" |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 567 | $(hide) mkdir -p "$$(dir $$@)" |
| 568 | $(hide) rm -f "$$@" |
| 569 | $(hide) awk <"$$<" >"$$@" \ |
| 570 | '/^#/ { print; next } \ |
| 571 | NF == 0 { next } \ |
| 572 | NF != 2 || $$$$1 != "blocklist" \ |
| 573 | { print "Invalid blocklist line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 574 | exit_status = 1; next } \ |
| 575 | { $$$$1 = $$$$1; print } \ |
| 576 | END { exit exit_status }' |
| 577 | endef |
| 578 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 579 | # $(1): image name |
| 580 | # $(2): build output directory (TARGET_OUT_VENDOR, TARGET_RECOVERY_ROOT_OUT, etc) |
| 581 | # $(3): mount point |
| 582 | # $(4): module load filename |
| 583 | # $(5): stripped staging directory |
| 584 | # $(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] | 585 | # $(7): list of extra modules that might be dependency of modules in this partition |
| 586 | # $(8): mount point for extra modules. e.g. system |
| 587 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 588 | define build-image-kernel-modules-dir |
| 589 | $(if $(filter top,$(6)),\ |
| 590 | $(eval _kver :=)$(eval _sep :=),\ |
| 591 | $(eval _kver := $(6))$(eval _sep :=_))\ |
| 592 | $(if $(5),\ |
| 593 | $(eval _stripped_staging_dir := $(5)$(_sep)$(_kver)),\ |
| 594 | $(eval _stripped_staging_dir :=))\ |
| 595 | $(if $(strip $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver))$(BOARD_$(1)_KERNEL_MODULES_ARCHIVE$(_sep)$(_kver))),\ |
| 596 | $(if $(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver)),,\ |
| 597 | $(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] | 598 | $(if $(filter false,$(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver))),\ |
| 599 | $(eval BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver) :=),) \ |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 600 | $(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))) \ |
| 601 | $(call copy-many-files,$(_files)) \ |
| 602 | $(eval _modules := $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver)) ANDROID-GEN ANDROID-GEN ANDROID-GEN ANDROID-GEN) \ |
| 603 | $(eval KERNEL_MODULE_COPY_FILES += $(join $(addsuffix :,$(_modules)),$(_files)))) \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 604 | $(if $(_kver), \ |
| 605 | $(eval _dir := $(_kver)/), \ |
| 606 | $(eval _dir :=)) \ |
| 607 | $(if $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 608 | $(eval $(call build-image-kernel-modules-options-file, \ |
| 609 | $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 610 | $(2)/lib/modules/$(_dir)modules.options)) \ |
| 611 | $(2)/lib/modules/$(_dir)modules.options) \ |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 612 | $(if $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
| 613 | $(eval $(call build-image-kernel-modules-blocklist-file, \ |
| 614 | $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 615 | $(2)/lib/modules/$(_dir)modules.blocklist)) \ |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 616 | $(eval ALL_KERNEL_MODULES_BLOCKLIST += $(2)/lib/modules/$(_dir)modules.blocklist) \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 617 | $(2)/lib/modules/$(_dir)modules.blocklist) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 618 | endef |
| 619 | |
| 620 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 621 | define build-recovery-as-boot-load |
| 622 | $(if $(filter top,$(1)),\ |
| 623 | $(eval _kver :=)$(eval _sep :=),\ |
| 624 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 625 | $(if $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 626 | $(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)))) |
| 627 | endef |
| 628 | |
| 629 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 630 | define build-vendor-ramdisk-recovery-load |
| 631 | $(if $(filter top,$(1)),\ |
| 632 | $(eval _kver :=)$(eval _sep :=),\ |
| 633 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 634 | $(if $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 635 | $(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)))) |
| 636 | endef |
| 637 | |
Mark Salyzyn | 46a9c02 | 2020-06-25 04:35:16 -0700 | [diff] [blame] | 638 | # $(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] | 639 | define build-vendor-kernel-ramdisk-recovery-load |
| 640 | $(if $(filter top,$(1)),\ |
| 641 | $(eval _kver :=)$(eval _sep :=),\ |
| 642 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 643 | $(if $(BOARD_VENDOR_KERNEL_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 644 | $(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)))) |
| 645 | endef |
| 646 | |
| 647 | # $(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] | 648 | define build-vendor-charger-load |
| 649 | $(if $(filter top,$(1)),\ |
| 650 | $(eval _kver :=)$(eval _sep :=),\ |
| 651 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 652 | $(if $(BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 653 | $(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)))) |
| 654 | endef |
| 655 | |
Isaac J. Manjarres | 64fa9a3 | 2023-04-24 15:58:56 -0700 | [diff] [blame] | 656 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 657 | define build-vendor-ramdisk-charger-load |
| 658 | $(if $(filter top,$(1)),\ |
| 659 | $(eval _kver :=)$(eval _sep :=),\ |
| 660 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 661 | $(if $(BOARD_VENDOR_RAMDISK_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 662 | $(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)))) |
| 663 | endef |
| 664 | |
| 665 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 666 | define build-vendor-kernel-ramdisk-charger-load |
| 667 | $(if $(filter top,$(1)),\ |
| 668 | $(eval _kver :=)$(eval _sep :=),\ |
| 669 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 670 | $(if $(BOARD_VENDOR_KERNEL_RAMDISK_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 671 | $(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)))) |
| 672 | endef |
| 673 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 674 | ifneq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 675 | # If there is no vendor boot partition, store vendor ramdisk kernel modules in the |
| 676 | # boot ramdisk. |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 677 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 678 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD) |
| 679 | endif |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 680 | |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 681 | ifeq ($(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD),) |
| 682 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD := $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 683 | endif |
| 684 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 685 | ifneq ($(strip $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES)),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 686 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT), true) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 687 | BOARD_RECOVERY_KERNEL_MODULES += $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 688 | endif |
| 689 | endif |
| 690 | |
Tapas Pradhan | d2d30f6 | 2023-10-05 15:26:27 +0530 | [diff] [blame] | 691 | ifneq ($(BOARD_DO_NOT_STRIP_GENERIC_RAMDISK_MODULES),true) |
| 692 | GENERIC_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_generic_ramdisk_kernel_stripped) |
| 693 | else |
| 694 | GENERIC_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 695 | endif |
| 696 | |
Mark-PK Tsai | 8c54396 | 2021-08-23 18:01:51 +0800 | [diff] [blame] | 697 | ifneq ($(BOARD_DO_NOT_STRIP_RECOVERY_MODULES),true) |
| 698 | RECOVERY_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_recovery_stripped) |
| 699 | else |
| 700 | RECOVERY_STRIPPED_MODULE_STAGING_DIR := |
| 701 | endif |
| 702 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 703 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_MODULES),true) |
| 704 | VENDOR_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_stripped) |
| 705 | else |
| 706 | VENDOR_STRIPPED_MODULE_STAGING_DIR := |
| 707 | endif |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 708 | |
Pierre Couillaud | d99da8f | 2020-06-02 13:13:32 -0700 | [diff] [blame] | 709 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_RAMDISK_MODULES),true) |
| 710 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_ramdisk_stripped) |
| 711 | else |
| 712 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 713 | endif |
| 714 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 715 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_KERNEL_RAMDISK_MODULES),true) |
| 716 | VENDOR_KERNEL_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_kernel_ramdisk_stripped) |
| 717 | else |
| 718 | VENDOR_KERNEL_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 719 | endif |
| 720 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 721 | BOARD_KERNEL_MODULE_DIRS += top |
Kelvin Zhang | 395d3df | 2022-12-07 10:36:10 -0800 | [diff] [blame] | 722 | |
Spandan Das | 1bfc8e1 | 2024-11-08 19:15:43 +0000 | [diff] [blame] | 723 | # Default to not generating modules.load for kernel modules on system |
Kelvin Zhang | 395d3df | 2022-12-07 10:36:10 -0800 | [diff] [blame] | 724 | # side. We should only load these modules if they are depended by vendor |
| 725 | # side modules. |
| 726 | ifeq ($(BOARD_SYSTEM_KERNEL_MODULES_LOAD),) |
| 727 | BOARD_SYSTEM_KERNEL_MODULES_LOAD := false |
| 728 | endif |
| 729 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 730 | $(foreach kmd,$(BOARD_KERNEL_MODULE_DIRS), \ |
Mark-PK Tsai | 8c54396 | 2021-08-23 18:01:51 +0800 | [diff] [blame] | 731 | $(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] | 732 | $(eval vendor_ramdisk_fragment := $(KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd))) \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 733 | $(if $(vendor_ramdisk_fragment), \ |
| 734 | $(eval output_dir := $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR)) \ |
| 735 | $(eval result_var := VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES) \ |
| 736 | $(eval ### else ###), \ |
| 737 | $(eval output_dir := $(TARGET_VENDOR_RAMDISK_OUT)) \ |
| 738 | $(eval result_var := ALL_DEFAULT_INSTALLED_MODULES)) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 739 | $(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] | 740 | $(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] | 741 | $(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] | 742 | $(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] | 743 | $(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] | 744 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-charger-load,$(kmd))) \ |
Isaac J. Manjarres | 64fa9a3 | 2023-04-24 15:58:56 -0700 | [diff] [blame] | 745 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-ramdisk-charger-load,$(kmd))) \ |
| 746 | $(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] | 747 | $(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))) \ |
Abdelrahman Daim | 358ed39 | 2024-08-14 07:55:25 -0700 | [diff] [blame] | 748 | $(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,modules.load,,$(kmd))) \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 749 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 750 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-recovery-as-boot-load,$(kmd))),\ |
Tapas Pradhan | d2d30f6 | 2023-10-05 15:26:27 +0530 | [diff] [blame] | 751 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,GENERIC_RAMDISK,$(TARGET_RAMDISK_OUT),,modules.load,$(GENERIC_RAMDISK_STRIPPED_MODULE_STAGING_DIR),$(kmd))))) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 752 | |
Kelvin Zhang | 0dbfd70 | 2023-01-31 10:47:48 -0800 | [diff] [blame] | 753 | ifeq ($(BOARD_SYSTEM_KERNEL_MODULES),) |
| 754 | ifneq ($(BOARD_SYSTEM_DLKM_SRC),) |
| 755 | ifneq ($(wildcard $(BOARD_SYSTEM_DLKM_SRC)/*),) |
Kelvin Zhang | 19961b5 | 2023-02-14 14:30:48 -0800 | [diff] [blame] | 756 | SYSTEM_KERNEL_MODULES := $(shell find $(BOARD_SYSTEM_DLKM_SRC) -type f) |
| 757 | SRC_SYSTEM_KERNEL_MODULES := $(SYSTEM_KERNEL_MODULES) |
| 758 | 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] | 759 | SYSTEM_KERNEL_MODULE_COPY_PAIRS := $(join $(SRC_SYSTEM_KERNEL_MODULES),$(DST_SYSTEM_KERNEL_MODULES)) |
| 760 | ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(SYSTEM_KERNEL_MODULE_COPY_PAIRS)) |
| 761 | endif |
| 762 | endif |
| 763 | endif |
| 764 | |
| 765 | |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 766 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 767 | # Cert-to-package mapping. Used by the post-build signing tools. |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 768 | # Use a macro to add newline to each echo command |
Jiyong Park | 7b96c59 | 2020-05-01 10:29:09 +0900 | [diff] [blame] | 769 | # $1 stem name of the package |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 770 | # $2 certificate |
| 771 | # $3 private key |
| 772 | # $4 compressed |
| 773 | # $5 partition tag |
| 774 | # $6 output file |
Narayan Kamath | 6a4bd69 | 2017-08-14 10:53:50 +0100 | [diff] [blame] | 775 | define _apkcerts_write_line |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 776 | $(hide) echo -n 'name="$(1).apk" certificate="$2" private_key="$3"' >> $6 |
| 777 | $(if $(4), $(hide) echo -n ' compressed="$4"' >> $6) |
| 778 | $(if $(5), $(hide) echo -n ' partition="$5"' >> $6) |
| 779 | $(hide) echo '' >> $6 |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 780 | |
| 781 | endef |
| 782 | |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 783 | # ----------------------------------------------------------------- |
| 784 | # Merge an individual apkcerts output into the final apkcerts.txt output. |
| 785 | # Use a macro to make it compatible with _apkcerts_write_line |
| 786 | # $1 apkcerts file to be merged |
| 787 | # $2 output file |
| 788 | define _apkcerts_merge |
| 789 | $(hide) cat $1 >> $2 |
| 790 | |
| 791 | endef |
| 792 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 793 | name := $(TARGET_PRODUCT) |
| 794 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 795 | name := $(name)_debug |
| 796 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 797 | name := $(name)-apkcerts |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 798 | intermediates := \ |
| 799 | $(call intermediates-dir-for,PACKAGING,apkcerts) |
| 800 | APKCERTS_FILE := $(intermediates)/$(name).txt |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 801 | all_apkcerts_files := $(sort $(foreach p,$(PACKAGES),$(PACKAGES.$(p).APKCERTS_FILE))) |
| 802 | $(APKCERTS_FILE): $(all_apkcerts_files) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 803 | # We don't need to really build all the modules. |
| 804 | # TODO: rebuild APKCERTS_FILE if any app change its cert. |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 805 | $(APKCERTS_FILE): |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 806 | @echo APK certs list: $@ |
| 807 | @mkdir -p $(dir $@) |
| 808 | @rm -f $@ |
Chris Gross | fabf50a | 2019-05-02 12:42:09 -0700 | [diff] [blame] | 809 | $(foreach p,$(sort $(PACKAGES)),\ |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 810 | $(if $(PACKAGES.$(p).APKCERTS_FILE),\ |
| 811 | $(call _apkcerts_merge,$(PACKAGES.$(p).APKCERTS_FILE), $@),\ |
| 812 | $(if $(PACKAGES.$(p).EXTERNAL_KEY),\ |
Jaewoong Jung | 7b634d3 | 2020-10-23 14:02:16 -0700 | [diff] [blame] | 813 | $(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] | 814 | $(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] | 815 | $(if $(filter true,$(PRODUCT_FSVERITY_GENERATE_METADATA)),\ |
| 816 | $(call _apkcerts_write_line,BuildManifest,$(FSVERITY_APK_KEY_PATH).x509.pem,$(FSVERITY_APK_KEY_PATH).pk8,,system,$@) \ |
| 817 | $(if $(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),\ |
Victor Hsieh | adc94a1 | 2022-09-20 11:46:09 -0700 | [diff] [blame] | 818 | $(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] | 819 | # In case value of PACKAGES is empty. |
Ying Wang | f272cd6 | 2011-09-26 12:05:06 -0700 | [diff] [blame] | 820 | $(hide) touch $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 821 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 822 | $(call declare-0p-target,$(APKCERTS_FILE)) |
| 823 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 824 | .PHONY: apkcerts-list |
| 825 | apkcerts-list: $(APKCERTS_FILE) |
| 826 | |
Jooyung Han | 8b16228 | 2023-10-30 16:22:53 +0900 | [diff] [blame] | 827 | intermediates := $(call intermediates-dir-for,PACKAGING,apexkeys) |
| 828 | APEX_KEYS_FILE := $(intermediates)/apexkeys.txt |
| 829 | |
| 830 | all_apex_keys_files := $(sort $(foreach m,$(call product-installed-modules,$(INTERNAL_PRODUCT)),$(ALL_MODULES.$(m).APEX_KEYS_FILE))) |
| 831 | $(APEX_KEYS_FILE): $(all_apex_keys_files) |
| 832 | @mkdir -p $(dir $@) |
| 833 | @rm -f $@ |
| 834 | $(hide) touch $@ |
| 835 | $(hide) $(foreach file,$^,cat $(file) >> $@ $(newline)) |
| 836 | all_apex_keys_files := |
| 837 | |
| 838 | $(call declare-0p-target,$(APEX_KEYS_FILE)) |
| 839 | |
| 840 | .PHONY: apexkeys.txt |
| 841 | apexkeys.txt: $(APEX_KEYS_FILE) |
| 842 | |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 843 | ifneq (,$(TARGET_BUILD_APPS)) |
| 844 | $(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt) |
Jooyung Han | 8b16228 | 2023-10-30 16:22:53 +0900 | [diff] [blame] | 845 | $(call dist-for-goals, apps_only, $(APEX_KEYS_FILE):apexkeys.txt) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 846 | endif |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 847 | |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 848 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 849 | # ----------------------------------------------------------------- |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 850 | # build system stats |
| 851 | BUILD_SYSTEM_STATS := $(PRODUCT_OUT)/build_system_stats.txt |
| 852 | $(BUILD_SYSTEM_STATS): |
| 853 | @rm -f $@ |
| 854 | @$(foreach s,$(STATS.MODULE_TYPE),echo "modules_type_make,$(s),$(words $(STATS.MODULE_TYPE.$(s)))" >>$@;) |
| 855 | @$(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] | 856 | $(call declare-1p-target,$(BUILD_SYSTEM_STATS),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 857 | $(call dist-for-goals,droidcore-unbundled,$(BUILD_SYSTEM_STATS)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 858 | |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 859 | # ----------------------------------------------------------------- |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 860 | # build /product/etc/security/avb/system_other.avbpubkey if needed |
| 861 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 862 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 863 | INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET := $(TARGET_OUT_PRODUCT_ETC)/security/avb/system_other.avbpubkey |
| 864 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET) |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 865 | endif # BOARD_AVB_ENABLE |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 866 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 867 | |
| 868 | # ----------------------------------------------------------------- |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 869 | # Modules ready to be converted to Soong, ordered by how many |
| 870 | # modules depend on them. |
| 871 | SOONG_CONV := $(sort $(SOONG_CONV)) |
| 872 | SOONG_CONV_DATA := $(call intermediates-dir-for,PACKAGING,soong_conversion)/soong_conv_data |
| 873 | $(SOONG_CONV_DATA): |
| 874 | @rm -f $@ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 875 | @$(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] | 876 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 877 | $(call declare-1p-target,$(SOONG_CONV_DATA),build) |
| 878 | |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 879 | SOONG_TO_CONVERT_SCRIPT := build/make/tools/soong_to_convert.py |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 880 | SOONG_TO_CONVERT := $(PRODUCT_OUT)/soong_to_convert.txt |
| 881 | $(SOONG_TO_CONVERT): $(SOONG_CONV_DATA) $(SOONG_TO_CONVERT_SCRIPT) |
| 882 | @rm -f $@ |
| 883 | $(hide) $(SOONG_TO_CONVERT_SCRIPT) $< >$@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 884 | $(call declare-1p-target,$(SOONG_TO_CONVERT),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 885 | $(call dist-for-goals,droidcore-unbundled,$(SOONG_TO_CONVERT)) |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 886 | |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 887 | $(PRODUCT_OUT)/product_packages.txt: |
| 888 | @rm -f $@ |
| 889 | echo "" > $@ |
| 890 | $(foreach x,$(PRODUCT_PACKAGES),echo $(x) >> $@$(newline)) |
| 891 | |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 892 | MK2BP_CATALOG_SCRIPT := build/make/tools/mk2bp_catalog.py |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 893 | PRODUCT_PACKAGES_TXT := $(PRODUCT_OUT)/product_packages.txt |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 894 | MK2BP_REMAINING_HTML := $(PRODUCT_OUT)/mk2bp_remaining.html |
| 895 | $(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] | 896 | $(MK2BP_REMAINING_HTML): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) $(PRODUCT_PACKAGES_TXT) |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 897 | @rm -f $@ |
| 898 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 899 | --device=$(TARGET_DEVICE) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 900 | --product-packages=$(PRODUCT_PACKAGES_TXT) \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 901 | --title="Remaining Android.mk files for $(TARGET_DEVICE)-$(TARGET_BUILD_VARIANT)" \ |
| 902 | --codesearch=$(PRIVATE_CODE_SEARCH_BASE_URL) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 903 | --out-dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 904 | --mode=html \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 905 | > $@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 906 | $(call declare-1p-target,$(MK2BP_REMAINING_HTML),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 907 | $(call dist-for-goals,droidcore-unbundled,$(MK2BP_REMAINING_HTML)) |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 908 | |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 909 | MK2BP_REMAINING_CSV := $(PRODUCT_OUT)/mk2bp_remaining.csv |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 910 | $(MK2BP_REMAINING_CSV): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) $(PRODUCT_PACKAGES_TXT) |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 911 | @rm -f $@ |
| 912 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 913 | --device=$(TARGET_DEVICE) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 914 | --product-packages=$(PRODUCT_PACKAGES_TXT) \ |
| 915 | --out-dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 916 | --mode=csv \ |
| 917 | > $@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 918 | $(call declare-1p-target,$(MK2BP_REMAINING_CSV)) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 919 | $(call dist-for-goals,droidcore-unbundled,$(MK2BP_REMAINING_CSV)) |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 920 | |
Wei Li | 2e84027 | 2023-10-30 11:20:13 -0700 | [diff] [blame] | 921 | .PHONY: mk2bp_remaining |
| 922 | mk2bp_remaining: $(MK2BP_REMAINING_HTML) $(MK2BP_REMAINING_CSV) |
| 923 | |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 924 | # ----------------------------------------------------------------- |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 925 | # Modules use -Wno-error, or added default -Wall -Werror |
| 926 | WALL_WERROR := $(PRODUCT_OUT)/wall_werror.txt |
| 927 | $(WALL_WERROR): |
| 928 | @rm -f $@ |
| 929 | echo "# Modules using -Wno-error" >> $@ |
| 930 | 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] | 931 | echo "# Modules that allow warnings" >> $@ |
| 932 | 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] | 933 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 934 | $(call declare-0p-target,$(WALL_WERROR)) |
| 935 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 936 | $(call dist-for-goals,droidcore-unbundled,$(WALL_WERROR)) |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 937 | |
| 938 | # ----------------------------------------------------------------- |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 939 | # Modules missing profile files |
| 940 | PGO_PROFILE_MISSING := $(PRODUCT_OUT)/pgo_profile_file_missing.txt |
| 941 | $(PGO_PROFILE_MISSING): |
| 942 | @rm -f $@ |
| 943 | echo "# Modules missing PGO profile files" >> $@ |
| 944 | for m in $(SOONG_MODULES_MISSING_PGO_PROFILE_FILE); do echo $$m >> $@; done |
| 945 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 946 | $(call declare-0p-target,$(PGO_PROFILE_MISSING)) |
| 947 | |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 948 | $(call dist-for-goals,droidcore,$(PGO_PROFILE_MISSING)) |
| 949 | |
Anton Hansson | cd8fa36 | 2020-12-08 20:56:02 +0000 | [diff] [blame] | 950 | CERTIFICATE_VIOLATION_MODULES_FILENAME := $(PRODUCT_OUT)/certificate_violation_modules.txt |
| 951 | $(CERTIFICATE_VIOLATION_MODULES_FILENAME): |
| 952 | rm -f $@ |
| 953 | $(foreach m,$(sort $(CERTIFICATE_VIOLATION_MODULES)), echo $(m) >> $@;) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 954 | $(call declare-0p-target,$(CERTIFICATE_VIOLATION_MODULES_FILENAME)) |
Anton Hansson | cd8fa36 | 2020-12-08 20:56:02 +0000 | [diff] [blame] | 955 | $(call dist-for-goals,droidcore,$(CERTIFICATE_VIOLATION_MODULES_FILENAME)) |
| 956 | |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 957 | # ----------------------------------------------------------------- |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 958 | # 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] | 959 | # for future OTA packages installed by this system. Actual product |
| 960 | # deliverables will be re-signed by hand. We expect this file to |
| 961 | # exist with the suffixes ".x509.pem" and ".pk8". |
Colin Cross | 21122f9 | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 962 | DEFAULT_KEY_CERT_PAIR := $(strip $(DEFAULT_SYSTEM_DEV_CERTIFICATE)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 963 | |
| 964 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 965 | # 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] | 966 | # if they don't do anything. |
| 967 | .PHONY: systemimage |
| 968 | systemimage: |
| 969 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 970 | # ----------------------------------------------------------------- |
| 971 | |
| 972 | .PHONY: event-log-tags |
| 973 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 974 | # Produce an event logs tag file for everything we know about, in order |
| 975 | # to properly allocate numbers. Then produce a file that's filtered |
| 976 | # for what's going to be installed. |
| 977 | |
| 978 | all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt |
| 979 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 980 | event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags |
| 981 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 982 | # Include tags from all packages that we know about |
| 983 | all_event_log_tags_src := \ |
| 984 | $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS))) |
| 985 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 986 | $(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src) |
| 987 | $(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] | 988 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 989 | $(hide) $(MERGETAGS) -o $@ $(PRIVATE_SRC_FILES) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 990 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 991 | $(call declare-0p-target,$(all_event_log_tags_file)) |
| 992 | |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 993 | # Include tags from all packages included in this product, plus all |
| 994 | # tags that are part of the system (ie, not in a vendor/ or device/ |
| 995 | # directory). |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 996 | event_log_tags_src := \ |
| 997 | $(sort $(foreach m,\ |
Yo Chiang | 5e85bfe | 2020-05-13 20:19:05 +0800 | [diff] [blame] | 998 | $(call resolve-bitness-for-modules,TARGET,$(PRODUCT_PACKAGES)) \ |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 999 | $(call module-names-for-tag-list,user), \ |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 1000 | $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \ |
| 1001 | $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src))) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 1002 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1003 | $(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 1004 | $(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file) |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1005 | $(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] | 1006 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 1007 | $(hide) $(MERGETAGS) -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 1008 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 1009 | $(eval $(call declare-0p-target,$(event_log_tags_file))) |
| 1010 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 1011 | event-log-tags: $(event_log_tags_file) |
| 1012 | |
| 1013 | ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file) |
| 1014 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 1015 | # Initialize INSTALLED_FILES_OUTSIDE_IMAGES with the list of all device files, |
| 1016 | # files installed in images will be filtered out later. |
| 1017 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out \ |
| 1018 | $(PRODUCT_OUT)/apex/% \ |
Colin Cross | 41e93ea | 2022-03-25 17:31:49 -0700 | [diff] [blame] | 1019 | $(PRODUCT_OUT)/fake_packages/% \ |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 1020 | $(PRODUCT_OUT)/testcases/%, \ |
| 1021 | $(filter $(PRODUCT_OUT)/%,$(ALL_DEFAULT_INSTALLED_MODULES))) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 1022 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1023 | # ################################################################# |
| 1024 | # Targets for boot/OS images |
| 1025 | # ################################################################# |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 1026 | ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true) |
| 1027 | INSTALLED_BOOTLOADER_MODULE := $(PRODUCT_OUT)/bootloader |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 1028 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 1029 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_BOOTLOADER),$(INSTALLED_BOOTLOADER_MODULE))) |
| 1030 | $(call dist-for-goals,dist_files,$(INSTALLED_BOOTLOADER_MODULE)) |
| 1031 | endif # BOARD_PREBUILT_BOOTLOADER |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 1032 | ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true) |
| 1033 | INSTALLED_2NDBOOTLOADER_TARGET := $(PRODUCT_OUT)/2ndbootloader |
| 1034 | else |
| 1035 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 1036 | endif |
| 1037 | else |
| 1038 | INSTALLED_BOOTLOADER_MODULE := |
| 1039 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 1040 | endif # TARGET_NO_BOOTLOADER |
| 1041 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1042 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 1043 | INSTALLED_KERNEL_TARGET := $(foreach k,$(BOARD_KERNEL_BINARIES), \ |
| 1044 | $(PRODUCT_OUT)/$(k)) |
| 1045 | else |
| 1046 | INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel |
| 1047 | endif |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 1048 | else |
| 1049 | INSTALLED_KERNEL_TARGET := |
| 1050 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1051 | |
| 1052 | # ----------------------------------------------------------------- |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1053 | # the root dir |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 1054 | 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] | 1055 | INTERNAL_ROOT_FILES := $(filter $(TARGET_ROOT_OUT)/%, \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1056 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1057 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 1058 | |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 1059 | INSTALLED_FILES_FILE_ROOT := $(PRODUCT_OUT)/installed-files-root.txt |
| 1060 | INSTALLED_FILES_JSON_ROOT := $(INSTALLED_FILES_FILE_ROOT:.txt=.json) |
| 1061 | $(INSTALLED_FILES_FILE_ROOT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ROOT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1062 | $(INSTALLED_FILES_FILE_ROOT) : $(INTERNAL_ROOT_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 1063 | @echo Installed file list: $@ |
SzuWei Lin | c230b0b | 2021-12-30 13:48:01 +0800 | [diff] [blame] | 1064 | mkdir -p $(TARGET_ROOT_OUT) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1065 | mkdir -p $(dir $@) |
| 1066 | rm -f $@ |
| 1067 | $(FILESLIST) $(TARGET_ROOT_OUT) > $(@:.txt=.json) |
| 1068 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 1069 | |
Bob Badour | e9bdbc5 | 2022-03-10 11:31:07 -0800 | [diff] [blame] | 1070 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ROOT)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1071 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ROOT)) |
Bob Badour | e9bdbc5 | 2022-03-10 11:31:07 -0800 | [diff] [blame] | 1072 | |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1073 | #------------------------------------------------------------------ |
| 1074 | # dtb |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 1075 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1076 | INSTALLED_DTBIMAGE_TARGET := $(PRODUCT_OUT)/dtb.img |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 1077 | ifdef BOARD_PREBUILT_DTBIMAGE_DIR |
Hridya Valsaraju | c63a744 | 2019-02-07 11:38:18 -0800 | [diff] [blame] | 1078 | $(INSTALLED_DTBIMAGE_TARGET) : $(sort $(wildcard $(BOARD_PREBUILT_DTBIMAGE_DIR)/*.dtb)) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1079 | cat $^ > $@ |
| 1080 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 1081 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1082 | |
Kelvin Zhang | 23a97cd | 2024-07-08 09:17:32 -0700 | [diff] [blame] | 1083 | |
| 1084 | # ----------------------------------------------------------------- |
| 1085 | # dtbo image |
| 1086 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 1087 | INSTALLED_DTBOIMAGE_TARGET := $(PRODUCT_OUT)/dtbo.img |
| 1088 | |
| 1089 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1090 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) $(AVBTOOL) $(BOARD_AVB_DTBO_KEY_PATH) |
| 1091 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 1092 | chmod +w $@ |
| 1093 | $(AVBTOOL) add_hash_footer \ |
| 1094 | --image $@ \ |
| 1095 | $(call get-partition-size-argument,$(BOARD_DTBOIMG_PARTITION_SIZE)) \ |
| 1096 | --partition_name dtbo $(INTERNAL_AVB_DTBO_SIGNING_ARGS) \ |
| 1097 | $(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS) |
| 1098 | |
| 1099 | $(call declare-1p-container,$(INSTALLED_DTBOIMAGE_TARGET),) |
| 1100 | $(call declare-container-license-deps,$(INSTALLED_DTBOIMAGE_TARGET),$(BOARD_PREBUILT_DTBOIMAGE),$(PRODUCT_OUT)/:/) |
| 1101 | |
| 1102 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_DTBOIMAGE_TARGET) |
| 1103 | else |
| 1104 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) |
| 1105 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 1106 | endif |
| 1107 | |
| 1108 | endif # BOARD_PREBUILT_DTBOIMAGE |
| 1109 | |
| 1110 | # ----------------------------------------------------------------- |
| 1111 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1112 | # ----------------------------------------------------------------- |
| 1113 | # the ramdisk |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 1114 | 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] | 1115 | ifdef BUILDING_RAMDISK_IMAGE |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1116 | INTERNAL_RAMDISK_FILES := $(filter $(TARGET_RAMDISK_OUT)/%, \ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1117 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1118 | |
| 1119 | INSTALLED_FILES_FILE_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk.txt |
| 1120 | INSTALLED_FILES_JSON_RAMDISK := $(INSTALLED_FILES_FILE_RAMDISK:.txt=.json) |
| 1121 | $(INSTALLED_FILES_FILE_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RAMDISK) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1122 | $(INSTALLED_FILES_FILE_RAMDISK) : $(INTERNAL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1123 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1124 | mkdir -p $(TARGET_RAMDISK_OUT) |
| 1125 | mkdir -p $(dir $@) |
| 1126 | rm -f $@ |
| 1127 | $(FILESLIST) $(TARGET_RAMDISK_OUT) > $(@:.txt=.json) |
| 1128 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1129 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1130 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1131 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_RAMDISK))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1132 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 1133 | BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img |
| 1134 | |
cactusnoh | 5e67f9b | 2024-06-29 18:16:54 +0900 | [diff] [blame] | 1135 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 1136 | # -l enables the legacy format used by the Linux kernel |
| 1137 | COMPRESSION_COMMAND_DEPS := $(LZ4) |
| 1138 | COMPRESSION_COMMAND := $(LZ4) -l -12 --favor-decSpeed |
| 1139 | RAMDISK_EXT := .lz4 |
| 1140 | else |
| 1141 | COMPRESSION_COMMAND_DEPS := $(GZIP) |
| 1142 | COMPRESSION_COMMAND := $(GZIP) |
| 1143 | RAMDISK_EXT := .gz |
| 1144 | endif |
Kelvin Zhang | d8eac1c | 2023-05-19 20:05:18 +0000 | [diff] [blame] | 1145 | |
| 1146 | ifneq ($(BOARD_KERNEL_MODULES_16K),) |
| 1147 | |
| 1148 | TARGET_OUT_RAMDISK_16K := $(PRODUCT_OUT)/ramdisk_16k |
| 1149 | BUILT_RAMDISK_16K_TARGET := $(PRODUCT_OUT)/ramdisk_16k.img |
| 1150 | RAMDISK_16K_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_ramdisk_16k) |
| 1151 | |
Kelvin Zhang | ad3c305 | 2023-10-09 12:57:53 -0700 | [diff] [blame] | 1152 | ifneq ($(BOARD_SYSTEM_KERNEL_MODULES),) |
| 1153 | SYSTEM_DLKM_MODULE_PATTERNS := $(foreach path,$(BOARD_SYSTEM_KERNEL_MODULES),%/$(notdir $(path))) |
| 1154 | |
| 1155 | endif |
| 1156 | |
Kelvin Zhang | 57f23bf | 2023-10-26 10:28:35 -0700 | [diff] [blame] | 1157 | # BOARD_KERNEL_MODULES_16K might contain duplicate modules under different path. |
| 1158 | # for example, foo/bar/wifi.ko and foo/wifi.ko . To avoid build issues, de-dup |
| 1159 | # module list on basename first. |
| 1160 | BOARD_KERNEL_MODULES_16K := $(foreach \ |
| 1161 | pattern,\ |
| 1162 | $(sort $(foreach \ |
| 1163 | path,\ |
| 1164 | $(BOARD_KERNEL_MODULES_16K),\ |
| 1165 | %/$(notdir $(path)))\ |
| 1166 | ),\ |
| 1167 | $(firstword $(filter $(pattern),$(BOARD_KERNEL_MODULES_16K))) \ |
| 1168 | ) |
Kelvin Zhang | ad3c305 | 2023-10-09 12:57:53 -0700 | [diff] [blame] | 1169 | # For non-GKI modules, strip them before install. As debug symbols take up |
| 1170 | # significant space. |
Kelvin Zhang | 0a1dd23 | 2023-08-18 11:02:19 -0700 | [diff] [blame] | 1171 | $(foreach \ |
| 1172 | file,\ |
Kelvin Zhang | ad3c305 | 2023-10-09 12:57:53 -0700 | [diff] [blame] | 1173 | $(filter-out $(SYSTEM_DLKM_MODULE_PATTERNS),$(BOARD_KERNEL_MODULES_16K)),\ |
Kelvin Zhang | 0a1dd23 | 2023-08-18 11:02:19 -0700 | [diff] [blame] | 1174 | $(eval \ |
| 1175 | $(call copy-and-strip-kernel-module,\ |
| 1176 | $(file),\ |
| 1177 | $(RAMDISK_16K_STAGING_DIR)/lib/modules/0.0/$(notdir $(file)) \ |
| 1178 | ) \ |
| 1179 | ) \ |
| 1180 | ) |
| 1181 | |
Kelvin Zhang | ad3c305 | 2023-10-09 12:57:53 -0700 | [diff] [blame] | 1182 | # For GKI modules, copy as-is without stripping, because stripping would |
| 1183 | # remove the signature of kernel modules, and GKI modules must be signed |
| 1184 | # for kernel to load them. |
| 1185 | $(foreach \ |
| 1186 | file,\ |
| 1187 | $(filter $(SYSTEM_DLKM_MODULE_PATTERNS),$(BOARD_KERNEL_MODULES_16K)),\ |
| 1188 | $(eval \ |
| 1189 | $(call copy-one-file,\ |
| 1190 | $(file),\ |
| 1191 | $(RAMDISK_16K_STAGING_DIR)/lib/modules/0.0/$(notdir $(file)) \ |
| 1192 | ) \ |
| 1193 | ) \ |
| 1194 | ) |
| 1195 | |
Kelvin Zhang | b71bc1b | 2023-08-18 11:09:06 -0700 | [diff] [blame] | 1196 | BOARD_VENDOR_RAMDISK_FRAGMENT.16K.PREBUILT := $(BUILT_RAMDISK_16K_TARGET) |
| 1197 | |
Kelvin Zhang | 980aded | 2024-04-19 15:53:01 -0700 | [diff] [blame] | 1198 | ifndef BOARD_KERNEL_MODULES_LOAD_16K |
| 1199 | BOARD_KERNEL_MODULES_LOAD_16K := $(BOARD_KERNEL_MODULES_16K) |
| 1200 | endif |
| 1201 | |
Kelvin Zhang | 0a1dd23 | 2023-08-18 11:02:19 -0700 | [diff] [blame] | 1202 | $(BUILT_RAMDISK_16K_TARGET): $(DEPMOD) $(MKBOOTFS) $(EXTRACT_KERNEL) $(COMPRESSION_COMMAND_DEPS) |
| 1203 | $(BUILT_RAMDISK_16K_TARGET): $(foreach file,$(BOARD_KERNEL_MODULES_16K),$(RAMDISK_16K_STAGING_DIR)/lib/modules/0.0/$(notdir $(file))) |
Kelvin Zhang | d8eac1c | 2023-05-19 20:05:18 +0000 | [diff] [blame] | 1204 | $(DEPMOD) -b $(RAMDISK_16K_STAGING_DIR) 0.0 |
Kelvin Zhang | 980aded | 2024-04-19 15:53:01 -0700 | [diff] [blame] | 1205 | rm -f $(RAMDISK_16K_STAGING_DIR)/lib/modules/0.0/modules.load |
| 1206 | for MODULE in $(BOARD_KERNEL_MODULES_LOAD_16K); do \ |
Kelvin Zhang | d8eac1c | 2023-05-19 20:05:18 +0000 | [diff] [blame] | 1207 | basename $$MODULE >> $(RAMDISK_16K_STAGING_DIR)/lib/modules/0.0/modules.load ; \ |
| 1208 | done; |
Kelvin Zhang | d8eac1c | 2023-05-19 20:05:18 +0000 | [diff] [blame] | 1209 | rm -rf $(TARGET_OUT_RAMDISK_16K)/lib/modules |
Kelvin Zhang | 0a1dd23 | 2023-08-18 11:02:19 -0700 | [diff] [blame] | 1210 | mkdir -p $(TARGET_OUT_RAMDISK_16K)/lib/modules |
Kelvin Zhang | 19c36a5 | 2023-08-24 18:10:24 -0700 | [diff] [blame] | 1211 | KERNEL_RELEASE=`$(EXTRACT_KERNEL) --tools lz4:$(LZ4) --input $(BOARD_KERNEL_PATH_16K) --output-release` ;\ |
| 1212 | IS_16K_KERNEL=`$(EXTRACT_KERNEL) --tools lz4:$(LZ4) --input $(BOARD_KERNEL_PATH_16K) --output-config` ;\ |
Kelvin Zhang | 9113bad | 2023-08-24 14:26:23 -0700 | [diff] [blame] | 1213 | if [[ "$$IS_16K_KERNEL" == *"CONFIG_ARM64_16K_PAGES=y"* ]]; then SUFFIX=_16k; fi ;\ |
Kelvin Zhang | 0a1dd23 | 2023-08-18 11:02:19 -0700 | [diff] [blame] | 1214 | cp -r $(RAMDISK_16K_STAGING_DIR)/lib/modules/0.0 $(TARGET_OUT_RAMDISK_16K)/lib/modules/$$KERNEL_RELEASE$$SUFFIX |
| 1215 | $(MKBOOTFS) $(TARGET_OUT_RAMDISK_16K) | $(COMPRESSION_COMMAND) > $@ |
Kelvin Zhang | d8eac1c | 2023-05-19 20:05:18 +0000 | [diff] [blame] | 1216 | |
| 1217 | # Builds a ramdisk using modules defined in BOARD_KERNEL_MODULES_16K |
| 1218 | ramdisk_16k: $(BUILT_RAMDISK_16K_TARGET) |
| 1219 | .PHONY: ramdisk_16k |
| 1220 | |
| 1221 | endif |
| 1222 | |
Kelvin Zhang | c7712ee | 2024-06-26 10:16:51 -0700 | [diff] [blame] | 1223 | # ----------------------------------------------------------------- |
| 1224 | # 16KB dtbo image |
| 1225 | ifdef BOARD_PREBUILT_DTBOIMAGE_16KB |
| 1226 | INSTALLED_DTBOIMAGE_16KB_TARGET := $(PRODUCT_OUT)/dtbo_16k.img |
| 1227 | |
| 1228 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1229 | $(INSTALLED_DTBOIMAGE_16KB_TARGET): $(BOARD_PREBUILT_DTBOIMAGE_16KB) $(AVBTOOL) $(BOARD_AVB_DTBO_KEY_PATH) |
| 1230 | cp $(BOARD_PREBUILT_DTBOIMAGE_16KB) $@ |
| 1231 | chmod +w $@ |
| 1232 | $(AVBTOOL) add_hash_footer \ |
| 1233 | --image $@ \ |
| 1234 | $(call get-partition-size-argument,$(BOARD_DTBOIMG_PARTITION_SIZE)) \ |
| 1235 | --partition_name dtbo $(INTERNAL_AVB_DTBO_SIGNING_ARGS) \ |
| 1236 | $(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS) |
| 1237 | |
| 1238 | $(call declare-1p-container,$(INSTALLED_DTBOIMAGE_16KB_TARGET),) |
| 1239 | $(call declare-container-license-deps,$(INSTALLED_DTBOIMAGE_16KB_TARGET),$(BOARD_PREBUILT_DTBOIMAGE_16KB),$(PRODUCT_OUT)/:/) |
| 1240 | |
| 1241 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_DTBOIMAGE_16KB_TARGET) |
| 1242 | else |
| 1243 | $(INSTALLED_DTBOIMAGE_16KB_TARGET): $(BOARD_PREBUILT_DTBOIMAGE_16KB) |
| 1244 | cp $(BOARD_PREBUILT_DTBOIMAGE_16KB) $@ |
| 1245 | endif |
| 1246 | |
| 1247 | endif # BOARD_PREBUILT_DTBOIMAGE_16KB |
| 1248 | |
| 1249 | |
Kelvin Zhang | d8eac1c | 2023-05-19 20:05:18 +0000 | [diff] [blame] | 1250 | ifneq ($(BOARD_KERNEL_PATH_16K),) |
| 1251 | BUILT_KERNEL_16K_TARGET := $(PRODUCT_OUT)/kernel_16k |
| 1252 | |
| 1253 | $(eval $(call copy-one-file,$(BOARD_KERNEL_PATH_16K),$(BUILT_KERNEL_16K_TARGET))) |
| 1254 | |
| 1255 | # Copies BOARD_KERNEL_PATH_16K to output directory as is |
| 1256 | kernel_16k: $(BUILT_KERNEL_16K_TARGET) |
| 1257 | .PHONY: kernel_16k |
| 1258 | |
Kelvin Zhang | cde8734 | 2023-08-18 19:34:40 -0700 | [diff] [blame] | 1259 | BUILT_BOOTIMAGE_16K_TARGET := $(PRODUCT_OUT)/boot_16k.img |
| 1260 | |
Kelvin Zhang | bf2d400 | 2023-08-30 14:40:33 -0700 | [diff] [blame] | 1261 | BOARD_KERNEL_16K_BOOTIMAGE_PARTITION_SIZE := $(BOARD_BOOTIMAGE_PARTITION_SIZE) |
| 1262 | |
Yi-Yo Chiang | d6f568f | 2023-11-24 18:21:03 +0800 | [diff] [blame] | 1263 | $(BUILT_BOOTIMAGE_16K_TARGET): $(MKBOOTIMG) $(AVBTOOL) $(INTERNAL_BOOTIMAGE_FILES) $(BOARD_AVB_BOOT_KEY_PATH) $(BUILT_KERNEL_16K_TARGET) |
Kelvin Zhang | cde8734 | 2023-08-18 19:34:40 -0700 | [diff] [blame] | 1264 | $(call pretty,"Target boot 16k image: $@") |
| 1265 | $(call build_boot_from_kernel_avb_enabled,$@,$(BUILT_KERNEL_16K_TARGET)) |
| 1266 | |
| 1267 | |
| 1268 | bootimage_16k: $(BUILT_BOOTIMAGE_16K_TARGET) |
| 1269 | .PHONY: bootimage_16k |
| 1270 | |
Kelvin Zhang | 6257eb2 | 2023-08-22 17:47:44 -0700 | [diff] [blame] | 1271 | BUILT_BOOT_OTA_PACKAGE_16K := $(PRODUCT_OUT)/boot_ota_16k.zip |
Kelvin Zhang | 1ef79a4 | 2024-06-27 10:31:42 -0700 | [diff] [blame] | 1272 | $(BUILT_BOOT_OTA_PACKAGE_16K): $(OTA_FROM_RAW_IMG) \ |
| 1273 | $(BUILT_BOOTIMAGE_16K_TARGET) \ |
| 1274 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 1275 | $(DEFAULT_SYSTEM_DEV_CERTIFICATE).pk8 \ |
| 1276 | $(INSTALLED_DTBOIMAGE_16KB_TARGET) \ |
| 1277 | $(INSTALLED_DTBOIMAGE_TARGET) |
Kelvin Zhang | ed60c9d | 2023-08-25 13:31:14 -0700 | [diff] [blame] | 1278 | $(OTA_FROM_RAW_IMG) --package_key $(DEFAULT_SYSTEM_DEV_CERTIFICATE) \ |
Kelvin Zhang | 506a308 | 2023-08-25 19:49:30 -0700 | [diff] [blame] | 1279 | --max_timestamp `cat $(BUILD_DATETIME_FILE)` \ |
Kelvin Zhang | ed60c9d | 2023-08-25 13:31:14 -0700 | [diff] [blame] | 1280 | --path $(HOST_OUT) \ |
Kelvin Zhang | 1ef79a4 | 2024-06-27 10:31:42 -0700 | [diff] [blame] | 1281 | --partition_name $(if $(and $(INSTALLED_DTBOIMAGE_TARGET),\ |
| 1282 | $(INSTALLED_DTBOIMAGE_16KB_TARGET)),\ |
| 1283 | boot$(comma)dtbo,\ |
| 1284 | boot) \ |
Kelvin Zhang | ed60c9d | 2023-08-25 13:31:14 -0700 | [diff] [blame] | 1285 | --output $@ \ |
Kelvin Zhang | 65c1162 | 2023-10-02 12:45:30 -0700 | [diff] [blame] | 1286 | $(if $(BOARD_16K_OTA_USE_INCREMENTAL),\ |
| 1287 | $(INSTALLED_BOOTIMAGE_TARGET):$(BUILT_BOOTIMAGE_16K_TARGET),\ |
| 1288 | $(BUILT_BOOTIMAGE_16K_TARGET)\ |
Kelvin Zhang | 1ef79a4 | 2024-06-27 10:31:42 -0700 | [diff] [blame] | 1289 | )\ |
| 1290 | $(if $(and $(INSTALLED_DTBOIMAGE_TARGET),$(INSTALLED_DTBOIMAGE_16KB_TARGET)),\ |
| 1291 | $(INSTALLED_DTBOIMAGE_16KB_TARGET)) |
Kelvin Zhang | 6257eb2 | 2023-08-22 17:47:44 -0700 | [diff] [blame] | 1292 | |
| 1293 | boototapackage_16k: $(BUILT_BOOT_OTA_PACKAGE_16K) |
| 1294 | .PHONY: boototapackage_16k |
| 1295 | |
Kelvin Zhang | d8eac1c | 2023-05-19 20:05:18 +0000 | [diff] [blame] | 1296 | endif |
| 1297 | |
Cole Faust | bae8557 | 2024-11-11 14:26:23 -0800 | [diff] [blame] | 1298 | |
| 1299 | ramdisk_intermediates :=$= $(call intermediates-dir-for,PACKAGING,ramdisk) |
| 1300 | $(eval $(call write-partition-file-list,$(ramdisk_intermediates)/file_list.txt,$(TARGET_RAMDISK_OUT),$(INTERNAL_RAMDISK_FILES))) |
| 1301 | |
Nelson Li | 1503d83 | 2024-08-15 11:30:47 +0800 | [diff] [blame] | 1302 | # The value of RAMDISK_NODE_LIST is defined in system/core/rootdir/Android.bp. |
Vincent Donnefort | 4a5fd83 | 2022-12-22 13:48:55 +0000 | [diff] [blame] | 1303 | # This file contains /dev nodes description added to the generic ramdisk |
Vincent Donnefort | 4a5fd83 | 2022-12-22 13:48:55 +0000 | [diff] [blame] | 1304 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 1305 | # We just build this directly to the install location. |
| 1306 | INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET) |
Inseob Kim | adcdb2f | 2021-06-11 12:55:10 +0900 | [diff] [blame] | 1307 | $(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] | 1308 | $(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] | 1309 | $(call pretty,"Target ramdisk: $@") |
Inseob Kim | adcdb2f | 2021-06-11 12:55:10 +0900 | [diff] [blame] | 1310 | $(hide) mkdir -p $(addprefix $(TARGET_RAMDISK_OUT)/,$(PRIVATE_DIRS)) |
| 1311 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
| 1312 | $(hide) mkdir -p $(addprefix $(TARGET_RAMDISK_OUT)/first_stage_ramdisk/,$(PRIVATE_DIRS)) |
| 1313 | endif |
Vincent Donnefort | 4a5fd83 | 2022-12-22 13:48:55 +0000 | [diff] [blame] | 1314 | $(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] | 1315 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1316 | $(call declare-1p-container,$(INSTALLED_RAMDISK_TARGET),) |
| 1317 | $(call declare-container-license-deps,$(INSTALLED_RAMDISK_TARGET),$(INTERNAL_RAMDISK_FILE),$(PRODUCT_OUT)/:/) |
| 1318 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1319 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_RAMDISK_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1320 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1321 | .PHONY: ramdisk-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1322 | ramdisk-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1323 | @echo "make $@: ignoring dependencies" |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1324 | $(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] | 1325 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 1326 | endif # BUILDING_RAMDISK_IMAGE |
| 1327 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1328 | # ----------------------------------------------------------------- |
| 1329 | # the boot image, which is a collection of other images. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1330 | |
| 1331 | # This is defined here since we may be building recovery as boot |
| 1332 | # below and only want to define this once |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1333 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 1334 | BUILT_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot,$(BOARD_KERNEL_BINARIES)), $(PRODUCT_OUT)/$(k).img) |
| 1335 | else |
| 1336 | BUILT_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 1337 | endif |
| 1338 | |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1339 | INTERNAL_PREBUILT_BOOTIMAGE := |
| 1340 | |
| 1341 | my_installed_prebuilt_gki_apex := $(strip $(foreach package,$(PRODUCT_PACKAGES),$(if $(ALL_MODULES.$(package).EXTRACTED_BOOT_IMAGE),$(package)))) |
| 1342 | ifdef my_installed_prebuilt_gki_apex |
| 1343 | ifneq (1,$(words $(my_installed_prebuilt_gki_apex))) # len(my_installed_prebuilt_gki_apex) > 1 |
| 1344 | $(error More than one prebuilt GKI APEXes are installed: $(my_installed_prebuilt_gki_apex)) |
| 1345 | endif # len(my_installed_prebuilt_gki_apex) > 1 |
| 1346 | |
| 1347 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 1348 | $(error Must not define BOARD_PREBUILT_BOOTIMAGE because a prebuilt GKI APEX is installed: $(my_installed_prebuilt_gki_apex)) |
| 1349 | endif # BOARD_PREBUILT_BOOTIMAGE defined |
| 1350 | |
| 1351 | my_apex_extracted_boot_image := $(ALL_MODULES.$(my_installed_prebuilt_gki_apex).EXTRACTED_BOOT_IMAGE) |
| 1352 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 1353 | $(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] | 1354 | $(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] | 1355 | |
| 1356 | INTERNAL_PREBUILT_BOOTIMAGE := $(my_apex_extracted_boot_image) |
| 1357 | |
| 1358 | else # my_installed_prebuilt_gki_apex not defined |
| 1359 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1360 | # $1: boot image target |
| 1361 | # returns the kernel used to make the bootimage |
| 1362 | define bootimage-to-kernel |
| 1363 | $(if $(BOARD_KERNEL_BINARIES),\ |
| 1364 | $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $(1)))),\ |
| 1365 | $(INSTALLED_KERNEL_TARGET)) |
| 1366 | endef |
| 1367 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1368 | ifdef BOARD_BOOTIMAGE_PARTITION_SIZE |
| 1369 | BOARD_KERNEL_BOOTIMAGE_PARTITION_SIZE := $(BOARD_BOOTIMAGE_PARTITION_SIZE) |
| 1370 | endif |
| 1371 | |
| 1372 | # $1: boot image file name |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 1373 | # $2: boot image variant (boot, boot-debug, boot-test-harness) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1374 | define get-bootimage-partition-size |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1375 | $(BOARD_$(call to-upper,$(subst .img,,$(subst $(2),kernel,$(notdir $(1)))))_BOOTIMAGE_PARTITION_SIZE) |
| 1376 | endef |
| 1377 | |
| 1378 | # $1: partition size |
| 1379 | define get-partition-size-argument |
| 1380 | $(if $(1),--partition_size $(1),--dynamic_partition_size) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1381 | endef |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1382 | |
Kelvin Zhang | e9f4ce4 | 2023-08-25 10:41:48 -0700 | [diff] [blame] | 1383 | # $1: output boot image target |
| 1384 | # $2: input path to kernel binary |
| 1385 | define build_boot_from_kernel_avb_enabled |
| 1386 | $(eval kernel := $(2)) |
| 1387 | $(MKBOOTIMG) --kernel $(kernel) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
Kelvin Zhang | e9f4ce4 | 2023-08-25 10:41:48 -0700 | [diff] [blame] | 1388 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(call get-bootimage-partition-size,$(1),boot))) |
| 1389 | $(AVBTOOL) add_hash_footer \ |
| 1390 | --image $(1) \ |
| 1391 | $(call get-partition-size-argument,$(call get-bootimage-partition-size,$(1),boot)) \ |
Kelvin Zhang | de53f7d | 2023-10-03 12:21:28 -0700 | [diff] [blame] | 1392 | --salt `sha256sum "$(kernel)" | cut -d " " -f 1` \ |
Kelvin Zhang | e9f4ce4 | 2023-08-25 10:41:48 -0700 | [diff] [blame] | 1393 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 1394 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1395 | endef |
| 1396 | |
| 1397 | |
celeste wang | e3d4320 | 2022-08-12 08:36:37 +0000 | [diff] [blame] | 1398 | ifndef BOARD_PREBUILT_BOOTIMAGE |
| 1399 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1400 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1401 | INTERNAL_BOOTIMAGE_ARGS := \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1402 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 1403 | |
Yi-Yo Chiang | f061800 | 2023-11-24 15:04:33 +0800 | [diff] [blame] | 1404 | ifneq ($(BUILDING_INIT_BOOT_IMAGE),true) |
| 1405 | INTERNAL_BOOTIMAGE_ARGS += --ramdisk $(INSTALLED_RAMDISK_TARGET) |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 1406 | endif |
| 1407 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1408 | ifndef BUILDING_VENDOR_BOOT_IMAGE |
| 1409 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1410 | INTERNAL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1411 | endif |
| 1412 | endif |
| 1413 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1414 | INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS)) |
| 1415 | |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 1416 | # kernel cmdline/base/pagesize in boot. |
| 1417 | # - If using GKI, use GENERIC_KERNEL_CMDLINE. Remove kernel base and pagesize because they are |
| 1418 | # device-specific. |
| 1419 | # - If not using GKI: |
| 1420 | # - If building vendor_boot, INTERNAL_KERNEL_CMDLINE, base and pagesize goes in vendor_boot. |
| 1421 | # - Otherwise, put them in boot. |
| 1422 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 1423 | ifdef GENERIC_KERNEL_CMDLINE |
| 1424 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(GENERIC_KERNEL_CMDLINE)" |
| 1425 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 1426 | else ifndef BUILDING_VENDOR_BOOT_IMAGE # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
| 1427 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1428 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1429 | endif |
| 1430 | ifdef BOARD_KERNEL_BASE |
| 1431 | INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1432 | endif |
| 1433 | ifdef BOARD_KERNEL_PAGESIZE |
| 1434 | INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1435 | endif |
| 1436 | endif # BUILDING_VENDOR_BOOT_IMAGE == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 1437 | |
Yi-Yo Chiang | d6f568f | 2023-11-24 18:21:03 +0800 | [diff] [blame] | 1438 | INTERNAL_MKBOOTIMG_VERSION_ARGS := \ |
| 1439 | --os_version $(PLATFORM_VERSION_LAST_STABLE) \ |
| 1440 | --os_patch_level $(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 1441 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1442 | # Define these only if we are building boot |
| 1443 | ifdef BUILDING_BOOT_IMAGE |
| 1444 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 1445 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1446 | ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true) |
JP Abgrall | 7bb75e4 | 2015-02-11 15:04:59 -0800 | [diff] [blame] | 1447 | $(error TARGET_BOOTIMAGE_USE_EXT2 is not supported anymore) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1448 | endif # TARGET_BOOTIMAGE_USE_EXT2 |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1449 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1450 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET), $(eval $(call add-dependency,$(b),$(call bootimage-to-kernel,$(b))))) |
| 1451 | |
| 1452 | ifeq (true,$(BOARD_AVB_ENABLE)) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1453 | |
Kelvin Zhang | cde8734 | 2023-08-18 19:34:40 -0700 | [diff] [blame] | 1454 | # $1: boot image target |
| 1455 | define build_boot_board_avb_enabled |
| 1456 | $(eval kernel := $(call bootimage-to-kernel,$(1))) |
| 1457 | $(call build_boot_from_kernel_avb_enabled,$(1),$(kernel)) |
| 1458 | endef |
| 1459 | |
Yi-Yo Chiang | d6f568f | 2023-11-24 18:21:03 +0800 | [diff] [blame] | 1460 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(AVBTOOL) $(INTERNAL_BOOTIMAGE_FILES) $(BOARD_AVB_BOOT_KEY_PATH) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1461 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1462 | $(call build_boot_board_avb_enabled,$@) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1463 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1464 | $(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) |
Yi-Yo Chiang | d6f568f | 2023-11-24 18:21:03 +0800 | [diff] [blame] | 1465 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES),$(PRODUCT_OUT)/:/) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1466 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1467 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1468 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1469 | .PHONY: bootimage-nodeps |
Yi-Yo Chiang | d6f568f | 2023-11-24 18:21:03 +0800 | [diff] [blame] | 1470 | bootimage-nodeps: $(MKBOOTIMG) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1471 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1472 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_board_avb_enabled,$(b))) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1473 | |
Jakub Czapiga | 31f6e08 | 2024-06-18 15:39:09 +0000 | [diff] [blame] | 1474 | else # BOARD_AVB_ENABLE != true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1475 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1476 | # $1: boot image target |
| 1477 | define build_boot_novboot |
| 1478 | $(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] | 1479 | $(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] | 1480 | endef |
| 1481 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1482 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1483 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1484 | $(call build_boot_novboot,$@) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1485 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1486 | $(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] | 1487 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 1488 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1489 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1490 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1491 | .PHONY: bootimage-nodeps |
| 1492 | bootimage-nodeps: $(MKBOOTIMG) |
| 1493 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1494 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_novboot,$(b))) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1495 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1496 | endif # BOARD_AVB_ENABLE |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1497 | endif # BUILDING_BOOT_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1498 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1499 | else # TARGET_NO_KERNEL == "true" |
celeste wang | e3d4320 | 2022-08-12 08:36:37 +0000 | [diff] [blame] | 1500 | INSTALLED_BOOTIMAGE_TARGET := |
| 1501 | endif # TARGET_NO_KERNEL |
| 1502 | |
| 1503 | else # BOARD_PREBUILT_BOOTIMAGE defined |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1504 | INTERNAL_PREBUILT_BOOTIMAGE := $(BOARD_PREBUILT_BOOTIMAGE) |
Kiyoung Kim | 62e2231 | 2019-06-20 14:27:45 +0900 | [diff] [blame] | 1505 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1506 | |
| 1507 | ifeq ($(BOARD_AVB_ENABLE),true) |
Kelvin Zhang | 160762a | 2023-10-17 12:27:56 -0700 | [diff] [blame] | 1508 | $(INSTALLED_BOOTIMAGE_TARGET): PRIVATE_WORKING_DIR := $(call intermediates-dir-for,PACKAGING,prebuilt_bootimg) |
| 1509 | $(INSTALLED_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_BOOTIMAGE) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) $(UNPACK_BOOTIMG) |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1510 | cp $(INTERNAL_PREBUILT_BOOTIMAGE) $@ |
Kelvin Zhang | 160762a | 2023-10-17 12:27:56 -0700 | [diff] [blame] | 1511 | $(UNPACK_BOOTIMG) --boot_img $(INTERNAL_PREBUILT_BOOTIMAGE) --out $(PRIVATE_WORKING_DIR) |
Peter Collingbourne | fd95f09 | 2023-03-24 11:34:24 -0700 | [diff] [blame] | 1512 | chmod +w $@ |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1513 | $(AVBTOOL) add_hash_footer \ |
| 1514 | --image $@ \ |
Kelvin Zhang | 160762a | 2023-10-17 12:27:56 -0700 | [diff] [blame] | 1515 | --salt `sha256sum $(PRIVATE_WORKING_DIR)/kernel | cut -d " " -f 1` \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1516 | $(call get-partition-size-argument,$(BOARD_BOOTIMAGE_PARTITION_SIZE)) \ |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1517 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 1518 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1519 | |
Kelvin Zhang | 160762a | 2023-10-17 12:27:56 -0700 | [diff] [blame] | 1520 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1521 | $(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] | 1522 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_PREBUILT_BOOTIMAGE),$(PRODUCT_OUT)/:/) |
| 1523 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1524 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1525 | else |
| 1526 | $(INSTALLED_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_BOOTIMAGE) |
| 1527 | cp $(INTERNAL_PREBUILT_BOOTIMAGE) $@ |
| 1528 | endif # BOARD_AVB_ENABLE |
| 1529 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1530 | endif # BOARD_PREBUILT_BOOTIMAGE |
celeste wang | e3d4320 | 2022-08-12 08:36:37 +0000 | [diff] [blame] | 1531 | |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1532 | endif # my_installed_prebuilt_gki_apex not defined |
| 1533 | |
Kelvin Zhang | 1738012 | 2023-09-01 17:04:43 +0000 | [diff] [blame] | 1534 | ifneq ($(BOARD_KERNEL_PATH_16K),) |
| 1535 | BUILT_BOOT_OTA_PACKAGE_4K := $(PRODUCT_OUT)/boot_ota_4k.zip |
Kelvin Zhang | 1ef79a4 | 2024-06-27 10:31:42 -0700 | [diff] [blame] | 1536 | $(BUILT_BOOT_OTA_PACKAGE_4K): $(OTA_FROM_RAW_IMG) \ |
| 1537 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 1538 | $(BUILT_BOOTIMAGE_16K_TARGET) \ |
| 1539 | $(DEFAULT_SYSTEM_DEV_CERTIFICATE).pk8 \ |
| 1540 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
| 1541 | $(INSTALLED_DTBOIMAGE_16KB_TARGET) |
Kelvin Zhang | 1738012 | 2023-09-01 17:04:43 +0000 | [diff] [blame] | 1542 | $(OTA_FROM_RAW_IMG) --package_key $(DEFAULT_SYSTEM_DEV_CERTIFICATE) \ |
| 1543 | --max_timestamp `cat $(BUILD_DATETIME_FILE)` \ |
| 1544 | --path $(HOST_OUT) \ |
Kelvin Zhang | 1ef79a4 | 2024-06-27 10:31:42 -0700 | [diff] [blame] | 1545 | --partition_name $(if $(and $(INSTALLED_DTBOIMAGE_TARGET),\ |
| 1546 | $(INSTALLED_DTBOIMAGE_16KB_TARGET)),\ |
| 1547 | boot$(comma)dtbo,\ |
| 1548 | boot) \ |
Kelvin Zhang | 1738012 | 2023-09-01 17:04:43 +0000 | [diff] [blame] | 1549 | --output $@ \ |
Kelvin Zhang | 65c1162 | 2023-10-02 12:45:30 -0700 | [diff] [blame] | 1550 | $(if $(BOARD_16K_OTA_USE_INCREMENTAL),\ |
| 1551 | $(BUILT_BOOTIMAGE_16K_TARGET):$(INSTALLED_BOOTIMAGE_TARGET),\ |
| 1552 | $(INSTALLED_BOOTIMAGE_TARGET)\ |
Kelvin Zhang | 1ef79a4 | 2024-06-27 10:31:42 -0700 | [diff] [blame] | 1553 | )\ |
| 1554 | $(if $(and $(INSTALLED_DTBOIMAGE_TARGET),$(INSTALLED_DTBOIMAGE_16KB_TARGET)),\ |
| 1555 | $(INSTALLED_DTBOIMAGE_TARGET)) |
Kelvin Zhang | 1738012 | 2023-09-01 17:04:43 +0000 | [diff] [blame] | 1556 | |
| 1557 | boototapackage_4k: $(BUILT_BOOT_OTA_PACKAGE_4K) |
| 1558 | .PHONY: boototapackage_4k |
| 1559 | |
Kelvin Zhang | 19805cb | 2024-04-09 09:47:31 -0700 | [diff] [blame] | 1560 | ifeq ($(BOARD_16K_OTA_MOVE_VENDOR),true) |
| 1561 | $(eval $(call copy-one-file,$(BUILT_BOOT_OTA_PACKAGE_4K),$(TARGET_OUT_VENDOR)/boot_otas/boot_ota_4k.zip)) |
| 1562 | $(eval $(call copy-one-file,$(BUILT_BOOT_OTA_PACKAGE_16K),$(TARGET_OUT_VENDOR)/boot_otas/boot_ota_16k.zip)) |
Pawan Wagh | bd2d79d | 2024-04-29 19:48:26 +0000 | [diff] [blame] | 1563 | ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT_VENDOR)/boot_otas/boot_ota_4k.zip |
| 1564 | ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT_VENDOR)/boot_otas/boot_ota_16k.zip |
Kelvin Zhang | 19805cb | 2024-04-09 09:47:31 -0700 | [diff] [blame] | 1565 | else |
Kelvin Zhang | 1738012 | 2023-09-01 17:04:43 +0000 | [diff] [blame] | 1566 | $(eval $(call copy-one-file,$(BUILT_BOOT_OTA_PACKAGE_4K),$(TARGET_OUT)/boot_otas/boot_ota_4k.zip)) |
| 1567 | $(eval $(call copy-one-file,$(BUILT_BOOT_OTA_PACKAGE_16K),$(TARGET_OUT)/boot_otas/boot_ota_16k.zip)) |
Kelvin Zhang | 1738012 | 2023-09-01 17:04:43 +0000 | [diff] [blame] | 1568 | ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT)/boot_otas/boot_ota_4k.zip |
| 1569 | ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT)/boot_otas/boot_ota_16k.zip |
Pawan Wagh | bd2d79d | 2024-04-29 19:48:26 +0000 | [diff] [blame] | 1570 | endif # BOARD_16K_OTA_MOVE_VENDOR == true |
Kelvin Zhang | 1738012 | 2023-09-01 17:04:43 +0000 | [diff] [blame] | 1571 | |
| 1572 | |
| 1573 | endif |
| 1574 | |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1575 | my_apex_extracted_boot_image := |
| 1576 | my_installed_prebuilt_gki_apex := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1577 | |
| 1578 | # ----------------------------------------------------------------- |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1579 | # init boot image |
| 1580 | ifeq ($(BUILDING_INIT_BOOT_IMAGE),true) |
| 1581 | |
| 1582 | INSTALLED_INIT_BOOT_IMAGE_TARGET := $(PRODUCT_OUT)/init_boot.img |
| 1583 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_RAMDISK_TARGET) |
| 1584 | |
Yi-Yo Chiang | 8b0776d | 2022-06-30 17:33:29 +0800 | [diff] [blame] | 1585 | INTERNAL_INIT_BOOT_IMAGE_ARGS := --ramdisk $(INSTALLED_RAMDISK_TARGET) |
| 1586 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1587 | ifdef BOARD_KERNEL_PAGESIZE |
| 1588 | INTERNAL_INIT_BOOT_IMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1589 | endif |
| 1590 | |
| 1591 | ifeq ($(BOARD_AVB_ENABLE),true) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 1592 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_INIT_BOOT_KEY_PATH) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1593 | $(call pretty,"Target init_boot image: $@") |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1594 | $(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] | 1595 | $(call assert-max-image-size,$@,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) |
| 1596 | $(AVBTOOL) add_hash_footer \ |
| 1597 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1598 | $(call get-partition-size-argument,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) \ |
Cole Faust | 39cd337 | 2024-11-22 16:12:31 -0800 | [diff] [blame] | 1599 | --salt $$(sha256sum $(BUILD_NUMBER_FILE) $(BUILD_DATETIME_FILE) | cut -d " " -f 1 | tr -d '\n') \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1600 | --partition_name init_boot $(INTERNAL_AVB_INIT_BOOT_SIGNING_ARGS) \ |
| 1601 | $(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1602 | |
| 1603 | $(call declare-1p-container,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 1604 | $(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] | 1605 | else |
| 1606 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): |
| 1607 | $(call pretty,"Target init_boot image: $@") |
| 1608 | $(MKBOOTIMG) $(INTERNAL_INIT_BOOT_IMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_INIT_ARGS) --output $@ |
| 1609 | $(call assert-max-image-size,$@,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1610 | |
| 1611 | $(call declare-1p-target,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1612 | endif |
| 1613 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1614 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_INIT_BOOT_IMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1615 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1616 | else # BUILDING_INIT_BOOT_IMAGE is not true |
| 1617 | |
| 1618 | ifdef BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 1619 | INTERNAL_PREBUILT_INIT_BOOT_IMAGE := $(BOARD_PREBUILT_INIT_BOOT_IMAGE) |
| 1620 | INSTALLED_INIT_BOOT_IMAGE_TARGET := $(PRODUCT_OUT)/init_boot.img |
| 1621 | |
| 1622 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1623 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $(AVBTOOL) $(BOARD_AVB_INIT_BOOT_KEY_PATH) |
| 1624 | cp $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $@ |
Peter Collingbourne | fd95f09 | 2023-03-24 11:34:24 -0700 | [diff] [blame] | 1625 | chmod +w $@ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1626 | $(AVBTOOL) add_hash_footer \ |
| 1627 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1628 | $(call get-partition-size-argument,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) \ |
Devin Moore | 77ae07d | 2023-02-06 17:25:06 +0000 | [diff] [blame] | 1629 | --partition_name init_boot $(INTERNAL_AVB_INIT_BOOT_SIGNING_ARGS) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1630 | $(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1631 | |
| 1632 | $(call declare-1p-container,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 1633 | $(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] | 1634 | else |
| 1635 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) |
| 1636 | cp $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $@ |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1637 | |
| 1638 | $(call declare-1p-target,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1639 | endif # BOARD_AVB_ENABLE |
| 1640 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1641 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_INIT_BOOT_IMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1642 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1643 | else # BOARD_PREBUILT_INIT_BOOT_IMAGE not defined |
| 1644 | INSTALLED_INIT_BOOT_IMAGE_TARGET := |
| 1645 | endif # BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 1646 | |
| 1647 | endif # BUILDING_INIT_BOOT_IMAGE is not true |
Ramji Jiyani | 1065523 | 2022-01-20 06:43:09 +0000 | [diff] [blame] | 1648 | |
| 1649 | # ----------------------------------------------------------------- |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1650 | # vendor boot image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 1651 | 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] | 1652 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 1653 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1654 | INTERNAL_VENDOR_RAMDISK_FILES := $(filter $(TARGET_VENDOR_RAMDISK_OUT)/%, \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1655 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1656 | |
Petri Gynther | 6a6d621 | 2021-03-06 00:45:53 -0800 | [diff] [blame] | 1657 | INTERNAL_VENDOR_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot)/vendor_ramdisk.cpio$(RAMDISK_EXT) |
Cole Faust | a6a0007 | 2024-11-18 14:03:26 -0800 | [diff] [blame] | 1658 | vendor_ramdisk_intermediates :=$= $(call intermediates-dir-for,PACKAGING,vendor_ramdisk) |
| 1659 | $(eval $(call write-partition-file-list,$(vendor_ramdisk_intermediates)/file_list.txt,$(TARGET_VENDOR_RAMDISK_OUT),$(INTERNAL_VENDOR_RAMDISK_FILES))) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1660 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1661 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 1662 | # recovery ramdisk in vendor_boot. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1663 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1664 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1665 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 1666 | $(INTERNAL_VENDOR_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 1667 | endif |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1668 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1669 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1670 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1671 | $(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] | 1672 | |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1673 | INSTALLED_VENDOR_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk.img |
| 1674 | $(INSTALLED_VENDOR_RAMDISK_TARGET): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 1675 | @echo "Target vendor ramdisk: $@" |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1676 | $(copy-file-to-target) |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1677 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1678 | $(call declare-1p-container,$(INSTALLED_VENDOR_RAMDISK_TARGET),) |
| 1679 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_RAMDISK_TARGET),$(INTERNAL_VENDOR_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 1680 | |
| 1681 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_RAMDISK_TARGET) |
| 1682 | |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1683 | INSTALLED_FILES_FILE_VENDOR_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk.txt |
| 1684 | INSTALLED_FILES_JSON_VENDOR_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_RAMDISK:.txt=.json) |
| 1685 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_RAMDISK) |
| 1686 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
| 1687 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1688 | @echo Installed file list: $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1689 | mkdir -p $(dir $@) |
| 1690 | rm -f $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1691 | $(FILESLIST) $(TARGET_VENDOR_RAMDISK_OUT) > $(@:.txt=.json) |
| 1692 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1693 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1694 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1695 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_RAMDISK))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1696 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1697 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1698 | ifneq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
| 1699 | # If we have vendor_kernel_boot partition, we migrate dtb image to that image |
| 1700 | # and allow dtb in vendor_boot to be empty. |
| 1701 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1702 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1703 | endif |
| 1704 | ifdef BOARD_KERNEL_BASE |
| 1705 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1706 | endif |
| 1707 | ifdef BOARD_KERNEL_PAGESIZE |
| 1708 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1709 | endif |
| 1710 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1711 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1712 | endif |
| 1713 | |
Devin Moore | c3eefb6 | 2024-10-21 22:39:44 +0000 | [diff] [blame] | 1714 | ifneq (, $(INTERNAL_BOOTCONFIG)$(INTERNAL_BOOTCONFIG_FILE)) |
Yi-Yo Chiang | 9c46136 | 2021-04-04 03:26:18 +0800 | [diff] [blame] | 1715 | INTERNAL_VENDOR_BOOTCONFIG_TARGET := $(PRODUCT_OUT)/vendor-bootconfig.img |
| 1716 | $(INTERNAL_VENDOR_BOOTCONFIG_TARGET): |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1717 | rm -f $@ |
| 1718 | $(foreach param,$(INTERNAL_BOOTCONFIG), \ |
| 1719 | printf "%s\n" $(param) >> $@;) |
Devin Moore | c3eefb6 | 2024-10-21 22:39:44 +0000 | [diff] [blame] | 1720 | cat $(INTERNAL_BOOTCONFIG_FILE) >> $@ |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1721 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_bootconfig $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
| 1722 | endif |
| 1723 | |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1724 | # $(1): Build target name |
| 1725 | # $(2): Staging dir to be compressed |
| 1726 | # $(3): Build dependencies |
| 1727 | define build-vendor-ramdisk-fragment-target |
| 1728 | $(1): $(3) $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 1729 | $(MKBOOTFS) -d $(TARGET_OUT) $(2) | $(COMPRESSION_COMMAND) > $$@ |
| 1730 | endef |
| 1731 | |
| 1732 | # $(1): Ramdisk name |
| 1733 | define build-vendor-ramdisk-fragment |
| 1734 | $(strip \ |
| 1735 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragments)/$(1).cpio$(RAMDISK_EXT)) \ |
| 1736 | $(eval $(call build-vendor-ramdisk-fragment-target,$(build_target),$(VENDOR_RAMDISK_FRAGMENT.$(1).STAGING_DIR),$(VENDOR_RAMDISK_FRAGMENT.$(1).FILES))) \ |
| 1737 | $(build_target) \ |
| 1738 | ) |
| 1739 | endef |
| 1740 | |
| 1741 | # $(1): Ramdisk name |
| 1742 | # $(2): Prebuilt file path |
| 1743 | define build-prebuilt-vendor-ramdisk-fragment |
| 1744 | $(strip \ |
| 1745 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,prebuilt_vendor_ramdisk_fragments)/$(1)) \ |
| 1746 | $(eval $(call copy-one-file,$(2),$(build_target))) \ |
| 1747 | $(build_target) \ |
| 1748 | ) |
| 1749 | endef |
| 1750 | |
| 1751 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS := |
| 1752 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS := |
| 1753 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1754 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1755 | $(eval prebuilt_vendor_ramdisk_fragment_file := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 1756 | $(if $(prebuilt_vendor_ramdisk_fragment_file), \ |
| 1757 | $(eval vendor_ramdisk_fragment_target := $(call build-prebuilt-vendor-ramdisk-fragment,$(vendor_ramdisk_fragment),$(prebuilt_vendor_ramdisk_fragment_file))) \ |
| 1758 | $(eval ### else ###), \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1759 | $(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] | 1760 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS += $(vendor_ramdisk_fragment_target)) \ |
| 1761 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS += $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) --vendor_ramdisk_fragment $(vendor_ramdisk_fragment_target)) \ |
| 1762 | ) |
| 1763 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1764 | INSTALLED_VENDOR_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot.img |
| 1765 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET) |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1766 | $(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] | 1767 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1768 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOTIMAGE_KEY_PATH) |
| 1769 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1770 | $(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] | 1771 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1772 | $(AVBTOOL) add_hash_footer \ |
| 1773 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1774 | $(call get-partition-size-argument,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) \ |
Cole Faust | 39cd337 | 2024-11-22 16:12:31 -0800 | [diff] [blame] | 1775 | --salt $$(sha256sum $(BUILD_NUMBER_FILE) $(BUILD_DATETIME_FILE) | cut -d " " -f 1 | tr -d '\n') \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1776 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_SIGNING_ARGS) \ |
| 1777 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1778 | else |
| 1779 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): |
| 1780 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1781 | $(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] | 1782 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1783 | endif |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1784 | |
| 1785 | $(call declare-1p-container,$(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 1786 | $(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)/:/) |
| 1787 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) |
chunhui dai | 97944c7 | 2024-06-21 16:45:47 +0000 | [diff] [blame] | 1788 | |
| 1789 | else # BUILDING_VENDOR_BOOT_IMAGE not defined, use prebuilt image |
| 1790 | |
| 1791 | ifdef BOARD_PREBUILT_VENDOR_BOOTIMAGE |
| 1792 | INTERNAL_PREBUILT_VENDOR_BOOTIMAGE := $(BOARD_PREBUILT_VENDOR_BOOTIMAGE) |
| 1793 | INSTALLED_VENDOR_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot.img |
| 1794 | |
| 1795 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1796 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_VENDOR_BOOTIMAGE) $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_KEY_PATH) |
| 1797 | cp $(INTERNAL_PREBUILT_VENDOR_BOOTIMAGE) $@ |
| 1798 | chmod +w $@ |
| 1799 | $(AVBTOOL) add_hash_footer \ |
| 1800 | --image $@ \ |
| 1801 | $(call get-partition-size-argument,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) \ |
| 1802 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_SIGNING_ARGS) \ |
| 1803 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1804 | else |
| 1805 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_VENDOR_BOOTIMAGE) |
| 1806 | cp $(INTERNAL_PREBUILT_VENDOR_BOOTIMAGE) $@ |
| 1807 | |
| 1808 | endif # BOARD_AVB_ENABLE |
| 1809 | $(call declare-1p-container,$(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 1810 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_BOOTIMAGE_TARGET),$(INTERNAL_PREBUILT_VENDOR_BOOTIMAGE),$(PRODUCT_OUT)/:/) |
| 1811 | endif # BOARD_PREBUILT_VENDOR_BOOTIMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1812 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 1813 | |
| 1814 | # ----------------------------------------------------------------- |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1815 | # vendor kernel boot image |
| 1816 | ifeq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
| 1817 | |
| 1818 | INTERNAL_VENDOR_KERNEL_RAMDISK_FILES := $(filter $(TARGET_VENDOR_KERNEL_RAMDISK_OUT)/%, \ |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1819 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1820 | |
| 1821 | INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_kernel_boot)/vendor_kernel_ramdisk.cpio$(RAMDISK_EXT) |
| 1822 | |
| 1823 | $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_KERNEL_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
| 1824 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_VENDOR_KERNEL_RAMDISK_OUT) | $(COMPRESSION_COMMAND) > $@ |
| 1825 | |
| 1826 | INSTALLED_VENDOR_KERNEL_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_kernel_ramdisk.img |
| 1827 | $(INSTALLED_VENDOR_KERNEL_RAMDISK_TARGET): $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1828 | @echo "Target vendor kernel ramdisk: $@" |
| 1829 | $(copy-file-to-target) |
| 1830 | |
| 1831 | INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-kernel-ramdisk.txt |
| 1832 | INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK:.txt=.json) |
| 1833 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK) |
| 1834 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1835 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): $(INTERNAL_VENDOR_KERNEL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 1836 | @echo Installed file list: $@ |
| 1837 | mkdir -p $(dir $@) |
| 1838 | rm -f $@ |
| 1839 | $(FILESLIST) $(TARGET_VENDOR_KERNEL_RAMDISK_OUT) > $(@:.txt=.json) |
| 1840 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 1841 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1842 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK)) |
| 1843 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK)) |
| 1844 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1845 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS := --vendor_ramdisk $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1846 | INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_kernel_boot.img |
| 1847 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1848 | |
| 1849 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1850 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1851 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(INSTALLED_DTBIMAGE_TARGET) |
| 1852 | endif |
| 1853 | ifdef BOARD_KERNEL_PAGESIZE |
| 1854 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1855 | endif |
| 1856 | |
| 1857 | |
| 1858 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1859 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_KERNEL_BOOTIMAGE_KEY_PATH) |
| 1860 | $(call pretty,"Target vendor_kernel_boot image: $@") |
| 1861 | $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_boot $@ |
| 1862 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) |
| 1863 | $(AVBTOOL) add_hash_footer \ |
| 1864 | --image $@ \ |
| 1865 | $(call get-partition-size-argument,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) \ |
| 1866 | --partition_name vendor_kernel_boot $(INTERNAL_AVB_VENDOR_KERNEL_BOOT_SIGNING_ARGS) \ |
| 1867 | $(BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1868 | else |
| 1869 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): |
| 1870 | $(call pretty,"Target vendor_kernel_boot image: $@") |
| 1871 | $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_boot $@ |
| 1872 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) |
| 1873 | endif |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1874 | $(call declare-1p-container,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) |
| 1875 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1876 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),\ |
| 1877 | $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET),\ |
| 1878 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET):) |
| 1879 | else |
| 1880 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET),$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET):) |
| 1881 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1882 | endif # BUILDING_VENDOR_KERNEL_BOOT_IMAGE |
| 1883 | |
| 1884 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1885 | # NOTICE files |
| 1886 | # |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 1887 | # We are required to publish the licenses for all code under BSD, GPL and |
| 1888 | # Apache licenses (and possibly other more exotic ones as well). We err on the |
| 1889 | # side of caution, so the licenses for other third-party code are included here |
| 1890 | # too. |
| 1891 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1892 | # This needs to be before the systemimage rules, because it adds to |
| 1893 | # ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files |
| 1894 | # go into the systemimage. |
| 1895 | |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1896 | .PHONY: notice_files |
| 1897 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1898 | # Convert license metadata into xml notice file. |
| 1899 | # $(1) - Output target notice filename |
| 1900 | # $(2) - Product name |
| 1901 | # $(3) - File title |
| 1902 | # $(4) - License metadata file roots |
| 1903 | # $(5) - Prefixes to strip |
| 1904 | # |
| 1905 | define xml-notice-rule |
| 1906 | $(1): PRIVATE_PRODUCT := $(2) |
| 1907 | $(1): PRIVATE_MESSAGE := $(3) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1908 | $(1): PRIVATE_DEPS := $(call corresponding-license-metadata,$(4)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1909 | $(1): $(call corresponding-license-metadata,$(4)) $(XMLNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1910 | 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] | 1911 | |
| 1912 | notice_files: $(1) |
| 1913 | endef |
| 1914 | |
| 1915 | # Convert license metadata into text notice file. |
| 1916 | # $(1) - Output target notice filename |
| 1917 | # $(2) - Product name |
| 1918 | # $(3) - File title |
| 1919 | # $(4) - License metadata file roots |
| 1920 | # $(5) - Prefixes to strip |
| 1921 | # |
| 1922 | define text-notice-rule |
| 1923 | $(1): PRIVATE_PRODUCT := $(2) |
| 1924 | $(1): PRIVATE_MESSAGE := $(3) |
| 1925 | $(1): $(call corresponding-license-metadata,$(4)) $(TEXTNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | c778e4c | 2022-03-22 13:05:19 -0700 | [diff] [blame] | 1926 | 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] | 1927 | |
| 1928 | notice_files: $(1) |
| 1929 | endef |
| 1930 | |
| 1931 | # Conversion license metadata into html notice file. |
| 1932 | # $(1) - Output target notice filename |
| 1933 | # $(2) - Product name |
| 1934 | # $(3) - File title |
| 1935 | # $(4) - License metadata file roots |
| 1936 | # $(5) - Prefixes to strip |
| 1937 | # |
| 1938 | define html-notice-rule |
| 1939 | $(1): PRIVATE_PRODUCT := $(2) |
| 1940 | $(1): PRIVATE_MESSAGE := $(3) |
| 1941 | $(1): $(call corresponding-license-metadata,$(4)) $(HTMLNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | c778e4c | 2022-03-22 13:05:19 -0700 | [diff] [blame] | 1942 | 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] | 1943 | |
| 1944 | notice_files: $(1) |
| 1945 | endef |
| 1946 | |
Bob Badour | 6259a09 | 2022-03-23 23:28:40 -0700 | [diff] [blame] | 1947 | $(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] | 1948 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1949 | # Notice file logic isn't relevant for TARGET_BUILD_APPS |
| 1950 | ifndef TARGET_BUILD_APPS |
| 1951 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1952 | # TODO These intermediate NOTICE.txt/NOTICE.html files should go into |
| 1953 | # TARGET_OUT_NOTICE_FILES now that the notice files are gathered from |
| 1954 | # the src subdirectory. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1955 | 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] | 1956 | |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1957 | # Some targets get included under $(PRODUCT_OUT) for debug symbols or other |
| 1958 | # reasons--not to be flashed onto any device. Targets under these directories |
| 1959 | # need no associated notice file on the device UI. |
| 1960 | exclude_target_dirs := apex |
| 1961 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 1962 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1963 | ifneq ($(PRODUCT_NOTICE_SPLIT),true) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1964 | #target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1965 | target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz |
| 1966 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.html.gz |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 1967 | |
| 1968 | $(call declare-0p-target,$(target_notice_file_html_gz)) |
| 1969 | $(call declare-0p-target,$(installed_notice_html_or_xml_gz)) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1970 | else |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1971 | # target_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1972 | target_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml.gz |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1973 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.xml.gz |
| 1974 | |
| 1975 | target_vendor_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.txt |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1976 | target_vendor_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml.gz |
| 1977 | installed_vendor_notice_xml_gz := $(TARGET_OUT_VENDOR)/etc/NOTICE.xml.gz |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1978 | |
| 1979 | target_product_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.txt |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1980 | target_product_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml.gz |
| 1981 | installed_product_notice_xml_gz := $(TARGET_OUT_PRODUCT)/etc/NOTICE.xml.gz |
Dario Freni | cbca113 | 2018-08-28 18:04:03 +0100 | [diff] [blame] | 1982 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1983 | 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] | 1984 | target_system_ext_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml.gz |
| 1985 | 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] | 1986 | |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1987 | target_odm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.txt |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1988 | target_odm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml.gz |
| 1989 | installed_odm_notice_xml_gz := $(TARGET_OUT_ODM)/etc/NOTICE.xml.gz |
| 1990 | |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1991 | 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] | 1992 | target_vendor_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.xml.gz |
| 1993 | installed_vendor_dlkm_notice_xml_gz := $(TARGET_OUT_VENDOR_DLKM)/etc/NOTICE.xml.gz |
| 1994 | |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1995 | 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] | 1996 | target_odm_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.xml.gz |
| 1997 | installed_odm_dlkm_notice_xml_gz := $(TARGET_OUT_ODM_DLKM)/etc/NOTICE.xml.gz |
| 1998 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1999 | 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] | 2000 | target_system_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_DLKM.xml.gz |
| 2001 | installed_system_dlkm_notice_xml_gz := $(TARGET_OUT_SYSTEM_DLKM)/etc/NOTICE.xml.gz |
| 2002 | |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 2003 | ALL_INSTALLED_NOTICE_FILES := \ |
Wei Li | 486c627 | 2024-09-19 17:55:10 +0000 | [diff] [blame] | 2004 | $(if $(USE_SOONG_DEFINED_SYSTEM_IMAGE),,$(installed_notice_html_or_xml_gz)) \ |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 2005 | $(installed_vendor_notice_xml_gz) \ |
| 2006 | $(installed_product_notice_xml_gz) \ |
| 2007 | $(installed_system_ext_notice_xml_gz) \ |
| 2008 | $(installed_odm_notice_xml_gz) \ |
| 2009 | $(installed_vendor_dlkm_notice_xml_gz) \ |
| 2010 | $(installed_odm_dlkm_notice_xml_gz) \ |
| 2011 | $(installed_system_dlkm_notice_xml_gz) \ |
| 2012 | |
| 2013 | # $1 installed file path, e.g. out/target/product/vsoc_x86_64/system_ext/etc/NOTICE.xml.gz |
| 2014 | define is-notice-file |
| 2015 | $(if $(findstring $1,$(ALL_INSTALLED_NOTICE_FILES)),Y) |
| 2016 | endef |
| 2017 | |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 2018 | # Notice files are copied to TARGET_OUT_NOTICE_FILES as a side-effect of their module |
| 2019 | # being built. A notice xml file must depend on all modules that could potentially |
| 2020 | # install a license file relevant to it. |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2021 | license_modules := $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 2022 | # Only files copied to a system image need system image notices. |
| 2023 | license_modules := $(filter $(PRODUCT_OUT)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 2024 | # Phonys/fakes don't have notice files (though their deps might) |
| 2025 | license_modules := $(filter-out $(TARGET_OUT_FAKE)/%,$(license_modules)) |
Jooyung Han | 4416b00 | 2019-05-29 18:28:22 +0900 | [diff] [blame] | 2026 | # testcases are not relevant to the system image. |
| 2027 | license_modules := $(filter-out $(TARGET_OUT_TESTCASES)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 2028 | # 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] | 2029 | license_modules_system := $(filter $(TARGET_OUT)/%,$(license_modules)) |
Jeongik Cha | 9917520 | 2020-06-17 17:10:19 +0900 | [diff] [blame] | 2030 | # system_other is relevant to system partition. |
| 2031 | license_modules_system += $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 2032 | license_modules_vendor := $(filter $(TARGET_OUT_VENDOR)/%,$(license_modules)) |
| 2033 | license_modules_product := $(filter $(TARGET_OUT_PRODUCT)/%,$(license_modules)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2034 | license_modules_system_ext := $(filter $(TARGET_OUT_SYSTEM_EXT)/%,$(license_modules)) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 2035 | license_modules_odm := $(filter $(TARGET_OUT_ODM)/%,$(license_modules)) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 2036 | license_modules_vendor_dlkm := $(filter $(TARGET_OUT_VENDOR_DLKM)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 2037 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_ODM_DLKM)/%,$(license_modules)) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2038 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_SYSTEM_DLKM)/%,$(license_modules)) |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 2039 | license_modules_agg := $(license_modules_system) \ |
| 2040 | $(license_modules_vendor) \ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 2041 | $(license_modules_product) \ |
| 2042 | $(license_modules_system_ext) \ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 2043 | $(license_modules_odm) \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 2044 | $(license_modules_vendor_dlkm) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2045 | $(license_modules_odm_dlkm) \ |
| 2046 | $(license_modules_system_dlkm) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 2047 | # targets used for debug symbols only and do not get copied to the device |
| 2048 | license_modules_symbols_only := $(filter $(PRODUCT_OUT)/apex/%,$(license_modules)) |
| 2049 | |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 2050 | license_modules_rest := $(filter-out $(license_modules_agg),$(license_modules)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 2051 | license_modules_rest := $(filter-out $(license_modules_symbols_only),$(license_modules_rest)) |
| 2052 | |
| 2053 | # Identify the other targets we expect to have notices for: |
| 2054 | # targets copied to the device but are not readable by the UI (e.g. must boot |
| 2055 | # into a different partition to read or don't have an associated /etc |
| 2056 | # directory) must have their notices built somewhere readable. |
| 2057 | license_modules_rehomed := $(filter-out $(PRODUCT_OUT)/%/%,$(license_modules_rest)) # files in root have no /etc |
| 2058 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/recovery/%,$(license_modules_rest)) |
| 2059 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/root/%,$(license_modules_rest)) |
| 2060 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/data/%,$(license_modules_rest)) |
| 2061 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/ramdisk/%,$(license_modules_rest)) |
| 2062 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/debug_ramdisk/%,$(license_modules_rest)) |
Petri Gynther | dc24d88 | 2021-03-02 23:54:08 -0800 | [diff] [blame] | 2063 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/vendor_ramdisk/%,$(license_modules_rest)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 2064 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist/%,$(license_modules_rest)) |
| 2065 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist.img,$(license_modules_rest)) |
| 2066 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/system_other/%,$(license_modules_rest)) |
| 2067 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/kernel%,$(license_modules_rest)) |
| 2068 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.img,$(license_modules_rest)) |
| 2069 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.bin,$(license_modules_rest)) |
| 2070 | |
| 2071 | # after removing targets in system images, targets reported in system images, and |
| 2072 | # targets used for debug symbols that do not need notices, nothing must remain. |
| 2073 | license_modules_rest := $(filter-out $(license_modules_rehomed),$(license_modules_rest)) |
| 2074 | $(call maybe-print-list-and-error, $(license_modules_rest), \ |
| 2075 | "Targets added under $(PRODUCT_OUT)/ unaccounted for notice handling.") |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2076 | |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 2077 | # If we are building in a configuration that includes a prebuilt vendor.img, we can't |
| 2078 | # update its notice file, so include those notices in the system partition instead |
| 2079 | ifdef BOARD_PREBUILT_VENDORIMAGE |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 2080 | license_modules_system += $(license_modules_rehomed) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 2081 | system_xml_directories := xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm |
| 2082 | 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] | 2083 | else |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 2084 | license_modules_vendor += $(license_modules_rehomed) |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 2085 | system_xml_directories := xml_system |
| 2086 | 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] | 2087 | endif |
| 2088 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 2089 | endif # PRODUCT_NOTICE_SPLIT |
| 2090 | |
Wei Li | 486c627 | 2024-09-19 17:55:10 +0000 | [diff] [blame] | 2091 | ifneq ($(USE_SOONG_DEFINED_SYSTEM_IMAGE),true) |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 2092 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_or_xml_gz) |
Wei Li | 486c627 | 2024-09-19 17:55:10 +0000 | [diff] [blame] | 2093 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2094 | |
Bob Badour | 56e0de5 | 2022-08-02 17:46:48 +0000 | [diff] [blame] | 2095 | need_vendor_notice:=false |
| 2096 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 2097 | need_vendor_notice:=true |
| 2098 | endif |
| 2099 | |
| 2100 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2101 | need_vendor_notice:=true |
| 2102 | endif |
| 2103 | |
| 2104 | ifdef BUILDING_VENDOR_IMAGE |
| 2105 | need_vendor_notice:=true |
| 2106 | endif |
| 2107 | |
| 2108 | ifeq (true,$(need_vendor_notice)) |
| 2109 | ifneq (,$(installed_vendor_notice_xml_gz)) |
| 2110 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_notice_xml_gz) |
| 2111 | endif |
| 2112 | endif |
| 2113 | |
| 2114 | need_vendor_notice:= |
| 2115 | |
| 2116 | ifdef BUILDING_ODM_IMAGE |
| 2117 | ifneq (,$(installed_odm_notice_xml_gz)) |
| 2118 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_notice_xml_gz) |
| 2119 | endif |
| 2120 | endif |
| 2121 | |
| 2122 | ifdef BUILDING_PRODUCT_IMAGE |
| 2123 | ifneq (,$(installed_product_notice_xml_gz)) |
| 2124 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_product_notice_xml_gz) |
| 2125 | endif |
| 2126 | endif |
| 2127 | |
| 2128 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 2129 | ifneq (,$(installed_system_ext_notice_xml_gz)) |
| 2130 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_ext_notice_xml_gz) |
| 2131 | endif |
| 2132 | endif |
| 2133 | |
| 2134 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 2135 | ifneq (,$(installed_vendor_dlkm_notice_xml_gz) |
| 2136 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_dlkm_notice_xml_gz) |
| 2137 | endif |
| 2138 | endif |
| 2139 | |
| 2140 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 2141 | ifneq (,$(installed_odm_dlkm_notice_xml_gz)) |
| 2142 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_dlkm_notice_xml_gz) |
| 2143 | endif |
| 2144 | endif |
| 2145 | |
| 2146 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 2147 | ifneq (,$(installed_system_dlkm_notice_xml_gz)) |
| 2148 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_dlkm_notice_xml_gz) |
| 2149 | endif |
| 2150 | endif |
| 2151 | |
Ying Wang | 62c81f8 | 2013-08-22 20:02:03 -0700 | [diff] [blame] | 2152 | endif # TARGET_BUILD_APPS |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2153 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 2154 | # 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] | 2155 | $(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] | 2156 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 2157 | ifneq (,$(strip $(INSTALLED_KERNEL_TARGET))) |
| 2158 | $(call declare-license-metadata,$(INSTALLED_KERNEL_TARGET),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
| 2159 | endif |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2160 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 2161 | # No matter where it gets copied from, a copied linux kernel is licensed under "GPL 2.0 only" |
| 2162 | $(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] | 2163 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 2164 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2165 | # ################################################################# |
| 2166 | # Targets for user images |
| 2167 | # ################################################################# |
| 2168 | |
JP Abgrall | 6ea5bd6 | 2014-10-22 20:01:22 -0700 | [diff] [blame] | 2169 | # These options tell the recovery updater/installer how to mount the partitions writebale. |
| 2170 | # <fstype>=<fstype_opts>[|<fstype_opts>]... |
| 2171 | # fstype_opts := <opt>[,<opt>]... |
| 2172 | # opt := <name>[=<value>] |
JP Abgrall | 775b1ab | 2014-10-23 16:27:03 -0700 | [diff] [blame] | 2173 | # The following worked on Nexus devices with Kernel 3.1, 3.4, 3.10 |
| 2174 | 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] | 2175 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 2176 | INTERNAL_USERIMAGES_DEPS := \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2177 | $(BUILD_IMAGE) \ |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 2178 | $(MKE2FS_CONF) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2179 | $(MKEXTUSERIMG) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 2180 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 2181 | $(call declare-1p-target,$(MKE2FS_CONF),system/extras) |
| 2182 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 2183 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
| 2184 | INTERNAL_USERIMAGES_DEPS += $(MKF2FSUSERIMG) |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 2185 | endif |
| 2186 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2187 | ifneq ($(filter \ |
| 2188 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 2189 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 2190 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 2191 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 2192 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 2193 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2194 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2195 | $(BOARD_SYSTEM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 2196 | ,erofs),) |
David Anderson | 94ad5bb | 2022-03-04 10:57:58 -0800 | [diff] [blame] | 2197 | INTERNAL_USERIMAGES_DEPS += $(MKEROFS) |
David Anderson | f54665f | 2022-03-04 14:42:18 -0800 | [diff] [blame] | 2198 | ifeq ($(BOARD_EROFS_USE_LEGACY_COMPRESSION),true) |
| 2199 | BOARD_EROFS_COMPRESSOR ?= "lz4" |
| 2200 | else |
Kelvin Zhang | 37d4929 | 2021-12-01 14:21:24 -0800 | [diff] [blame] | 2201 | BOARD_EROFS_COMPRESSOR ?= "lz4hc,9" |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 2202 | endif |
David Anderson | f54665f | 2022-03-04 14:42:18 -0800 | [diff] [blame] | 2203 | endif |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 2204 | |
| 2205 | ifneq ($(filter \ |
| 2206 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 2207 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 2208 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 2209 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 2210 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 2211 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
| 2212 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2213 | $(BOARD_SYSTEM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2214 | ,squashfs),) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 2215 | INTERNAL_USERIMAGES_DEPS += $(MKSQUASHFSUSERIMG) |
| 2216 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2217 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 2218 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 2219 | INTERNAL_USERIMAGES_DEPS += $(AVBTOOL) |
| 2220 | endif |
| 2221 | |
| 2222 | # Get a colon-separated list of search paths. |
| 2223 | INTERNAL_USERIMAGES_BINARY_PATHS := $(subst $(space),:,$(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))) |
| 2224 | |
Alex Klyubin | 092c902 | 2017-03-13 13:28:34 -0700 | [diff] [blame] | 2225 | 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] | 2226 | |
Ying Wang | fdbd9cb | 2012-11-21 10:47:00 -0800 | [diff] [blame] | 2227 | INTERNAL_USERIMAGES_DEPS += $(SELINUX_FC) |
| 2228 | |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2229 | # $(1) the partition name (eg system) |
| 2230 | # $(2) the image prop file |
| 2231 | define add-common-flags-to-image-props |
| 2232 | $(eval _var := $(call to-upper,$(1))) |
| 2233 | $(hide) echo "$(1)_selinux_fc=$(SELINUX_FC)" >> $(2) |
| 2234 | $(hide) echo "building_$(1)_image=$(BUILDING_$(_var)_IMAGE)" >> $(2) |
| 2235 | endef |
| 2236 | |
| 2237 | # $(1) the partition name (eg system) |
| 2238 | # $(2) the image prop file |
| 2239 | define add-common-ro-flags-to-image-props |
| 2240 | $(eval _var := $(call to-upper,$(1))) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 2241 | $(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] | 2242 | $(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] | 2243 | $(if $(BOARD_$(_var)IMAGE_EROFS_PCLUSTER_SIZE),$(hide) echo "$(1)_erofs_pcluster_size=$(BOARD_$(_var)IMAGE_EROFS_PCLUSTER_SIZE)" >> $(2)) |
Sandeep Dhavale | d7cc7e8 | 2023-09-11 22:25:53 -0700 | [diff] [blame] | 2244 | $(if $(BOARD_$(_var)IMAGE_EROFS_BLOCKSIZE),$(hide) echo "$(1)_erofs_blocksize=$(BOARD_$(_var)IMAGE_EROFS_BLOCKSIZE)" >> $(2)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2245 | $(if $(BOARD_$(_var)IMAGE_EXTFS_INODE_COUNT),$(hide) echo "$(1)_extfs_inode_count=$(BOARD_$(_var)IMAGE_EXTFS_INODE_COUNT)" >> $(2)) |
| 2246 | $(if $(BOARD_$(_var)IMAGE_EXTFS_RSV_PCT),$(hide) echo "$(1)_extfs_rsv_pct=$(BOARD_$(_var)IMAGE_EXTFS_RSV_PCT)" >> $(2)) |
| 2247 | $(if $(BOARD_$(_var)IMAGE_F2FS_SLOAD_COMPRESS_FLAGS),$(hide) echo "$(1)_f2fs_sldc_flags=$(BOARD_$(_var)IMAGE_F2FS_SLOAD_COMPRESS_FLAGS)" >> $(2)) |
Daniel Rosenberg | d9a520c | 2023-10-13 17:22:44 -0700 | [diff] [blame] | 2248 | $(if $(BOARD_$(_var)IMAGE_F2FS_BLOCKSIZE),$(hide) echo "$(1)_f2fs_blocksize=$(BOARD_$(_var)IMAGE_F2FS_BLOCKSIZE)" >> $(2)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2249 | $(if $(BOARD_$(_var)IMAGE_FILE_SYSTEM_COMPRESS),$(hide) echo "$(1)_f2fs_compress=$(BOARD_$(_var)IMAGE_FILE_SYSTEM_COMPRESS)" >> $(2)) |
| 2250 | $(if $(BOARD_$(_var)IMAGE_FILE_SYSTEM_TYPE),$(hide) echo "$(1)_fs_type=$(BOARD_$(_var)IMAGE_FILE_SYSTEM_TYPE)" >> $(2)) |
| 2251 | $(if $(BOARD_$(_var)IMAGE_JOURNAL_SIZE),$(hide) echo "$(1)_journal_size=$(BOARD_$(_var)IMAGE_JOURNAL_SIZE)" >> $(2)) |
| 2252 | $(if $(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "$(1)_reserved_size=$(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE)" >> $(2)) |
| 2253 | $(if $(BOARD_$(_var)IMAGE_PARTITION_SIZE),$(hide) echo "$(1)_size=$(BOARD_$(_var)IMAGE_PARTITION_SIZE)" >> $(2)) |
| 2254 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "$(1)_squashfs_block_size=$(BOARD_$(_var)IMAGE_SQUASHFS_BLOCK_SIZE)" >> $(2)) |
| 2255 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "$(1)_squashfs_compressor=$(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR)" >> $(2)) |
| 2256 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "$(1)_squashfs_compressor_opt=$(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(2)) |
| 2257 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "$(1)_squashfs_disable_4k_align=$(BOARD_$(_var)IMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(2)) |
| 2258 | $(if $(PRODUCT_$(_var)_BASE_FS_PATH),$(hide) echo "$(1)_base_fs_file=$(PRODUCT_$(_var)_BASE_FS_PATH)" >> $(2)) |
| 2259 | $(eval _size := $(BOARD_$(_var)IMAGE_PARTITION_SIZE)) |
| 2260 | $(eval _reserved := $(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE)) |
| 2261 | $(eval _headroom := $(PRODUCT_$(_var)_HEADROOM)) |
David Anderson | 5f4aa6c | 2021-09-23 17:03:14 -0700 | [diff] [blame] | 2262 | $(if $(or $(_size), $(_reserved), $(_headroom)),, |
| 2263 | $(hide) echo "$(1)_disable_sparse=true" >> $(2)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2264 | $(call add-common-flags-to-image-props,$(1),$(2)) |
David Anderson | 9e95a02 | 2021-08-31 21:32:45 -0700 | [diff] [blame] | 2265 | endef |
| 2266 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2267 | # $(1): the path of the output dictionary file |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2268 | # $(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] | 2269 | # $(3): additional "key=value" pairs to append to the dictionary file. |
| 2270 | define generate-image-prop-dictionary |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2271 | $(if $(filter $(2),system),\ |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 2272 | $(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] | 2273 | $(if $(PRODUCT_SYSTEM_HEADROOM),$(hide) echo "system_headroom=$(PRODUCT_SYSTEM_HEADROOM)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2274 | $(call add-common-ro-flags-to-image-props,system,$(1)) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 2275 | ) |
| 2276 | $(if $(filter $(2),system_other),\ |
| 2277 | $(hide) echo "building_system_other_image=$(BUILDING_SYSTEM_OTHER_IMAGE)" >> $(1) |
David Anderson | 9e95a02 | 2021-08-31 21:32:45 -0700 | [diff] [blame] | 2278 | $(if $(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE),, |
| 2279 | $(hide) echo "system_other_disable_sparse=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2280 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2281 | $(if $(filter $(2),userdata),\ |
| 2282 | $(if $(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "userdata_fs_type=$(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 2283 | $(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] | 2284 | $(if $(PRODUCT_FS_CASEFOLD),$(hide) echo "needs_casefold=$(PRODUCT_FS_CASEFOLD)" >> $(1)) |
| 2285 | $(if $(PRODUCT_QUOTA_PROJID),$(hide) echo "needs_projid=$(PRODUCT_QUOTA_PROJID)" >> $(1)) |
Jaegeuk Kim | 55c16dd | 2020-10-12 19:50:05 -0700 | [diff] [blame] | 2286 | $(if $(PRODUCT_FS_COMPRESSION),$(hide) echo "needs_compress=$(PRODUCT_FS_COMPRESSION)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2287 | $(call add-common-flags-to-image-props,userdata,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2288 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2289 | $(if $(filter $(2),cache),\ |
| 2290 | $(if $(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "cache_fs_type=$(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 2291 | $(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] | 2292 | $(call add-common-flags-to-image-props,cache,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2293 | ) |
| 2294 | $(if $(filter $(2),vendor),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2295 | $(call add-common-ro-flags-to-image-props,vendor,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2296 | ) |
| 2297 | $(if $(filter $(2),product),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2298 | $(call add-common-ro-flags-to-image-props,product,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2299 | ) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2300 | $(if $(filter $(2),system_ext),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2301 | $(call add-common-ro-flags-to-image-props,system_ext,$(1)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2302 | ) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2303 | $(if $(filter $(2),odm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2304 | $(call add-common-ro-flags-to-image-props,odm,$(1)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2305 | ) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2306 | $(if $(filter $(2),vendor_dlkm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2307 | $(call add-common-ro-flags-to-image-props,vendor_dlkm,$(1)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2308 | ) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2309 | $(if $(filter $(2),odm_dlkm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 2310 | $(call add-common-ro-flags-to-image-props,odm_dlkm,$(1)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2311 | ) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2312 | $(if $(filter $(2),system_dlkm),\ |
| 2313 | $(call add-common-ro-flags-to-image-props,system_dlkm,$(1)) |
| 2314 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2315 | $(if $(filter $(2),oem),\ |
| 2316 | $(if $(BOARD_OEMIMAGE_PARTITION_SIZE),$(hide) echo "oem_size=$(BOARD_OEMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 2317 | $(if $(BOARD_OEMIMAGE_JOURNAL_SIZE),$(hide) echo "oem_journal_size=$(BOARD_OEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 2318 | $(if $(BOARD_OEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "oem_extfs_inode_count=$(BOARD_OEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 2319 | $(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] | 2320 | $(call add-common-flags-to-image-props,oem,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2321 | ) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 2322 | $(hide) echo "ext_mkuserimg=$(notdir $(MKEXTUSERIMG))" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2323 | |
Cole Faust | 8fc7bef | 2022-06-15 16:10:49 -0700 | [diff] [blame] | 2324 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT2)),$(hide) echo "fs_type=ext2" >> $(1), |
| 2325 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT3)),$(hide) echo "fs_type=ext3" >> $(1), |
| 2326 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT4)),$(hide) echo "fs_type=ext4" >> $(1)))) |
| 2327 | |
| 2328 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)),,$(hide) echo "extfs_sparse_flag=-s" >> $(1)) |
| 2329 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EROFS_DISABLED)),,$(hide) echo "erofs_sparse_flag=-s" >> $(1)) |
| 2330 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_SQUASHFS_DISABLED)),,$(hide) echo "squashfs_sparse_flag=-s" >> $(1)) |
| 2331 | $(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] | 2332 | $(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] | 2333 | $(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] | 2334 | $(if $(BOARD_EROFS_PCLUSTER_SIZE),$(hide) echo "erofs_pcluster_size=$(BOARD_EROFS_PCLUSTER_SIZE)" >> $(1)) |
Sandeep Dhavale | d7cc7e8 | 2023-09-11 22:25:53 -0700 | [diff] [blame] | 2335 | $(if $(BOARD_EROFS_BLOCKSIZE),$(hide) echo "erofs_blocksize=$(BOARD_EROFS_BLOCKSIZE)" >> $(1)) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 2336 | $(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] | 2337 | $(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] | 2338 | $(if $(BOARD_EXT4_SHARE_DUP_BLOCKS),$(hide) echo "ext4_share_dup_blocks=$(BOARD_EXT4_SHARE_DUP_BLOCKS)" >> $(1)) |
Daniel Rosenberg | d9a520c | 2023-10-13 17:22:44 -0700 | [diff] [blame] | 2339 | $(if $(BOARD_F2FS_BLOCKSIZE),$(hide) echo "f2fs_blocksize=$(BOARD_F2FS_BLOCKSIZE)" >> $(1)) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 2340 | $(if $(BOARD_FLASH_LOGICAL_BLOCK_SIZE), $(hide) echo "flash_logical_block_size=$(BOARD_FLASH_LOGICAL_BLOCK_SIZE)" >> $(1)) |
| 2341 | $(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] | 2342 | $(if $(filter eng, $(TARGET_BUILD_VARIANT)),$(hide) echo "verity_disable=true" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2343 | $(if $(PRODUCT_SYSTEM_VERITY_PARTITION),$(hide) echo "system_verity_block_device=$(PRODUCT_SYSTEM_VERITY_PARTITION)" >> $(1)) |
| 2344 | $(if $(PRODUCT_VENDOR_VERITY_PARTITION),$(hide) echo "vendor_verity_block_device=$(PRODUCT_VENDOR_VERITY_PARTITION)" >> $(1)) |
| 2345 | $(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] | 2346 | $(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] | 2347 | $(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] | 2348 | $(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] | 2349 | $(if $(PRODUCT_SYSTEM_DLKM_VERITY_PARTITION),$(hide) echo "system_dlkm_verity_block_device=$(PRODUCT_SYSTEM_DLKM_VERITY_PARTITION)" >> $(1)) |
Cole Faust | 13d374a | 2023-09-28 12:04:56 -0700 | [diff] [blame] | 2350 | $(if $(BOARD_AVB_ENABLE), \ |
| 2351 | $(hide) echo "avb_avbtool=$(notdir $(AVBTOOL))" >> $(1)$(newline) \ |
| 2352 | $(if $(filter $(2),system), \ |
| 2353 | $(hide) echo "avb_system_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)$(newline) \ |
| 2354 | $(hide) echo "avb_system_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)$(newline) \ |
| 2355 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH), \ |
| 2356 | $(hide) echo "avb_system_key_path=$(BOARD_AVB_SYSTEM_KEY_PATH)" >> $(1)$(newline) \ |
| 2357 | $(hide) echo "avb_system_algorithm=$(BOARD_AVB_SYSTEM_ALGORITHM)" >> $(1)$(newline) \ |
| 2358 | $(hide) echo "avb_system_rollback_index_location=$(BOARD_AVB_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $(1)$(newline))) \ |
| 2359 | $(if $(filter $(2),system_other), \ |
| 2360 | $(hide) echo "avb_system_other_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)$(newline) \ |
| 2361 | $(hide) echo "avb_system_other_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)$(newline) \ |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 2362 | $(if $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH),\ |
Cole Faust | 13d374a | 2023-09-28 12:04:56 -0700 | [diff] [blame] | 2363 | $(hide) echo "avb_system_other_key_path=$(BOARD_AVB_SYSTEM_OTHER_KEY_PATH)" >> $(1)$(newline) \ |
| 2364 | $(hide) echo "avb_system_other_algorithm=$(BOARD_AVB_SYSTEM_OTHER_ALGORITHM)" >> $(1)$(newline))) \ |
| 2365 | $(if $(filter $(2),vendor), \ |
| 2366 | $(hide) echo "avb_vendor_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)$(newline) \ |
| 2367 | $(hide) echo "avb_vendor_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)$(newline) \ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 2368 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
Cole Faust | 13d374a | 2023-09-28 12:04:56 -0700 | [diff] [blame] | 2369 | $(hide) echo "avb_vendor_key_path=$(BOARD_AVB_VENDOR_KEY_PATH)" >> $(1)$(newline) \ |
| 2370 | $(hide) echo "avb_vendor_algorithm=$(BOARD_AVB_VENDOR_ALGORITHM)" >> $(1)$(newline) \ |
| 2371 | $(hide) echo "avb_vendor_rollback_index_location=$(BOARD_AVB_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $(1)$(newline))) \ |
| 2372 | $(if $(filter $(2),product), \ |
| 2373 | $(hide) echo "avb_product_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)$(newline) \ |
| 2374 | $(hide) echo "avb_product_add_hashtree_footer_args=$(BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)$(newline) \ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2375 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
Cole Faust | 13d374a | 2023-09-28 12:04:56 -0700 | [diff] [blame] | 2376 | $(hide) echo "avb_product_key_path=$(BOARD_AVB_PRODUCT_KEY_PATH)" >> $(1)$(newline) \ |
| 2377 | $(hide) echo "avb_product_algorithm=$(BOARD_AVB_PRODUCT_ALGORITHM)" >> $(1)$(newline) \ |
| 2378 | $(hide) echo "avb_product_rollback_index_location=$(BOARD_AVB_PRODUCT_ROLLBACK_INDEX_LOCATION)" >> $(1)$(newline))) \ |
| 2379 | $(if $(filter $(2),system_ext), \ |
| 2380 | $(hide) echo "avb_system_ext_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)$(newline) \ |
| 2381 | $(hide) echo "avb_system_ext_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)$(newline) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2382 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
Cole Faust | 13d374a | 2023-09-28 12:04:56 -0700 | [diff] [blame] | 2383 | $(hide) echo "avb_system_ext_key_path=$(BOARD_AVB_SYSTEM_EXT_KEY_PATH)" >> $(1)$(newline) \ |
| 2384 | $(hide) echo "avb_system_ext_algorithm=$(BOARD_AVB_SYSTEM_EXT_ALGORITHM)" >> $(1)$(newline) \ |
| 2385 | $(hide) echo "avb_system_ext_rollback_index_location=$(BOARD_AVB_SYSTEM_EXT_ROLLBACK_INDEX_LOCATION)" >> $(1)$(newline))) \ |
| 2386 | $(if $(filter $(2),odm), \ |
| 2387 | $(hide) echo "avb_odm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)$(newline) \ |
| 2388 | $(hide) echo "avb_odm_add_hashtree_footer_args=$(BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)$(newline) \ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2389 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
Cole Faust | 13d374a | 2023-09-28 12:04:56 -0700 | [diff] [blame] | 2390 | $(hide) echo "avb_odm_key_path=$(BOARD_AVB_ODM_KEY_PATH)" >> $(1)$(newline) \ |
| 2391 | $(hide) echo "avb_odm_algorithm=$(BOARD_AVB_ODM_ALGORITHM)" >> $(1)$(newline) \ |
| 2392 | $(hide) echo "avb_odm_rollback_index_location=$(BOARD_AVB_ODM_ROLLBACK_INDEX_LOCATION)" >> $(1)$(newline))) \ |
| 2393 | $(if $(filter $(2),vendor_dlkm), \ |
| 2394 | $(hide) echo "avb_vendor_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)$(newline) \ |
| 2395 | $(hide) echo "avb_vendor_dlkm_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)$(newline) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2396 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
Cole Faust | 13d374a | 2023-09-28 12:04:56 -0700 | [diff] [blame] | 2397 | $(hide) echo "avb_vendor_dlkm_key_path=$(BOARD_AVB_VENDOR_DLKM_KEY_PATH)" >> $(1)$(newline) \ |
| 2398 | $(hide) echo "avb_vendor_dlkm_algorithm=$(BOARD_AVB_VENDOR_DLKM_ALGORITHM)" >> $(1)$(newline) \ |
| 2399 | $(hide) echo "avb_vendor_dlkm_rollback_index_location=$(BOARD_AVB_VENDOR_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1)$(newline))) \ |
| 2400 | $(if $(filter $(2),odm_dlkm), \ |
| 2401 | $(hide) echo "avb_odm_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)$(newline) \ |
| 2402 | $(hide) echo "avb_odm_dlkm_add_hashtree_footer_args=$(BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)$(newline) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2403 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
Cole Faust | 13d374a | 2023-09-28 12:04:56 -0700 | [diff] [blame] | 2404 | $(hide) echo "avb_odm_dlkm_key_path=$(BOARD_AVB_ODM_DLKM_KEY_PATH)" >> $(1)$(newline) \ |
| 2405 | $(hide) echo "avb_odm_dlkm_algorithm=$(BOARD_AVB_ODM_DLKM_ALGORITHM)" >> $(1)$(newline) \ |
| 2406 | $(hide) echo "avb_odm_dlkm_rollback_index_location=$(BOARD_AVB_ODM_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1)$(newline))) \ |
| 2407 | $(if $(filter $(2),system_dlkm), \ |
| 2408 | $(hide) echo "avb_system_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)$(newline) \ |
| 2409 | $(hide) echo "avb_system_dlkm_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)$(newline) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2410 | $(if $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH),\ |
Cole Faust | 13d374a | 2023-09-28 12:04:56 -0700 | [diff] [blame] | 2411 | $(hide) echo "avb_system_dlkm_key_path=$(BOARD_AVB_SYSTEM_DLKM_KEY_PATH)" >> $(1)$(newline) \ |
| 2412 | $(hide) echo "avb_system_dlkm_algorithm=$(BOARD_AVB_SYSTEM_DLKM_ALGORITHM)" >> $(1)$(newline) \ |
| 2413 | $(hide) echo "avb_system_dlkm_rollback_index_location=$(BOARD_SYSTEM_SYSTEM_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1)$(newline))) \ |
| 2414 | ) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2415 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
| 2416 | $(hide) echo "recovery_as_boot=true" >> $(1)) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 2417 | $(hide) echo "root_dir=$(TARGET_ROOT_OUT)" >> $(1) |
Tamas Petz | 89418f0 | 2020-02-03 15:40:15 +0100 | [diff] [blame] | 2418 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITION_SIZE)),\ |
| 2419 | $(hide) echo "use_dynamic_partition_size=true" >> $(1)) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 2420 | $(if $(COPY_IMAGES_FOR_TARGET_FILES_ZIP),\ |
| 2421 | $(hide) echo "use_fixed_timestamp=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2422 | $(if $(3),$(hide) $(foreach kv,$(3),echo "$(kv)" >> $(1);)) |
Cole Faust | 13d374a | 2023-09-28 12:04:56 -0700 | [diff] [blame] | 2423 | $(hide) sort -o $(1) $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2424 | endef |
| 2425 | |
| 2426 | # $(1): the path of the output dictionary file |
| 2427 | # $(2): additional "key=value" pairs to append to the dictionary file. |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2428 | PROP_DICTIONARY_IMAGES := oem |
| 2429 | ifdef BUILDING_CACHE_IMAGE |
| 2430 | PROP_DICTIONARY_IMAGES += cache |
| 2431 | endif |
| 2432 | ifdef BUILDING_SYSTEM_IMAGE |
| 2433 | PROP_DICTIONARY_IMAGES += system |
| 2434 | endif |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 2435 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 2436 | PROP_DICTIONARY_IMAGES += system_other |
| 2437 | endif |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2438 | ifdef BUILDING_USERDATA_IMAGE |
| 2439 | PROP_DICTIONARY_IMAGES += userdata |
| 2440 | endif |
| 2441 | ifdef BUILDING_VENDOR_IMAGE |
| 2442 | PROP_DICTIONARY_IMAGES += vendor |
| 2443 | endif |
| 2444 | ifdef BUILDING_PRODUCT_IMAGE |
| 2445 | PROP_DICTIONARY_IMAGES += product |
| 2446 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2447 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 2448 | PROP_DICTIONARY_IMAGES += system_ext |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2449 | endif |
| 2450 | ifdef BUILDING_ODM_IMAGE |
| 2451 | PROP_DICTIONARY_IMAGES += odm |
| 2452 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2453 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 2454 | PROP_DICTIONARY_IMAGES += vendor_dlkm |
| 2455 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2456 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 2457 | PROP_DICTIONARY_IMAGES += odm_dlkm |
| 2458 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2459 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 2460 | PROP_DICTIONARY_IMAGES += system_dlkm |
| 2461 | endif |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2462 | define generate-userimage-prop-dictionary |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2463 | $(call generate-image-prop-dictionary,$(1),$(PROP_DICTIONARY_IMAGES),$(2)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2464 | endef |
| 2465 | |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 2466 | # $(1): the path of the input dictionary file, where each line has the format key=value |
| 2467 | # $(2): the key to look up |
| 2468 | define read-image-prop-dictionary |
| 2469 | $$(grep '$(2)=' $(1) | cut -f2- -d'=') |
| 2470 | endef |
| 2471 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2472 | # ----------------------------------------------------------------- |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2473 | # Recovery image |
Doug Zongker | 8cebf1f | 2009-07-07 17:14:25 -0700 | [diff] [blame] | 2474 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2475 | # 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] | 2476 | 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] | 2477 | ifdef BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2478 | |
Ying Wang | 3752614 | 2015-03-10 12:02:57 -0700 | [diff] [blame] | 2479 | INTERNAL_RECOVERYIMAGE_FILES := $(filter $(TARGET_RECOVERY_OUT)/%, \ |
| 2480 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2481 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2482 | INSTALLED_FILES_FILE_RECOVERY := $(PRODUCT_OUT)/installed-files-recovery.txt |
| 2483 | INSTALLED_FILES_JSON_RECOVERY := $(INSTALLED_FILES_FILE_RECOVERY:.txt=.json) |
| 2484 | |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 2485 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2486 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 2487 | endif |
| 2488 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2489 | # TODO(b/30414428): Can't depend on INTERNAL_RECOVERYIMAGE_FILES alone like other |
| 2490 | # INSTALLED_FILES_FILE_* rules. Because currently there're cp/rsync/rm commands in |
| 2491 | # build-recoveryimage-target, which would touch the files under TARGET_RECOVERY_OUT and race with |
| 2492 | # the call to FILELIST. |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 2493 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2494 | |
| 2495 | $(INSTALLED_FILES_FILE_RECOVERY): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RECOVERY) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2496 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERYIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2497 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 2498 | mkdir -p $(dir $@) |
| 2499 | rm -f $@ |
| 2500 | $(FILESLIST) $(TARGET_RECOVERY_ROOT_OUT) > $(@:.txt=.json) |
| 2501 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2502 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2503 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_RECOVERY))) |
| 2504 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_RECOVERY))) |
| 2505 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2506 | recovery_sepolicy := \ |
| 2507 | $(TARGET_RECOVERY_ROOT_OUT)/sepolicy \ |
Jeff Vander Stoep | 4ff042c | 2017-06-13 08:30:46 -0700 | [diff] [blame] | 2508 | $(TARGET_RECOVERY_ROOT_OUT)/plat_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2509 | $(TARGET_RECOVERY_ROOT_OUT)/plat_service_contexts \ |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2510 | $(TARGET_RECOVERY_ROOT_OUT)/plat_property_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 2511 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2512 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_service_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 2513 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_property_contexts \ |
| 2514 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2515 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_service_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2516 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_property_contexts \ |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 2517 | $(TARGET_RECOVERY_ROOT_OUT)/odm_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2518 | $(TARGET_RECOVERY_ROOT_OUT)/odm_property_contexts \ |
| 2519 | $(TARGET_RECOVERY_ROOT_OUT)/product_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2520 | $(TARGET_RECOVERY_ROOT_OUT)/product_service_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2521 | $(TARGET_RECOVERY_ROOT_OUT)/product_property_contexts |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 2522 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2523 | # Passed into rsync from non-recovery root to recovery root, to avoid overwriting recovery-specific |
| 2524 | # SELinux files |
| 2525 | IGNORE_RECOVERY_SEPOLICY := $(patsubst $(TARGET_RECOVERY_OUT)/%,--exclude=/%,$(recovery_sepolicy)) |
| 2526 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 2527 | # if building multiple boot images from multiple kernels, use the first kernel listed |
| 2528 | # for the recovery image |
| 2529 | recovery_kernel := $(firstword $(INSTALLED_KERNEL_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2530 | recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2531 | recovery_resources_common := bootable/recovery/res |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2532 | |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 2533 | # Set recovery_density to a density bucket based on TARGET_SCREEN_DENSITY, PRODUCT_AAPT_PREF_CONFIG, |
| 2534 | # or mdpi, in order of preference. We support both specific buckets (e.g. xdpi) and numbers, |
| 2535 | # which get remapped to a bucket. |
| 2536 | recovery_density := $(or $(TARGET_SCREEN_DENSITY),$(PRODUCT_AAPT_PREF_CONFIG),mdpi) |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 2537 | ifeq (,$(filter xxxhdpi xxhdpi xhdpi hdpi mdpi,$(recovery_density))) |
| 2538 | recovery_density_value := $(patsubst %dpi,%,$(recovery_density)) |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 2539 | # 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] | 2540 | # ------160------240------320----------480------------640------ |
| 2541 | # mdpi hdpi xhdpi xxhdpi xxxhdpi |
| 2542 | recovery_density := $(strip \ |
| 2543 | $(or $(if $(filter $(shell echo $$(($(recovery_density_value) >= 560))),1),xxxhdpi),\ |
| 2544 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 400))),1),xxhdpi),\ |
| 2545 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 280))),1),xhdpi),\ |
| 2546 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 200))),1),hdpi,mdpi))) |
Doug Zongker | 8eaeea9 | 2014-05-12 15:32:20 -0700 | [diff] [blame] | 2547 | endif |
| 2548 | |
| 2549 | ifneq (,$(wildcard $(recovery_resources_common)-$(recovery_density))) |
| 2550 | recovery_resources_common := $(recovery_resources_common)-$(recovery_density) |
| 2551 | else |
Doug Zongker | 25d55f8 | 2014-04-04 13:51:15 -0700 | [diff] [blame] | 2552 | recovery_resources_common := $(recovery_resources_common)-xhdpi |
| 2553 | endif |
| 2554 | |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 2555 | # Select the 18x32 font on high-density devices (xhdpi and up); and the 12x22 font on other devices. |
| 2556 | # Note that the font selected here can be overridden for a particular device by putting a font.png |
| 2557 | # in its private recovery resources. |
| 2558 | ifneq (,$(filter xxxhdpi xxhdpi xhdpi,$(recovery_density))) |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2559 | recovery_font := bootable/recovery/fonts/18x32.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2560 | else |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2561 | recovery_font := bootable/recovery/fonts/12x22.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2562 | endif |
| 2563 | |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2564 | |
| 2565 | # We will only generate the recovery background text images if the variable |
| 2566 | # TARGET_RECOVERY_UI_SCREEN_WIDTH is defined. For devices with xxxhdpi and xxhdpi, we set the |
| 2567 | # variable to the commonly used values here, if it hasn't been intialized elsewhere. While for |
| 2568 | # devices with lower density, they must have TARGET_RECOVERY_UI_SCREEN_WIDTH defined in their |
| 2569 | # BoardConfig in order to use this feature. |
| 2570 | ifeq ($(recovery_density),xxxhdpi) |
| 2571 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1440 |
| 2572 | else ifeq ($(recovery_density),xxhdpi) |
| 2573 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1080 |
| 2574 | endif |
| 2575 | |
| 2576 | ifneq ($(TARGET_RECOVERY_UI_SCREEN_WIDTH),) |
| 2577 | # Subtracts the margin width and menu indent from the screen width; it's safe to be conservative. |
| 2578 | ifeq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),) |
| 2579 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - 10)) |
| 2580 | else |
| 2581 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - $(TARGET_RECOVERY_UI_MARGIN_WIDTH) - 10)) |
| 2582 | endif |
| 2583 | |
| 2584 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2585 | 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] | 2586 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/installing_security_text.png |
| 2587 | RECOVERY_ERASING_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/erasing_text.png |
| 2588 | RECOVERY_ERROR_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/error_text.png |
| 2589 | RECOVERY_NO_COMMAND_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/no_command_text.png |
| 2590 | |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2591 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/cancel_wipe_data_text.png |
| 2592 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/factory_data_reset_text.png |
| 2593 | RECOVERY_TRY_AGAIN_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/try_again_text.png |
| 2594 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_confirmation_text.png |
| 2595 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_menu_header_text.png |
| 2596 | |
| 2597 | generated_recovery_text_files := \ |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2598 | $(RECOVERY_INSTALLING_TEXT_FILE) \ |
| 2599 | $(RECOVERY_INSTALLING_SECURITY_TEXT_FILE) \ |
| 2600 | $(RECOVERY_ERASING_TEXT_FILE) \ |
| 2601 | $(RECOVERY_ERROR_TEXT_FILE) \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2602 | $(RECOVERY_NO_COMMAND_TEXT_FILE) \ |
| 2603 | $(RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE) \ |
| 2604 | $(RECOVERY_FACTORY_DATA_RESET_TEXT_FILE) \ |
| 2605 | $(RECOVERY_TRY_AGAIN_TEXT_FILE) \ |
| 2606 | $(RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE) \ |
| 2607 | $(RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2608 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2609 | resource_dir := bootable/recovery/tools/recovery_l10n/res/ |
| 2610 | resource_dir_deps := $(sort $(shell find $(resource_dir) -name *.xml -not -name .*)) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2611 | image_generator_jar := $(HOST_OUT_JAVA_LIBRARIES)/RecoveryImageGenerator.jar |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2612 | zopflipng := $(HOST_OUT_EXECUTABLES)/zopflipng |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2613 | $(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] | 2614 | $(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] | 2615 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RESOURCE_DIR := $(resource_dir) |
| 2616 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_IMAGE_GENERATOR_JAR := $(image_generator_jar) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2617 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_ZOPFLIPNG := $(zopflipng) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2618 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_IMAGE_WIDTH := $(recovery_image_width) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2619 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_BACKGROUND_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2620 | recovery_installing \ |
| 2621 | recovery_installing_security \ |
| 2622 | recovery_erasing \ |
| 2623 | recovery_error \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2624 | recovery_no_command |
| 2625 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_WIPE_DATA_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2626 | recovery_cancel_wipe_data \ |
| 2627 | recovery_factory_data_reset \ |
| 2628 | recovery_try_again \ |
| 2629 | recovery_wipe_data_menu_header \ |
| 2630 | recovery_wipe_data_confirmation |
| 2631 | $(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] | 2632 | $(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] | 2633 | # Prepares the font directory. |
| 2634 | @rm -rf $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
| 2635 | @mkdir -p $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2636 | $(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] | 2637 | @rm -rf $(dir $@) |
| 2638 | @mkdir -p $(dir $@) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2639 | $(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] | 2640 | $(eval output_file := $(dir $@)/$(patsubst recovery_%,%_text.png,$(text_name))) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2641 | $(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] | 2642 | java -jar $(PRIVATE_IMAGE_GENERATOR_JAR) \ |
| 2643 | --image_width $(PRIVATE_RECOVERY_IMAGE_WIDTH) \ |
| 2644 | --text_name $(text_name) \ |
| 2645 | --font_dir $(PRIVATE_RECOVERY_FONT_FILES_DIR) \ |
| 2646 | --resource_dir $(PRIVATE_RESOURCE_DIR) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2647 | --output_file $(output_file) $(center_alignment) && \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2648 | $(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] | 2649 | else |
| 2650 | RECOVERY_INSTALLING_TEXT_FILE := |
| 2651 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := |
| 2652 | RECOVERY_ERASING_TEXT_FILE := |
| 2653 | RECOVERY_ERROR_TEXT_FILE := |
| 2654 | RECOVERY_NO_COMMAND_TEXT_FILE := |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2655 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := |
| 2656 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := |
| 2657 | RECOVERY_TRY_AGAIN_TEXT_FILE := |
| 2658 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := |
| 2659 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2660 | endif # TARGET_RECOVERY_UI_SCREEN_WIDTH |
| 2661 | |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2662 | ifndef TARGET_PRIVATE_RES_DIRS |
| 2663 | TARGET_PRIVATE_RES_DIRS := $(wildcard $(TARGET_DEVICE_DIR)/recovery/res) |
| 2664 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2665 | recovery_resource_deps := $(shell find $(recovery_resources_common) \ |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2666 | $(TARGET_PRIVATE_RES_DIRS) -type f) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2667 | recovery_resource_deps += $(generated_recovery_text_files) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2668 | |
| 2669 | |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2670 | ifdef TARGET_RECOVERY_FSTAB |
| 2671 | recovery_fstab := $(TARGET_RECOVERY_FSTAB) |
Cole Faust | 64c2ddb | 2022-01-07 12:44:31 -0800 | [diff] [blame] | 2672 | else ifdef TARGET_RECOVERY_FSTAB_GENRULE |
| 2673 | # Specifies a soong genrule module that generates an fstab. |
| 2674 | 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] | 2675 | else |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 2676 | recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab)) |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2677 | endif |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2678 | ifdef TARGET_RECOVERY_WIPE |
| 2679 | recovery_wipe := $(TARGET_RECOVERY_WIPE) |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2680 | else |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2681 | recovery_wipe := |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2682 | endif |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2683 | |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2684 | # Traditionally with non-A/B OTA we have: |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2685 | # boot.img + recovery-from-boot.p + recovery-resource.dat = recovery.img. |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2686 | # recovery-resource.dat is needed only if we carry an imgdiff patch of the boot and recovery images |
| 2687 | # 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] | 2688 | # |
| 2689 | # We no longer need that if one of the following conditions holds: |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2690 | # 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] | 2691 | # (BOARD_USES_FULL_RECOVERY_IMAGE = true); |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2692 | # b) We build a single image that contains boot and recovery both - no recovery image to install |
| 2693 | # (BOARD_USES_RECOVERY_AS_BOOT = true); |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2694 | # 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] | 2695 | # do bsdiff because boot and recovery will contain different number of entries |
| 2696 | # (BOARD_INCLUDE_RECOVERY_DTBO = true). |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2697 | # 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] | 2698 | # do bsdiff because boot and recovery will contain different number of entries |
| 2699 | # (BOARD_INCLUDE_RECOVERY_ACPIO = true). |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2700 | # 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] | 2701 | # install |
| 2702 | # (BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT = true). |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2703 | |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2704 | 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] | 2705 | $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO) \ |
Yifan Hong | ef7a971 | 2020-10-20 13:17:42 -0700 | [diff] [blame] | 2706 | $(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT))) |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2707 | # 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] | 2708 | RECOVERY_RESOURCE_ZIP := $(TARGET_OUT_VENDOR)/etc/recovery-resource.dat |
| 2709 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_RESOURCE_ZIP) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2710 | else |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2711 | RECOVERY_RESOURCE_ZIP := |
| 2712 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2713 | |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2714 | INSTALLED_RECOVERY_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/prop.default |
| 2715 | |
| 2716 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): PRIVATE_RECOVERY_UI_PROPERTIES := \ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2717 | TARGET_RECOVERY_UI_ANIMATION_FPS:animation_fps \ |
| 2718 | TARGET_RECOVERY_UI_MARGIN_HEIGHT:margin_height \ |
| 2719 | TARGET_RECOVERY_UI_MARGIN_WIDTH:margin_width \ |
| 2720 | TARGET_RECOVERY_UI_MENU_UNUSABLE_ROWS:menu_unusable_rows \ |
| 2721 | TARGET_RECOVERY_UI_PROGRESS_BAR_BASELINE:progress_bar_baseline \ |
| 2722 | TARGET_RECOVERY_UI_TOUCH_LOW_THRESHOLD:touch_low_threshold \ |
| 2723 | TARGET_RECOVERY_UI_TOUCH_HIGH_THRESHOLD:touch_high_threshold \ |
Chuong Hoang | b684a13 | 2023-06-30 04:44:23 +0000 | [diff] [blame] | 2724 | TARGET_RECOVERY_UI_VR_STEREO_OFFSET:vr_stereo_offset \ |
| 2725 | TARGET_RECOVERY_UI_BRIGHTNESS_FILE:brightness_file \ |
| 2726 | TARGET_RECOVERY_UI_MAX_BRIGHTNESS_FILE:max_brightness_file \ |
| 2727 | TARGET_RECOVERY_UI_BRIGHTNESS_NORMAL:brightness_normal_percent \ |
| 2728 | TARGET_RECOVERY_UI_BRIGHTNESS_DIMMED:brightness_dimmed_percent |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2729 | |
| 2730 | # Parses the given list of build variables and writes their values as build properties if defined. |
| 2731 | # For example, if a target defines `TARGET_RECOVERY_UI_MARGIN_HEIGHT := 100`, |
| 2732 | # `ro.recovery.ui.margin_height=100` will be appended to the given output file. |
| 2733 | # $(1): Map from the build variable names to property names |
| 2734 | # $(2): Output file |
| 2735 | define append-recovery-ui-properties |
| 2736 | echo "#" >> $(2) |
| 2737 | echo "# RECOVERY UI BUILD PROPERTIES" >> $(2) |
| 2738 | echo "#" >> $(2) |
| 2739 | $(foreach prop,$(1), \ |
| 2740 | $(eval _varname := $(call word-colon,1,$(prop))) \ |
| 2741 | $(eval _propname := $(call word-colon,2,$(prop))) \ |
| 2742 | $(eval _value := $($(_varname))) \ |
| 2743 | $(if $(_value), \ |
| 2744 | echo ro.recovery.ui.$(_propname)=$(_value) >> $(2) &&)) true |
| 2745 | endef |
| 2746 | |
| 2747 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): \ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2748 | $(INSTALLED_BUILD_PROP_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2749 | $(INSTALLED_VENDOR_BUILD_PROP_TARGET) \ |
| 2750 | $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2751 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2752 | $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) |
Tao Bao | 1edaca1 | 2018-09-18 10:22:54 -0700 | [diff] [blame] | 2753 | @echo "Target recovery buildinfo: $@" |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2754 | $(hide) mkdir -p $(dir $@) |
| 2755 | $(hide) rm -f $@ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2756 | $(hide) cat $(INSTALLED_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2757 | $(hide) cat $(INSTALLED_VENDOR_BUILD_PROP_TARGET) >> $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2758 | $(hide) cat $(INSTALLED_ODM_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2759 | $(hide) cat $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) >> $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2760 | $(hide) cat $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2761 | $(call append-recovery-ui-properties,$(PRIVATE_RECOVERY_UI_PROPERTIES),$@) |
| 2762 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2763 | $(call declare-1p-target,$(INSTALLED_RECOVERY_BUILD_PROP_TARGET),build) |
| 2764 | $(call declare-license-deps,$(INSTALLED_RECOVERY_BUILD_PROP_TARGET),\ |
| 2765 | $(INSTALLED_BUILD_PROP_TARGET) $(INSTALLED_VENDOR_BUILD_PROP_TARGET) $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2766 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET)) |
| 2767 | |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2768 | # Only install boot/etc/build.prop to recovery image on recovery_as_boot. |
| 2769 | # On device with dedicated recovery partition, the file should come from the boot |
| 2770 | # ramdisk. |
| 2771 | ifeq (true,$(BOARD_USES_RECOVERY_AS_BOOT)) |
| 2772 | INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/$(RAMDISK_BUILD_PROP_REL_PATH) |
| 2773 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET): $(INSTALLED_RAMDISK_BUILD_PROP_TARGET) |
| 2774 | $(copy-file-to-target) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2775 | |
| 2776 | $(call declare-1p-target,$(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET),build) |
| 2777 | $(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] | 2778 | endif |
| 2779 | |
Yifan Hong | c56931c | 2020-10-28 16:35:19 -0700 | [diff] [blame] | 2780 | INTERNAL_RECOVERYIMAGE_ARGS := --ramdisk $(recovery_ramdisk) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2781 | |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 2782 | 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] | 2783 | INTERNAL_RECOVERYIMAGE_ARGS += $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2784 | # Assumes this has already been stripped |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2785 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 2786 | ifdef INTERNAL_KERNEL_CMDLINE |
| 2787 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2788 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 2789 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2790 | ifdef BOARD_KERNEL_BASE |
| 2791 | INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 2792 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 2793 | ifdef BOARD_KERNEL_PAGESIZE |
| 2794 | INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 2795 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2796 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2797 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2798 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2799 | else |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2800 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_DTBOIMAGE) |
| 2801 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 2802 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2803 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 2804 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_acpio $(BOARD_RECOVERY_ACPIO) |
| 2805 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2806 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 2807 | INTERNAL_RECOVERYIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 2808 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 2809 | endif # (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2810 | ifndef BOARD_RECOVERY_MKBOOTIMG_ARGS |
| 2811 | BOARD_RECOVERY_MKBOOTIMG_ARGS := $(BOARD_MKBOOTIMG_ARGS) |
| 2812 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2813 | |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2814 | $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP): $(MKBOOTFS) $(COMPRESSION_COMMAND_DEPS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2815 | $(INTERNAL_ROOT_FILES) \ |
| 2816 | $(INSTALLED_RAMDISK_TARGET) \ |
| 2817 | $(INTERNAL_RECOVERYIMAGE_FILES) \ |
| 2818 | $(recovery_sepolicy) \ |
| 2819 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 2820 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET) \ |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2821 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2822 | $(recovery_resource_deps) \ |
| 2823 | $(recovery_fstab) |
| 2824 | # Making recovery image |
| 2825 | mkdir -p $(TARGET_RECOVERY_OUT) |
| 2826 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sdcard $(TARGET_RECOVERY_ROOT_OUT)/tmp |
| 2827 | # Copying baseline ramdisk... |
| 2828 | # Use rsync because "cp -Rf" fails to overwrite broken symlinks on Mac. |
| 2829 | rsync -a --exclude=sdcard $(IGNORE_RECOVERY_SEPOLICY) $(IGNORE_CACHE_LINK) $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT) |
| 2830 | # Modifying ramdisk contents... |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2831 | ln -sf /system/bin/init $(TARGET_RECOVERY_ROOT_OUT)/init |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2832 | # Removes $(TARGET_RECOVERY_ROOT_OUT)/init*.rc EXCEPT init.recovery*.rc. |
| 2833 | find $(TARGET_RECOVERY_ROOT_OUT) -maxdepth 1 -name 'init*.rc' -type f -not -name "init.recovery.*.rc" | xargs rm -f |
| 2834 | cp $(TARGET_ROOT_OUT)/init.recovery.*.rc $(TARGET_RECOVERY_ROOT_OUT)/ 2> /dev/null || true # Ignore error when the src file doesn't exist. |
| 2835 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2836 | rm -rf $(TARGET_RECOVERY_ROOT_OUT)/res/* |
| 2837 | cp -rf $(recovery_resources_common)/* $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2838 | $(foreach recovery_text_file,$(generated_recovery_text_files), \ |
| 2839 | cp -rf $(recovery_text_file) $(TARGET_RECOVERY_ROOT_OUT)/res/images/ &&) true |
| 2840 | cp -f $(recovery_font) $(TARGET_RECOVERY_ROOT_OUT)/res/images/font.png |
| 2841 | $(foreach item,$(TARGET_PRIVATE_RES_DIRS), \ |
| 2842 | cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/$(newline)) |
| 2843 | $(foreach item,$(recovery_fstab), \ |
| 2844 | cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.fstab) |
| 2845 | $(if $(strip $(recovery_wipe)), \ |
| 2846 | cp -f $(recovery_wipe) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.wipe) |
| 2847 | ln -sf prop.default $(TARGET_RECOVERY_ROOT_OUT)/default.prop |
Peter Collingbourne | 69281c3 | 2024-02-23 22:38:54 -0800 | [diff] [blame] | 2848 | # Silence warnings in first_stage_console. |
| 2849 | touch $(TARGET_RECOVERY_ROOT_OUT)/linkerconfig/ld.config.txt |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2850 | $(BOARD_RECOVERY_IMAGE_PREPARE) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2851 | $(hide) touch $@ |
| 2852 | |
| 2853 | $(recovery_ramdisk): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2854 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RECOVERY_ROOT_OUT) | $(COMPRESSION_COMMAND) > $(recovery_ramdisk) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2855 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2856 | # $(1): output file |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2857 | # $(2): optional kernel file |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2858 | define build-recoveryimage-target |
Jakub Czapiga | 31f6e08 | 2024-06-18 15:39:09 +0000 | [diff] [blame] | 2859 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
| 2860 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
| 2861 | $(BOARD_RECOVERY_MKBOOTIMG_ARGS) --output $(1) |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 2862 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2863 | $(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] | 2864 | $(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] | 2865 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 2866 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 2867 | $(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),\ |
| 2868 | $(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] | 2869 | endef |
| 2870 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2871 | recoveryimage-deps := $(MKBOOTIMG) $(recovery_ramdisk) $(recovery_kernel) |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2872 | ifeq (true,$(BOARD_AVB_ENABLE)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2873 | recoveryimage-deps += $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2874 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2875 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2876 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2877 | recoveryimage-deps += $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2878 | else |
| 2879 | recoveryimage-deps += $(BOARD_PREBUILT_DTBOIMAGE) |
| 2880 | endif |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2881 | endif |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2882 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2883 | recoveryimage-deps += $(BOARD_RECOVERY_ACPIO) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2884 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2885 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2886 | recoveryimage-deps += $(INSTALLED_DTBIMAGE_TARGET) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2887 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2888 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2889 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 2890 | $(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] | 2891 | $(INSTALLED_BOOTIMAGE_TARGET): $(recoveryimage-deps) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2892 | $(call pretty,"Target boot image from recovery: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2893 | $(call build-recoveryimage-target, $@, $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $@)))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2894 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 2895 | $(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] | 2896 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(recoveryimage-deps),$(PRODUCT_OUT)/:/) |
| 2897 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2898 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_BOOTIMAGE_TARGET) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2899 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2900 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2901 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(recoveryimage-deps) |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2902 | $(call build-recoveryimage-target, $@, \ |
| 2903 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2904 | |
Tao Bao | 4594d0e | 2015-12-22 09:47:46 -0800 | [diff] [blame] | 2905 | ifdef RECOVERY_RESOURCE_ZIP |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2906 | $(RECOVERY_RESOURCE_ZIP): $(INSTALLED_RECOVERYIMAGE_TARGET) | $(ZIPTIME) |
Doug Zongker | 1a09726 | 2012-09-04 14:45:11 -0700 | [diff] [blame] | 2907 | $(hide) mkdir -p $(dir $@) |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2908 | $(hide) find $(TARGET_RECOVERY_ROOT_OUT)/res -type f | sort | zip -0qrjX $@ -@ |
| 2909 | $(remove-timestamps-from-package) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2910 | endif |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2911 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2912 | |
| 2913 | $(call declare-1p-container,$(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 2914 | $(call declare-container-license-deps,$(INSTALLED_RECOVERYIMAGE_TARGET),$(recoveryimage-deps),$(PRODUCT_OUT)/:/) |
| 2915 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2916 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_RECOVERYIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2917 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2918 | .PHONY: recoveryimage-nodeps |
| 2919 | recoveryimage-nodeps: |
| 2920 | @echo "make $@: ignoring dependencies" |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2921 | $(call build-recoveryimage-target, $(INSTALLED_RECOVERYIMAGE_TARGET), \ |
| 2922 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2923 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2924 | else # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2925 | RECOVERY_RESOURCE_ZIP := |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2926 | endif # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2927 | |
| 2928 | .PHONY: recoveryimage |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2929 | recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET) $(RECOVERY_RESOURCE_ZIP) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2930 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2931 | ifneq ($(BOARD_NAND_PAGE_SIZE),) |
| 2932 | $(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] | 2933 | endif |
| 2934 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2935 | ifneq ($(BOARD_NAND_SPARE_SIZE),) |
| 2936 | $(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] | 2937 | endif |
| 2938 | |
Jihoon Kang | a6af369 | 2024-12-02 19:18:22 +0000 | [diff] [blame] | 2939 | recovery_intermediates := $(call intermediates-dir-for,PACKAGING,recovery) |
| 2940 | $(eval $(call write-partition-file-list,$(recovery_intermediates)/file_list.txt,$(TARGET_RECOVERY_OUT),$(INTERNAL_RECOVERYIMAGE_FILES))) |
| 2941 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2942 | |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2943 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2944 | # Build debug ramdisk and debug boot image. |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2945 | 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] | 2946 | ifneq ($(BUILDING_DEBUG_BOOT_IMAGE)$(BUILDING_DEBUG_VENDOR_BOOT_IMAGE),) |
| 2947 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2948 | INTERNAL_DEBUG_RAMDISK_FILES := $(filter $(TARGET_DEBUG_RAMDISK_OUT)/%, \ |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2949 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2950 | |
| 2951 | # Directories to be picked into the debug ramdisk. |
| 2952 | # As these directories are all merged into one single cpio archive, the order |
| 2953 | # matters. If there are multiple files with the same pathname, then the last one |
| 2954 | # wins. |
| 2955 | # |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2956 | # ramdisk-debug.img will merge the content from either ramdisk.img or |
| 2957 | # ramdisk-recovery.img, depending on whether BOARD_USES_RECOVERY_AS_BOOT |
| 2958 | # is set or not. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2959 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2960 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS := $(TARGET_RECOVERY_ROOT_OUT) |
| 2961 | INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET := $(recovery_ramdisk) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2962 | else # BOARD_USES_RECOVERY_AS_BOOT == true |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2963 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS := $(TARGET_RAMDISK_OUT) |
| 2964 | INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET := $(INSTALLED_RAMDISK_TARGET) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2965 | endif # BOARD_USES_RECOVERY_AS_BOOT != true |
| 2966 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2967 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS += $(TARGET_DEBUG_RAMDISK_OUT) |
| 2968 | INTERNAL_DEBUG_RAMDISK_SRC_DEPS := $(INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET) $(INTERNAL_DEBUG_RAMDISK_FILES) |
| 2969 | |
| 2970 | # INSTALLED_FILES_FILE_DEBUG_RAMDISK would ensure TARGET_DEBUG_RAMDISK_OUT is created. |
| 2971 | INSTALLED_FILES_FILE_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk-debug.txt |
| 2972 | INSTALLED_FILES_JSON_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK:.txt=.json) |
| 2973 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_DEBUG_RAMDISK) |
| 2974 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(INTERNAL_DEBUG_RAMDISK_SRC_DEPS) |
| 2975 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(FILESLIST) $(FILESLIST_UTIL) |
| 2976 | @echo "Installed file list: $@" |
| 2977 | $(hide) rm -f $@ |
| 2978 | $(hide) mkdir -p $(dir $@) $(TARGET_DEBUG_RAMDISK_OUT) |
| 2979 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
| 2980 | $(FILESLIST) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) > $(@:.txt=.json) |
| 2981 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2982 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2983 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_DEBUG_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2984 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_DEBUG_RAMDISK))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2985 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2986 | ifdef BUILDING_DEBUG_BOOT_IMAGE |
| 2987 | |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2988 | # ----------------------------------------------------------------- |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2989 | # the debug ramdisk, which is the original ramdisk plus additional |
| 2990 | # files: force_debuggable, adb_debug.prop and userdebug sepolicy. |
| 2991 | # When /force_debuggable is present, /init will load userdebug sepolicy |
| 2992 | # 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] | 2993 | INSTALLED_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-debug.img |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2994 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2995 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2996 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2997 | @echo "Target debug ramdisk: $@" |
| 2998 | $(hide) rm -f $@ |
| 2999 | $(hide) mkdir -p $(dir $@) |
| 3000 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3001 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3002 | $(call declare-1p-container,$(INSTALLED_DEBUG_RAMDISK_TARGET),) |
| 3003 | $(call declare-container-license-deps,$(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 3004 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3005 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3006 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3007 | .PHONY: ramdisk_debug-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 3008 | ramdisk_debug-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3009 | @echo "make $@: ignoring dependencies" |
| 3010 | $(hide) rm -f $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 3011 | $(hide) mkdir -p $(dir $(INSTALLED_DEBUG_RAMDISK_TARGET)) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) |
| 3012 | $(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] | 3013 | |
| 3014 | # ----------------------------------------------------------------- |
| 3015 | # the boot-debug.img, which is the kernel plus ramdisk-debug.img |
| 3016 | # |
| 3017 | # Note: it's intentional to skip signing for boot-debug.img, because it |
| 3018 | # can only be used if the device is unlocked with verification error. |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 3019 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 3020 | 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] | 3021 | $(PRODUCT_OUT)/$(k).img) |
| 3022 | else |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 3023 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-debug.img |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 3024 | endif |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3025 | |
| 3026 | # 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] | 3027 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3028 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3029 | 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] | 3030 | else |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3031 | 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] | 3032 | endif |
| 3033 | |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 3034 | # If boot.img is chained but boot-debug.img is not signed, libavb in bootloader |
| 3035 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 3036 | # Using a test key to sign boot-debug.img to continue booting with the mismatched |
| 3037 | # public key, if the device is unlocked. |
| 3038 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3039 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 3040 | endif |
| 3041 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3042 | BOARD_AVB_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 3043 | INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 3044 | # $(1): the bootimage to sign |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 3045 | # $(2): boot image variant (boot, boot-debug, boot-test-harness) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3046 | define test-key-sign-bootimage |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 3047 | $(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] | 3048 | $(AVBTOOL) add_hash_footer \ |
| 3049 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 3050 | $(call get-partition-size-argument,$(call get-bootimage-partition-size,$(1),$(2)))\ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3051 | --partition_name boot $(INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS) \ |
| 3052 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 3053 | $(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] | 3054 | endef |
| 3055 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 3056 | # $(1): output file |
| 3057 | define build-debug-bootimage-target |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 3058 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-debug,kernel,$(notdir $(1)))) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 3059 | $(INTERNAL_DEBUG_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 3060 | $(BOARD_MKBOOTIMG_ARGS) --output $1 |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 3061 | $(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] | 3062 | endef |
| 3063 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3064 | # 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] | 3065 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_BOOTIMAGE_TARGET) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3066 | $(call pretty,"Target boot debug image: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 3067 | $(call build-debug-bootimage-target, $@) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3068 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 3069 | $(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] | 3070 | $(call declare-container-license-deps,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(INSTALLED_BOOTIMAGE_TARGET),$(PRODUCT_OUT)/:/) |
| 3071 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3072 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3073 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3074 | .PHONY: bootimage_debug-nodeps |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 3075 | bootimage_debug-nodeps: $(MKBOOTIMG) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3076 | echo "make $@: ignoring dependencies" |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 3077 | $(foreach b,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(call build-debug-bootimage-target,$b)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3078 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 3079 | endif # BUILDING_DEBUG_BOOT_IMAGE |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3080 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 3081 | # ----------------------------------------------------------------- |
| 3082 | # vendor debug ramdisk |
| 3083 | # 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] | 3084 | 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] | 3085 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 3086 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 3087 | INTERNAL_VENDOR_DEBUG_RAMDISK_FILES := $(filter $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/%, \ |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 3088 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 3089 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3090 | # The debug vendor ramdisk combines vendor ramdisk and debug ramdisk. |
| 3091 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS := $(TARGET_VENDOR_RAMDISK_OUT) |
| 3092 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS := $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 3093 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 3094 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 3095 | # recovery ramdisk in vendor_boot. |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 3096 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3097 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 3098 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS += $(TARGET_RECOVERY_ROOT_OUT) |
| 3099 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS += $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 3100 | endif # BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT != true |
| 3101 | endif # BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT == true |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 3102 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3103 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS += $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) $(TARGET_DEBUG_RAMDISK_OUT) |
| 3104 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS += $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
| 3105 | |
| 3106 | # INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK would ensure TARGET_VENDOR_DEBUG_RAMDISK_OUT is created. |
| 3107 | INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk-debug.txt |
| 3108 | INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK:.txt=.json) |
| 3109 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK) |
| 3110 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS) |
| 3111 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(FILESLIST) $(FILESLIST_UTIL) |
| 3112 | @echo "Installed file list: $@" |
| 3113 | $(hide) rm -f $@ |
| 3114 | $(hide) mkdir -p $(dir $@) $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) |
| 3115 | $(FILESLIST) $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) > $(@:.txt=.json) |
| 3116 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 3117 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3118 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK)) |
| 3119 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3120 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3121 | INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-debug)/vendor_ramdisk-debug.cpio$(RAMDISK_EXT) |
| 3122 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 3123 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3124 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 3125 | $(hide) rm -f $@ |
| 3126 | $(hide) mkdir -p $(dir $@) |
| 3127 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 3128 | |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 3129 | INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-debug.img |
| 3130 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET) |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 3131 | @echo "Target debug vendor ramdisk: $@" |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 3132 | $(copy-file-to-target) |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 3133 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3134 | $(call declare-1p-container,$(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET),) |
| 3135 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET),$(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 3136 | |
| 3137 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET) |
| 3138 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 3139 | # ----------------------------------------------------------------- |
| 3140 | # vendor_boot-debug.img. |
| 3141 | INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-debug.img |
| 3142 | |
| 3143 | # The util to sign vendor_boot-debug.img with a test key. |
| 3144 | BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 3145 | INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 3146 | # $(1): the vendor bootimage to sign |
| 3147 | define test-key-sign-vendor-bootimage |
| 3148 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE))) |
| 3149 | $(AVBTOOL) add_hash_footer \ |
| 3150 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 3151 | $(call get-partition-size-argument,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) \ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 3152 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS) \ |
| 3153 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 3154 | $(call assert-max-image-size,$(1),$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 3155 | endef |
| 3156 | |
| 3157 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 3158 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 3159 | endif |
| 3160 | |
| 3161 | # 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] | 3162 | $(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] | 3163 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 3164 | $(call pretty,"Target vendor_boot debug image: $@") |
Bowgo Tsai | 7ac9603 | 2021-01-20 16:29:49 +0800 | [diff] [blame] | 3165 | $(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] | 3166 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 3167 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 3168 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3169 | $(call declare-1p-container,$(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET),) |
| 3170 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 3171 | |
| 3172 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET) |
| 3173 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 3174 | endif # BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 3175 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3176 | # Appends a few test harness specific properties into the adb_debug.prop. |
| 3177 | ADDITIONAL_TEST_HARNESS_PROPERTIES := ro.audio.silent=1 |
| 3178 | ADDITIONAL_TEST_HARNESS_PROPERTIES += ro.test_harness=1 |
| 3179 | |
| 3180 | INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET := $(strip $(filter $(TARGET_DEBUG_RAMDISK_OUT)/adb_debug.prop,$(INTERNAL_DEBUG_RAMDISK_FILES))) |
| 3181 | INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET := $(TARGET_TEST_HARNESS_RAMDISK_OUT)/adb_debug.prop |
| 3182 | $(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET): $(INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET) |
| 3183 | $(hide) rm -f $@ |
| 3184 | $(hide) mkdir -p $(dir $@) |
| 3185 | ifdef INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET |
| 3186 | $(hide) cp $(INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET) $@ |
| 3187 | endif |
| 3188 | $(hide) echo "" >> $@ |
| 3189 | $(hide) echo "#" >> $@ |
| 3190 | $(hide) echo "# ADDITIONAL TEST HARNESS PROPERTIES" >> $@ |
| 3191 | $(hide) echo "#" >> $@ |
| 3192 | $(hide) $(foreach line,$(ADDITIONAL_TEST_HARNESS_PROPERTIES), \ |
| 3193 | echo "$(line)" >> $@;) |
| 3194 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3195 | $(call declare-1p-target,$(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET)) |
| 3196 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3197 | 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] | 3198 | INTERNAL_TEST_HARNESS_RAMDISK_FILES := $(filter $(TARGET_TEST_HARNESS_RAMDISK_OUT)/%, \ |
| 3199 | $(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET) \ |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3200 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 3201 | |
| 3202 | # The order is important here. The test harness ramdisk staging directory has to |
| 3203 | # come last so that it can override the adb_debug.prop in the debug ramdisk |
| 3204 | # staging directory. |
| 3205 | INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS := $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
| 3206 | INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) $(INTERNAL_TEST_HARNESS_RAMDISK_FILES) |
| 3207 | |
| 3208 | ifdef BUILDING_DEBUG_BOOT_IMAGE |
| 3209 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 3210 | # ----------------------------------------------------------------- |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3211 | # The test harness ramdisk, which is based off debug_ramdisk, plus a |
| 3212 | # few additional test-harness-specific properties in adb_debug.prop. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 3213 | INSTALLED_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-test-harness.img |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3214 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3215 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS) |
| 3216 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 3217 | @echo "Target test harness ramdisk: $@" |
| 3218 | $(hide) rm -f $@ |
| 3219 | $(hide) mkdir -p $(dir $@) |
| 3220 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3221 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3222 | $(call declare-1p-container,$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),) |
| 3223 | $(call declare-container-license-deps,$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS),$(PRODUCT_OUT)/:/) |
| 3224 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3225 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3226 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3227 | .PHONY: ramdisk_test_harness-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 3228 | ramdisk_test_harness-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3229 | @echo "make $@: ignoring dependencies" |
| 3230 | $(hide) rm -f $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
| 3231 | $(hide) mkdir -p $(dir $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET)) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) |
| 3232 | $(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] | 3233 | |
| 3234 | # ----------------------------------------------------------------- |
| 3235 | # the boot-test-harness.img, which is the kernel plus ramdisk-test-harness.img |
| 3236 | # |
| 3237 | # Note: it's intentional to skip signing for boot-test-harness.img, because it |
| 3238 | # can only be used if the device is unlocked with verification error. |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 3239 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 3240 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-test-harness,$(BOARD_KERNEL_BINARIES)), \ |
| 3241 | $(PRODUCT_OUT)/$(k).img) |
| 3242 | else |
| 3243 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-test-harness.img |
| 3244 | endif |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3245 | |
| 3246 | # 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] | 3247 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3248 | INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS := $(subst $(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_DEBUG_BOOTIMAGE_ARGS)) |
| 3249 | |
| 3250 | # If boot.img is chained but boot-test-harness.img is not signed, libavb in bootloader |
| 3251 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 3252 | # Using a test key to sign boot-test-harness.img to continue booting with the mismatched |
| 3253 | # public key, if the device is unlocked. |
| 3254 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
| 3255 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 3256 | endif |
| 3257 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 3258 | # $(1): output file |
| 3259 | define build-boot-test-harness-target |
| 3260 | $(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] | 3261 | $(INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 3262 | $(BOARD_MKBOOTIMG_ARGS) --output $@ |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 3263 | $(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] | 3264 | endef |
| 3265 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3266 | # 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] | 3267 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3268 | $(call pretty,"Target boot test harness image: $@") |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 3269 | $(call build-boot-test-harness-target,$@) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3270 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3271 | $(call declare-1p-container,$(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET),) |
| 3272 | $(call declare-container-license-deps,$(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET),$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(PRODUCT_OUT)/:/) |
| 3273 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3274 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3275 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3276 | .PHONY: bootimage_test_harness-nodeps |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 3277 | bootimage_test_harness-nodeps: $(MKBOOTIMG) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3278 | echo "make $@: ignoring dependencies" |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 3279 | $(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] | 3280 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 3281 | endif # BUILDING_DEBUG_BOOT_IMAGE |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 3282 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 3283 | # ----------------------------------------------------------------- |
| 3284 | # vendor test harness ramdisk, which is a vendor ramdisk combined with |
| 3285 | # a test harness ramdisk. |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 3286 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 3287 | |
| 3288 | INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-test-harness)/vendor_ramdisk-test-harness.cpio$(RAMDISK_EXT) |
| 3289 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3290 | # The order is important here. The test harness ramdisk staging directory has to |
| 3291 | # come last so that it can override the adb_debug.prop in the debug ramdisk |
| 3292 | # staging directory. |
| 3293 | INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DIRS := $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
| 3294 | 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] | 3295 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3296 | $(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] | 3297 | $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 3298 | $(hide) rm -f $@ |
| 3299 | $(hide) mkdir -p $(dir $@) |
| 3300 | $(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] | 3301 | |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 3302 | INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-test-harness.img |
| 3303 | $(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 3304 | @echo "Target test harness vendor ramdisk: $@" |
| 3305 | $(copy-file-to-target) |
| 3306 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3307 | $(call declare-1p-container,$(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET),) |
| 3308 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 3309 | |
| 3310 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 3311 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 3312 | # ----------------------------------------------------------------- |
| 3313 | # vendor_boot-test-harness.img. |
| 3314 | INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-test-harness.img |
| 3315 | |
| 3316 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 3317 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 3318 | endif |
| 3319 | |
| 3320 | # Depends on vendor_boot.img and vendor_ramdisk-test-harness.cpio$(RAMDISK_EXT) to build the new vendor_boot-test-harness.img |
| 3321 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) |
| 3322 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 3323 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
| 3324 | $(call pretty,"Target vendor_boot test harness image: $@") |
| 3325 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS) --vendor_boot $@ |
| 3326 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 3327 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 3328 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3329 | $(call declare-1p-container,$(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET),) |
| 3330 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 3331 | |
| 3332 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET) |
| 3333 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 3334 | endif # BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 3335 | |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 3336 | endif # BUILDING_DEBUG_BOOT_IMAGE || BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 3337 | |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3338 | PARTITION_COMPAT_SYMLINKS := |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3339 | # Creates a compatibility symlink between two partitions, e.g. /system/vendor to /vendor |
| 3340 | # $1: from location (e.g $(TARGET_OUT)/vendor) |
| 3341 | # $2: destination location (e.g. /vendor) |
| 3342 | # $3: partition image name (e.g. vendor.img) |
| 3343 | define create-partition-compat-symlink |
| 3344 | $(eval \ |
| 3345 | $1: |
| 3346 | @echo Symlink $(patsubst $(PRODUCT_OUT)/%,%,$1) to $2 |
| 3347 | mkdir -p $(dir $1) |
| 3348 | if [ -d $1 ] && [ ! -h $1 ]; then \ |
| 3349 | echo 'Non-symlink $1 detected!' 1>&2; \ |
| 3350 | echo 'You cannot install files to $1 while building a separate $3!' 1>&2; \ |
| 3351 | exit 1; \ |
| 3352 | fi |
| 3353 | ln -sfn $2 $1 |
| 3354 | ) |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3355 | $(eval PARTITION_COMPAT_SYMLINKS += $1) |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3356 | $1 |
| 3357 | endef |
| 3358 | |
| 3359 | |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3360 | # FSVerity metadata generation |
| 3361 | # Generate fsverity metadata files (.fsv_meta) and build manifest |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3362 | # (<partition>/etc/security/fsverity/BuildManifest<suffix>.apk) BEFORE filtering systemimage, |
| 3363 | # vendorimage, odmimage, productimage files below. |
| 3364 | ifeq ($(PRODUCT_FSVERITY_GENERATE_METADATA),true) |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3365 | |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3366 | fsverity-metadata-targets-patterns := \ |
Victor Hsieh | fb3ef8a | 2022-01-07 14:05:42 -0800 | [diff] [blame] | 3367 | $(TARGET_OUT)/framework/% \ |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3368 | $(TARGET_OUT)/etc/boot-image.prof \ |
| 3369 | $(TARGET_OUT)/etc/dirty-image-objects \ |
Nicolas Geoffray | 13f2821 | 2022-03-18 17:28:14 +0000 | [diff] [blame] | 3370 | $(TARGET_OUT)/etc/preloaded-classes \ |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3371 | $(TARGET_OUT)/etc/classpaths/%.pb \ |
| 3372 | |
| 3373 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3374 | fsverity-metadata-targets-patterns += $(TARGET_OUT_SYSTEM_EXT)/framework/% |
| 3375 | endif |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3376 | |
| 3377 | # Generate fsv_meta |
| 3378 | fsverity-metadata-targets := $(sort $(filter \ |
| 3379 | $(fsverity-metadata-targets-patterns), \ |
Colin Cross | a1de5df | 2022-03-21 14:31:31 -0700 | [diff] [blame] | 3380 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3381 | |
| 3382 | define fsverity-generate-metadata |
Bob Badour | 2cd3536 | 2022-12-01 17:58:57 -0800 | [diff] [blame] | 3383 | $(call declare-0p-target,$(1).fsv_meta) |
| 3384 | |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3385 | $(1).fsv_meta: PRIVATE_SRC := $(1) |
| 3386 | $(1).fsv_meta: PRIVATE_FSVERITY := $(HOST_OUT_EXECUTABLES)/fsverity |
| 3387 | $(1).fsv_meta: $(HOST_OUT_EXECUTABLES)/fsverity_metadata_generator $(HOST_OUT_EXECUTABLES)/fsverity $(1) |
| 3388 | $$< --fsverity-path $$(PRIVATE_FSVERITY) --signature none \ |
| 3389 | --hash-alg sha256 --output $$@ $$(PRIVATE_SRC) |
| 3390 | endef |
| 3391 | |
| 3392 | $(foreach f,$(fsverity-metadata-targets),$(eval $(call fsverity-generate-metadata,$(f)))) |
| 3393 | ALL_DEFAULT_INSTALLED_MODULES += $(addsuffix .fsv_meta,$(fsverity-metadata-targets)) |
| 3394 | |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3395 | FSVERITY_APK_KEY_PATH := $(DEFAULT_SYSTEM_DEV_CERTIFICATE) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3396 | FSVERITY_APK_MANIFEST_TEMPLATE_PATH := system/security/fsverity/AndroidManifest.xml |
| 3397 | |
| 3398 | # Generate and install BuildManifest<suffix>.apk for the given partition |
| 3399 | # $(1): path of the output APK |
| 3400 | # $(2): partition name |
| 3401 | define fsverity-generate-and-install-manifest-apk |
| 3402 | fsverity-metadata-targets-$(2) := $(filter $(PRODUCT_OUT)/$(2)/%,\ |
| 3403 | $(fsverity-metadata-targets)) |
| 3404 | $(1): PRIVATE_FSVERITY := $(HOST_OUT_EXECUTABLES)/fsverity |
| 3405 | $(1): PRIVATE_AAPT2 := $(HOST_OUT_EXECUTABLES)/aapt2 |
| 3406 | $(1): PRIVATE_MIN_SDK_VERSION := $(DEFAULT_APP_TARGET_SDK) |
| 3407 | $(1): PRIVATE_VERSION_CODE := $(PLATFORM_SDK_VERSION) |
| 3408 | $(1): PRIVATE_VERSION_NAME := $(APPS_DEFAULT_VERSION_NAME) |
| 3409 | $(1): PRIVATE_APKSIGNER := $(HOST_OUT_EXECUTABLES)/apksigner |
| 3410 | $(1): PRIVATE_MANIFEST := $(FSVERITY_APK_MANIFEST_TEMPLATE_PATH) |
| 3411 | $(1): PRIVATE_FRAMEWORK_RES := $(call intermediates-dir-for,APPS,framework-res,,COMMON)/package-export.apk |
| 3412 | $(1): PRIVATE_KEY := $(FSVERITY_APK_KEY_PATH) |
| 3413 | $(1): PRIVATE_INPUTS := $$(fsverity-metadata-targets-$(2)) |
| 3414 | $(1): PRIVATE_ASSETS := $(call intermediates-dir-for,ETC,build_manifest-$(2))/assets |
| 3415 | $(1): $(HOST_OUT_EXECUTABLES)/fsverity_manifest_generator \ |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3416 | $(HOST_OUT_EXECUTABLES)/fsverity $(HOST_OUT_EXECUTABLES)/aapt2 \ |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3417 | $(HOST_OUT_EXECUTABLES)/apksigner $(FSVERITY_APK_MANIFEST_TEMPLATE_PATH) \ |
Victor Hsieh | be1029a | 2022-01-07 10:42:23 -0800 | [diff] [blame] | 3418 | $(FSVERITY_APK_KEY_PATH).x509.pem $(FSVERITY_APK_KEY_PATH).pk8 \ |
Jiyong Park | efbb6ff | 2022-01-10 17:14:30 +0900 | [diff] [blame] | 3419 | $(call intermediates-dir-for,APPS,framework-res,,COMMON)/package-export.apk \ |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3420 | $$(fsverity-metadata-targets-$(2)) |
| 3421 | rm -rf $$(PRIVATE_ASSETS) |
| 3422 | mkdir -p $$(PRIVATE_ASSETS) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3423 | $$< --fsverity-path $$(PRIVATE_FSVERITY) \ |
| 3424 | --base-dir $$(PRODUCT_OUT) \ |
| 3425 | --output $$(PRIVATE_ASSETS)/build_manifest.pb \ |
| 3426 | $$(PRIVATE_INPUTS) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3427 | $$(PRIVATE_AAPT2) link -o $$@ \ |
| 3428 | -A $$(PRIVATE_ASSETS) \ |
| 3429 | -I $$(PRIVATE_FRAMEWORK_RES) \ |
| 3430 | --min-sdk-version $$(PRIVATE_MIN_SDK_VERSION) \ |
| 3431 | --version-code $$(PRIVATE_VERSION_CODE) \ |
| 3432 | --version-name $$(PRIVATE_VERSION_NAME) \ |
| 3433 | --manifest $$(PRIVATE_MANIFEST) \ |
| 3434 | --rename-manifest-package com.android.security.fsverity_metadata.$(2) |
| 3435 | $$(PRIVATE_APKSIGNER) sign --in $$@ \ |
| 3436 | --cert $$(PRIVATE_KEY).x509.pem \ |
| 3437 | --key $$(PRIVATE_KEY).pk8 |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3438 | |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3439 | $(1).idsig: $(1) |
| 3440 | |
| 3441 | ALL_DEFAULT_INSTALLED_MODULES += $(1) $(1).idsig |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3442 | |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3443 | endef # fsverity-generate-and-install-manifest-apk |
| 3444 | |
| 3445 | $(eval $(call fsverity-generate-and-install-manifest-apk, \ |
| 3446 | $(TARGET_OUT)/etc/security/fsverity/BuildManifest.apk,system)) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3447 | 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] | 3448 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3449 | $(eval $(call fsverity-generate-and-install-manifest-apk, \ |
| 3450 | $(TARGET_OUT_SYSTEM_EXT)/etc/security/fsverity/BuildManifestSystemExt.apk,system_ext)) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3451 | 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] | 3452 | endif |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3453 | |
| 3454 | endif # PRODUCT_FSVERITY_GENERATE_METADATA |
| 3455 | |
| 3456 | |
| 3457 | # ----------------------------------------------------------------- |
| 3458 | # system image |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3459 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3460 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Sangmin Lee | fd2e967 | 2024-08-21 17:01:07 +0900 | [diff] [blame] | 3461 | ifdef BUILDING_SYSTEM_IMAGE |
Dan Willemsen | 37a1986 | 2018-10-31 16:31:46 -0700 | [diff] [blame] | 3462 | INTERNAL_SYSTEMIMAGE_FILES := $(sort $(filter $(TARGET_OUT)/%, \ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3463 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Sangmin Lee | fd2e967 | 2024-08-21 17:01:07 +0900 | [diff] [blame] | 3464 | endif |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 3465 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3466 | # Create symlink /system/vendor to /vendor if necessary. |
| 3467 | ifdef BOARD_USES_VENDORIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3468 | _vendor_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT)/vendor,/vendor,vendor.img) |
| 3469 | INTERNAL_SYSTEMIMAGE_FILES += $(_vendor_symlink) |
| 3470 | ALL_DEFAULT_INSTALLED_MODULES += $(_vendor_symlink) |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3471 | endif |
| 3472 | |
| 3473 | # Create symlink /system/product to /product if necessary. |
| 3474 | ifdef BOARD_USES_PRODUCTIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3475 | _product_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT)/product,/product,product.img) |
| 3476 | INTERNAL_SYSTEMIMAGE_FILES += $(_product_symlink) |
| 3477 | ALL_DEFAULT_INSTALLED_MODULES += $(_product_symlink) |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3478 | endif |
| 3479 | |
| 3480 | # Create symlink /system/system_ext to /system_ext if necessary. |
| 3481 | ifdef BOARD_USES_SYSTEM_EXTIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3482 | _systemext_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT)/system_ext,/system_ext,system_ext.img) |
| 3483 | INTERNAL_SYSTEMIMAGE_FILES += $(_systemext_symlink) |
| 3484 | ALL_DEFAULT_INSTALLED_MODULES += $(_systemext_symlink) |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3485 | endif |
| 3486 | |
Ramji Jiyani | f9ce357 | 2021-12-01 00:03:11 +0000 | [diff] [blame] | 3487 | # ----------------------------------------------------------------- |
| 3488 | # system_dlkm partition image |
| 3489 | |
| 3490 | # Create symlinks for system_dlkm on devices with a system_dlkm partition: |
| 3491 | # /system/lib/modules -> /system_dlkm/lib/modules |
| 3492 | # |
| 3493 | # On devices with a system_dlkm partition, |
| 3494 | # - /system/lib/modules is a symlink to a directory that stores system DLKMs. |
| 3495 | # - The system_dlkm partition is mounted at /system_dlkm at runtime. |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3496 | ifdef BOARD_USES_SYSTEM_DLKMIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3497 | _system_dlkm_lib_modules_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT)/lib/modules,/system_dlkm/lib/modules,system_dlkm.img) |
| 3498 | INTERNAL_SYSTEMIMAGE_FILES += $(_system_dlkm_lib_modules_symlink) |
| 3499 | ALL_DEFAULT_INSTALLED_MODULES += $(_system_dlkm_lib_modules_symlink) |
Ramji Jiyani | f9ce357 | 2021-12-01 00:03:11 +0000 | [diff] [blame] | 3500 | endif |
| 3501 | |
Ying Wang | 82cceba | 2012-08-13 15:03:00 -0700 | [diff] [blame] | 3502 | FULL_SYSTEMIMAGE_DEPS := $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3503 | |
| 3504 | # ASAN libraries in the system image - add dependency. |
| 3505 | ASAN_IN_SYSTEM_INSTALLED := $(TARGET_OUT)/asan.tar.bz2 |
Evgenii Stepanov | 8841a7f | 2018-07-27 11:54:32 -0700 | [diff] [blame] | 3506 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3507 | ifeq (true,$(SANITIZE_TARGET_SYSTEM)) |
| 3508 | FULL_SYSTEMIMAGE_DEPS += $(ASAN_IN_SYSTEM_INSTALLED) |
| 3509 | endif |
| 3510 | endif |
| 3511 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 3512 | FULL_SYSTEMIMAGE_DEPS += $(INTERNAL_ROOT_FILES) $(INSTALLED_FILES_FILE_ROOT) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 3513 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3514 | # ----------------------------------------------------------------- |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3515 | ifdef BUILDING_SYSTEM_IMAGE |
| 3516 | |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3517 | # Install system linker configuration |
| 3518 | # 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] | 3519 | # Also append LLNDK libraries in the APEX as required libs |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3520 | SYSTEM_LINKER_CONFIG := $(TARGET_OUT)/etc/linker.config.pb |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3521 | SYSTEM_LINKER_CONFIG_SOURCE := $(call intermediates-dir-for,ETC,system_linker_config)/system_linker_config |
| 3522 | $(SYSTEM_LINKER_CONFIG): PRIVATE_SYSTEM_LINKER_CONFIG_SOURCE := $(SYSTEM_LINKER_CONFIG_SOURCE) |
Jooyung Han | 49bf691 | 2023-03-09 16:36:37 +0900 | [diff] [blame] | 3523 | $(SYSTEM_LINKER_CONFIG): $(INTERNAL_SYSTEMIMAGE_FILES) $(SYSTEM_LINKER_CONFIG_SOURCE) | conv_linker_config |
| 3524 | @echo Creating linker config: $@ |
| 3525 | @mkdir -p $(dir $@) |
| 3526 | @rm -f $@ |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3527 | $(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] | 3528 | --output $@ --value "$(STUB_LIBRARIES)" --system "$(TARGET_OUT)" |
Kiyoung Kim | 0c07959 | 2022-12-01 10:15:10 +0900 | [diff] [blame] | 3529 | $(HOST_OUT_EXECUTABLES)/conv_linker_config append --source $@ --output $@ --key requireLibs \ |
Jooyung Han | 49bf691 | 2023-03-09 16:36:37 +0900 | [diff] [blame] | 3530 | --value "$(foreach lib,$(LLNDK_MOVED_TO_APEX_LIBRARIES), $(lib).so)" |
Ashutosh Agarwal | f0f9394 | 2024-09-18 14:24:05 +0000 | [diff] [blame] | 3531 | $(HOST_OUT_EXECUTABLES)/conv_linker_config append --source $@ --output $@ --key provideLibs \ |
| 3532 | --value "$(foreach lib,$(PRODUCT_EXTRA_STUB_LIBRARIES), $(lib).so)" |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3533 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3534 | $(call declare-1p-target,$(SYSTEM_LINKER_CONFIG),) |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3535 | $(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] | 3536 | |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3537 | FULL_SYSTEMIMAGE_DEPS += $(SYSTEM_LINKER_CONFIG) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3538 | ALL_DEFAULT_INSTALLED_MODULES += $(SYSTEM_LINKER_CONFIG) |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3539 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3540 | # installed file list |
| 3541 | # Depending on anything that $(BUILT_SYSTEMIMAGE) depends on. |
| 3542 | # We put installed-files.txt ahead of image itself in the dependency graph |
| 3543 | # so that we can get the size stat even if the build fails due to too large |
| 3544 | # system image. |
| 3545 | INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3546 | INSTALLED_FILES_JSON := $(INSTALLED_FILES_FILE:.txt=.json) |
| 3547 | $(INSTALLED_FILES_FILE): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3548 | $(INSTALLED_FILES_FILE): $(FULL_SYSTEMIMAGE_DEPS) $(FILESLIST) $(FILESLIST_UTIL) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3549 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3550 | mkdir -p $(dir $@) |
| 3551 | rm -f $@ |
| 3552 | $(FILESLIST) $(TARGET_OUT) > $(@:.txt=.json) |
| 3553 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3554 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3555 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3556 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3557 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3558 | .PHONY: installed-file-list |
| 3559 | installed-file-list: $(INSTALLED_FILES_FILE) |
Ying Wang | 534fcd7 | 2013-03-01 16:45:35 -0800 | [diff] [blame] | 3560 | |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 3561 | systemimage_intermediates :=$= $(call intermediates-dir-for,PACKAGING,system) |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3562 | BUILT_SYSTEMIMAGE :=$= $(systemimage_intermediates)/system.img |
| 3563 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3564 | # $(1): output file |
| 3565 | define build-systemimage-target |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3566 | @echo "Target system fs image: $(1)" |
| 3567 | @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] | 3568 | $(call generate-image-prop-dictionary, $(systemimage_intermediates)/system_image_info.txt,system, \ |
Geremy Condra | 5b5f495 | 2014-05-05 22:19:37 -0700 | [diff] [blame] | 3569 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3570 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3571 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3572 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(systemimage_intermediates)/file_list.txt) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3573 | $(TARGET_OUT) $(systemimage_intermediates)/system_image_info.txt $(1) $(TARGET_OUT) \ |
| 3574 | || ( mkdir -p $${DIST_DIR}; \ |
| 3575 | cp $(INSTALLED_FILES_FILE) $${DIST_DIR}/installed-files-rescued.txt; \ |
| 3576 | exit 1 ) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3577 | endef |
| 3578 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 3579 | $(eval $(call write-partition-file-list,$(systemimage_intermediates)/file_list.txt,$(TARGET_OUT),$(FULL_SYSTEMIMAGE_DEPS))) |
Kiyoung Kim | 8376b32 | 2024-06-21 14:15:49 +0900 | [diff] [blame] | 3580 | |
| 3581 | ifneq ($(PRODUCT_SOONG_DEFINED_SYSTEM_IMAGE),) |
| 3582 | file_list_diff := $(HOST_OUT_EXECUTABLES)/file_list_diff$(HOST_EXECUTABLE_SUFFIX) |
| 3583 | system_file_diff_timestamp := $(systemimage_intermediates)/file_diff.timestamp |
| 3584 | |
Justin Yun | f460a63 | 2024-10-06 12:17:11 +0900 | [diff] [blame] | 3585 | # The build configuration to build the REL version may have more files to allow. |
| 3586 | # Use allowlist_next in addition to the allowlist in this case. |
| 3587 | system_file_diff_allowlist_next := |
| 3588 | ifeq (REL,$(PLATFORM_VERSION_CODENAME)) |
| 3589 | system_file_diff_allowlist_next := $(ALL_MODULES.system_image_diff_allowlist_next.INSTALLED) |
| 3590 | $(system_file_diff_timestamp): PRIVATE_ALLOWLIST_NEXT := $(system_file_diff_allowlist_next) |
| 3591 | endif |
Kiyoung Kim | 8376b32 | 2024-06-21 14:15:49 +0900 | [diff] [blame] | 3592 | $(system_file_diff_timestamp): \ |
| 3593 | $(systemimage_intermediates)/file_list.txt \ |
| 3594 | $(ALL_MODULES.$(PRODUCT_SOONG_DEFINED_SYSTEM_IMAGE).FILESYSTEM_FILELIST) \ |
| 3595 | $(ALL_MODULES.system_image_diff_allowlist.INSTALLED) \ |
Justin Yun | f460a63 | 2024-10-06 12:17:11 +0900 | [diff] [blame] | 3596 | $(system_file_diff_allowlist_next) \ |
Kiyoung Kim | 8376b32 | 2024-06-21 14:15:49 +0900 | [diff] [blame] | 3597 | $(file_list_diff) |
| 3598 | $(file_list_diff) $(systemimage_intermediates)/file_list.txt \ |
| 3599 | $(ALL_MODULES.$(PRODUCT_SOONG_DEFINED_SYSTEM_IMAGE).FILESYSTEM_FILELIST) \ |
Justin Yun | f460a63 | 2024-10-06 12:17:11 +0900 | [diff] [blame] | 3600 | $(PRODUCT_SOONG_DEFINED_SYSTEM_IMAGE) \ |
| 3601 | --allowlists $(ALL_MODULES.system_image_diff_allowlist.INSTALLED) \ |
| 3602 | $(PRIVATE_ALLOWLIST_NEXT) |
Kiyoung Kim | 8376b32 | 2024-06-21 14:15:49 +0900 | [diff] [blame] | 3603 | touch $@ |
| 3604 | |
| 3605 | $(BUILT_SYSTEMIMAGE): $(system_file_diff_timestamp) |
| 3606 | endif |
| 3607 | |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 3608 | # Used by soong sandwich to request the staging dir be built |
| 3609 | $(systemimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT)/%,$(FULL_SYSTEMIMAGE_DEPS)) |
| 3610 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3611 | |
Dan Willemsen | 6b72c73 | 2019-06-12 21:33:38 +0000 | [diff] [blame] | 3612 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3613 | $(BUILT_SYSTEMIMAGE): $(BOARD_AVB_SYSTEM_KEY_PATH) |
| 3614 | endif |
Inseob Kim | 8b6f143 | 2024-07-10 17:34:51 +0900 | [diff] [blame] | 3615 | |
| 3616 | ifeq ($(USE_SOONG_DEFINED_SYSTEM_IMAGE),true) |
| 3617 | ifeq ($(PRODUCT_SOONG_DEFINED_SYSTEM_IMAGE),) |
| 3618 | $(error PRODUCT_SOONG_DEFINED_SYSTEM_IMAGE must be set if USE_SOONG_DEFINED_SYSTEM_IMAGE is true) |
| 3619 | endif |
Jeongik Cha | 83db951 | 2024-09-12 13:04:22 +0900 | [diff] [blame] | 3620 | SOONG_DEFINED_SYSTEM_IMAGE_PATH := $(call intermediates-dir-for,ETC,$(PRODUCT_SOONG_DEFINED_SYSTEM_IMAGE))/$(PRODUCT_SOONG_DEFINED_SYSTEM_IMAGE) |
| 3621 | SOONG_DEFINED_SYSTEM_IMAGE_BASE := $(dir $(ALL_MODULES.$(PRODUCT_SOONG_DEFINED_SYSTEM_IMAGE).FILESYSTEM_FILELIST)) |
| 3622 | $(BUILT_SYSTEMIMAGE): $(INSTALLED_FILES_FILE) $(systemimage_intermediates)/file_list.txt $(SOONG_DEFINED_SYSTEM_IMAGE_PATH) |
| 3623 | $(eval $(call copy-one-file, $(SOONG_DEFINED_SYSTEM_IMAGE_PATH), $(BUILT_SYSTEMIMAGE))) |
Inseob Kim | 8b6f143 | 2024-07-10 17:34:51 +0900 | [diff] [blame] | 3624 | else |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3625 | $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE) $(systemimage_intermediates)/file_list.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3626 | $(call build-systemimage-target,$@) |
Inseob Kim | 8b6f143 | 2024-07-10 17:34:51 +0900 | [diff] [blame] | 3627 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3628 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3629 | $(call declare-1p-container,$(BUILT_SYSTEMIMAGE),system/extras) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3630 | $(call declare-container-license-deps,$(BUILT_SYSTEMIMAGE),$(FULL_SYSTEMIMAGE_DEPS),$(PRODUCT_OUT)/:/) |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3631 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3632 | INSTALLED_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/system.img |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 3633 | SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3634 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3635 | # INSTALLED_SYSTEMIMAGE_TARGET used to be named INSTALLED_SYSTEMIMAGE. Create an alias for backward |
| 3636 | # compatibility, in case device-specific Makefiles still refer to the old name. |
| 3637 | INSTALLED_SYSTEMIMAGE := $(INSTALLED_SYSTEMIMAGE_TARGET) |
| 3638 | |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3639 | # The system partition needs room for the recovery image as well. We |
| 3640 | # now store the recovery image as a binary patch using the boot image |
| 3641 | # as the source (since they are very similar). Generate the patch so |
| 3642 | # we can see how big it's going to be, and include that in the system |
| 3643 | # image size check calculation. |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3644 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
Sriram Raman | 1e96ac8 | 2009-07-24 13:52:32 -0700 | [diff] [blame] | 3645 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 3646 | ifneq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 3647 | ifneq (,$(filter true,$(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO))) |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 3648 | diff_tool := $(HOST_OUT_EXECUTABLES)/bsdiff |
| 3649 | else |
| 3650 | diff_tool := $(HOST_OUT_EXECUTABLES)/imgdiff |
| 3651 | endif |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3652 | intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch) |
| 3653 | RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 3654 | $(RECOVERY_FROM_BOOT_PATCH): PRIVATE_DIFF_TOOL := $(diff_tool) |
| 3655 | $(RECOVERY_FROM_BOOT_PATCH): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3656 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 3657 | $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3658 | $(diff_tool) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3659 | @echo "Construct recovery from boot" |
| 3660 | mkdir -p $(dir $@) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 3661 | $(PRIVATE_DIFF_TOOL) $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) $(INSTALLED_RECOVERYIMAGE_TARGET) $@ |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 3662 | else # $(BOARD_USES_FULL_RECOVERY_IMAGE) == true |
| 3663 | RECOVERY_FROM_BOOT_PATCH := $(INSTALLED_RECOVERYIMAGE_TARGET) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3664 | endif # BOARD_USES_FULL_RECOVERY_IMAGE |
| 3665 | endif # INSTALLED_RECOVERYIMAGE_TARGET |
| 3666 | endif # INSTALLED_BOOTIMAGE_TARGET |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3667 | |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3668 | $(INSTALLED_SYSTEMIMAGE_TARGET): $(BUILT_SYSTEMIMAGE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3669 | @echo "Install system fs image: $@" |
| 3670 | $(copy-file-to-target) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3671 | $(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] | 3672 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3673 | $(call declare-1p-container,$(INSTALLED_SYSTEMIMAGE_TARGET),) |
| 3674 | $(call declare-container-license-deps,$(INSTALLED_SYSTEMIMAGE_TARGET),$(BUILT_SYSTEMIMAGE),$(BUILT_SYSTEMIMAGE):/) |
| 3675 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3676 | systemimage: $(INSTALLED_SYSTEMIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3677 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3678 | SYSTEM_NOTICE_DEPS += $(INSTALLED_SYSTEMIMAGE_TARGET) |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3679 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3680 | .PHONY: systemimage-nodeps snod |
| 3681 | systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3682 | | $(INTERNAL_USERIMAGES_DEPS) $(systemimage_intermediates)/file_list.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3683 | @echo "make $@: ignoring dependencies" |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3684 | $(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE_TARGET)) |
Yifan Hong | 8c3dce0 | 2019-04-09 17:03:57 +0000 | [diff] [blame] | 3685 | $(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] | 3686 | ifeq (true,$(WITH_DEXPREOPT)) |
Dan Willemsen | 395358e | 2020-03-04 23:50:53 +0000 | [diff] [blame] | 3687 | $(warning Warning: with dexpreopt enabled, you may need a full rebuild.) |
Ying Wang | acf01ec | 2012-02-24 11:05:48 -0800 | [diff] [blame] | 3688 | endif |
| 3689 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3690 | endif # BUILDING_SYSTEM_IMAGE |
| 3691 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 3692 | .PHONY: sync syncsys sync_system |
| 3693 | sync syncsys sync_system: $(INTERNAL_SYSTEMIMAGE_FILES) |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 3694 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 3695 | # ----------------------------------------------------------------- |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3696 | # Old PDK fusion targets |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 3697 | .PHONY: platform |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3698 | platform: |
| 3699 | echo "Warning: 'platform' is obsolete" |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 3700 | |
| 3701 | .PHONY: platform-java |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3702 | platform-java: |
| 3703 | echo "Warning: 'platform-java' is obsolete" |
Colin Cross | 53c8f97 | 2018-09-28 16:19:42 -0700 | [diff] [blame] | 3704 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 3705 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3706 | # data partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3707 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_DATA)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Sangmin Lee | fd2e967 | 2024-08-21 17:01:07 +0900 | [diff] [blame] | 3708 | ifdef BUILDING_USERDATA_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3709 | INTERNAL_USERDATAIMAGE_FILES := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3710 | $(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3711 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3712 | userdataimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3713 | $(call intermediates-dir-for,PACKAGING,userdata) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 3714 | BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img |
| 3715 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3716 | define build-userdataimage-target |
| 3717 | $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)") |
| 3718 | @mkdir -p $(TARGET_OUT_DATA) |
| 3719 | @mkdir -p $(userdataimage_intermediates) && rm -rf $(userdataimage_intermediates)/userdata_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3720 | $(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] | 3721 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3722 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3723 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(userdataimage_intermediates)/file_list.txt) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3724 | $(TARGET_OUT_DATA) $(userdataimage_intermediates)/userdata_image_info.txt \ |
| 3725 | $(INSTALLED_USERDATAIMAGE_TARGET) $(TARGET_OUT) |
| 3726 | $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3727 | endef |
| 3728 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 3729 | # We just build this directly to the install location. |
| 3730 | INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3731 | INSTALLED_USERDATAIMAGE_TARGET_DEPS := \ |
| 3732 | $(INTERNAL_USERIMAGES_DEPS) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3733 | $(INTERNAL_USERDATAIMAGE_FILES) |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3734 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 3735 | $(eval $(call write-partition-file-list,$(userdataimage_intermediates)/file_list.txt,$(TARGET_OUT_DATA),$(INSTALLED_USERDATAIMAGE_TARGET_DEPS))) |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 3736 | # Used by soong sandwich to request the staging dir be built |
| 3737 | $(userdataimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT_DATA)/%,$(INSTALLED_USERDATAIMAGE_TARGET_DEPS)) |
| 3738 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3739 | |
| 3740 | $(INSTALLED_USERDATAIMAGE_TARGET): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) $(userdataimage_intermediates)/file_list.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3741 | $(build-userdataimage-target) |
| 3742 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3743 | $(call declare-1p-container,$(INSTALLED_USERDATAIMAGE_TARGET),) |
| 3744 | $(call declare-container-license-deps,$(INSTALLED_USERDATAIMAGE_TARGET),$(INSTALLED_USERDATAIMAGE_TARGET_DEPS),$(PRODUCT_OUT)/:/) |
| 3745 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3746 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_USERDATAIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3747 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3748 | .PHONY: userdataimage-nodeps |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3749 | userdataimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) $(userdataimage_intermediates)/file_list.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3750 | $(build-userdataimage-target) |
| 3751 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3752 | endif # BUILDING_USERDATA_IMAGE |
Ying Wang | e215ed5 | 2012-10-15 14:36:22 -0700 | [diff] [blame] | 3753 | |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3754 | # ASAN libraries in the system image - build rule. |
| 3755 | ASAN_OUT_DIRS_FOR_SYSTEM_INSTALL := $(sort $(patsubst $(PRODUCT_OUT)/%,%,\ |
| 3756 | $(TARGET_OUT_SHARED_LIBRARIES) \ |
| 3757 | $(2ND_TARGET_OUT_SHARED_LIBRARIES) \ |
| 3758 | $(TARGET_OUT_VENDOR_SHARED_LIBRARIES) \ |
| 3759 | $(2ND_TARGET_OUT_VENDOR_SHARED_LIBRARIES))) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 3760 | # Extra options: Enforce the system user for the files to avoid having to change ownership. |
| 3761 | ASAN_SYSTEM_INSTALL_OPTIONS := --owner=1000 --group=1000 |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3762 | # Note: experimentally, it seems not worth it to try to get "best" compression. We don't save |
| 3763 | # enough space. |
| 3764 | $(ASAN_IN_SYSTEM_INSTALLED): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 3765 | 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] | 3766 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3767 | # ----------------------------------------------------------------- |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3768 | # cache partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3769 | 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] | 3770 | ifdef BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3771 | INTERNAL_CACHEIMAGE_FILES := \ |
| 3772 | $(filter $(TARGET_OUT_CACHE)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
| 3773 | |
| 3774 | cacheimage_intermediates := \ |
| 3775 | $(call intermediates-dir-for,PACKAGING,cache) |
| 3776 | BUILT_CACHEIMAGE_TARGET := $(PRODUCT_OUT)/cache.img |
| 3777 | |
| 3778 | define build-cacheimage-target |
| 3779 | $(call pretty,"Target cache fs image: $(INSTALLED_CACHEIMAGE_TARGET)") |
| 3780 | @mkdir -p $(TARGET_OUT_CACHE) |
| 3781 | @mkdir -p $(cacheimage_intermediates) && rm -rf $(cacheimage_intermediates)/cache_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3782 | $(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] | 3783 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3784 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3785 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(cacheimage_intermediates)/file_list.txt) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3786 | $(TARGET_OUT_CACHE) $(cacheimage_intermediates)/cache_image_info.txt \ |
| 3787 | $(INSTALLED_CACHEIMAGE_TARGET) $(TARGET_OUT) |
| 3788 | $(call assert-max-image-size,$(INSTALLED_CACHEIMAGE_TARGET),$(BOARD_CACHEIMAGE_PARTITION_SIZE)) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3789 | endef |
| 3790 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 3791 | $(eval $(call write-partition-file-list,$(cacheimage_intermediates)/file_list.txt,$(TARGET_OUT_CACHE),$(INTERNAL_CACHEIMAGE_FILES))) |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 3792 | # Used by soong sandwich to request the staging dir be built |
| 3793 | $(cacheimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT_CACHE)/%,$(INTERNAL_CACHEIMAGE_FILES)) |
| 3794 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3795 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3796 | # We just build this directly to the install location. |
| 3797 | INSTALLED_CACHEIMAGE_TARGET := $(BUILT_CACHEIMAGE_TARGET) |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3798 | $(INSTALLED_CACHEIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES) $(cacheimage_intermediates)/file_list.txt |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3799 | $(build-cacheimage-target) |
| 3800 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3801 | $(call declare-1p-container,$(INSTALLED_CACHEIMAGE_TARGET),) |
| 3802 | $(call declare-container-license-deps,$(INSTALLED_CACHEIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 3803 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3804 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_CACHEIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3805 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3806 | .PHONY: cacheimage-nodeps |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3807 | cacheimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) $(cacheimage_intermediates)/file_list.txt |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3808 | $(build-cacheimage-target) |
| 3809 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3810 | else # BUILDING_CACHE_IMAGE |
Patrick Tjin | f3b0dc2 | 2016-05-13 15:26:09 -0700 | [diff] [blame] | 3811 | # we need to ignore the broken cache link when doing the rsync |
| 3812 | IGNORE_CACHE_LINK := --exclude=cache |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3813 | endif # BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3814 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 3815 | # ----------------------------------------------------------------- |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3816 | # system_other partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3817 | 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] | 3818 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3819 | ifeq ($(BOARD_USES_SYSTEM_OTHER_ODEX),true) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3820 | # Marker file to identify that odex files are installed |
| 3821 | INSTALLED_SYSTEM_OTHER_ODEX_MARKER := $(TARGET_OUT_SYSTEM_OTHER)/system-other-odex-marker |
| 3822 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER) |
| 3823 | $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER): |
| 3824 | $(hide) touch $@ |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3825 | |
| 3826 | $(call declare-0p-target,$(INSTALLED_SYSTEM_OTHER_ODEX_MARKER)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3827 | endif |
| 3828 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3829 | INTERNAL_SYSTEMOTHERIMAGE_FILES := \ |
| 3830 | $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3831 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3832 | |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 3833 | # system_other dex files are installed as a side-effect of installing system image files |
| 3834 | INTERNAL_SYSTEMOTHERIMAGE_FILES += $(INTERNAL_SYSTEMIMAGE_FILES) |
| 3835 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3836 | INSTALLED_FILES_FILE_SYSTEMOTHER := $(PRODUCT_OUT)/installed-files-system-other.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3837 | INSTALLED_FILES_JSON_SYSTEMOTHER := $(INSTALLED_FILES_FILE_SYSTEMOTHER:.txt=.json) |
| 3838 | $(INSTALLED_FILES_FILE_SYSTEMOTHER): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEMOTHER) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3839 | $(INSTALLED_FILES_FILE_SYSTEMOTHER) : $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3840 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3841 | mkdir -p $(dir $@) |
| 3842 | rm -f $@ |
| 3843 | $(FILESLIST) $(TARGET_OUT_SYSTEM_OTHER) > $(@:.txt=.json) |
| 3844 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3845 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3846 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEMOTHER))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3847 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEMOTHER))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3848 | |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 3849 | # Determines partition size for system_other.img. |
| 3850 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 3851 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)),) |
| 3852 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE := $(BOARD_SUPER_PARTITION_SYSTEM_DEVICE_SIZE) |
| 3853 | endif |
| 3854 | endif |
| 3855 | |
| 3856 | ifndef INTERNAL_SYSTEM_OTHER_PARTITION_SIZE |
| 3857 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE:= $(BOARD_SYSTEMIMAGE_PARTITION_SIZE) |
| 3858 | endif |
| 3859 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3860 | systemotherimage_intermediates := \ |
| 3861 | $(call intermediates-dir-for,PACKAGING,system_other) |
| 3862 | BUILT_SYSTEMOTHERIMAGE_TARGET := $(PRODUCT_OUT)/system_other.img |
| 3863 | |
| 3864 | # Note that we assert the size is SYSTEMIMAGE_PARTITION_SIZE since this is the 'b' system image. |
| 3865 | define build-systemotherimage-target |
| 3866 | $(call pretty,"Target system_other fs image: $(INSTALLED_SYSTEMOTHERIMAGE_TARGET)") |
| 3867 | @mkdir -p $(TARGET_OUT_SYSTEM_OTHER) |
| 3868 | @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] | 3869 | $(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] | 3870 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3871 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3872 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(systemotherimage_intermediates)/file_list.txt) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3873 | $(TARGET_OUT_SYSTEM_OTHER) $(systemotherimage_intermediates)/system_other_image_info.txt \ |
| 3874 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) $(TARGET_OUT) |
| 3875 | $(call assert-max-image-size,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3876 | endef |
| 3877 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 3878 | $(eval $(call write-partition-file-list,$(systemotherimage_intermediates)/file_list.txt,$(TARGET_OUT_SYSTEM_OTHER),$(INTERNAL_SYSTEMOTHERIMAGE_FILES))) |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 3879 | # Used by soong sandwich to request the staging dir be built |
| 3880 | $(systemotherimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,$(INTERNAL_SYSTEMOTHERIMAGE_FILES)) |
| 3881 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3882 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3883 | # We just build this directly to the install location. |
| 3884 | INSTALLED_SYSTEMOTHERIMAGE_TARGET := $(BUILT_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3885 | ifneq (true,$(SANITIZE_LITE)) |
| 3886 | # Only create system_other when not building the second stage of a SANITIZE_LITE build. |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3887 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEMOTHER) $(systemotherimage_intermediates)/file_list.txt |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3888 | $(build-systemotherimage-target) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3889 | |
| 3890 | $(call declare-1p-container,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),) |
| 3891 | $(call declare-container-license-deps,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 3892 | |
| 3893 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3894 | endif |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3895 | |
| 3896 | .PHONY: systemotherimage-nodeps |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3897 | systemotherimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) $(systemotherimage_intermediates)/file_list.txt |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3898 | $(build-systemotherimage-target) |
| 3899 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3900 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3901 | |
| 3902 | |
| 3903 | # ----------------------------------------------------------------- |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3904 | # vendor partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3905 | 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] | 3906 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3907 | INTERNAL_VENDORIMAGE_FILES := \ |
Ying Wang | cff3862 | 2014-07-16 17:46:35 -0700 | [diff] [blame] | 3908 | $(filter $(TARGET_OUT_VENDOR)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3909 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3910 | |
Ying Wang | 8da19e3 | 2015-09-15 14:22:12 -0700 | [diff] [blame] | 3911 | |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 3912 | # Create symlink /vendor/odm to /odm if necessary. |
| 3913 | ifdef BOARD_USES_ODMIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3914 | _odm_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT_VENDOR)/odm,/odm,odm.img) |
| 3915 | INTERNAL_VENDORIMAGE_FILES += $(_odm_symlink) |
| 3916 | ALL_DEFAULT_INSTALLED_MODULES += $(_odm_symlink) |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 3917 | endif |
| 3918 | |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 3919 | # Create symlinks for vendor_dlkm on devices with a vendor_dlkm partition: |
| 3920 | # /vendor/lib/modules -> /vendor_dlkm/lib/modules |
| 3921 | # |
| 3922 | # On devices with a vendor_dlkm partition, |
| 3923 | # - /vendor/lib/modules is a symlink to a directory that stores vendor DLKMs. |
| 3924 | # - /vendor_dlkm/{etc,...} store other vendor_dlkm files directly. The vendor_dlkm partition is |
| 3925 | # mounted at /vendor_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3926 | # are hidden. |
| 3927 | # On devices without a vendor_dlkm partition, |
| 3928 | # - /vendor/lib/modules stores vendor DLKMs directly. |
| 3929 | # - /vendor_dlkm/{etc,...} are symlinks to directories that store other vendor_dlkm files. |
| 3930 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3931 | # The vendor DLKMs and other vendor_dlkm files must not be accessed using other paths because they |
| 3932 | # are not guaranteed to exist on all devices. |
| 3933 | ifdef BOARD_USES_VENDOR_DLKMIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 3934 | _vendor_dlkm_lib_modules_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT_VENDOR)/lib/modules,/vendor_dlkm/lib/modules,vendor_dlkm.img) |
| 3935 | INTERNAL_VENDORIMAGE_FILES += $(_vendor_dlkm_lib_modules_symlink) |
| 3936 | ALL_DEFAULT_INSTALLED_MODULES += $(_vendor_dlkm_lib_modules_symlink) |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 3937 | endif |
| 3938 | |
Jooyung Han | a7bb853 | 2023-12-01 16:39:48 +0900 | [diff] [blame] | 3939 | # Install vendor/etc/linker.config.pb with PRODUCT_VENDOR_LINKER_CONFIG_FRAGMENTS and SOONG_STUB_VENDOR_LIBRARIES |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3940 | vendor_linker_config_file := $(TARGET_OUT_VENDOR)/etc/linker.config.pb |
| 3941 | $(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] | 3942 | $(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] | 3943 | @echo Creating linker config: $@ |
| 3944 | @mkdir -p $(dir $@) |
| 3945 | @rm -f $@ |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3946 | $(HOST_OUT_EXECUTABLES)/conv_linker_config proto \ |
| 3947 | --source $(call normalize-path-list,$(private_linker_config_fragments)) \ |
| 3948 | --output $@ |
Jooyung Han | 8c11903 | 2023-03-04 08:32:34 +0900 | [diff] [blame] | 3949 | $(HOST_OUT_EXECUTABLES)/conv_linker_config systemprovide --source $@ \ |
Jooyung Han | a7bb853 | 2023-12-01 16:39:48 +0900 | [diff] [blame] | 3950 | --output $@ --value "$(SOONG_STUB_VENDOR_LIBRARIES)" --system "$(TARGET_OUT_VENDOR)" |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3951 | $(call define declare-0p-target,$(vendor_linker_config_file),) |
| 3952 | INTERNAL_VENDORIMAGE_FILES += $(vendor_linker_config_file) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3953 | ALL_DEFAULT_INSTALLED_MODULES += $(vendor_linker_config_file) |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3954 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3955 | INSTALLED_FILES_FILE_VENDOR := $(PRODUCT_OUT)/installed-files-vendor.txt |
| 3956 | INSTALLED_FILES_JSON_VENDOR := $(INSTALLED_FILES_FILE_VENDOR:.txt=.json) |
| 3957 | $(INSTALLED_FILES_FILE_VENDOR): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR) |
| 3958 | $(INSTALLED_FILES_FILE_VENDOR) : $(INTERNAL_VENDORIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3959 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3960 | mkdir -p $(dir $@) |
| 3961 | rm -f $@ |
| 3962 | $(FILESLIST) $(TARGET_OUT_VENDOR) > $(@:.txt=.json) |
| 3963 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | 3d5e2c2 | 2020-07-15 17:01:14 -0700 | [diff] [blame] | 3964 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3965 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR)) |
| 3966 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3967 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3968 | vendorimage_intermediates := \ |
| 3969 | $(call intermediates-dir-for,PACKAGING,vendor) |
| 3970 | BUILT_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3971 | define build-vendorimage-target |
| 3972 | $(call pretty,"Target vendor fs image: $(INSTALLED_VENDORIMAGE_TARGET)") |
| 3973 | @mkdir -p $(TARGET_OUT_VENDOR) |
| 3974 | @mkdir -p $(vendorimage_intermediates) && rm -rf $(vendorimage_intermediates)/vendor_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3975 | $(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] | 3976 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3977 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3978 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(vendorimage_intermediates)/file_list.txt) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3979 | $(TARGET_OUT_VENDOR) $(vendorimage_intermediates)/vendor_image_info.txt \ |
| 3980 | $(INSTALLED_VENDORIMAGE_TARGET) $(TARGET_OUT) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3981 | $(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] | 3982 | endef |
| 3983 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 3984 | $(eval $(call write-partition-file-list,$(vendorimage_intermediates)/file_list.txt,$(TARGET_OUT_VENDOR),$(INTERNAL_VENDORIMAGE_FILES))) |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 3985 | # Used by soong sandwich to request the staging dir be built |
| 3986 | $(vendorimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT_VENDOR)/%,$(INTERNAL_VENDORIMAGE_FILES)) |
| 3987 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3988 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3989 | # We just build this directly to the install location. |
| 3990 | INSTALLED_VENDORIMAGE_TARGET := $(BUILT_VENDORIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3991 | $(INSTALLED_VENDORIMAGE_TARGET): \ |
| 3992 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3993 | $(INTERNAL_VENDORIMAGE_FILES) \ |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3994 | $(INSTALLED_FILES_FILE_VENDOR) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 3995 | $(RECOVERY_FROM_BOOT_PATCH) \ |
| 3996 | $(vendorimage_intermediates)/file_list.txt |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3997 | $(build-vendorimage-target) |
| 3998 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3999 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDORIMAGE_TARGET) |
| 4000 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4001 | $(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] | 4002 | $(call declare-container-license-deps,$(INSTALLED_VENDORIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_VENDORIMAGE_FILES) $(RECOVERY_FROM_BOOT_PATH),$(PRODUCT_OUT)/:/) |
| 4003 | |
Steven Moreland | a2e734d | 2017-03-07 12:10:09 -0800 | [diff] [blame] | 4004 | .PHONY: vendorimage-nodeps vnod |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4005 | vendorimage-nodeps vnod: | $(INTERNAL_USERIMAGES_DEPS) $(vendorimage_intermediates)/file_list.txt |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 4006 | $(build-vendorimage-target) |
| 4007 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 4008 | .PHONY: sync_vendor |
| 4009 | sync sync_vendor: $(INTERNAL_VENDORIMAGE_FILES) |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 4010 | |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 4011 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 4012 | INSTALLED_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
| 4013 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDORIMAGE),$(INSTALLED_VENDORIMAGE_TARGET))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4014 | $(if $(strip $(ALL_TARGETS.$(INSTALLED_VENDORIMAGE_TARGET).META_LIC)),,\ |
| 4015 | $(if $(strip $(ALL_TARGETS.$(BOARD_PREBUILT_VENDORIMAGE).META_LIC)),\ |
Bob Badour | ba33724 | 2022-05-27 19:40:41 -0700 | [diff] [blame] | 4016 | $(call declare-copy-target-license-metadata,$(INSTALLED_VENDORIMAGE_TARGET),$(BOARD_PREBUILT_VENDORIMAGE)),\ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4017 | $(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] | 4018 | endif |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 4019 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 4020 | # ----------------------------------------------------------------- |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4021 | # product partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 4022 | 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] | 4023 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4024 | INTERNAL_PRODUCTIMAGE_FILES := \ |
| 4025 | $(filter $(TARGET_OUT_PRODUCT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 4026 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4027 | |
Ashutosh Agarwal | 7b43b96 | 2024-10-08 10:42:37 +0000 | [diff] [blame] | 4028 | # Install product/etc/linker.config.pb with PRODUCT_PRODUCT_LINKER_CONFIG_FRAGMENTS |
| 4029 | product_linker_config_file := $(TARGET_OUT_PRODUCT)/etc/linker.config.pb |
| 4030 | $(product_linker_config_file): private_linker_config_fragments := $(PRODUCT_PRODUCT_LINKER_CONFIG_FRAGMENTS) |
| 4031 | $(product_linker_config_file): $(INTERNAL_PRODUCTIMAGE_FILES) | $(HOST_OUT_EXECUTABLES)/conv_linker_config |
| 4032 | @echo Creating linker config: $@ |
| 4033 | @mkdir -p $(dir $@) |
| 4034 | @rm -f $@ |
| 4035 | $(HOST_OUT_EXECUTABLES)/conv_linker_config proto \ |
| 4036 | --source $(call normalize-path-list,$(private_linker_config_fragments)) \ |
| 4037 | --output $@ |
| 4038 | $(call define declare-1p-target,$(product_linker_config_file),) |
| 4039 | INTERNAL_PRODUCTIMAGE_FILES += $(product_linker_config_file) |
| 4040 | ALL_DEFAULT_INSTALLED_MODULES += $(product_linker_config_file) |
| 4041 | |
| 4042 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4043 | INSTALLED_FILES_FILE_PRODUCT := $(PRODUCT_OUT)/installed-files-product.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 4044 | INSTALLED_FILES_JSON_PRODUCT := $(INSTALLED_FILES_FILE_PRODUCT:.txt=.json) |
| 4045 | $(INSTALLED_FILES_FILE_PRODUCT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_PRODUCT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 4046 | $(INSTALLED_FILES_FILE_PRODUCT) : $(INTERNAL_PRODUCTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4047 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 4048 | mkdir -p $(dir $@) |
| 4049 | rm -f $@ |
| 4050 | $(FILESLIST) $(TARGET_OUT_PRODUCT) > $(@:.txt=.json) |
| 4051 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4052 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4053 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_PRODUCT)) |
| 4054 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_PRODUCT)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4055 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4056 | productimage_intermediates := \ |
| 4057 | $(call intermediates-dir-for,PACKAGING,product) |
| 4058 | BUILT_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 4059 | define build-productimage-target |
| 4060 | $(call pretty,"Target product fs image: $(INSTALLED_PRODUCTIMAGE_TARGET)") |
| 4061 | @mkdir -p $(TARGET_OUT_PRODUCT) |
| 4062 | @mkdir -p $(productimage_intermediates) && rm -rf $(productimage_intermediates)/product_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 4063 | $(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] | 4064 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4065 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4066 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(productimage_intermediates)/file_list.txt) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4067 | $(TARGET_OUT_PRODUCT) $(productimage_intermediates)/product_image_info.txt \ |
| 4068 | $(INSTALLED_PRODUCTIMAGE_TARGET) $(TARGET_OUT) |
| 4069 | $(call assert-max-image-size,$(INSTALLED_PRODUCTIMAGE_TARGET),$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4070 | endef |
| 4071 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 4072 | $(eval $(call write-partition-file-list,$(productimage_intermediates)/file_list.txt,$(TARGET_OUT_PRODUCT),$(INTERNAL_PRODUCTIMAGE_FILES))) |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 4073 | # Used by soong sandwich to request the staging dir be built |
| 4074 | $(productimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT_PRODUCT)/%,$(INTERNAL_PRODUCTIMAGE_FILES)) |
| 4075 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4076 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4077 | # We just build this directly to the install location. |
| 4078 | INSTALLED_PRODUCTIMAGE_TARGET := $(BUILT_PRODUCTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4079 | $(INSTALLED_PRODUCTIMAGE_TARGET): \ |
| 4080 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 4081 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4082 | $(INSTALLED_FILES_FILE_PRODUCT) \ |
| 4083 | $(productimage_intermediates)/file_list.txt |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4084 | $(build-productimage-target) |
| 4085 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4086 | PRODUCT_NOTICE_DEPS += $(INSTALLED_PRODUCTIMAGE_TARGET) |
| 4087 | |
| 4088 | $(call declare-1p-container,$(INSTALLED_PRODUCTIMAGE_TARGET),) |
| 4089 | $(call declare-container-license-deps,$(INSTALLED_PRODUCTIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_PRODUCTIMAGE_FILES) $(INSTALLED_FILES_FILE_PRODUCT),$(PRODUCT_OUT)/:/) |
| 4090 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4091 | .PHONY: productimage-nodeps pnod |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4092 | productimage-nodeps pnod: | $(INTERNAL_USERIMAGES_DEPS) $(productimage_intermediates)/file_list.txt |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4093 | $(build-productimage-target) |
| 4094 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 4095 | .PHONY: sync_product |
| 4096 | sync sync_product: $(INTERNAL_PRODUCTIMAGE_FILES) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4097 | |
| 4098 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 4099 | INSTALLED_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 4100 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_PRODUCTIMAGE),$(INSTALLED_PRODUCTIMAGE_TARGET))) |
| 4101 | endif |
| 4102 | |
| 4103 | # ----------------------------------------------------------------- |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4104 | # system_ext partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 4105 | 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] | 4106 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 4107 | INTERNAL_SYSTEM_EXTIMAGE_FILES := \ |
| 4108 | $(filter $(TARGET_OUT_SYSTEM_EXT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 4109 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4110 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4111 | INSTALLED_FILES_FILE_SYSTEM_EXT := $(PRODUCT_OUT)/installed-files-system_ext.txt |
| 4112 | INSTALLED_FILES_JSON_SYSTEM_EXT := $(INSTALLED_FILES_FILE_SYSTEM_EXT:.txt=.json) |
| 4113 | $(INSTALLED_FILES_FILE_SYSTEM_EXT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_EXT) |
| 4114 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) : $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4115 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 4116 | mkdir -p $(dir $@) |
| 4117 | rm -f $@ |
| 4118 | $(FILESLIST) $(TARGET_OUT_SYSTEM_EXT) > $(@:.txt=.json) |
| 4119 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4120 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4121 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEM_EXT)) |
| 4122 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEM_EXT)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4123 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4124 | system_extimage_intermediates := \ |
| 4125 | $(call intermediates-dir-for,PACKAGING,system_ext) |
| 4126 | BUILT_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 4127 | define build-system_extimage-target |
| 4128 | $(call pretty,"Target system_ext fs image: $(INSTALLED_SYSTEM_EXTIMAGE_TARGET)") |
| 4129 | @mkdir -p $(TARGET_OUT_SYSTEM_EXT) |
| 4130 | @mkdir -p $(system_extimage_intermediates) && rm -rf $(system_extimage_intermediates)/system_ext_image_info.txt |
| 4131 | $(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] | 4132 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4133 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4134 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(system_extimage_intermediates)/file_list.txt) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4135 | $(TARGET_OUT_SYSTEM_EXT) \ |
| 4136 | $(system_extimage_intermediates)/system_ext_image_info.txt \ |
| 4137 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 4138 | $(TARGET_OUT) |
| 4139 | $(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] | 4140 | endef |
| 4141 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 4142 | $(eval $(call write-partition-file-list,$(system_extimage_intermediates)/file_list.txt,$(TARGET_OUT_SYSTEM_EXT),$(INTERNAL_SYSTEM_EXTIMAGE_FILES))) |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 4143 | # Used by soong sandwich to request the staging dir be built |
| 4144 | $(system_extimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT_SYSTEM_EXT)/%,$(INTERNAL_SYSTEM_EXTIMAGE_FILES)) |
| 4145 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4146 | |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4147 | # We just build this directly to the install location. |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4148 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(BUILT_SYSTEM_EXTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4149 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET): \ |
| 4150 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 4151 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4152 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) \ |
| 4153 | $(system_extimage_intermediates)/file_list.txt |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4154 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4155 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4156 | SYSTEM_EXT_NOTICE_DEPS += $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
| 4157 | |
| 4158 | $(call declare-1p-container,$(INSTALLED_SYSTEM_EXTIMAGE_TARGET),) |
| 4159 | $(call declare-container-license-deps,$(INSTALLED_SYSTEM_EXTIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEM_EXT),$(PRODUCT_OUT)/:/) |
| 4160 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4161 | .PHONY: systemextimage-nodeps senod |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4162 | systemextimage-nodeps senod: | $(INTERNAL_USERIMAGES_DEPS) $(system_extimage_intermediates)/file_list.txt |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4163 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4164 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 4165 | .PHONY: sync_system_ext |
| 4166 | sync sync_system_ext: $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4167 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4168 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 4169 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 4170 | $(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] | 4171 | endif |
| 4172 | |
| 4173 | # ----------------------------------------------------------------- |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4174 | # odm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 4175 | 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] | 4176 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4177 | INTERNAL_ODMIMAGE_FILES := \ |
| 4178 | $(filter $(TARGET_OUT_ODM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 4179 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4180 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 4181 | # Create symlinks for odm_dlkm on devices with a odm_dlkm partition: |
| 4182 | # /odm/lib/modules -> /odm_dlkm/lib/modules |
| 4183 | # |
| 4184 | # On devices with a odm_dlkm partition, |
| 4185 | # - /odm/lib/modules is a symlink to a directory that stores odm DLKMs. |
| 4186 | # - /odm_dlkm/{etc,...} store other odm_dlkm files directly. The odm_dlkm partition is |
| 4187 | # mounted at /odm_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 4188 | # are hidden. |
| 4189 | # On devices without a odm_dlkm partition, |
| 4190 | # - /odm/lib/modules stores odm DLKMs directly. |
| 4191 | # - /odm_dlkm/{etc,...} are symlinks to directories that store other odm_dlkm files. |
| 4192 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 4193 | # The odm DLKMs and other odm_dlkm files must not be accessed using other paths because they |
| 4194 | # are not guaranteed to exist on all devices. |
| 4195 | ifdef BOARD_USES_ODM_DLKMIMAGE |
Wei Li | e64367c | 2023-03-29 17:40:36 -0700 | [diff] [blame] | 4196 | _odm_dlkm_lib_modules_symlink := $(call create-partition-compat-symlink,$(TARGET_OUT_ODM)/lib/modules,/odm_dlkm/lib/modules,odm_dlkm.img) |
| 4197 | INTERNAL_ODMIMAGE_FILES += $(_odm_dlkm_lib_modules_symlink) |
| 4198 | ALL_DEFAULT_INSTALLED_MODULES += $(_odm_dlkm_lib_modules_symlink) |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 4199 | endif |
| 4200 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4201 | INSTALLED_FILES_FILE_ODM := $(PRODUCT_OUT)/installed-files-odm.txt |
| 4202 | INSTALLED_FILES_JSON_ODM := $(INSTALLED_FILES_FILE_ODM:.txt=.json) |
| 4203 | $(INSTALLED_FILES_FILE_ODM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 4204 | $(INSTALLED_FILES_FILE_ODM) : $(INTERNAL_ODMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4205 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 4206 | mkdir -p $(dir $@) |
| 4207 | rm -f $@ |
| 4208 | $(FILESLIST) $(TARGET_OUT_ODM) > $(@:.txt=.json) |
| 4209 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4210 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4211 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ODM)) |
| 4212 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ODM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4213 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4214 | odmimage_intermediates := \ |
| 4215 | $(call intermediates-dir-for,PACKAGING,odm) |
| 4216 | BUILT_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 4217 | define build-odmimage-target |
| 4218 | $(call pretty,"Target odm fs image: $(INSTALLED_ODMIMAGE_TARGET)") |
| 4219 | @mkdir -p $(TARGET_OUT_ODM) |
| 4220 | @mkdir -p $(odmimage_intermediates) && rm -rf $(odmimage_intermediates)/odm_image_info.txt |
David Anderson | 17063cf | 2021-08-27 16:43:09 -0700 | [diff] [blame] | 4221 | $(call generate-image-prop-dictionary, $(odmimage_intermediates)/odm_image_info.txt, odm, \ |
| 4222 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 4223 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4224 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4225 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(odmimage_intermediates)/file_list.txt) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4226 | $(TARGET_OUT_ODM) $(odmimage_intermediates)/odm_image_info.txt \ |
| 4227 | $(INSTALLED_ODMIMAGE_TARGET) $(TARGET_OUT) |
| 4228 | $(call assert-max-image-size,$(INSTALLED_ODMIMAGE_TARGET),$(BOARD_ODMIMAGE_PARTITION_SIZE)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4229 | endef |
| 4230 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 4231 | $(eval $(call write-partition-file-list,$(odmimage_intermediates)/file_list.txt,$(TARGET_OUT_ODM),$(INTERNAL_ODMIMAGE_FILES))) |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 4232 | # Used by soong sandwich to request the staging dir be built |
| 4233 | $(odmimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT_ODM)/%,$(INTERNAL_ODMIMAGE_FILES)) |
| 4234 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4235 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4236 | # We just build this directly to the install location. |
| 4237 | INSTALLED_ODMIMAGE_TARGET := $(BUILT_ODMIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4238 | $(INSTALLED_ODMIMAGE_TARGET): \ |
| 4239 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 4240 | $(INTERNAL_ODMIMAGE_FILES) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4241 | $(INSTALLED_FILES_FILE_ODM) \ |
| 4242 | $(odmimage_intermediates)/file_list.txt |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4243 | $(build-odmimage-target) |
| 4244 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4245 | ODM_NOTICE_DEPS += $(INSTALLED_ODMIMAGE_TARGET) |
| 4246 | |
| 4247 | $(call declare-1p-container,$(INSTALLED_ODMIMAGE_TARGET),) |
| 4248 | $(call declare-container-license-deps,$(INSTALLED_ODMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_ODMIMAGE_FILES) $(INSTALLED_FILES_FILE_ODM),$(PRODUCT_OUT)/:/) |
| 4249 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4250 | .PHONY: odmimage-nodeps onod |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4251 | odmimage-nodeps onod: | $(INTERNAL_USERIMAGES_DEPS) $(odmimage_intermediates)/file_list.txt |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4252 | $(build-odmimage-target) |
| 4253 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 4254 | .PHONY: sync_odm |
| 4255 | sync sync_odm: $(INTERNAL_ODMIMAGE_FILES) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4256 | |
| 4257 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 4258 | INSTALLED_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 4259 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODMIMAGE),$(INSTALLED_ODMIMAGE_TARGET))) |
| 4260 | endif |
| 4261 | |
| 4262 | # ----------------------------------------------------------------- |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4263 | # vendor_dlkm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 4264 | 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] | 4265 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 4266 | INTERNAL_VENDOR_DLKMIMAGE_FILES := \ |
| 4267 | $(filter $(TARGET_OUT_VENDOR_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 4268 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4269 | |
| 4270 | INSTALLED_FILES_FILE_VENDOR_DLKM := $(PRODUCT_OUT)/installed-files-vendor_dlkm.txt |
| 4271 | INSTALLED_FILES_JSON_VENDOR_DLKM := $(INSTALLED_FILES_FILE_VENDOR_DLKM:.txt=.json) |
| 4272 | $(INSTALLED_FILES_FILE_VENDOR_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DLKM) |
| 4273 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) : $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 4274 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 4275 | mkdir -p $(dir $@) |
| 4276 | rm -f $@ |
| 4277 | $(FILESLIST) $(TARGET_OUT_VENDOR_DLKM) > $(@:.txt=.json) |
| 4278 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4279 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4280 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_DLKM)) |
| 4281 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_DLKM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4282 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4283 | vendor_dlkmimage_intermediates := \ |
| 4284 | $(call intermediates-dir-for,PACKAGING,vendor_dlkm) |
| 4285 | BUILT_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 4286 | define build-vendor_dlkmimage-target |
| 4287 | $(call pretty,"Target vendor_dlkm fs image: $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)") |
| 4288 | @mkdir -p $(TARGET_OUT_VENDOR_DLKM) |
| 4289 | @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] | 4290 | $(call generate-image-prop-dictionary, $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt, \ |
| 4291 | vendor_dlkm, skip_fsck=true) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4292 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 4293 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4294 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(vendor_dlkmimage_intermediates)/file_list.txt) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4295 | $(TARGET_OUT_VENDOR_DLKM) $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt \ |
| 4296 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 4297 | $(call assert-max-image-size,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE)) |
| 4298 | endef |
| 4299 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 4300 | $(eval $(call write-partition-file-list,$(vendor_dlkmimage_intermediates)/file_list.txt,$(TARGET_OUT_VENDOR_DLKM),$(INTERNAL_VENDOR_DLKMIMAGE_FILES))) |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 4301 | # Used by soong sandwich to request the staging dir be built |
| 4302 | $(vendor_dlkmimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT_VENDOR_DLKM)/%,$(INTERNAL_VENDOR_DLKMIMAGE_FILES)) |
| 4303 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4304 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4305 | # We just build this directly to the install location. |
| 4306 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(BUILT_VENDOR_DLKMIMAGE_TARGET) |
| 4307 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET): \ |
| 4308 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 4309 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4310 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) \ |
| 4311 | $(vendor_dlkmimage_intermediates)/file_list.txt |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4312 | $(build-vendor_dlkmimage-target) |
| 4313 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4314 | VENDOR_DLKM_NOTICE_DEPS += $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
| 4315 | |
| 4316 | $(call declare-1p-container,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),) |
| 4317 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_VENDOR_DLKM),$(PRODUCT_OUT)/:/) |
| 4318 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4319 | .PHONY: vendor_dlkmimage-nodeps vdnod |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4320 | vendor_dlkmimage-nodeps vdnod: | $(INTERNAL_USERIMAGES_DEPS) $(vendor_dlkmimage_intermediates)/file_list.txt |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4321 | $(build-vendor_dlkmimage-target) |
| 4322 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 4323 | .PHONY: sync_vendor_dlkm |
| 4324 | sync sync_vendor_dlkm: $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4325 | |
| 4326 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
| 4327 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 4328 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDOR_DLKMIMAGE),$(INSTALLED_VENDOR_DLKMIMAGE_TARGET))) |
| 4329 | endif |
| 4330 | |
| 4331 | # ----------------------------------------------------------------- |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4332 | # odm_dlkm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 4333 | 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] | 4334 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 4335 | INTERNAL_ODM_DLKMIMAGE_FILES := \ |
| 4336 | $(filter $(TARGET_OUT_ODM_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 4337 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4338 | |
| 4339 | INSTALLED_FILES_FILE_ODM_DLKM := $(PRODUCT_OUT)/installed-files-odm_dlkm.txt |
| 4340 | INSTALLED_FILES_JSON_ODM_DLKM := $(INSTALLED_FILES_FILE_ODM_DLKM:.txt=.json) |
| 4341 | $(INSTALLED_FILES_FILE_ODM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM_DLKM) |
| 4342 | $(INSTALLED_FILES_FILE_ODM_DLKM) : $(INTERNAL_ODM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 4343 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 4344 | mkdir -p $(dir $@) |
| 4345 | rm -f $@ |
| 4346 | $(FILESLIST) $(TARGET_OUT_ODM_DLKM) > $(@:.txt=.json) |
| 4347 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4348 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4349 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ODM_DLKM)) |
| 4350 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ODM_DLKM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4351 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4352 | odm_dlkmimage_intermediates := \ |
| 4353 | $(call intermediates-dir-for,PACKAGING,odm_dlkm) |
| 4354 | BUILT_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 4355 | define build-odm_dlkmimage-target |
| 4356 | $(call pretty,"Target odm_dlkm fs image: $(INSTALLED_ODM_DLKMIMAGE_TARGET)") |
| 4357 | @mkdir -p $(TARGET_OUT_ODM_DLKM) |
| 4358 | @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] | 4359 | $(call generate-image-prop-dictionary, $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt, \ |
| 4360 | odm_dlkm, skip_fsck=true) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4361 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 4362 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4363 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(odm_dlkmimage_intermediates)/file_list.txt) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4364 | $(TARGET_OUT_ODM_DLKM) $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt \ |
| 4365 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 4366 | $(call assert-max-image-size,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE)) |
| 4367 | endef |
| 4368 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 4369 | $(eval $(call write-partition-file-list,$(odm_dlkmimage_intermediates)/file_list.txt,$(TARGET_OUT_ODM_DLKM),$(INTERNAL_ODM_DLKMIMAGE_FILES))) |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 4370 | # Used by soong sandwich to request the staging dir be built |
| 4371 | $(odm_dlkmimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT_ODM_DLKM)/%,$(INTERNAL_ODM_DLKMIMAGE_FILES)) |
| 4372 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4373 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4374 | # We just build this directly to the install location. |
| 4375 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(BUILT_ODM_DLKMIMAGE_TARGET) |
| 4376 | $(INSTALLED_ODM_DLKMIMAGE_TARGET): \ |
| 4377 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 4378 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4379 | $(INSTALLED_FILES_FILE_ODM_DLKM) \ |
| 4380 | $(odm_dlkmimage_intermediates)/file_list.txt |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4381 | $(build-odm_dlkmimage-target) |
| 4382 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4383 | ODM_DLKM_NOTICE_DEPS += $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
| 4384 | |
| 4385 | $(call declare-1p-container,$(INSTALLED_ODM_DLKMIMAGE_TARGET),) |
| 4386 | $(call declare-container-license-deps,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_ODM_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_ODM_DLKM),$(PRODUCT_OUT)/:/) |
| 4387 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4388 | .PHONY: odm_dlkmimage-nodeps odnod |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4389 | odm_dlkmimage-nodeps odnod: | $(INTERNAL_USERIMAGES_DEPS) $(odm_dlkmimage_intermediates)/file_list.txt |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4390 | $(build-odm_dlkmimage-target) |
| 4391 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 4392 | .PHONY: sync_odm_dlkm |
| 4393 | sync sync_odm_dlkm: $(INTERNAL_ODM_DLKMIMAGE_FILES) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4394 | |
| 4395 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 4396 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 4397 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODM_DLKMIMAGE),$(INSTALLED_ODM_DLKMIMAGE_TARGET))) |
| 4398 | endif |
| 4399 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4400 | # ----------------------------------------------------------------- |
| 4401 | # system_dlkm partition image |
| 4402 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 4403 | 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] | 4404 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 4405 | |
| 4406 | INTERNAL_SYSTEM_DLKMIMAGE_FILES := \ |
| 4407 | $(filter $(TARGET_OUT_SYSTEM_DLKM)/%,\ |
| 4408 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 4409 | |
| 4410 | INSTALLED_FILES_FILE_SYSTEM_DLKM := $(PRODUCT_OUT)/installed-files-system_dlkm.txt |
| 4411 | INSTALLED_FILES_JSON_SYSTEM_DLKM := $(INSTALLED_FILES_FILE_SYSTEM_DLKM:.txt=.json) |
| 4412 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_DLKM) |
| 4413 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM): $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 4414 | @echo Installed file list: $@ |
| 4415 | mkdir -p $(dir $@) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4416 | rm -f $@ |
| 4417 | $(FILESLIST) $(TARGET_OUT_SYSTEM_DLKM) > $(@:.txt=.json) |
| 4418 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 4419 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4420 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEM_DLKM)) |
| 4421 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEM_DLKM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4422 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4423 | system_dlkmimage_intermediates := \ |
| 4424 | $(call intermediates-dir-for,PACKAGING,system_dlkm) |
| 4425 | BUILT_SYSTEM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/system_dlkm.img |
| 4426 | define build-system_dlkmimage-target |
| 4427 | $(call pretty,"Target system_dlkm fs image: $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET)") |
| 4428 | @mkdir -p $(TARGET_OUT_SYSTEM_DLKM) |
| 4429 | @mkdir -p $(system_dlkmimage_intermediates) && rm -rf $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt |
| 4430 | $(call generate-image-prop-dictionary, $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt, \ |
| 4431 | system_dlkm, skip_fsck=true) |
| 4432 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 4433 | $(BUILD_IMAGE) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4434 | $(if $(BUILD_BROKEN_INCORRECT_PARTITION_IMAGES),,--input-directory-filter-file $(system_dlkmimage_intermediates)/file_list.txt) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4435 | $(TARGET_OUT_SYSTEM_DLKM) $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt \ |
| 4436 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 4437 | $(call assert-max-image-size,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(BOARD_SYSTEM_DLKMIMAGE_PARTITION_SIZE)) |
| 4438 | endef |
| 4439 | |
Cole Faust | 9feef37 | 2024-05-09 11:04:23 -0700 | [diff] [blame] | 4440 | $(eval $(call write-partition-file-list,$(system_dlkmimage_intermediates)/file_list.txt,$(TARGET_OUT_SYSTEM_DLKM),$(INTERNAL_SYSTEM_DLKMIMAGE_FILES))) |
Cole Faust | 25a2aa8 | 2024-03-12 13:44:40 -0700 | [diff] [blame] | 4441 | # Used by soong sandwich to request the staging dir be built |
| 4442 | $(system_dlkmimage_intermediates)/staging_dir.stamp: $(filter $(TARGET_OUT_SYSTEM_DLKM)/%,$(INTERNAL_SYSTEM_DLKMIMAGE_FILES)) |
| 4443 | touch $@ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4444 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4445 | # We just build this directly to the install location. |
| 4446 | INSTALLED_SYSTEM_DLKMIMAGE_TARGET := $(BUILT_SYSTEM_DLKMIMAGE_TARGET) |
| 4447 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET): \ |
| 4448 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 4449 | $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) \ |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4450 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM) \ |
| 4451 | $(system_dlkmimage_intermediates)/file_list.txt |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4452 | $(build-system_dlkmimage-target) |
| 4453 | |
Bob Badour | 56e0de5 | 2022-08-02 17:46:48 +0000 | [diff] [blame] | 4454 | SYSTEM_DLKM_NOTICE_DEPS += $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) |
| 4455 | |
| 4456 | $(call declare-1p-container,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),) |
| 4457 | $(call declare-container-license-deps,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEM_DLKM),$(PRODUCT_OUT)/:/) |
| 4458 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4459 | .PHONY: system_dlkmimage-nodeps sdnod |
Cole Faust | 152cdfa | 2023-07-26 14:33:51 -0700 | [diff] [blame] | 4460 | system_dlkmimage-nodeps sdnod: | $(INTERNAL_USERIMAGES_DEPS) $(system_dlkmimage_intermediates)/file_list.txt |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4461 | $(build-system_dlkmimage-target) |
| 4462 | |
Peter Kalauskas | df6fdee | 2023-04-28 11:45:07 -0700 | [diff] [blame] | 4463 | .PHONY: sync_system_dlkm |
| 4464 | sync sync_system_dlkm: $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4465 | |
| 4466 | else ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
| 4467 | INSTALLED_SYSTEM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/system_dlkm.img |
| 4468 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_SYSTEM_DLKMIMAGE),$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET))) |
| 4469 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4470 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4471 | # Protected VM firmware image |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 4472 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Pierre-Clément Tosi | adbf4da | 2022-09-09 15:57:58 +0100 | [diff] [blame] | 4473 | |
| 4474 | .PHONY: pvmfwimage |
| 4475 | pvmfwimage: $(INSTALLED_PVMFWIMAGE_TARGET) |
| 4476 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4477 | INSTALLED_PVMFWIMAGE_TARGET := $(PRODUCT_OUT)/pvmfw.img |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 4478 | INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET := $(PRODUCT_OUT)/pvmfw_embedded.avbpubkey |
Pierre-Clément Tosi | 4e1f71f | 2023-08-02 11:14:34 +0100 | [diff] [blame] | 4479 | INSTALLED_PVMFW_BINARY_TARGET := $(call module-target-built-files,pvmfw_bin) |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4480 | INTERNAL_PVMFWIMAGE_FILES := $(call module-target-built-files,pvmfw_img) |
Pierre-Clément Tosi | 22dd321 | 2024-05-24 10:59:44 +0100 | [diff] [blame] | 4481 | INTERNAL_PVMFW_EMBEDDED_AVBKEY := $(call module-target-built-files,pvmfw_embedded_key_pub_bin) |
Jiyong Park | e219f00 | 2022-12-16 14:30:03 +0900 | [diff] [blame] | 4482 | INTERNAL_PVMFW_SYMBOL := $(TARGET_OUT_EXECUTABLES_UNSTRIPPED)/pvmfw |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4483 | |
| 4484 | $(call declare-1p-container,$(INSTALLED_PVMFWIMAGE_TARGET),) |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4485 | $(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] | 4486 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 4487 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_PVMFWIMAGE_TARGET) |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4488 | |
Jiyong Park | e219f00 | 2022-12-16 14:30:03 +0900 | [diff] [blame] | 4489 | # Place the unstripped pvmfw image to the symbols directory |
| 4490 | $(INTERNAL_PVMFWIMAGE_FILES): |$(INTERNAL_PVMFW_SYMBOL) |
| 4491 | |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4492 | $(eval $(call copy-one-file,$(INTERNAL_PVMFWIMAGE_FILES),$(INSTALLED_PVMFWIMAGE_TARGET))) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4493 | |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 4494 | $(INSTALLED_PVMFWIMAGE_TARGET): $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) |
| 4495 | |
| 4496 | $(eval $(call copy-one-file,$(INTERNAL_PVMFW_EMBEDDED_AVBKEY),$(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET))) |
| 4497 | |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 4498 | endif # BOARD_USES_PVMFWIMAGE |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4499 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4500 | # Returns a list of image targets corresponding to the given list of partitions. For example, it |
| 4501 | # returns "$(INSTALLED_PRODUCTIMAGE_TARGET)" for "product", or "$(INSTALLED_SYSTEMIMAGE_TARGET) |
| 4502 | # $(INSTALLED_VENDORIMAGE_TARGET)" for "system vendor". |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4503 | # (1): list of partitions like "system", "vendor" or "system product system_ext". |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4504 | define images-for-partitions |
Bowgo Tsai | 4f62aa0 | 2022-01-04 14:21:39 +0800 | [diff] [blame] | 4505 | $(strip $(foreach item,$(1),\ |
| 4506 | $(if $(filter $(item),system_other),$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),\ |
| 4507 | $(if $(filter $(item),init_boot),$(INSTALLED_INIT_BOOT_IMAGE_TARGET),\ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4508 | $(INSTALLED_$(call to-upper,$(item))IMAGE_TARGET))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4509 | endef |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4510 | |
| 4511 | # ----------------------------------------------------------------- |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4512 | # custom images |
| 4513 | INSTALLED_CUSTOMIMAGES_TARGET := |
| 4514 | |
| 4515 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 4516 | INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS := |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4517 | BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST := |
| 4518 | # If BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH is set, the image will be included in |
| 4519 | # BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST, otherwise the image won't be AVB signed. |
| 4520 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4521 | $(if $(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH), \ |
| 4522 | $(eval BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST += $(partition)) \ |
| 4523 | $(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] | 4524 | |
| 4525 | # Sign custom image. |
| 4526 | # $(1): the prebuilt custom image. |
| 4527 | # $(2): the mount point of the prebuilt custom image. |
| 4528 | # $(3): the signed custom image target. |
| 4529 | define sign_custom_image |
| 4530 | $(3): $(1) $(INTERNAL_USERIMAGES_DEPS) |
| 4531 | @echo Target custom image: $(3) |
| 4532 | mkdir -p $(dir $(3)) |
| 4533 | cp $(1) $(3) |
| 4534 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4535 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$$$PATH \ |
| 4536 | $(AVBTOOL) add_hashtree_footer \ |
| 4537 | --image $(3) \ |
| 4538 | --key $(BOARD_AVB_$(call to-upper,$(2))_KEY_PATH) \ |
| 4539 | --algorithm $(BOARD_AVB_$(call to-upper,$(2))_ALGORITHM) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 4540 | $(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] | 4541 | --partition_name $(2) \ |
| 4542 | $(INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS) \ |
| 4543 | $(BOARD_AVB_$(call to-upper,$(2))_ADD_HASHTREE_FOOTER_ARGS) |
| 4544 | endif |
| 4545 | INSTALLED_CUSTOMIMAGES_TARGET += $(3) |
| 4546 | endef |
| 4547 | |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4548 | # Copy unsigned custom image. |
| 4549 | # $(1): the prebuilt custom image. |
| 4550 | # $(2): the signed custom image target. |
| 4551 | define copy_custom_image |
| 4552 | $(2): $(1) $(INTERNAL_USERIMAGES_DEPS) |
| 4553 | @echo Target custom image: $(2) |
| 4554 | mkdir -p $(dir $(2)) |
| 4555 | cp $(1) $(2) |
| 4556 | INSTALLED_CUSTOMIMAGES_TARGET += $(2) |
| 4557 | endef |
| 4558 | |
| 4559 | # Add AVB custom image to droid target |
| 4560 | $(foreach partition,$(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4561 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST), \ |
| 4562 | $(eval $(call sign_custom_image,$(image),$(partition),$(PRODUCT_OUT)/$(notdir $(image)))))) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4563 | |
| 4564 | # Add unsigned custom image to droid target |
| 4565 | $(foreach partition,$(filter-out $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), $(BOARD_CUSTOMIMAGES_PARTITION_LIST)), \ |
| 4566 | $(foreach image,$(BOARD_$(call to-upper,$(partition))_IMAGE_LIST), \ |
| 4567 | $(eval $(call copy_custom_image,$(image),$(PRODUCT_OUT)/$(notdir $(image)))))) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4568 | endif |
| 4569 | |
| 4570 | # ----------------------------------------------------------------- |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4571 | # vbmeta image |
| 4572 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4573 | |
| 4574 | BUILT_VBMETAIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta.img |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4575 | AVB_CHAIN_KEY_DIR := $(TARGET_OUT_INTERMEDIATES)/avb_chain_keys |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4576 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4577 | ifdef BOARD_AVB_KEY_PATH |
| 4578 | $(if $(BOARD_AVB_ALGORITHM),,$(error BOARD_AVB_ALGORITHM is not defined)) |
| 4579 | else |
| 4580 | # If key path isn't specified, use the 4096-bit test key. |
| 4581 | BOARD_AVB_ALGORITHM := SHA256_RSA4096 |
| 4582 | BOARD_AVB_KEY_PATH := external/avb/test/data/testkey_rsa4096.pem |
| 4583 | endif |
| 4584 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 4585 | # AVB signing for system_other.img. |
| 4586 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 4587 | ifdef BOARD_AVB_SYSTEM_OTHER_KEY_PATH |
| 4588 | $(if $(BOARD_AVB_SYSTEM_OTHER_ALGORITHM),,$(error BOARD_AVB_SYSTEM_OTHER_ALGORITHM is not defined)) |
| 4589 | else |
| 4590 | # If key path isn't specified, use the same key as BOARD_AVB_KEY_PATH. |
| 4591 | BOARD_AVB_SYSTEM_OTHER_KEY_PATH := $(BOARD_AVB_KEY_PATH) |
| 4592 | BOARD_AVB_SYSTEM_OTHER_ALGORITHM := $(BOARD_AVB_ALGORITHM) |
| 4593 | endif |
| 4594 | |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 4595 | $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET): $(AVBTOOL) $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) |
| 4596 | @echo Extracting system_other avb key: $@ |
| 4597 | @rm -f $@ |
| 4598 | @mkdir -p $(dir $@) |
| 4599 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) --output $@ |
Bowgo Tsai | 45db7ce | 2019-01-30 14:53:57 +0800 | [diff] [blame] | 4600 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4601 | $(eval $(call declare-0p-target,$(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET),)) |
| 4602 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 4603 | ifndef BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX |
| 4604 | BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX := $(PLATFORM_SECURITY_PATCH_TIMESTAMP) |
| 4605 | endif |
| 4606 | |
| 4607 | BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS += --rollback_index $(BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX) |
| 4608 | endif # end of AVB for BUILDING_SYSTEM_OTHER_IMAGE |
| 4609 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4610 | INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES := \ |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4611 | $(BOARD_AVB_VBMETA_SYSTEM) \ |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4612 | $(BOARD_AVB_VBMETA_VENDOR) \ |
| 4613 | $(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] | 4614 | |
| 4615 | # Not allowing the same partition to appear in multiple groups. |
| 4616 | 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] | 4617 | $(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] | 4618 | endif |
| 4619 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4620 | # When building a standalone recovery image for non-A/B devices, recovery image must be self-signed |
| 4621 | # to be verified independently, and cannot be chained into vbmeta.img. See the link below for |
| 4622 | # details. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4623 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4624 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 4625 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),,\ |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4626 | $(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] | 4627 | See https://android.googlesource.com/platform/external/avb/+/master/README.md#booting-into-recovery)) |
| 4628 | endif |
| 4629 | endif |
| 4630 | |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4631 | # Appends os version as a AVB property descriptor. |
| 4632 | SYSTEM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4633 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4634 | --prop com.android.build.system.os_version:$(SYSTEM_OS_VERSION) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4635 | |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4636 | PRODUCT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4637 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4638 | --prop com.android.build.product.os_version:$(PRODUCT_OS_VERSION) |
| 4639 | |
| 4640 | SYSTEM_EXT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4641 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4642 | --prop com.android.build.system_ext.os_version:$(SYSTEM_EXT_OS_VERSION) |
| 4643 | |
| 4644 | INIT_BOOT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4645 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4646 | --prop com.android.build.init_boot.os_version:$(INIT_BOOT_OS_VERSION) |
| 4647 | |
| 4648 | BOOT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4649 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4650 | --prop com.android.build.boot.os_version:$(BOOT_OS_VERSION) |
| 4651 | |
| 4652 | VENDOR_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4653 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4654 | --prop com.android.build.vendor.os_version:$(VENDOR_OS_VERSION) |
| 4655 | |
| 4656 | ODM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4657 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4658 | --prop com.android.build.odm.os_version:$(ODM_OS_VERSION) |
| 4659 | |
| 4660 | VENDOR_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4661 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4662 | --prop com.android.build.vendor_dlkm.os_version:$(VENDOR_DLKM_OS_VERSION) |
| 4663 | |
| 4664 | ODM_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4665 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4666 | --prop com.android.build.odm_dlkm.os_version:$(ODM_DLKM_OS_VERSION) |
| 4667 | |
| 4668 | SYSTEM_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4669 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4670 | --prop com.android.build.system_dlkm.os_version:$(SYSTEM_DLKM_OS_VERSION) |
| 4671 | |
| 4672 | # Appends fingerprint and security patch level as a AVB property descriptor. |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4673 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4674 | --prop com.android.build.system.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4675 | --prop com.android.build.system.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 4676 | |
| 4677 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4678 | --prop com.android.build.product.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4679 | --prop com.android.build.product.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 4680 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4681 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4682 | --prop com.android.build.system_ext.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4683 | --prop com.android.build.system_ext.security_patch:$(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4684 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4685 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Bowgo Tsai | 8c7f820 | 2022-02-22 14:47:45 +0800 | [diff] [blame] | 4686 | --prop com.android.build.boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4687 | |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4688 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4689 | --prop com.android.build.init_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4690 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4691 | BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4692 | --prop com.android.build.vendor_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 4693 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4694 | BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4695 | --prop com.android.build.vendor_kernel_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 4696 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4697 | BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS += \ |
| 4698 | --prop com.android.build.recovery.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4699 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4700 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4701 | --prop com.android.build.vendor.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4702 | |
| 4703 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4704 | --prop com.android.build.odm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4705 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4706 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4707 | --prop com.android.build.vendor_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4708 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4709 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4710 | --prop com.android.build.odm_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4711 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4712 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4713 | --prop com.android.build.system_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4714 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4715 | BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS += \ |
| 4716 | --prop com.android.build.dtbo.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4717 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4718 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 4719 | --prop com.android.build.pvmfw.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4720 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4721 | # 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] | 4722 | # TODO(b/210875415) Is this security_patch property used? Should it be removed from |
| 4723 | # boot.img when there is no platform ramdisk included in it? |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4724 | ifdef BOOT_SECURITY_PATCH |
| 4725 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4726 | --prop com.android.build.boot.security_patch:$(BOOT_SECURITY_PATCH) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4727 | endif |
| 4728 | |
| 4729 | ifdef INIT_BOOT_SECURITY_PATCH |
| 4730 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4731 | --prop com.android.build.init_boot.security_patch:$(INIT_BOOT_SECURITY_PATCH) |
| 4732 | else ifdef BOOT_SECURITY_PATCH |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4733 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4734 | --prop com.android.build.init_boot.security_patch:$(BOOT_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4735 | endif |
| 4736 | |
| 4737 | ifdef VENDOR_SECURITY_PATCH |
| 4738 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4739 | --prop com.android.build.vendor.security_patch:$(VENDOR_SECURITY_PATCH) |
| 4740 | endif |
| 4741 | |
| 4742 | ifdef ODM_SECURITY_PATCH |
| 4743 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4744 | --prop com.android.build.odm.security_patch:$(ODM_SECURITY_PATCH) |
| 4745 | endif |
| 4746 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4747 | ifdef VENDOR_DLKM_SECURITY_PATCH |
| 4748 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4749 | --prop com.android.build.vendor_dlkm.security_patch:$(VENDOR_DLKM_SECURITY_PATCH) |
| 4750 | endif |
| 4751 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4752 | ifdef ODM_DLKM_SECURITY_PATCH |
| 4753 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4754 | --prop com.android.build.odm_dlkm.security_patch:$(ODM_DLKM_SECURITY_PATCH) |
| 4755 | endif |
| 4756 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4757 | ifdef SYSTEM_DLKM_SECURITY_PATCH |
| 4758 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4759 | --prop com.android.build.system_dlkm.security_patch:$(SYSTEM_DLKM_SECURITY_PATCH) |
| 4760 | endif |
| 4761 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4762 | ifdef PVMFW_SECURITY_PATCH |
| 4763 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 4764 | --prop com.android.build.pvmfw.security_patch:$(PVMFW_SECURITY_PATCH) |
| 4765 | endif |
| 4766 | |
Seungjae Yoo | 939d37b | 2023-12-18 17:12:38 +0900 | [diff] [blame] | 4767 | # Append root digest of microdroid-vendor partition's hashtree descriptor into vendor partition. |
| 4768 | ifdef MICRODROID_VENDOR_IMAGE_MODULE |
| 4769 | MICRODROID_VENDOR_IMAGE := \ |
| 4770 | $(call intermediates-dir-for,ETC,$(MICRODROID_VENDOR_IMAGE_MODULE))/$(MICRODROID_VENDOR_IMAGE_MODULE) |
| 4771 | MICRODROID_VENDOR_ROOT_DIGEST := $(PRODUCT_OUT)/microdroid_vendor_root_digest |
| 4772 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4773 | --prop_from_file com.android.build.microdroid-vendor.root_digest:$(MICRODROID_VENDOR_ROOT_DIGEST) |
| 4774 | $(MICRODROID_VENDOR_ROOT_DIGEST): $(AVBTOOL) $(MICRODROID_VENDOR_IMAGE) |
| 4775 | $(AVBTOOL) print_partition_digests \ |
| 4776 | --image $(MICRODROID_VENDOR_IMAGE) \ |
| 4777 | | tr -d '\n' | sed -E 's/.*: //g' > $@ |
| 4778 | $(INSTALLED_VENDORIMAGE_TARGET): $(MICRODROID_VENDOR_ROOT_DIGEST) |
Seungjae Yoo | e68d922 | 2023-12-04 13:08:24 +0900 | [diff] [blame] | 4779 | endif |
| 4780 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4781 | BOOT_FOOTER_ARGS := BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4782 | INIT_BOOT_FOOTER_ARGS := BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4783 | VENDOR_BOOT_FOOTER_ARGS := BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4784 | 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] | 4785 | DTBO_FOOTER_ARGS := BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4786 | PVMFW_FOOTER_ARGS := BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4787 | SYSTEM_FOOTER_ARGS := BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS |
| 4788 | VENDOR_FOOTER_ARGS := BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4789 | RECOVERY_FOOTER_ARGS := BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4790 | PRODUCT_FOOTER_ARGS := BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4791 | SYSTEM_EXT_FOOTER_ARGS := BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4792 | ODM_FOOTER_ARGS := BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4793 | VENDOR_DLKM_FOOTER_ARGS := BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4794 | ODM_DLKM_FOOTER_ARGS := BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4795 | SYSTEM_DLKM_FOOTER_ARGS := BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4796 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4797 | # 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] | 4798 | # $(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] | 4799 | define _check-and-set-avb-chain-args |
| 4800 | $(eval part := $(1)) |
| 4801 | $(eval PART=$(call to-upper,$(part))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4802 | |
| 4803 | $(eval _key_path := BOARD_AVB_$(PART)_KEY_PATH) |
| 4804 | $(eval _signing_algorithm := BOARD_AVB_$(PART)_ALGORITHM) |
| 4805 | $(eval _rollback_index := BOARD_AVB_$(PART)_ROLLBACK_INDEX) |
| 4806 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 4807 | $(if $($(_key_path)),,$(error $(_key_path) is not defined)) |
| 4808 | $(if $($(_signing_algorithm)),,$(error $(_signing_algorithm) is not defined)) |
| 4809 | $(if $($(_rollback_index)),,$(error $(_rollback_index) is not defined)) |
| 4810 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 4811 | |
| 4812 | # Set INTERNAL_AVB_(PART)_SIGNING_ARGS |
| 4813 | $(eval _signing_args := INTERNAL_AVB_$(PART)_SIGNING_ARGS) |
| 4814 | $(eval $(_signing_args) := \ |
| 4815 | --algorithm $($(_signing_algorithm)) --key $($(_key_path))) |
| 4816 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4817 | # The recovery partition in non-A/B devices should be verified separately. Skip adding the chain |
| 4818 | # partition descriptor for recovery partition into vbmeta.img. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4819 | $(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] | 4820 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4821 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4822 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4823 | # 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] | 4824 | # 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] | 4825 | $(if $(filter $(part),$(part:vbmeta_%=%)),\ |
| 4826 | $(eval _footer_args := $(PART)_FOOTER_ARGS) \ |
| 4827 | $(eval $($(_footer_args)) += --rollback_index $($(_rollback_index)))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4828 | endef |
| 4829 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4830 | # Checks and sets the required build variables for an AVB partition. The partition will be |
| 4831 | # 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] | 4832 | # image descriptor will be included into vbmeta.img, unless it has been already added to any chained |
| 4833 | # VBMeta image. |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 4834 | # Multiple boot images can be generated based on BOARD_KERNEL_BINARIES |
| 4835 | # but vbmeta would capture the image descriptor of only the first boot |
| 4836 | # image specified in BUILT_BOOTIMAGE_TARGET. |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4837 | # $(1): Partition name, e.g. boot or system. |
| 4838 | define check-and-set-avb-args |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4839 | $(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] | 4840 | $(if $(BOARD_AVB_$(call to-upper,$(1))_KEY_PATH),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4841 | $(if $(_in_chained_vbmeta),\ |
| 4842 | $(error Chaining partition "$(1)" in chained VBMeta image is not supported)) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4843 | $(call _check-and-set-avb-chain-args,$(1)),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4844 | $(if $(_in_chained_vbmeta),,\ |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 4845 | $(if $(filter boot,$(1)),\ |
| 4846 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4847 | --include_descriptors_from_image $(firstword $(call images-for-partitions,$(1)))),\ |
| 4848 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4849 | --include_descriptors_from_image $(call images-for-partitions,$(1)))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4850 | endef |
| 4851 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4852 | # Checks and sets build variables for a custom chained partition to include it into vbmeta.img. |
| 4853 | # $(1): the custom partition to enable AVB chain. |
| 4854 | define check-and-set-custom-avb-chain-args |
| 4855 | $(eval part := $(1)) |
| 4856 | $(eval PART=$(call to-upper,$(part))) |
| 4857 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4858 | $(eval _key_path := BOARD_AVB_$(PART)_KEY_PATH) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4859 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4860 | $(if $($(_key_path)),,$(error $(_key_path) is not defined)) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4861 | |
| 4862 | INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4863 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey |
| 4864 | endef |
| 4865 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 4866 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4867 | $(eval $(call check-and-set-avb-args,boot)) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 4868 | endif |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4869 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4870 | ifdef INSTALLED_INIT_BOOT_IMAGE_TARGET |
| 4871 | $(eval $(call check-and-set-avb-args,init_boot)) |
| 4872 | endif |
| 4873 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4874 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 4875 | $(eval $(call check-and-set-avb-args,vendor_boot)) |
| 4876 | endif |
| 4877 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4878 | ifdef INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET |
| 4879 | $(eval $(call check-and-set-avb-args,vendor_kernel_boot)) |
| 4880 | endif |
| 4881 | |
Bowgo Tsai | e691aef | 2022-01-04 14:33:43 +0800 | [diff] [blame] | 4882 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4883 | $(eval $(call check-and-set-avb-args,system)) |
Bowgo Tsai | e691aef | 2022-01-04 14:33:43 +0800 | [diff] [blame] | 4884 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4885 | |
| 4886 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4887 | $(eval $(call check-and-set-avb-args,vendor)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4888 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4889 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4890 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4891 | $(eval $(call check-and-set-avb-args,product)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4892 | endif |
| 4893 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4894 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 4895 | $(eval $(call check-and-set-avb-args,system_ext)) |
Tao Bao | cee6d04 | 2018-08-22 23:39:03 -0700 | [diff] [blame] | 4896 | endif |
| 4897 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4898 | ifdef INSTALLED_ODMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4899 | $(eval $(call check-and-set-avb-args,odm)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4900 | endif |
| 4901 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4902 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 4903 | $(eval $(call check-and-set-avb-args,vendor_dlkm)) |
| 4904 | endif |
| 4905 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4906 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 4907 | $(eval $(call check-and-set-avb-args,odm_dlkm)) |
| 4908 | endif |
| 4909 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4910 | ifdef INSTALLED_SYSTEM_DLKMIMAGE_TARGET |
| 4911 | $(eval $(call check-and-set-avb-args,system_dlkm)) |
| 4912 | endif |
| 4913 | |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4914 | ifdef INSTALLED_DTBOIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4915 | $(eval $(call check-and-set-avb-args,dtbo)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4916 | endif |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4917 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4918 | ifdef INSTALLED_PVMFWIMAGE_TARGET |
| 4919 | $(eval $(call check-and-set-avb-args,pvmfw)) |
| 4920 | endif |
| 4921 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4922 | ifdef INSTALLED_RECOVERYIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4923 | $(eval $(call check-and-set-avb-args,recovery)) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4924 | endif |
Bowgo Tsai | 53cf999 | 2017-06-13 11:27:06 +0800 | [diff] [blame] | 4925 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4926 | # Not using INSTALLED_VBMETA_SYSTEMIMAGE_TARGET as it won't be set yet. |
| 4927 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 4928 | $(eval $(call check-and-set-avb-args,vbmeta_system)) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4929 | endif |
| 4930 | |
| 4931 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 4932 | $(eval $(call check-and-set-avb-args,vbmeta_vendor)) |
| 4933 | endif |
| 4934 | |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4935 | ifdef BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
| 4936 | $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),$(eval $(call check-and-set-avb-args,vbmeta_$(partition)))) |
| 4937 | $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),$(eval BOARD_AVB_MAKE_VBMETA_$(call to-upper,$(partition))_IMAGE_ARGS += --padding_size 4096)) |
| 4938 | endif |
| 4939 | |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 4940 | ifneq ($(strip $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST)),) |
| 4941 | $(foreach partition,$(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4942 | $(eval $(call check-and-set-custom-avb-chain-args,$(partition)))) |
| 4943 | endif |
| 4944 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4945 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --padding_size 4096 |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4946 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += --padding_size 4096 |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4947 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += --padding_size 4096 |
| 4948 | |
| 4949 | ifeq (eng,$(filter eng, $(TARGET_BUILD_VARIANT))) |
Tao Bao | 240dcb8 | 2018-10-22 13:02:53 -0700 | [diff] [blame] | 4950 | # We only need the flag in top-level vbmeta.img. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4951 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --set_hashtree_disabled_flag |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4952 | endif |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4953 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4954 | ifdef BOARD_AVB_ROLLBACK_INDEX |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4955 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --rollback_index $(BOARD_AVB_ROLLBACK_INDEX) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4956 | endif |
| 4957 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4958 | ifdef BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX |
| 4959 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += \ |
| 4960 | --rollback_index $(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4961 | endif |
| 4962 | |
| 4963 | ifdef BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX |
| 4964 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += \ |
| 4965 | --rollback_index $(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX) |
John Reck | 0588b43 | 2018-05-03 13:20:01 -0700 | [diff] [blame] | 4966 | endif |
| 4967 | |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4968 | ifdef BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
| 4969 | $(foreach partition,$(call to-upper,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)), \ |
| 4970 | $(if $(BOARD_AVB_VBMETA_$(partition)_ROLLBACK_INDEX),$(eval \ |
| 4971 | BOARD_AVB_MAKE_VBMETA_$(partition)_IMAGE_ARGS += \ |
| 4972 | --rollback_index $(BOARD_AVB_VBMETA_$(partition)_ROLLBACK_INDEX)))) |
| 4973 | endif |
| 4974 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4975 | # $(1): the directory to extract public keys to |
| 4976 | define extract-avb-chain-public-keys |
| 4977 | $(if $(BOARD_AVB_BOOT_KEY_PATH),\ |
| 4978 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_BOOT_KEY_PATH) \ |
| 4979 | --output $(1)/boot.avbpubkey) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4980 | $(if $(BOARD_AVB_INIT_BOOT_KEY_PATH),\ |
| 4981 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_INIT_BOOT_KEY_PATH) \ |
| 4982 | --output $(1)/init_boot.avbpubkey) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4983 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),\ |
| 4984 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_BOOT_KEY_PATH) \ |
| 4985 | --output $(1)/vendor_boot.avbpubkey) |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4986 | $(if $(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH),\ |
| 4987 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH) \ |
| 4988 | --output $(1)/vendor_kernel_boot.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4989 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 4990 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_KEY_PATH) \ |
| 4991 | --output $(1)/system.avbpubkey) |
| 4992 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 4993 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KEY_PATH) \ |
| 4994 | --output $(1)/vendor.avbpubkey) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4995 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 4996 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PRODUCT_KEY_PATH) \ |
| 4997 | --output $(1)/product.avbpubkey) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4998 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 4999 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_EXT_KEY_PATH) \ |
| 5000 | --output $(1)/system_ext.avbpubkey) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5001 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 5002 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_KEY_PATH) \ |
| 5003 | --output $(1)/odm.avbpubkey) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5004 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 5005 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_DLKM_KEY_PATH) \ |
| 5006 | --output $(1)/vendor_dlkm.avbpubkey) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5007 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 5008 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_DLKM_KEY_PATH) \ |
| 5009 | --output $(1)/odm_dlkm.avbpubkey) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5010 | $(if $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH),\ |
| 5011 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH) \ |
| 5012 | --output $(1)/system_dlkm.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 5013 | $(if $(BOARD_AVB_DTBO_KEY_PATH),\ |
| 5014 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_DTBO_KEY_PATH) \ |
| 5015 | --output $(1)/dtbo.avbpubkey) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5016 | $(if $(BOARD_AVB_PVMFW_KEY_PATH),\ |
| 5017 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PVMFW_KEY_PATH) \ |
| 5018 | --output $(1)/pvmfw.avbpubkey) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 5019 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),\ |
| 5020 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_RECOVERY_KEY_PATH) \ |
| 5021 | --output $(1)/recovery.avbpubkey) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 5022 | $(if $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH),\ |
| 5023 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 5024 | --output $(1)/vbmeta_system.avbpubkey) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5025 | $(if $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH),\ |
| 5026 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 5027 | --output $(1)/vbmeta_vendor.avbpubkey) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 5028 | $(if $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST),\ |
| 5029 | $(hide) $(foreach partition,$(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5030 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH) \ |
junki486.lee | 8a4dca1 | 2024-05-23 13:10:05 +0900 | [diff] [blame] | 5031 | --output $(1)/$(partition).avbpubkey;)) |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 5032 | $(if $(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),\ |
| 5033 | $(hide) $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS), \ |
| 5034 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_KEY_PATH) \ |
| 5035 | --output $(1)/vbmeta_$(partition).avbpubkey;)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 5036 | endef |
| 5037 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5038 | # Builds a chained VBMeta image. This VBMeta image will contain the descriptors for the partitions |
| 5039 | # 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] | 5040 | # 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] | 5041 | # := system system_ext`, `vbmeta_system.img` will be created that includes the descriptors for |
| 5042 | # `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] | 5043 | # `vbmeta.img` as a chained partition. |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 5044 | # $(1): VBMeta image name, such as "vbmeta_system", "vbmeta_vendor" etc. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5045 | # $(2): Output filename. |
| 5046 | define build-chained-vbmeta-image |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 5047 | $(call pretty,"Target chained vbmeta image: $@") |
| 5048 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 5049 | $(INTERNAL_AVB_$(call to-upper,$(1))_SIGNING_ARGS) \ |
| 5050 | $(BOARD_AVB_MAKE_$(call to-upper,$(1))_IMAGE_ARGS) \ |
| 5051 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(1))), \ |
| 5052 | --include_descriptors_from_image $(call images-for-partitions,$(image))) \ |
| 5053 | --output $@ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5054 | endef |
| 5055 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 5056 | ifdef BUILDING_SYSTEM_IMAGE |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 5057 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 5058 | INSTALLED_VBMETA_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_system.img |
| 5059 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5060 | $(AVBTOOL) \ |
| 5061 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_SYSTEM)) \ |
| 5062 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 5063 | $(call build-chained-vbmeta-image,vbmeta_system) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 5064 | |
| 5065 | $(call declare-1p-container,$(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET),) |
| 5066 | |
| 5067 | SYSTEM_NOTICE_DEPS += $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5068 | endif |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 5069 | endif # BUILDING_SYSTEM_IMAGE |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5070 | |
| 5071 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 5072 | INSTALLED_VBMETA_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_vendor.img |
| 5073 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5074 | $(AVBTOOL) \ |
| 5075 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_VENDOR)) \ |
| 5076 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5077 | $(call build-chained-vbmeta-image,vbmeta_vendor) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 5078 | |
| 5079 | $(call declare-1p-container,$(INSTALLED_VBMETA_VENDORIMAGE_TARGET),) |
| 5080 | |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 5081 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) |
| 5082 | endif |
| 5083 | |
| 5084 | ifdef BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
| 5085 | define declare-custom-vbmeta-target |
| 5086 | INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_$(call to-lower,$(1)).img |
| 5087 | $$(INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET): \ |
| 5088 | $(AVBTOOL) \ |
| 5089 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_$(call to-upper,$(1)))) \ |
| 5090 | $(BOARD_AVB_VBMETA_$(call to-upper,$(1))_KEY_PATH) |
| 5091 | $$(call build-chained-vbmeta-image,vbmeta_$(call to-lower,$(1))) |
| 5092 | |
| 5093 | $(call declare-1p-container,$(INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET),) |
| 5094 | |
| 5095 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET) |
| 5096 | endef |
| 5097 | |
| 5098 | $(foreach partition,\ |
| 5099 | $(call to-upper,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)),\ |
| 5100 | $(eval $(call declare-custom-vbmeta-target,$(partition)))) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5101 | endif |
| 5102 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5103 | define build-vbmetaimage-target |
| 5104 | $(call pretty,"Target vbmeta image: $(INSTALLED_VBMETAIMAGE_TARGET)") |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 5105 | $(hide) mkdir -p $(AVB_CHAIN_KEY_DIR) |
| 5106 | $(call extract-avb-chain-public-keys, $(AVB_CHAIN_KEY_DIR)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5107 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 5108 | $(INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 5109 | $(PRIVATE_AVB_VBMETA_SIGNING_ARGS) \ |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5110 | $(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
| 5111 | --output $@ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 5112 | $(hide) rm -rf $(AVB_CHAIN_KEY_DIR) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5113 | endef |
| 5114 | |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 5115 | ifdef BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5116 | INSTALLED_VBMETAIMAGE_TARGET := $(BUILT_VBMETAIMAGE_TARGET) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 5117 | $(INSTALLED_VBMETAIMAGE_TARGET): PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 5118 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
| 5119 | |
Kelvin Zhang | 0841b90 | 2023-01-23 11:12:26 -0800 | [diff] [blame] | 5120 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 5121 | $(INSTALLED_VBMETAIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5122 | $(AVBTOOL) \ |
| 5123 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5124 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5125 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) \ |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5126 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5127 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 5128 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 5129 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5130 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5131 | $(INSTALLED_ODMIMAGE_TARGET) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5132 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5133 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5134 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5135 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5136 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5137 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5138 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 5139 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) \ |
| 5140 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) \ |
Kelvin Zhang | 0841b90 | 2023-01-23 11:12:26 -0800 | [diff] [blame] | 5141 | $(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] | 5142 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 5143 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
Kelvin Zhang | 0841b90 | 2023-01-23 11:12:26 -0800 | [diff] [blame] | 5144 | $(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] | 5145 | $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5146 | $(build-vbmetaimage-target) |
| 5147 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 5148 | $(call declare-1p-container,$(INSTALLED_VBMETAIMAGE_TARGET),) |
| 5149 | |
| 5150 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_VBMETAIMAGE_TARGET) |
| 5151 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5152 | .PHONY: vbmetaimage-nodeps |
Bowgo Tsai | 6a4eaa5 | 2019-12-09 15:48:09 +0800 | [diff] [blame] | 5153 | vbmetaimage-nodeps: PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 5154 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5155 | vbmetaimage-nodeps: |
| 5156 | $(build-vbmetaimage-target) |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 5157 | endif # BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5158 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5159 | endif # BOARD_AVB_ENABLE |
| 5160 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 5161 | # List of files from all images |
| 5162 | INTERNAL_ALLIMAGES_FILES := \ |
| 5163 | $(FULL_SYSTEMIMAGE_DEPS) \ |
| 5164 | $(INTERNAL_RAMDISK_FILES) \ |
| 5165 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 5166 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 5167 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 5168 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 5169 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 5170 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 5171 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5172 | $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) \ |
Jiyong Park | e219f00 | 2022-12-16 14:30:03 +0900 | [diff] [blame] | 5173 | $(INTERNAL_PVMFWIMAGE_FILES) \ |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 5174 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 5175 | # ----------------------------------------------------------------- |
Jooyung Han | e78ad74 | 2023-09-11 13:40:52 +0900 | [diff] [blame] | 5176 | # Run apex_sepolicy_tests for all installed APEXes |
| 5177 | |
| 5178 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jooyung Han | ad7cfb5 | 2024-12-03 17:04:59 +0900 | [diff] [blame] | 5179 | # TODO(b/353896817) apex_sepolicy_tests supports only ext4 |
| 5180 | ifeq (ext4,$(PRODUCT_DEFAULT_APEX_PAYLOAD_TYPE)) |
Jooyung Han | e78ad74 | 2023-09-11 13:40:52 +0900 | [diff] [blame] | 5181 | intermediate := $(call intermediates-dir-for,PACKAGING,apex_sepolicy_tests) |
| 5182 | apex_dirs := \ |
| 5183 | $(TARGET_OUT)/apex/% \ |
| 5184 | $(TARGET_OUT_SYSTEM_EXT)/apex/% \ |
| 5185 | $(TARGET_OUT_VENDOR)/apex/% \ |
Jooyung Han | 1e45baf | 2024-08-15 07:38:17 +0000 | [diff] [blame] | 5186 | $(TARGET_OUT_ODM)/apex/% \ |
Jooyung Han | e78ad74 | 2023-09-11 13:40:52 +0900 | [diff] [blame] | 5187 | $(TARGET_OUT_PRODUCT)/apex/% \ |
| 5188 | |
| 5189 | apex_files := $(sort $(filter $(apex_dirs), $(INTERNAL_ALLIMAGES_FILES))) |
| 5190 | apex_dirs := |
| 5191 | |
| 5192 | # $1: apex file |
| 5193 | # $2: output file |
| 5194 | define _run_apex_sepolicy_tests |
| 5195 | $2: $1 \ |
| 5196 | $(HOST_OUT_EXECUTABLES)/apex_sepolicy_tests \ |
| 5197 | $(HOST_OUT_EXECUTABLES)/deapexer \ |
| 5198 | $(HOST_OUT_EXECUTABLES)/debugfs_static |
| 5199 | @rm -rf $$@ |
| 5200 | @mkdir -p $(dir $$@) |
| 5201 | $(HOST_OUT_EXECUTABLES)/apex_sepolicy_tests --all -f <($(HOST_OUT_EXECUTABLES)/deapexer --debugfs_path $(HOST_OUT_EXECUTABLES)/debugfs_static list -Z $$<) |
| 5202 | @touch $$@ |
| 5203 | endef |
| 5204 | |
| 5205 | # $1: apex file list |
| 5206 | define run_apex_sepolicy_tests |
| 5207 | $(foreach apex_file,$1, \ |
| 5208 | $(eval passfile := $(patsubst $(PRODUCT_OUT)/%,$(intermediate)/%.pass,$(apex_file))) \ |
| 5209 | $(eval $(call _run_apex_sepolicy_tests,$(apex_file),$(passfile))) \ |
| 5210 | $(passfile)) |
| 5211 | endef |
| 5212 | |
| 5213 | .PHONY: run_apex_sepolicy_tests |
| 5214 | run_apex_sepolicy_tests: $(call run_apex_sepolicy_tests,$(apex_files)) |
| 5215 | |
| 5216 | droid_targets: run_apex_sepolicy_tests |
| 5217 | |
| 5218 | apex_files := |
| 5219 | intermediate := |
Jooyung Han | ad7cfb5 | 2024-12-03 17:04:59 +0900 | [diff] [blame] | 5220 | endif # PRODUCT_DEFAULT_APEX_PAYLOAD_TYPE |
Jooyung Han | e78ad74 | 2023-09-11 13:40:52 +0900 | [diff] [blame] | 5221 | endif # TARGET_BUILD_UNBUNDLED |
| 5222 | |
| 5223 | # ----------------------------------------------------------------- |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5224 | # Check VINTF of build |
| 5225 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5226 | # 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] | 5227 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5228 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5229 | intermediates := $(call intermediates-dir-for,PACKAGING,check_vintf_all) |
| 5230 | check_vintf_all_deps := |
| 5231 | |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 5232 | # ----------------------------------------------------------------- |
Jooyung Han | 9738259 | 2024-03-07 17:32:09 +0900 | [diff] [blame] | 5233 | # Activate APEXes for checkvintf |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 5234 | |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 5235 | apex_dirs := \ |
Jooyung Han | 9738259 | 2024-03-07 17:32:09 +0900 | [diff] [blame] | 5236 | $(TARGET_OUT)/apex/% \ |
| 5237 | $(TARGET_OUT_PRODUCT)/apex/% \ |
| 5238 | $(TARGET_OUT_SYSTEM_EXT)/apex/% \ |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 5239 | $(TARGET_OUT_VENDOR)/apex/% \ |
Jooyung Han | 1e45baf | 2024-08-15 07:38:17 +0000 | [diff] [blame] | 5240 | $(TARGET_OUT_ODM)/apex/% \ |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 5241 | |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 5242 | apex_files := $(sort $(filter $(apex_dirs), $(INTERNAL_ALLIMAGES_FILES))) |
Jooyung Han | c9542ab | 2023-06-27 16:12:32 +0900 | [diff] [blame] | 5243 | |
| 5244 | APEX_OUT := $(intermediates)/apex |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 5245 | APEX_INFO_FILE := $(APEX_OUT)/apex-info-list.xml |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 5246 | |
Jooyung Han | c9542ab | 2023-06-27 16:12:32 +0900 | [diff] [blame] | 5247 | # apexd_host scans/activates APEX files and writes /apex/apex-info-list.xml |
Jooyung Han | 737f6e5 | 2023-10-12 10:03:50 +0900 | [diff] [blame] | 5248 | # Note that `@echo $(PRIVATE_APEX_FILES)` line is added to trigger the rule when the APEX list is changed. |
| 5249 | $(APEX_INFO_FILE): PRIVATE_APEX_FILES := $(apex_files) |
Jooyung Han | c9542ab | 2023-06-27 16:12:32 +0900 | [diff] [blame] | 5250 | $(APEX_INFO_FILE): $(HOST_OUT_EXECUTABLES)/apexd_host $(apex_files) |
| 5251 | @echo "Extracting apexes..." |
Jooyung Han | 737f6e5 | 2023-10-12 10:03:50 +0900 | [diff] [blame] | 5252 | @echo $(PRIVATE_APEX_FILES) > /dev/null |
Jooyung Han | c9542ab | 2023-06-27 16:12:32 +0900 | [diff] [blame] | 5253 | @rm -rf $(APEX_OUT) |
| 5254 | @mkdir -p $(APEX_OUT) |
Jooyung Han | 9738259 | 2024-03-07 17:32:09 +0900 | [diff] [blame] | 5255 | $< --system_path $(TARGET_OUT) \ |
| 5256 | --system_ext_path $(TARGET_OUT_SYSTEM_EXT) \ |
| 5257 | --product_path $(TARGET_OUT_PRODUCT) \ |
| 5258 | --vendor_path $(TARGET_OUT_VENDOR) \ |
Jooyung Han | 1e45baf | 2024-08-15 07:38:17 +0000 | [diff] [blame] | 5259 | --odm_path $(TARGET_OUT_ODM) \ |
Jooyung Han | c9542ab | 2023-06-27 16:12:32 +0900 | [diff] [blame] | 5260 | --apex_path $(APEX_OUT) |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 5261 | |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 5262 | apex_files := |
| 5263 | apex_dirs := |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 5264 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5265 | # The build system only writes VINTF metadata to */etc/vintf paths. Legacy paths aren't needed here |
| 5266 | # because they are only used for prebuilt images. |
Jooyung Han | 9738259 | 2024-03-07 17:32:09 +0900 | [diff] [blame] | 5267 | # APEX files in /$partition/apex can have VINTF fragments as well. |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5268 | check_vintf_common_srcs_patterns := \ |
| 5269 | $(TARGET_OUT)/etc/vintf/% \ |
| 5270 | $(TARGET_OUT_VENDOR)/etc/vintf/% \ |
| 5271 | $(TARGET_OUT_ODM)/etc/vintf/% \ |
| 5272 | $(TARGET_OUT_PRODUCT)/etc/vintf/% \ |
| 5273 | $(TARGET_OUT_SYSTEM_EXT)/etc/vintf/% \ |
Jooyung Han | 9738259 | 2024-03-07 17:32:09 +0900 | [diff] [blame] | 5274 | $(apex_dirs) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5275 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 5276 | 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] | 5277 | check_vintf_common_srcs_patterns := |
| 5278 | |
| 5279 | check_vintf_has_system := |
| 5280 | check_vintf_has_vendor := |
| 5281 | |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5282 | ifneq (,$(filter EMPTY_ODM_SKU_PLACEHOLDER,$(ODM_MANIFEST_SKUS))) |
| 5283 | $(error EMPTY_ODM_SKU_PLACEHOLDER is an internal variable and cannot be used for ODM_MANIFEST_SKUS) |
| 5284 | endif |
| 5285 | ifneq (,$(filter EMPTY_VENDOR_SKU_PLACEHOLDER,$(DEVICE_MANIFEST_SKUS))) |
| 5286 | $(error EMPTY_VENDOR_SKU_PLACEHOLDER is an internal variable and cannot be used for DEIVCE_MANIFEST_SKUS) |
| 5287 | endif |
| 5288 | |
Devin Moore | b1a3316 | 2024-02-15 17:32:16 +0000 | [diff] [blame] | 5289 | # -- Check system and system_ext manifests / matrices including fragments (excluding other framework manifests / matrices, e.g. product); |
Yi-Yo Chiang | 600feb8 | 2024-02-22 16:22:41 +0800 | [diff] [blame] | 5290 | ifdef BUILDING_SYSTEM_IMAGE |
Devin Moore | b1a3316 | 2024-02-15 17:32:16 +0000 | [diff] [blame] | 5291 | check_vintf_system_deps := $(filter $(TARGET_OUT)/etc/vintf/% \ |
Jooyung Han | 9738259 | 2024-03-07 17:32:09 +0900 | [diff] [blame] | 5292 | $(TARGET_OUT_SYSTEM_EXT)/etc/vintf/% \ |
| 5293 | $(TARGET_OUT)/apex/% \ |
| 5294 | $(TARGET_OUT_SYSTEM_EXT)/apex/%, \ |
Devin Moore | b1a3316 | 2024-02-15 17:32:16 +0000 | [diff] [blame] | 5295 | $(check_vintf_common_srcs)) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5296 | ifneq ($(check_vintf_system_deps),) |
| 5297 | check_vintf_has_system := true |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 5298 | |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 5299 | check_vintf_system_log := $(intermediates)/check_vintf_system.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5300 | check_vintf_all_deps += $(check_vintf_system_log) |
Jooyung Han | 9738259 | 2024-03-07 17:32:09 +0900 | [diff] [blame] | 5301 | $(check_vintf_system_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_system_deps) $(APEX_INFO_FILE) |
| 5302 | @( $< --check-one --dirmap /system:$(TARGET_OUT) --dirmap /apex:$(APEX_OUT) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 5303 | $(call declare-1p-target,$(check_vintf_system_log)) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5304 | check_vintf_system_log := |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 5305 | |
Devin Moore | 62d0a73 | 2022-10-13 16:50:50 +0000 | [diff] [blame] | 5306 | # -- Check framework manifest against frozen manifests for GSI targets. They need to be compatible. |
| 5307 | ifneq (true, $(BUILDING_VENDOR_IMAGE)) |
| 5308 | vintffm_log := $(intermediates)/vintffm.log |
| 5309 | endif |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 5310 | check_vintf_all_deps += $(vintffm_log) |
Jooyung Han | 9738259 | 2024-03-07 17:32:09 +0900 | [diff] [blame] | 5311 | $(vintffm_log): $(HOST_OUT_EXECUTABLES)/vintffm $(check_vintf_system_deps) $(APEX_INFO_FILE) |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 5312 | @( $< --check --dirmap /system:$(TARGET_OUT) \ |
Devin Moore | 078bfdf | 2023-06-01 17:54:03 +0000 | [diff] [blame] | 5313 | --dirmap /system_ext:$(TARGET_OUT_SYSTEM_EXT) \ |
| 5314 | --dirmap /product:$(TARGET_OUT_PRODUCT) \ |
Jooyung Han | 9738259 | 2024-03-07 17:32:09 +0900 | [diff] [blame] | 5315 | --dirmap /apex:$(APEX_OUT) \ |
Bill Yang | d46dbd5 | 2024-10-07 10:45:34 +0000 | [diff] [blame] | 5316 | system/libhidl/vintfdata/frozen > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 5317 | |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 5318 | $(call declare-1p-target,$(vintffm_log)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5319 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5320 | endif # check_vintf_system_deps |
| 5321 | check_vintf_system_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5322 | |
Yi-Yo Chiang | 600feb8 | 2024-02-22 16:22:41 +0800 | [diff] [blame] | 5323 | endif # BUILDING_SYSTEM_IMAGE |
| 5324 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5325 | # -- Check vendor manifest / matrix including fragments (excluding other device manifests / matrices) |
Devin Moore | 6795ca7 | 2024-02-15 21:30:38 +0000 | [diff] [blame] | 5326 | check_vintf_vendor_deps := $(filter $(TARGET_OUT_VENDOR)/etc/vintf/% \ |
| 5327 | $(TARGET_OUT_VENDOR)/apex/%, \ |
| 5328 | $(check_vintf_common_srcs)) |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 5329 | ifneq ($(strip $(check_vintf_vendor_deps)),) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5330 | check_vintf_has_vendor := true |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 5331 | check_vintf_vendor_log := $(intermediates)/check_vintf_vendor.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5332 | check_vintf_all_deps += $(check_vintf_vendor_log) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 5333 | # Check vendor SKU=(empty) case when: |
| 5334 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 5335 | # - 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] | 5336 | $(check_vintf_vendor_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 5337 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 5338 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5339 | $(DEVICE_MANIFEST_SKUS) |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 5340 | $(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] | 5341 | $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 5342 | ( $< --check-one --dirmap /vendor:$(TARGET_OUT_VENDOR) --dirmap /apex:$(APEX_OUT) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5343 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 5344 | > $@ 2>&1 ) || ( cat $@ && exit 1 ); ) |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 5345 | $(call declare-1p-target,$(check_vintf_vendor_log)) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5346 | check_vintf_vendor_log := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5347 | endif # check_vintf_vendor_deps |
| 5348 | check_vintf_vendor_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5349 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5350 | # -- Kernel version and configurations. |
| 5351 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
| 5352 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5353 | BUILT_KERNEL_CONFIGS_FILE := $(intermediates)/kernel_configs.txt |
| 5354 | BUILT_KERNEL_VERSION_FILE := $(intermediates)/kernel_version.txt |
| 5355 | |
| 5356 | my_board_extracted_kernel := |
| 5357 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5358 | # Tools for decompression that is not in PATH. |
| 5359 | # Check $(EXTRACT_KERNEL) for decompression algorithms supported by the script. |
| 5360 | # Algorithms that are in the script but not in this list will be found in PATH. |
| 5361 | my_decompress_tools := \ |
| 5362 | lz4:$(HOST_OUT_EXECUTABLES)/lz4 \ |
| 5363 | |
Kelvin Zhang | 4a4bbda | 2023-09-19 10:47:24 -0700 | [diff] [blame] | 5364 | |
| 5365 | # BOARD_KERNEL_CONFIG_FILE and BOARD_KERNEL_VERSION can be used to override the values extracted |
| 5366 | # from INSTALLED_KERNEL_TARGET. |
| 5367 | ifdef BOARD_KERNEL_VERSION |
| 5368 | $(BUILT_KERNEL_VERSION_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 5369 | $(BUILT_KERNEL_VERSION_FILE): $(foreach pair,$(my_decompress_tools),$(call word-colon,2,$(pair))) |
| 5370 | $(BUILT_KERNEL_VERSION_FILE): $(EXTRACT_KERNEL) $(firstword $(INSTALLED_KERNEL_TARGET)) |
| 5371 | KERNEL_RELEASE=`$(EXTRACT_KERNEL) --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(firstword $(INSTALLED_KERNEL_TARGET)) \ |
| 5372 | --output-release` ;\ |
| 5373 | if [ "$$KERNEL_RELEASE" != '$(BOARD_KERNEL_VERSION)' ]; then \ |
| 5374 | echo "Specified kernel version '$(BOARD_KERNEL_VERSION)' does not match actual kernel version '$$KERNEL_RELEASE' " ; exit 1; fi; |
| 5375 | echo '$(BOARD_KERNEL_VERSION)' > $@ |
| 5376 | |
| 5377 | ifdef BOARD_KERNEL_CONFIG_FILE |
| 5378 | $(BUILT_KERNEL_CONFIGS_FILE): $(BOARD_KERNEL_CONFIG_FILE) |
| 5379 | cp $< $@ |
| 5380 | |
| 5381 | $(call declare-license-metadata,$(BUILT_KERNEL_CONFIGS_FILE),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
| 5382 | $(call declare-license-metadata,$(BUILT_KERNEL_VERSION_FILE),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
| 5383 | |
| 5384 | my_board_extracted_kernel := true |
| 5385 | endif # BOARD_KERNEL_CONFIG_FILE |
| 5386 | endif # BOARD_KERNEL_VERSION |
| 5387 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 5388 | |
| 5389 | ifneq ($(my_board_extracted_kernel),true) |
| 5390 | ifdef INSTALLED_KERNEL_TARGET |
Kelvin Zhang | 4a4bbda | 2023-09-19 10:47:24 -0700 | [diff] [blame] | 5391 | ifndef BOARD_KERNEL_VERSION |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5392 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
Kelvin Zhang | 4a4bbda | 2023-09-19 10:47:24 -0700 | [diff] [blame] | 5393 | endif |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5394 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 5395 | $(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] | 5396 | $(BUILT_KERNEL_CONFIGS_FILE): $(EXTRACT_KERNEL) $(firstword $(INSTALLED_KERNEL_TARGET)) |
| 5397 | $< --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(firstword $(INSTALLED_KERNEL_TARGET)) \ |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5398 | --output-configs $@ \ |
Kelvin Zhang | 4a4bbda | 2023-09-19 10:47:24 -0700 | [diff] [blame] | 5399 | $(if $(BOARD_KERNEL_VERSION),,--output-release $(BUILT_KERNEL_VERSION_FILE)) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5400 | |
Bob Badour | 7cc4e33 | 2023-03-01 10:16:04 -0800 | [diff] [blame] | 5401 | $(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] | 5402 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 5403 | my_board_extracted_kernel := true |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5404 | endif # INSTALLED_KERNEL_TARGET |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 5405 | endif # my_board_extracted_kernel |
| 5406 | |
| 5407 | ifneq ($(my_board_extracted_kernel),true) |
| 5408 | ifdef INSTALLED_BOOTIMAGE_TARGET |
| 5409 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 5410 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 5411 | $(BUILT_KERNEL_CONFIGS_FILE): $(foreach pair,$(my_decompress_tools),$(call word-colon,2,$(pair))) |
| 5412 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_UNPACKED_BOOTIMG := $(intermediates)/unpacked_bootimage |
| 5413 | $(BUILT_KERNEL_CONFIGS_FILE): \ |
| 5414 | $(HOST_OUT_EXECUTABLES)/unpack_bootimg \ |
| 5415 | $(EXTRACT_KERNEL) \ |
| 5416 | $(INSTALLED_BOOTIMAGE_TARGET) |
| 5417 | $(HOST_OUT_EXECUTABLES)/unpack_bootimg --boot_img $(INSTALLED_BOOTIMAGE_TARGET) --out $(PRIVATE_UNPACKED_BOOTIMG) |
| 5418 | $(EXTRACT_KERNEL) --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(PRIVATE_UNPACKED_BOOTIMG)/kernel \ |
| 5419 | --output-configs $@ \ |
| 5420 | --output-release $(BUILT_KERNEL_VERSION_FILE) |
| 5421 | |
Bob Badour | 7cc4e33 | 2023-03-01 10:16:04 -0800 | [diff] [blame] | 5422 | $(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] | 5423 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 5424 | my_board_extracted_kernel := true |
| 5425 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 5426 | endif # my_board_extracted_kernel |
| 5427 | |
Colin Cross | 27f36d1 | 2023-07-07 11:21:35 -0700 | [diff] [blame] | 5428 | ifeq ($(my_board_extracted_kernel),true) |
| 5429 | $(call dist-for-goals, droid_targets, $(BUILT_KERNEL_VERSION_FILE)) |
| 5430 | else |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 5431 | $(warning Neither INSTALLED_KERNEL_TARGET nor INSTALLED_BOOTIMAGE_TARGET is defined when \ |
| 5432 | PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS is true. Information about the updated kernel \ |
| 5433 | cannot be built into OTA update package. You can fix this by: \ |
| 5434 | (1) setting TARGET_NO_KERNEL to false and installing the built kernel to $(PRODUCT_OUT)/kernel,\ |
| 5435 | so that kernel information will be extracted from the built kernel; or \ |
| 5436 | (2) Add a prebuilt boot image and specify it in BOARD_PREBUILT_BOOTIMAGE; or \ |
| 5437 | (3) extracting kernel configuration and defining BOARD_KERNEL_CONFIG_FILE and \ |
| 5438 | BOARD_KERNEL_VERSION manually; or \ |
| 5439 | (4) unsetting PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS manually.) |
| 5440 | # Clear their values to indicate that these two files does not exist. |
| 5441 | BUILT_KERNEL_CONFIGS_FILE := |
| 5442 | BUILT_KERNEL_VERSION_FILE := |
| 5443 | endif |
| 5444 | |
| 5445 | my_decompress_tools := |
| 5446 | my_board_extracted_kernel := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 5447 | |
Yifan Hong | c0f904e | 2021-03-17 11:25:31 -0700 | [diff] [blame] | 5448 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 5449 | |
Jiakai Zhang | 53dd895 | 2024-01-18 17:22:13 +0000 | [diff] [blame] | 5450 | ifeq (default,$(ENABLE_UFFD_GC)) |
| 5451 | |
| 5452 | ifneq (,$(BUILT_KERNEL_VERSION_FILE)) |
| 5453 | $(BUILT_KERNEL_VERSION_FILE_FOR_UFFD_GC): $(BUILT_KERNEL_VERSION_FILE) |
| 5454 | $(BUILT_KERNEL_VERSION_FILE_FOR_UFFD_GC): |
| 5455 | cp $(BUILT_KERNEL_VERSION_FILE) $(BUILT_KERNEL_VERSION_FILE_FOR_UFFD_GC) |
| 5456 | else |
| 5457 | # We make this a warning rather than an error to avoid breaking too many builds. When it happens, |
| 5458 | # we use a placeholder as the kernel version, which is consumed by uffd_gc_utils.py. |
| 5459 | $(BUILT_KERNEL_VERSION_FILE_FOR_UFFD_GC): |
| 5460 | echo $$'\ |
| 5461 | Unable to determine UFFD GC flag because the kernel version is not available and\n\ |
| 5462 | PRODUCT_ENABLE_UFFD_GC is "default".\n\ |
| 5463 | You can fix this by:\n\ |
| 5464 | 1. [Recommended] Making the kernel version available.\n\ |
| 5465 | (1). Set PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS to "true".\n\ |
| 5466 | (2). If you are still getting this message after doing so, see the warning about\n\ |
| 5467 | PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS in the build logs.\n\ |
| 5468 | or\n\ |
| 5469 | 2. Explicitly setting PRODUCT_ENABLE_UFFD_GC to "true" or "false" based on the kernel version.\n\ |
| 5470 | (1). Set PRODUCT_ENABLE_UFFD_GC to "true" if the kernel is a GKI kernel and is android12-5.4\n\ |
| 5471 | or above, or a non-GKI kernel that supports userfaultfd(2) and MREMAP_DONTUNMAP.\n\ |
| 5472 | (2). Set PRODUCT_ENABLE_UFFD_GC to "false" otherwise.'\ |
| 5473 | && echo '<unknown-kernel>' > $@ |
| 5474 | endif # BUILT_KERNEL_VERSION_FILE |
| 5475 | |
| 5476 | endif # ENABLE_UFFD_GC == "default" |
| 5477 | |
Yifan Hong | c0f904e | 2021-03-17 11:25:31 -0700 | [diff] [blame] | 5478 | # -- Check VINTF compatibility of build. |
| 5479 | # Skip partial builds; only check full builds. Only check if: |
| 5480 | # - PRODUCT_ENFORCE_VINTF_MANIFEST is true |
| 5481 | # - system / vendor VINTF metadata exists |
| 5482 | # - Building product / system_ext / odm images if board has product / system_ext / odm images |
| 5483 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 5484 | ifeq ($(check_vintf_has_system),true) |
| 5485 | ifeq ($(check_vintf_has_vendor),true) |
| 5486 | ifeq ($(filter true,$(BUILDING_ODM_IMAGE)),$(filter true,$(BOARD_USES_ODMIMAGE))) |
| 5487 | ifeq ($(filter true,$(BUILDING_PRODUCT_IMAGE)),$(filter true,$(BOARD_USES_PRODUCTIMAGE))) |
| 5488 | ifeq ($(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),$(filter true,$(BOARD_USES_SYSTEM_EXTIMAGE))) |
| 5489 | |
| 5490 | check_vintf_compatible_log := $(intermediates)/check_vintf_compatible.log |
| 5491 | check_vintf_all_deps += $(check_vintf_compatible_log) |
| 5492 | |
| 5493 | check_vintf_compatible_args := |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 5494 | check_vintf_compatible_deps := $(check_vintf_common_srcs) $(APEX_INFO_FILE) |
Yifan Hong | c0f904e | 2021-03-17 11:25:31 -0700 | [diff] [blame] | 5495 | |
| 5496 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 5497 | ifneq (,$(BUILT_KERNEL_VERSION_FILE)$(BUILT_KERNEL_CONFIGS_FILE)) |
Yifan Hong | 72e78f2 | 2020-11-13 18:30:06 -0800 | [diff] [blame] | 5498 | 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] | 5499 | check_vintf_compatible_deps += $(BUILT_KERNEL_CONFIGS_FILE) $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 5500 | endif # BUILT_KERNEL_VERSION_FILE != "" || BUILT_KERNEL_CONFIGS_FILE != "" |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5501 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 5502 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5503 | check_vintf_compatible_args += \ |
| 5504 | --dirmap /system:$(TARGET_OUT) \ |
| 5505 | --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 5506 | --dirmap /odm:$(TARGET_OUT_ODM) \ |
| 5507 | --dirmap /product:$(TARGET_OUT_PRODUCT) \ |
| 5508 | --dirmap /system_ext:$(TARGET_OUT_SYSTEM_EXT) \ |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 5509 | --dirmap /apex:$(APEX_OUT) \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5510 | |
| 5511 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 5512 | check_vintf_compatible_args += --property ro.product.first_api_level=$(PRODUCT_SHIPPING_API_LEVEL) |
| 5513 | endif # PRODUCT_SHIPPING_API_LEVEL |
| 5514 | |
| 5515 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_ARGS := $(check_vintf_compatible_args) |
| 5516 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_DEPS := $(check_vintf_compatible_deps) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 5517 | # Check ODM SKU=(empty) case when: |
| 5518 | # - ODM_MANIFEST_FILES is not empty; OR |
| 5519 | # - 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] | 5520 | $(check_vintf_compatible_log): PRIVATE_ODM_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 5521 | $(if $(ODM_MANIFEST_FILES),EMPTY_ODM_SKU_PLACEHOLDER,\ |
| 5522 | $(if $(ODM_MANIFEST_SKUS),,EMPTY_ODM_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5523 | $(ODM_MANIFEST_SKUS) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 5524 | # Check vendor SKU=(empty) case when: |
| 5525 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 5526 | # - 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] | 5527 | $(check_vintf_compatible_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 5528 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 5529 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5530 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5531 | $(check_vintf_compatible_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_compatible_deps) |
Yifan Hong | 80ab214 | 2021-03-10 18:10:05 -0800 | [diff] [blame] | 5532 | @echo "PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS=$(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS)" > $@ |
| 5533 | @echo -n -e 'Deps: \n ' >> $@ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5534 | @sed 's/ /\n /g' <<< "$(PRIVATE_CHECK_VINTF_DEPS)" >> $@ |
| 5535 | @echo -n -e 'Args: \n ' >> $@ |
| 5536 | @cat <<< "$(PRIVATE_CHECK_VINTF_ARGS)" >> $@ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5537 | $(foreach odm_sku,$(PRIVATE_ODM_SKUS), $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 5538 | echo "For ODM SKU = $(odm_sku), vendor SKU = $(vendor_sku)" >> $@; \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5539 | ( $< --check-compat $(PRIVATE_CHECK_VINTF_ARGS) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5540 | --property ro.boot.product.hardware.sku=$(filter-out EMPTY_ODM_SKU_PLACEHOLDER,$(odm_sku)) \ |
| 5541 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 5542 | >> $@ 2>&1 ) || (cat $@ && exit 1); )) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5543 | |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 5544 | $(call declare-1p-target,$(check_vintf_compatible_log)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5545 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5546 | check_vintf_compatible_log := |
| 5547 | check_vintf_compatible_args := |
| 5548 | check_vintf_compatible_deps := |
| 5549 | |
| 5550 | endif # BUILDING_SYSTEM_EXT_IMAGE equals BOARD_USES_SYSTEM_EXTIMAGE |
| 5551 | endif # BUILDING_PRODUCT_IMAGE equals BOARD_USES_PRODUCTIMAGE |
| 5552 | endif # BUILDING_ODM_IMAGE equals BOARD_USES_ODMIMAGE |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5553 | endif # check_vintf_has_vendor |
| 5554 | endif # check_vintf_has_system |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5555 | endif # PRODUCT_ENFORCE_VINTF_MANIFEST |
| 5556 | |
| 5557 | # Add all logs of VINTF checks to dist builds |
| 5558 | droid_targets: $(check_vintf_all_deps) |
| 5559 | $(call dist-for-goals, droid_targets, $(check_vintf_all_deps)) |
| 5560 | |
| 5561 | # Helper alias to check all VINTF of current build. |
| 5562 | .PHONY: check-vintf-all |
| 5563 | check-vintf-all: $(check_vintf_all_deps) |
| 5564 | $(foreach file,$^,echo "$(file)"; cat "$(file)"; echo;) |
| 5565 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 5566 | check_vintf_has_vendor := |
| 5567 | check_vintf_has_system := |
| 5568 | check_vintf_common_srcs := |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5569 | check_vintf_all_deps := |
| 5570 | intermediates := |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 5571 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 5572 | |
| 5573 | # ----------------------------------------------------------------- |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 5574 | # Check image sizes <= size of super partition |
| 5575 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 5576 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 5577 | |
| 5578 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
Yifan Hong | 37c0c7c | 2018-07-24 17:45:08 -0700 | [diff] [blame] | 5579 | |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 5580 | PARTITIONS_AND_OTHER_IN_SUPER := $(BOARD_SUPER_PARTITION_PARTITION_LIST) |
| 5581 | |
| 5582 | # Add the system other image to the misc_info. Because factory ota may install system_other to the super partition. |
| 5583 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 5584 | PARTITIONS_AND_OTHER_IN_SUPER += system_other |
| 5585 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 5586 | |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5587 | # $(1): misc_info.txt |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5588 | # #(2): optional log file |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 5589 | define check-all-partition-sizes-target |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5590 | mkdir -p $(dir $(1)) |
| 5591 | rm -f $(1) |
| 5592 | $(call dump-super-image-info, $(1)) |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 5593 | $(foreach partition,$(PARTITIONS_AND_OTHER_IN_SUPER), \ |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5594 | echo "$(partition)_image="$(call images-for-partitions,$(partition)) >> $(1);) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5595 | $(CHECK_PARTITION_SIZES) $(if $(2),--logfile $(2),-v) $(1) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 5596 | endef |
| 5597 | |
Yifan Hong | d11953c | 2021-03-11 14:47:48 -0800 | [diff] [blame] | 5598 | 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] | 5599 | droid_targets: $(check_all_partition_sizes_log) |
| 5600 | $(call dist-for-goals, droid_targets, $(check_all_partition_sizes_log)) |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 5601 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5602 | $(check_all_partition_sizes_log): \ |
| 5603 | $(CHECK_PARTITION_SIZES) \ |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 5604 | $(call images-for-partitions,$(PARTITIONS_AND_OTHER_IN_SUPER)) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5605 | $(call check-all-partition-sizes-target, \ |
| 5606 | $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/misc_info.txt, \ |
| 5607 | $@) |
| 5608 | |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 5609 | $(call declare-1p-target,$(check_all_partition_sizes_log)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5610 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5611 | .PHONY: check-all-partition-sizes |
| 5612 | check-all-partition-sizes: $(check_all_partition_sizes_log) |
| 5613 | |
| 5614 | .PHONY: check-all-partition-sizes-nodeps |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 5615 | check-all-partition-sizes-nodeps: |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5616 | $(call check-all-partition-sizes-target, \ |
| 5617 | $(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] | 5618 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 5619 | endif # PRODUCT_BUILD_SUPER_PARTITION |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 5620 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 5621 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 5622 | |
| 5623 | # ----------------------------------------------------------------- |
Greg Hartman | 2ebfef4 | 2014-11-04 21:17:06 -0800 | [diff] [blame] | 5624 | # bring in the installer image generation defines if necessary |
| 5625 | ifeq ($(TARGET_USE_DISKINSTALLER),true) |
| 5626 | include bootable/diskinstaller/config.mk |
| 5627 | endif |
| 5628 | |
| 5629 | # ----------------------------------------------------------------- |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame] | 5630 | # host tools needed to build dist and OTA packages |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5631 | |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 5632 | ifeq ($(BUILD_OS),darwin) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5633 | build_ota_package := false |
| 5634 | build_otatools_package := false |
| 5635 | else |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5636 | # Set build_ota_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5637 | build_ota_package := true |
| 5638 | ifeq ($(TARGET_SKIP_OTA_PACKAGE),true) |
| 5639 | build_ota_package := false |
| 5640 | endif |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 5641 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5642 | build_ota_package := false |
| 5643 | endif |
| 5644 | ifeq ($(TARGET_PRODUCT),sdk) |
| 5645 | build_ota_package := false |
| 5646 | endif |
Yifan Hong | f32f65c | 2021-07-14 14:19:12 -0700 | [diff] [blame] | 5647 | # A target without a kernel may be one of the following: |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 5648 | # - A generic target. In this case, the OTA package usually isn't built. |
| 5649 | # PRODUCT_BUILD_GENERIC_OTA_PACKAGE may be set to true to force OTA package |
| 5650 | # generation. |
| 5651 | # - A real device target, with TARGET_NO_KERNEL set to true and |
| 5652 | # BOARD_PREBUILT_BOOTIMAGE set. In this case, it is valid to generate |
| 5653 | # an OTA package. |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5654 | ifneq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 5655 | ifneq ($(filter generic%,$(TARGET_DEVICE)),) |
| 5656 | build_ota_package := false |
| 5657 | endif |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 5658 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 5659 | ifeq ($(TARGET_NO_KERNEL),true) |
| 5660 | build_ota_package := false |
| 5661 | endif |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 5662 | endif # INSTALLED_BOOTIMAGE_TARGET == "" |
Yifan Hong | bf77787 | 2021-07-19 16:28:49 +0000 | [diff] [blame] | 5663 | ifeq ($(recovery_fstab),) |
| 5664 | build_ota_package := false |
| 5665 | endif |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5666 | endif # PRODUCT_BUILD_GENERIC_OTA_PACKAGE |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5667 | |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5668 | # Set build_otatools_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5669 | build_otatools_package := true |
| 5670 | ifeq ($(TARGET_SKIP_OTATOOLS_PACKAGE),true) |
| 5671 | build_otatools_package := false |
| 5672 | endif |
Colin Cross | 481cc5a | 2016-02-04 15:09:23 -0800 | [diff] [blame] | 5673 | endif |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 5674 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5675 | ifeq ($(build_otatools_package),true) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5676 | |
| 5677 | INTERNAL_OTATOOLS_MODULES := \ |
changho.shin | 0f12536 | 2019-07-08 10:59:00 +0900 | [diff] [blame] | 5678 | aapt2 \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5679 | add_img_to_target_files \ |
Baligh Uddin | ab25b2d | 2020-05-29 19:01:32 +0000 | [diff] [blame] | 5680 | apksigner \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5681 | append2simg \ |
| 5682 | avbtool \ |
| 5683 | blk_alloc_to_base_fs \ |
| 5684 | boot_signer \ |
| 5685 | brillo_update_payload \ |
| 5686 | brotli \ |
| 5687 | bsdiff \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 5688 | build_image \ |
Wei Li | b227413 | 2024-12-05 16:40:41 +0000 | [diff] [blame^] | 5689 | build_mixed_kernels_ramdisk_host \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 5690 | build_super_image \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5691 | build_verity_metadata \ |
| 5692 | build_verity_tree \ |
| 5693 | care_map_generator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5694 | check_ota_package_signature \ |
| 5695 | check_target_files_signatures \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5696 | check_target_files_vintf \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5697 | checkvintf \ |
Kelvin Zhang | ca81233 | 2023-04-19 16:15:29 -0700 | [diff] [blame] | 5698 | create_brick_ota \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5699 | delta_generator \ |
| 5700 | e2fsck \ |
| 5701 | e2fsdroid \ |
| 5702 | fc_sort \ |
| 5703 | fec \ |
Woody Lin | e416419 | 2022-03-21 18:29:41 +0800 | [diff] [blame] | 5704 | fsck.erofs \ |
Jaegeuk Kim | 01da65f | 2021-06-08 18:24:46 -0700 | [diff] [blame] | 5705 | fsck.f2fs \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5706 | fs_config \ |
| 5707 | generate_verity_key \ |
Daniel Norman | ee33b4e | 2020-12-02 16:18:25 -0800 | [diff] [blame] | 5708 | host_init_verifier \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5709 | img2simg \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5710 | img_from_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5711 | imgdiff \ |
Shikha Panwar | d3bef47 | 2023-01-13 08:09:29 +0000 | [diff] [blame] | 5712 | initrd_bootconfig \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5713 | libconscrypt_openjdk_jni \ |
| 5714 | lpmake \ |
Isaac Chen | eec4a7c | 2019-06-25 11:50:58 +0800 | [diff] [blame] | 5715 | lpunpack \ |
Tianjie | 3031c29 | 2020-06-24 11:20:36 -0700 | [diff] [blame] | 5716 | lz4 \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5717 | make_f2fs \ |
Jaegeuk Kim | 8ba4bab | 2020-07-17 20:18:10 -0700 | [diff] [blame] | 5718 | make_f2fs_casefold \ |
Satoshi Futenma | 6d56d45 | 2023-04-18 19:15:26 +0900 | [diff] [blame] | 5719 | merge_ota \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5720 | merge_target_files \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5721 | mk_combined_img \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5722 | mkbootfs \ |
| 5723 | mkbootimg \ |
| 5724 | mke2fs \ |
Baligh Uddin | 6a8234b | 2020-01-29 17:42:59 -0800 | [diff] [blame] | 5725 | mke2fs.conf \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 5726 | mkfs.erofs \ |
Cole Faust | b000208 | 2022-09-05 18:34:56 -0700 | [diff] [blame] | 5727 | mkf2fsuserimg \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5728 | mksquashfs \ |
Cole Faust | b000208 | 2022-09-05 18:34:56 -0700 | [diff] [blame] | 5729 | mksquashfsimage \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5730 | mkuserimg_mke2fs \ |
Kelvin Zhang | 83eb9f7 | 2022-03-15 11:12:50 -0700 | [diff] [blame] | 5731 | ota_extractor \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 5732 | ota_from_target_files \ |
Bowgo Tsai | 6c37c17 | 2021-02-05 18:01:15 +0800 | [diff] [blame] | 5733 | repack_bootimg \ |
Daniel Norman | 48603ff | 2021-02-22 15:15:24 -0800 | [diff] [blame] | 5734 | secilc \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5735 | sefcontext_compile \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5736 | sgdisk \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5737 | shflags \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5738 | sign_apex \ |
| 5739 | sign_target_files_apks \ |
Jooyung Han | 8caba5e | 2021-10-27 03:58:09 +0900 | [diff] [blame] | 5740 | sign_virt_apex \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5741 | signapk \ |
| 5742 | simg2img \ |
| 5743 | sload_f2fs \ |
Yifan Hong | 125d0b6 | 2020-09-24 17:07:03 -0700 | [diff] [blame] | 5744 | toybox \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5745 | tune2fs \ |
Daniel Mentz | 30652b3 | 2020-01-04 15:18:09 -0800 | [diff] [blame] | 5746 | unpack_bootimg \ |
Ming-Chen Chung | ee3a191 | 2023-08-10 19:57:50 +0000 | [diff] [blame] | 5747 | update_device \ |
Tianjie Xu | 4e5591f | 2019-06-11 14:35:59 -0700 | [diff] [blame] | 5748 | update_host_simulator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5749 | validate_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5750 | verity_signer \ |
| 5751 | verity_verifier \ |
| 5752 | zipalign \ |
Kelvin Zhang | b673bbf | 2021-08-20 10:09:20 -0700 | [diff] [blame] | 5753 | zucchini \ |
Kelvin Zhang | 6d366d3 | 2023-02-21 12:42:23 -0800 | [diff] [blame] | 5754 | zip2zip \ |
| 5755 | |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 5756 | |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5757 | # Additional tools to unpack and repack the apex file. |
| 5758 | INTERNAL_OTATOOLS_MODULES += \ |
Jooyung Han | 8f0dcc2 | 2023-06-29 12:43:10 +0900 | [diff] [blame] | 5759 | apexd_host \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5760 | apexer \ |
Nikita Ioffe | 3608148 | 2021-01-20 01:32:28 +0000 | [diff] [blame] | 5761 | apex_compression_tool \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5762 | deapexer \ |
| 5763 | debugfs_static \ |
Dennis Shen | 888539c | 2022-11-07 18:53:10 +0000 | [diff] [blame] | 5764 | fsck.erofs \ |
Dennis Shen | 03ef64b | 2023-03-08 15:39:28 +0000 | [diff] [blame] | 5765 | make_erofs \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5766 | merge_zips \ |
| 5767 | resize2fs \ |
| 5768 | soong_zip \ |
| 5769 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5770 | INTERNAL_OTATOOLS_FILES := \ |
| 5771 | $(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] | 5772 | |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 5773 | .PHONY: otatools |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5774 | otatools: $(INTERNAL_OTATOOLS_FILES) |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 5775 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5776 | # For each module, recursively resolve its host shared library dependencies. Then we have a full |
| 5777 | # list of modules whose installed files need to be packed. |
| 5778 | INTERNAL_OTATOOLS_MODULES_WITH_DEPS := \ |
| 5779 | $(sort $(INTERNAL_OTATOOLS_MODULES) \ |
| 5780 | $(foreach m,$(INTERNAL_OTATOOLS_MODULES),$(call get-all-shared-libs-deps,$(m)))) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5781 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5782 | INTERNAL_OTATOOLS_PACKAGE_FILES := \ |
| 5783 | $(filter $(HOST_OUT)/%,$(call module-installed-files,$(INTERNAL_OTATOOLS_MODULES_WITH_DEPS))) |
| 5784 | |
| 5785 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 5786 | $(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] | 5787 | -name "*.pk8")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5788 | |
Hongguang | 07babe0 | 2022-10-31 17:21:22 -0700 | [diff] [blame] | 5789 | ifneq (,$(wildcard packages/modules)) |
Hongguang | 547812d | 2022-10-31 10:20:14 -0700 | [diff] [blame] | 5790 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 5791 | $(sort $(shell find packages/modules -type f -name "*.x509.pem" -o -name "*.pk8" -o -name \ |
| 5792 | "key.pem")) |
Hongguang | 07babe0 | 2022-10-31 17:21:22 -0700 | [diff] [blame] | 5793 | endif |
Hongguang | 547812d | 2022-10-31 10:20:14 -0700 | [diff] [blame] | 5794 | |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5795 | ifneq (,$(wildcard device)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5796 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Dan Willemsen | 60c6644 | 2018-05-01 19:07:27 -0700 | [diff] [blame] | 5797 | $(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] | 5798 | -name "*.pem" -o -name "oem*.prop" -o -name "*.avbpubkey")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5799 | endif |
| 5800 | ifneq (,$(wildcard external/avb)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5801 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5802 | $(sort $(shell find external/avb/test/data -type f -name "testkey_*.pem" -o \ |
| 5803 | -name "atx_metadata.bin")) |
| 5804 | endif |
Tao Bao | e8ef8f70 | 2017-05-17 11:41:50 -0700 | [diff] [blame] | 5805 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5806 | INTERNAL_OTATOOLS_RELEASETOOLS := \ |
Kelvin Zhang | ed714e0 | 2022-09-22 12:42:24 -0700 | [diff] [blame] | 5807 | $(shell find build/make/tools/releasetools -name "*.pyc" -prune -o \ |
| 5808 | \( -type f -o -type l \) -print | sort) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5809 | |
| 5810 | BUILT_OTATOOLS_PACKAGE := $(PRODUCT_OUT)/otatools.zip |
| 5811 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_ZIP_ROOT := $(call intermediates-dir-for,PACKAGING,otatools)/otatools |
| 5812 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_PACKAGE_FILES := $(INTERNAL_OTATOOLS_PACKAGE_FILES) |
| 5813 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_RELEASETOOLS := $(INTERNAL_OTATOOLS_RELEASETOOLS) |
| 5814 | $(BUILT_OTATOOLS_PACKAGE): $(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS) |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 5815 | $(BUILT_OTATOOLS_PACKAGE): $(SOONG_ZIP) $(ZIP2ZIP) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5816 | @echo "Package OTA tools: $@" |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5817 | rm -rf $@ $(PRIVATE_ZIP_ROOT) |
| 5818 | mkdir -p $(dir $@) |
| 5819 | $(call copy-files-with-structure,$(PRIVATE_OTATOOLS_PACKAGE_FILES),$(HOST_OUT)/,$(PRIVATE_ZIP_ROOT)) |
| 5820 | $(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] | 5821 | cp $(SOONG_ZIP) $(ZIP2ZIP) $(MERGE_ZIPS) $(PRIVATE_ZIP_ROOT)/bin/ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5822 | $(SOONG_ZIP) -o $@ -C $(PRIVATE_ZIP_ROOT) -D $(PRIVATE_ZIP_ROOT) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5823 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5824 | $(call declare-1p-container,$(BUILT_OTATOOLS_PACKAGE),build) |
| 5825 | $(call declare-container-license-deps,$(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS),$(BUILT_OTATOOLS_PACKAGE):) |
| 5826 | |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5827 | .PHONY: otatools-package |
| 5828 | otatools-package: $(BUILT_OTATOOLS_PACKAGE) |
| 5829 | |
Dennis Shen | 5acfb9c | 2023-03-30 12:27:31 +0000 | [diff] [blame] | 5830 | $(call dist-for-goals, otatools-package, \ |
| 5831 | $(BUILT_OTATOOLS_PACKAGE) \ |
| 5832 | ) |
| 5833 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5834 | endif # build_otatools_package |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5835 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5836 | # ----------------------------------------------------------------- |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5837 | # fastboot-info.txt |
Daniel Zheng | e05a15b | 2023-05-01 11:07:33 -0700 | [diff] [blame] | 5838 | FASTBOOT_INFO_VERSION = 1 |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5839 | |
| 5840 | INSTALLED_FASTBOOT_INFO_TARGET := $(PRODUCT_OUT)/fastboot-info.txt |
Dmitrii Merkurev | 901136e | 2023-12-14 02:59:47 +0000 | [diff] [blame] | 5841 | ifdef TARGET_BOARD_FASTBOOT_INFO_FILE |
| 5842 | $(INSTALLED_FASTBOOT_INFO_TARGET): $(TARGET_BOARD_FASTBOOT_INFO_FILE) |
| 5843 | rm -f $@ |
| 5844 | $(call pretty,"Target fastboot-info.txt: $@") |
| 5845 | $(hide) cp $< $@ |
| 5846 | else |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5847 | $(INSTALLED_FASTBOOT_INFO_TARGET): |
| 5848 | rm -f $@ |
| 5849 | $(call pretty,"Target fastboot-info.txt: $@") |
| 5850 | $(hide) echo "# fastboot-info for $(TARGET_PRODUCT)" >> $@ |
| 5851 | $(hide) echo "version $(FASTBOOT_INFO_VERSION)" >> $@ |
| 5852 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 5853 | $(hide) echo "flash boot" >> $@ |
| 5854 | endif |
| 5855 | ifneq ($(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 5856 | $(hide) echo "flash init_boot" >> $@ |
| 5857 | endif |
| 5858 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 5859 | $(hide) echo "flash dtbo" >> $@ |
| 5860 | endif |
Daniel Zheng | 8ad23cf | 2023-06-12 09:57:54 -0700 | [diff] [blame] | 5861 | ifneq ($(INSTALLED_DTIMAGE_TARGET),) |
| 5862 | $(hide) echo "flash dts dt.img" >> $@ |
| 5863 | endif |
Daniel Zheng | 7d85d4f | 2023-05-30 13:37:57 -0700 | [diff] [blame] | 5864 | ifneq ($(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) |
| 5865 | $(hide) echo "flash vendor_kernel_boot" >> $@ |
| 5866 | endif |
Daniel Zheng | 0d1b969 | 2023-06-22 14:52:59 -0700 | [diff] [blame] | 5867 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 5868 | $(hide) echo "flash recovery" >> $@ |
| 5869 | endif |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5870 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
| 5871 | $(hide) echo "flash pvmfw" >> $@ |
| 5872 | endif |
Daniel Zheng | f9c4bd3 | 2023-07-05 12:20:57 -0700 | [diff] [blame] | 5873 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 5874 | $(hide) echo "flash vendor_boot" >> $@ |
| 5875 | endif |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5876 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 5877 | ifeq ($(BUILDING_VBMETA_IMAGE),true) |
| 5878 | $(hide) echo "flash --apply-vbmeta vbmeta" >> $@ |
| 5879 | endif |
| 5880 | ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) |
Daniel Zheng | 9456228 | 2023-06-08 11:13:50 -0700 | [diff] [blame] | 5881 | $(hide) echo "flash vbmeta_system" >> $@ |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5882 | endif |
| 5883 | ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) |
Daniel Zheng | ba67aa4 | 2023-09-11 16:10:45 -0700 | [diff] [blame] | 5884 | $(hide) echo "flash vbmeta_vendor" >> $@ |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5885 | endif |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5886 | ifneq (,$(strip $(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS))) |
Daniel Zheng | 2b7ddbd | 2023-05-05 13:57:49 -0700 | [diff] [blame] | 5887 | $(hide) $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS), \ |
Daniel Zheng | 9456228 | 2023-06-08 11:13:50 -0700 | [diff] [blame] | 5888 | echo "flash vbmeta_$(partition)" >> $@;) |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5889 | endif |
| 5890 | endif # BOARD_AVB_ENABLE |
Luca Stefani | 15260e9 | 2024-02-10 18:37:34 +0100 | [diff] [blame] | 5891 | ifneq (,$(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST))) |
| 5892 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 5893 | echo "flash $(partition)" >> $@;) |
| 5894 | endif |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5895 | $(hide) echo "reboot fastboot" >> $@ |
| 5896 | $(hide) echo "update-super" >> $@ |
Daniel Zheng | 2b7ddbd | 2023-05-05 13:57:49 -0700 | [diff] [blame] | 5897 | $(hide) $(foreach partition,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5898 | echo "flash $(partition)" >> $@;) |
| 5899 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 5900 | $(hide) echo "flash --slot-other system system_other.img" >> $@ |
| 5901 | endif |
| 5902 | ifdef BUILDING_CACHE_IMAGE |
| 5903 | $(hide) echo "if-wipe erase cache" >> $@ |
| 5904 | endif |
| 5905 | $(hide) echo "if-wipe erase userdata" >> $@ |
| 5906 | ifeq ($(BOARD_USES_METADATA_PARTITION),true) |
| 5907 | $(hide) echo "if-wipe erase metadata" >> $@ |
| 5908 | endif |
Dmitrii Merkurev | 901136e | 2023-12-14 02:59:47 +0000 | [diff] [blame] | 5909 | endif |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 5910 | |
| 5911 | # ----------------------------------------------------------------- |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5912 | # misc_info.txt |
| 5913 | |
| 5914 | INSTALLED_MISC_INFO_TARGET := $(PRODUCT_OUT)/misc_info.txt |
| 5915 | |
| 5916 | ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),) |
| 5917 | # default to common dir for device vendor |
| 5918 | tool_extensions := $(TARGET_DEVICE_DIR)/../common |
| 5919 | else |
| 5920 | tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) |
| 5921 | endif |
| 5922 | .KATI_READONLY := tool_extensions |
| 5923 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 5924 | # $1: boot image file name |
| 5925 | define misc_boot_size |
| 5926 | $(subst .img,_size,$(1))=$(BOARD_KERNEL$(call to-upper,$(subst boot,,$(subst .img,,$(1))))_BOOTIMAGE_PARTITION_SIZE) |
| 5927 | endef |
| 5928 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5929 | $(INSTALLED_MISC_INFO_TARGET): |
| 5930 | rm -f $@ |
| 5931 | $(call pretty,"Target misc_info.txt: $@") |
| 5932 | $(hide) echo "recovery_api_version=$(RECOVERY_API_VERSION)" >> $@ |
| 5933 | $(hide) echo "fstab_version=$(RECOVERY_FSTAB_VERSION)" >> $@ |
| 5934 | ifdef BOARD_FLASH_BLOCK_SIZE |
| 5935 | $(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $@ |
| 5936 | endif |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 5937 | ifneq ($(strip $(BOARD_BOOTIMAGE_PARTITION_SIZE))$(strip $(BOARD_KERNEL_BINARIES)),) |
| 5938 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),\ |
| 5939 | echo "$(call misc_boot_size,$(notdir $(b)))" >> $@;) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5940 | endif |
| 5941 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 5942 | $(hide) echo "no_boot=true" >> $@ |
Steve Muckle | 9793cf6 | 2020-04-08 18:27:00 -0700 | [diff] [blame] | 5943 | else |
| 5944 | echo "boot_images=$(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(notdir $(b)))" >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5945 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5946 | ifneq ($(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 5947 | $(hide) echo "init_boot=true" >> $@ |
| 5948 | $(hide) echo "init_boot_size=$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)" >> $@ |
| 5949 | endif |
J. Avila | 98cd4cc | 2020-06-10 20:09:10 +0000 | [diff] [blame] | 5950 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 5951 | echo "lz4_ramdisks=true" >> $@ |
| 5952 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5953 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 5954 | echo "vendor_boot=true" >> $@ |
| 5955 | echo "vendor_boot_size=$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 5956 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5957 | ifneq ($(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) |
| 5958 | echo "vendor_kernel_boot=true" >> $@ |
| 5959 | echo "vendor_kernel_boot_size=$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 5960 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5961 | ifeq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 5962 | $(hide) echo "no_recovery=true" >> $@ |
| 5963 | endif |
| 5964 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
| 5965 | $(hide) echo "include_recovery_dtbo=true" >> $@ |
| 5966 | endif |
| 5967 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 5968 | $(hide) echo "include_recovery_acpio=true" >> $@ |
| 5969 | endif |
| 5970 | ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE |
| 5971 | $(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $@ |
| 5972 | endif |
| 5973 | ifdef TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS |
| 5974 | @# TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS can be empty to indicate that nothing but defaults should be used. |
| 5975 | $(hide) echo "recovery_mount_options=$(TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 5976 | else |
| 5977 | $(hide) echo "recovery_mount_options=$(DEFAULT_TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 5978 | endif |
| 5979 | $(hide) echo "tool_extensions=$(tool_extensions)" >> $@ |
| 5980 | $(hide) echo "default_system_dev_certificate=$(DEFAULT_SYSTEM_DEV_CERTIFICATE)" >> $@ |
Jacky Liu | beb0b69 | 2021-12-29 16:29:05 +0800 | [diff] [blame] | 5981 | ifdef PRODUCT_EXTRA_OTA_KEYS |
| 5982 | $(hide) echo "extra_ota_keys=$(PRODUCT_EXTRA_OTA_KEYS)" >> $@ |
| 5983 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5984 | ifdef PRODUCT_EXTRA_RECOVERY_KEYS |
| 5985 | $(hide) echo "extra_recovery_keys=$(PRODUCT_EXTRA_RECOVERY_KEYS)" >> $@ |
| 5986 | endif |
| 5987 | $(hide) echo 'mkbootimg_args=$(BOARD_MKBOOTIMG_ARGS)' >> $@ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 5988 | $(hide) echo 'recovery_mkbootimg_args=$(BOARD_RECOVERY_MKBOOTIMG_ARGS)' >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5989 | $(hide) echo 'mkbootimg_version_args=$(INTERNAL_MKBOOTIMG_VERSION_ARGS)' >> $@ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5990 | $(hide) echo 'mkbootimg_init_args=$(BOARD_MKBOOTIMG_INIT_ARGS)' >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5991 | $(hide) echo "multistage_support=1" >> $@ |
| 5992 | $(hide) echo "blockimgdiff_versions=3,4" >> $@ |
| 5993 | ifeq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 5994 | $(hide) echo "build_generic_ota_package=true" >> $@ |
| 5995 | endif |
| 5996 | ifneq ($(OEM_THUMBPRINT_PROPERTIES),) |
| 5997 | # OTA scripts are only interested in fingerprint related properties |
| 5998 | $(hide) echo "oem_fingerprint_properties=$(OEM_THUMBPRINT_PROPERTIES)" >> $@ |
| 5999 | endif |
| 6000 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
| 6001 | # We need to create userdata.img with real data because the instrumented libraries are in userdata.img. |
| 6002 | $(hide) echo "userdata_img_with_data=true" >> $@ |
| 6003 | endif |
| 6004 | ifeq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
| 6005 | $(hide) echo "full_recovery_image=true" >> $@ |
| 6006 | endif |
Bill Peckham | e868aec | 2019-09-17 17:06:47 -0700 | [diff] [blame] | 6007 | ifdef BOARD_USES_VENDORIMAGE |
| 6008 | $(hide) echo "board_uses_vendorimage=true" >> $@ |
| 6009 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6010 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 8218225 | 2020-11-13 11:28:17 +0800 | [diff] [blame] | 6011 | ifeq ($(BUILDING_VBMETA_IMAGE),true) |
| 6012 | $(hide) echo "avb_building_vbmeta_image=true" >> $@ |
| 6013 | endif # BUILDING_VBMETA_IMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6014 | $(hide) echo "avb_enable=true" >> $@ |
| 6015 | $(hide) echo "avb_vbmeta_key_path=$(BOARD_AVB_KEY_PATH)" >> $@ |
| 6016 | $(hide) echo "avb_vbmeta_algorithm=$(BOARD_AVB_ALGORITHM)" >> $@ |
| 6017 | $(hide) echo "avb_vbmeta_args=$(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS)" >> $@ |
| 6018 | $(hide) echo "avb_boot_add_hash_footer_args=$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 6019 | ifdef BOARD_AVB_BOOT_KEY_PATH |
| 6020 | $(hide) echo "avb_boot_key_path=$(BOARD_AVB_BOOT_KEY_PATH)" >> $@ |
| 6021 | $(hide) echo "avb_boot_algorithm=$(BOARD_AVB_BOOT_ALGORITHM)" >> $@ |
| 6022 | $(hide) echo "avb_boot_rollback_index_location=$(BOARD_AVB_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 6023 | endif # BOARD_AVB_BOOT_KEY_PATH |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 6024 | $(hide) echo "avb_init_boot_add_hash_footer_args=$(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 6025 | ifdef BOARD_AVB_INIT_BOOT_KEY_PATH |
| 6026 | $(hide) echo "avb_init_boot_key_path=$(BOARD_AVB_INIT_BOOT_KEY_PATH)" >> $@ |
| 6027 | $(hide) echo "avb_init_boot_algorithm=$(BOARD_AVB_INIT_BOOT_ALGORITHM)" >> $@ |
| 6028 | $(hide) echo "avb_init_boot_rollback_index_location=$(BOARD_AVB_INIT_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 6029 | endif # BOARD_AVB_INIT_BOOT_KEY_PATH |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6030 | echo "avb_vendor_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 6031 | ifdef BOARD_AVB_VENDOR_BOOT_KEY_PATH |
| 6032 | echo "avb_vendor_boot_key_path=$(BOARD_AVB_VENDOR_BOOT_KEY_PATH)" >> $@ |
| 6033 | echo "avb_vendor_boot_algorithm=$(BOARD_AVB_VENDOR_BOOT_ALGORITHM)" >> $@ |
| 6034 | echo "avb_vendor_boot_rollback_index_location=$(BOARD_AVB_VENDOR_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 6035 | endif # BOARD_AVB_VENDOR_BOOT_KEY_PATH |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 6036 | echo "avb_vendor_kernel_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 6037 | ifdef BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH |
| 6038 | echo "avb_vendor_kernel_boot_key_path=$(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH)" >> $@ |
| 6039 | echo "avb_vendor_kernel_boot_algorithm=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ALGORITHM)" >> $@ |
| 6040 | echo "avb_vendor_kernel_boot_rollback_index_location=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 6041 | endif # BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6042 | $(hide) echo "avb_recovery_add_hash_footer_args=$(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 6043 | ifdef BOARD_AVB_RECOVERY_KEY_PATH |
| 6044 | $(hide) echo "avb_recovery_key_path=$(BOARD_AVB_RECOVERY_KEY_PATH)" >> $@ |
| 6045 | $(hide) echo "avb_recovery_algorithm=$(BOARD_AVB_RECOVERY_ALGORITHM)" >> $@ |
| 6046 | $(hide) echo "avb_recovery_rollback_index_location=$(BOARD_AVB_RECOVERY_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 6047 | endif # BOARD_AVB_RECOVERY_KEY_PATH |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 6048 | ifneq (,$(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST))) |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 6049 | $(hide) echo "custom_images_partition_list=$(filter-out $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), $(BOARD_CUSTOMIMAGES_PARTITION_LIST))" >> $@ |
| 6050 | $(hide) $(foreach partition,$(filter-out $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), $(BOARD_CUSTOMIMAGES_PARTITION_LIST)), \ |
| 6051 | echo "$(partition)_image_list=$(foreach image,$(BOARD_$(call to-upper,$(partition))_IMAGE_LIST),$(notdir $(image)))" >> $@;) |
| 6052 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
| 6053 | ifneq (,$(strip $(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST))) |
| 6054 | $(hide) echo "avb_custom_images_partition_list=$(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST)" >> $@ |
| 6055 | $(hide) $(foreach partition,$(BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST), \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 6056 | echo "avb_$(partition)_key_path=$(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH)" >> $@; \ |
| 6057 | echo "avb_$(partition)_algorithm=$(BOARD_AVB_$(call to-upper,$(partition))_ALGORITHM)" >> $@; \ |
| 6058 | echo "avb_$(partition)_add_hashtree_footer_args=$(BOARD_AVB_$(call to-upper,$(partition))_ADD_HASHTREE_FOOTER_ARGS)" >> $@; \ |
| 6059 | echo "avb_$(partition)_rollback_index_location=$(BOARD_AVB_$(call to-upper,$(partition))_ROLLBACK_INDEX_LOCATION)" >> $@; \ |
| 6060 | echo "avb_$(partition)_partition_size=$(BOARD_AVB_$(call to-upper,$(partition))_PARTITION_SIZE)" >> $@; \ |
| 6061 | 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] | 6062 | endif # BOARD_AVB_CUSTOMIMAGES_PARTITION_LIST |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6063 | ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) |
| 6064 | $(hide) echo "avb_vbmeta_system=$(BOARD_AVB_VBMETA_SYSTEM)" >> $@ |
| 6065 | $(hide) echo "avb_vbmeta_system_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 6066 | $(hide) echo "avb_vbmeta_system_key_path=$(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH)" >> $@ |
| 6067 | $(hide) echo "avb_vbmeta_system_algorithm=$(BOARD_AVB_VBMETA_SYSTEM_ALGORITHM)" >> $@ |
| 6068 | $(hide) echo "avb_vbmeta_system_rollback_index_location=$(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 6069 | endif # BOARD_AVB_VBMETA_SYSTEM |
| 6070 | ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) |
| 6071 | $(hide) echo "avb_vbmeta_vendor=$(BOARD_AVB_VBMETA_VENDOR)" >> $@ |
Bowgo Tsai | c85a201 | 2022-06-07 11:36:35 +0800 | [diff] [blame] | 6072 | $(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] | 6073 | $(hide) echo "avb_vbmeta_vendor_key_path=$(BOARD_AVB_VBMETA_VENDOR_KEY_PATH)" >> $@ |
| 6074 | $(hide) echo "avb_vbmeta_vendor_algorithm=$(BOARD_AVB_VBMETA_VENDOR_ALGORITHM)" >> $@ |
| 6075 | $(hide) echo "avb_vbmeta_vendor_rollback_index_location=$(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 6076 | endif # BOARD_AVB_VBMETA_VENDOR_KEY_PATH |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 6077 | ifneq (,$(strip $(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS))) |
| 6078 | $(hide) echo "avb_custom_vbmeta_images_partition_list=$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)" >> $@ |
| 6079 | $(hide) $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),\ |
| 6080 | echo "avb_vbmeta_$(partition)=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition)))" >> $@ ;\ |
| 6081 | echo "avb_vbmeta_$(partition)_args=$(BOARD_AVB_MAKE_VBMETA_$(call to-upper,$(partition))_IMAGE_ARGS)" >> $@ ;\ |
| 6082 | echo "avb_vbmeta_$(partition)_key_path=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_KEY_PATH)" >> $@ ;\ |
| 6083 | echo "avb_vbmeta_$(partition)_algorithm=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_ALGORITHM)" >> $@ ;\ |
| 6084 | echo "avb_vbmeta_$(partition)_rollback_index_location=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_ROLLBACK_INDEX_LOCATION)" >> $@ ;) |
| 6085 | endif # BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6086 | endif # BOARD_AVB_ENABLE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6087 | $(call generate-userimage-prop-dictionary, $@) |
| 6088 | ifeq ($(AB_OTA_UPDATER),true) |
| 6089 | @# Include the build type in META/misc_info.txt so the server can easily differentiate production builds. |
| 6090 | $(hide) echo "build_type=$(TARGET_BUILD_VARIANT)" >> $@ |
| 6091 | $(hide) echo "ab_update=true" >> $@ |
| 6092 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 6093 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
| 6094 | $(hide) echo "allow_non_ab=true" >> $@ |
| 6095 | endif |
YoungJoon Yang | 4d291ec | 2023-01-18 17:39:10 +0900 | [diff] [blame] | 6096 | ifeq ($(BOARD_NON_AB_OTA_DISABLE_COMPRESSION),true) |
| 6097 | $(hide) echo "board_non_ab_ota_disable_compression=true" >> $@ |
| 6098 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6099 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 6100 | $(hide) echo "has_dtbo=true" >> $@ |
| 6101 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 6102 | $(hide) echo "dtbo_size=$(BOARD_DTBOIMG_PARTITION_SIZE)" >> $@ |
| 6103 | $(hide) echo "avb_dtbo_add_hash_footer_args=$(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 6104 | ifdef BOARD_AVB_DTBO_KEY_PATH |
| 6105 | $(hide) echo "avb_dtbo_key_path=$(BOARD_AVB_DTBO_KEY_PATH)" >> $@ |
| 6106 | $(hide) echo "avb_dtbo_algorithm=$(BOARD_AVB_DTBO_ALGORITHM)" >> $@ |
| 6107 | $(hide) echo "avb_dtbo_rollback_index_location=$(BOARD_AVB_DTBO_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 6108 | endif # BOARD_AVB_DTBO_KEY_PATH |
| 6109 | endif # BOARD_AVB_ENABLE |
| 6110 | endif # BOARD_PREBUILT_DTBOIMAGE |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 6111 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 6112 | $(hide) echo "has_pvmfw=true" >> $@ |
| 6113 | ifeq ($(BOARD_AVB_ENABLE),true) |
Pierre-Clément Tosi | 592a3ca | 2021-10-04 11:34:11 +0200 | [diff] [blame] | 6114 | $(hide) echo "pvmfw_size=$(BOARD_PVMFWIMAGE_PARTITION_SIZE)" >> $@ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 6115 | $(hide) echo "avb_pvmfw_add_hash_footer_args=$(BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 6116 | ifdef BOARD_AVB_PVMFW_KEY_PATH |
| 6117 | $(hide) echo "avb_pvmfw_key_path=$(BOARD_AVB_PVMFW_KEY_PATH)" >> $@ |
| 6118 | $(hide) echo "avb_pvmfw_algorithm=$(BOARD_AVB_PVMFW_ALGORITHM)" >> $@ |
| 6119 | $(hide) echo "avb_pvmfw_rollback_index_location=$(BOARD_AVB_PVMFW_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 6120 | endif # BOARD_AVB_PVMFW_KEY_PATH |
| 6121 | endif # BOARD_AVB_ENABLE |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 6122 | endif # BOARD_USES_PVMFWIMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6123 | $(call dump-dynamic-partitions-info,$@) |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 6124 | @# VINTF checks |
| 6125 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 6126 | $(hide) echo "vintf_enforce=true" >> $@ |
| 6127 | endif |
| 6128 | ifdef ODM_MANIFEST_SKUS |
| 6129 | $(hide) echo "vintf_odm_manifest_skus=$(ODM_MANIFEST_SKUS)" >> $@ |
| 6130 | endif |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 6131 | ifdef ODM_MANIFEST_FILES |
| 6132 | $(hide) echo "vintf_include_empty_odm_sku=true" >> $@ |
| 6133 | endif |
| 6134 | ifdef DEVICE_MANIFEST_SKUS |
| 6135 | $(hide) echo "vintf_vendor_manifest_skus=$(DEVICE_MANIFEST_SKUS)" >> $@ |
| 6136 | endif |
| 6137 | ifdef DEVICE_MANIFEST_FILE |
| 6138 | $(hide) echo "vintf_include_empty_vendor_sku=true" >> $@ |
| 6139 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 6140 | ifeq ($(BOARD_BOOTLOADER_IN_UPDATE_PACKAGE),true) |
| 6141 | $(hide) echo "bootloader_in_update_package=true" >> $@ |
| 6142 | endif |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 6143 | ifeq ($(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE),true) |
| 6144 | $(hide) echo "exclude_kernel_from_recovery_image=true" >> $@ |
| 6145 | endif |
Kelvin Zhang | 5a65f69 | 2020-11-03 16:40:18 -0500 | [diff] [blame] | 6146 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
| 6147 | $(hide) echo "partial_ota_update_partitions_list=$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)" >> $@ |
| 6148 | endif |
Jose Galmes | 9c8f6eb | 2021-07-21 09:34:08 -0700 | [diff] [blame] | 6149 | ifeq ($(BUILDING_WITH_VSDK),true) |
| 6150 | $(hide) echo "building_with_vsdk=true" >> $@ |
| 6151 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6152 | |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 6153 | $(call declare-0p-target,$(INSTALLED_FASTBOOT_INFO_TARGET)) |
| 6154 | |
| 6155 | .PHONY: fastboot_info |
| 6156 | fastboot_info: $(INSTALLED_FASTBOOT_INFO_TARGET) |
| 6157 | |
Daniel Zheng | eea63fa | 2023-05-08 12:11:56 -0700 | [diff] [blame] | 6158 | droidcore-unbundled: $(INSTALLED_FASTBOOT_INFO_TARGET) |
| 6159 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 6160 | $(call declare-0p-target,$(INSTALLED_MISC_INFO_TARGET)) |
| 6161 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6162 | .PHONY: misc_info |
| 6163 | misc_info: $(INSTALLED_MISC_INFO_TARGET) |
| 6164 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6165 | droidcore-unbundled: $(INSTALLED_MISC_INFO_TARGET) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6166 | |
| 6167 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6168 | # A zip of the directories that map to the target filesystem. |
| 6169 | # This zip can be used to create an OTA package or filesystem image |
| 6170 | # as a post-build step. |
| 6171 | # |
| 6172 | name := $(TARGET_PRODUCT) |
| 6173 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6174 | name := $(name)_debug |
| 6175 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 6176 | name := $(name)-target_files |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6177 | |
| 6178 | intermediates := $(call intermediates-dir-for,PACKAGING,target_files) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6179 | BUILT_TARGET_FILES_DIR := $(intermediates)/$(name).zip.list |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6180 | BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6181 | $(BUILT_TARGET_FILES_PACKAGE): zip_root := $(intermediates)/$(name) |
| 6182 | $(BUILT_TARGET_FILES_DIR): zip_root := $(intermediates)/$(name) |
| 6183 | $(BUILT_TARGET_FILES_DIR): intermediates := $(intermediates) |
| 6184 | |
Jeongik Cha | 83db951 | 2024-09-12 13:04:22 +0900 | [diff] [blame] | 6185 | ifneq ($(SOONG_DEFINED_SYSTEM_IMAGE_PATH),) |
| 6186 | $(BUILT_TARGET_FILES_DIR): $(SOONG_DEFINED_SYSTEM_IMAGE_PATH) |
| 6187 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6188 | |
| 6189 | # $(1): Directory to copy |
| 6190 | # $(2): Location to copy it to |
Jooyung Han | 8d72515 | 2023-07-25 11:25:11 +0900 | [diff] [blame] | 6191 | # 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] | 6192 | define package_files-copy-root |
| 6193 | if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \ |
| 6194 | mkdir -p $(2) && \ |
Jooyung Han | 8d72515 | 2023-07-25 11:25:11 +0900 | [diff] [blame] | 6195 | $(ACP) -rd $(strip $(1))/. $(strip $(2))/; \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6196 | fi |
| 6197 | endef |
| 6198 | |
Tao Bao | a04fca3 | 2015-11-30 12:22:24 -0800 | [diff] [blame] | 6199 | built_ota_tools := |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 6200 | |
| 6201 | # We can't build static executables when SANITIZE_TARGET=address |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 6202 | ifeq (,$(filter address, $(SANITIZE_TARGET))) |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 6203 | built_ota_tools += \ |
Elliott Hughes | 9b824d5 | 2020-04-17 15:46:55 -0700 | [diff] [blame] | 6204 | $(call intermediates-dir-for,EXECUTABLES,updater)/updater |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 6205 | endif |
| 6206 | |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6207 | $(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] | 6208 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6209 | tool_extension := $(wildcard $(tool_extensions)/releasetools.py) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6210 | $(BUILT_TARGET_FILES_DIR): PRIVATE_TOOL_EXTENSION := $(tool_extension) |
Doug Zongker | c18736b | 2009-09-30 09:20:32 -0700 | [diff] [blame] | 6211 | |
HÃ¥kan Kvist | 8cabc71 | 2022-05-02 07:43:34 +0200 | [diff] [blame] | 6212 | updater_dep := |
Sen Jiang | 4438fd9 | 2016-03-07 16:51:01 -0800 | [diff] [blame] | 6213 | ifeq ($(AB_OTA_UPDATER),true) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 6214 | updater_dep += system/update_engine/update_engine.conf |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6215 | $(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] | 6216 | updater_dep += external/zucchini/version_info.h |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6217 | $(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] | 6218 | updater_dep += $(HOST_OUT_SHARED_LIBRARIES)/liblz4.so |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 6219 | endif |
| 6220 | |
| 6221 | # Build OTA tools if non-A/B is allowed |
| 6222 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 6223 | updater_dep += $(built_ota_tools) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6224 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 6225 | |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6226 | $(BUILT_TARGET_FILES_DIR): $(updater_dep) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6227 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 6228 | # If we are using recovery as boot, output recovery files to BOOT/. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 6229 | # 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] | 6230 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6231 | $(BUILT_TARGET_FILES_DIR): PRIVATE_RECOVERY_OUT := BOOT |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 6232 | else ifeq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6233 | $(BUILT_TARGET_FILES_DIR): PRIVATE_RECOVERY_OUT := VENDOR_BOOT |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 6234 | else |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6235 | $(BUILT_TARGET_FILES_DIR): PRIVATE_RECOVERY_OUT := RECOVERY |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 6236 | endif |
| 6237 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6238 | ifeq ($(AB_OTA_UPDATER),true) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6239 | ifdef OSRELEASED_DIRECTORY |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6240 | $(BUILT_TARGET_FILES_DIR): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id |
| 6241 | $(BUILT_TARGET_FILES_DIR): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version |
| 6242 | $(BUILT_TARGET_FILES_DIR): $(TARGET_OUT_ETC)/$(OSRELEASED_DIRECTORY)/system_version |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6243 | endif |
Tao Bao | a835f38 | 2019-07-18 15:55:30 -0700 | [diff] [blame] | 6244 | endif |
| 6245 | |
| 6246 | ifneq ($(AB_OTA_PARTITIONS),) |
| 6247 | ifneq ($(AB_OTA_UPDATER),true) |
| 6248 | $(error AB_OTA_UPDATER must be true when defining AB_OTA_PARTITIONS) |
| 6249 | endif |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6250 | endif |
| 6251 | |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6252 | # Run fs_config while creating the target files package |
| 6253 | # $1: root directory |
| 6254 | # $2: add prefix |
| 6255 | define fs_config |
Elliott Hughes | ad002fa | 2024-03-04 21:03:11 +0000 | [diff] [blame] | 6256 | (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) -R "$(2)" |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6257 | endef |
| 6258 | |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 6259 | define filter-out-missing-vendor |
| 6260 | $(if $(INSTALLED_VENDORIMAGE_TARGET),$(1),$(filter-out vendor,$(1))) |
| 6261 | endef |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 6262 | define filter-out-missing-vendor_dlkm |
| 6263 | $(if $(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(1),$(filter-out vendor_dlkm,$(1))) |
| 6264 | endef |
| 6265 | define filter-out-missing-odm |
| 6266 | $(if $(INSTALLED_ODMIMAGE_TARGET),$(1),$(filter-out odm,$(1))) |
| 6267 | endef |
| 6268 | define filter-out-missing-odm_dlkm |
| 6269 | $(if $(INSTALLED_ODM_DLKMIMAGE_TARGET),$(1),$(filter-out odm_dlkm,$(1))) |
| 6270 | endef |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6271 | define filter-out-missing-system_dlkm |
| 6272 | $(if $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(1),$(filter-out system_dlkm,$(1))) |
| 6273 | endef |
| 6274 | # 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] | 6275 | # $(1): list |
| 6276 | define filter-out-missing-partitions |
| 6277 | $(call filter-out-missing-vendor,\ |
| 6278 | $(call filter-out-missing-vendor_dlkm,\ |
| 6279 | $(call filter-out-missing-odm,\ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6280 | $(call filter-out-missing-odm_dlkm,\ |
| 6281 | $(call filter-out-missing-system_dlkm,$(1)))))) |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 6282 | endef |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 6283 | |
| 6284 | # Information related to dynamic partitions and virtual A/B. This information |
| 6285 | # is needed for building the super image (see dump-super-image-info) and |
| 6286 | # building OTA packages. |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6287 | # $(1): file |
| 6288 | define dump-dynamic-partitions-info |
| 6289 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)), \ |
| 6290 | echo "use_dynamic_partitions=true" >> $(1)) |
| 6291 | $(if $(filter true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)), \ |
| 6292 | echo "dynamic_partition_retrofit=true" >> $(1)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 6293 | echo "lpmake=$(notdir $(LPMAKE))" >> $(1) |
| 6294 | $(if $(filter true,$(PRODUCT_BUILD_SUPER_PARTITION)), $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 6295 | echo "build_super_partition=true" >> $(1))) |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 6296 | $(if $(BUILDING_SUPER_EMPTY_IMAGE), \ |
| 6297 | echo "build_super_empty_partition=true" >> $(1)) |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 6298 | $(if $(filter true,$(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE)), \ |
| 6299 | echo "build_retrofit_dynamic_partitions_ota_package=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6300 | echo "super_metadata_device=$(BOARD_SUPER_PARTITION_METADATA_DEVICE)" >> $(1) |
| 6301 | $(if $(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 6302 | echo "super_block_devices=$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)" >> $(1)) |
| 6303 | $(foreach device,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 6304 | echo "super_$(device)_device_size=$(BOARD_SUPER_PARTITION_$(call to-upper,$(device))_DEVICE_SIZE)" >> $(1);) |
| 6305 | $(if $(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 6306 | 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] | 6307 | $(if $(BOARD_SUPER_PARTITION_GROUPS), |
| 6308 | echo "super_partition_groups=$(BOARD_SUPER_PARTITION_GROUPS)" >> $(1)) |
| 6309 | $(foreach group,$(BOARD_SUPER_PARTITION_GROUPS), \ |
| 6310 | echo "super_$(group)_group_size=$(BOARD_$(call to-upper,$(group))_SIZE)" >> $(1); \ |
| 6311 | $(if $(BOARD_$(call to-upper,$(group))_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 6312 | 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] | 6313 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)), \ |
| 6314 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 6315 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)), \ |
| 6316 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6317 | $(if $(filter true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)), \ |
| 6318 | echo "super_image_in_update_package=true" >> $(1)) |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 6319 | $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 6320 | echo "super_partition_size=$(BOARD_SUPER_PARTITION_SIZE)" >> $(1)) |
| 6321 | $(if $(BOARD_SUPER_PARTITION_ALIGNMENT), \ |
| 6322 | echo "super_partition_alignment=$(BOARD_SUPER_PARTITION_ALIGNMENT)" >> $(1)) |
| 6323 | $(if $(BOARD_SUPER_PARTITION_WARN_LIMIT), \ |
| 6324 | echo "super_partition_warn_limit=$(BOARD_SUPER_PARTITION_WARN_LIMIT)" >> $(1)) |
| 6325 | $(if $(BOARD_SUPER_PARTITION_ERROR_LIMIT), \ |
| 6326 | echo "super_partition_error_limit=$(BOARD_SUPER_PARTITION_ERROR_LIMIT)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 6327 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA)), \ |
| 6328 | echo "virtual_ab=true" >> $(1)) |
Kelvin Zhang | 239a79a | 2021-01-15 13:47:52 -0500 | [diff] [blame] | 6329 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_COMPRESSION)), \ |
| 6330 | echo "virtual_ab_compression=true" >> $(1)) |
Kelvin Zhang | fa91e98 | 2022-02-09 11:19:16 -0800 | [diff] [blame] | 6331 | # This value controls the compression algorithm used for VABC |
| 6332 | # valid options are defined in system/core/fs_mgr/libsnapshot/cow_writer.cpp |
| 6333 | # e.g. "none", "gz", "brotli" |
| 6334 | $(if $(PRODUCT_VIRTUAL_AB_COMPRESSION_METHOD), \ |
| 6335 | echo "virtual_ab_compression_method=$(PRODUCT_VIRTUAL_AB_COMPRESSION_METHOD)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 6336 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA_RETROFIT)), \ |
| 6337 | echo "virtual_ab_retrofit=true" >> $(1)) |
Daniel Zheng | 025099c | 2023-05-02 13:50:27 -0700 | [diff] [blame] | 6338 | $(if $(PRODUCT_VIRTUAL_AB_COW_VERSION), \ |
| 6339 | echo "virtual_ab_cow_version=$(PRODUCT_VIRTUAL_AB_COW_VERSION)" >> $(1)) |
Daniel Zheng | 270130a | 2024-01-09 15:56:10 -0800 | [diff] [blame] | 6340 | $(if $(PRODUCT_VIRTUAL_AB_COMPRESSION_FACTOR), \ |
| 6341 | echo "virtual_ab_compression_factor=$(PRODUCT_VIRTUAL_AB_COMPRESSION_FACTOR)" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6342 | endef |
| 6343 | |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6344 | # Copy an image file to a directory and generate a block list map file from the image, |
| 6345 | # only if the map_file_generator supports the file system. |
| 6346 | # Otherwise, skip generating map files as well as copying images. The image will be |
| 6347 | # 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] | 6348 | # $(1): path of the image file |
| 6349 | # $(2): target out directory |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6350 | # $(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] | 6351 | define copy-image-and-generate-map |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6352 | $(if $(COPY_IMAGES_FOR_TARGET_FILES_ZIP), \ |
| 6353 | $(eval _supported_fs_for_map_file_generator := erofs ext%) \ |
| 6354 | $(eval _img := $(call to-upper,$(3))) \ |
| 6355 | $(if $(3),$(eval _map_fs_type := $(BOARD_$(_img)IMAGE_FILE_SYSTEM_TYPE)),\ |
| 6356 | $(eval _no_map_file := "true")) \ |
| 6357 | $(if $(filter $(_supported_fs_for_map_file_generator),$(_map_fs_type))$(_no_map_file),\ |
| 6358 | mkdir -p $(2); \ |
| 6359 | cp $(1) $(2); \ |
| 6360 | $(if $(3),$(HOST_OUT_EXECUTABLES)/map_file_generator $(1) $(2)/$(3).map)) \ |
| 6361 | $(eval _img :=) \ |
| 6362 | $(eval _map_fs_type :=) \ |
| 6363 | $(eval _no_map_file :=) \ |
| 6364 | ) |
Justin Yun | cff95e2 | 2023-05-26 11:26:43 +0900 | [diff] [blame] | 6365 | endef |
| 6366 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 6367 | # By conditionally including the dependency of the target files package on the |
| 6368 | # full system image deps, we speed up builds that do not build the system |
| 6369 | # image. |
| 6370 | ifdef BUILDING_SYSTEM_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6371 | $(BUILT_TARGET_FILES_DIR): $(FULL_SYSTEMIMAGE_DEPS) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6372 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6373 | $(BUILT_TARGET_FILES_DIR): $(BUILT_SYSTEMIMAGE) |
| 6374 | endif |
Yi-Yo Chiang | 9b25841 | 2022-01-04 00:05:11 +0800 | [diff] [blame] | 6375 | else |
| 6376 | # releasetools may need the system build.prop even when building a |
| 6377 | # system-image-less product. |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6378 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_BUILD_PROP_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6379 | endif |
| 6380 | |
| 6381 | ifdef BUILDING_USERDATA_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6382 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_USERDATAIMAGE_FILES) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6383 | endif |
| 6384 | |
| 6385 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6386 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_SYSTEMOTHERIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6387 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6388 | $(BUILT_TARGET_FILES_DIR): $(BUILT_SYSTEMOTHERIMAGE_TARGET) |
| 6389 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6390 | endif |
| 6391 | |
| 6392 | ifdef BUILDING_VENDOR_BOOT_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6393 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDOR_RAMDISK_FILES) |
| 6394 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
| 6395 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
Colin Cross | e643120 | 2021-02-24 11:44:55 -0800 | [diff] [blame] | 6396 | # The vendor ramdisk may be built from the recovery ramdisk. |
| 6397 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6398 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
Colin Cross | e643120 | 2021-02-24 11:44:55 -0800 | [diff] [blame] | 6399 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6400 | endif |
| 6401 | |
Chirayu Desai | 549fe2a | 2022-10-19 22:15:40 +0530 | [diff] [blame] | 6402 | ifdef BUILDING_VENDOR_KERNEL_BOOT_IMAGE |
| 6403 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDOR_KERNEL_RAMDISK_FILES) |
| 6404 | endif |
| 6405 | |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6406 | ifdef BUILDING_RECOVERY_IMAGE |
| 6407 | # 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] | 6408 | # BUILT_TARGET_FILES_PACKAGE dependencies because currently there're cp/rsync/rm |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6409 | # commands in build-recoveryimage-target, which would touch the files under |
| 6410 | # TARGET_RECOVERY_OUT and race with packaging target-files.zip. |
| 6411 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6412 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_BOOTIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6413 | else |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6414 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_RECOVERYIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6415 | endif |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6416 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_RECOVERYIMAGE_FILES) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6417 | endif |
| 6418 | |
| 6419 | # Conditionally depend on the image files if the image is being built so the |
| 6420 | # target-files.zip rule doesn't wait on the image creation rule, or the image |
| 6421 | # if it is coming from a prebuilt. |
| 6422 | |
| 6423 | ifdef BUILDING_VENDOR_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6424 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDORIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6425 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6426 | $(BUILT_TARGET_FILES_DIR): $(BUILT_VENDORIMAGE_TARGET) |
| 6427 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6428 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6429 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_VENDORIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6430 | endif |
| 6431 | |
| 6432 | ifdef BUILDING_PRODUCT_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6433 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_PRODUCTIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6434 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6435 | $(BUILT_TARGET_FILES_DIR): $(BUILT_PRODUCTIMAGE_TARGET) |
| 6436 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6437 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6438 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_PRODUCTIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6439 | endif |
| 6440 | |
| 6441 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6442 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6443 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6444 | $(BUILT_TARGET_FILES_DIR): $(BUILT_SYSTEM_EXTIMAGE_TARGET) |
| 6445 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6446 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6447 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6448 | endif |
| 6449 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6450 | ifneq (,$(BUILDING_BOOT_IMAGE)$(BUILDING_INIT_BOOT_IMAGE)) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6451 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_RAMDISK_FILES) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6452 | endif # BUILDING_BOOT_IMAGE != "" || BUILDING_INIT_BOOT_IMAGE != "" |
| 6453 | |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 6454 | 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] | 6455 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_BOOTIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6456 | endif |
| 6457 | |
| 6458 | ifdef BUILDING_ODM_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6459 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_ODMIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6460 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6461 | $(BUILT_TARGET_FILES_DIR): $(BUILT_ODMIMAGE_TARGET) |
| 6462 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6463 | else ifdef BOARD_PREBUILT_ODMIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6464 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_ODMIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6465 | endif |
| 6466 | |
| 6467 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6468 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6469 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6470 | $(BUILT_TARGET_FILES_DIR): $(BUILT_VENDOR_DLKMIMAGE_TARGET) |
| 6471 | endif |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 6472 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6473 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6474 | endif |
| 6475 | |
| 6476 | ifdef BUILDING_ODM_DLKM_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6477 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_ODM_DLKMIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6478 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6479 | $(BUILT_TARGET_FILES_DIR): $(BUILT_ODM_DLKMIMAGE_TARGET) |
| 6480 | endif |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 6481 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6482 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 6483 | endif |
| 6484 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6485 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6486 | $(BUILT_TARGET_FILES_DIR): $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) |
Justin Yun | 22ce947 | 2023-07-15 15:35:07 +0900 | [diff] [blame] | 6487 | ifdef COPY_IMAGES_FOR_TARGET_FILES_ZIP |
| 6488 | $(BUILT_TARGET_FILES_DIR): $(BUILT_SYSTEM_DLKMIMAGE_TARGET) |
| 6489 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6490 | else ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6491 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6492 | endif |
| 6493 | |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6494 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 6495 | 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] | 6496 | $(BUILT_TARGET_FILES_DIR): $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6497 | endif |
| 6498 | |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 6499 | ifdef BOARD_PREBUILT_BOOTLOADER |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6500 | $(BUILT_TARGET_FILES_DIR): $(INSTALLED_BOOTLOADER_MODULE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6501 | droidcore-unbundled: $(INSTALLED_BOOTLOADER_MODULE) |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 6502 | endif |
| 6503 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6504 | # Depending on the various images guarantees that the underlying |
| 6505 | # directories are up-to-date. |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6506 | $(BUILT_TARGET_FILES_DIR): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6507 | $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 6508 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6509 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6510 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 6511 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Pierre-Clément Tosi | 03975ed | 2022-10-02 12:11:06 +0100 | [diff] [blame] | 6512 | $(INSTALLED_PVMFW_BINARY_TARGET) \ |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 6513 | $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 6514 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6515 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 6516 | $(INSTALLED_KERNEL_TARGET) \ |
Enrico Granata | b582e0f | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 6517 | $(INSTALLED_RAMDISK_TARGET) \ |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 6518 | $(INSTALLED_DTBIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6519 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
Colin Cross | 757d8cb | 2024-09-11 11:03:34 -0700 | [diff] [blame] | 6520 | $(INSTALLED_VENDOR_KERNEL_RAMDISK_TARGET) \ |
Kelvin Zhang | decee4a | 2023-05-19 12:33:06 -0700 | [diff] [blame] | 6521 | $(BUILT_RAMDISK_16K_TARGET) \ |
| 6522 | $(BUILT_KERNEL_16K_TARGET) \ |
Kelvin Zhang | 8ac5145 | 2024-09-11 16:31:06 -0700 | [diff] [blame] | 6523 | $(BUILT_BOOTIMAGE_16K_TARGET) \ |
| 6524 | $(INSTALLED_DTBOIMAGE_16KB_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6525 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 6526 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 6527 | $(BOARD_RECOVERY_ACPIO) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6528 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 6529 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 6530 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6531 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6532 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6533 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6534 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6535 | $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6536 | $(LPMAKE) \ |
| 6537 | $(SELINUX_FC) \ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6538 | $(INSTALLED_MISC_INFO_TARGET) \ |
Daniel Zheng | c1ffd4c | 2023-05-09 13:35:33 -0700 | [diff] [blame] | 6539 | $(INSTALLED_FASTBOOT_INFO_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6540 | $(APKCERTS_FILE) \ |
Jooyung Han | 8b16228 | 2023-10-30 16:22:53 +0900 | [diff] [blame] | 6541 | $(APEX_KEYS_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6542 | $(SOONG_ZIP) \ |
| 6543 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
Justin Yun | cff95e2 | 2023-05-26 11:26:43 +0900 | [diff] [blame] | 6544 | $(HOST_OUT_EXECUTABLES)/map_file_generator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 6545 | $(ADD_IMG_TO_TARGET_FILES) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 6546 | $(MAKE_RECOVERY_PATCH) \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 6547 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 6548 | $(BUILT_KERNEL_VERSION_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6549 | | $(ACP) |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 6550 | @echo "Building target files: $@" |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6551 | $(hide) rm -rf $@ $@.list $(zip_root) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6552 | $(hide) mkdir -p $(dir $@) $(zip_root) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 6553 | 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] | 6554 | @# Components of the recovery image |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 6555 | $(hide) mkdir -p $(zip_root)/$(PRIVATE_RECOVERY_OUT) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 6556 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 6557 | # recovery ramdisk in vendor_boot. |
| 6558 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6559 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6560 | $(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/$(PRIVATE_RECOVERY_OUT)/RAMDISK) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 6561 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6562 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 6563 | ifneq (,$(filter true,$(BOARD_USES_RECOVERY_AS_BOOT))) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 6564 | cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 6565 | else ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 6566 | cp $(firstword $(INSTALLED_KERNEL_TARGET)) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/kernel |
| 6567 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6568 | endif |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 6569 | 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] | 6570 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6571 | 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] | 6572 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 6573 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 6574 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6575 | cp $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 6576 | else |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6577 | cp $(BOARD_PREBUILT_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 6578 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6579 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 6580 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6581 | cp $(BOARD_RECOVERY_ACPIO) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_acpio |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 6582 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 6583 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6584 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 6585 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 6586 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 6587 | ifdef INTERNAL_KERNEL_CMDLINE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6588 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/cmdline |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 6589 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 6590 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 6591 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6592 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 6593 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 6594 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6595 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 6596 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 6597 | endif # not (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 6598 | 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] | 6599 | @# Components of the boot image |
| 6600 | $(hide) mkdir -p $(zip_root)/BOOT |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 6601 | $(hide) mkdir -p $(zip_root)/ROOT |
| 6602 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6603 | $(TARGET_ROOT_OUT),$(zip_root)/ROOT) |
Tom Cherry | 3871f0f | 2018-11-06 14:23:44 -0800 | [diff] [blame] | 6604 | @# If we are using recovery as boot, this is already done when processing recovery. |
| 6605 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6606 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6607 | $(TARGET_RAMDISK_OUT),$(zip_root)/BOOT/RAMDISK) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6608 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 6609 | $(hide) cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6610 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 6611 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 6612 | echo "$(GENERIC_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 6613 | else ifndef INSTALLED_VENDOR_BOOTIMAGE_TARGET # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 6614 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6615 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6616 | cp $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6617 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 6618 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6619 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/BOOT/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 6620 | endif |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 6621 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6622 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 6623 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 6624 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6625 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 6626 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 6627 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6628 | endif # BOARD_USES_RECOVERY_AS_BOOT not true |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 6629 | $(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\ |
| 6630 | mkdir -p $(zip_root)/RADIO; \ |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6631 | cp $(t) $(zip_root)/RADIO/$(notdir $(t));) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6632 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 6633 | mkdir -p $(zip_root)/VENDOR_BOOT |
| 6634 | $(call package_files-copy-root, \ |
| 6635 | $(TARGET_VENDOR_RAMDISK_OUT),$(zip_root)/VENDOR_BOOT/RAMDISK) |
| 6636 | ifdef INSTALLED_DTBIMAGE_TARGET |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 6637 | ifneq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6638 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_BOOT/dtb |
| 6639 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 6640 | endif # end of INSTALLED_DTBIMAGE_TARGET |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 6641 | ifdef INTERNAL_VENDOR_BOOTCONFIG_TARGET |
| 6642 | cp $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) $(zip_root)/VENDOR_BOOT/vendor_bootconfig |
| 6643 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6644 | ifdef BOARD_KERNEL_BASE |
| 6645 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/VENDOR_BOOT/base |
| 6646 | endif |
| 6647 | ifdef BOARD_KERNEL_PAGESIZE |
| 6648 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_BOOT/pagesize |
| 6649 | endif |
| 6650 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/VENDOR_BOOT/vendor_cmdline |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 6651 | ifdef INTERNAL_VENDOR_RAMDISK_FRAGMENTS |
| 6652 | echo "$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)" > "$(zip_root)/VENDOR_BOOT/vendor_ramdisk_fragments" |
| 6653 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 6654 | mkdir -p $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment); \ |
| 6655 | echo "$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)" > "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/mkbootimg_args"; \ |
| 6656 | $(eval prebuilt_ramdisk := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 6657 | $(if $(prebuilt_ramdisk), \ |
| 6658 | cp "$(prebuilt_ramdisk)" "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/prebuilt_ramdisk";, \ |
| 6659 | $(call package_files-copy-root, \ |
| 6660 | $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR), \ |
| 6661 | $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/RAMDISK); \ |
| 6662 | )) |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 6663 | endif # INTERNAL_VENDOR_RAMDISK_FRAGMENTS != "" |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6664 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 6665 | ifdef INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET |
| 6666 | mkdir -p $(zip_root)/VENDOR_KERNEL_BOOT |
| 6667 | $(call package_files-copy-root, \ |
| 6668 | $(TARGET_VENDOR_KERNEL_RAMDISK_OUT),$(zip_root)/VENDOR_KERNEL_BOOT/RAMDISK) |
| 6669 | ifdef INSTALLED_DTBIMAGE_TARGET |
| 6670 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_KERNEL_BOOT/dtb |
| 6671 | endif |
| 6672 | ifdef BOARD_KERNEL_PAGESIZE |
| 6673 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_KERNEL_BOOT/pagesize |
| 6674 | endif |
| 6675 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6676 | ifdef BUILDING_SYSTEM_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6677 | @# Contents of the system image |
Jeongik Cha | 83db951 | 2024-09-12 13:04:22 +0900 | [diff] [blame] | 6678 | ifneq ($(SOONG_DEFINED_SYSTEM_IMAGE_PATH),) |
| 6679 | $(hide) $(call package_files-copy-root, \ |
| 6680 | $(SOONG_DEFINED_SYSTEM_IMAGE_BASE)/root/system,$(zip_root)/SYSTEM) |
| 6681 | else |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6682 | $(hide) $(call package_files-copy-root, \ |
| 6683 | $(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM) |
Jeongik Cha | 83db951 | 2024-09-12 13:04:22 +0900 | [diff] [blame] | 6684 | endif |
Yi-Yo Chiang | 9b25841 | 2022-01-04 00:05:11 +0800 | [diff] [blame] | 6685 | else ifdef INSTALLED_BUILD_PROP_TARGET |
| 6686 | @# Copy the system build.prop even if not building a system image |
| 6687 | @# because add_img_to_target_files may need it to build other partition |
| 6688 | @# images. |
| 6689 | $(hide) mkdir -p "$(zip_root)/SYSTEM" |
| 6690 | $(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] | 6691 | endif |
| 6692 | ifdef BUILDING_USERDATA_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6693 | @# Contents of the data image |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6694 | $(hide) $(call package_files-copy-root, \ |
| 6695 | $(TARGET_OUT_DATA),$(zip_root)/DATA) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6696 | endif |
| 6697 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 6698 | @# Contents of the vendor image |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6699 | $(hide) $(call package_files-copy-root, \ |
| 6700 | $(TARGET_OUT_VENDOR),$(zip_root)/VENDOR) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 6701 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6702 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6703 | @# Contents of the product image |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6704 | $(hide) $(call package_files-copy-root, \ |
| 6705 | $(TARGET_OUT_PRODUCT),$(zip_root)/PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6706 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6707 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 6708 | @# Contents of the system_ext image |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6709 | $(hide) $(call package_files-copy-root, \ |
| 6710 | $(TARGET_OUT_SYSTEM_EXT),$(zip_root)/SYSTEM_EXT) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6711 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6712 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6713 | @# Contents of the odm image |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6714 | $(hide) $(call package_files-copy-root, \ |
| 6715 | $(TARGET_OUT_ODM),$(zip_root)/ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6716 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6717 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 6718 | @# Contents of the vendor_dlkm image |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6719 | $(hide) $(call package_files-copy-root, \ |
| 6720 | $(TARGET_OUT_VENDOR_DLKM),$(zip_root)/VENDOR_DLKM) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6721 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6722 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 6723 | @# Contents of the odm_dlkm image |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6724 | $(hide) $(call package_files-copy-root, \ |
| 6725 | $(TARGET_OUT_ODM_DLKM),$(zip_root)/ODM_DLKM) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6726 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6727 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 6728 | @# Contents of the system_dlkm image |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6729 | $(hide) $(call package_files-copy-root, \ |
| 6730 | $(TARGET_OUT_SYSTEM_DLKM),$(zip_root)/SYSTEM_DLKM) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6731 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6732 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 6733 | @# Contents of the system_other image |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6734 | $(hide) $(call package_files-copy-root, \ |
| 6735 | $(TARGET_OUT_SYSTEM_OTHER),$(zip_root)/SYSTEM_OTHER) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 6736 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6737 | @# Extra contents of the OTA package |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6738 | $(hide) mkdir -p $(zip_root)/OTA |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6739 | $(hide) cp $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/ |
Enrico Granata | b582e0f | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 6740 | ifdef BUILDING_RAMDISK_IMAGE |
| 6741 | ifeq (true,$(BOARD_IMG_USE_RAMDISK)) |
| 6742 | @# Contents of the ramdisk image |
| 6743 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6744 | $(hide) cp $(INSTALLED_RAMDISK_TARGET) $(zip_root)/IMAGES/ |
| 6745 | endif |
| 6746 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 6747 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 6748 | ifneq ($(built_ota_tools),) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6749 | $(hide) mkdir -p $(zip_root)/OTA/bin |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6750 | $(hide) cp $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/ |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6751 | endif |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 6752 | endif |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6753 | @# 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] | 6754 | @# build them. |
| 6755 | $(hide) mkdir -p $(zip_root)/META |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6756 | $(hide) cp $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt |
Jooyung Han | 8b16228 | 2023-10-30 16:22:53 +0900 | [diff] [blame] | 6757 | $(hide) cp $(APEX_KEYS_FILE) $(zip_root)/META/apexkeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6758 | ifneq ($(tool_extension),) |
| 6759 | $(hide) cp $(PRIVATE_TOOL_EXTENSION) $(zip_root)/META/ |
| 6760 | endif |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 6761 | $(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6762 | $(hide) cp $(SELINUX_FC) $(zip_root)/META/file_contexts.bin |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6763 | $(hide) cp $(INSTALLED_MISC_INFO_TARGET) $(zip_root)/META/misc_info.txt |
Daniel Zheng | c1ffd4c | 2023-05-09 13:35:33 -0700 | [diff] [blame] | 6764 | ifneq ($(INSTALLED_FASTBOOT_INFO_TARGET),) |
| 6765 | $(hide) cp $(INSTALLED_FASTBOOT_INFO_TARGET) $(zip_root)/META/fastboot-info.txt |
| 6766 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6767 | ifneq ($(PRODUCT_SYSTEM_BASE_FS_PATH),) |
| 6768 | $(hide) cp $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 6769 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 6770 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6771 | ifneq ($(PRODUCT_VENDOR_BASE_FS_PATH),) |
| 6772 | $(hide) cp $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 6773 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 6774 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6775 | ifneq ($(PRODUCT_PRODUCT_BASE_FS_PATH),) |
| 6776 | $(hide) cp $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 6777 | $(zip_root)/META/$(notdir $(PRODUCT_PRODUCT_BASE_FS_PATH)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6778 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6779 | ifneq ($(PRODUCT_SYSTEM_EXT_BASE_FS_PATH),) |
| 6780 | $(hide) cp $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 6781 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6782 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6783 | ifneq ($(PRODUCT_ODM_BASE_FS_PATH),) |
| 6784 | $(hide) cp $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 6785 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_BASE_FS_PATH)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6786 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6787 | ifneq ($(PRODUCT_VENDOR_DLKM_BASE_FS_PATH),) |
| 6788 | $(hide) cp $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 6789 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH)) |
| 6790 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6791 | ifneq ($(PRODUCT_ODM_DLKM_BASE_FS_PATH),) |
| 6792 | $(hide) cp $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 6793 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_DLKM_BASE_FS_PATH)) |
| 6794 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6795 | ifneq ($(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH),) |
| 6796 | $(hide) cp $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
| 6797 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH)) |
| 6798 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 6799 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 6800 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 6801 | $(hide) PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 6802 | $(MAKE_RECOVERY_PATCH) $(zip_root) $(zip_root) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 6803 | endif |
Bill Peckham | c0f413f | 2019-11-07 11:27:02 -0800 | [diff] [blame] | 6804 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 6805 | ifeq ($(AB_OTA_UPDATER),true) |
| 6806 | @# 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] | 6807 | $(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] | 6808 | $(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] | 6809 | $(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] | 6810 | $(hide) for part in $(sort $(AB_OTA_PARTITIONS)); do \ |
Alex Deymo | 8925d33 | 2015-10-01 17:38:09 -0700 | [diff] [blame] | 6811 | echo "$${part}" >> $(zip_root)/META/ab_partitions.txt; \ |
| 6812 | done |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 6813 | $(hide) for conf in $(strip $(AB_OTA_POSTINSTALL_CONFIG)); do \ |
Sen Jiang | 8f22e2a | 2015-11-12 13:53:25 -0800 | [diff] [blame] | 6814 | echo "$${conf}" >> $(zip_root)/META/postinstall_config.txt; \ |
| 6815 | done |
Bertrand SIMONNET | 4af7259 | 2015-10-08 15:32:40 -0700 | [diff] [blame] | 6816 | ifdef OSRELEASED_DIRECTORY |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6817 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id $(zip_root)/META/product_id.txt |
| 6818 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version $(zip_root)/META/product_version.txt |
| 6819 | $(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] | 6820 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 6821 | endif |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 6822 | ifeq ($(BREAKPAD_GENERATE_SYMBOLS),true) |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 6823 | @# If breakpad symbols have been generated, add them to the zip. |
Cole Faust | 83fe17e | 2023-09-29 00:22:27 +0000 | [diff] [blame] | 6824 | $(hide) cp -R $(TARGET_OUT_BREAKPAD) $(zip_root)/BREAKPAD |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 6825 | endif |
chunhui dai | 97944c7 | 2024-06-21 16:45:47 +0000 | [diff] [blame] | 6826 | ifdef BOARD_PREBUILT_VENDOR_BOOTIMAGE |
| 6827 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6828 | $(hide) cp $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6829 | endif |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 6830 | ifdef BOARD_PREBUILT_VENDORIMAGE |
| 6831 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6832 | $(hide) cp $(INSTALLED_VENDORIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6833 | endif |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6834 | ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 6835 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6836 | $(hide) cp $(INSTALLED_PRODUCTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6837 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6838 | ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6839 | $(hide) mkdir -p $(zip_root)/IMAGES |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6840 | $(hide) cp $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6841 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6842 | ifdef BOARD_PREBUILT_INIT_BOOT_IMAGE |
Devin Moore | cda41f0 | 2022-01-05 00:08:39 +0000 | [diff] [blame] | 6843 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6844 | $(hide) cp $(INSTALLED_INIT_BOOT_IMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6845 | endif |
Ramji Jiyani | 034e777 | 2022-01-24 04:00:29 +0000 | [diff] [blame] | 6846 | |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 6847 | ifndef BOARD_PREBUILT_BOOTIMAGE |
Yi-Yo Chiang | 8193900 | 2022-01-08 23:46:40 +0800 | [diff] [blame] | 6848 | 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] | 6849 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 6850 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6851 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 6852 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 6853 | endif # INTERNAL_PREBUILT_BOOTIMAGE != "" || BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES == true |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 6854 | else # BOARD_PREBUILT_BOOTIMAGE is defined |
| 6855 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6856 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
| 6857 | endif # BOARD_PREBUILT_BOOTIMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6858 | ifdef BOARD_PREBUILT_ODMIMAGE |
| 6859 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6860 | $(hide) cp $(INSTALLED_ODMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6861 | endif |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 6862 | ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6863 | $(hide) mkdir -p $(zip_root)/IMAGES |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 6864 | $(hide) cp $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6865 | endif |
| 6866 | ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 6867 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6868 | $(hide) cp $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6869 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6870 | ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
| 6871 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6872 | $(hide) cp $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6873 | endif |
Yueyao Zhu | 889ee5e | 2017-05-12 17:50:46 -0700 | [diff] [blame] | 6874 | ifdef BOARD_PREBUILT_DTBOIMAGE |
Tao Bao | c633ed0 | 2017-05-30 21:46:33 -0700 | [diff] [blame] | 6875 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6876 | $(hide) cp $(INSTALLED_DTBOIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 6877 | endif # BOARD_PREBUILT_DTBOIMAGE |
Kelvin Zhang | 8948d13 | 2024-08-21 19:35:20 -0700 | [diff] [blame] | 6878 | ifdef BOARD_KERNEL_PATH_16K |
Kelvin Zhang | decee4a | 2023-05-19 12:33:06 -0700 | [diff] [blame] | 6879 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6880 | $(hide) cp $(BUILT_KERNEL_16K_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Kelvin Zhang | 8948d13 | 2024-08-21 19:35:20 -0700 | [diff] [blame] | 6881 | endif # BOARD_KERNEL_PATH_16K |
| 6882 | ifdef BOARD_KERNEL_MODULES_16K |
Kelvin Zhang | decee4a | 2023-05-19 12:33:06 -0700 | [diff] [blame] | 6883 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6884 | $(hide) cp $(BUILT_RAMDISK_16K_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Kelvin Zhang | 8948d13 | 2024-08-21 19:35:20 -0700 | [diff] [blame] | 6885 | endif # BOARD_KERNEL_MODULES_16K |
| 6886 | ifdef BUILT_BOOTIMAGE_16K_TARGET |
| 6887 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6888 | $(hide) cp $(BUILT_BOOTIMAGE_16K_TARGET) $(zip_root)/IMAGES/ |
| 6889 | endif # BUILT_BOOTIMAGE_16K_TARGET |
| 6890 | ifdef INSTALLED_DTBOIMAGE_16KB_TARGET |
| 6891 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6892 | $(hide) cp $(INSTALLED_DTBOIMAGE_16KB_TARGET) $(zip_root)/IMAGES/ |
| 6893 | endif # INSTALLED_DTBOIMAGE_16KB_TARGET |
Pierre-Clément Tosi | 4bbb8dd | 2022-01-31 20:25:52 +0100 | [diff] [blame] | 6894 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 6895 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6896 | $(hide) cp $(INSTALLED_PVMFWIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 6897 | $(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] | 6898 | $(hide) mkdir -p $(zip_root)/PVMFW |
| 6899 | $(hide) cp $(INSTALLED_PVMFW_BINARY_TARGET) $(zip_root)/PVMFW/ |
Pierre-Clément Tosi | d8248af | 2021-10-07 12:18:17 +0200 | [diff] [blame] | 6900 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 6901 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 6902 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6903 | $(hide) cp $(INSTALLED_BOOTLOADER_MODULE) $(zip_root)/IMAGES/ |
| 6904 | endif |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 6905 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 6906 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6907 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
Ray-cy.lee | e97e0cb | 2023-06-27 11:44:46 +0800 | [diff] [blame] | 6908 | $(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] | 6909 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Tao Bao | 95a95c3 | 2017-06-16 15:30:23 -0700 | [diff] [blame] | 6910 | @# The radio images in BOARD_PACK_RADIOIMAGES will be additionally copied from RADIO/ into |
| 6911 | @# IMAGES/, which then will be added into <product>-img.zip. Such images must be listed in |
| 6912 | @# INSTALLED_RADIOIMAGE_TARGET. |
| 6913 | $(hide) $(foreach part,$(BOARD_PACK_RADIOIMAGES), \ |
| 6914 | echo $(part) >> $(zip_root)/META/pack_radioimages.txt;) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6915 | @# Run fs_config on all the system, vendor, boot ramdisk, |
| 6916 | @# and recovery ramdisk files in the zip, and save the output |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6917 | ifdef BUILDING_SYSTEM_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6918 | $(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] | 6919 | $(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] | 6920 | endif |
| 6921 | ifdef BUILDING_VENDOR_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6922 | $(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] | 6923 | $(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.txt |
| 6924 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6925 | ifdef BUILDING_PRODUCT_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6926 | $(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] | 6927 | $(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_config.txt |
| 6928 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6929 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6930 | $(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] | 6931 | $(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] | 6932 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6933 | ifdef BUILDING_ODM_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6934 | $(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] | 6935 | $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt |
| 6936 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6937 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6938 | $(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] | 6939 | $(hide) $(call fs_config,$(zip_root)/VENDOR_DLKM,vendor_dlkm/) > $(zip_root)/META/vendor_dlkm_filesystem_config.txt |
| 6940 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6941 | ifdef BUILDING_ODM_DLKM_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6942 | $(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] | 6943 | $(hide) $(call fs_config,$(zip_root)/ODM_DLKM,odm_dlkm/) > $(zip_root)/META/odm_dlkm_filesystem_config.txt |
| 6944 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6945 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
Justin Yun | a8a5a3f | 2023-06-15 23:11:03 +0900 | [diff] [blame] | 6946 | $(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] | 6947 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_DLKM,system_dlkm/) > $(zip_root)/META/system_dlkm_filesystem_config.txt |
| 6948 | endif |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 6949 | @# ROOT always contains the files for the root under normal boot. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6950 | $(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] | 6951 | @# BOOT/RAMDISK contains the first stage and recovery ramdisk. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6952 | $(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] | 6953 | ifdef BUILDING_INIT_BOOT_IMAGE |
| 6954 | $(hide) $(call package_files-copy-root, $(TARGET_RAMDISK_OUT),$(zip_root)/INIT_BOOT/RAMDISK) |
| 6955 | $(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] | 6956 | $(hide) cp $(RAMDISK_NODE_LIST) $(zip_root)/META/ramdisk_node_list |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6957 | ifdef BOARD_KERNEL_PAGESIZE |
| 6958 | $(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/INIT_BOOT/pagesize |
| 6959 | endif # BOARD_KERNEL_PAGESIZE |
| 6960 | endif # BUILDING_INIT_BOOT_IMAGE |
Jooyung Han | 6791168 | 2024-08-08 17:17:53 +0900 | [diff] [blame] | 6961 | ifdef BOARD_EROFS_COMPRESS_HINTS |
| 6962 | $(hide) cp $(BOARD_EROFS_COMPRESS_HINTS) $(zip_root)/META/erofs_default_compress_hints.txt |
| 6963 | endif |
| 6964 | ifdef BOARD_SYSTEMIMAGE_EROFS_COMPRESS_HINTS |
| 6965 | $(hide) cp $(BOARD_SYSTEMIMAGE_EROFS_COMPRESS_HINTS) $(zip_root)/META/system_erofs_compress_hints.txt |
| 6966 | endif |
| 6967 | ifdef BOARD_SYSTEM_EXTIMAGE_EROFS_COMPRESS_HINTS |
| 6968 | $(hide) cp $(BOARD_SYSTEM_EXTIMAGE_EROFS_COMPRESS_HINTS) $(zip_root)/META/system_ext_erofs_compress_hints.txt |
| 6969 | endif |
| 6970 | ifdef BOARD_PRODUCTIMAGE_EROFS_COMPRESS_HINTS |
| 6971 | $(hide) cp $(BOARD_PRODUCTIMAGE_EROFS_COMPRESS_HINTS) $(zip_root)/META/product_erofs_compress_hints.txt |
| 6972 | endif |
| 6973 | ifdef BOARD_VENDORIMAGE_EROFS_COMPRESS_HINTS |
| 6974 | $(hide) cp $(BOARD_VENDORIMAGE_EROFS_COMPRESS_HINTS) $(zip_root)/META/vendor_erofs_compress_hints.txt |
| 6975 | endif |
| 6976 | ifdef BOARD_ODMIMAGE_EROFS_COMPRESS_HINTS |
| 6977 | $(hide) cp $(BOARD_ODMIMAGE_EROFS_COMPRESS_HINTS) $(zip_root)/META/odm_erofs_compress_hints.txt |
| 6978 | endif |
| 6979 | ifdef BOARD_VENDOR_DLKMIMAGE_EROFS_COMPRESS_HINTS |
| 6980 | $(hide) cp $(BOARD_VENDOR_DLKMIMAGE_EROFS_COMPRESS_HINTS) $(zip_root)/META/vendor_dlkm_erofs_compress_hints.txt |
| 6981 | endif |
| 6982 | ifdef BOARD_ODM_DLKMIMAGE_EROFS_COMPRESS_HINTS |
| 6983 | $(hide) cp $(BOARD_ODM_DLKMIMAGE_EROFS_COMPRESS_HINTS) $(zip_root)/META/odm_dlkm_erofs_compress_hints.txt |
| 6984 | endif |
| 6985 | ifdef BOARD_SYSTEM_DLKMIMAGE_EROFS_COMPRESS_HINTS |
| 6986 | $(hide) cp $(BOARD_SYSTEM_DLKMIMAGE_EROFS_COMPRESS_HINTS) $(zip_root)/META/system_dlkm_erofs_compress_hints.txt |
| 6987 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6988 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 6989 | $(call fs_config,$(zip_root)/VENDOR_BOOT/RAMDISK,) > $(zip_root)/META/vendor_boot_filesystem_config.txt |
| 6990 | endif |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6991 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 6992 | $(hide) $(call fs_config,$(zip_root)/RECOVERY/RAMDISK,) > $(zip_root)/META/recovery_filesystem_config.txt |
| 6993 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6994 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Justin Yun | cff95e2 | 2023-05-26 11:26:43 +0900 | [diff] [blame] | 6995 | $(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] | 6996 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_OTHER,system/) > $(zip_root)/META/system_other_filesystem_config.txt |
| 6997 | endif |
Michael Schwartz | 4d9cb56 | 2017-04-04 13:01:18 -0700 | [diff] [blame] | 6998 | @# Metadata for compatibility verification. |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 6999 | ifdef BUILT_KERNEL_CONFIGS_FILE |
| 7000 | $(hide) cp $(BUILT_KERNEL_CONFIGS_FILE) $(zip_root)/META/kernel_configs.txt |
| 7001 | endif |
| 7002 | ifdef BUILT_KERNEL_VERSION_FILE |
| 7003 | $(hide) cp $(BUILT_KERNEL_VERSION_FILE) $(zip_root)/META/kernel_version.txt |
| 7004 | endif |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 7005 | rm -rf $(zip_root)/META/dynamic_partitions_info.txt |
| 7006 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 7007 | $(call dump-dynamic-partitions-info, $(zip_root)/META/dynamic_partitions_info.txt) |
| 7008 | endif |
Tao Bao | cbd6d49 | 2019-10-07 22:46:02 -0700 | [diff] [blame] | 7009 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
| 7010 | $(ADD_IMG_TO_TARGET_FILES) -a -v -p $(HOST_OUT) $(zip_root) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 7011 | ifeq ($(BUILD_QEMU_IMAGES),true) |
| 7012 | $(hide) AVBTOOL=$(AVBTOOL) $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(zip_root)/IMAGES/vbmeta.img \ |
| 7013 | $(zip_root)/IMAGES/system.img $(zip_root)/IMAGES/VerifiedBootParams.textproto |
| 7014 | endif |
Alex Deymo | 92cfd6f | 2016-01-26 18:47:44 -0800 | [diff] [blame] | 7015 | @# Zip everything up, preserving symlinks and placing META/ files first to |
| 7016 | @# help early validation of the .zip file while uploading it. |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 7017 | $(hide) find $(zip_root)/META | sort >$@ |
| 7018 | $(hide) find $(zip_root) -path $(zip_root)/META -prune -o -print | sort >>$@ |
| 7019 | |
| 7020 | $(BUILT_TARGET_FILES_PACKAGE): $(BUILT_TARGET_FILES_DIR) |
| 7021 | @echo "Packaging target files: $@" |
Julien Desprez | eebf6dc | 2023-12-18 14:07:58 -0800 | [diff] [blame] | 7022 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(zip_root) -r $@.list -sha256 |
Doug Zongker | 283e2a1 | 2010-03-15 17:52:32 -0700 | [diff] [blame] | 7023 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 7024 | .PHONY: target-files-package |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7025 | target-files-package: $(BUILT_TARGET_FILES_PACKAGE) |
| 7026 | |
Kelvin Zhang | 2c561d8 | 2023-04-20 21:01:52 -0700 | [diff] [blame] | 7027 | .PHONY: target-files-dir |
| 7028 | target-files-dir: $(BUILT_TARGET_FILES_DIR) |
| 7029 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7030 | $(call declare-1p-container,$(BUILT_TARGET_FILES_PACKAGE),) |
| 7031 | $(call declare-container-license-deps,$(BUILT_TARGET_FILES_PACKAGE), $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 7032 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 7033 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
| 7034 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
| 7035 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
| 7036 | $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) \ |
| 7037 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
| 7038 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 7039 | $(INSTALLED_KERNEL_TARGET) \ |
| 7040 | $(INSTALLED_RAMDISK_TARGET) \ |
| 7041 | $(INSTALLED_DTBIMAGE_TARGET) \ |
| 7042 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 7043 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
| 7044 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
| 7045 | $(BOARD_RECOVERY_ACPIO) \ |
| 7046 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 7047 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 7048 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 7049 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 7050 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 7051 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 7052 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 7053 | $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
| 7054 | $(LPMAKE) \ |
| 7055 | $(SELINUX_FC) \ |
| 7056 | $(INSTALLED_MISC_INFO_TARGET) \ |
David Anderson | 816da93 | 2023-03-09 21:09:07 -0800 | [diff] [blame] | 7057 | $(INSTALLED_FASTBOOT_INFO_TARGET) \ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7058 | $(APKCERTS_FILE) \ |
Jooyung Han | 8b16228 | 2023-10-30 16:22:53 +0900 | [diff] [blame] | 7059 | $(APEX_KEYS_FILE) \ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7060 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
Justin Yun | cff95e2 | 2023-05-26 11:26:43 +0900 | [diff] [blame] | 7061 | $(HOST_OUT_EXECUTABLES)/map_file_generator \ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7062 | $(ADD_IMG_TO_TARGET_FILES) \ |
| 7063 | $(MAKE_RECOVERY_PATCH) \ |
| 7064 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 7065 | $(BUILT_KERNEL_VERSION_FILE),$(BUILT_TARGET_FILES_PACKAGE):) |
| 7066 | |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7067 | $(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] | 7068 | |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 7069 | # ----------------------------------------------------------------- |
| 7070 | # NDK Sysroot Package |
| 7071 | NDK_SYSROOT_TARGET := $(PRODUCT_OUT)/ndk_sysroot.tar.bz2 |
Colin Cross | ec65b76 | 2022-10-20 14:03:47 -0700 | [diff] [blame] | 7072 | .PHONY: ndk_sysroot |
| 7073 | ndk_sysroot: $(NDK_SYSROOT_TARGET) |
Dan Willemsen | 14e1026 | 2018-06-17 21:54:21 -0700 | [diff] [blame] | 7074 | $(NDK_SYSROOT_TARGET): $(SOONG_OUT_DIR)/ndk.timestamp |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 7075 | @echo Package NDK sysroot... |
| 7076 | $(hide) tar cjf $@ -C $(SOONG_OUT_DIR) ndk |
| 7077 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 7078 | ifeq ($(HOST_OS),linux) |
Colin Cross | ec65b76 | 2022-10-20 14:03:47 -0700 | [diff] [blame] | 7079 | $(call dist-for-goals,sdk ndk_sysroot,$(NDK_SYSROOT_TARGET)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 7080 | endif |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 7081 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 7082 | ifeq ($(build_ota_package),true) |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 7083 | # ----------------------------------------------------------------- |
| 7084 | # OTA update package |
| 7085 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 7086 | # $(1): output file |
| 7087 | # $(2): additional args |
| 7088 | define build-ota-package-target |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 7089 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 7090 | $(OTA_FROM_TARGET_FILES) \ |
| 7091 | --verbose \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 7092 | --path $(HOST_OUT) \ |
| 7093 | $(if $(OEM_OTA_CONFIG), --oem_settings $(OEM_OTA_CONFIG)) \ |
Ben Fennema | f089d9a | 2024-04-26 08:33:57 -0700 | [diff] [blame] | 7094 | $(if $(BOOT_VAR_OTA_CONFIG), --boot_variable_file $(BOOT_VAR_OTA_CONFIG)) \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 7095 | $(2) \ |
Kelvin Zhang | 01e67f6 | 2023-05-10 17:03:40 +0000 | [diff] [blame] | 7096 | $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) $(1) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 7097 | endef |
| 7098 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 7099 | product_name := $(TARGET_PRODUCT) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 7100 | ifeq ($(TARGET_BUILD_TYPE),debug) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 7101 | product_name := $(product_name)_debug |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 7102 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7103 | name := $(product_name)-ota |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 7104 | |
| 7105 | INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 7106 | INTERNAL_OTA_METADATA := $(PRODUCT_OUT)/ota_metadata |
| 7107 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7108 | $(call declare-0p-target,$(INTERNAL_OTA_METADATA)) |
| 7109 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 7110 | $(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 7111 | $(INTERNAL_OTA_PACKAGE_TARGET): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_OTA_METADATA) |
Kelvin Zhang | 01e67f6 | 2023-05-10 17:03:40 +0000 | [diff] [blame] | 7112 | $(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] | 7113 | @echo "Package OTA: $@" |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 7114 | $(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] | 7115 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7116 | $(call declare-1p-container,$(INTERNAL_OTA_PACKAGE_TARGET),) |
| 7117 | $(call declare-container-license-deps,$(INTERNAL_OTA_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES),$(PRODUCT_OUT)/:/) |
| 7118 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 7119 | .PHONY: otapackage |
| 7120 | otapackage: $(INTERNAL_OTA_PACKAGE_TARGET) |
| 7121 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 7122 | ifeq ($(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE),true) |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7123 | name := $(product_name)-ota-retrofit |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 7124 | |
| 7125 | INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 7126 | $(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] | 7127 | $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET): \ |
| 7128 | $(BUILT_TARGET_FILES_PACKAGE) \ |
Yifan Hong | 5c1b199 | 2020-10-08 09:36:29 -0700 | [diff] [blame] | 7129 | $(OTA_FROM_TARGET_FILES) \ |
| 7130 | $(INTERNAL_OTATOOLS_FILES) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 7131 | @echo "Package OTA (retrofit dynamic partitions): $@" |
| 7132 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --retrofit_dynamic_partitions) |
| 7133 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7134 | $(call declare-1p-container,$(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET),) |
| 7135 | $(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)/:/) |
| 7136 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 7137 | .PHONY: otardppackage |
| 7138 | |
| 7139 | otapackage otardppackage: $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET) |
| 7140 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 7141 | endif # BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 7142 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 7143 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7144 | name := $(product_name)-partial-ota |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 7145 | |
| 7146 | INTERNAL_OTA_PARTIAL_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 7147 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
Kelvin Zhang | 01e67f6 | 2023-05-10 17:03:40 +0000 | [diff] [blame] | 7148 | $(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] | 7149 | @echo "Package partial OTA: $@" |
| 7150 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --partial "$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)") |
| 7151 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7152 | $(call declare-1p-container,$(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET),) |
| 7153 | $(call declare-container-license-deps,$(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES),$(PRODUCT_OUT)/:/) |
| 7154 | |
| 7155 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 7156 | .PHONY: partialotapackage |
| 7157 | partialotapackage: $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET) |
| 7158 | |
| 7159 | endif # BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST |
| 7160 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 7161 | endif # build_ota_package |
Ying Wang | f8824af | 2014-06-03 14:07:27 -0700 | [diff] [blame] | 7162 | |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 7163 | # ----------------------------------------------------------------- |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 7164 | # A zip of the appcompat directory containing logs |
| 7165 | APPCOMPAT_ZIP := $(PRODUCT_OUT)/appcompat.zip |
| 7166 | # 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] | 7167 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 7168 | $(APPCOMPAT_ZIP): $(FULL_SYSTEMIMAGE_DEPS) \ |
| 7169 | $(INTERNAL_RAMDISK_FILES) \ |
| 7170 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 7171 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 7172 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 7173 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 7174 | endif |
| 7175 | $(APPCOMPAT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,appcompat)/filelist |
| 7176 | $(APPCOMPAT_ZIP): $(SOONG_ZIP) |
| 7177 | @echo "appcompat logs: $@" |
| 7178 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 7179 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/appcompat $(dir $(PRIVATE_LIST_FILE)) |
| 7180 | $(hide) find $(PRODUCT_OUT)/appcompat | sort >$(PRIVATE_LIST_FILE) |
| 7181 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/appcompat -l $(PRIVATE_LIST_FILE) |
| 7182 | |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 7183 | # The mac build doesn't build dex2oat, so create the zip file only if the build OS is linux. |
| 7184 | ifeq ($(BUILD_OS),linux) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame] | 7185 | ifneq ($(DEX2OAT),) |
Saeid Farivar Asanjan | 0b4f8d5 | 2022-08-08 20:23:45 +0000 | [diff] [blame] | 7186 | dexpreopt_tools_deps := $(DEXPREOPT_GEN_DEPS) $(DEXPREOPT_GEN) |
Eric Miao | 1d0fd2c | 2021-11-08 19:34:50 +0000 | [diff] [blame] | 7187 | dexpreopt_tools_deps += $(HOST_OUT_EXECUTABLES)/dexdump |
| 7188 | dexpreopt_tools_deps += $(HOST_OUT_EXECUTABLES)/oatdump |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 7189 | DEXPREOPT_TOOLS_ZIP := $(PRODUCT_OUT)/dexpreopt_tools.zip |
| 7190 | $(DEXPREOPT_TOOLS_ZIP): $(dexpreopt_tools_deps) |
| 7191 | $(DEXPREOPT_TOOLS_ZIP): PRIVATE_DEXPREOPT_TOOLS_DEPS := $(dexpreopt_tools_deps) |
| 7192 | $(DEXPREOPT_TOOLS_ZIP): $(SOONG_ZIP) |
| 7193 | $(hide) mkdir -p $(dir $@) |
| 7194 | $(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] | 7195 | $(call declare-1p-target,$(DEXPREOPT_TOOLS_ZIP),) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame] | 7196 | endif # DEX2OAT is set |
| 7197 | endif # BUILD_OS == linux |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 7198 | |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 7199 | DEXPREOPT_CONFIG_ZIP := $(PRODUCT_OUT)/dexpreopt_config.zip |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 7200 | |
| 7201 | $(DEXPREOPT_CONFIG_ZIP): $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 7202 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 7203 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 7204 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 7205 | |
| 7206 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 7207 | $(DEXPREOPT_CONFIG_ZIP): $(DEX_PREOPT_CONFIG_FOR_MAKE) \ |
| 7208 | $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) \ |
| 7209 | |
| 7210 | endif |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 7211 | |
Spandan Das | d9d72c4 | 2024-06-06 22:47:01 +0000 | [diff] [blame] | 7212 | $(DEXPREOPT_CONFIG_ZIP): PRIVATE_DEXPREOPT_CONFIG_ZIP_PARAMS := |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 7213 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 7214 | ifneq (,$(DEX_PREOPT_CONFIG_FOR_MAKE)) |
Spandan Das | d9d72c4 | 2024-06-06 22:47:01 +0000 | [diff] [blame] | 7215 | $(DEXPREOPT_CONFIG_ZIP): PRIVATE_DEXPREOPT_CONFIG_ZIP_PARAMS += -e $(notdir $(DEX_PREOPT_CONFIG_FOR_MAKE)) -f $(DEX_PREOPT_CONFIG_FOR_MAKE) |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 7216 | endif |
| 7217 | ifneq (,$(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE)) |
Spandan Das | d9d72c4 | 2024-06-06 22:47:01 +0000 | [diff] [blame] | 7218 | $(DEXPREOPT_CONFIG_ZIP): PRIVATE_DEXPREOPT_CONFIG_ZIP_PARAMS += -e $(notdir $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE)) -f $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 7219 | endif |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 7220 | endif #!TARGET_BUILD_UNBUNDLED |
Spandan Das | d9d72c4 | 2024-06-06 22:47:01 +0000 | [diff] [blame] | 7221 | |
| 7222 | $(DEXPREOPT_CONFIG_ZIP): $(SOONG_ZIP) |
| 7223 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/dexpreopt_config |
| 7224 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/dexpreopt_config -D $(PRODUCT_OUT)/dexpreopt_config $(PRIVATE_DEXPREOPT_CONFIG_ZIP_PARAMS) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 7225 | |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 7226 | .PHONY: dexpreopt_config_zip |
| 7227 | dexpreopt_config_zip: $(DEXPREOPT_CONFIG_ZIP) |
| 7228 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7229 | $(call declare-1p-target,$(DEXPREOPT_CONFIG_ZIP),) |
| 7230 | |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 7231 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7232 | # A zip of the symbols directory. Keep the full paths to make it |
| 7233 | # more obvious where these files came from. |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 7234 | # Also produces a textproto containing mappings from elf IDs to symbols |
| 7235 | # filename, which will allow finding the appropriate symbols to deobfuscate |
| 7236 | # a stack trace frame. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7237 | # |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 7238 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7239 | name := $(TARGET_PRODUCT) |
| 7240 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 7241 | name := $(name)_debug |
| 7242 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7243 | |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 7244 | # The path to the zip file containing binaries with symbols. |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7245 | SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name)-symbols.zip |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 7246 | # The path to a file containing mappings from elf IDs to filenames. |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7247 | SYMBOLS_MAPPING := $(PRODUCT_OUT)/$(name)-symbols-mapping.textproto |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 7248 | .KATI_READONLY := SYMBOLS_ZIP SYMBOLS_MAPPING |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 7249 | # 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] | 7250 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 7251 | $(SYMBOLS_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Ying Wang | da3b972 | 2014-10-24 11:36:59 -0700 | [diff] [blame] | 7252 | endif |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 7253 | $(SYMBOLS_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,symbols)/filelist |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 7254 | $(SYMBOLS_ZIP): PRIVATE_MAPPING_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,elf_symbol_mapping) |
| 7255 | $(SYMBOLS_ZIP): $(SOONG_ZIP) $(SYMBOLS_MAP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7256 | @echo "Package symbols: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 7257 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 7258 | $(hide) mkdir -p $(TARGET_OUT_UNSTRIPPED) $(dir $(PRIVATE_LIST_FILE)) $(PRIVATE_MAPPING_PACKAGING_DIR) |
| 7259 | # 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] | 7260 | $(hide) find -L $(TARGET_OUT_UNSTRIPPED) -type f | sort >$(PRIVATE_LIST_FILE) |
Colin Cross | 8d34244 | 2019-05-07 11:47:13 -0700 | [diff] [blame] | 7261 | $(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] | 7262 | # Find all of the files in the symbols mapping directory and merge them into the symbols mapping textproto. |
| 7263 | $(hide) find -L $(PRIVATE_MAPPING_PACKAGING_DIR) -type f | sort >$(PRIVATE_LIST_FILE) |
| 7264 | $(hide) $(SYMBOLS_MAP) -merge $(SYMBOLS_MAPPING) -ignore_missing_files @$(PRIVATE_LIST_FILE) |
| 7265 | $(SYMBOLS_ZIP): .KATI_IMPLICIT_OUTPUTS := $(SYMBOLS_MAPPING) |
| 7266 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7267 | $(call declare-1p-container,$(SYMBOLS_ZIP),) |
| 7268 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 7269 | $(call declare-container-license-deps,$(SYMBOLS_ZIP),$(INTERNAL_ALLIMAGES_FILES) $(updater_dep),$(PRODUCT_OUT)/:/) |
| 7270 | endif |
| 7271 | |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 7272 | # ----------------------------------------------------------------- |
| 7273 | # A zip of the coverage directory. |
| 7274 | # |
Oliver Nguyen | e91ab23 | 2019-04-30 15:14:44 -0700 | [diff] [blame] | 7275 | name := gcov-report-files-all |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 7276 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 7277 | name := $(name)_debug |
| 7278 | endif |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 7279 | COVERAGE_ZIP := $(PRODUCT_OUT)/$(name).zip |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 7280 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 7281 | $(COVERAGE_ZIP): $(INTERNAL_ALLIMAGES_FILES) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 7282 | endif |
| 7283 | $(COVERAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,coverage)/filelist |
| 7284 | $(COVERAGE_ZIP): $(SOONG_ZIP) |
| 7285 | @echo "Package coverage: $@" |
| 7286 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 7287 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_COVERAGE) $(dir $(PRIVATE_LIST_FILE)) |
| 7288 | $(hide) find $(TARGET_OUT_COVERAGE) | sort >$(PRIVATE_LIST_FILE) |
| 7289 | $(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] | 7290 | |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 7291 | $(call declare-1p-container,$(COVERAGE_ZIP),) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7292 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 7293 | $(call declare-container-license-deps,$(COVERAGE_ZIP),$(INTERNAL_ALLIMAGE_FILES),$(PRODUCT_OUT)/:/) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7294 | endif |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 7295 | |
| 7296 | SYSTEM_NOTICE_DEPS += $(COVERAGE_ZIP) |
| 7297 | |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 7298 | #------------------------------------------------------------------ |
| 7299 | # Export the LLVM profile data tool and dependencies for Clang coverage processing |
| 7300 | # |
| 7301 | ifeq (true,$(CLANG_COVERAGE)) |
| 7302 | 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] | 7303 | 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] | 7304 | 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] | 7305 | # Use llvm-profdata.zip for backwards compatibility with tradefed code. |
| 7306 | LLVM_COVERAGE_TOOLS_ZIP := $(PRODUCT_OUT)/llvm-profdata.zip |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 7307 | |
Pirama Arumuga Nainar | 4e3d633 | 2022-03-08 22:28:33 -0800 | [diff] [blame] | 7308 | $(LLVM_COVERAGE_TOOLS_ZIP): $(SOONG_ZIP) |
| 7309 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION) -f $(LLVM_PROFDATA) -f $(LIBCXX) -f $(LLVM_COV) |
| 7310 | |
| 7311 | $(call dist-for-goals,droidcore-unbundled apps_only,$(LLVM_COVERAGE_TOOLS_ZIP)) |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 7312 | endif |
| 7313 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7314 | # ----------------------------------------------------------------- |
| 7315 | # A zip of the Android Apps. Not keeping full path so that we don't |
| 7316 | # include product names when distributing |
| 7317 | # |
| 7318 | name := $(TARGET_PRODUCT) |
| 7319 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 7320 | name := $(name)_debug |
| 7321 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7322 | name := $(name)-apps |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7323 | |
| 7324 | APPS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 7325 | $(APPS_ZIP): $(FULL_SYSTEMIMAGE_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7326 | @echo "Package apps: $@" |
| 7327 | $(hide) rm -rf $@ |
| 7328 | $(hide) mkdir -p $(dir $@) |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 7329 | $(hide) apps_to_zip=`find $(TARGET_OUT_APPS) $(TARGET_OUT_APPS_PRIVILEGED) -mindepth 2 -maxdepth 3 -name "*.apk"`; \ |
| 7330 | if [ -z "$$apps_to_zip" ]; then \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7331 | echo "No apps to zip up. Generating empty apps archive." ; \ |
| 7332 | a=$$(mktemp /tmp/XXXXXXX) && touch $$a && zip $@ $$a && zip -d $@ $$a; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 7333 | else \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7334 | zip -qjX $@ $$apps_to_zip; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 7335 | fi |
Guang Zhu | 0198d6e | 2010-04-23 11:54:37 -0700 | [diff] [blame] | 7336 | |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 7337 | ifeq (true,$(EMMA_INSTRUMENT)) |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 7338 | #------------------------------------------------------------------ |
| 7339 | # An archive of classes for use in generating code-coverage reports |
| 7340 | # These are the uninstrumented versions of any classes that were |
| 7341 | # to be instrumented. |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 7342 | # Any dependencies are set up later in build/make/core/main.mk. |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 7343 | |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 7344 | JACOCO_REPORT_CLASSES_ALL := $(PRODUCT_OUT)/jacoco-report-classes-all.jar |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 7345 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco) |
| 7346 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_HOST_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco,HOST) |
| 7347 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_PROGUARD_USAGE_DIR := $(call intermediates-dir-for,PACKAGING,proguard_usage) |
| 7348 | $(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] | 7349 | $(JACOCO_REPORT_CLASSES_ALL) : |
| 7350 | @echo "Collecting uninstrumented classes" |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 7351 | mkdir -p $(PRIVATE_TARGET_JACOCO_DIR) $(PRIVATE_HOST_JACOCO_DIR) $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) $(PRIVATE_HOST_PROGUARD_USAGE_DIR) |
| 7352 | $(SOONG_ZIP) -o $@ -L 0 \ |
| 7353 | -C $(PRIVATE_TARGET_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_JACOCO_DIR) \ |
| 7354 | -C $(PRIVATE_HOST_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_HOST_JACOCO_DIR) \ |
| 7355 | -C $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) \ |
| 7356 | -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] | 7357 | |
Jiyong Park | 3c87560 | 2021-01-21 12:46:56 +0900 | [diff] [blame] | 7358 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 7359 | $(JACOCO_REPORT_CLASSES_ALL): $(INTERNAL_ALLIMAGES_FILES) |
| 7360 | endif |
Yu Liu | affd008 | 2023-08-11 12:59:45 -0700 | [diff] [blame] | 7361 | |
| 7362 | # This is not ideal, but it is difficult to correctly figure out the actual jacoco report |
| 7363 | # jars we need to add here as dependencies, so we add the device-tests as a dependency when |
| 7364 | # the env variable is set and this should guarantee thaat all the jacoco report jars are ready |
| 7365 | # when we package the final report jar here. |
| 7366 | ifeq ($(JACOCO_PACKAGING_INCLUDE_DEVICE_TESTS),true) |
| 7367 | $(JACOCO_REPORT_CLASSES_ALL): $(COMPATIBILITY.device-tests.FILES) |
| 7368 | endif |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 7369 | endif # EMMA_INSTRUMENT=true |
| 7370 | |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 7371 | |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 7372 | #------------------------------------------------------------------ |
| 7373 | # A zip of Proguard obfuscation dictionary files. |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 7374 | # Also produces a textproto containing mappings from the hashes of the |
| 7375 | # dictionary contents (which are also stored in the dex files on the |
| 7376 | # devices) to the filename of the proguard dictionary, which will allow |
| 7377 | # finding the appropriate dictionary to deobfuscate a stack trace frame. |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 7378 | # |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 7379 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 7380 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Cole Faust | b35231e | 2023-08-30 15:57:16 -0700 | [diff] [blame] | 7381 | _proguard_dict_zip_modules := $(call product-installed-modules,$(INTERNAL_PRODUCT)) |
| 7382 | else |
| 7383 | _proguard_dict_zip_modules := $(unbundled_build_modules) |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 7384 | endif |
Cole Faust | b35231e | 2023-08-30 15:57:16 -0700 | [diff] [blame] | 7385 | |
| 7386 | # The path to the zip file containing proguard dictionaries. |
| 7387 | PROGUARD_DICT_ZIP :=$= $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict.zip |
| 7388 | $(PROGUARD_DICT_ZIP): PRIVATE_SOONG_ZIP_ARGUMENTS := $(foreach m,$(_proguard_dict_zip_modules),$(ALL_MODULES.$(m).PROGUARD_DICTIONARY_SOONG_ZIP_ARGUMENTS)) |
| 7389 | $(PROGUARD_DICT_ZIP): $(SOONG_ZIP) $(foreach m,$(_proguard_dict_zip_modules),$(ALL_MODULES.$(m).PROGUARD_DICTIONARY_FILES)) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 7390 | @echo "Packaging Proguard obfuscation dictionary files." |
Cole Faust | b35231e | 2023-08-30 15:57:16 -0700 | [diff] [blame] | 7391 | # Zip all of the files in PROGUARD_DICTIONARY_FILES. |
| 7392 | echo -n > $@.tmparglist |
| 7393 | $(foreach arg,$(PRIVATE_SOONG_ZIP_ARGUMENTS),printf "%s\n" "$(arg)" >> $@.tmparglist$(newline)) |
| 7394 | $(SOONG_ZIP) -d -o $@ @$@.tmparglist |
| 7395 | rm -f $@.tmparglist |
| 7396 | |
| 7397 | # The path to the zip file containing mappings from dictionary hashes to filenames. |
| 7398 | PROGUARD_DICT_MAPPING :=$= $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict-mapping.textproto |
| 7399 | _proguard_dict_mapping_files := $(foreach m,$(_proguard_dict_zip_modules),$(ALL_MODULES.$(m).PROGUARD_DICTIONARY_MAPPING)) |
| 7400 | $(PROGUARD_DICT_MAPPING): PRIVATE_MAPPING_FILES := $(_proguard_dict_mapping_files) |
| 7401 | $(PROGUARD_DICT_MAPPING): $(SYMBOLS_MAP) $(_proguard_dict_mapping_files) |
| 7402 | @echo "Packaging Proguard obfuscation dictionary mapping files." |
| 7403 | # Merge all the mapping files together |
| 7404 | echo -n > $@.tmparglist |
| 7405 | $(foreach mf,$(PRIVATE_MAPPING_FILES),echo "$(mf)" >> $@.tmparglist$(newline)) |
| 7406 | $(SYMBOLS_MAP) -merge $(PROGUARD_DICT_MAPPING) @$@.tmparglist |
| 7407 | rm -f $@.tmparglist |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 7408 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7409 | $(call declare-1p-container,$(PROGUARD_DICT_ZIP),) |
| 7410 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 7411 | $(call declare-container-license-deps,$(PROGUARD_DICT_ZIP),$(INTERNAL_ALLIMAGES_FILES) $(updater_dep),$(PRODUCT_OUT)/:/) |
| 7412 | endif |
| 7413 | |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 7414 | #------------------------------------------------------------------ |
| 7415 | # A zip of Proguard usage files. |
| 7416 | # |
Cole Faust | b35231e | 2023-08-30 15:57:16 -0700 | [diff] [blame] | 7417 | PROGUARD_USAGE_ZIP :=$= $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-usage.zip |
| 7418 | _proguard_usage_zips := $(foreach m,$(_proguard_dict_zip_modules),$(ALL_MODULES.$(m).PROGUARD_USAGE_ZIP)) |
| 7419 | $(PROGUARD_USAGE_ZIP): PRIVATE_ZIPS := $(_proguard_usage_zips) |
| 7420 | $(PROGUARD_USAGE_ZIP): $(MERGE_ZIPS) $(_proguard_usage_zips) |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 7421 | @echo "Packaging Proguard usage files." |
Cole Faust | b35231e | 2023-08-30 15:57:16 -0700 | [diff] [blame] | 7422 | echo -n > $@.tmparglist |
| 7423 | $(foreach z,$(PRIVATE_ZIPS),echo "$(z)" >> $@.tmparglist$(newline)) |
| 7424 | $(MERGE_ZIPS) $@ @$@.tmparglist |
| 7425 | rm -rf $@.tmparglist |
| 7426 | |
| 7427 | _proguard_dict_mapping_files := |
| 7428 | _proguard_usage_zips := |
| 7429 | _proguard_dict_zip_modules := |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 7430 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7431 | $(call declare-1p-container,$(PROGUARD_USAGE_ZIP),) |
| 7432 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 7433 | $(call declare-container-license-deps,$(PROGUARD_USAGE_ZIP),$(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 7434 | $(INSTALLED_RAMDISK_TARGET) \ |
| 7435 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 7436 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
| 7437 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 7438 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 7439 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 7440 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 7441 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 7442 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
| 7443 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
| 7444 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
| 7445 | $(updater_dep),$(PROGUARD_USAGE_ZIP):/) |
| 7446 | endif |
| 7447 | |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 7448 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 7449 | |
| 7450 | # Dump variables used by build_super_image.py (for building super.img and super_empty.img). |
| 7451 | # $(1): output file |
| 7452 | define dump-super-image-info |
| 7453 | $(call dump-dynamic-partitions-info,$(1)) |
| 7454 | $(if $(filter true,$(AB_OTA_UPDATER)), \ |
| 7455 | echo "ab_update=true" >> $(1)) |
| 7456 | endef |
| 7457 | |
| 7458 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
| 7459 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7460 | # ----------------------------------------------------------------- |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7461 | # super partition image (dist) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 7462 | |
| 7463 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 7464 | |
| 7465 | # BOARD_SUPER_PARTITION_SIZE must be defined to build super image. |
| 7466 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 7467 | |
| 7468 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7469 | |
| 7470 | # For real devices and for dist builds, build super image from target files to an intermediate directory. |
| 7471 | INTERNAL_SUPERIMAGE_DIST_TARGET := $(call intermediates-dir-for,PACKAGING,super.img)/super.img |
| 7472 | $(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] | 7473 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): $(LPMAKE) $(BUILT_TARGET_FILES_DIR) $(BUILD_SUPER_IMAGE) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7474 | $(call pretty,"Target super fs image from target files: $@") |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 7475 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 7476 | $(BUILD_SUPER_IMAGE) -v $(extracted_input_target_files) $@ |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 7477 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7478 | # Skip packing it in dist package because it is in update package. |
| 7479 | ifneq (true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7480 | $(call dist-for-goals,dist_files,$(INTERNAL_SUPERIMAGE_DIST_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7481 | endif |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7482 | |
| 7483 | .PHONY: superimage_dist |
| 7484 | superimage_dist: $(INTERNAL_SUPERIMAGE_DIST_TARGET) |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 7485 | |
| 7486 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7487 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 7488 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 7489 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7490 | # ----------------------------------------------------------------- |
| 7491 | # super partition image for development |
| 7492 | |
| 7493 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 7494 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 7495 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
| 7496 | |
| 7497 | # Build super.img by using $(INSTALLED_*IMAGE_TARGET) to $(1) |
| 7498 | # $(1): built image path |
| 7499 | # $(2): misc_info.txt path; its contents should match expectation of build_super_image.py |
| 7500 | define build-superimage-target |
| 7501 | mkdir -p $(dir $(2)) |
| 7502 | rm -rf $(2) |
| 7503 | $(call dump-super-image-info,$(2)) |
| 7504 | $(foreach p,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 7505 | echo "$(p)_image=$(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)" >> $(2);) |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 7506 | $(if $(BUILDING_SYSTEM_OTHER_IMAGE), $(if $(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)), \ |
| 7507 | echo "system_other_image=$(INSTALLED_SYSTEMOTHERIMAGE_TARGET)" >> $(2);)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7508 | mkdir -p $(dir $(1)) |
| 7509 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 7510 | $(BUILD_SUPER_IMAGE) -v $(2) $(1) |
| 7511 | endef |
| 7512 | |
| 7513 | INSTALLED_SUPERIMAGE_TARGET := $(PRODUCT_OUT)/super.img |
| 7514 | INSTALLED_SUPERIMAGE_DEPENDENCIES := $(LPMAKE) $(BUILD_SUPER_IMAGE) \ |
| 7515 | $(foreach p, $(BOARD_SUPER_PARTITION_PARTITION_LIST), $(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)) |
| 7516 | |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 7517 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 7518 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
| 7519 | INSTALLED_SUPERIMAGE_DEPENDENCIES += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
| 7520 | endif |
| 7521 | endif |
| 7522 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7523 | $(INSTALLED_SUPERIMAGE_TARGET): $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 7524 | $(call pretty,"Target super fs image for debug: $@") |
| 7525 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 7526 | $(call intermediates-dir-for,PACKAGING,superimage_debug)/misc_info.txt) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7527 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 7528 | # For devices that uses super image directly, the superimage target points to the file in $(PRODUCT_OUT). |
| 7529 | .PHONY: superimage |
| 7530 | superimage: $(INSTALLED_SUPERIMAGE_TARGET) |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 7531 | |
Peter Collingbourne | 683c493 | 2022-07-06 15:49:20 -0700 | [diff] [blame] | 7532 | # If BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT is set, super.img is built from images in the |
| 7533 | # $(PRODUCT_OUT) directory, and is built to $(PRODUCT_OUT)/super.img. Also, it will |
| 7534 | # be built for non-dist builds. This is useful for devices that uses super.img directly, e.g. |
| 7535 | # virtual devices. |
| 7536 | ifeq (true,$(BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT)) |
| 7537 | droidcore-unbundled: $(INSTALLED_SUPERIMAGE_TARGET) |
| 7538 | |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 7539 | $(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] | 7540 | endif # BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT |
| 7541 | |
| 7542 | # Build $(PRODUCT_OUT)/super.img without dependencies. |
| 7543 | .PHONY: superimage-nodeps supernod |
| 7544 | superimage-nodeps supernod: intermediates := |
| 7545 | superimage-nodeps supernod: | $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 7546 | $(call pretty,"make $(INSTALLED_SUPERIMAGE_TARGET): ignoring dependencies") |
| 7547 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
| 7548 | $(call intermediates-dir-for,PACKAGING,superimage-nodeps)/misc_info.txt) |
| 7549 | |
| 7550 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
| 7551 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 7552 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
| 7553 | |
| 7554 | # ----------------------------------------------------------------- |
| 7555 | # super empty image |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 7556 | ifdef BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 7557 | |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 7558 | INSTALLED_SUPERIMAGE_EMPTY_TARGET := $(PRODUCT_OUT)/super_empty.img |
| 7559 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): intermediates := $(call intermediates-dir-for,PACKAGING,super_empty) |
| 7560 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): $(LPMAKE) $(BUILD_SUPER_IMAGE) |
| 7561 | $(call pretty,"Target empty super fs image: $@") |
| 7562 | mkdir -p $(intermediates) |
| 7563 | rm -rf $(intermediates)/misc_info.txt |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 7564 | $(call dump-super-image-info,$(intermediates)/misc_info.txt) |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 7565 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 7566 | $(BUILD_SUPER_IMAGE) -v $(intermediates)/misc_info.txt $@ |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 7567 | |
| 7568 | $(call dist-for-goals,dist_files,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 7569 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 7570 | $(call declare-0p-target,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 7571 | |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 7572 | endif # BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 7573 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7574 | |
| 7575 | # ----------------------------------------------------------------- |
| 7576 | # The update package |
| 7577 | |
| 7578 | name := $(TARGET_PRODUCT) |
| 7579 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 7580 | name := $(name)_debug |
| 7581 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7582 | name := $(name)-img |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7583 | |
| 7584 | INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 7585 | |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 7586 | $(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES) |
| 7587 | $(call pretty,"Package: $@") |
| 7588 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
| 7589 | $(IMG_FROM_TARGET_FILES) \ |
| 7590 | --additional IMAGES/VerifiedBootParams.textproto:VerifiedBootParams.textproto \ |
David Iserovich | babdafe | 2023-08-10 17:58:31 +0000 | [diff] [blame] | 7591 | --build_super_image $(BUILD_SUPER_IMAGE) \ |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 7592 | $(BUILT_TARGET_FILES_PACKAGE) $@ |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7593 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 7594 | $(call declare-1p-container,$(INTERNAL_UPDATE_PACKAGE_TARGET),) |
| 7595 | $(call declare-container-license-deps,$(INTERNAL_UPDATE_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES),$(PRODUCT_OUT)/:/) |
| 7596 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7597 | .PHONY: updatepackage |
| 7598 | updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET) |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7599 | $(call dist-for-goals-with-filenametag,updatepackage,$(INTERNAL_UPDATE_PACKAGE_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 7600 | |
| 7601 | |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 7602 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7603 | # dalvik something |
| 7604 | .PHONY: dalvikfiles |
| 7605 | dalvikfiles: $(INTERNAL_DALVIK_MODULES) |
| 7606 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7607 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7608 | MK_QEMU_IMAGE_SH := device/generic/goldfish/tools/mk_qemu_image.sh |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 7609 | MK_COMBINE_QEMU_IMAGE := $(HOST_OUT_EXECUTABLES)/mk_combined_img |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7610 | SGDISK_HOST := $(HOST_OUT_EXECUTABLES)/sgdisk |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 7611 | |
| 7612 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
| 7613 | INSTALLED_QEMU_SYSTEMIMAGE := $(PRODUCT_OUT)/system-qemu.img |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 7614 | INSTALLED_SYSTEM_QEMU_CONFIG := $(PRODUCT_OUT)/system-qemu-config.txt |
| 7615 | $(INSTALLED_SYSTEM_QEMU_CONFIG): $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_VBMETAIMAGE_TARGET) |
| 7616 | @echo "$(PRODUCT_OUT)/vbmeta.img vbmeta 1" > $@ |
| 7617 | @echo "$(INSTALLED_SUPERIMAGE_TARGET) super 2" >> $@ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 7618 | $(INSTALLED_QEMU_SYSTEMIMAGE): $(INSTALLED_VBMETAIMAGE_TARGET) $(MK_COMBINE_QEMU_IMAGE) $(SGDISK_HOST) $(SIMG2IMG) \ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 7619 | $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_SYSTEM_QEMU_CONFIG) |
| 7620 | @echo Create system-qemu.img now |
| 7621 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 7622 | $(MK_COMBINE_QEMU_IMAGE) -i $(INSTALLED_SYSTEM_QEMU_CONFIG) -o $@) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7623 | |
| 7624 | systemimage: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7625 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 7626 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 7627 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7628 | INSTALLED_QEMU_VENDORIMAGE := $(PRODUCT_OUT)/vendor-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 7629 | $(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] | 7630 | @echo Create vendor-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 7631 | (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] | 7632 | |
| 7633 | vendorimage: $(INSTALLED_QEMU_VENDORIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7634 | droidcore-unbundled: $(INSTALLED_QEMU_VENDORIMAGE) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7635 | endif |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 7636 | |
| 7637 | ifdef INSTALLED_RAMDISK_TARGET |
| 7638 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 7639 | ifdef INTERNAL_VENDOR_RAMDISK_TARGET |
| 7640 | INSTALLED_QEMU_RAMDISKIMAGE := $(PRODUCT_OUT)/ramdisk-qemu.img |
| 7641 | $(INSTALLED_QEMU_RAMDISKIMAGE): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_RAMDISK_TARGET) |
| 7642 | @echo Create ramdisk-qemu.img |
| 7643 | (cat $(INSTALLED_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_TARGET) > $(INSTALLED_QEMU_RAMDISKIMAGE)) |
| 7644 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7645 | droidcore-unbundled: $(INSTALLED_QEMU_RAMDISKIMAGE) |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 7646 | endif |
| 7647 | endif |
| 7648 | endif |
| 7649 | |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 7650 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 7651 | INSTALLED_QEMU_PRODUCTIMAGE := $(PRODUCT_OUT)/product-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 7652 | $(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] | 7653 | @echo Create product-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 7654 | (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] | 7655 | |
| 7656 | productimage: $(INSTALLED_QEMU_PRODUCTIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7657 | droidcore-unbundled: $(INSTALLED_QEMU_PRODUCTIMAGE) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 7658 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 7659 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 7660 | INSTALLED_QEMU_SYSTEM_EXTIMAGE := $(PRODUCT_OUT)/system_ext-qemu.img |
| 7661 | $(INSTALLED_QEMU_SYSTEM_EXTIMAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) $(SIMG2IMG) |
| 7662 | @echo Create system_ext-qemu.img |
| 7663 | (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] | 7664 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 7665 | systemextimage: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7666 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 7667 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 7668 | ifdef INSTALLED_ODMIMAGE_TARGET |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 7669 | INSTALLED_QEMU_ODMIMAGE := $(PRODUCT_OUT)/odm-qemu.img |
| 7670 | $(INSTALLED_QEMU_ODMIMAGE): $(INSTALLED_ODMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 7671 | @echo Create odm-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 7672 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODMIMAGE_TARGET)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 7673 | |
| 7674 | odmimage: $(INSTALLED_QEMU_ODMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7675 | droidcore-unbundled: $(INSTALLED_QEMU_ODMIMAGE) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 7676 | endif |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 7677 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 7678 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 7679 | INSTALLED_QEMU_VENDOR_DLKMIMAGE := $(PRODUCT_OUT)/vendor_dlkm-qemu.img |
| 7680 | $(INSTALLED_QEMU_VENDOR_DLKMIMAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 7681 | @echo Create vendor_dlkm-qemu.img |
| 7682 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)) |
| 7683 | |
| 7684 | vendor_dlkmimage: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7685 | droidcore-unbundled: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 7686 | endif |
| 7687 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 7688 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 7689 | INSTALLED_QEMU_ODM_DLKMIMAGE := $(PRODUCT_OUT)/odm_dlkm-qemu.img |
| 7690 | $(INSTALLED_QEMU_ODM_DLKMIMAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 7691 | @echo Create odm_dlkm-qemu.img |
| 7692 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODM_DLKMIMAGE_TARGET)) |
| 7693 | |
| 7694 | odm_dlkmimage: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7695 | droidcore-unbundled: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 7696 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 7697 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 7698 | ifdef INSTALLED_SYSTEM_DLKMIMAGE_TARGET |
| 7699 | INSTALLED_QEMU_SYSTEM_DLKMIMAGE := $(PRODUCT_OUT)/system_dlkm-qemu.img |
| 7700 | $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE): $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 7701 | @echo Create system_dlkm-qemu.img |
| 7702 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET)) |
| 7703 | |
| 7704 | system_dlkmimage: $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE) |
| 7705 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE) |
| 7706 | endif |
| 7707 | |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 7708 | QEMU_VERIFIED_BOOT_PARAMS := $(PRODUCT_OUT)/VerifiedBootParams.textproto |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 7709 | $(QEMU_VERIFIED_BOOT_PARAMS): $(INSTALLED_VBMETAIMAGE_TARGET) $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 7710 | $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(AVBTOOL) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 7711 | @echo Creating $@ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 7712 | (export AVBTOOL=$(AVBTOOL); $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(INSTALLED_VBMETAIMAGE_TARGET) \ |
| 7713 | $(INSTALLED_SYSTEMIMAGE_TARGET) $(QEMU_VERIFIED_BOOT_PARAMS)) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 7714 | |
| 7715 | systemimage: $(QEMU_VERIFIED_BOOT_PARAMS) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 7716 | droidcore-unbundled: $(QEMU_VERIFIED_BOOT_PARAMS) |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 7717 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 7718 | endif |
Herbert Xue | 9852b95 | 2024-06-13 13:16:49 +0800 | [diff] [blame] | 7719 | |
| 7720 | # Preprocess files for emulator and sdk. |
| 7721 | -include development/build/tools/sdk-preprocess-files.mk |
| 7722 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7723 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7724 | # The emulator package |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 7725 | ifeq ($(BUILD_EMULATOR),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7726 | INTERNAL_EMULATOR_PACKAGE_FILES += \ |
| 7727 | $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7728 | $(INSTALLED_RAMDISK_TARGET) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 7729 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 7730 | $(INSTALLED_USERDATAIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7731 | |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7732 | name := $(TARGET_PRODUCT)-emulator |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7733 | |
| 7734 | INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 7735 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 7736 | $(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7737 | @echo "Package: $@" |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 7738 | $(hide) zip -qjX $@ $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7739 | |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 7740 | endif |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 7741 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7742 | |
| 7743 | # ----------------------------------------------------------------- |
| 7744 | # The SDK |
| 7745 | |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 7746 | ifneq ($(filter sdk,$(MAKECMDGOALS)),) |
| 7747 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7748 | # The SDK includes host-specific components, so it belongs under HOST_OUT. |
Ying Wang | d7af176 | 2014-06-02 16:16:53 -0700 | [diff] [blame] | 7749 | sdk_dir := $(HOST_OUT)/sdk/$(TARGET_PRODUCT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7750 | |
| 7751 | # Build a name that looks like: |
| 7752 | # |
| 7753 | # linux-x86 --> android-sdk_12345_linux-x86 |
| 7754 | # darwin-x86 --> android-sdk_12345_mac-x86 |
| 7755 | # windows-x86 --> android-sdk_12345_windows |
| 7756 | # |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 7757 | ifneq ($(HOST_OS),linux) |
| 7758 | $(error Building the monolithic SDK is only supported on Linux) |
| 7759 | endif |
Jeongik Cha | 05210f9 | 2023-04-27 11:05:22 +0900 | [diff] [blame] | 7760 | sdk_name := android-sdk |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 7761 | INTERNAL_SDK_HOST_OS_NAME := linux-$(SDK_HOST_ARCH) |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 7762 | sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7763 | |
| 7764 | sdk_dep_file := $(sdk_dir)/sdk_deps.mk |
| 7765 | |
| 7766 | ATREE_FILES := |
| 7767 | -include $(sdk_dep_file) |
| 7768 | |
| 7769 | # if we don't have a real list, then use "everything" |
| 7770 | ifeq ($(strip $(ATREE_FILES)),) |
| 7771 | ATREE_FILES := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7772 | $(ALL_DOCS) \ |
| 7773 | $(ALL_SDK_FILES) |
| 7774 | endif |
| 7775 | |
| 7776 | atree_dir := development/build |
| 7777 | |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 7778 | |
Dan Willemsen | 53c98f7 | 2021-10-16 16:49:06 -0700 | [diff] [blame] | 7779 | sdk_atree_files := $(atree_dir)/sdk.exclude.atree |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7780 | |
David 'Digit' Turner | 77ec16a | 2011-06-23 12:49:02 +0200 | [diff] [blame] | 7781 | # development/build/sdk-android-<abi>.atree is used to differentiate |
| 7782 | # between architecture models (e.g. ARMv5TE versus ARMv7) when copying |
| 7783 | # files like the kernel image. We use TARGET_CPU_ABI because we don't |
| 7784 | # have a better way to distinguish between CPU models. |
| 7785 | ifneq (,$(strip $(wildcard $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree))) |
| 7786 | sdk_atree_files += $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree |
| 7787 | endif |
| 7788 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 7789 | ifneq ($(PRODUCT_SDK_ATREE_FILES),) |
| 7790 | sdk_atree_files += $(PRODUCT_SDK_ATREE_FILES) |
Griff Hazen | 433febb | 2014-02-28 08:45:59 -0800 | [diff] [blame] | 7791 | else |
| 7792 | sdk_atree_files += $(atree_dir)/sdk.atree |
| 7793 | endif |
| 7794 | |
Nelson Li | 2b27ed0 | 2024-03-07 07:43:35 +0000 | [diff] [blame] | 7795 | SDK_METADATA_DIR :=$= $(call intermediates-dir-for,PACKAGING,framework-doc-stubs-metadata,,COMMON) |
| 7796 | SDK_METADATA_FILES :=$= $(addprefix $(SDK_METADATA_DIR)/,\ |
| 7797 | activity_actions.txt \ |
| 7798 | broadcast_actions.txt \ |
| 7799 | categories.txt \ |
| 7800 | features.txt \ |
| 7801 | service_actions.txt \ |
| 7802 | widgets.txt) |
| 7803 | SDK_METADATA :=$= $(firstword $(SDK_METADATA_FILES)) |
| 7804 | $(SDK_METADATA): .KATI_IMPLICIT_OUTPUTS := $(filter-out $(SDK_METADATA),$(SDK_METADATA_FILES)) |
| 7805 | $(SDK_METADATA): $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/framework-doc-stubs-metadata.zip |
| 7806 | rm -rf $(SDK_METADATA_DIR) |
| 7807 | mkdir -p $(SDK_METADATA_DIR) |
| 7808 | unzip -DDqo $< -d $(SDK_METADATA_DIR) |
| 7809 | |
| 7810 | .PHONY: framework-doc-stubs |
| 7811 | framework-doc-stubs: $(SDK_METADATA) |
| 7812 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7813 | deps := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7814 | $(OUT_DOCS)/offline-sdk-timestamp \ |
Jerome Gaillard | a0171af | 2019-10-10 19:35:08 +0100 | [diff] [blame] | 7815 | $(SDK_METADATA_FILES) \ |
Anton Hansson | 55a8f02 | 2022-05-12 08:45:29 +0000 | [diff] [blame] | 7816 | $(INSTALLED_SDK_BUILD_PROP_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7817 | $(ATREE_FILES) \ |
Ying Wang | 0c0a4ce | 2014-02-18 14:29:59 -0800 | [diff] [blame] | 7818 | $(sdk_atree_files) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7819 | $(HOST_OUT_EXECUTABLES)/atree \ |
Jerome Gaillard | cf713d4 | 2019-10-23 11:43:26 +0100 | [diff] [blame] | 7820 | $(HOST_OUT_EXECUTABLES)/line_endings |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7821 | |
Anton Hansson | 874dbe7 | 2022-10-26 15:00:55 +0000 | [diff] [blame] | 7822 | # The name of the subdir within the platforms dir of the sdk. One of: |
| 7823 | # - android-<SDK_INT> (stable base dessert SDKs) |
| 7824 | # - android-<CODENAME> (stable extension SDKs) |
| 7825 | # - android-<SDK_INT>-ext<EXT_INT> (codename SDKs) |
| 7826 | sdk_platform_dir_name := $(strip \ |
| 7827 | $(if $(filter REL,$(PLATFORM_VERSION_CODENAME)), \ |
| 7828 | $(if $(filter $(PLATFORM_SDK_EXTENSION_VERSION),$(PLATFORM_BASE_SDK_EXTENSION_VERSION)), \ |
| 7829 | android-$(PLATFORM_SDK_VERSION), \ |
| 7830 | android-$(PLATFORM_SDK_VERSION)-ext$(PLATFORM_SDK_EXTENSION_VERSION) \ |
| 7831 | ), \ |
| 7832 | android-$(PLATFORM_VERSION_CODENAME) \ |
| 7833 | ) \ |
| 7834 | ) |
| 7835 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7836 | INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip |
| 7837 | $(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name) |
| 7838 | $(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name) |
| 7839 | $(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file) |
| 7840 | $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files) |
Anton Hansson | 874dbe7 | 2022-10-26 15:00:55 +0000 | [diff] [blame] | 7841 | $(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] | 7842 | # Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built. |
| 7843 | # |
| 7844 | #SDK_GNU_ERROR := true |
| 7845 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 7846 | $(INTERNAL_SDK_TARGET): $(deps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7847 | @echo "Package SDK: $@" |
| 7848 | $(hide) rm -rf $(PRIVATE_DIR) $@ |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 7849 | $(hide) for f in $(strip $(target_gnu_MODULES)); do \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7850 | if [ -f $$f ]; then \ |
| 7851 | echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \ |
| 7852 | including GNU target $$f >&2; \ |
| 7853 | FAIL=$(SDK_GNU_ERROR); \ |
| 7854 | fi; \ |
| 7855 | done; \ |
| 7856 | if [ $$FAIL ]; then exit 1; fi |
| 7857 | $(hide) ( \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7858 | ATREE_STRIP="$(HOST_STRIP) -x" \ |
| 7859 | $(HOST_OUT_EXECUTABLES)/atree \ |
| 7860 | $(addprefix -f ,$(PRIVATE_INPUT_FILES)) \ |
| 7861 | -m $(PRIVATE_DEP_FILE) \ |
| 7862 | -I . \ |
| 7863 | -I $(PRODUCT_OUT) \ |
| 7864 | -I $(HOST_OUT) \ |
| 7865 | -I $(TARGET_COMMON_OUT_ROOT) \ |
Anton Hansson | 874dbe7 | 2022-10-26 15:00:55 +0000 | [diff] [blame] | 7866 | -v "PLATFORM_NAME=$(PRIVATE_PLATFORM_NAME)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7867 | -v "OUT_DIR=$(OUT_DIR)" \ |
| 7868 | -v "HOST_OUT=$(HOST_OUT)" \ |
| 7869 | -v "TARGET_ARCH=$(TARGET_ARCH)" \ |
| 7870 | -v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \ |
| 7871 | -v "DLL_EXTENSION=$(HOST_SHLIB_SUFFIX)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7872 | -o $(PRIVATE_DIR) && \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7873 | HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \ |
| 7874 | development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \ |
| 7875 | chmod -R ug+rwX $(PRIVATE_DIR) && \ |
| 7876 | cd $(dir $@) && zip -rqX $(notdir $@) $(PRIVATE_NAME) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7877 | ) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 ) |
| 7878 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 7879 | MAIN_SDK_DIR := $(sdk_dir) |
| 7880 | MAIN_SDK_ZIP := $(INTERNAL_SDK_TARGET) |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 7881 | |
| 7882 | endif # sdk in MAKECMDGOALS |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 7883 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7884 | # ----------------------------------------------------------------- |
| 7885 | # Findbugs |
| 7886 | INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml |
| 7887 | INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html |
| 7888 | $(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES) |
| 7889 | @echo UnionBugs: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 7890 | $(hide) $(FINDBUGS_DIR)/unionBugs $(ALL_FINDBUGS_FILES) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7891 | > $@ |
| 7892 | $(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET) |
| 7893 | @echo ConvertXmlToText: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 7894 | $(hide) $(FINDBUGS_DIR)/convertXmlToText -html:fancy.xsl \ |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 7895 | $(INTERNAL_FINDBUGS_XML_TARGET) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7896 | |
| 7897 | # ----------------------------------------------------------------- |
| 7898 | # Findbugs |
| 7899 | |
| 7900 | # ----------------------------------------------------------------- |
| 7901 | # These are some additional build tasks that need to be run. |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 7902 | ifneq ($(dont_bother),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7903 | include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk)) |
Claes Elgemark | e22ad67 | 2010-11-12 15:46:00 +0100 | [diff] [blame] | 7904 | -include $(sort $(wildcard vendor/*/build/tasks/*.mk)) |
Andrew Boie | f34a9ba | 2012-04-16 10:03:16 -0700 | [diff] [blame] | 7905 | -include $(sort $(wildcard device/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 7906 | -include $(sort $(wildcard product/*/build/tasks/*.mk)) |
Ying Wang | 66c78e4 | 2014-09-05 17:47:34 -0700 | [diff] [blame] | 7907 | # Also the project-specific tasks |
| 7908 | -include $(sort $(wildcard vendor/*/*/build/tasks/*.mk)) |
| 7909 | -include $(sort $(wildcard device/*/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 7910 | -include $(sort $(wildcard product/*/*/build/tasks/*.mk)) |
Guang Zhu | 8322be7 | 2016-06-20 22:03:24 -0700 | [diff] [blame] | 7911 | # Also add test specifc tasks |
| 7912 | include $(sort $(wildcard platform_testing/build/tasks/*.mk)) |
Keun Soo Yim | 199a710 | 2016-08-31 09:20:51 -0700 | [diff] [blame] | 7913 | include $(sort $(wildcard test/vts/tools/build/tasks/*.mk)) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 7914 | endif |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 7915 | |
Ying Wang | 67132ba | 2015-10-28 16:42:39 -0700 | [diff] [blame] | 7916 | include $(BUILD_SYSTEM)/product-graph.mk |
| 7917 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 7918 | # ----------------------------------------------------------------- |
| 7919 | # Create SDK repository packages. Must be done after tasks/* since |
| 7920 | # we need the addon rules defined. |
| 7921 | ifneq ($(sdk_repo_goal),) |
| 7922 | include $(TOPDIR)development/build/tools/sdk_repo.mk |
| 7923 | endif |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 7924 | |
| 7925 | # ----------------------------------------------------------------- |
Mitch Phillips | 3adbcb3 | 2019-10-17 19:24:46 -0700 | [diff] [blame] | 7926 | # Soong generates the list of all shared libraries that are depended on by fuzz |
| 7927 | # targets. It saves this list as a source:destination pair to |
| 7928 | # FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS, where the source is the path to the |
| 7929 | # build of the unstripped shared library, and the destination is the |
| 7930 | # /data/fuzz/$ARCH/lib (for device) or /fuzz/$ARCH/lib (for host) directory |
| 7931 | # where fuzz target shared libraries are to be "reinstalled". The |
| 7932 | # copy-many-files below generates the rules to copy the unstripped shared |
| 7933 | # libraries to the device or host "reinstallation" directory. These rules are |
| 7934 | # depended on by each module in soong_cc_prebuilt.mk, where the module will have |
| 7935 | # a dependency on each shared library that it needs to be "reinstalled". |
| 7936 | FUZZ_SHARED_DEPS := $(call copy-many-files,$(strip $(FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS))) |
| 7937 | |
| 7938 | # ----------------------------------------------------------------- |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 7939 | # 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] | 7940 | # Note: The packages are created in Soong, and in a perfect world, |
| 7941 | # we'd be able to create the phony rule there. But, if we want to |
| 7942 | # have dist goals for the fuzz target, we need to have the PHONY |
| 7943 | # target defined in make. MakeVarsContext.DistForGoal doesn't take |
| 7944 | # into account that a PHONY rule create by Soong won't be available |
| 7945 | # during make, and such will fail with `writing to readonly |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 7946 | # directory`, because kati will see 'haiku' as being a file, not a |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 7947 | # phony target. |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 7948 | .PHONY: haiku |
| 7949 | haiku: $(SOONG_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_FUZZ_TARGETS) |
| 7950 | $(call dist-for-goals,haiku,$(SOONG_FUZZ_PACKAGING_ARCH_MODULES)) |
Mark | f7ffdac | 2022-10-04 20:09:44 +0000 | [diff] [blame] | 7951 | $(call dist-for-goals,haiku,$(PRODUCT_OUT)/module-info.json) |
Cory Barker | 4b01122 | 2023-02-03 00:19:34 +0000 | [diff] [blame] | 7952 | .PHONY: haiku-java |
| 7953 | haiku-java: $(SOONG_JAVA_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_JAVA_FUZZ_TARGETS) |
| 7954 | $(call dist-for-goals,haiku-java,$(SOONG_JAVA_FUZZ_PACKAGING_ARCH_MODULES)) |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 7955 | .PHONY: haiku-rust |
| 7956 | haiku-rust: $(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_RUST_FUZZ_TARGETS) |
| 7957 | $(call dist-for-goals,haiku-rust,$(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES)) |
Mark | f7ffdac | 2022-10-04 20:09:44 +0000 | [diff] [blame] | 7958 | $(call dist-for-goals,haiku-rust,$(PRODUCT_OUT)/module-info.json) |
David Fu | 05d16bc | 2023-07-07 18:18:32 +0000 | [diff] [blame] | 7959 | .PHONY: haiku-presubmit |
| 7960 | haiku-presubmit: $(SOONG_PRESUBMIT_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_PRESUBMIT_FUZZ_TARGETS) |
| 7961 | $(call dist-for-goals,haiku-presubmit,$(SOONG_PRESUBMIT_FUZZ_PACKAGING_ARCH_MODULES)) |
Jerome Gaillard | cf713d4 | 2019-10-23 11:43:26 +0100 | [diff] [blame] | 7962 | |
| 7963 | # ----------------------------------------------------------------- |
Jerome Gaillard | c97c0b4 | 2024-08-01 18:02:22 +0100 | [diff] [blame] | 7964 | # Extract additional data files used in Layoutlib |
Jerome Gaillard | ea9dab4 | 2023-10-25 00:05:12 +0000 | [diff] [blame] | 7965 | include $(BUILD_SYSTEM)/layoutlib_data.mk |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 7966 | |
Alex Klein | 807eb54 | 2024-07-11 10:23:18 -0600 | [diff] [blame] | 7967 | # ----------------------------------------------------------------- |
Jae Hoon Kim | 3a38f1f | 2024-08-02 06:54:41 +0000 | [diff] [blame] | 7968 | # Desktop pack common variables. |
Alex Klein | 807eb54 | 2024-07-11 10:23:18 -0600 | [diff] [blame] | 7969 | PACK_IMAGE_SCRIPT := $(HOST_OUT_EXECUTABLES)/pack_image |
| 7970 | IMAGES := $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 7971 | $(INSTALLED_SUPERIMAGE_TARGET) \ |
| 7972 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
| 7973 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) \ |
| 7974 | $(INSTALLED_VBMETAIMAGE_TARGET) \ |
| 7975 | $(INSTALLED_USERDATAIMAGE_TARGET) |
| 7976 | |
Jae Hoon Kim | 3a38f1f | 2024-08-02 06:54:41 +0000 | [diff] [blame] | 7977 | # ----------------------------------------------------------------- |
| 7978 | # Desktop pack image hook. |
| 7979 | ifneq (,$(strip $(PACK_DESKTOP_FILESYSTEM_IMAGES))) |
| 7980 | PACK_IMAGE_TARGET := $(PRODUCT_OUT)/android-desktop_image.bin |
| 7981 | |
Alex Klein | 807eb54 | 2024-07-11 10:23:18 -0600 | [diff] [blame] | 7982 | $(PACK_IMAGE_TARGET): $(IMAGES) $(PACK_IMAGE_SCRIPT) |
| 7983 | $(PACK_IMAGE_SCRIPT) --out_dir $(PRODUCT_OUT) --noarchive |
| 7984 | |
| 7985 | PACKED_IMAGE_ARCHIVE_TARGET := $(PACK_IMAGE_TARGET).gz |
| 7986 | |
| 7987 | $(PACKED_IMAGE_ARCHIVE_TARGET): $(PACK_IMAGE_TARGET) | $(GZIP) |
| 7988 | $(GZIP) -fk $(PACK_IMAGE_TARGET) |
| 7989 | |
Alex Klein | 54b93ca | 2024-07-24 13:23:16 -0600 | [diff] [blame] | 7990 | $(call dist-for-goals,dist_files,$(PACKED_IMAGE_ARCHIVE_TARGET)) |
| 7991 | |
Alex Klein | af49729 | 2024-08-07 09:56:52 -0600 | [diff] [blame] | 7992 | .PHONY: pack-image |
| 7993 | pack-image: $(PACK_IMAGE_TARGET) |
| 7994 | |
Alex Klein | 807eb54 | 2024-07-11 10:23:18 -0600 | [diff] [blame] | 7995 | endif # PACK_DESKTOP_FILESYSTEM_IMAGES |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 7996 | |
| 7997 | # ----------------------------------------------------------------- |
Jae Hoon Kim | 3a38f1f | 2024-08-02 06:54:41 +0000 | [diff] [blame] | 7998 | # Desktop pack recovery image hook. |
Stephen Boyd | 5b55f92 | 2024-10-21 10:46:09 -0700 | [diff] [blame] | 7999 | ifeq ($(BOARD_USES_DESKTOP_RECOVERY_IMAGE),true) |
Jae Hoon Kim | 3a38f1f | 2024-08-02 06:54:41 +0000 | [diff] [blame] | 8000 | PACK_RECOVERY_IMAGE_TARGET := $(PRODUCT_OUT)/android-desktop_recovery_image.bin |
Jae Hoon Kim | d2badf9 | 2024-09-30 23:29:52 +0000 | [diff] [blame] | 8001 | PACK_RECOVERY_IMAGE_ARGS := --noarchive --recovery |
| 8002 | |
| 8003 | ifneq (,$(strip $(PACK_RECOVERY_IMAGE_EXPERIMENTAL))) |
| 8004 | PACK_RECOVERY_IMAGE_ARGS += --experimental |
| 8005 | endif # PACK_RECOVERY_IMAGE_EXPERIMENTAL |
Jae Hoon Kim | 3a38f1f | 2024-08-02 06:54:41 +0000 | [diff] [blame] | 8006 | |
| 8007 | $(PACK_RECOVERY_IMAGE_TARGET): $(IMAGES) $(PACK_IMAGE_SCRIPT) |
Jae Hoon Kim | d2badf9 | 2024-09-30 23:29:52 +0000 | [diff] [blame] | 8008 | $(PACK_IMAGE_SCRIPT) --out_dir $(PRODUCT_OUT) $(PACK_RECOVERY_IMAGE_ARGS) |
Jae Hoon Kim | 3a38f1f | 2024-08-02 06:54:41 +0000 | [diff] [blame] | 8009 | |
| 8010 | PACKED_RECOVERY_IMAGE_ARCHIVE_TARGET := $(PACK_RECOVERY_IMAGE_TARGET).gz |
| 8011 | |
| 8012 | $(PACKED_RECOVERY_IMAGE_ARCHIVE_TARGET): $(PACK_RECOVERY_IMAGE_TARGET) | $(GZIP) |
| 8013 | $(GZIP) -fk $(PACK_RECOVERY_IMAGE_TARGET) |
| 8014 | |
Jae Hoon Kim | 3a38f1f | 2024-08-02 06:54:41 +0000 | [diff] [blame] | 8015 | $(call dist-for-goals,dist_files,$(PACKED_RECOVERY_IMAGE_ARCHIVE_TARGET)) |
| 8016 | |
Alex Klein | af49729 | 2024-08-07 09:56:52 -0600 | [diff] [blame] | 8017 | .PHONY: pack-recovery-image |
| 8018 | pack-recovery-image: $(PACK_RECOVERY_IMAGE_TARGET) |
| 8019 | |
Stephen Boyd | 5b55f92 | 2024-10-21 10:46:09 -0700 | [diff] [blame] | 8020 | endif # BOARD_USES_DESKTOP_RECOVERY_IMAGE |
Jae Hoon Kim | 3a38f1f | 2024-08-02 06:54:41 +0000 | [diff] [blame] | 8021 | |
| 8022 | # ----------------------------------------------------------------- |
Jae Hoon Kim | c6a9897 | 2024-08-27 00:58:09 +0000 | [diff] [blame] | 8023 | # Desktop pack update image hook. |
Stephen Boyd | 5b55f92 | 2024-10-21 10:46:09 -0700 | [diff] [blame] | 8024 | ifeq ($(BOARD_USES_DESKTOP_UPDATE_IMAGE),true) |
Jae Hoon Kim | c6a9897 | 2024-08-27 00:58:09 +0000 | [diff] [blame] | 8025 | PACK_UPDATE_IMAGE_TARGET := $(PRODUCT_OUT)/android-desktop_update_image.bin |
Jae Hoon Kim | 715bc9a | 2024-10-08 00:43:36 +0000 | [diff] [blame] | 8026 | PACK_UPDATE_IMAGE_ARGS := --noarchive --update |
| 8027 | |
| 8028 | ifneq (,$(strip $(PACK_UPDATE_IMAGE_EXPERIMENTAL))) |
| 8029 | PACK_UPDATE_IMAGE_ARGS += --experimental |
| 8030 | endif # PACK_UPDATE_IMAGE_EXPERIMENTAL |
Jae Hoon Kim | c6a9897 | 2024-08-27 00:58:09 +0000 | [diff] [blame] | 8031 | |
| 8032 | $(PACK_UPDATE_IMAGE_TARGET): $(IMAGES) $(PACK_IMAGE_SCRIPT) |
Jae Hoon Kim | 715bc9a | 2024-10-08 00:43:36 +0000 | [diff] [blame] | 8033 | $(PACK_IMAGE_SCRIPT) --out_dir $(PRODUCT_OUT) $(PACK_UPDATE_IMAGE_ARGS) |
Jae Hoon Kim | c6a9897 | 2024-08-27 00:58:09 +0000 | [diff] [blame] | 8034 | |
| 8035 | PACKED_UPDATE_IMAGE_ARCHIVE_TARGET := $(PACK_UPDATE_IMAGE_TARGET).gz |
| 8036 | |
| 8037 | $(PACKED_UPDATE_IMAGE_ARCHIVE_TARGET): $(PACK_UPDATE_IMAGE_TARGET) | $(GZIP) |
| 8038 | $(GZIP) -fk $(PACK_UPDATE_IMAGE_TARGET) |
| 8039 | |
| 8040 | $(call dist-for-goals,dist_files,$(PACKED_UPDATE_IMAGE_ARCHIVE_TARGET)) |
| 8041 | |
| 8042 | .PHONY: pack-update-image |
| 8043 | pack-update-image: $(PACK_UPDATE_IMAGE_TARGET) |
| 8044 | |
Stephen Boyd | 5b55f92 | 2024-10-21 10:46:09 -0700 | [diff] [blame] | 8045 | endif # BOARD_USES_DESKTOP_UPDATE_IMAGE |
Jae Hoon Kim | c6a9897 | 2024-08-27 00:58:09 +0000 | [diff] [blame] | 8046 | |
Alexis Savery | 7fd4b71 | 2024-09-19 16:08:38 -0700 | [diff] [blame] | 8047 | PACK_MIGRATION_IMAGE_SCRIPT := $(HOST_OUT_EXECUTABLES)/pack_migration_image |
| 8048 | |
| 8049 | # ----------------------------------------------------------------- |
| 8050 | # Desktop pack migration image hook. |
| 8051 | ifeq ($(ANDROID_DESKTOP_MIGRATION_IMAGE),true) |
| 8052 | PACK_MIGRATION_IMAGE_TARGET := $(PRODUCT_OUT)/android-desktop_migration_image.bin |
| 8053 | |
| 8054 | $(PACK_MIGRATION_IMAGE_TARGET): $(IMAGES) $(PACK_MIGRATION_IMAGE_SCRIPT) |
| 8055 | $(PACK_MIGRATION_IMAGE_SCRIPT) --out_dir $(PRODUCT_OUT) --noarchive |
| 8056 | |
| 8057 | PACKED_MIGRATION_IMAGE_ARCHIVE_TARGET := $(PACK_MIGRATION_IMAGE_TARGET).gz |
| 8058 | |
| 8059 | $(PACKED_MIGRATION_IMAGE_ARCHIVE_TARGET): $(PACK_MIGRATION_IMAGE_TARGET) | $(GZIP) |
| 8060 | $(GZIP) -fk $(PACK_MIGRATION_IMAGE_TARGET) |
| 8061 | |
| 8062 | $(call dist-for-goals,dist_files,$(PACKED_MIGRATION_IMAGE_ARCHIVE_TARGET)) |
| 8063 | |
| 8064 | .PHONY: pack-migration-image |
| 8065 | pack-migration-image: $(PACK_MIGRATION_IMAGE_TARGET) |
| 8066 | |
| 8067 | endif # ANDROID_DESKTOP_MIGRATION_IMAGE |
| 8068 | |
Jae Hoon Kim | c6a9897 | 2024-08-27 00:58:09 +0000 | [diff] [blame] | 8069 | # ----------------------------------------------------------------- |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 8070 | # OS Licensing |
| 8071 | |
| 8072 | include $(BUILD_SYSTEM)/os_licensing.mk |
| 8073 | |
| 8074 | # When appending new code to this file, please insert above OS Licensing |