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 | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 7 | SYSTEM_NOTICE_DEPS := |
| 8 | VENDOR_NOTICE_DEPS := |
| 9 | UNMOUNTED_NOTICE_DEPS := |
| 10 | ODM_NOTICE_DEPS := |
| 11 | OEM_NOTICE_DEPS := |
| 12 | PRODUCT_NOTICE_DEPS := |
| 13 | SYSTEM_EXT_NOTICE_DEPS := |
| 14 | VENDOR_DLKM_NOTICE_DEPS := |
| 15 | ODM_DLKM_NOTICE_DEPS := |
| 16 | SYSTEM_DLKM_NOTICE_DEPS := |
| 17 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 18 | # ----------------------------------------------------------------- |
| 19 | # Define rules to copy PRODUCT_COPY_FILES defined by the product. |
Ying Wang | 4b0486b | 2012-09-20 16:35:36 -0700 | [diff] [blame] | 20 | # 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] | 21 | # <dest file> is relative to $(PRODUCT_OUT), so it should look like, |
| 22 | # e.g., "system/etc/file.xml". |
Jean-Baptiste Queru | 518ce57 | 2010-03-01 16:18:59 -0800 | [diff] [blame] | 23 | # 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] | 24 | # src:dest pair is the first one to match the same dest" |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 25 | #$(1): the src:dest pair |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 26 | #$(2): the dest |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 27 | define check-product-copy-files |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 28 | $(if $(filter-out $(TARGET_COPY_OUT_SYSTEM_OTHER)/%,$(2)), \ |
| 29 | $(if $(filter %.apk, $(2)),$(error \ |
Yifan Hong | 5e57a77 | 2020-01-09 16:15:11 -0800 | [diff] [blame] | 30 | Prebuilt apk found in PRODUCT_COPY_FILES: $(1), use BUILD_PREBUILT instead!))) \ |
| 31 | $(if $(filter true,$(BUILD_BROKEN_VINTF_PRODUCT_COPY_FILES)),, \ |
| 32 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM)/etc/vintf/% \ |
| 33 | $(TARGET_COPY_OUT_SYSTEM)/manifest.xml \ |
| 34 | $(TARGET_COPY_OUT_SYSTEM)/compatibility_matrix.xml,$(2)), \ |
| 35 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), use vintf_fragments instead!)) \ |
| 36 | $(if $(filter $(TARGET_COPY_OUT_PRODUCT)/etc/vintf/%,$(2)), \ |
| 37 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 38 | use PRODUCT_MANIFEST_FILES / DEVICE_PRODUCT_COMPATIBILITY_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 39 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM_EXT)/etc/vintf/%,$(2)), \ |
| 40 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 41 | use vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 42 | $(if $(filter $(TARGET_COPY_OUT_VENDOR)/etc/vintf/% \ |
| 43 | $(TARGET_COPY_OUT_VENDOR)/manifest.xml \ |
| 44 | $(TARGET_COPY_OUT_VENDOR)/compatibility_matrix.xml,$(2)), \ |
| 45 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 46 | use DEVICE_MANIFEST_FILE / DEVICE_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 47 | $(if $(filter $(TARGET_COPY_OUT_ODM)/etc/vintf/% \ |
| 48 | $(TARGET_COPY_OUT_ODM)/etc/manifest%,$(2)), \ |
| 49 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 50 | use ODM_MANIFEST_FILES / vintf_fragments instead!)) \ |
| 51 | ) |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 52 | endef |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 53 | |
Yo Chiang | 336883a | 2020-05-14 17:17:29 +0800 | [diff] [blame] | 54 | # Phony target to check PRODUCT_COPY_FILES copy pairs don't contain ELF files |
| 55 | .PHONY: check-elf-prebuilt-product-copy-files |
| 56 | check-elf-prebuilt-product-copy-files: |
| 57 | |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 58 | check_elf_prebuilt_product_copy_files := true |
Yo Chiang | 73d3148 | 2020-04-07 15:59:59 +0800 | [diff] [blame] | 59 | ifneq (,$(filter true,$(BUILD_BROKEN_ELF_PREBUILT_PRODUCT_COPY_FILES))) |
| 60 | check_elf_prebuilt_product_copy_files := |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 61 | endif |
| 62 | check_elf_prebuilt_product_copy_files_hint := \ |
| 63 | found ELF prebuilt in PRODUCT_COPY_FILES, use cc_prebuilt_binary / cc_prebuilt_library_shared instead. |
| 64 | |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 65 | # filter out the duplicate <source file>:<dest file> pairs. |
| 66 | unique_product_copy_files_pairs := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 67 | $(foreach cf,$(PRODUCT_COPY_FILES), \ |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 68 | $(if $(filter $(unique_product_copy_files_pairs),$(cf)),,\ |
| 69 | $(eval unique_product_copy_files_pairs += $(cf)))) |
| 70 | unique_product_copy_files_destinations := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 71 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 72 | $(foreach cf,$(unique_product_copy_files_pairs), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 73 | $(eval _src := $(call word-colon,1,$(cf))) \ |
| 74 | $(eval _dest := $(call word-colon,2,$(cf))) \ |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 75 | $(call check-product-copy-files,$(cf),$(_dest)) \ |
Ying Wang | 193010c | 2011-12-16 11:54:25 -0800 | [diff] [blame] | 76 | $(if $(filter $(unique_product_copy_files_destinations),$(_dest)), \ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 77 | $(eval product_copy_files_ignored += $(cf)), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 78 | $(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \ |
Ying Wang | 3ceecfa | 2012-05-14 14:39:00 -0700 | [diff] [blame] | 79 | $(if $(filter %.xml,$(_dest)),\ |
| 80 | $(eval $(call copy-xml-file-checked,$(_src),$(_fulldest))),\ |
Nicolas Geoffray | a95fbd1 | 2017-09-19 13:10:31 +0100 | [diff] [blame] | 81 | $(if $(and $(filter %.jar,$(_dest)),$(filter $(basename $(notdir $(_dest))),$(PRODUCT_LOADED_BY_PRIVILEGED_MODULES))),\ |
| 82 | $(eval $(call copy-and-uncompress-dexs,$(_src),$(_fulldest))), \ |
Tom Cherry | fc97764 | 2018-06-13 14:51:05 -0700 | [diff] [blame] | 83 | $(if $(filter init%rc,$(notdir $(_dest)))$(filter %/etc/init,$(dir $(_dest))),\ |
| 84 | $(eval $(call copy-init-script-file-checked,$(_src),$(_fulldest))),\ |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 85 | $(if $(and $(filter true,$(check_elf_prebuilt_product_copy_files)), \ |
| 86 | $(filter bin lib lib64,$(subst /,$(space),$(_dest)))), \ |
| 87 | $(eval $(call copy-non-elf-file-checked,$(_src),$(_fulldest),$(check_elf_prebuilt_product_copy_files_hint))), \ |
| 88 | $(eval $(call copy-one-file,$(_src),$(_fulldest))))))) \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 89 | $(eval unique_product_copy_files_destinations += $(_dest)))) |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 90 | |
| 91 | # Dump a list of overriden (and ignored PRODUCT_COPY_FILES entries) |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 92 | pcf_ignored_file := $(PRODUCT_OUT)/product_copy_files_ignored.txt |
| 93 | $(pcf_ignored_file): PRIVATE_IGNORED := $(sort $(product_copy_files_ignored)) |
| 94 | $(pcf_ignored_file): |
| 95 | echo "$(PRIVATE_IGNORED)" | tr " " "\n" >$@ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 96 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 97 | $(call declare-0p-target,$(pcf_ignored_file)) |
| 98 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 99 | $(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] | 100 | |
| 101 | pcf_ignored_file := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 102 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 103 | unique_product_copy_files_pairs := |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 104 | unique_product_copy_files_destinations := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 105 | |
| 106 | # ----------------------------------------------------------------- |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 107 | # Returns the max allowed size for an image suitable for hash verification |
| 108 | # (e.g., boot.img, recovery.img, etc). |
| 109 | # The value 69632 derives from MAX_VBMETA_SIZE + MAX_FOOTER_SIZE in $(AVBTOOL). |
| 110 | # $(1): partition size to flash the image |
| 111 | define get-hash-image-max-size |
| 112 | $(if $(1), \ |
| 113 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 114 | $(eval _hash_meta_size := 69632), \ |
| 115 | $(eval _hash_meta_size := 0)) \ |
| 116 | $(1)-$(_hash_meta_size)) |
| 117 | endef |
| 118 | |
| 119 | # ----------------------------------------------------------------- |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 120 | # Define rules to copy headers defined in copy_headers.mk |
| 121 | # If more than one makefile declared a header, print a warning, |
| 122 | # then copy the last one defined. This matches the previous make |
| 123 | # behavior. |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 124 | has_dup_copy_headers := |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 125 | $(foreach dest,$(ALL_COPIED_HEADERS), \ |
| 126 | $(eval _srcs := $(ALL_COPIED_HEADERS.$(dest).SRC)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 127 | $(eval _src := $(lastword $(_srcs))) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 128 | $(if $(call streq,$(_src),$(_srcs)),, \ |
| 129 | $(warning Duplicate header copy: $(dest)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 130 | $(warning _ Using $(_src)) \ |
| 131 | $(warning __ from $(lastword $(ALL_COPIED_HEADERS.$(dest).MAKEFILE))) \ |
| 132 | $(eval _makefiles := $$(wordlist 1,$(call int_subtract,$(words $(ALL_COPIED_HEADERS.$(dest).MAKEFILE)),1),$$(ALL_COPIED_HEADERS.$$(dest).MAKEFILE))) \ |
| 133 | $(foreach src,$(wordlist 1,$(call int_subtract,$(words $(_srcs)),1),$(_srcs)), \ |
| 134 | $(warning _ Ignoring $(src)) \ |
| 135 | $(warning __ from $(firstword $(_makefiles))) \ |
| 136 | $(eval _makefiles := $$(wordlist 2,9999,$$(_makefiles)))) \ |
| 137 | $(eval has_dup_copy_headers := true)) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 138 | $(eval $(call copy-one-header,$(_src),$(dest)))) |
| 139 | all_copied_headers: $(ALL_COPIED_HEADERS) |
| 140 | |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 141 | ifdef has_dup_copy_headers |
| 142 | has_dup_copy_headers := |
Dan Willemsen | 1d4a56f | 2019-04-18 09:38:25 -0700 | [diff] [blame] | 143 | $(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] | 144 | endif |
| 145 | |
Dan Willemsen | 79a0caf | 2019-12-13 18:55:18 -0800 | [diff] [blame] | 146 | $(file >$(PRODUCT_OUT)/.copied_headers_list,$(TARGET_OUT_HEADERS) $(ALL_COPIED_HEADERS)) |
| 147 | |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 148 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 149 | # docs/index.html |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 150 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 151 | gen := $(OUT_DOCS)/index.html |
| 152 | ALL_DOCS += $(gen) |
| 153 | $(gen): frameworks/base/docs/docs-redirect-index.html |
| 154 | @mkdir -p $(dir $@) |
| 155 | @cp -f $< $@ |
Ying Wang | 3f45b3c | 2012-04-02 18:21:36 -0700 | [diff] [blame] | 156 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 157 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 158 | ndk_doxygen_out := $(OUT_NDK_DOCS) |
| 159 | ndk_headers := $(SOONG_OUT_DIR)/ndk/sysroot/usr/include |
| 160 | ndk_docs_src_dir := frameworks/native/docs |
| 161 | ndk_doxyfile := $(ndk_docs_src_dir)/Doxyfile |
| 162 | ifneq ($(wildcard $(ndk_docs_src_dir)),) |
| 163 | ndk_docs_srcs := $(addprefix $(ndk_docs_src_dir)/,\ |
| 164 | $(call find-files-in-subdirs,$(ndk_docs_src_dir),"*",.)) |
| 165 | $(ndk_doxygen_out)/index.html: $(ndk_docs_srcs) $(SOONG_OUT_DIR)/ndk.timestamp |
| 166 | @mkdir -p $(ndk_doxygen_out) |
| 167 | @echo "Generating NDK docs to $(ndk_doxygen_out)" |
| 168 | @( cat $(ndk_doxyfile); \ |
| 169 | echo "INPUT=$(ndk_headers)"; \ |
| 170 | echo "HTML_OUTPUT=$(ndk_doxygen_out)" \ |
| 171 | ) | doxygen - |
| 172 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 173 | $(call declare-1p-target,$(ndk_doxygen_out)/index.html,) |
| 174 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 175 | # Note: Not a part of the docs target because we don't have doxygen available. |
| 176 | # You can run this target locally if you have doxygen installed. |
| 177 | ndk-docs: $(ndk_doxygen_out)/index.html |
| 178 | .PHONY: ndk-docs |
| 179 | endif |
| 180 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 181 | ifeq ($(HOST_OS),linux) |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 182 | $(call dist-for-goals,sdk,$(API_FINGERPRINT)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 183 | endif |
Dan Willemsen | ad6a154 | 2018-12-14 01:04:19 -0800 | [diff] [blame] | 184 | |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 185 | INSTALLED_RECOVERYIMAGE_TARGET := |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 186 | # Build recovery image if |
| 187 | # BUILDING_RECOVERY_IMAGE && !BOARD_USES_RECOVERY_AS_BOOT && !BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT. |
| 188 | # If BOARD_USES_RECOVERY_AS_BOOT is true, leave empty because INSTALLED_BOOTIMAGE_TARGET is built |
| 189 | # with recovery resources. |
| 190 | # If BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT is true, leave empty to build recovery resources |
| 191 | # but not the final recovery image. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 192 | ifdef BUILDING_RECOVERY_IMAGE |
| 193 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 194 | ifneq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 195 | INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img |
| 196 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 197 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 198 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 199 | |
Jiyong Park | e134686 | 2020-05-18 14:31:30 +0900 | [diff] [blame] | 200 | include $(BUILD_SYSTEM)/sysprop.mk |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 201 | |
| 202 | # ---------------------------------------------------------------- |
| 203 | |
| 204 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 205 | # sdk-build.prop |
| 206 | # |
| 207 | # There are certain things in build.prop that we don't want to |
| 208 | # ship with the sdk; remove them. |
| 209 | |
| 210 | # This must be a list of entire property keys followed by |
| 211 | # "=" characters, without any internal spaces. |
| 212 | sdk_build_prop_remove := \ |
| 213 | ro.build.user= \ |
| 214 | ro.build.host= \ |
| 215 | ro.product.brand= \ |
| 216 | ro.product.manufacturer= \ |
| 217 | ro.product.device= |
| 218 | # TODO: Remove this soon-to-be obsolete property |
| 219 | sdk_build_prop_remove += ro.build.product= |
| 220 | INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop |
| 221 | $(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET) |
| 222 | @echo SDK buildinfo: $@ |
| 223 | @mkdir -p $(dir $@) |
| 224 | $(hide) grep -v "$(subst $(space),\|,$(strip \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 225 | $(sdk_build_prop_remove)))" $< > $@.tmp |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 226 | $(hide) for x in $(strip $(sdk_build_prop_remove)); do \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 227 | echo "$$x"generic >> $@.tmp; done |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 228 | $(hide) mv $@.tmp $@ |
| 229 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 230 | $(call declare-0p-target,$(INSTALLED_SDK_BUILD_PROP_TARGET)) |
| 231 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 232 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 233 | # declare recovery ramdisk files |
| 234 | ifeq ($(BUILDING_RECOVERY_IMAGE),true) |
| 235 | INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP := $(call intermediates-dir-for,PACKAGING,recovery)/ramdisk_files-timestamp |
| 236 | endif |
| 237 | |
| 238 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 239 | # Declare vendor ramdisk fragments |
| 240 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := |
| 241 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 242 | ifeq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 243 | ifneq (,$(filter recovery,$(BOARD_VENDOR_RAMDISK_FRAGMENTS))) |
| 244 | $(error BOARD_VENDOR_RAMDISK_FRAGMENTS must not contain "recovery" if \ |
| 245 | BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT is set) |
| 246 | endif |
| 247 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += recovery |
| 248 | VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 249 | VENDOR_RAMDISK_FRAGMENT.recovery.FILES := $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 250 | BOARD_VENDOR_RAMDISK_FRAGMENT.recovery.MKBOOTIMG_ARGS += --ramdisk_type RECOVERY |
| 251 | .KATI_READONLY := VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR |
| 252 | endif |
| 253 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 254 | # Validation check and assign default --ramdisk_type. |
| 255 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 256 | $(if $(and $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 257 | $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)), \ |
| 258 | $(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))) \ |
| 259 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragment-stage-$(vendor_ramdisk_fragment))) \ |
| 260 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES :=) \ |
| 261 | $(if $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 262 | $(if $(filter --ramdisk_type,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)),, \ |
| 263 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_type DLKM))) \ |
| 264 | ) |
| 265 | |
| 266 | # Create the "kernel module directory" to "vendor ramdisk fragment" inverse mapping. |
| 267 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 268 | $(foreach kmd,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 269 | $(eval kmd_vrf := KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd)) \ |
| 270 | $(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)) \ |
| 271 | $(eval $(kmd_vrf) := $(vendor_ramdisk_fragment)) \ |
| 272 | ) \ |
| 273 | ) |
| 274 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += $(BOARD_VENDOR_RAMDISK_FRAGMENTS) |
| 275 | |
Yi-Yo Chiang | 378b779 | 2021-04-09 20:09:13 +0800 | [diff] [blame] | 276 | # Strip the list in case of any whitespace. |
| 277 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := \ |
| 278 | $(strip $(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)) |
| 279 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 280 | # Assign --ramdisk_name for each vendor ramdisk fragment. |
| 281 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
| 282 | $(if $(filter --ramdisk_name,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)), \ |
| 283 | $(error Must not specify --ramdisk_name for vendor ramdisk fragment: $(vendor_ramdisk_fragment))) \ |
| 284 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_name $(vendor_ramdisk_fragment)) \ |
| 285 | $(eval .KATI_READONLY := BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) \ |
| 286 | ) |
| 287 | |
| 288 | # ----------------------------------------------------------------- |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 289 | # kernel modules |
| 290 | |
| 291 | # Depmod requires a well-formed kernel version so 0.0 is used as a placeholder. |
| 292 | DEPMOD_STAGING_SUBDIR :=$= lib/modules/0.0 |
| 293 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 294 | define copy-and-strip-kernel-module |
| 295 | $(2): $(1) |
J. Avila | f758602 | 2020-06-19 20:42:17 +0000 | [diff] [blame] | 296 | $(LLVM_STRIP) -o $(2) --strip-debug $(1) |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 297 | endef |
| 298 | |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 299 | # $(1): modules list |
| 300 | # $(2): output dir |
| 301 | # $(3): mount point |
| 302 | # $(4): staging dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 303 | # $(5): module load list |
| 304 | # $(6): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 305 | # $(7): module archive |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 306 | # $(8): staging dir for stripped modules |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 307 | # $(9): module directory name |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 308 | # 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] | 309 | define build-image-kernel-modules |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 310 | $(if $(9), \ |
| 311 | $(eval _dir := $(9)/), \ |
| 312 | $(eval _dir :=)) \ |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 313 | $(foreach module,$(1), \ |
| 314 | $(eval _src := $(module)) \ |
| 315 | $(if $(8), \ |
| 316 | $(eval _src := $(8)/$(notdir $(module))) \ |
| 317 | $(eval $(call copy-and-strip-kernel-module,$(module),$(_src)))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 318 | $(_src):$(2)/lib/modules/$(_dir)$(notdir $(module))) \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 319 | $(eval $(call build-image-kernel-modules-depmod,$(1),$(3),$(4),$(5),$(6),$(7),$(2),$(9))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 320 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.dep:$(2)/lib/modules/$(_dir)modules.dep \ |
| 321 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.alias:$(2)/lib/modules/$(_dir)modules.alias \ |
| 322 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.softdep:$(2)/lib/modules/$(_dir)modules.softdep \ |
| 323 | $(4)/$(DEPMOD_STAGING_SUBDIR)/$(6):$(2)/lib/modules/$(_dir)$(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 324 | endef |
| 325 | |
| 326 | # $(1): modules list |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 327 | # $(2): mount point |
| 328 | # $(3): staging dir |
| 329 | # $(4): module load list |
| 330 | # $(5): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 331 | # $(6): module archive |
| 332 | # $(7): output dir |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 333 | # $(8): module directory name |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 334 | # TODO(b/144844424): If a module archive is being used, this step (which |
| 335 | # generates obj/PACKAGING/.../modules.dep) also unzips the module archive into |
| 336 | # the output directory. This should be moved to a module with a |
| 337 | # LOCAL_POST_INSTALL_CMD so that if modules.dep is removed from the output dir, |
| 338 | # the archive modules are restored along with modules.dep. |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 339 | define build-image-kernel-modules-depmod |
Steve Muckle | 0f7bb1b | 2019-07-11 17:42:13 -0700 | [diff] [blame] | 340 | $(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] | 341 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(DEPMOD) |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 342 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULES := $(strip $(1)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 343 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MOUNT_POINT := $(2) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 344 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_DIR := $(3)/$(DEPMOD_STAGING_SUBDIR)/$(2)/lib/modules/$(8) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 345 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_STAGING_DIR := $(3) |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 346 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_LOAD_MODULES := $(strip $(4)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 347 | $(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] | 348 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_ARCHIVE := $(6) |
| 349 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_OUTPUT_DIR := $(7) |
| 350 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(1) $(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 351 | @echo depmod $$(PRIVATE_STAGING_DIR) |
| 352 | rm -rf $$(PRIVATE_STAGING_DIR) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 353 | mkdir -p $$(PRIVATE_MODULE_DIR) |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 354 | $(if $(6),\ |
Colin Cross | c27d795 | 2020-07-11 22:33:30 -0700 | [diff] [blame] | 355 | unzip -qoDD -d $$(PRIVATE_MODULE_DIR) $$(PRIVATE_MODULE_ARCHIVE); \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 356 | mkdir -p $$(PRIVATE_OUTPUT_DIR)/lib; \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 357 | cp -r $(3)/$(DEPMOD_STAGING_SUBDIR)/$(2)/lib/modules $$(PRIVATE_OUTPUT_DIR)/lib/; \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 358 | find $$(PRIVATE_MODULE_DIR) -type f -name *.ko | xargs basename -a > $$(PRIVATE_LOAD_FILE); \ |
| 359 | ) |
| 360 | $(if $(1),\ |
| 361 | cp $$(PRIVATE_MODULES) $$(PRIVATE_MODULE_DIR)/; \ |
| 362 | for MODULE in $$(PRIVATE_LOAD_MODULES); do \ |
| 363 | basename $$$$MODULE >> $$(PRIVATE_LOAD_FILE); \ |
| 364 | done; \ |
| 365 | ) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 366 | $(DEPMOD) -b $$(PRIVATE_STAGING_DIR) 0.0 |
| 367 | # Turn paths in modules.dep into absolute paths |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 368 | sed -i.tmp -e 's|\([^: ]*lib/modules/[^: ]*\)|/\1|g' $$(PRIVATE_STAGING_DIR)/$$(DEPMOD_STAGING_SUBDIR)/modules.dep |
| 369 | touch $$(PRIVATE_LOAD_FILE) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 370 | endef |
| 371 | |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 372 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 373 | # $(2): modules list |
| 374 | # $(3): module load list |
| 375 | # $(4): module load list filename |
| 376 | # $(5): output dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 377 | define module-load-list-copy-paths |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 378 | $(eval $(call build-image-module-load-list,$(1),$(2),$(3),$(4))) \ |
| 379 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4):$(5)/lib/modules/$(4) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 380 | endef |
| 381 | |
| 382 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 383 | # $(2): modules list |
| 384 | # $(3): module load list |
| 385 | # $(4): module load list filename |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 386 | define build-image-module-load-list |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 387 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): PRIVATE_LOAD_MODULES := $(3) |
| 388 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): $(2) |
| 389 | @echo load-list $$(@) |
| 390 | @echo '$$(strip $$(notdir $$(PRIVATE_LOAD_MODULES)))' | tr ' ' '\n' > $$(@) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 391 | endef |
| 392 | |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 393 | # $(1): source options file |
| 394 | # $(2): destination pathname |
| 395 | # Returns a build rule that checks the syntax of and installs a kernel modules |
| 396 | # options file. Strip and squeeze any extra space and blank lines. |
| 397 | # For use via $(eval). |
| 398 | define build-image-kernel-modules-options-file |
| 399 | $(2): $(1) |
| 400 | @echo "libmodprobe options $$(@)" |
| 401 | $(hide) mkdir -p "$$(dir $$@)" |
| 402 | $(hide) rm -f "$$@" |
| 403 | $(hide) awk <"$$<" >"$$@" \ |
| 404 | '/^#/ { print; next } \ |
| 405 | NF == 0 { next } \ |
| 406 | NF < 2 || $$$$1 != "options" \ |
| 407 | { print "Invalid options line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 408 | exit_status = 1; next } \ |
| 409 | { $$$$1 = $$$$1; print } \ |
| 410 | END { exit exit_status }' |
| 411 | endef |
| 412 | |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 413 | # $(1): source blocklist file |
| 414 | # $(2): destination pathname |
| 415 | # 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] | 416 | # blocklist file. Strip and squeeze any extra space and blank lines. |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 417 | # For use via $(eval). |
| 418 | define build-image-kernel-modules-blocklist-file |
| 419 | $(2): $(1) |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 420 | @echo "libmodprobe blocklist $$(@)" |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 421 | $(hide) mkdir -p "$$(dir $$@)" |
| 422 | $(hide) rm -f "$$@" |
| 423 | $(hide) awk <"$$<" >"$$@" \ |
| 424 | '/^#/ { print; next } \ |
| 425 | NF == 0 { next } \ |
| 426 | NF != 2 || $$$$1 != "blocklist" \ |
| 427 | { print "Invalid blocklist line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 428 | exit_status = 1; next } \ |
| 429 | { $$$$1 = $$$$1; print } \ |
| 430 | END { exit exit_status }' |
| 431 | endef |
| 432 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 433 | # $(1): image name |
| 434 | # $(2): build output directory (TARGET_OUT_VENDOR, TARGET_RECOVERY_ROOT_OUT, etc) |
| 435 | # $(3): mount point |
| 436 | # $(4): module load filename |
| 437 | # $(5): stripped staging directory |
| 438 | # $(6): kernel module directory name (top is an out of band value for no directory) |
| 439 | define build-image-kernel-modules-dir |
| 440 | $(if $(filter top,$(6)),\ |
| 441 | $(eval _kver :=)$(eval _sep :=),\ |
| 442 | $(eval _kver := $(6))$(eval _sep :=_))\ |
| 443 | $(if $(5),\ |
| 444 | $(eval _stripped_staging_dir := $(5)$(_sep)$(_kver)),\ |
| 445 | $(eval _stripped_staging_dir :=))\ |
| 446 | $(if $(strip $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver))$(BOARD_$(1)_KERNEL_MODULES_ARCHIVE$(_sep)$(_kver))),\ |
| 447 | $(if $(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver)),,\ |
| 448 | $(eval BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver) := $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver)))) \ |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 449 | $(call copy-many-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)))) \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 450 | $(if $(_kver), \ |
| 451 | $(eval _dir := $(_kver)/), \ |
| 452 | $(eval _dir :=)) \ |
| 453 | $(if $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 454 | $(eval $(call build-image-kernel-modules-options-file, \ |
| 455 | $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 456 | $(2)/lib/modules/$(_dir)modules.options)) \ |
| 457 | $(2)/lib/modules/$(_dir)modules.options) \ |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 458 | $(if $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
| 459 | $(eval $(call build-image-kernel-modules-blocklist-file, \ |
| 460 | $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 461 | $(2)/lib/modules/$(_dir)modules.blocklist)) \ |
| 462 | $(2)/lib/modules/$(_dir)modules.blocklist) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 463 | endef |
| 464 | |
| 465 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 466 | define build-recovery-as-boot-load |
| 467 | $(if $(filter top,$(1)),\ |
| 468 | $(eval _kver :=)$(eval _sep :=),\ |
| 469 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 470 | $(if $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 471 | $(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)))) |
| 472 | endef |
| 473 | |
| 474 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 475 | define build-vendor-ramdisk-recovery-load |
| 476 | $(if $(filter top,$(1)),\ |
| 477 | $(eval _kver :=)$(eval _sep :=),\ |
| 478 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 479 | $(if $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 480 | $(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)))) |
| 481 | endef |
| 482 | |
Mark Salyzyn | 46a9c02 | 2020-06-25 04:35:16 -0700 | [diff] [blame] | 483 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 484 | define build-vendor-charger-load |
| 485 | $(if $(filter top,$(1)),\ |
| 486 | $(eval _kver :=)$(eval _sep :=),\ |
| 487 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 488 | $(if $(BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 489 | $(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)))) |
| 490 | endef |
| 491 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 492 | ifneq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 493 | # If there is no vendor boot partition, store vendor ramdisk kernel modules in the |
| 494 | # boot ramdisk. |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 495 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 496 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD) |
| 497 | endif |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 498 | |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 499 | ifeq ($(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD),) |
| 500 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD := $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 501 | endif |
| 502 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 503 | ifneq ($(strip $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES)),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 504 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT), true) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 505 | BOARD_RECOVERY_KERNEL_MODULES += $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 506 | endif |
| 507 | endif |
| 508 | |
Mark-PK Tsai | 8c54396 | 2021-08-23 18:01:51 +0800 | [diff] [blame] | 509 | ifneq ($(BOARD_DO_NOT_STRIP_RECOVERY_MODULES),true) |
| 510 | RECOVERY_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_recovery_stripped) |
| 511 | else |
| 512 | RECOVERY_STRIPPED_MODULE_STAGING_DIR := |
| 513 | endif |
| 514 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 515 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_MODULES),true) |
| 516 | VENDOR_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_stripped) |
| 517 | else |
| 518 | VENDOR_STRIPPED_MODULE_STAGING_DIR := |
| 519 | endif |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 520 | |
Pierre Couillaud | d99da8f | 2020-06-02 13:13:32 -0700 | [diff] [blame] | 521 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_RAMDISK_MODULES),true) |
| 522 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_ramdisk_stripped) |
| 523 | else |
| 524 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 525 | endif |
| 526 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 527 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_KERNEL_RAMDISK_MODULES),true) |
| 528 | VENDOR_KERNEL_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_kernel_ramdisk_stripped) |
| 529 | else |
| 530 | VENDOR_KERNEL_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 531 | endif |
| 532 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 533 | BOARD_KERNEL_MODULE_DIRS += top |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 534 | $(foreach kmd,$(BOARD_KERNEL_MODULE_DIRS), \ |
Mark-PK Tsai | 8c54396 | 2021-08-23 18:01:51 +0800 | [diff] [blame] | 535 | $(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] | 536 | $(eval vendor_ramdisk_fragment := $(KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd))) \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 537 | $(if $(vendor_ramdisk_fragment), \ |
| 538 | $(eval output_dir := $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR)) \ |
| 539 | $(eval result_var := VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES) \ |
| 540 | $(eval ### else ###), \ |
| 541 | $(eval output_dir := $(TARGET_VENDOR_RAMDISK_OUT)) \ |
| 542 | $(eval result_var := ALL_DEFAULT_INSTALLED_MODULES)) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 543 | $(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] | 544 | $(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] | 545 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-ramdisk-recovery-load,$(kmd))) \ |
| 546 | $(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))) \ |
| 547 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-charger-load,$(kmd))) \ |
| 548 | $(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))) \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 549 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 550 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-recovery-as-boot-load,$(kmd))),\ |
| 551 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,GENERIC_RAMDISK,$(TARGET_RAMDISK_OUT),,modules.load,,$(kmd))))) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 552 | |
| 553 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 554 | # Cert-to-package mapping. Used by the post-build signing tools. |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 555 | # Use a macro to add newline to each echo command |
Jiyong Park | 7b96c59 | 2020-05-01 10:29:09 +0900 | [diff] [blame] | 556 | # $1 stem name of the package |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 557 | # $2 certificate |
| 558 | # $3 private key |
| 559 | # $4 compressed |
| 560 | # $5 partition tag |
| 561 | # $6 output file |
Narayan Kamath | 6a4bd69 | 2017-08-14 10:53:50 +0100 | [diff] [blame] | 562 | define _apkcerts_write_line |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 563 | $(hide) echo -n 'name="$(1).apk" certificate="$2" private_key="$3"' >> $6 |
| 564 | $(if $(4), $(hide) echo -n ' compressed="$4"' >> $6) |
| 565 | $(if $(5), $(hide) echo -n ' partition="$5"' >> $6) |
| 566 | $(hide) echo '' >> $6 |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 567 | |
| 568 | endef |
| 569 | |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 570 | # ----------------------------------------------------------------- |
| 571 | # Merge an individual apkcerts output into the final apkcerts.txt output. |
| 572 | # Use a macro to make it compatible with _apkcerts_write_line |
| 573 | # $1 apkcerts file to be merged |
| 574 | # $2 output file |
| 575 | define _apkcerts_merge |
| 576 | $(hide) cat $1 >> $2 |
| 577 | |
| 578 | endef |
| 579 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 580 | name := $(TARGET_PRODUCT) |
| 581 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 582 | name := $(name)_debug |
| 583 | endif |
| 584 | name := $(name)-apkcerts-$(FILE_NAME_TAG) |
| 585 | intermediates := \ |
| 586 | $(call intermediates-dir-for,PACKAGING,apkcerts) |
| 587 | APKCERTS_FILE := $(intermediates)/$(name).txt |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 588 | all_apkcerts_files := $(sort $(foreach p,$(PACKAGES),$(PACKAGES.$(p).APKCERTS_FILE))) |
| 589 | $(APKCERTS_FILE): $(all_apkcerts_files) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 590 | # We don't need to really build all the modules. |
| 591 | # TODO: rebuild APKCERTS_FILE if any app change its cert. |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 592 | $(APKCERTS_FILE): |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 593 | @echo APK certs list: $@ |
| 594 | @mkdir -p $(dir $@) |
| 595 | @rm -f $@ |
Chris Gross | fabf50a | 2019-05-02 12:42:09 -0700 | [diff] [blame] | 596 | $(foreach p,$(sort $(PACKAGES)),\ |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 597 | $(if $(PACKAGES.$(p).APKCERTS_FILE),\ |
| 598 | $(call _apkcerts_merge,$(PACKAGES.$(p).APKCERTS_FILE), $@),\ |
| 599 | $(if $(PACKAGES.$(p).EXTERNAL_KEY),\ |
Jaewoong Jung | 7b634d3 | 2020-10-23 14:02:16 -0700 | [diff] [blame] | 600 | $(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] | 601 | $(call _apkcerts_write_line,$(PACKAGES.$(p).STEM),$(PACKAGES.$(p).CERTIFICATE),$(PACKAGES.$(p).PRIVATE_KEY),$(PACKAGES.$(p).COMPRESSED),$(PACKAGES.$(p).PARTITION),$@)))) |
Inseob Kim | f69346e | 2021-10-13 15:16:33 +0900 | [diff] [blame] | 602 | $(if $(filter true,$(PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA)),\ |
| 603 | $(call _apkcerts_write_line,$(notdir $(basename $(FSVERITY_APK_OUT))),$(FSVERITY_APK_KEY_PATH).x509.pem,$(FSVERITY_APK_KEY_PATH).pk8,,system,$@)) |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 604 | # In case value of PACKAGES is empty. |
Ying Wang | f272cd6 | 2011-09-26 12:05:06 -0700 | [diff] [blame] | 605 | $(hide) touch $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 606 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 607 | $(call declare-0p-target,$(APKCERTS_FILE)) |
| 608 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 609 | .PHONY: apkcerts-list |
| 610 | apkcerts-list: $(APKCERTS_FILE) |
| 611 | |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 612 | ifneq (,$(TARGET_BUILD_APPS)) |
| 613 | $(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt) |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 614 | $(call dist-for-goals, apps_only, $(SOONG_APEX_KEYS_FILE):apexkeys.txt) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 615 | endif |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 616 | |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 617 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 618 | # ----------------------------------------------------------------- |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 619 | # build system stats |
| 620 | BUILD_SYSTEM_STATS := $(PRODUCT_OUT)/build_system_stats.txt |
| 621 | $(BUILD_SYSTEM_STATS): |
| 622 | @rm -f $@ |
| 623 | @$(foreach s,$(STATS.MODULE_TYPE),echo "modules_type_make,$(s),$(words $(STATS.MODULE_TYPE.$(s)))" >>$@;) |
| 624 | @$(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] | 625 | $(call declare-1p-target,$(BUILD_SYSTEM_STATS),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 626 | $(call dist-for-goals,droidcore-unbundled,$(BUILD_SYSTEM_STATS)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 627 | |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 628 | # ----------------------------------------------------------------- |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 629 | # build /product/etc/security/avb/system_other.avbpubkey if needed |
| 630 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 631 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 632 | INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET := $(TARGET_OUT_PRODUCT_ETC)/security/avb/system_other.avbpubkey |
| 633 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET) |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 634 | endif # BOARD_AVB_ENABLE |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 635 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 636 | |
| 637 | # ----------------------------------------------------------------- |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 638 | # Modules ready to be converted to Soong, ordered by how many |
| 639 | # modules depend on them. |
| 640 | SOONG_CONV := $(sort $(SOONG_CONV)) |
| 641 | SOONG_CONV_DATA := $(call intermediates-dir-for,PACKAGING,soong_conversion)/soong_conv_data |
| 642 | $(SOONG_CONV_DATA): |
| 643 | @rm -f $@ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 644 | @$(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] | 645 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 646 | $(call declare-1p-target,$(SOONG_CONV_DATA),build) |
| 647 | |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 648 | SOONG_TO_CONVERT_SCRIPT := build/make/tools/soong_to_convert.py |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 649 | SOONG_TO_CONVERT := $(PRODUCT_OUT)/soong_to_convert.txt |
| 650 | $(SOONG_TO_CONVERT): $(SOONG_CONV_DATA) $(SOONG_TO_CONVERT_SCRIPT) |
| 651 | @rm -f $@ |
| 652 | $(hide) $(SOONG_TO_CONVERT_SCRIPT) $< >$@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 653 | $(call declare-1p-target,$(SOONG_TO_CONVERT),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 654 | $(call dist-for-goals,droidcore-unbundled,$(SOONG_TO_CONVERT)) |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 655 | |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 656 | $(PRODUCT_OUT)/product_packages.txt: |
| 657 | @rm -f $@ |
| 658 | echo "" > $@ |
| 659 | $(foreach x,$(PRODUCT_PACKAGES),echo $(x) >> $@$(newline)) |
| 660 | |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 661 | MK2BP_CATALOG_SCRIPT := build/make/tools/mk2bp_catalog.py |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 662 | PRODUCT_PACKAGES_TXT := $(PRODUCT_OUT)/product_packages.txt |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 663 | MK2BP_REMAINING_HTML := $(PRODUCT_OUT)/mk2bp_remaining.html |
| 664 | $(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] | 665 | $(MK2BP_REMAINING_HTML): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) $(PRODUCT_PACKAGES_TXT) |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 666 | @rm -f $@ |
| 667 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 668 | --device=$(TARGET_DEVICE) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 669 | --product-packages=$(PRODUCT_PACKAGES_TXT) \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 670 | --title="Remaining Android.mk files for $(TARGET_DEVICE)-$(TARGET_BUILD_VARIANT)" \ |
| 671 | --codesearch=$(PRIVATE_CODE_SEARCH_BASE_URL) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 672 | --out-dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 673 | --mode=html \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 674 | > $@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 675 | $(call declare-1p-target,$(MK2BP_REMAINING_HTML),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 676 | $(call dist-for-goals,droidcore-unbundled,$(MK2BP_REMAINING_HTML)) |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 677 | |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 678 | MK2BP_REMAINING_CSV := $(PRODUCT_OUT)/mk2bp_remaining.csv |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 679 | $(MK2BP_REMAINING_CSV): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) $(PRODUCT_PACKAGES_TXT) |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 680 | @rm -f $@ |
| 681 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 682 | --device=$(TARGET_DEVICE) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 683 | --product-packages=$(PRODUCT_PACKAGES_TXT) \ |
| 684 | --out-dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 685 | --mode=csv \ |
| 686 | > $@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 687 | $(call declare-1p-target,$(MK2BP_REMAINING_CSV)) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 688 | $(call dist-for-goals,droidcore-unbundled,$(MK2BP_REMAINING_CSV)) |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 689 | |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 690 | # ----------------------------------------------------------------- |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 691 | # Modules use -Wno-error, or added default -Wall -Werror |
| 692 | WALL_WERROR := $(PRODUCT_OUT)/wall_werror.txt |
| 693 | $(WALL_WERROR): |
| 694 | @rm -f $@ |
| 695 | echo "# Modules using -Wno-error" >> $@ |
| 696 | 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] | 697 | echo "# Modules that allow warnings" >> $@ |
| 698 | 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] | 699 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 700 | $(call declare-0p-target,$(WALL_WERROR)) |
| 701 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 702 | $(call dist-for-goals,droidcore-unbundled,$(WALL_WERROR)) |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 703 | |
| 704 | # ----------------------------------------------------------------- |
Jesse Pai | d004692 | 2019-09-13 17:02:32 -0700 | [diff] [blame] | 705 | # C/C++ flag information for modules |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 706 | $(call dist-for-goals,droidcore-unbundled,$(SOONG_MODULES_CFLAG_ARTIFACTS)) |
Jesse Pai | d004692 | 2019-09-13 17:02:32 -0700 | [diff] [blame] | 707 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 708 | $(foreach a,$(SOONG_MODULES_CFLAG_ARTIFACTS),$(call declare-0p-target,$(call word-colon,1,$(a)))) |
| 709 | |
Jesse Pai | d004692 | 2019-09-13 17:02:32 -0700 | [diff] [blame] | 710 | # ----------------------------------------------------------------- |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 711 | # Modules missing profile files |
| 712 | PGO_PROFILE_MISSING := $(PRODUCT_OUT)/pgo_profile_file_missing.txt |
| 713 | $(PGO_PROFILE_MISSING): |
| 714 | @rm -f $@ |
| 715 | echo "# Modules missing PGO profile files" >> $@ |
| 716 | for m in $(SOONG_MODULES_MISSING_PGO_PROFILE_FILE); do echo $$m >> $@; done |
| 717 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 718 | $(call declare-0p-target,$(PGO_PROFILE_MISSING)) |
| 719 | |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 720 | $(call dist-for-goals,droidcore,$(PGO_PROFILE_MISSING)) |
| 721 | |
Anton Hansson | cd8fa36 | 2020-12-08 20:56:02 +0000 | [diff] [blame] | 722 | CERTIFICATE_VIOLATION_MODULES_FILENAME := $(PRODUCT_OUT)/certificate_violation_modules.txt |
| 723 | $(CERTIFICATE_VIOLATION_MODULES_FILENAME): |
| 724 | rm -f $@ |
| 725 | $(foreach m,$(sort $(CERTIFICATE_VIOLATION_MODULES)), echo $(m) >> $@;) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 726 | $(call declare-0p-target,$(CERTIFICATE_VIOLATION_MODULES_FILENAME)) |
Anton Hansson | cd8fa36 | 2020-12-08 20:56:02 +0000 | [diff] [blame] | 727 | $(call dist-for-goals,droidcore,$(CERTIFICATE_VIOLATION_MODULES_FILENAME)) |
| 728 | |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 729 | # ----------------------------------------------------------------- |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 730 | # 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] | 731 | # for future OTA packages installed by this system. Actual product |
| 732 | # deliverables will be re-signed by hand. We expect this file to |
| 733 | # exist with the suffixes ".x509.pem" and ".pk8". |
Colin Cross | 21122f9 | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 734 | DEFAULT_KEY_CERT_PAIR := $(strip $(DEFAULT_SYSTEM_DEV_CERTIFICATE)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 735 | |
| 736 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 737 | # 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] | 738 | # if they don't do anything. |
| 739 | .PHONY: systemimage |
| 740 | systemimage: |
| 741 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 742 | # ----------------------------------------------------------------- |
| 743 | |
| 744 | .PHONY: event-log-tags |
| 745 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 746 | # Produce an event logs tag file for everything we know about, in order |
| 747 | # to properly allocate numbers. Then produce a file that's filtered |
| 748 | # for what's going to be installed. |
| 749 | |
| 750 | all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt |
| 751 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 752 | event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags |
| 753 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 754 | # Include tags from all packages that we know about |
| 755 | all_event_log_tags_src := \ |
| 756 | $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS))) |
| 757 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 758 | $(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src) |
| 759 | $(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] | 760 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 761 | $(hide) $(MERGETAGS) -o $@ $(PRIVATE_SRC_FILES) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 762 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 763 | $(call declare-0p-target,$(all_event_log_tags_file)) |
| 764 | |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 765 | # Include tags from all packages included in this product, plus all |
| 766 | # tags that are part of the system (ie, not in a vendor/ or device/ |
| 767 | # directory). |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 768 | event_log_tags_src := \ |
| 769 | $(sort $(foreach m,\ |
Yo Chiang | 5e85bfe | 2020-05-13 20:19:05 +0800 | [diff] [blame] | 770 | $(call resolve-bitness-for-modules,TARGET,$(PRODUCT_PACKAGES)) \ |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 771 | $(call module-names-for-tag-list,user), \ |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 772 | $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \ |
| 773 | $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src))) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 774 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 775 | $(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 776 | $(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file) |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 777 | $(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] | 778 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 779 | $(hide) $(MERGETAGS) -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 780 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 781 | $(eval $(call declare-0p-target,$(event_log_tags_file))) |
| 782 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 783 | event-log-tags: $(event_log_tags_file) |
| 784 | |
| 785 | ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file) |
| 786 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 787 | # Initialize INSTALLED_FILES_OUTSIDE_IMAGES with the list of all device files, |
| 788 | # files installed in images will be filtered out later. |
| 789 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out \ |
| 790 | $(PRODUCT_OUT)/apex/% \ |
Colin Cross | 41e93ea | 2022-03-25 17:31:49 -0700 | [diff] [blame] | 791 | $(PRODUCT_OUT)/fake_packages/% \ |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 792 | $(PRODUCT_OUT)/testcases/%, \ |
| 793 | $(filter $(PRODUCT_OUT)/%,$(ALL_DEFAULT_INSTALLED_MODULES))) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 794 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 795 | # ################################################################# |
| 796 | # Targets for boot/OS images |
| 797 | # ################################################################# |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 798 | ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true) |
| 799 | INSTALLED_BOOTLOADER_MODULE := $(PRODUCT_OUT)/bootloader |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 800 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 801 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_BOOTLOADER),$(INSTALLED_BOOTLOADER_MODULE))) |
| 802 | $(call dist-for-goals,dist_files,$(INSTALLED_BOOTLOADER_MODULE)) |
| 803 | endif # BOARD_PREBUILT_BOOTLOADER |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 804 | ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true) |
| 805 | INSTALLED_2NDBOOTLOADER_TARGET := $(PRODUCT_OUT)/2ndbootloader |
| 806 | else |
| 807 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 808 | endif |
| 809 | else |
| 810 | INSTALLED_BOOTLOADER_MODULE := |
| 811 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 812 | endif # TARGET_NO_BOOTLOADER |
| 813 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 814 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 815 | INSTALLED_KERNEL_TARGET := $(foreach k,$(BOARD_KERNEL_BINARIES), \ |
| 816 | $(PRODUCT_OUT)/$(k)) |
| 817 | else |
| 818 | INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel |
| 819 | endif |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 820 | else |
| 821 | INSTALLED_KERNEL_TARGET := |
| 822 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 823 | |
| 824 | # ----------------------------------------------------------------- |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 825 | # the root dir |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 826 | 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] | 827 | INTERNAL_ROOT_FILES := $(filter $(TARGET_ROOT_OUT)/%, \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 828 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 829 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 830 | |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 831 | INSTALLED_FILES_FILE_ROOT := $(PRODUCT_OUT)/installed-files-root.txt |
| 832 | INSTALLED_FILES_JSON_ROOT := $(INSTALLED_FILES_FILE_ROOT:.txt=.json) |
| 833 | $(INSTALLED_FILES_FILE_ROOT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ROOT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 834 | $(INSTALLED_FILES_FILE_ROOT) : $(INTERNAL_ROOT_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 835 | @echo Installed file list: $@ |
SzuWei Lin | c230b0b | 2021-12-30 13:48:01 +0800 | [diff] [blame] | 836 | mkdir -p $(TARGET_ROOT_OUT) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 837 | mkdir -p $(dir $@) |
| 838 | rm -f $@ |
| 839 | $(FILESLIST) $(TARGET_ROOT_OUT) > $(@:.txt=.json) |
| 840 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 841 | |
Bob Badour | e9bdbc5 | 2022-03-10 11:31:07 -0800 | [diff] [blame] | 842 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ROOT)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 843 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ROOT)) |
Bob Badour | e9bdbc5 | 2022-03-10 11:31:07 -0800 | [diff] [blame] | 844 | |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 845 | #------------------------------------------------------------------ |
| 846 | # dtb |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 847 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 848 | INSTALLED_DTBIMAGE_TARGET := $(PRODUCT_OUT)/dtb.img |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 849 | ifdef BOARD_PREBUILT_DTBIMAGE_DIR |
Hridya Valsaraju | c63a744 | 2019-02-07 11:38:18 -0800 | [diff] [blame] | 850 | $(INSTALLED_DTBIMAGE_TARGET) : $(sort $(wildcard $(BOARD_PREBUILT_DTBIMAGE_DIR)/*.dtb)) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 851 | cat $^ > $@ |
| 852 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 853 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 854 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 855 | # ----------------------------------------------------------------- |
| 856 | # the ramdisk |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 857 | 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] | 858 | ifdef BUILDING_RAMDISK_IMAGE |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 859 | INTERNAL_RAMDISK_FILES := $(filter $(TARGET_RAMDISK_OUT)/%, \ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 860 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 861 | |
| 862 | INSTALLED_FILES_FILE_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk.txt |
| 863 | INSTALLED_FILES_JSON_RAMDISK := $(INSTALLED_FILES_FILE_RAMDISK:.txt=.json) |
| 864 | $(INSTALLED_FILES_FILE_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RAMDISK) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 865 | $(INSTALLED_FILES_FILE_RAMDISK) : $(INTERNAL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 866 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 867 | mkdir -p $(TARGET_RAMDISK_OUT) |
| 868 | mkdir -p $(dir $@) |
| 869 | rm -f $@ |
| 870 | $(FILESLIST) $(TARGET_RAMDISK_OUT) > $(@:.txt=.json) |
| 871 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 872 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 873 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 874 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_RAMDISK))) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 875 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 876 | BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img |
| 877 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 878 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 879 | # -l enables the legacy format used by the Linux kernel |
| 880 | COMPRESSION_COMMAND_DEPS := $(LZ4) |
| 881 | COMPRESSION_COMMAND := $(LZ4) -l -12 --favor-decSpeed |
| 882 | RAMDISK_EXT := .lz4 |
| 883 | else |
| 884 | COMPRESSION_COMMAND_DEPS := $(MINIGZIP) |
| 885 | COMPRESSION_COMMAND := $(MINIGZIP) |
| 886 | RAMDISK_EXT := .gz |
| 887 | endif |
| 888 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 889 | # We just build this directly to the install location. |
| 890 | INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET) |
Inseob Kim | adcdb2f | 2021-06-11 12:55:10 +0900 | [diff] [blame] | 891 | $(INSTALLED_RAMDISK_TARGET): PRIVATE_DIRS := debug_ramdisk dev metadata mnt proc second_stage_resources sys |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 892 | $(INSTALLED_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_RAMDISK_FILES) $(INSTALLED_FILES_FILE_RAMDISK) | $(COMPRESSION_COMMAND_DEPS) |
Petri Gynther | 4c063e3 | 2021-03-06 13:26:01 -0800 | [diff] [blame] | 893 | $(call pretty,"Target ramdisk: $@") |
Inseob Kim | adcdb2f | 2021-06-11 12:55:10 +0900 | [diff] [blame] | 894 | $(hide) mkdir -p $(addprefix $(TARGET_RAMDISK_OUT)/,$(PRIVATE_DIRS)) |
| 895 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
| 896 | $(hide) mkdir -p $(addprefix $(TARGET_RAMDISK_OUT)/first_stage_ramdisk/,$(PRIVATE_DIRS)) |
| 897 | endif |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 898 | $(hide) $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RAMDISK_OUT) | $(COMPRESSION_COMMAND) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 899 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 900 | $(call declare-1p-container,$(INSTALLED_RAMDISK_TARGET),) |
| 901 | $(call declare-container-license-deps,$(INSTALLED_RAMDISK_TARGET),$(INTERNAL_RAMDISK_FILE),$(PRODUCT_OUT)/:/) |
| 902 | |
| 903 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_RAMDISK_TARGET) |
| 904 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 905 | .PHONY: ramdisk-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 906 | ramdisk-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 907 | @echo "make $@: ignoring dependencies" |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 908 | $(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] | 909 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 910 | endif # BUILDING_RAMDISK_IMAGE |
| 911 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 912 | # ----------------------------------------------------------------- |
| 913 | # the boot image, which is a collection of other images. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 914 | |
| 915 | # This is defined here since we may be building recovery as boot |
| 916 | # below and only want to define this once |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 917 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 918 | BUILT_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot,$(BOARD_KERNEL_BINARIES)), $(PRODUCT_OUT)/$(k).img) |
| 919 | else |
| 920 | BUILT_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 921 | endif |
| 922 | |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 923 | INTERNAL_PREBUILT_BOOTIMAGE := |
| 924 | |
| 925 | my_installed_prebuilt_gki_apex := $(strip $(foreach package,$(PRODUCT_PACKAGES),$(if $(ALL_MODULES.$(package).EXTRACTED_BOOT_IMAGE),$(package)))) |
| 926 | ifdef my_installed_prebuilt_gki_apex |
| 927 | ifneq (1,$(words $(my_installed_prebuilt_gki_apex))) # len(my_installed_prebuilt_gki_apex) > 1 |
| 928 | $(error More than one prebuilt GKI APEXes are installed: $(my_installed_prebuilt_gki_apex)) |
| 929 | endif # len(my_installed_prebuilt_gki_apex) > 1 |
| 930 | |
| 931 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 932 | $(error Must not define BOARD_PREBUILT_BOOTIMAGE because a prebuilt GKI APEX is installed: $(my_installed_prebuilt_gki_apex)) |
| 933 | endif # BOARD_PREBUILT_BOOTIMAGE defined |
| 934 | |
| 935 | my_apex_extracted_boot_image := $(ALL_MODULES.$(my_installed_prebuilt_gki_apex).EXTRACTED_BOOT_IMAGE) |
| 936 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 937 | $(eval $(call copy-one-file,$(my_apex_extracted_boot_image),$(INSTALLED_BOOTIMAGE_TARGET))) |
| 938 | |
| 939 | INTERNAL_PREBUILT_BOOTIMAGE := $(my_apex_extracted_boot_image) |
| 940 | |
| 941 | else # my_installed_prebuilt_gki_apex not defined |
| 942 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 943 | # $1: boot image target |
| 944 | # returns the kernel used to make the bootimage |
| 945 | define bootimage-to-kernel |
| 946 | $(if $(BOARD_KERNEL_BINARIES),\ |
| 947 | $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $(1)))),\ |
| 948 | $(INSTALLED_KERNEL_TARGET)) |
| 949 | endef |
| 950 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 951 | ifdef BOARD_BOOTIMAGE_PARTITION_SIZE |
| 952 | BOARD_KERNEL_BOOTIMAGE_PARTITION_SIZE := $(BOARD_BOOTIMAGE_PARTITION_SIZE) |
| 953 | endif |
| 954 | |
| 955 | # $1: boot image file name |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 956 | # $2: boot image variant (boot, boot-debug, boot-test-harness) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 957 | define get-bootimage-partition-size |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 958 | $(BOARD_$(call to-upper,$(subst .img,,$(subst $(2),kernel,$(notdir $(1)))))_BOOTIMAGE_PARTITION_SIZE) |
| 959 | endef |
| 960 | |
| 961 | # $1: partition size |
| 962 | define get-partition-size-argument |
| 963 | $(if $(1),--partition_size $(1),--dynamic_partition_size) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 964 | endef |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 965 | |
| 966 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 967 | INTERNAL_BOOTIMAGE_ARGS := \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 968 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 969 | |
Bowgo Tsai | 85578e0 | 2022-04-19 10:50:59 +0800 | [diff] [blame] | 970 | # TODO(b/229701033): clean up BOARD_BUILD_GKI_BOOT_IMAGE_WITHOUT_RAMDISK. |
| 971 | ifneq ($(BOARD_BUILD_GKI_BOOT_IMAGE_WITHOUT_RAMDISK),true) |
| 972 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 973 | ifneq ($(BUILDING_INIT_BOOT_IMAGE),true) |
| 974 | INTERNAL_BOOTIMAGE_ARGS += --ramdisk $(INSTALLED_RAMDISK_TARGET) |
Bowgo Tsai | 85578e0 | 2022-04-19 10:50:59 +0800 | [diff] [blame] | 975 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 976 | endif |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 977 | endif |
| 978 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 979 | ifndef BUILDING_VENDOR_BOOT_IMAGE |
| 980 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 981 | INTERNAL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 982 | endif |
| 983 | endif |
| 984 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 985 | INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS)) |
| 986 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 987 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 988 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 989 | VERITY_KEYID := veritykeyid=id:`openssl x509 -in $(PRODUCT_VERITY_SIGNING_KEY).x509.pem -text \ |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 990 | | grep keyid | sed 's/://g' | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]' | sed 's/keyid//g'` |
| 991 | endif |
| 992 | endif |
| 993 | |
Anton Hansson | 72e36f0 | 2019-02-26 17:36:30 +0000 | [diff] [blame] | 994 | INTERNAL_KERNEL_CMDLINE := $(strip $(INTERNAL_KERNEL_CMDLINE) buildvariant=$(TARGET_BUILD_VARIANT) $(VERITY_KEYID)) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 995 | |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 996 | # kernel cmdline/base/pagesize in boot. |
| 997 | # - If using GKI, use GENERIC_KERNEL_CMDLINE. Remove kernel base and pagesize because they are |
| 998 | # device-specific. |
| 999 | # - If not using GKI: |
| 1000 | # - If building vendor_boot, INTERNAL_KERNEL_CMDLINE, base and pagesize goes in vendor_boot. |
| 1001 | # - Otherwise, put them in boot. |
| 1002 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 1003 | ifdef GENERIC_KERNEL_CMDLINE |
| 1004 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(GENERIC_KERNEL_CMDLINE)" |
| 1005 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 1006 | else ifndef BUILDING_VENDOR_BOOT_IMAGE # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
| 1007 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1008 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1009 | endif |
| 1010 | ifdef BOARD_KERNEL_BASE |
| 1011 | INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1012 | endif |
| 1013 | ifdef BOARD_KERNEL_PAGESIZE |
| 1014 | INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1015 | endif |
| 1016 | endif # BUILDING_VENDOR_BOOT_IMAGE == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 1017 | |
Bowgo Tsai | 662a2c6 | 2022-03-14 17:59:55 +0800 | [diff] [blame] | 1018 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 1019 | # GKI boot images will not set system version & SPL value in the header. |
| 1020 | # They can be set by the device manufacturer in the AVB properties instead. |
| 1021 | INTERNAL_MKBOOTIMG_VERSION_ARGS := |
| 1022 | else |
| 1023 | INTERNAL_MKBOOTIMG_VERSION_ARGS := \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 1024 | --os_version $(PLATFORM_VERSION_LAST_STABLE) \ |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1025 | --os_patch_level $(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | 662a2c6 | 2022-03-14 17:59:55 +0800 | [diff] [blame] | 1026 | endif # BOARD_GKI_SIGNING_KEY_PATH |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1027 | |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1028 | # $(1): image target to certify |
| 1029 | # $(2): out certificate target |
| 1030 | # $(3): image name |
| 1031 | # $(4): additional AVB arguments |
| 1032 | define generate_generic_boot_image_certificate |
| 1033 | rm -rf "$(2)" |
| 1034 | mkdir -p "$(dir $(2))" |
| 1035 | $(GENERATE_GKI_CERTIFICATE) $(INTERNAL_GKI_CERTIFICATE_ARGS) \ |
| 1036 | --additional_avb_args "$(4)" \ |
| 1037 | --name "$(3)" --output "$(2)" "$(1)" |
| 1038 | endef |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 1039 | |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1040 | INTERNAL_GKI_CERTIFICATE_ARGS := |
| 1041 | INTERNAL_GKI_CERTIFICATE_DEPS := |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1042 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 1043 | ifndef BOARD_GKI_SIGNING_ALGORITHM |
| 1044 | $(error BOARD_GKI_SIGNING_ALGORITHM should be defined with BOARD_GKI_SIGNING_KEY_PATH) |
| 1045 | endif |
| 1046 | |
| 1047 | INTERNAL_GKI_CERTIFICATE_ARGS := \ |
| 1048 | --key "$(BOARD_GKI_SIGNING_KEY_PATH)" \ |
| 1049 | --algorithm "$(BOARD_GKI_SIGNING_ALGORITHM)" \ |
| 1050 | --avbtool "$(AVBTOOL)" |
| 1051 | |
| 1052 | # Quote and pass BOARD_GKI_SIGNING_SIGNATURE_ARGS as a single string argument. |
| 1053 | ifdef BOARD_GKI_SIGNING_SIGNATURE_ARGS |
| 1054 | INTERNAL_GKI_CERTIFICATE_ARGS += --additional_avb_args "$(BOARD_GKI_SIGNING_SIGNATURE_ARGS)" |
| 1055 | endif |
| 1056 | |
| 1057 | INTERNAL_GKI_CERTIFICATE_DEPS := \ |
| 1058 | $(GENERATE_GKI_CERTIFICATE) \ |
| 1059 | $(BOARD_GKI_SIGNING_KEY_PATH) \ |
| 1060 | $(AVBTOOL) |
| 1061 | |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 1062 | endif |
| 1063 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1064 | # Define these only if we are building boot |
| 1065 | ifdef BUILDING_BOOT_IMAGE |
| 1066 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 1067 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1068 | ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true) |
JP Abgrall | 7bb75e4 | 2015-02-11 15:04:59 -0800 | [diff] [blame] | 1069 | $(error TARGET_BOOTIMAGE_USE_EXT2 is not supported anymore) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1070 | endif # TARGET_BOOTIMAGE_USE_EXT2 |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1071 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1072 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET), $(eval $(call add-dependency,$(b),$(call bootimage-to-kernel,$(b))))) |
| 1073 | |
| 1074 | ifeq (true,$(BOARD_AVB_ENABLE)) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1075 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1076 | # $1: boot image target |
| 1077 | define build_boot_board_avb_enabled |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1078 | $(eval kernel := $(call bootimage-to-kernel,$(1))) |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1079 | $(MKBOOTIMG) --kernel $(kernel) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1080 | $(if $(BOARD_GKI_SIGNING_KEY_PATH), \ |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1081 | $(eval boot_signature := $(call intermediates-dir-for,PACKAGING,generic_boot)/$(notdir $(1)).boot_signature) \ |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1082 | $(eval kernel_signature := $(call intermediates-dir-for,PACKAGING,generic_kernel)/$(notdir $(kernel)).boot_signature) \ |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1083 | $(call generate_generic_boot_image_certificate,$(1),$(boot_signature),boot,$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)) $(newline) \ |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1084 | $(call generate_generic_boot_image_certificate,$(kernel),$(kernel_signature),generic_kernel,$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)) $(newline) \ |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1085 | cat $(kernel_signature) >> $(boot_signature) $(newline) \ |
| 1086 | $(call assert-max-image-size,$(boot_signature),16 << 10) $(newline) \ |
| 1087 | truncate -s $$(( 16 << 10 )) $(boot_signature) $(newline) \ |
| 1088 | cat "$(boot_signature)" >> $(1)) |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 1089 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(call get-bootimage-partition-size,$(1),boot))) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1090 | $(AVBTOOL) add_hash_footer \ |
| 1091 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1092 | $(call get-partition-size-argument,$(call get-bootimage-partition-size,$(1),boot)) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1093 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 1094 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1095 | endef |
| 1096 | |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1097 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(AVBTOOL) $(INTERNAL_BOOTIMAGE_FILES) $(BOARD_AVB_BOOT_KEY_PATH) $(INTERNAL_GKI_CERTIFICATE_DEPS) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1098 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1099 | $(call build_boot_board_avb_enabled,$@) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1100 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1101 | $(call declare-1p-container,$(INSTALLED_BOOTIMAGE_TARGET),) |
| 1102 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES) $(INTERNAL_GKI_CERTIFICATE_DEPS),$(PRODUCT_OUT)/:/) |
| 1103 | |
| 1104 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
| 1105 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1106 | .PHONY: bootimage-nodeps |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1107 | bootimage-nodeps: $(MKBOOTIMG) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) $(INTERNAL_GKI_CERTIFICATE_DEPS) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1108 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1109 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_board_avb_enabled,$(b))) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1110 | |
hungweichen | b2dd683 | 2022-08-08 09:16:30 +0000 | [diff] [blame^] | 1111 | else ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) # BOARD_AVB_ENABLE != true |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1112 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1113 | # $1: boot image target |
| 1114 | define build_boot_supports_vboot |
| 1115 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1).unsigned |
| 1116 | $(VBOOT_SIGNER) $(FUTILITY) $(1).unsigned $(PRODUCT_VBOOT_SIGNING_KEY).vbpubk $(PRODUCT_VBOOT_SIGNING_KEY).vbprivk $(PRODUCT_VBOOT_SIGNING_SUBKEY).vbprivk $(1).keyblock $(1) |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 1117 | $(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] | 1118 | endef |
| 1119 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1120 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1121 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1122 | $(call build_boot_supports_vboot,$@) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1123 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1124 | $(call declare-1p-container,$(INSTALLED_BOOTIMAGE_TARGET),) |
| 1125 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 1126 | |
| 1127 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
| 1128 | |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1129 | .PHONY: bootimage-nodeps |
Tao Bao | 4b57741 | 2017-02-22 22:54:39 -0800 | [diff] [blame] | 1130 | bootimage-nodeps: $(MKBOOTIMG) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1131 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1132 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_supports_vboot,$(b))) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1133 | |
| 1134 | else # PRODUCT_SUPPORTS_VBOOT != true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1135 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1136 | # $1: boot image target |
| 1137 | define build_boot_novboot |
| 1138 | $(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] | 1139 | $(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] | 1140 | endef |
| 1141 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1142 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1143 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1144 | $(call build_boot_novboot,$@) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1145 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1146 | $(call declare-1p-container,$(INSTALLED_BOOTIMAGE_TARGET),) |
| 1147 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 1148 | |
| 1149 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
| 1150 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1151 | .PHONY: bootimage-nodeps |
| 1152 | bootimage-nodeps: $(MKBOOTIMG) |
| 1153 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1154 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_novboot,$(b))) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1155 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1156 | endif # BOARD_AVB_ENABLE |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1157 | endif # BUILDING_BOOT_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1158 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1159 | else # TARGET_NO_KERNEL == "true" |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 1160 | ifdef BOARD_PREBUILT_BOOTIMAGE |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1161 | INTERNAL_PREBUILT_BOOTIMAGE := $(BOARD_PREBUILT_BOOTIMAGE) |
Kiyoung Kim | 62e2231 | 2019-06-20 14:27:45 +0900 | [diff] [blame] | 1162 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1163 | |
| 1164 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1165 | $(INSTALLED_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_BOOTIMAGE) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
| 1166 | cp $(INTERNAL_PREBUILT_BOOTIMAGE) $@ |
| 1167 | $(AVBTOOL) add_hash_footer \ |
| 1168 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1169 | $(call get-partition-size-argument,$(BOARD_BOOTIMAGE_PARTITION_SIZE)) \ |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1170 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 1171 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1172 | |
| 1173 | $(call declare-1p-container,$(INSTALLED_BOOTIMAGE_TARGET),) |
| 1174 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_PREBUILT_BOOTIMAGE),$(PRODUCT_OUT)/:/) |
| 1175 | |
| 1176 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1177 | else |
| 1178 | $(INSTALLED_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_BOOTIMAGE) |
| 1179 | cp $(INTERNAL_PREBUILT_BOOTIMAGE) $@ |
| 1180 | endif # BOARD_AVB_ENABLE |
| 1181 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1182 | else # BOARD_PREBUILT_BOOTIMAGE not defined |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1183 | INSTALLED_BOOTIMAGE_TARGET := |
| 1184 | endif # BOARD_PREBUILT_BOOTIMAGE |
| 1185 | endif # TARGET_NO_KERNEL |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1186 | endif # my_installed_prebuilt_gki_apex not defined |
| 1187 | |
| 1188 | my_apex_extracted_boot_image := |
| 1189 | my_installed_prebuilt_gki_apex := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1190 | |
| 1191 | # ----------------------------------------------------------------- |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1192 | # init boot image |
| 1193 | ifeq ($(BUILDING_INIT_BOOT_IMAGE),true) |
| 1194 | |
| 1195 | INSTALLED_INIT_BOOT_IMAGE_TARGET := $(PRODUCT_OUT)/init_boot.img |
| 1196 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_RAMDISK_TARGET) |
| 1197 | |
Yi-Yo Chiang | 8b0776d | 2022-06-30 17:33:29 +0800 | [diff] [blame] | 1198 | INTERNAL_INIT_BOOT_IMAGE_ARGS := --ramdisk $(INSTALLED_RAMDISK_TARGET) |
| 1199 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1200 | ifdef BOARD_KERNEL_PAGESIZE |
| 1201 | INTERNAL_INIT_BOOT_IMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1202 | endif |
| 1203 | |
| 1204 | ifeq ($(BOARD_AVB_ENABLE),true) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 1205 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_INIT_BOOT_KEY_PATH) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1206 | $(call pretty,"Target init_boot image: $@") |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1207 | $(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] | 1208 | $(call assert-max-image-size,$@,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) |
| 1209 | $(AVBTOOL) add_hash_footer \ |
| 1210 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1211 | $(call get-partition-size-argument,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1212 | --partition_name init_boot $(INTERNAL_AVB_INIT_BOOT_SIGNING_ARGS) \ |
| 1213 | $(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1214 | |
| 1215 | $(call declare-1p-container,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 1216 | $(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] | 1217 | else |
| 1218 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): |
| 1219 | $(call pretty,"Target init_boot image: $@") |
| 1220 | $(MKBOOTIMG) $(INTERNAL_INIT_BOOT_IMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_INIT_ARGS) --output $@ |
| 1221 | $(call assert-max-image-size,$@,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1222 | |
| 1223 | $(call declare-1p-target,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1224 | endif |
| 1225 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1226 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_INIT_BOOT_IMAGE_TARGET) |
| 1227 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1228 | else # BUILDING_INIT_BOOT_IMAGE is not true |
| 1229 | |
| 1230 | ifdef BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 1231 | INTERNAL_PREBUILT_INIT_BOOT_IMAGE := $(BOARD_PREBUILT_INIT_BOOT_IMAGE) |
| 1232 | INSTALLED_INIT_BOOT_IMAGE_TARGET := $(PRODUCT_OUT)/init_boot.img |
| 1233 | |
| 1234 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1235 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $(AVBTOOL) $(BOARD_AVB_INIT_BOOT_KEY_PATH) |
| 1236 | cp $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $@ |
| 1237 | $(AVBTOOL) add_hash_footer \ |
| 1238 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1239 | $(call get-partition-size-argument,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1240 | --partition_name boot $(INTERNAL_AVB_INIT_BOOT_SIGNING_ARGS) \ |
| 1241 | $(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1242 | |
| 1243 | $(call declare-1p-container,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 1244 | $(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] | 1245 | else |
| 1246 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) |
| 1247 | cp $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $@ |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1248 | |
| 1249 | $(call declare-1p-target,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1250 | endif # BOARD_AVB_ENABLE |
| 1251 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1252 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_INIT_BOOT_IMAGE_TARGET) |
| 1253 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1254 | else # BOARD_PREBUILT_INIT_BOOT_IMAGE not defined |
| 1255 | INSTALLED_INIT_BOOT_IMAGE_TARGET := |
| 1256 | endif # BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 1257 | |
| 1258 | endif # BUILDING_INIT_BOOT_IMAGE is not true |
Ramji Jiyani | 1065523 | 2022-01-20 06:43:09 +0000 | [diff] [blame] | 1259 | |
| 1260 | # ----------------------------------------------------------------- |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1261 | # vendor boot image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 1262 | 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] | 1263 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 1264 | |
| 1265 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
| 1266 | $(error vboot 1.0 does not support vendor_boot partition) |
| 1267 | endif |
| 1268 | |
| 1269 | INTERNAL_VENDOR_RAMDISK_FILES := $(filter $(TARGET_VENDOR_RAMDISK_OUT)/%, \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1270 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1271 | |
Petri Gynther | 6a6d621 | 2021-03-06 00:45:53 -0800 | [diff] [blame] | 1272 | INTERNAL_VENDOR_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot)/vendor_ramdisk.cpio$(RAMDISK_EXT) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1273 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1274 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 1275 | # recovery ramdisk in vendor_boot. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1276 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1277 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1278 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 1279 | $(INTERNAL_VENDOR_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 1280 | endif |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1281 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1282 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1283 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1284 | $(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] | 1285 | |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1286 | INSTALLED_VENDOR_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk.img |
| 1287 | $(INSTALLED_VENDOR_RAMDISK_TARGET): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 1288 | @echo "Target vendor ramdisk: $@" |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1289 | $(copy-file-to-target) |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1290 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1291 | $(call declare-1p-container,$(INSTALLED_VENDOR_RAMDISK_TARGET),) |
| 1292 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_RAMDISK_TARGET),$(INTERNAL_VENDOR_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 1293 | |
| 1294 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_RAMDISK_TARGET) |
| 1295 | |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1296 | INSTALLED_FILES_FILE_VENDOR_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk.txt |
| 1297 | INSTALLED_FILES_JSON_VENDOR_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_RAMDISK:.txt=.json) |
| 1298 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_RAMDISK) |
| 1299 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
| 1300 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1301 | @echo Installed file list: $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1302 | mkdir -p $(dir $@) |
| 1303 | rm -f $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1304 | $(FILESLIST) $(TARGET_VENDOR_RAMDISK_OUT) > $(@:.txt=.json) |
| 1305 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1306 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1307 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1308 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_RAMDISK))) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1309 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1310 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1311 | ifneq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
| 1312 | # If we have vendor_kernel_boot partition, we migrate dtb image to that image |
| 1313 | # and allow dtb in vendor_boot to be empty. |
| 1314 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1315 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1316 | endif |
| 1317 | ifdef BOARD_KERNEL_BASE |
| 1318 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1319 | endif |
| 1320 | ifdef BOARD_KERNEL_PAGESIZE |
| 1321 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1322 | endif |
| 1323 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1324 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1325 | endif |
| 1326 | |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1327 | ifdef INTERNAL_BOOTCONFIG |
Yi-Yo Chiang | 9c46136 | 2021-04-04 03:26:18 +0800 | [diff] [blame] | 1328 | INTERNAL_VENDOR_BOOTCONFIG_TARGET := $(PRODUCT_OUT)/vendor-bootconfig.img |
| 1329 | $(INTERNAL_VENDOR_BOOTCONFIG_TARGET): |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1330 | rm -f $@ |
| 1331 | $(foreach param,$(INTERNAL_BOOTCONFIG), \ |
| 1332 | printf "%s\n" $(param) >> $@;) |
| 1333 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_bootconfig $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
| 1334 | endif |
| 1335 | |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1336 | # $(1): Build target name |
| 1337 | # $(2): Staging dir to be compressed |
| 1338 | # $(3): Build dependencies |
| 1339 | define build-vendor-ramdisk-fragment-target |
| 1340 | $(1): $(3) $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 1341 | $(MKBOOTFS) -d $(TARGET_OUT) $(2) | $(COMPRESSION_COMMAND) > $$@ |
| 1342 | endef |
| 1343 | |
| 1344 | # $(1): Ramdisk name |
| 1345 | define build-vendor-ramdisk-fragment |
| 1346 | $(strip \ |
| 1347 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragments)/$(1).cpio$(RAMDISK_EXT)) \ |
| 1348 | $(eval $(call build-vendor-ramdisk-fragment-target,$(build_target),$(VENDOR_RAMDISK_FRAGMENT.$(1).STAGING_DIR),$(VENDOR_RAMDISK_FRAGMENT.$(1).FILES))) \ |
| 1349 | $(build_target) \ |
| 1350 | ) |
| 1351 | endef |
| 1352 | |
| 1353 | # $(1): Ramdisk name |
| 1354 | # $(2): Prebuilt file path |
| 1355 | define build-prebuilt-vendor-ramdisk-fragment |
| 1356 | $(strip \ |
| 1357 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,prebuilt_vendor_ramdisk_fragments)/$(1)) \ |
| 1358 | $(eval $(call copy-one-file,$(2),$(build_target))) \ |
| 1359 | $(build_target) \ |
| 1360 | ) |
| 1361 | endef |
| 1362 | |
| 1363 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS := |
| 1364 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS := |
| 1365 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1366 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1367 | $(eval prebuilt_vendor_ramdisk_fragment_file := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 1368 | $(if $(prebuilt_vendor_ramdisk_fragment_file), \ |
| 1369 | $(eval vendor_ramdisk_fragment_target := $(call build-prebuilt-vendor-ramdisk-fragment,$(vendor_ramdisk_fragment),$(prebuilt_vendor_ramdisk_fragment_file))) \ |
| 1370 | $(eval ### else ###), \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1371 | $(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] | 1372 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS += $(vendor_ramdisk_fragment_target)) \ |
| 1373 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS += $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) --vendor_ramdisk_fragment $(vendor_ramdisk_fragment_target)) \ |
| 1374 | ) |
| 1375 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1376 | INSTALLED_VENDOR_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot.img |
| 1377 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET) |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1378 | $(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] | 1379 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1380 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOTIMAGE_KEY_PATH) |
| 1381 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1382 | $(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] | 1383 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1384 | $(AVBTOOL) add_hash_footer \ |
| 1385 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1386 | $(call get-partition-size-argument,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1387 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_SIGNING_ARGS) \ |
| 1388 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1389 | else |
| 1390 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): |
| 1391 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1392 | $(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] | 1393 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1394 | endif |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1395 | |
| 1396 | $(call declare-1p-container,$(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 1397 | $(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)/:/) |
| 1398 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1399 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 1400 | |
| 1401 | # ----------------------------------------------------------------- |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1402 | # vendor kernel boot image |
| 1403 | ifeq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
| 1404 | |
| 1405 | INTERNAL_VENDOR_KERNEL_RAMDISK_FILES := $(filter $(TARGET_VENDOR_KERNEL_RAMDISK_OUT)/%, \ |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1406 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1407 | |
| 1408 | INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_kernel_boot)/vendor_kernel_ramdisk.cpio$(RAMDISK_EXT) |
| 1409 | |
| 1410 | $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_KERNEL_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
| 1411 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_VENDOR_KERNEL_RAMDISK_OUT) | $(COMPRESSION_COMMAND) > $@ |
| 1412 | |
| 1413 | INSTALLED_VENDOR_KERNEL_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_kernel_ramdisk.img |
| 1414 | $(INSTALLED_VENDOR_KERNEL_RAMDISK_TARGET): $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1415 | @echo "Target vendor kernel ramdisk: $@" |
| 1416 | $(copy-file-to-target) |
| 1417 | |
| 1418 | INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-kernel-ramdisk.txt |
| 1419 | INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK:.txt=.json) |
| 1420 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK) |
| 1421 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1422 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): $(INTERNAL_VENDOR_KERNEL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 1423 | @echo Installed file list: $@ |
| 1424 | mkdir -p $(dir $@) |
| 1425 | rm -f $@ |
| 1426 | $(FILESLIST) $(TARGET_VENDOR_KERNEL_RAMDISK_OUT) > $(@:.txt=.json) |
| 1427 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 1428 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1429 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK)) |
| 1430 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK)) |
| 1431 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1432 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS := --vendor_ramdisk $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1433 | INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_kernel_boot.img |
| 1434 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1435 | |
| 1436 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1437 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1438 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(INSTALLED_DTBIMAGE_TARGET) |
| 1439 | endif |
| 1440 | ifdef BOARD_KERNEL_PAGESIZE |
| 1441 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1442 | endif |
| 1443 | |
| 1444 | |
| 1445 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1446 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_KERNEL_BOOTIMAGE_KEY_PATH) |
| 1447 | $(call pretty,"Target vendor_kernel_boot image: $@") |
| 1448 | $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_boot $@ |
| 1449 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) |
| 1450 | $(AVBTOOL) add_hash_footer \ |
| 1451 | --image $@ \ |
| 1452 | $(call get-partition-size-argument,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) \ |
| 1453 | --partition_name vendor_kernel_boot $(INTERNAL_AVB_VENDOR_KERNEL_BOOT_SIGNING_ARGS) \ |
| 1454 | $(BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1455 | else |
| 1456 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): |
| 1457 | $(call pretty,"Target vendor_kernel_boot image: $@") |
| 1458 | $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_boot $@ |
| 1459 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) |
| 1460 | endif |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1461 | $(call declare-1p-container,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) |
| 1462 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1463 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),\ |
| 1464 | $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET),\ |
| 1465 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET):) |
| 1466 | else |
| 1467 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET),$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET):) |
| 1468 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1469 | endif # BUILDING_VENDOR_KERNEL_BOOT_IMAGE |
| 1470 | |
| 1471 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1472 | # NOTICE files |
| 1473 | # |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 1474 | # We are required to publish the licenses for all code under BSD, GPL and |
| 1475 | # Apache licenses (and possibly other more exotic ones as well). We err on the |
| 1476 | # side of caution, so the licenses for other third-party code are included here |
| 1477 | # too. |
| 1478 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1479 | # This needs to be before the systemimage rules, because it adds to |
| 1480 | # ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files |
| 1481 | # go into the systemimage. |
| 1482 | |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1483 | .PHONY: notice_files |
| 1484 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1485 | # Convert license metadata into xml notice file. |
| 1486 | # $(1) - Output target notice filename |
| 1487 | # $(2) - Product name |
| 1488 | # $(3) - File title |
| 1489 | # $(4) - License metadata file roots |
| 1490 | # $(5) - Prefixes to strip |
| 1491 | # |
| 1492 | define xml-notice-rule |
| 1493 | $(1): PRIVATE_PRODUCT := $(2) |
| 1494 | $(1): PRIVATE_MESSAGE := $(3) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1495 | $(1): PRIVATE_DEPS := $(call corresponding-license-metadata,$(4)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1496 | $(1): $(call corresponding-license-metadata,$(4)) $(XMLNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1497 | OUT_DIR=$(OUT_DIR) $(XMLNOTICE) -o $$@ -product=$$(PRIVATE_PRODUCT) -title=$$(PRIVATE_MESSAGE) $(foreach prefix, $(5), -strip_prefix=$(prefix)) $$(PRIVATE_DEPS) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1498 | |
| 1499 | notice_files: $(1) |
| 1500 | endef |
| 1501 | |
| 1502 | # Convert license metadata into text notice file. |
| 1503 | # $(1) - Output target notice filename |
| 1504 | # $(2) - Product name |
| 1505 | # $(3) - File title |
| 1506 | # $(4) - License metadata file roots |
| 1507 | # $(5) - Prefixes to strip |
| 1508 | # |
| 1509 | define text-notice-rule |
| 1510 | $(1): PRIVATE_PRODUCT := $(2) |
| 1511 | $(1): PRIVATE_MESSAGE := $(3) |
| 1512 | $(1): $(call corresponding-license-metadata,$(4)) $(TEXTNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | c778e4c | 2022-03-22 13:05:19 -0700 | [diff] [blame] | 1513 | 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 | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1514 | |
| 1515 | notice_files: $(1) |
| 1516 | endef |
| 1517 | |
| 1518 | # Conversion license metadata into html notice file. |
| 1519 | # $(1) - Output target notice filename |
| 1520 | # $(2) - Product name |
| 1521 | # $(3) - File title |
| 1522 | # $(4) - License metadata file roots |
| 1523 | # $(5) - Prefixes to strip |
| 1524 | # |
| 1525 | define html-notice-rule |
| 1526 | $(1): PRIVATE_PRODUCT := $(2) |
| 1527 | $(1): PRIVATE_MESSAGE := $(3) |
| 1528 | $(1): $(call corresponding-license-metadata,$(4)) $(HTMLNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | c778e4c | 2022-03-22 13:05:19 -0700 | [diff] [blame] | 1529 | 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 | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1530 | |
| 1531 | notice_files: $(1) |
| 1532 | endef |
| 1533 | |
Bob Badour | 6259a09 | 2022-03-23 23:28:40 -0700 | [diff] [blame] | 1534 | $(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] | 1535 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1536 | # Notice file logic isn't relevant for TARGET_BUILD_APPS |
| 1537 | ifndef TARGET_BUILD_APPS |
| 1538 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1539 | # TODO These intermediate NOTICE.txt/NOTICE.html files should go into |
| 1540 | # TARGET_OUT_NOTICE_FILES now that the notice files are gathered from |
| 1541 | # the src subdirectory. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1542 | kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt |
| 1543 | winpthreads_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/winpthreads.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1544 | |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1545 | # Some targets get included under $(PRODUCT_OUT) for debug symbols or other |
| 1546 | # reasons--not to be flashed onto any device. Targets under these directories |
| 1547 | # need no associated notice file on the device UI. |
| 1548 | exclude_target_dirs := apex |
| 1549 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 1550 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1551 | ifneq ($(PRODUCT_NOTICE_SPLIT),true) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1552 | #target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1553 | target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz |
| 1554 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.html.gz |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 1555 | |
| 1556 | $(call declare-0p-target,$(target_notice_file_html_gz)) |
| 1557 | $(call declare-0p-target,$(installed_notice_html_or_xml_gz)) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1558 | else |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1559 | # target_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1560 | target_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml.gz |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1561 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.xml.gz |
| 1562 | |
| 1563 | target_vendor_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.txt |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1564 | target_vendor_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml.gz |
| 1565 | installed_vendor_notice_xml_gz := $(TARGET_OUT_VENDOR)/etc/NOTICE.xml.gz |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1566 | |
| 1567 | target_product_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.txt |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1568 | target_product_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml.gz |
| 1569 | installed_product_notice_xml_gz := $(TARGET_OUT_PRODUCT)/etc/NOTICE.xml.gz |
Dario Freni | cbca113 | 2018-08-28 18:04:03 +0100 | [diff] [blame] | 1570 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1571 | 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] | 1572 | target_system_ext_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml.gz |
| 1573 | 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] | 1574 | |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1575 | target_odm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.txt |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1576 | target_odm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml.gz |
| 1577 | installed_odm_notice_xml_gz := $(TARGET_OUT_ODM)/etc/NOTICE.xml.gz |
| 1578 | |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1579 | 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] | 1580 | target_vendor_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.xml.gz |
| 1581 | installed_vendor_dlkm_notice_xml_gz := $(TARGET_OUT_VENDOR_DLKM)/etc/NOTICE.xml.gz |
| 1582 | |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1583 | 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] | 1584 | target_odm_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.xml.gz |
| 1585 | installed_odm_dlkm_notice_xml_gz := $(TARGET_OUT_ODM_DLKM)/etc/NOTICE.xml.gz |
| 1586 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1587 | 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] | 1588 | target_system_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_DLKM.xml.gz |
| 1589 | installed_system_dlkm_notice_xml_gz := $(TARGET_OUT_SYSTEM_DLKM)/etc/NOTICE.xml.gz |
| 1590 | |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1591 | # Notice files are copied to TARGET_OUT_NOTICE_FILES as a side-effect of their module |
| 1592 | # being built. A notice xml file must depend on all modules that could potentially |
| 1593 | # install a license file relevant to it. |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1594 | license_modules := $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1595 | # Only files copied to a system image need system image notices. |
| 1596 | license_modules := $(filter $(PRODUCT_OUT)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1597 | # Phonys/fakes don't have notice files (though their deps might) |
| 1598 | license_modules := $(filter-out $(TARGET_OUT_FAKE)/%,$(license_modules)) |
Jooyung Han | 4416b00 | 2019-05-29 18:28:22 +0900 | [diff] [blame] | 1599 | # testcases are not relevant to the system image. |
| 1600 | license_modules := $(filter-out $(TARGET_OUT_TESTCASES)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1601 | # 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] | 1602 | license_modules_system := $(filter $(TARGET_OUT)/%,$(license_modules)) |
Jeongik Cha | 9917520 | 2020-06-17 17:10:19 +0900 | [diff] [blame] | 1603 | # system_other is relevant to system partition. |
| 1604 | license_modules_system += $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1605 | license_modules_vendor := $(filter $(TARGET_OUT_VENDOR)/%,$(license_modules)) |
| 1606 | license_modules_product := $(filter $(TARGET_OUT_PRODUCT)/%,$(license_modules)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1607 | license_modules_system_ext := $(filter $(TARGET_OUT_SYSTEM_EXT)/%,$(license_modules)) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1608 | license_modules_odm := $(filter $(TARGET_OUT_ODM)/%,$(license_modules)) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1609 | license_modules_vendor_dlkm := $(filter $(TARGET_OUT_VENDOR_DLKM)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1610 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_ODM_DLKM)/%,$(license_modules)) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1611 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_SYSTEM_DLKM)/%,$(license_modules)) |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1612 | license_modules_agg := $(license_modules_system) \ |
| 1613 | $(license_modules_vendor) \ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1614 | $(license_modules_product) \ |
| 1615 | $(license_modules_system_ext) \ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1616 | $(license_modules_odm) \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1617 | $(license_modules_vendor_dlkm) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1618 | $(license_modules_odm_dlkm) \ |
| 1619 | $(license_modules_system_dlkm) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1620 | # targets used for debug symbols only and do not get copied to the device |
| 1621 | license_modules_symbols_only := $(filter $(PRODUCT_OUT)/apex/%,$(license_modules)) |
| 1622 | |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1623 | license_modules_rest := $(filter-out $(license_modules_agg),$(license_modules)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1624 | license_modules_rest := $(filter-out $(license_modules_symbols_only),$(license_modules_rest)) |
| 1625 | |
| 1626 | # Identify the other targets we expect to have notices for: |
| 1627 | # targets copied to the device but are not readable by the UI (e.g. must boot |
| 1628 | # into a different partition to read or don't have an associated /etc |
| 1629 | # directory) must have their notices built somewhere readable. |
| 1630 | license_modules_rehomed := $(filter-out $(PRODUCT_OUT)/%/%,$(license_modules_rest)) # files in root have no /etc |
| 1631 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/recovery/%,$(license_modules_rest)) |
| 1632 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/root/%,$(license_modules_rest)) |
| 1633 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/data/%,$(license_modules_rest)) |
| 1634 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/ramdisk/%,$(license_modules_rest)) |
| 1635 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/debug_ramdisk/%,$(license_modules_rest)) |
Petri Gynther | dc24d88 | 2021-03-02 23:54:08 -0800 | [diff] [blame] | 1636 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/vendor_ramdisk/%,$(license_modules_rest)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1637 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist/%,$(license_modules_rest)) |
| 1638 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist.img,$(license_modules_rest)) |
| 1639 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/system_other/%,$(license_modules_rest)) |
| 1640 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/kernel%,$(license_modules_rest)) |
| 1641 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.img,$(license_modules_rest)) |
| 1642 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.bin,$(license_modules_rest)) |
| 1643 | |
| 1644 | # after removing targets in system images, targets reported in system images, and |
| 1645 | # targets used for debug symbols that do not need notices, nothing must remain. |
| 1646 | license_modules_rest := $(filter-out $(license_modules_rehomed),$(license_modules_rest)) |
| 1647 | $(call maybe-print-list-and-error, $(license_modules_rest), \ |
| 1648 | "Targets added under $(PRODUCT_OUT)/ unaccounted for notice handling.") |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1649 | |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1650 | # If we are building in a configuration that includes a prebuilt vendor.img, we can't |
| 1651 | # update its notice file, so include those notices in the system partition instead |
| 1652 | ifdef BOARD_PREBUILT_VENDORIMAGE |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1653 | license_modules_system += $(license_modules_rehomed) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1654 | system_xml_directories := xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm |
| 1655 | 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] | 1656 | else |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1657 | license_modules_vendor += $(license_modules_rehomed) |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1658 | system_xml_directories := xml_system |
| 1659 | 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] | 1660 | endif |
| 1661 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1662 | endif # PRODUCT_NOTICE_SPLIT |
| 1663 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1664 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_or_xml_gz) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1665 | |
Bob Badour | 56e0de5 | 2022-08-02 17:46:48 +0000 | [diff] [blame] | 1666 | need_vendor_notice:=false |
| 1667 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 1668 | need_vendor_notice:=true |
| 1669 | endif |
| 1670 | |
| 1671 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 1672 | need_vendor_notice:=true |
| 1673 | endif |
| 1674 | |
| 1675 | ifdef BUILDING_VENDOR_IMAGE |
| 1676 | need_vendor_notice:=true |
| 1677 | endif |
| 1678 | |
| 1679 | ifeq (true,$(need_vendor_notice)) |
| 1680 | ifneq (,$(installed_vendor_notice_xml_gz)) |
| 1681 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_notice_xml_gz) |
| 1682 | endif |
| 1683 | endif |
| 1684 | |
| 1685 | need_vendor_notice:= |
| 1686 | |
| 1687 | ifdef BUILDING_ODM_IMAGE |
| 1688 | ifneq (,$(installed_odm_notice_xml_gz)) |
| 1689 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_notice_xml_gz) |
| 1690 | endif |
| 1691 | endif |
| 1692 | |
| 1693 | ifdef BUILDING_PRODUCT_IMAGE |
| 1694 | ifneq (,$(installed_product_notice_xml_gz)) |
| 1695 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_product_notice_xml_gz) |
| 1696 | endif |
| 1697 | endif |
| 1698 | |
| 1699 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 1700 | ifneq (,$(installed_system_ext_notice_xml_gz)) |
| 1701 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_ext_notice_xml_gz) |
| 1702 | endif |
| 1703 | endif |
| 1704 | |
| 1705 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 1706 | ifneq (,$(installed_vendor_dlkm_notice_xml_gz) |
| 1707 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_dlkm_notice_xml_gz) |
| 1708 | endif |
| 1709 | endif |
| 1710 | |
| 1711 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 1712 | ifneq (,$(installed_odm_dlkm_notice_xml_gz)) |
| 1713 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_dlkm_notice_xml_gz) |
| 1714 | endif |
| 1715 | endif |
| 1716 | |
| 1717 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 1718 | ifneq (,$(installed_system_dlkm_notice_xml_gz)) |
| 1719 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_dlkm_notice_xml_gz) |
| 1720 | endif |
| 1721 | endif |
| 1722 | |
Ying Wang | 62c81f8 | 2013-08-22 20:02:03 -0700 | [diff] [blame] | 1723 | endif # TARGET_BUILD_APPS |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1724 | |
| 1725 | # The kernel isn't really a module, so to get its module file in there, we |
| 1726 | # make the target NOTICE files depend on this particular file too, which will |
| 1727 | # then be in the right directory for the find in combine-notice-files to work. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 1728 | $(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] | 1729 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1730 | # No matter where it gets copied from, a copied linux kernel is licensed under "GPL 2.0 only" |
| 1731 | $(eval $(call declare-copy-files-license-metadata,,:kernel,SPDX-license-identifier-GPL-2.0-only,notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,)) |
| 1732 | |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 1733 | $(eval $(call copy-one-file,$(BUILD_SYSTEM)/WINPTHREADS_COPYING,$(winpthreads_notice_file))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1734 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1735 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1736 | # ################################################################# |
| 1737 | # Targets for user images |
| 1738 | # ################################################################# |
| 1739 | |
JP Abgrall | 6ea5bd6 | 2014-10-22 20:01:22 -0700 | [diff] [blame] | 1740 | # These options tell the recovery updater/installer how to mount the partitions writebale. |
| 1741 | # <fstype>=<fstype_opts>[|<fstype_opts>]... |
| 1742 | # fstype_opts := <opt>[,<opt>]... |
| 1743 | # opt := <name>[=<value>] |
JP Abgrall | 775b1ab | 2014-10-23 16:27:03 -0700 | [diff] [blame] | 1744 | # The following worked on Nexus devices with Kernel 3.1, 3.4, 3.10 |
| 1745 | 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] | 1746 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1747 | INTERNAL_USERIMAGES_DEPS := \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1748 | $(BUILD_IMAGE) \ |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1749 | $(MKE2FS_CONF) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1750 | $(MKEXTUSERIMG) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1751 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 1752 | $(call declare-1p-target,$(MKE2FS_CONF),system/extras) |
| 1753 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1754 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
| 1755 | INTERNAL_USERIMAGES_DEPS += $(MKF2FSUSERIMG) |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 1756 | endif |
| 1757 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1758 | ifneq ($(filter \ |
| 1759 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1760 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1761 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1762 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1763 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1764 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1765 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1766 | $(BOARD_SYSTEM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1767 | ,erofs),) |
David Anderson | 94ad5bb | 2022-03-04 10:57:58 -0800 | [diff] [blame] | 1768 | INTERNAL_USERIMAGES_DEPS += $(MKEROFS) |
David Anderson | f54665f | 2022-03-04 14:42:18 -0800 | [diff] [blame] | 1769 | ifeq ($(BOARD_EROFS_USE_LEGACY_COMPRESSION),true) |
| 1770 | BOARD_EROFS_COMPRESSOR ?= "lz4" |
| 1771 | else |
Kelvin Zhang | 37d4929 | 2021-12-01 14:21:24 -0800 | [diff] [blame] | 1772 | BOARD_EROFS_COMPRESSOR ?= "lz4hc,9" |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1773 | endif |
David Anderson | f54665f | 2022-03-04 14:42:18 -0800 | [diff] [blame] | 1774 | endif |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1775 | |
| 1776 | ifneq ($(filter \ |
| 1777 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1778 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1779 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1780 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1781 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1782 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1783 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1784 | $(BOARD_SYSTEM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1785 | ,squashfs),) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1786 | INTERNAL_USERIMAGES_DEPS += $(MKSQUASHFSUSERIMG) |
| 1787 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1788 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1789 | ifeq (true,$(PRODUCT_SUPPORTS_VERITY)) |
Tao Bao | b4ec6d7 | 2018-03-15 23:21:28 -0700 | [diff] [blame] | 1790 | INTERNAL_USERIMAGES_DEPS += $(BUILD_VERITY_METADATA) $(BUILD_VERITY_TREE) $(APPEND2SIMG) $(VERITY_SIGNER) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1791 | ifeq (true,$(PRODUCT_SUPPORTS_VERITY_FEC)) |
Sami Tolvanen | f99b531 | 2015-05-20 07:30:57 +0100 | [diff] [blame] | 1792 | INTERNAL_USERIMAGES_DEPS += $(FEC) |
| 1793 | endif |
Geremy Condra | fd6f751 | 2013-06-16 17:26:08 -0700 | [diff] [blame] | 1794 | endif |
| 1795 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1796 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1797 | INTERNAL_USERIMAGES_DEPS += $(AVBTOOL) |
| 1798 | endif |
| 1799 | |
| 1800 | # Get a colon-separated list of search paths. |
| 1801 | INTERNAL_USERIMAGES_BINARY_PATHS := $(subst $(space),:,$(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))) |
| 1802 | |
Jooyung Han | b27c2e8 | 2020-09-23 19:15:20 +0900 | [diff] [blame] | 1803 | # Collects file_contexts files from modules to be installed |
| 1804 | $(call merge-fc-files, \ |
| 1805 | $(sort $(foreach m,$(product_MODULES),$(ALL_MODULES.$(m).FILE_CONTEXTS))),\ |
| 1806 | $(call intermediates-dir-for,ETC,file_contexts.bin)/file_contexts.modules.tmp) |
| 1807 | |
Alex Klyubin | 092c902 | 2017-03-13 13:28:34 -0700 | [diff] [blame] | 1808 | 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] | 1809 | |
Ying Wang | fdbd9cb | 2012-11-21 10:47:00 -0800 | [diff] [blame] | 1810 | INTERNAL_USERIMAGES_DEPS += $(SELINUX_FC) |
| 1811 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 1812 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1813 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1814 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1815 | $(error vboot 1.0 doesn't support logical partition) |
| 1816 | endif |
| 1817 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 1818 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1819 | |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1820 | # $(1) the partition name (eg system) |
| 1821 | # $(2) the image prop file |
| 1822 | define add-common-flags-to-image-props |
| 1823 | $(eval _var := $(call to-upper,$(1))) |
| 1824 | $(hide) echo "$(1)_selinux_fc=$(SELINUX_FC)" >> $(2) |
| 1825 | $(hide) echo "building_$(1)_image=$(BUILDING_$(_var)_IMAGE)" >> $(2) |
| 1826 | endef |
| 1827 | |
| 1828 | # $(1) the partition name (eg system) |
| 1829 | # $(2) the image prop file |
| 1830 | define add-common-ro-flags-to-image-props |
| 1831 | $(eval _var := $(call to-upper,$(1))) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 1832 | $(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] | 1833 | $(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] | 1834 | $(if $(BOARD_$(_var)IMAGE_EROFS_PCLUSTER_SIZE),$(hide) echo "$(1)_erofs_pcluster_size=$(BOARD_$(_var)IMAGE_EROFS_PCLUSTER_SIZE)" >> $(2)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1835 | $(if $(BOARD_$(_var)IMAGE_EXTFS_INODE_COUNT),$(hide) echo "$(1)_extfs_inode_count=$(BOARD_$(_var)IMAGE_EXTFS_INODE_COUNT)" >> $(2)) |
| 1836 | $(if $(BOARD_$(_var)IMAGE_EXTFS_RSV_PCT),$(hide) echo "$(1)_extfs_rsv_pct=$(BOARD_$(_var)IMAGE_EXTFS_RSV_PCT)" >> $(2)) |
| 1837 | $(if $(BOARD_$(_var)IMAGE_F2FS_SLOAD_COMPRESS_FLAGS),$(hide) echo "$(1)_f2fs_sldc_flags=$(BOARD_$(_var)IMAGE_F2FS_SLOAD_COMPRESS_FLAGS)" >> $(2)) |
| 1838 | $(if $(BOARD_$(_var)IMAGE_FILE_SYSTEM_COMPRESS),$(hide) echo "$(1)_f2fs_compress=$(BOARD_$(_var)IMAGE_FILE_SYSTEM_COMPRESS)" >> $(2)) |
| 1839 | $(if $(BOARD_$(_var)IMAGE_FILE_SYSTEM_TYPE),$(hide) echo "$(1)_fs_type=$(BOARD_$(_var)IMAGE_FILE_SYSTEM_TYPE)" >> $(2)) |
| 1840 | $(if $(BOARD_$(_var)IMAGE_JOURNAL_SIZE),$(hide) echo "$(1)_journal_size=$(BOARD_$(_var)IMAGE_JOURNAL_SIZE)" >> $(2)) |
| 1841 | $(if $(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "$(1)_reserved_size=$(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE)" >> $(2)) |
| 1842 | $(if $(BOARD_$(_var)IMAGE_PARTITION_SIZE),$(hide) echo "$(1)_size=$(BOARD_$(_var)IMAGE_PARTITION_SIZE)" >> $(2)) |
| 1843 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "$(1)_squashfs_block_size=$(BOARD_$(_var)IMAGE_SQUASHFS_BLOCK_SIZE)" >> $(2)) |
| 1844 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "$(1)_squashfs_compressor=$(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR)" >> $(2)) |
| 1845 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "$(1)_squashfs_compressor_opt=$(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(2)) |
| 1846 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "$(1)_squashfs_disable_4k_align=$(BOARD_$(_var)IMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(2)) |
| 1847 | $(if $(PRODUCT_$(_var)_BASE_FS_PATH),$(hide) echo "$(1)_base_fs_file=$(PRODUCT_$(_var)_BASE_FS_PATH)" >> $(2)) |
| 1848 | $(eval _size := $(BOARD_$(_var)IMAGE_PARTITION_SIZE)) |
| 1849 | $(eval _reserved := $(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE)) |
| 1850 | $(eval _headroom := $(PRODUCT_$(_var)_HEADROOM)) |
David Anderson | 5f4aa6c | 2021-09-23 17:03:14 -0700 | [diff] [blame] | 1851 | $(if $(or $(_size), $(_reserved), $(_headroom)),, |
| 1852 | $(hide) echo "$(1)_disable_sparse=true" >> $(2)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1853 | $(call add-common-flags-to-image-props,$(1),$(2)) |
David Anderson | 9e95a02 | 2021-08-31 21:32:45 -0700 | [diff] [blame] | 1854 | endef |
| 1855 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1856 | # $(1): the path of the output dictionary file |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1857 | # $(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] | 1858 | # $(3): additional "key=value" pairs to append to the dictionary file. |
| 1859 | define generate-image-prop-dictionary |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1860 | $(if $(filter $(2),system),\ |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 1861 | $(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] | 1862 | $(if $(PRODUCT_SYSTEM_HEADROOM),$(hide) echo "system_headroom=$(PRODUCT_SYSTEM_HEADROOM)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1863 | $(call add-common-ro-flags-to-image-props,system,$(1)) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1864 | ) |
| 1865 | $(if $(filter $(2),system_other),\ |
| 1866 | $(hide) echo "building_system_other_image=$(BUILDING_SYSTEM_OTHER_IMAGE)" >> $(1) |
David Anderson | 9e95a02 | 2021-08-31 21:32:45 -0700 | [diff] [blame] | 1867 | $(if $(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE),, |
| 1868 | $(hide) echo "system_other_disable_sparse=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1869 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1870 | $(if $(filter $(2),userdata),\ |
| 1871 | $(if $(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "userdata_fs_type=$(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1872 | $(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] | 1873 | $(if $(PRODUCT_FS_CASEFOLD),$(hide) echo "needs_casefold=$(PRODUCT_FS_CASEFOLD)" >> $(1)) |
| 1874 | $(if $(PRODUCT_QUOTA_PROJID),$(hide) echo "needs_projid=$(PRODUCT_QUOTA_PROJID)" >> $(1)) |
Jaegeuk Kim | 55c16dd | 2020-10-12 19:50:05 -0700 | [diff] [blame] | 1875 | $(if $(PRODUCT_FS_COMPRESSION),$(hide) echo "needs_compress=$(PRODUCT_FS_COMPRESSION)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1876 | $(call add-common-flags-to-image-props,userdata,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1877 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1878 | $(if $(filter $(2),cache),\ |
| 1879 | $(if $(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "cache_fs_type=$(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1880 | $(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] | 1881 | $(call add-common-flags-to-image-props,cache,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1882 | ) |
| 1883 | $(if $(filter $(2),vendor),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1884 | $(call add-common-ro-flags-to-image-props,vendor,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1885 | ) |
| 1886 | $(if $(filter $(2),product),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1887 | $(call add-common-ro-flags-to-image-props,product,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1888 | ) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1889 | $(if $(filter $(2),system_ext),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1890 | $(call add-common-ro-flags-to-image-props,system_ext,$(1)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 1891 | ) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1892 | $(if $(filter $(2),odm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1893 | $(call add-common-ro-flags-to-image-props,odm,$(1)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1894 | ) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1895 | $(if $(filter $(2),vendor_dlkm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1896 | $(call add-common-ro-flags-to-image-props,vendor_dlkm,$(1)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1897 | ) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1898 | $(if $(filter $(2),odm_dlkm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1899 | $(call add-common-ro-flags-to-image-props,odm_dlkm,$(1)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1900 | ) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1901 | $(if $(filter $(2),system_dlkm),\ |
| 1902 | $(call add-common-ro-flags-to-image-props,system_dlkm,$(1)) |
| 1903 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1904 | $(if $(filter $(2),oem),\ |
| 1905 | $(if $(BOARD_OEMIMAGE_PARTITION_SIZE),$(hide) echo "oem_size=$(BOARD_OEMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1906 | $(if $(BOARD_OEMIMAGE_JOURNAL_SIZE),$(hide) echo "oem_journal_size=$(BOARD_OEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1907 | $(if $(BOARD_OEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "oem_extfs_inode_count=$(BOARD_OEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1908 | $(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] | 1909 | $(call add-common-flags-to-image-props,oem,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1910 | ) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1911 | $(hide) echo "ext_mkuserimg=$(notdir $(MKEXTUSERIMG))" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1912 | |
Cole Faust | 8fc7bef | 2022-06-15 16:10:49 -0700 | [diff] [blame] | 1913 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT2)),$(hide) echo "fs_type=ext2" >> $(1), |
| 1914 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT3)),$(hide) echo "fs_type=ext3" >> $(1), |
| 1915 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT4)),$(hide) echo "fs_type=ext4" >> $(1)))) |
| 1916 | |
| 1917 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)),,$(hide) echo "extfs_sparse_flag=-s" >> $(1)) |
| 1918 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EROFS_DISABLED)),,$(hide) echo "erofs_sparse_flag=-s" >> $(1)) |
| 1919 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_SQUASHFS_DISABLED)),,$(hide) echo "squashfs_sparse_flag=-s" >> $(1)) |
| 1920 | $(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] | 1921 | $(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] | 1922 | $(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] | 1923 | $(if $(BOARD_EROFS_PCLUSTER_SIZE),$(hide) echo "erofs_pcluster_size=$(BOARD_EROFS_PCLUSTER_SIZE)" >> $(1)) |
| 1924 | $(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] | 1925 | $(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] | 1926 | $(if $(BOARD_EXT4_SHARE_DUP_BLOCKS),$(hide) echo "ext4_share_dup_blocks=$(BOARD_EXT4_SHARE_DUP_BLOCKS)" >> $(1)) |
| 1927 | $(if $(BOARD_FLASH_LOGICAL_BLOCK_SIZE), $(hide) echo "flash_logical_block_size=$(BOARD_FLASH_LOGICAL_BLOCK_SIZE)" >> $(1)) |
| 1928 | $(if $(BOARD_FLASH_ERASE_BLOCK_SIZE), $(hide) echo "flash_erase_block_size=$(BOARD_FLASH_ERASE_BLOCK_SIZE)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1929 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity=$(PRODUCT_SUPPORTS_VERITY)" >> $(1)) |
| 1930 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity_key=$(PRODUCT_VERITY_SIGNING_KEY)" >> $(1)) |
| 1931 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity_signer_cmd=$(notdir $(VERITY_SIGNER))" >> $(1)) |
| 1932 | $(if $(PRODUCT_SUPPORTS_VERITY_FEC),$(hide) echo "verity_fec=$(PRODUCT_SUPPORTS_VERITY_FEC)" >> $(1)) |
Bowgo Tsai | 6ceeb1a | 2017-10-11 16:21:48 +0800 | [diff] [blame] | 1933 | $(if $(filter eng, $(TARGET_BUILD_VARIANT)),$(hide) echo "verity_disable=true" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1934 | $(if $(PRODUCT_SYSTEM_VERITY_PARTITION),$(hide) echo "system_verity_block_device=$(PRODUCT_SYSTEM_VERITY_PARTITION)" >> $(1)) |
| 1935 | $(if $(PRODUCT_VENDOR_VERITY_PARTITION),$(hide) echo "vendor_verity_block_device=$(PRODUCT_VENDOR_VERITY_PARTITION)" >> $(1)) |
| 1936 | $(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] | 1937 | $(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] | 1938 | $(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] | 1939 | $(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] | 1940 | $(if $(PRODUCT_SYSTEM_DLKM_VERITY_PARTITION),$(hide) echo "system_dlkm_verity_block_device=$(PRODUCT_SYSTEM_DLKM_VERITY_PARTITION)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1941 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot=$(PRODUCT_SUPPORTS_VBOOT)" >> $(1)) |
| 1942 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_key=$(PRODUCT_VBOOT_SIGNING_KEY)" >> $(1)) |
| 1943 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_subkey=$(PRODUCT_VBOOT_SIGNING_SUBKEY)" >> $(1)) |
| 1944 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "futility=$(notdir $(FUTILITY))" >> $(1)) |
| 1945 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_signer_cmd=$(VBOOT_SIGNER)" >> $(1)) |
Tao Bao | 3cba374 | 2017-05-16 16:27:25 -0700 | [diff] [blame] | 1946 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_avbtool=$(notdir $(AVBTOOL))" >> $(1)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1947 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1948 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1949 | $(if $(BOARD_AVB_ENABLE),\ |
| 1950 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 1951 | $(hide) echo "avb_system_key_path=$(BOARD_AVB_SYSTEM_KEY_PATH)" >> $(1) |
| 1952 | $(hide) echo "avb_system_algorithm=$(BOARD_AVB_SYSTEM_ALGORITHM)" >> $(1) |
| 1953 | $(hide) echo "avb_system_rollback_index_location=$(BOARD_AVB_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 1954 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1955 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1956 | $(if $(BOARD_AVB_ENABLE),\ |
| 1957 | $(if $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH),\ |
| 1958 | $(hide) echo "avb_system_other_key_path=$(BOARD_AVB_SYSTEM_OTHER_KEY_PATH)" >> $(1) |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 1959 | $(hide) echo "avb_system_other_algorithm=$(BOARD_AVB_SYSTEM_OTHER_ALGORITHM)" >> $(1))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1960 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1961 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1962 | $(if $(BOARD_AVB_ENABLE),\ |
| 1963 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 1964 | $(hide) echo "avb_vendor_key_path=$(BOARD_AVB_VENDOR_KEY_PATH)" >> $(1) |
| 1965 | $(hide) echo "avb_vendor_algorithm=$(BOARD_AVB_VENDOR_ALGORITHM)" >> $(1) |
| 1966 | $(hide) echo "avb_vendor_rollback_index_location=$(BOARD_AVB_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 1967 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1968 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_add_hashtree_footer_args=$(BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1969 | $(if $(BOARD_AVB_ENABLE),\ |
| 1970 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 1971 | $(hide) echo "avb_product_key_path=$(BOARD_AVB_PRODUCT_KEY_PATH)" >> $(1) |
| 1972 | $(hide) echo "avb_product_algorithm=$(BOARD_AVB_PRODUCT_ALGORITHM)" >> $(1) |
| 1973 | $(hide) echo "avb_product_rollback_index_location=$(BOARD_AVB_PRODUCT_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1974 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_ext_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
Tao Bao | 1ebda8d | 2018-08-01 17:21:14 -0700 | [diff] [blame] | 1975 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1976 | $(hide) echo "avb_system_ext_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 1977 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1978 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 1979 | $(hide) echo "avb_system_ext_key_path=$(BOARD_AVB_SYSTEM_EXT_KEY_PATH)" >> $(1) |
| 1980 | $(hide) echo "avb_system_ext_algorithm=$(BOARD_AVB_SYSTEM_EXT_ALGORITHM)" >> $(1) |
| 1981 | $(hide) echo "avb_system_ext_rollback_index_location=$(BOARD_AVB_SYSTEM_EXT_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1982 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1983 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_add_hashtree_footer_args=$(BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1984 | $(if $(BOARD_AVB_ENABLE),\ |
| 1985 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 1986 | $(hide) echo "avb_odm_key_path=$(BOARD_AVB_ODM_KEY_PATH)" >> $(1) |
| 1987 | $(hide) echo "avb_odm_algorithm=$(BOARD_AVB_ODM_ALGORITHM)" >> $(1) |
| 1988 | $(hide) echo "avb_odm_rollback_index_location=$(BOARD_AVB_ODM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1989 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1990 | $(if $(BOARD_AVB_ENABLE),\ |
| 1991 | $(hide) echo "avb_vendor_dlkm_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1992 | $(if $(BOARD_AVB_ENABLE),\ |
| 1993 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 1994 | $(hide) echo "avb_vendor_dlkm_key_path=$(BOARD_AVB_VENDOR_DLKM_KEY_PATH)" >> $(1) |
| 1995 | $(hide) echo "avb_vendor_dlkm_algorithm=$(BOARD_AVB_VENDOR_DLKM_ALGORITHM)" >> $(1) |
| 1996 | $(hide) echo "avb_vendor_dlkm_rollback_index_location=$(BOARD_AVB_VENDOR_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1997 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1998 | $(if $(BOARD_AVB_ENABLE),\ |
| 1999 | $(hide) echo "avb_odm_dlkm_add_hashtree_footer_args=$(BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2000 | $(if $(BOARD_AVB_ENABLE),\ |
| 2001 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 2002 | $(hide) echo "avb_odm_dlkm_key_path=$(BOARD_AVB_ODM_DLKM_KEY_PATH)" >> $(1) |
| 2003 | $(hide) echo "avb_odm_dlkm_algorithm=$(BOARD_AVB_ODM_DLKM_ALGORITHM)" >> $(1) |
| 2004 | $(hide) echo "avb_odm_dlkm_rollback_index_location=$(BOARD_AVB_ODM_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2005 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2006 | $(if $(BOARD_AVB_ENABLE),\ |
| 2007 | $(hide) echo "avb_system_dlkm_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2008 | $(if $(BOARD_AVB_ENABLE),\ |
| 2009 | $(if $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH),\ |
| 2010 | $(hide) echo "avb_system_dlkm_key_path=$(BOARD_AVB_SYSTEM_DLKM_KEY_PATH)" >> $(1) |
| 2011 | $(hide) echo "avb_system_dlkm_algorithm=$(BOARD_AVB_SYSTEM_DLKM_ALGORITHM)" >> $(1) |
| 2012 | $(hide) echo "avb_system_dlkm_rollback_index_location=$(BOARD_SYSTEM_SYSTEM_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2013 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
| 2014 | $(hide) echo "recovery_as_boot=true" >> $(1)) |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 2015 | $(if $(filter true,$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)),\ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 2016 | $(hide) echo "system_root_image=true" >> $(1)) |
Bowgo Tsai | 85578e0 | 2022-04-19 10:50:59 +0800 | [diff] [blame] | 2017 | $(if $(filter true,$(BOARD_BUILD_GKI_BOOT_IMAGE_WITHOUT_RAMDISK)),\ |
| 2018 | $(hide) echo "gki_boot_image_without_ramdisk=true" >> $(1)) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 2019 | $(hide) echo "root_dir=$(TARGET_ROOT_OUT)" >> $(1) |
Tamas Petz | 89418f0 | 2020-02-03 15:40:15 +0100 | [diff] [blame] | 2020 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITION_SIZE)),\ |
| 2021 | $(hide) echo "use_dynamic_partition_size=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2022 | $(if $(3),$(hide) $(foreach kv,$(3),echo "$(kv)" >> $(1);)) |
| 2023 | endef |
| 2024 | |
| 2025 | # $(1): the path of the output dictionary file |
| 2026 | # $(2): additional "key=value" pairs to append to the dictionary file. |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2027 | PROP_DICTIONARY_IMAGES := oem |
| 2028 | ifdef BUILDING_CACHE_IMAGE |
| 2029 | PROP_DICTIONARY_IMAGES += cache |
| 2030 | endif |
| 2031 | ifdef BUILDING_SYSTEM_IMAGE |
| 2032 | PROP_DICTIONARY_IMAGES += system |
| 2033 | endif |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 2034 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 2035 | PROP_DICTIONARY_IMAGES += system_other |
| 2036 | endif |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2037 | ifdef BUILDING_USERDATA_IMAGE |
| 2038 | PROP_DICTIONARY_IMAGES += userdata |
| 2039 | endif |
| 2040 | ifdef BUILDING_VENDOR_IMAGE |
| 2041 | PROP_DICTIONARY_IMAGES += vendor |
| 2042 | endif |
| 2043 | ifdef BUILDING_PRODUCT_IMAGE |
| 2044 | PROP_DICTIONARY_IMAGES += product |
| 2045 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2046 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 2047 | PROP_DICTIONARY_IMAGES += system_ext |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2048 | endif |
| 2049 | ifdef BUILDING_ODM_IMAGE |
| 2050 | PROP_DICTIONARY_IMAGES += odm |
| 2051 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2052 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 2053 | PROP_DICTIONARY_IMAGES += vendor_dlkm |
| 2054 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2055 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 2056 | PROP_DICTIONARY_IMAGES += odm_dlkm |
| 2057 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2058 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 2059 | PROP_DICTIONARY_IMAGES += system_dlkm |
| 2060 | endif |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2061 | define generate-userimage-prop-dictionary |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2062 | $(call generate-image-prop-dictionary,$(1),$(PROP_DICTIONARY_IMAGES),$(2)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2063 | endef |
| 2064 | |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 2065 | # $(1): the path of the input dictionary file, where each line has the format key=value |
| 2066 | # $(2): the key to look up |
| 2067 | define read-image-prop-dictionary |
| 2068 | $$(grep '$(2)=' $(1) | cut -f2- -d'=') |
| 2069 | endef |
| 2070 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2071 | # ----------------------------------------------------------------- |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2072 | # Recovery image |
Doug Zongker | 8cebf1f | 2009-07-07 17:14:25 -0700 | [diff] [blame] | 2073 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2074 | # 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] | 2075 | 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] | 2076 | ifdef BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2077 | |
Ying Wang | 3752614 | 2015-03-10 12:02:57 -0700 | [diff] [blame] | 2078 | INTERNAL_RECOVERYIMAGE_FILES := $(filter $(TARGET_RECOVERY_OUT)/%, \ |
| 2079 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2080 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2081 | INSTALLED_FILES_FILE_RECOVERY := $(PRODUCT_OUT)/installed-files-recovery.txt |
| 2082 | INSTALLED_FILES_JSON_RECOVERY := $(INSTALLED_FILES_FILE_RECOVERY:.txt=.json) |
| 2083 | |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 2084 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2085 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 2086 | endif |
| 2087 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2088 | # TODO(b/30414428): Can't depend on INTERNAL_RECOVERYIMAGE_FILES alone like other |
| 2089 | # INSTALLED_FILES_FILE_* rules. Because currently there're cp/rsync/rm commands in |
| 2090 | # build-recoveryimage-target, which would touch the files under TARGET_RECOVERY_OUT and race with |
| 2091 | # the call to FILELIST. |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 2092 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2093 | |
| 2094 | $(INSTALLED_FILES_FILE_RECOVERY): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RECOVERY) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2095 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERYIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2096 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 2097 | mkdir -p $(dir $@) |
| 2098 | rm -f $@ |
| 2099 | $(FILESLIST) $(TARGET_RECOVERY_ROOT_OUT) > $(@:.txt=.json) |
| 2100 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2101 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2102 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_RECOVERY))) |
| 2103 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_RECOVERY))) |
| 2104 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2105 | recovery_sepolicy := \ |
| 2106 | $(TARGET_RECOVERY_ROOT_OUT)/sepolicy \ |
Jeff Vander Stoep | 4ff042c | 2017-06-13 08:30:46 -0700 | [diff] [blame] | 2107 | $(TARGET_RECOVERY_ROOT_OUT)/plat_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2108 | $(TARGET_RECOVERY_ROOT_OUT)/plat_service_contexts \ |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2109 | $(TARGET_RECOVERY_ROOT_OUT)/plat_property_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 2110 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2111 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_service_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 2112 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_property_contexts \ |
| 2113 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2114 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_service_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2115 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_property_contexts \ |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 2116 | $(TARGET_RECOVERY_ROOT_OUT)/odm_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2117 | $(TARGET_RECOVERY_ROOT_OUT)/odm_property_contexts \ |
| 2118 | $(TARGET_RECOVERY_ROOT_OUT)/product_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2119 | $(TARGET_RECOVERY_ROOT_OUT)/product_service_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2120 | $(TARGET_RECOVERY_ROOT_OUT)/product_property_contexts |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 2121 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2122 | # Passed into rsync from non-recovery root to recovery root, to avoid overwriting recovery-specific |
| 2123 | # SELinux files |
| 2124 | IGNORE_RECOVERY_SEPOLICY := $(patsubst $(TARGET_RECOVERY_OUT)/%,--exclude=/%,$(recovery_sepolicy)) |
| 2125 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 2126 | # if building multiple boot images from multiple kernels, use the first kernel listed |
| 2127 | # for the recovery image |
| 2128 | recovery_kernel := $(firstword $(INSTALLED_KERNEL_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2129 | recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2130 | recovery_resources_common := bootable/recovery/res |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2131 | |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 2132 | # Set recovery_density to a density bucket based on TARGET_SCREEN_DENSITY, PRODUCT_AAPT_PREF_CONFIG, |
| 2133 | # or mdpi, in order of preference. We support both specific buckets (e.g. xdpi) and numbers, |
| 2134 | # which get remapped to a bucket. |
| 2135 | recovery_density := $(or $(TARGET_SCREEN_DENSITY),$(PRODUCT_AAPT_PREF_CONFIG),mdpi) |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 2136 | ifeq (,$(filter xxxhdpi xxhdpi xhdpi hdpi mdpi,$(recovery_density))) |
| 2137 | recovery_density_value := $(patsubst %dpi,%,$(recovery_density)) |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 2138 | # 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] | 2139 | # ------160------240------320----------480------------640------ |
| 2140 | # mdpi hdpi xhdpi xxhdpi xxxhdpi |
| 2141 | recovery_density := $(strip \ |
| 2142 | $(or $(if $(filter $(shell echo $$(($(recovery_density_value) >= 560))),1),xxxhdpi),\ |
| 2143 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 400))),1),xxhdpi),\ |
| 2144 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 280))),1),xhdpi),\ |
| 2145 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 200))),1),hdpi,mdpi))) |
Doug Zongker | 8eaeea9 | 2014-05-12 15:32:20 -0700 | [diff] [blame] | 2146 | endif |
| 2147 | |
| 2148 | ifneq (,$(wildcard $(recovery_resources_common)-$(recovery_density))) |
| 2149 | recovery_resources_common := $(recovery_resources_common)-$(recovery_density) |
| 2150 | else |
Doug Zongker | 25d55f8 | 2014-04-04 13:51:15 -0700 | [diff] [blame] | 2151 | recovery_resources_common := $(recovery_resources_common)-xhdpi |
| 2152 | endif |
| 2153 | |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 2154 | # Select the 18x32 font on high-density devices (xhdpi and up); and the 12x22 font on other devices. |
| 2155 | # Note that the font selected here can be overridden for a particular device by putting a font.png |
| 2156 | # in its private recovery resources. |
| 2157 | ifneq (,$(filter xxxhdpi xxhdpi xhdpi,$(recovery_density))) |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2158 | recovery_font := bootable/recovery/fonts/18x32.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2159 | else |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2160 | recovery_font := bootable/recovery/fonts/12x22.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2161 | endif |
| 2162 | |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2163 | |
| 2164 | # We will only generate the recovery background text images if the variable |
| 2165 | # TARGET_RECOVERY_UI_SCREEN_WIDTH is defined. For devices with xxxhdpi and xxhdpi, we set the |
| 2166 | # variable to the commonly used values here, if it hasn't been intialized elsewhere. While for |
| 2167 | # devices with lower density, they must have TARGET_RECOVERY_UI_SCREEN_WIDTH defined in their |
| 2168 | # BoardConfig in order to use this feature. |
| 2169 | ifeq ($(recovery_density),xxxhdpi) |
| 2170 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1440 |
| 2171 | else ifeq ($(recovery_density),xxhdpi) |
| 2172 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1080 |
| 2173 | endif |
| 2174 | |
| 2175 | ifneq ($(TARGET_RECOVERY_UI_SCREEN_WIDTH),) |
| 2176 | # Subtracts the margin width and menu indent from the screen width; it's safe to be conservative. |
| 2177 | ifeq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),) |
| 2178 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - 10)) |
| 2179 | else |
| 2180 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - $(TARGET_RECOVERY_UI_MARGIN_WIDTH) - 10)) |
| 2181 | endif |
| 2182 | |
| 2183 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2184 | 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] | 2185 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/installing_security_text.png |
| 2186 | RECOVERY_ERASING_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/erasing_text.png |
| 2187 | RECOVERY_ERROR_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/error_text.png |
| 2188 | RECOVERY_NO_COMMAND_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/no_command_text.png |
| 2189 | |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2190 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/cancel_wipe_data_text.png |
| 2191 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/factory_data_reset_text.png |
| 2192 | RECOVERY_TRY_AGAIN_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/try_again_text.png |
| 2193 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_confirmation_text.png |
| 2194 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_menu_header_text.png |
| 2195 | |
| 2196 | generated_recovery_text_files := \ |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2197 | $(RECOVERY_INSTALLING_TEXT_FILE) \ |
| 2198 | $(RECOVERY_INSTALLING_SECURITY_TEXT_FILE) \ |
| 2199 | $(RECOVERY_ERASING_TEXT_FILE) \ |
| 2200 | $(RECOVERY_ERROR_TEXT_FILE) \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2201 | $(RECOVERY_NO_COMMAND_TEXT_FILE) \ |
| 2202 | $(RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE) \ |
| 2203 | $(RECOVERY_FACTORY_DATA_RESET_TEXT_FILE) \ |
| 2204 | $(RECOVERY_TRY_AGAIN_TEXT_FILE) \ |
| 2205 | $(RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE) \ |
| 2206 | $(RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2207 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2208 | resource_dir := bootable/recovery/tools/recovery_l10n/res/ |
| 2209 | resource_dir_deps := $(sort $(shell find $(resource_dir) -name *.xml -not -name .*)) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2210 | image_generator_jar := $(HOST_OUT_JAVA_LIBRARIES)/RecoveryImageGenerator.jar |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2211 | zopflipng := $(HOST_OUT_EXECUTABLES)/zopflipng |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2212 | $(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] | 2213 | $(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] | 2214 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RESOURCE_DIR := $(resource_dir) |
| 2215 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_IMAGE_GENERATOR_JAR := $(image_generator_jar) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2216 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_ZOPFLIPNG := $(zopflipng) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2217 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_IMAGE_WIDTH := $(recovery_image_width) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2218 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_BACKGROUND_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2219 | recovery_installing \ |
| 2220 | recovery_installing_security \ |
| 2221 | recovery_erasing \ |
| 2222 | recovery_error \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2223 | recovery_no_command |
| 2224 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_WIPE_DATA_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2225 | recovery_cancel_wipe_data \ |
| 2226 | recovery_factory_data_reset \ |
| 2227 | recovery_try_again \ |
| 2228 | recovery_wipe_data_menu_header \ |
| 2229 | recovery_wipe_data_confirmation |
| 2230 | $(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] | 2231 | $(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] | 2232 | # Prepares the font directory. |
| 2233 | @rm -rf $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
| 2234 | @mkdir -p $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2235 | $(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] | 2236 | @rm -rf $(dir $@) |
| 2237 | @mkdir -p $(dir $@) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2238 | $(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] | 2239 | $(eval output_file := $(dir $@)/$(patsubst recovery_%,%_text.png,$(text_name))) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2240 | $(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] | 2241 | java -jar $(PRIVATE_IMAGE_GENERATOR_JAR) \ |
| 2242 | --image_width $(PRIVATE_RECOVERY_IMAGE_WIDTH) \ |
| 2243 | --text_name $(text_name) \ |
| 2244 | --font_dir $(PRIVATE_RECOVERY_FONT_FILES_DIR) \ |
| 2245 | --resource_dir $(PRIVATE_RESOURCE_DIR) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2246 | --output_file $(output_file) $(center_alignment) && \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2247 | $(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] | 2248 | else |
| 2249 | RECOVERY_INSTALLING_TEXT_FILE := |
| 2250 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := |
| 2251 | RECOVERY_ERASING_TEXT_FILE := |
| 2252 | RECOVERY_ERROR_TEXT_FILE := |
| 2253 | RECOVERY_NO_COMMAND_TEXT_FILE := |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2254 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := |
| 2255 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := |
| 2256 | RECOVERY_TRY_AGAIN_TEXT_FILE := |
| 2257 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := |
| 2258 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2259 | endif # TARGET_RECOVERY_UI_SCREEN_WIDTH |
| 2260 | |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2261 | ifndef TARGET_PRIVATE_RES_DIRS |
| 2262 | TARGET_PRIVATE_RES_DIRS := $(wildcard $(TARGET_DEVICE_DIR)/recovery/res) |
| 2263 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2264 | recovery_resource_deps := $(shell find $(recovery_resources_common) \ |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2265 | $(TARGET_PRIVATE_RES_DIRS) -type f) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2266 | recovery_resource_deps += $(generated_recovery_text_files) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2267 | |
| 2268 | |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2269 | ifdef TARGET_RECOVERY_FSTAB |
| 2270 | recovery_fstab := $(TARGET_RECOVERY_FSTAB) |
Cole Faust | 64c2ddb | 2022-01-07 12:44:31 -0800 | [diff] [blame] | 2271 | else ifdef TARGET_RECOVERY_FSTAB_GENRULE |
| 2272 | # Specifies a soong genrule module that generates an fstab. |
| 2273 | 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] | 2274 | else |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 2275 | recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab)) |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2276 | endif |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2277 | ifdef TARGET_RECOVERY_WIPE |
| 2278 | recovery_wipe := $(TARGET_RECOVERY_WIPE) |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2279 | else |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2280 | recovery_wipe := |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2281 | endif |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2282 | |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2283 | # Traditionally with non-A/B OTA we have: |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2284 | # boot.img + recovery-from-boot.p + recovery-resource.dat = recovery.img. |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2285 | # recovery-resource.dat is needed only if we carry an imgdiff patch of the boot and recovery images |
| 2286 | # 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] | 2287 | # |
| 2288 | # We no longer need that if one of the following conditions holds: |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2289 | # 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] | 2290 | # (BOARD_USES_FULL_RECOVERY_IMAGE = true); |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2291 | # b) We build a single image that contains boot and recovery both - no recovery image to install |
| 2292 | # (BOARD_USES_RECOVERY_AS_BOOT = true); |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2293 | # c) We mount the system image as / and therefore do not have a ramdisk in boot.img |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2294 | # (BOARD_BUILD_SYSTEM_ROOT_IMAGE = true). |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2295 | # d) We include the recovery DTBO image within recovery - not needing the resource file as we |
| 2296 | # do bsdiff because boot and recovery will contain different number of entries |
| 2297 | # (BOARD_INCLUDE_RECOVERY_DTBO = true). |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2298 | # e) We include the recovery ACPIO image within recovery - not needing the resource file as we |
| 2299 | # do bsdiff because boot and recovery will contain different number of entries |
| 2300 | # (BOARD_INCLUDE_RECOVERY_ACPIO = true). |
Yifan Hong | ef7a971 | 2020-10-20 13:17:42 -0700 | [diff] [blame] | 2301 | # f) We build a single image that contains vendor_boot and recovery both - no recovery image to |
| 2302 | # install |
| 2303 | # (BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT = true). |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2304 | |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2305 | ifeq (,$(filter true, $(BOARD_USES_FULL_RECOVERY_IMAGE) $(BOARD_USES_RECOVERY_AS_BOOT) \ |
Yifan Hong | ef7a971 | 2020-10-20 13:17:42 -0700 | [diff] [blame] | 2306 | $(BOARD_BUILD_SYSTEM_ROOT_IMAGE) $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO) \ |
| 2307 | $(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT))) |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2308 | # 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] | 2309 | RECOVERY_RESOURCE_ZIP := $(TARGET_OUT_VENDOR)/etc/recovery-resource.dat |
| 2310 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_RESOURCE_ZIP) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2311 | else |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2312 | RECOVERY_RESOURCE_ZIP := |
| 2313 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2314 | |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2315 | INSTALLED_RECOVERY_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/prop.default |
| 2316 | |
| 2317 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): PRIVATE_RECOVERY_UI_PROPERTIES := \ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2318 | TARGET_RECOVERY_UI_ANIMATION_FPS:animation_fps \ |
| 2319 | TARGET_RECOVERY_UI_MARGIN_HEIGHT:margin_height \ |
| 2320 | TARGET_RECOVERY_UI_MARGIN_WIDTH:margin_width \ |
| 2321 | TARGET_RECOVERY_UI_MENU_UNUSABLE_ROWS:menu_unusable_rows \ |
| 2322 | TARGET_RECOVERY_UI_PROGRESS_BAR_BASELINE:progress_bar_baseline \ |
| 2323 | TARGET_RECOVERY_UI_TOUCH_LOW_THRESHOLD:touch_low_threshold \ |
| 2324 | TARGET_RECOVERY_UI_TOUCH_HIGH_THRESHOLD:touch_high_threshold \ |
| 2325 | TARGET_RECOVERY_UI_VR_STEREO_OFFSET:vr_stereo_offset |
| 2326 | |
| 2327 | # Parses the given list of build variables and writes their values as build properties if defined. |
| 2328 | # For example, if a target defines `TARGET_RECOVERY_UI_MARGIN_HEIGHT := 100`, |
| 2329 | # `ro.recovery.ui.margin_height=100` will be appended to the given output file. |
| 2330 | # $(1): Map from the build variable names to property names |
| 2331 | # $(2): Output file |
| 2332 | define append-recovery-ui-properties |
| 2333 | echo "#" >> $(2) |
| 2334 | echo "# RECOVERY UI BUILD PROPERTIES" >> $(2) |
| 2335 | echo "#" >> $(2) |
| 2336 | $(foreach prop,$(1), \ |
| 2337 | $(eval _varname := $(call word-colon,1,$(prop))) \ |
| 2338 | $(eval _propname := $(call word-colon,2,$(prop))) \ |
| 2339 | $(eval _value := $($(_varname))) \ |
| 2340 | $(if $(_value), \ |
| 2341 | echo ro.recovery.ui.$(_propname)=$(_value) >> $(2) &&)) true |
| 2342 | endef |
| 2343 | |
| 2344 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): \ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2345 | $(INSTALLED_BUILD_PROP_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2346 | $(INSTALLED_VENDOR_BUILD_PROP_TARGET) \ |
| 2347 | $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2348 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2349 | $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) |
Tao Bao | 1edaca1 | 2018-09-18 10:22:54 -0700 | [diff] [blame] | 2350 | @echo "Target recovery buildinfo: $@" |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2351 | $(hide) mkdir -p $(dir $@) |
| 2352 | $(hide) rm -f $@ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2353 | $(hide) cat $(INSTALLED_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2354 | $(hide) cat $(INSTALLED_VENDOR_BUILD_PROP_TARGET) >> $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2355 | $(hide) cat $(INSTALLED_ODM_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2356 | $(hide) cat $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) >> $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2357 | $(hide) cat $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2358 | $(call append-recovery-ui-properties,$(PRIVATE_RECOVERY_UI_PROPERTIES),$@) |
| 2359 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2360 | $(call declare-1p-target,$(INSTALLED_RECOVERY_BUILD_PROP_TARGET),build) |
| 2361 | $(call declare-license-deps,$(INSTALLED_RECOVERY_BUILD_PROP_TARGET),\ |
| 2362 | $(INSTALLED_BUILD_PROP_TARGET) $(INSTALLED_VENDOR_BUILD_PROP_TARGET) $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2363 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET)) |
| 2364 | |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2365 | # Only install boot/etc/build.prop to recovery image on recovery_as_boot. |
| 2366 | # On device with dedicated recovery partition, the file should come from the boot |
| 2367 | # ramdisk. |
| 2368 | ifeq (true,$(BOARD_USES_RECOVERY_AS_BOOT)) |
| 2369 | INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/$(RAMDISK_BUILD_PROP_REL_PATH) |
| 2370 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET): $(INSTALLED_RAMDISK_BUILD_PROP_TARGET) |
| 2371 | $(copy-file-to-target) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2372 | |
| 2373 | $(call declare-1p-target,$(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET),build) |
| 2374 | $(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] | 2375 | endif |
| 2376 | |
Yifan Hong | c56931c | 2020-10-28 16:35:19 -0700 | [diff] [blame] | 2377 | INTERNAL_RECOVERYIMAGE_ARGS := --ramdisk $(recovery_ramdisk) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2378 | |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 2379 | 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] | 2380 | INTERNAL_RECOVERYIMAGE_ARGS += $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2381 | # Assumes this has already been stripped |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2382 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 2383 | ifdef INTERNAL_KERNEL_CMDLINE |
| 2384 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2385 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 2386 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2387 | ifdef BOARD_KERNEL_BASE |
| 2388 | INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 2389 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 2390 | ifdef BOARD_KERNEL_PAGESIZE |
| 2391 | INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 2392 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2393 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2394 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2395 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2396 | else |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2397 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_DTBOIMAGE) |
| 2398 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 2399 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2400 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 2401 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_acpio $(BOARD_RECOVERY_ACPIO) |
| 2402 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2403 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 2404 | INTERNAL_RECOVERYIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 2405 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 2406 | endif # (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2407 | ifndef BOARD_RECOVERY_MKBOOTIMG_ARGS |
| 2408 | BOARD_RECOVERY_MKBOOTIMG_ARGS := $(BOARD_MKBOOTIMG_ARGS) |
| 2409 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2410 | |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2411 | $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP): $(MKBOOTFS) $(COMPRESSION_COMMAND_DEPS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2412 | $(INTERNAL_ROOT_FILES) \ |
| 2413 | $(INSTALLED_RAMDISK_TARGET) \ |
| 2414 | $(INTERNAL_RECOVERYIMAGE_FILES) \ |
| 2415 | $(recovery_sepolicy) \ |
| 2416 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 2417 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET) \ |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2418 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2419 | $(recovery_resource_deps) \ |
| 2420 | $(recovery_fstab) |
| 2421 | # Making recovery image |
| 2422 | mkdir -p $(TARGET_RECOVERY_OUT) |
| 2423 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sdcard $(TARGET_RECOVERY_ROOT_OUT)/tmp |
| 2424 | # Copying baseline ramdisk... |
| 2425 | # Use rsync because "cp -Rf" fails to overwrite broken symlinks on Mac. |
| 2426 | rsync -a --exclude=sdcard $(IGNORE_RECOVERY_SEPOLICY) $(IGNORE_CACHE_LINK) $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT) |
| 2427 | # Modifying ramdisk contents... |
| 2428 | $(if $(filter true,$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)),, \ |
| 2429 | ln -sf /system/bin/init $(TARGET_RECOVERY_ROOT_OUT)/init) |
| 2430 | # Removes $(TARGET_RECOVERY_ROOT_OUT)/init*.rc EXCEPT init.recovery*.rc. |
| 2431 | find $(TARGET_RECOVERY_ROOT_OUT) -maxdepth 1 -name 'init*.rc' -type f -not -name "init.recovery.*.rc" | xargs rm -f |
| 2432 | cp $(TARGET_ROOT_OUT)/init.recovery.*.rc $(TARGET_RECOVERY_ROOT_OUT)/ 2> /dev/null || true # Ignore error when the src file doesn't exist. |
| 2433 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2434 | rm -rf $(TARGET_RECOVERY_ROOT_OUT)/res/* |
| 2435 | cp -rf $(recovery_resources_common)/* $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2436 | $(foreach recovery_text_file,$(generated_recovery_text_files), \ |
| 2437 | cp -rf $(recovery_text_file) $(TARGET_RECOVERY_ROOT_OUT)/res/images/ &&) true |
| 2438 | cp -f $(recovery_font) $(TARGET_RECOVERY_ROOT_OUT)/res/images/font.png |
| 2439 | $(foreach item,$(TARGET_PRIVATE_RES_DIRS), \ |
| 2440 | cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/$(newline)) |
| 2441 | $(foreach item,$(recovery_fstab), \ |
| 2442 | cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.fstab) |
| 2443 | $(if $(strip $(recovery_wipe)), \ |
| 2444 | cp -f $(recovery_wipe) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.wipe) |
| 2445 | ln -sf prop.default $(TARGET_RECOVERY_ROOT_OUT)/default.prop |
| 2446 | $(BOARD_RECOVERY_IMAGE_PREPARE) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2447 | $(hide) touch $@ |
| 2448 | |
| 2449 | $(recovery_ramdisk): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2450 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RECOVERY_ROOT_OUT) | $(COMPRESSION_COMMAND) > $(recovery_ramdisk) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2451 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2452 | # $(1): output file |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2453 | # $(2): optional kernel file |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2454 | define build-recoveryimage-target |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2455 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2456 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2457 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_RECOVERY_MKBOOTIMG_ARGS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2458 | --output $(1).unsigned, \ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2459 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2460 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2461 | $(BOARD_RECOVERY_MKBOOTIMG_ARGS) --output $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2462 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
| 2463 | $(VBOOT_SIGNER) $(FUTILITY) $(1).unsigned $(PRODUCT_VBOOT_SIGNING_KEY).vbpubk $(PRODUCT_VBOOT_SIGNING_KEY).vbprivk $(PRODUCT_VBOOT_SIGNING_SUBKEY).vbprivk $(1).keyblock $(1)) |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 2464 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2465 | $(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] | 2466 | $(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] | 2467 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 2468 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 2469 | $(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),\ |
| 2470 | $(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] | 2471 | endef |
| 2472 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2473 | recoveryimage-deps := $(MKBOOTIMG) $(recovery_ramdisk) $(recovery_kernel) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2474 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2475 | recoveryimage-deps += $(VBOOT_SIGNER) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 2476 | endif |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2477 | ifeq (true,$(BOARD_AVB_ENABLE)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2478 | recoveryimage-deps += $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2479 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2480 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2481 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2482 | recoveryimage-deps += $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2483 | else |
| 2484 | recoveryimage-deps += $(BOARD_PREBUILT_DTBOIMAGE) |
| 2485 | endif |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2486 | endif |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2487 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2488 | recoveryimage-deps += $(BOARD_RECOVERY_ACPIO) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2489 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2490 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2491 | recoveryimage-deps += $(INSTALLED_DTBIMAGE_TARGET) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2492 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2493 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2494 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 2495 | $(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] | 2496 | $(INSTALLED_BOOTIMAGE_TARGET): $(recoveryimage-deps) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2497 | $(call pretty,"Target boot image from recovery: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2498 | $(call build-recoveryimage-target, $@, $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $@)))) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2499 | |
| 2500 | $(call declare-1p-container,$(INSTALLED_BOOTIMAGE_TARGET),) |
| 2501 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(recoveryimage-deps),$(PRODUCT_OUT)/:/) |
| 2502 | |
| 2503 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2504 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2505 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2506 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(recoveryimage-deps) |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2507 | $(call build-recoveryimage-target, $@, \ |
| 2508 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2509 | |
Tao Bao | 4594d0e | 2015-12-22 09:47:46 -0800 | [diff] [blame] | 2510 | ifdef RECOVERY_RESOURCE_ZIP |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2511 | $(RECOVERY_RESOURCE_ZIP): $(INSTALLED_RECOVERYIMAGE_TARGET) | $(ZIPTIME) |
Doug Zongker | 1a09726 | 2012-09-04 14:45:11 -0700 | [diff] [blame] | 2512 | $(hide) mkdir -p $(dir $@) |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2513 | $(hide) find $(TARGET_RECOVERY_ROOT_OUT)/res -type f | sort | zip -0qrjX $@ -@ |
| 2514 | $(remove-timestamps-from-package) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2515 | endif |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2516 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2517 | |
| 2518 | $(call declare-1p-container,$(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 2519 | $(call declare-container-license-deps,$(INSTALLED_RECOVERYIMAGE_TARGET),$(recoveryimage-deps),$(PRODUCT_OUT)/:/) |
| 2520 | |
| 2521 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_RECOVERYIMAGE_TARGET) |
| 2522 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2523 | .PHONY: recoveryimage-nodeps |
| 2524 | recoveryimage-nodeps: |
| 2525 | @echo "make $@: ignoring dependencies" |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2526 | $(call build-recoveryimage-target, $(INSTALLED_RECOVERYIMAGE_TARGET), \ |
| 2527 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2528 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2529 | else # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2530 | RECOVERY_RESOURCE_ZIP := |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2531 | endif # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2532 | |
| 2533 | .PHONY: recoveryimage |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2534 | recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET) $(RECOVERY_RESOURCE_ZIP) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2535 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2536 | ifneq ($(BOARD_NAND_PAGE_SIZE),) |
| 2537 | $(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] | 2538 | endif |
| 2539 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2540 | ifneq ($(BOARD_NAND_SPARE_SIZE),) |
| 2541 | $(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] | 2542 | endif |
| 2543 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2544 | |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2545 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2546 | # Build debug ramdisk and debug boot image. |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2547 | 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] | 2548 | ifneq ($(BUILDING_DEBUG_BOOT_IMAGE)$(BUILDING_DEBUG_VENDOR_BOOT_IMAGE),) |
| 2549 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2550 | INTERNAL_DEBUG_RAMDISK_FILES := $(filter $(TARGET_DEBUG_RAMDISK_OUT)/%, \ |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2551 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2552 | |
| 2553 | # Directories to be picked into the debug ramdisk. |
| 2554 | # As these directories are all merged into one single cpio archive, the order |
| 2555 | # matters. If there are multiple files with the same pathname, then the last one |
| 2556 | # wins. |
| 2557 | # |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2558 | # ramdisk-debug.img will merge the content from either ramdisk.img or |
| 2559 | # ramdisk-recovery.img, depending on whether BOARD_USES_RECOVERY_AS_BOOT |
| 2560 | # is set or not. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2561 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2562 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS := $(TARGET_RECOVERY_ROOT_OUT) |
| 2563 | INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET := $(recovery_ramdisk) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2564 | else # BOARD_USES_RECOVERY_AS_BOOT == true |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2565 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS := $(TARGET_RAMDISK_OUT) |
| 2566 | INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET := $(INSTALLED_RAMDISK_TARGET) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2567 | endif # BOARD_USES_RECOVERY_AS_BOOT != true |
| 2568 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2569 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS += $(TARGET_DEBUG_RAMDISK_OUT) |
| 2570 | INTERNAL_DEBUG_RAMDISK_SRC_DEPS := $(INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET) $(INTERNAL_DEBUG_RAMDISK_FILES) |
| 2571 | |
| 2572 | # INSTALLED_FILES_FILE_DEBUG_RAMDISK would ensure TARGET_DEBUG_RAMDISK_OUT is created. |
| 2573 | INSTALLED_FILES_FILE_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk-debug.txt |
| 2574 | INSTALLED_FILES_JSON_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK:.txt=.json) |
| 2575 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_DEBUG_RAMDISK) |
| 2576 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(INTERNAL_DEBUG_RAMDISK_SRC_DEPS) |
| 2577 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(FILESLIST) $(FILESLIST_UTIL) |
| 2578 | @echo "Installed file list: $@" |
| 2579 | $(hide) rm -f $@ |
| 2580 | $(hide) mkdir -p $(dir $@) $(TARGET_DEBUG_RAMDISK_OUT) |
| 2581 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
| 2582 | $(FILESLIST) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) > $(@:.txt=.json) |
| 2583 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2584 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2585 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_DEBUG_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2586 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_DEBUG_RAMDISK))) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2587 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2588 | ifdef BUILDING_DEBUG_BOOT_IMAGE |
| 2589 | |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2590 | # ----------------------------------------------------------------- |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2591 | # the debug ramdisk, which is the original ramdisk plus additional |
| 2592 | # files: force_debuggable, adb_debug.prop and userdebug sepolicy. |
| 2593 | # When /force_debuggable is present, /init will load userdebug sepolicy |
| 2594 | # 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] | 2595 | INSTALLED_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-debug.img |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2596 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2597 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2598 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2599 | @echo "Target debug ramdisk: $@" |
| 2600 | $(hide) rm -f $@ |
| 2601 | $(hide) mkdir -p $(dir $@) |
| 2602 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2603 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2604 | $(call declare-1p-container,$(INSTALLED_DEBUG_RAMDISK_TARGET),) |
| 2605 | $(call declare-container-license-deps,$(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2606 | |
| 2607 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2608 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2609 | .PHONY: ramdisk_debug-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2610 | ramdisk_debug-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2611 | @echo "make $@: ignoring dependencies" |
| 2612 | $(hide) rm -f $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2613 | $(hide) mkdir -p $(dir $(INSTALLED_DEBUG_RAMDISK_TARGET)) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) |
| 2614 | $(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] | 2615 | |
| 2616 | # ----------------------------------------------------------------- |
| 2617 | # the boot-debug.img, which is the kernel plus ramdisk-debug.img |
| 2618 | # |
| 2619 | # Note: it's intentional to skip signing for boot-debug.img, because it |
| 2620 | # can only be used if the device is unlocked with verification error. |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2621 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2622 | 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] | 2623 | $(PRODUCT_OUT)/$(k).img) |
| 2624 | else |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2625 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-debug.img |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2626 | endif |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2627 | |
| 2628 | # 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] | 2629 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2630 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2631 | 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] | 2632 | else |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2633 | 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] | 2634 | endif |
| 2635 | |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2636 | # If boot.img is chained but boot-debug.img is not signed, libavb in bootloader |
| 2637 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2638 | # Using a test key to sign boot-debug.img to continue booting with the mismatched |
| 2639 | # public key, if the device is unlocked. |
| 2640 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2641 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2642 | endif |
| 2643 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2644 | BOARD_AVB_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2645 | INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2646 | # $(1): the bootimage to sign |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2647 | # $(2): boot image variant (boot, boot-debug, boot-test-harness) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2648 | define test-key-sign-bootimage |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2649 | $(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] | 2650 | $(AVBTOOL) add_hash_footer \ |
| 2651 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 2652 | $(call get-partition-size-argument,$(call get-bootimage-partition-size,$(1),$(2)))\ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2653 | --partition_name boot $(INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS) \ |
| 2654 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2655 | $(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] | 2656 | endef |
| 2657 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2658 | # $(1): output file |
| 2659 | define build-debug-bootimage-target |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2660 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-debug,kernel,$(notdir $(1)))) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2661 | $(INTERNAL_DEBUG_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2662 | $(BOARD_MKBOOTIMG_ARGS) --output $1 |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2663 | $(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] | 2664 | endef |
| 2665 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2666 | # 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] | 2667 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_BOOTIMAGE_TARGET) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2668 | $(call pretty,"Target boot debug image: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2669 | $(call build-debug-bootimage-target, $@) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2670 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2671 | $(call declare-1p-container,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),) |
| 2672 | $(call declare-container-license-deps,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(INSTALLED_BOOTIMAGE_TARGET),$(PRODUCT_OUT)/:/) |
| 2673 | |
| 2674 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) |
| 2675 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2676 | .PHONY: bootimage_debug-nodeps |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2677 | bootimage_debug-nodeps: $(MKBOOTIMG) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2678 | echo "make $@: ignoring dependencies" |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2679 | $(foreach b,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(call build-debug-bootimage-target,$b)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2680 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2681 | endif # BUILDING_DEBUG_BOOT_IMAGE |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2682 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2683 | # ----------------------------------------------------------------- |
| 2684 | # vendor debug ramdisk |
| 2685 | # 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] | 2686 | 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] | 2687 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2688 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2689 | INTERNAL_VENDOR_DEBUG_RAMDISK_FILES := $(filter $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/%, \ |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2690 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2691 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2692 | # The debug vendor ramdisk combines vendor ramdisk and debug ramdisk. |
| 2693 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS := $(TARGET_VENDOR_RAMDISK_OUT) |
| 2694 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS := $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2695 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 2696 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 2697 | # recovery ramdisk in vendor_boot. |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2698 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2699 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 2700 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS += $(TARGET_RECOVERY_ROOT_OUT) |
| 2701 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS += $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 2702 | endif # BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT != true |
| 2703 | endif # BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT == true |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2704 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2705 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS += $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) $(TARGET_DEBUG_RAMDISK_OUT) |
| 2706 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS += $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
| 2707 | |
| 2708 | # INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK would ensure TARGET_VENDOR_DEBUG_RAMDISK_OUT is created. |
| 2709 | INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk-debug.txt |
| 2710 | INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK:.txt=.json) |
| 2711 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK) |
| 2712 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS) |
| 2713 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(FILESLIST) $(FILESLIST_UTIL) |
| 2714 | @echo "Installed file list: $@" |
| 2715 | $(hide) rm -f $@ |
| 2716 | $(hide) mkdir -p $(dir $@) $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) |
| 2717 | $(FILESLIST) $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) > $(@:.txt=.json) |
| 2718 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2719 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2720 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK)) |
| 2721 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2722 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2723 | INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-debug)/vendor_ramdisk-debug.cpio$(RAMDISK_EXT) |
| 2724 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2725 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2726 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2727 | $(hide) rm -f $@ |
| 2728 | $(hide) mkdir -p $(dir $@) |
| 2729 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2730 | |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2731 | INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-debug.img |
| 2732 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET) |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 2733 | @echo "Target debug vendor ramdisk: $@" |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2734 | $(copy-file-to-target) |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2735 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2736 | $(call declare-1p-container,$(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET),) |
| 2737 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET),$(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2738 | |
| 2739 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET) |
| 2740 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2741 | # ----------------------------------------------------------------- |
| 2742 | # vendor_boot-debug.img. |
| 2743 | INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-debug.img |
| 2744 | |
| 2745 | # The util to sign vendor_boot-debug.img with a test key. |
| 2746 | BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2747 | INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2748 | # $(1): the vendor bootimage to sign |
| 2749 | define test-key-sign-vendor-bootimage |
| 2750 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE))) |
| 2751 | $(AVBTOOL) add_hash_footer \ |
| 2752 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 2753 | $(call get-partition-size-argument,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) \ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2754 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS) \ |
| 2755 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 2756 | $(call assert-max-image-size,$(1),$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2757 | endef |
| 2758 | |
| 2759 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 2760 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2761 | endif |
| 2762 | |
| 2763 | # 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] | 2764 | $(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] | 2765 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2766 | $(call pretty,"Target vendor_boot debug image: $@") |
Bowgo Tsai | 7ac9603 | 2021-01-20 16:29:49 +0800 | [diff] [blame] | 2767 | $(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] | 2768 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2769 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 2770 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2771 | $(call declare-1p-container,$(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET),) |
| 2772 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2773 | |
| 2774 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET) |
| 2775 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2776 | endif # BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2777 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2778 | # Appends a few test harness specific properties into the adb_debug.prop. |
| 2779 | ADDITIONAL_TEST_HARNESS_PROPERTIES := ro.audio.silent=1 |
| 2780 | ADDITIONAL_TEST_HARNESS_PROPERTIES += ro.test_harness=1 |
| 2781 | |
| 2782 | INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET := $(strip $(filter $(TARGET_DEBUG_RAMDISK_OUT)/adb_debug.prop,$(INTERNAL_DEBUG_RAMDISK_FILES))) |
| 2783 | INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET := $(TARGET_TEST_HARNESS_RAMDISK_OUT)/adb_debug.prop |
| 2784 | $(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET): $(INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET) |
| 2785 | $(hide) rm -f $@ |
| 2786 | $(hide) mkdir -p $(dir $@) |
| 2787 | ifdef INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET |
| 2788 | $(hide) cp $(INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET) $@ |
| 2789 | endif |
| 2790 | $(hide) echo "" >> $@ |
| 2791 | $(hide) echo "#" >> $@ |
| 2792 | $(hide) echo "# ADDITIONAL TEST HARNESS PROPERTIES" >> $@ |
| 2793 | $(hide) echo "#" >> $@ |
| 2794 | $(hide) $(foreach line,$(ADDITIONAL_TEST_HARNESS_PROPERTIES), \ |
| 2795 | echo "$(line)" >> $@;) |
| 2796 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 2797 | $(call declare-1p-target,$(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET)) |
| 2798 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2799 | 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] | 2800 | INTERNAL_TEST_HARNESS_RAMDISK_FILES := $(filter $(TARGET_TEST_HARNESS_RAMDISK_OUT)/%, \ |
| 2801 | $(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET) \ |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2802 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2803 | |
| 2804 | # The order is important here. The test harness ramdisk staging directory has to |
| 2805 | # come last so that it can override the adb_debug.prop in the debug ramdisk |
| 2806 | # staging directory. |
| 2807 | INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS := $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
| 2808 | INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) $(INTERNAL_TEST_HARNESS_RAMDISK_FILES) |
| 2809 | |
| 2810 | ifdef BUILDING_DEBUG_BOOT_IMAGE |
| 2811 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2812 | # ----------------------------------------------------------------- |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2813 | # The test harness ramdisk, which is based off debug_ramdisk, plus a |
| 2814 | # few additional test-harness-specific properties in adb_debug.prop. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2815 | INSTALLED_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-test-harness.img |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2816 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2817 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS) |
| 2818 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2819 | @echo "Target test harness ramdisk: $@" |
| 2820 | $(hide) rm -f $@ |
| 2821 | $(hide) mkdir -p $(dir $@) |
| 2822 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2823 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2824 | $(call declare-1p-container,$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),) |
| 2825 | $(call declare-container-license-deps,$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS),$(PRODUCT_OUT)/:/) |
| 2826 | |
| 2827 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
| 2828 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2829 | .PHONY: ramdisk_test_harness-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2830 | ramdisk_test_harness-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2831 | @echo "make $@: ignoring dependencies" |
| 2832 | $(hide) rm -f $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
| 2833 | $(hide) mkdir -p $(dir $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET)) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) |
| 2834 | $(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] | 2835 | |
| 2836 | # ----------------------------------------------------------------- |
| 2837 | # the boot-test-harness.img, which is the kernel plus ramdisk-test-harness.img |
| 2838 | # |
| 2839 | # Note: it's intentional to skip signing for boot-test-harness.img, because it |
| 2840 | # can only be used if the device is unlocked with verification error. |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2841 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 2842 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-test-harness,$(BOARD_KERNEL_BINARIES)), \ |
| 2843 | $(PRODUCT_OUT)/$(k).img) |
| 2844 | else |
| 2845 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-test-harness.img |
| 2846 | endif |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2847 | |
| 2848 | # 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] | 2849 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2850 | INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS := $(subst $(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_DEBUG_BOOTIMAGE_ARGS)) |
| 2851 | |
| 2852 | # If boot.img is chained but boot-test-harness.img is not signed, libavb in bootloader |
| 2853 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2854 | # Using a test key to sign boot-test-harness.img to continue booting with the mismatched |
| 2855 | # public key, if the device is unlocked. |
| 2856 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
| 2857 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2858 | endif |
| 2859 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2860 | # $(1): output file |
| 2861 | define build-boot-test-harness-target |
| 2862 | $(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] | 2863 | $(INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2864 | $(BOARD_MKBOOTIMG_ARGS) --output $@ |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2865 | $(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] | 2866 | endef |
| 2867 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2868 | # 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] | 2869 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2870 | $(call pretty,"Target boot test harness image: $@") |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2871 | $(call build-boot-test-harness-target,$@) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2872 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2873 | $(call declare-1p-container,$(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET),) |
| 2874 | $(call declare-container-license-deps,$(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET),$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(PRODUCT_OUT)/:/) |
| 2875 | |
| 2876 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET) |
| 2877 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2878 | .PHONY: bootimage_test_harness-nodeps |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2879 | bootimage_test_harness-nodeps: $(MKBOOTIMG) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2880 | echo "make $@: ignoring dependencies" |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2881 | $(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] | 2882 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2883 | endif # BUILDING_DEBUG_BOOT_IMAGE |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2884 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2885 | # ----------------------------------------------------------------- |
| 2886 | # vendor test harness ramdisk, which is a vendor ramdisk combined with |
| 2887 | # a test harness ramdisk. |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2888 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2889 | |
| 2890 | INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-test-harness)/vendor_ramdisk-test-harness.cpio$(RAMDISK_EXT) |
| 2891 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2892 | # The order is important here. The test harness ramdisk staging directory has to |
| 2893 | # come last so that it can override the adb_debug.prop in the debug ramdisk |
| 2894 | # staging directory. |
| 2895 | INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DIRS := $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
| 2896 | 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] | 2897 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2898 | $(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] | 2899 | $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2900 | $(hide) rm -f $@ |
| 2901 | $(hide) mkdir -p $(dir $@) |
| 2902 | $(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] | 2903 | |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 2904 | INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-test-harness.img |
| 2905 | $(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 2906 | @echo "Target test harness vendor ramdisk: $@" |
| 2907 | $(copy-file-to-target) |
| 2908 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2909 | $(call declare-1p-container,$(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET),) |
| 2910 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2911 | |
| 2912 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 2913 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2914 | # ----------------------------------------------------------------- |
| 2915 | # vendor_boot-test-harness.img. |
| 2916 | INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-test-harness.img |
| 2917 | |
| 2918 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 2919 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2920 | endif |
| 2921 | |
| 2922 | # Depends on vendor_boot.img and vendor_ramdisk-test-harness.cpio$(RAMDISK_EXT) to build the new vendor_boot-test-harness.img |
| 2923 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) |
| 2924 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 2925 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
| 2926 | $(call pretty,"Target vendor_boot test harness image: $@") |
| 2927 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS) --vendor_boot $@ |
| 2928 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2929 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 2930 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2931 | $(call declare-1p-container,$(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET),) |
| 2932 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2933 | |
| 2934 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET) |
| 2935 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2936 | endif # BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2937 | |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2938 | endif # BUILDING_DEBUG_BOOT_IMAGE || BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2939 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2940 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2941 | # Creates a compatibility symlink between two partitions, e.g. /system/vendor to /vendor |
| 2942 | # $1: from location (e.g $(TARGET_OUT)/vendor) |
| 2943 | # $2: destination location (e.g. /vendor) |
| 2944 | # $3: partition image name (e.g. vendor.img) |
| 2945 | define create-partition-compat-symlink |
| 2946 | $(eval \ |
| 2947 | $1: |
| 2948 | @echo Symlink $(patsubst $(PRODUCT_OUT)/%,%,$1) to $2 |
| 2949 | mkdir -p $(dir $1) |
| 2950 | if [ -d $1 ] && [ ! -h $1 ]; then \ |
| 2951 | echo 'Non-symlink $1 detected!' 1>&2; \ |
| 2952 | echo 'You cannot install files to $1 while building a separate $3!' 1>&2; \ |
| 2953 | exit 1; \ |
| 2954 | fi |
| 2955 | ln -sfn $2 $1 |
Jingwen Chen | 7d7f945 | 2020-09-22 13:47:13 +0000 | [diff] [blame] | 2956 | $1: .KATI_SYMLINK_OUTPUTS := $1 |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2957 | ) |
| 2958 | $1 |
| 2959 | endef |
| 2960 | |
| 2961 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2962 | # ----------------------------------------------------------------- |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 2963 | # system image |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2964 | |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 2965 | # FSVerity metadata generation |
| 2966 | # Generate fsverity metadata files (.fsv_meta) and build manifest |
| 2967 | # (system/etc/security/fsverity/BuildManifest.apk) BEFORE filtering systemimage files below |
| 2968 | ifeq ($(PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA),true) |
| 2969 | |
| 2970 | # Generate fsv_meta |
| 2971 | fsverity-metadata-targets := $(sort $(filter \ |
Victor Hsieh | fb3ef8a | 2022-01-07 14:05:42 -0800 | [diff] [blame] | 2972 | $(TARGET_OUT)/framework/% \ |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 2973 | $(TARGET_OUT)/etc/boot-image.prof \ |
| 2974 | $(TARGET_OUT)/etc/dirty-image-objects \ |
Nicolas Geoffray | 13f2821 | 2022-03-18 17:28:14 +0000 | [diff] [blame] | 2975 | $(TARGET_OUT)/etc/preloaded-classes \ |
Victor Hsieh | fb3ef8a | 2022-01-07 14:05:42 -0800 | [diff] [blame] | 2976 | $(TARGET_OUT)/etc/classpaths/%.pb, \ |
Colin Cross | a1de5df | 2022-03-21 14:31:31 -0700 | [diff] [blame] | 2977 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 2978 | |
| 2979 | define fsverity-generate-metadata |
| 2980 | $(1).fsv_meta: PRIVATE_SRC := $(1) |
| 2981 | $(1).fsv_meta: PRIVATE_FSVERITY := $(HOST_OUT_EXECUTABLES)/fsverity |
| 2982 | $(1).fsv_meta: $(HOST_OUT_EXECUTABLES)/fsverity_metadata_generator $(HOST_OUT_EXECUTABLES)/fsverity $(1) |
| 2983 | $$< --fsverity-path $$(PRIVATE_FSVERITY) --signature none \ |
| 2984 | --hash-alg sha256 --output $$@ $$(PRIVATE_SRC) |
| 2985 | endef |
| 2986 | |
| 2987 | $(foreach f,$(fsverity-metadata-targets),$(eval $(call fsverity-generate-metadata,$(f)))) |
| 2988 | ALL_DEFAULT_INSTALLED_MODULES += $(addsuffix .fsv_meta,$(fsverity-metadata-targets)) |
| 2989 | |
| 2990 | # Generate BuildManifest.apk |
| 2991 | FSVERITY_APK_KEY_PATH := $(DEFAULT_SYSTEM_DEV_CERTIFICATE) |
| 2992 | FSVERITY_APK_OUT := $(TARGET_OUT)/etc/security/fsverity/BuildManifest.apk |
| 2993 | FSVERITY_APK_MANIFEST_PATH := system/security/fsverity/AndroidManifest.xml |
| 2994 | $(FSVERITY_APK_OUT): PRIVATE_FSVERITY := $(HOST_OUT_EXECUTABLES)/fsverity |
| 2995 | $(FSVERITY_APK_OUT): PRIVATE_AAPT2 := $(HOST_OUT_EXECUTABLES)/aapt2 |
Jiyong Park | efbb6ff | 2022-01-10 17:14:30 +0900 | [diff] [blame] | 2996 | $(FSVERITY_APK_OUT): PRIVATE_MIN_SDK_VERSION := $(DEFAULT_APP_TARGET_SDK) |
Colin Cross | 658172d | 2022-01-27 12:45:13 -0800 | [diff] [blame] | 2997 | $(FSVERITY_APK_OUT): PRIVATE_VERSION_CODE := $(PLATFORM_SDK_VERSION) |
| 2998 | $(FSVERITY_APK_OUT): PRIVATE_VERSION_NAME := $(APPS_DEFAULT_VERSION_NAME) |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 2999 | $(FSVERITY_APK_OUT): PRIVATE_APKSIGNER := $(HOST_OUT_EXECUTABLES)/apksigner |
| 3000 | $(FSVERITY_APK_OUT): PRIVATE_MANIFEST := $(FSVERITY_APK_MANIFEST_PATH) |
Jiyong Park | efbb6ff | 2022-01-10 17:14:30 +0900 | [diff] [blame] | 3001 | $(FSVERITY_APK_OUT): PRIVATE_FRAMEWORK_RES := $(call intermediates-dir-for,APPS,framework-res,,COMMON)/package-export.apk |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3002 | $(FSVERITY_APK_OUT): PRIVATE_KEY := $(FSVERITY_APK_KEY_PATH) |
| 3003 | $(FSVERITY_APK_OUT): PRIVATE_INPUTS := $(fsverity-metadata-targets) |
Andrew Scull | 0a6d2e5 | 2022-07-04 17:48:35 +0000 | [diff] [blame] | 3004 | $(FSVERITY_APK_OUT): PRIVATE_ASSETS := $(call intermediates-dir-for,ETC,build_manifest)/assets |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3005 | $(FSVERITY_APK_OUT): $(HOST_OUT_EXECUTABLES)/fsverity_manifest_generator \ |
| 3006 | $(HOST_OUT_EXECUTABLES)/fsverity $(HOST_OUT_EXECUTABLES)/aapt2 \ |
| 3007 | $(HOST_OUT_EXECUTABLES)/apksigner $(FSVERITY_APK_MANIFEST_PATH) \ |
Victor Hsieh | be1029a | 2022-01-07 10:42:23 -0800 | [diff] [blame] | 3008 | $(FSVERITY_APK_KEY_PATH).x509.pem $(FSVERITY_APK_KEY_PATH).pk8 \ |
Jiyong Park | efbb6ff | 2022-01-10 17:14:30 +0900 | [diff] [blame] | 3009 | $(call intermediates-dir-for,APPS,framework-res,,COMMON)/package-export.apk \ |
Victor Hsieh | be1029a | 2022-01-07 10:42:23 -0800 | [diff] [blame] | 3010 | $(fsverity-metadata-targets) |
Andrew Scull | 0a6d2e5 | 2022-07-04 17:48:35 +0000 | [diff] [blame] | 3011 | rm -rf $(PRIVATE_ASSETS) |
| 3012 | mkdir -p $(PRIVATE_ASSETS) |
| 3013 | $< --fsverity-path $(PRIVATE_FSVERITY) \ |
| 3014 | --base-dir $(PRODUCT_OUT) \ |
| 3015 | --output $(PRIVATE_ASSETS)/build_manifest.pb \ |
| 3016 | $(PRIVATE_INPUTS) |
| 3017 | $(PRIVATE_AAPT2) link -o $@ \ |
| 3018 | -A $(PRIVATE_ASSETS) \ |
| 3019 | -I $(PRIVATE_FRAMEWORK_RES) \ |
Jiyong Park | efbb6ff | 2022-01-10 17:14:30 +0900 | [diff] [blame] | 3020 | --min-sdk-version $(PRIVATE_MIN_SDK_VERSION) \ |
Colin Cross | 658172d | 2022-01-27 12:45:13 -0800 | [diff] [blame] | 3021 | --version-code $(PRIVATE_VERSION_CODE) \ |
| 3022 | --version-name $(PRIVATE_VERSION_NAME) \ |
Andrew Scull | 0a6d2e5 | 2022-07-04 17:48:35 +0000 | [diff] [blame] | 3023 | --manifest $(PRIVATE_MANIFEST) |
| 3024 | $(PRIVATE_APKSIGNER) sign --in $@ \ |
| 3025 | --cert $(PRIVATE_KEY).x509.pem \ |
| 3026 | --key $(PRIVATE_KEY).pk8 |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3027 | |
| 3028 | ALL_DEFAULT_INSTALLED_MODULES += $(FSVERITY_APK_OUT) |
| 3029 | |
| 3030 | endif # PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA |
| 3031 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3032 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 37a1986 | 2018-10-31 16:31:46 -0700 | [diff] [blame] | 3033 | INTERNAL_SYSTEMIMAGE_FILES := $(sort $(filter $(TARGET_OUT)/%, \ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3034 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 3035 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3036 | # Create symlink /system/vendor to /vendor if necessary. |
| 3037 | ifdef BOARD_USES_VENDORIMAGE |
| 3038 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/vendor,/vendor,vendor.img) |
| 3039 | endif |
| 3040 | |
| 3041 | # Create symlink /system/product to /product if necessary. |
| 3042 | ifdef BOARD_USES_PRODUCTIMAGE |
| 3043 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/product,/product,product.img) |
| 3044 | endif |
| 3045 | |
| 3046 | # Create symlink /system/system_ext to /system_ext if necessary. |
| 3047 | ifdef BOARD_USES_SYSTEM_EXTIMAGE |
| 3048 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/system_ext,/system_ext,system_ext.img) |
| 3049 | endif |
| 3050 | |
Ramji Jiyani | f9ce357 | 2021-12-01 00:03:11 +0000 | [diff] [blame] | 3051 | # ----------------------------------------------------------------- |
| 3052 | # system_dlkm partition image |
| 3053 | |
| 3054 | # Create symlinks for system_dlkm on devices with a system_dlkm partition: |
| 3055 | # /system/lib/modules -> /system_dlkm/lib/modules |
| 3056 | # |
| 3057 | # On devices with a system_dlkm partition, |
| 3058 | # - /system/lib/modules is a symlink to a directory that stores system DLKMs. |
| 3059 | # - The system_dlkm partition is mounted at /system_dlkm at runtime. |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3060 | ifdef BOARD_USES_SYSTEM_DLKMIMAGE |
Ramji Jiyani | f9ce357 | 2021-12-01 00:03:11 +0000 | [diff] [blame] | 3061 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/lib/modules,/system_dlkm/lib/modules,system_dlkm.img) |
| 3062 | endif |
| 3063 | |
Ying Wang | 82cceba | 2012-08-13 15:03:00 -0700 | [diff] [blame] | 3064 | FULL_SYSTEMIMAGE_DEPS := $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3065 | |
| 3066 | # ASAN libraries in the system image - add dependency. |
| 3067 | ASAN_IN_SYSTEM_INSTALLED := $(TARGET_OUT)/asan.tar.bz2 |
Evgenii Stepanov | 8841a7f | 2018-07-27 11:54:32 -0700 | [diff] [blame] | 3068 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3069 | ifeq (true,$(SANITIZE_TARGET_SYSTEM)) |
| 3070 | FULL_SYSTEMIMAGE_DEPS += $(ASAN_IN_SYSTEM_INSTALLED) |
| 3071 | endif |
| 3072 | endif |
| 3073 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 3074 | FULL_SYSTEMIMAGE_DEPS += $(INTERNAL_ROOT_FILES) $(INSTALLED_FILES_FILE_ROOT) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 3075 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3076 | # ----------------------------------------------------------------- |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3077 | ifdef BUILDING_SYSTEM_IMAGE |
| 3078 | |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3079 | # Install system linker configuration |
| 3080 | # Collect all available stub libraries installed in system and install with predefined linker configuration |
| 3081 | SYSTEM_LINKER_CONFIG := $(TARGET_OUT)/etc/linker.config.pb |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3082 | SYSTEM_LINKER_CONFIG_SOURCE := $(call intermediates-dir-for,ETC,system_linker_config)/system_linker_config |
| 3083 | $(SYSTEM_LINKER_CONFIG): PRIVATE_SYSTEM_LINKER_CONFIG_SOURCE := $(SYSTEM_LINKER_CONFIG_SOURCE) |
| 3084 | $(SYSTEM_LINKER_CONFIG) : $(INTERNAL_SYSTEMIMAGE_FILES) $(SYSTEM_LINKER_CONFIG_SOURCE) | conv_linker_config |
| 3085 | $(HOST_OUT_EXECUTABLES)/conv_linker_config systemprovide --source $(PRIVATE_SYSTEM_LINKER_CONFIG_SOURCE) \ |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3086 | --output $@ --value "$(STUB_LIBRARIES)" --system "$(TARGET_OUT)" |
| 3087 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3088 | $(call declare-1p-target,$(SYSTEM_LINKER_CONFIG),) |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3089 | $(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] | 3090 | |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3091 | FULL_SYSTEMIMAGE_DEPS += $(SYSTEM_LINKER_CONFIG) |
| 3092 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3093 | # installed file list |
| 3094 | # Depending on anything that $(BUILT_SYSTEMIMAGE) depends on. |
| 3095 | # We put installed-files.txt ahead of image itself in the dependency graph |
| 3096 | # so that we can get the size stat even if the build fails due to too large |
| 3097 | # system image. |
| 3098 | INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3099 | INSTALLED_FILES_JSON := $(INSTALLED_FILES_FILE:.txt=.json) |
| 3100 | $(INSTALLED_FILES_FILE): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3101 | $(INSTALLED_FILES_FILE): $(FULL_SYSTEMIMAGE_DEPS) $(FILESLIST) $(FILESLIST_UTIL) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3102 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3103 | mkdir -p $(dir $@) |
| 3104 | rm -f $@ |
| 3105 | $(FILESLIST) $(TARGET_OUT) > $(@:.txt=.json) |
| 3106 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3107 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3108 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3109 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON))) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3110 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3111 | .PHONY: installed-file-list |
| 3112 | installed-file-list: $(INSTALLED_FILES_FILE) |
Ying Wang | 534fcd7 | 2013-03-01 16:45:35 -0800 | [diff] [blame] | 3113 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3114 | systemimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3115 | $(call intermediates-dir-for,PACKAGING,systemimage) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3116 | BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img |
| 3117 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3118 | # $(1): output file |
| 3119 | define build-systemimage-target |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3120 | @echo "Target system fs image: $(1)" |
| 3121 | @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] | 3122 | $(call generate-image-prop-dictionary, $(systemimage_intermediates)/system_image_info.txt,system, \ |
Geremy Condra | 5b5f495 | 2014-05-05 22:19:37 -0700 | [diff] [blame] | 3123 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3124 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3125 | $(BUILD_IMAGE) \ |
| 3126 | $(TARGET_OUT) $(systemimage_intermediates)/system_image_info.txt $(1) $(TARGET_OUT) \ |
| 3127 | || ( mkdir -p $${DIST_DIR}; \ |
| 3128 | cp $(INSTALLED_FILES_FILE) $${DIST_DIR}/installed-files-rescued.txt; \ |
| 3129 | exit 1 ) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3130 | endef |
| 3131 | |
Dan Willemsen | 6b72c73 | 2019-06-12 21:33:38 +0000 | [diff] [blame] | 3132 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3133 | $(BUILT_SYSTEMIMAGE): $(BOARD_AVB_SYSTEM_KEY_PATH) |
| 3134 | endif |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3135 | $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3136 | $(call build-systemimage-target,$@) |
| 3137 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3138 | $(call declare-1p-container,$(BUILT_SYSTEMIMAGE),system/extras) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3139 | $(call declare-container-license-deps,$(BUILT_SYSTEMIMAGE),$(FULL_SYSTEMIMAGE_DEPS),$(PRODUCT_OUT)/:/) |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3140 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3141 | INSTALLED_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/system.img |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 3142 | SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3143 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3144 | # INSTALLED_SYSTEMIMAGE_TARGET used to be named INSTALLED_SYSTEMIMAGE. Create an alias for backward |
| 3145 | # compatibility, in case device-specific Makefiles still refer to the old name. |
| 3146 | INSTALLED_SYSTEMIMAGE := $(INSTALLED_SYSTEMIMAGE_TARGET) |
| 3147 | |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3148 | # The system partition needs room for the recovery image as well. We |
| 3149 | # now store the recovery image as a binary patch using the boot image |
| 3150 | # as the source (since they are very similar). Generate the patch so |
| 3151 | # we can see how big it's going to be, and include that in the system |
| 3152 | # image size check calculation. |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3153 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
Sriram Raman | 1e96ac8 | 2009-07-24 13:52:32 -0700 | [diff] [blame] | 3154 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 3155 | ifneq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 3156 | ifneq (,$(filter true, $(BOARD_BUILD_SYSTEM_ROOT_IMAGE) $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO))) |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 3157 | diff_tool := $(HOST_OUT_EXECUTABLES)/bsdiff |
| 3158 | else |
| 3159 | diff_tool := $(HOST_OUT_EXECUTABLES)/imgdiff |
| 3160 | endif |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3161 | intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch) |
| 3162 | RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 3163 | $(RECOVERY_FROM_BOOT_PATCH): PRIVATE_DIFF_TOOL := $(diff_tool) |
| 3164 | $(RECOVERY_FROM_BOOT_PATCH): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3165 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 3166 | $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3167 | $(diff_tool) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3168 | @echo "Construct recovery from boot" |
| 3169 | mkdir -p $(dir $@) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 3170 | $(PRIVATE_DIFF_TOOL) $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) $(INSTALLED_RECOVERYIMAGE_TARGET) $@ |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 3171 | else # $(BOARD_USES_FULL_RECOVERY_IMAGE) == true |
| 3172 | RECOVERY_FROM_BOOT_PATCH := $(INSTALLED_RECOVERYIMAGE_TARGET) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3173 | endif # BOARD_USES_FULL_RECOVERY_IMAGE |
| 3174 | endif # INSTALLED_RECOVERYIMAGE_TARGET |
| 3175 | endif # INSTALLED_BOOTIMAGE_TARGET |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3176 | |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3177 | $(INSTALLED_SYSTEMIMAGE_TARGET): $(BUILT_SYSTEMIMAGE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3178 | @echo "Install system fs image: $@" |
| 3179 | $(copy-file-to-target) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3180 | $(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] | 3181 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3182 | $(call declare-1p-container,$(INSTALLED_SYSTEMIMAGE_TARGET),) |
| 3183 | $(call declare-container-license-deps,$(INSTALLED_SYSTEMIMAGE_TARGET),$(BUILT_SYSTEMIMAGE),$(BUILT_SYSTEMIMAGE):/) |
| 3184 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3185 | systemimage: $(INSTALLED_SYSTEMIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3186 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3187 | SYSTEM_NOTICE_DEPS += $(INSTALLED_SYSTEMIMAGE_TARGET) |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3188 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3189 | .PHONY: systemimage-nodeps snod |
| 3190 | systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \ |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 3191 | | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3192 | @echo "make $@: ignoring dependencies" |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3193 | $(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE_TARGET)) |
Yifan Hong | 8c3dce0 | 2019-04-09 17:03:57 +0000 | [diff] [blame] | 3194 | $(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] | 3195 | ifeq (true,$(WITH_DEXPREOPT)) |
Dan Willemsen | 395358e | 2020-03-04 23:50:53 +0000 | [diff] [blame] | 3196 | $(warning Warning: with dexpreopt enabled, you may need a full rebuild.) |
Ying Wang | acf01ec | 2012-02-24 11:05:48 -0800 | [diff] [blame] | 3197 | endif |
| 3198 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3199 | endif # BUILDING_SYSTEM_IMAGE |
| 3200 | |
Anton Hansson | 30e061b | 2018-11-12 13:36:46 +0000 | [diff] [blame] | 3201 | .PHONY: sync syncsys |
| 3202 | sync syncsys: $(INTERNAL_SYSTEMIMAGE_FILES) |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 3203 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 3204 | # ----------------------------------------------------------------- |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3205 | # Old PDK fusion targets |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 3206 | .PHONY: platform |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3207 | platform: |
| 3208 | echo "Warning: 'platform' is obsolete" |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 3209 | |
| 3210 | .PHONY: platform-java |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3211 | platform-java: |
| 3212 | echo "Warning: 'platform-java' is obsolete" |
Colin Cross | 53c8f97 | 2018-09-28 16:19:42 -0700 | [diff] [blame] | 3213 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 3214 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3215 | # data partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3216 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_DATA)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3217 | INTERNAL_USERDATAIMAGE_FILES := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3218 | $(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3219 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3220 | ifdef BUILDING_USERDATA_IMAGE |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3221 | userdataimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3222 | $(call intermediates-dir-for,PACKAGING,userdata) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 3223 | BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img |
| 3224 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3225 | define build-userdataimage-target |
| 3226 | $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)") |
| 3227 | @mkdir -p $(TARGET_OUT_DATA) |
| 3228 | @mkdir -p $(userdataimage_intermediates) && rm -rf $(userdataimage_intermediates)/userdata_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3229 | $(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] | 3230 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3231 | $(BUILD_IMAGE) \ |
| 3232 | $(TARGET_OUT_DATA) $(userdataimage_intermediates)/userdata_image_info.txt \ |
| 3233 | $(INSTALLED_USERDATAIMAGE_TARGET) $(TARGET_OUT) |
| 3234 | $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3235 | endef |
| 3236 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 3237 | # We just build this directly to the install location. |
| 3238 | INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3239 | INSTALLED_USERDATAIMAGE_TARGET_DEPS := \ |
| 3240 | $(INTERNAL_USERIMAGES_DEPS) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3241 | $(INTERNAL_USERDATAIMAGE_FILES) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3242 | $(INSTALLED_USERDATAIMAGE_TARGET): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3243 | $(build-userdataimage-target) |
| 3244 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3245 | $(call declare-1p-container,$(INSTALLED_USERDATAIMAGE_TARGET),) |
| 3246 | $(call declare-container-license-deps,$(INSTALLED_USERDATAIMAGE_TARGET),$(INSTALLED_USERDATAIMAGE_TARGET_DEPS),$(PRODUCT_OUT)/:/) |
| 3247 | |
| 3248 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_USERDATAIMAGE_TARGET) |
| 3249 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3250 | .PHONY: userdataimage-nodeps |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 3251 | userdataimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3252 | $(build-userdataimage-target) |
| 3253 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3254 | endif # BUILDING_USERDATA_IMAGE |
Ying Wang | e215ed5 | 2012-10-15 14:36:22 -0700 | [diff] [blame] | 3255 | |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3256 | # ASAN libraries in the system image - build rule. |
| 3257 | ASAN_OUT_DIRS_FOR_SYSTEM_INSTALL := $(sort $(patsubst $(PRODUCT_OUT)/%,%,\ |
| 3258 | $(TARGET_OUT_SHARED_LIBRARIES) \ |
| 3259 | $(2ND_TARGET_OUT_SHARED_LIBRARIES) \ |
| 3260 | $(TARGET_OUT_VENDOR_SHARED_LIBRARIES) \ |
| 3261 | $(2ND_TARGET_OUT_VENDOR_SHARED_LIBRARIES))) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 3262 | # Extra options: Enforce the system user for the files to avoid having to change ownership. |
| 3263 | ASAN_SYSTEM_INSTALL_OPTIONS := --owner=1000 --group=1000 |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3264 | # Note: experimentally, it seems not worth it to try to get "best" compression. We don't save |
| 3265 | # enough space. |
| 3266 | $(ASAN_IN_SYSTEM_INSTALLED): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 3267 | 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] | 3268 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3269 | # ----------------------------------------------------------------- |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3270 | # partition table image |
| 3271 | ifdef BOARD_BPT_INPUT_FILES |
| 3272 | |
| 3273 | BUILT_BPTIMAGE_TARGET := $(PRODUCT_OUT)/partition-table.img |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 3274 | BUILT_BPTJSON_TARGET := $(PRODUCT_OUT)/partition-table.bpt |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3275 | |
| 3276 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS := \ |
| 3277 | --output_gpt $(BUILT_BPTIMAGE_TARGET) \ |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 3278 | --output_json $(BUILT_BPTJSON_TARGET) \ |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3279 | $(foreach file, $(BOARD_BPT_INPUT_FILES), --input $(file)) |
| 3280 | |
| 3281 | ifdef BOARD_BPT_DISK_SIZE |
| 3282 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS += --disk_size $(BOARD_BPT_DISK_SIZE) |
| 3283 | endif |
| 3284 | |
| 3285 | define build-bptimage-target |
| 3286 | $(call pretty,"Target partition table image: $(INSTALLED_BPTIMAGE_TARGET)") |
| 3287 | $(hide) $(BPTTOOL) make_table $(INTERNAL_BVBTOOL_MAKE_TABLE_ARGS) $(BOARD_BPT_MAKE_TABLE_ARGS) |
| 3288 | endef |
| 3289 | |
| 3290 | INSTALLED_BPTIMAGE_TARGET := $(BUILT_BPTIMAGE_TARGET) |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 3291 | $(BUILT_BPTJSON_TARGET): $(INSTALLED_BPTIMAGE_TARGET) |
| 3292 | $(hide) touch -c $(BUILT_BPTJSON_TARGET) |
| 3293 | |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3294 | $(INSTALLED_BPTIMAGE_TARGET): $(BPTTOOL) $(BOARD_BPT_INPUT_FILES) |
| 3295 | $(build-bptimage-target) |
| 3296 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3297 | $(call declare-1p-container,$(INSTALLED_BPTIMAGE_TARGET),) |
| 3298 | $(call declare-container-license-deps,$(INSTALLED_BPTIMAGE_TARGET),$(BOARD_BPT_INPUT_FILES),$(PRODUCT_OUT)/:/) |
| 3299 | |
| 3300 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_BPTIMAGE_TARGET) |
| 3301 | |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3302 | .PHONY: bptimage-nodeps |
| 3303 | bptimage-nodeps: |
| 3304 | $(build-bptimage-target) |
| 3305 | |
| 3306 | endif # BOARD_BPT_INPUT_FILES |
| 3307 | |
| 3308 | # ----------------------------------------------------------------- |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3309 | # cache partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3310 | 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] | 3311 | ifdef BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3312 | INTERNAL_CACHEIMAGE_FILES := \ |
| 3313 | $(filter $(TARGET_OUT_CACHE)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
| 3314 | |
| 3315 | cacheimage_intermediates := \ |
| 3316 | $(call intermediates-dir-for,PACKAGING,cache) |
| 3317 | BUILT_CACHEIMAGE_TARGET := $(PRODUCT_OUT)/cache.img |
| 3318 | |
| 3319 | define build-cacheimage-target |
| 3320 | $(call pretty,"Target cache fs image: $(INSTALLED_CACHEIMAGE_TARGET)") |
| 3321 | @mkdir -p $(TARGET_OUT_CACHE) |
| 3322 | @mkdir -p $(cacheimage_intermediates) && rm -rf $(cacheimage_intermediates)/cache_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3323 | $(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] | 3324 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3325 | $(BUILD_IMAGE) \ |
| 3326 | $(TARGET_OUT_CACHE) $(cacheimage_intermediates)/cache_image_info.txt \ |
| 3327 | $(INSTALLED_CACHEIMAGE_TARGET) $(TARGET_OUT) |
| 3328 | $(call assert-max-image-size,$(INSTALLED_CACHEIMAGE_TARGET),$(BOARD_CACHEIMAGE_PARTITION_SIZE)) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3329 | endef |
| 3330 | |
| 3331 | # We just build this directly to the install location. |
| 3332 | INSTALLED_CACHEIMAGE_TARGET := $(BUILT_CACHEIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3333 | $(INSTALLED_CACHEIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3334 | $(build-cacheimage-target) |
| 3335 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3336 | $(call declare-1p-container,$(INSTALLED_CACHEIMAGE_TARGET),) |
| 3337 | $(call declare-container-license-deps,$(INSTALLED_CACHEIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 3338 | |
| 3339 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_CACHEIMAGE_TARGET) |
| 3340 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3341 | .PHONY: cacheimage-nodeps |
| 3342 | cacheimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 3343 | $(build-cacheimage-target) |
| 3344 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3345 | else # BUILDING_CACHE_IMAGE |
Patrick Tjin | f3b0dc2 | 2016-05-13 15:26:09 -0700 | [diff] [blame] | 3346 | # we need to ignore the broken cache link when doing the rsync |
| 3347 | IGNORE_CACHE_LINK := --exclude=cache |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3348 | endif # BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3349 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 3350 | # ----------------------------------------------------------------- |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3351 | # system_other partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3352 | 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] | 3353 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3354 | ifeq ($(BOARD_USES_SYSTEM_OTHER_ODEX),true) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3355 | # Marker file to identify that odex files are installed |
| 3356 | INSTALLED_SYSTEM_OTHER_ODEX_MARKER := $(TARGET_OUT_SYSTEM_OTHER)/system-other-odex-marker |
| 3357 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER) |
| 3358 | $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER): |
| 3359 | $(hide) touch $@ |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3360 | |
| 3361 | $(call declare-0p-target,$(INSTALLED_SYSTEM_OTHER_ODEX_MARKER)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3362 | endif |
| 3363 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3364 | INTERNAL_SYSTEMOTHERIMAGE_FILES := \ |
| 3365 | $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3366 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3367 | |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 3368 | # system_other dex files are installed as a side-effect of installing system image files |
| 3369 | INTERNAL_SYSTEMOTHERIMAGE_FILES += $(INTERNAL_SYSTEMIMAGE_FILES) |
| 3370 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3371 | INSTALLED_FILES_FILE_SYSTEMOTHER := $(PRODUCT_OUT)/installed-files-system-other.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3372 | INSTALLED_FILES_JSON_SYSTEMOTHER := $(INSTALLED_FILES_FILE_SYSTEMOTHER:.txt=.json) |
| 3373 | $(INSTALLED_FILES_FILE_SYSTEMOTHER): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEMOTHER) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3374 | $(INSTALLED_FILES_FILE_SYSTEMOTHER) : $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3375 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3376 | mkdir -p $(dir $@) |
| 3377 | rm -f $@ |
| 3378 | $(FILESLIST) $(TARGET_OUT_SYSTEM_OTHER) > $(@:.txt=.json) |
| 3379 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3380 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3381 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEMOTHER))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3382 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEMOTHER))) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3383 | |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 3384 | # Determines partition size for system_other.img. |
| 3385 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 3386 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)),) |
| 3387 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE := $(BOARD_SUPER_PARTITION_SYSTEM_DEVICE_SIZE) |
| 3388 | endif |
| 3389 | endif |
| 3390 | |
| 3391 | ifndef INTERNAL_SYSTEM_OTHER_PARTITION_SIZE |
| 3392 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE:= $(BOARD_SYSTEMIMAGE_PARTITION_SIZE) |
| 3393 | endif |
| 3394 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3395 | systemotherimage_intermediates := \ |
| 3396 | $(call intermediates-dir-for,PACKAGING,system_other) |
| 3397 | BUILT_SYSTEMOTHERIMAGE_TARGET := $(PRODUCT_OUT)/system_other.img |
| 3398 | |
| 3399 | # Note that we assert the size is SYSTEMIMAGE_PARTITION_SIZE since this is the 'b' system image. |
| 3400 | define build-systemotherimage-target |
| 3401 | $(call pretty,"Target system_other fs image: $(INSTALLED_SYSTEMOTHERIMAGE_TARGET)") |
| 3402 | @mkdir -p $(TARGET_OUT_SYSTEM_OTHER) |
| 3403 | @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] | 3404 | $(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] | 3405 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3406 | $(BUILD_IMAGE) \ |
| 3407 | $(TARGET_OUT_SYSTEM_OTHER) $(systemotherimage_intermediates)/system_other_image_info.txt \ |
| 3408 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) $(TARGET_OUT) |
| 3409 | $(call assert-max-image-size,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3410 | endef |
| 3411 | |
| 3412 | # We just build this directly to the install location. |
| 3413 | INSTALLED_SYSTEMOTHERIMAGE_TARGET := $(BUILT_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3414 | ifneq (true,$(SANITIZE_LITE)) |
| 3415 | # Only create system_other when not building the second stage of a SANITIZE_LITE build. |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3416 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEMOTHER) |
| 3417 | $(build-systemotherimage-target) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3418 | |
| 3419 | $(call declare-1p-container,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),) |
| 3420 | $(call declare-container-license-deps,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 3421 | |
| 3422 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3423 | endif |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3424 | |
| 3425 | .PHONY: systemotherimage-nodeps |
| 3426 | systemotherimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 3427 | $(build-systemotherimage-target) |
| 3428 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3429 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3430 | |
| 3431 | |
| 3432 | # ----------------------------------------------------------------- |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3433 | # vendor partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3434 | 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] | 3435 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3436 | INTERNAL_VENDORIMAGE_FILES := \ |
Ying Wang | cff3862 | 2014-07-16 17:46:35 -0700 | [diff] [blame] | 3437 | $(filter $(TARGET_OUT_VENDOR)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3438 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3439 | |
Ying Wang | 8da19e3 | 2015-09-15 14:22:12 -0700 | [diff] [blame] | 3440 | |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 3441 | # Create symlink /vendor/odm to /odm if necessary. |
| 3442 | ifdef BOARD_USES_ODMIMAGE |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3443 | INTERNAL_VENDORIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT_VENDOR)/odm,/odm,odm.img) |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 3444 | endif |
| 3445 | |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 3446 | # Create symlinks for vendor_dlkm on devices with a vendor_dlkm partition: |
| 3447 | # /vendor/lib/modules -> /vendor_dlkm/lib/modules |
| 3448 | # |
| 3449 | # On devices with a vendor_dlkm partition, |
| 3450 | # - /vendor/lib/modules is a symlink to a directory that stores vendor DLKMs. |
| 3451 | # - /vendor_dlkm/{etc,...} store other vendor_dlkm files directly. The vendor_dlkm partition is |
| 3452 | # mounted at /vendor_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3453 | # are hidden. |
| 3454 | # On devices without a vendor_dlkm partition, |
| 3455 | # - /vendor/lib/modules stores vendor DLKMs directly. |
| 3456 | # - /vendor_dlkm/{etc,...} are symlinks to directories that store other vendor_dlkm files. |
| 3457 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3458 | # The vendor DLKMs and other vendor_dlkm files must not be accessed using other paths because they |
| 3459 | # are not guaranteed to exist on all devices. |
| 3460 | ifdef BOARD_USES_VENDOR_DLKMIMAGE |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3461 | INTERNAL_VENDORIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT_VENDOR)/lib/modules,/vendor_dlkm/lib/modules,vendor_dlkm.img) |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 3462 | endif |
| 3463 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3464 | INSTALLED_FILES_FILE_VENDOR := $(PRODUCT_OUT)/installed-files-vendor.txt |
| 3465 | INSTALLED_FILES_JSON_VENDOR := $(INSTALLED_FILES_FILE_VENDOR:.txt=.json) |
| 3466 | $(INSTALLED_FILES_FILE_VENDOR): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR) |
| 3467 | $(INSTALLED_FILES_FILE_VENDOR) : $(INTERNAL_VENDORIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3468 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3469 | mkdir -p $(dir $@) |
| 3470 | rm -f $@ |
| 3471 | $(FILESLIST) $(TARGET_OUT_VENDOR) > $(@:.txt=.json) |
| 3472 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | 3d5e2c2 | 2020-07-15 17:01:14 -0700 | [diff] [blame] | 3473 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3474 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR)) |
| 3475 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3476 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3477 | vendorimage_intermediates := \ |
| 3478 | $(call intermediates-dir-for,PACKAGING,vendor) |
| 3479 | BUILT_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3480 | define build-vendorimage-target |
| 3481 | $(call pretty,"Target vendor fs image: $(INSTALLED_VENDORIMAGE_TARGET)") |
| 3482 | @mkdir -p $(TARGET_OUT_VENDOR) |
| 3483 | @mkdir -p $(vendorimage_intermediates) && rm -rf $(vendorimage_intermediates)/vendor_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3484 | $(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] | 3485 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3486 | $(BUILD_IMAGE) \ |
| 3487 | $(TARGET_OUT_VENDOR) $(vendorimage_intermediates)/vendor_image_info.txt \ |
| 3488 | $(INSTALLED_VENDORIMAGE_TARGET) $(TARGET_OUT) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3489 | $(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] | 3490 | endef |
| 3491 | |
| 3492 | # We just build this directly to the install location. |
| 3493 | INSTALLED_VENDORIMAGE_TARGET := $(BUILT_VENDORIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3494 | $(INSTALLED_VENDORIMAGE_TARGET): \ |
| 3495 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3496 | $(INTERNAL_VENDORIMAGE_FILES) \ |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3497 | $(INSTALLED_FILES_FILE_VENDOR) \ |
| 3498 | $(RECOVERY_FROM_BOOT_PATCH) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3499 | $(build-vendorimage-target) |
| 3500 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3501 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDORIMAGE_TARGET) |
| 3502 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3503 | $(call declare-container-license-metadata,$(INSTALLED_VENDORIMAGE_TARGET),legacy_proprietary,proprietary,,"Vendor Image",vendor) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3504 | $(call declare-container-license-deps,$(INSTALLED_VENDORIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_VENDORIMAGE_FILES) $(RECOVERY_FROM_BOOT_PATH),$(PRODUCT_OUT)/:/) |
| 3505 | |
Steven Moreland | a2e734d | 2017-03-07 12:10:09 -0800 | [diff] [blame] | 3506 | .PHONY: vendorimage-nodeps vnod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3507 | vendorimage-nodeps vnod: | $(INTERNAL_USERIMAGES_DEPS) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3508 | $(build-vendorimage-target) |
| 3509 | |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 3510 | sync: $(INTERNAL_VENDORIMAGE_FILES) |
| 3511 | |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 3512 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 3513 | INSTALLED_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
| 3514 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDORIMAGE),$(INSTALLED_VENDORIMAGE_TARGET))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3515 | $(if $(strip $(ALL_TARGETS.$(INSTALLED_VENDORIMAGE_TARGET).META_LIC)),,\ |
| 3516 | $(if $(strip $(ALL_TARGETS.$(BOARD_PREBUILT_VENDORIMAGE).META_LIC)),\ |
Bob Badour | ba33724 | 2022-05-27 19:40:41 -0700 | [diff] [blame] | 3517 | $(call declare-copy-target-license-metadata,$(INSTALLED_VENDORIMAGE_TARGET),$(BOARD_PREBUILT_VENDORIMAGE)),\ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3518 | $(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] | 3519 | endif |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3520 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3521 | # ----------------------------------------------------------------- |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3522 | # product partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3523 | 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] | 3524 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3525 | INTERNAL_PRODUCTIMAGE_FILES := \ |
| 3526 | $(filter $(TARGET_OUT_PRODUCT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3527 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3528 | |
| 3529 | INSTALLED_FILES_FILE_PRODUCT := $(PRODUCT_OUT)/installed-files-product.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3530 | INSTALLED_FILES_JSON_PRODUCT := $(INSTALLED_FILES_FILE_PRODUCT:.txt=.json) |
| 3531 | $(INSTALLED_FILES_FILE_PRODUCT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_PRODUCT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3532 | $(INSTALLED_FILES_FILE_PRODUCT) : $(INTERNAL_PRODUCTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3533 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3534 | mkdir -p $(dir $@) |
| 3535 | rm -f $@ |
| 3536 | $(FILESLIST) $(TARGET_OUT_PRODUCT) > $(@:.txt=.json) |
| 3537 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3538 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3539 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_PRODUCT)) |
| 3540 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_PRODUCT)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3541 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3542 | productimage_intermediates := \ |
| 3543 | $(call intermediates-dir-for,PACKAGING,product) |
| 3544 | BUILT_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3545 | define build-productimage-target |
| 3546 | $(call pretty,"Target product fs image: $(INSTALLED_PRODUCTIMAGE_TARGET)") |
| 3547 | @mkdir -p $(TARGET_OUT_PRODUCT) |
| 3548 | @mkdir -p $(productimage_intermediates) && rm -rf $(productimage_intermediates)/product_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3549 | $(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] | 3550 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3551 | $(BUILD_IMAGE) \ |
| 3552 | $(TARGET_OUT_PRODUCT) $(productimage_intermediates)/product_image_info.txt \ |
| 3553 | $(INSTALLED_PRODUCTIMAGE_TARGET) $(TARGET_OUT) |
| 3554 | $(call assert-max-image-size,$(INSTALLED_PRODUCTIMAGE_TARGET),$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3555 | endef |
| 3556 | |
| 3557 | # We just build this directly to the install location. |
| 3558 | INSTALLED_PRODUCTIMAGE_TARGET := $(BUILT_PRODUCTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3559 | $(INSTALLED_PRODUCTIMAGE_TARGET): \ |
| 3560 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3561 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 3562 | $(INSTALLED_FILES_FILE_PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3563 | $(build-productimage-target) |
| 3564 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3565 | PRODUCT_NOTICE_DEPS += $(INSTALLED_PRODUCTIMAGE_TARGET) |
| 3566 | |
| 3567 | $(call declare-1p-container,$(INSTALLED_PRODUCTIMAGE_TARGET),) |
| 3568 | $(call declare-container-license-deps,$(INSTALLED_PRODUCTIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_PRODUCTIMAGE_FILES) $(INSTALLED_FILES_FILE_PRODUCT),$(PRODUCT_OUT)/:/) |
| 3569 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3570 | .PHONY: productimage-nodeps pnod |
| 3571 | productimage-nodeps pnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3572 | $(build-productimage-target) |
| 3573 | |
| 3574 | sync: $(INTERNAL_PRODUCTIMAGE_FILES) |
| 3575 | |
| 3576 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 3577 | INSTALLED_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3578 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_PRODUCTIMAGE),$(INSTALLED_PRODUCTIMAGE_TARGET))) |
| 3579 | endif |
| 3580 | |
| 3581 | # ----------------------------------------------------------------- |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3582 | # system_ext partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3583 | 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] | 3584 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3585 | INTERNAL_SYSTEM_EXTIMAGE_FILES := \ |
| 3586 | $(filter $(TARGET_OUT_SYSTEM_EXT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3587 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3588 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3589 | INSTALLED_FILES_FILE_SYSTEM_EXT := $(PRODUCT_OUT)/installed-files-system_ext.txt |
| 3590 | INSTALLED_FILES_JSON_SYSTEM_EXT := $(INSTALLED_FILES_FILE_SYSTEM_EXT:.txt=.json) |
| 3591 | $(INSTALLED_FILES_FILE_SYSTEM_EXT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_EXT) |
| 3592 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) : $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3593 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3594 | mkdir -p $(dir $@) |
| 3595 | rm -f $@ |
| 3596 | $(FILESLIST) $(TARGET_OUT_SYSTEM_EXT) > $(@:.txt=.json) |
| 3597 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3598 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3599 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEM_EXT)) |
| 3600 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEM_EXT)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3601 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3602 | system_extimage_intermediates := \ |
| 3603 | $(call intermediates-dir-for,PACKAGING,system_ext) |
| 3604 | BUILT_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3605 | define build-system_extimage-target |
| 3606 | $(call pretty,"Target system_ext fs image: $(INSTALLED_SYSTEM_EXTIMAGE_TARGET)") |
| 3607 | @mkdir -p $(TARGET_OUT_SYSTEM_EXT) |
| 3608 | @mkdir -p $(system_extimage_intermediates) && rm -rf $(system_extimage_intermediates)/system_ext_image_info.txt |
| 3609 | $(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] | 3610 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3611 | $(BUILD_IMAGE) \ |
| 3612 | $(TARGET_OUT_SYSTEM_EXT) \ |
| 3613 | $(system_extimage_intermediates)/system_ext_image_info.txt \ |
| 3614 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 3615 | $(TARGET_OUT) |
| 3616 | $(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] | 3617 | endef |
| 3618 | |
| 3619 | # We just build this directly to the install location. |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3620 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(BUILT_SYSTEM_EXTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3621 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET): \ |
| 3622 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3623 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 3624 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3625 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3626 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3627 | SYSTEM_EXT_NOTICE_DEPS += $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
| 3628 | |
| 3629 | $(call declare-1p-container,$(INSTALLED_SYSTEM_EXTIMAGE_TARGET),) |
| 3630 | $(call declare-container-license-deps,$(INSTALLED_SYSTEM_EXTIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEM_EXT),$(PRODUCT_OUT)/:/) |
| 3631 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3632 | .PHONY: systemextimage-nodeps senod |
| 3633 | systemextimage-nodeps senod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3634 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3635 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3636 | sync: $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3637 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3638 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 3639 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3640 | $(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] | 3641 | endif |
| 3642 | |
| 3643 | # ----------------------------------------------------------------- |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3644 | # odm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3645 | 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] | 3646 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3647 | INTERNAL_ODMIMAGE_FILES := \ |
| 3648 | $(filter $(TARGET_OUT_ODM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3649 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3650 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3651 | # Create symlinks for odm_dlkm on devices with a odm_dlkm partition: |
| 3652 | # /odm/lib/modules -> /odm_dlkm/lib/modules |
| 3653 | # |
| 3654 | # On devices with a odm_dlkm partition, |
| 3655 | # - /odm/lib/modules is a symlink to a directory that stores odm DLKMs. |
| 3656 | # - /odm_dlkm/{etc,...} store other odm_dlkm files directly. The odm_dlkm partition is |
| 3657 | # mounted at /odm_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3658 | # are hidden. |
| 3659 | # On devices without a odm_dlkm partition, |
| 3660 | # - /odm/lib/modules stores odm DLKMs directly. |
| 3661 | # - /odm_dlkm/{etc,...} are symlinks to directories that store other odm_dlkm files. |
| 3662 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3663 | # The odm DLKMs and other odm_dlkm files must not be accessed using other paths because they |
| 3664 | # are not guaranteed to exist on all devices. |
| 3665 | ifdef BOARD_USES_ODM_DLKMIMAGE |
| 3666 | INTERNAL_ODMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT_ODM)/lib/modules,/odm_dlkm/lib/modules,odm_dlkm.img) |
| 3667 | endif |
| 3668 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3669 | INSTALLED_FILES_FILE_ODM := $(PRODUCT_OUT)/installed-files-odm.txt |
| 3670 | INSTALLED_FILES_JSON_ODM := $(INSTALLED_FILES_FILE_ODM:.txt=.json) |
| 3671 | $(INSTALLED_FILES_FILE_ODM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3672 | $(INSTALLED_FILES_FILE_ODM) : $(INTERNAL_ODMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3673 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3674 | mkdir -p $(dir $@) |
| 3675 | rm -f $@ |
| 3676 | $(FILESLIST) $(TARGET_OUT_ODM) > $(@:.txt=.json) |
| 3677 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3678 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3679 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ODM)) |
| 3680 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ODM)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3681 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3682 | odmimage_intermediates := \ |
| 3683 | $(call intermediates-dir-for,PACKAGING,odm) |
| 3684 | BUILT_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3685 | define build-odmimage-target |
| 3686 | $(call pretty,"Target odm fs image: $(INSTALLED_ODMIMAGE_TARGET)") |
| 3687 | @mkdir -p $(TARGET_OUT_ODM) |
| 3688 | @mkdir -p $(odmimage_intermediates) && rm -rf $(odmimage_intermediates)/odm_image_info.txt |
David Anderson | 17063cf | 2021-08-27 16:43:09 -0700 | [diff] [blame] | 3689 | $(call generate-image-prop-dictionary, $(odmimage_intermediates)/odm_image_info.txt, odm, \ |
| 3690 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3691 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3692 | $(BUILD_IMAGE) \ |
| 3693 | $(TARGET_OUT_ODM) $(odmimage_intermediates)/odm_image_info.txt \ |
| 3694 | $(INSTALLED_ODMIMAGE_TARGET) $(TARGET_OUT) |
| 3695 | $(call assert-max-image-size,$(INSTALLED_ODMIMAGE_TARGET),$(BOARD_ODMIMAGE_PARTITION_SIZE)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3696 | endef |
| 3697 | |
| 3698 | # We just build this directly to the install location. |
| 3699 | INSTALLED_ODMIMAGE_TARGET := $(BUILT_ODMIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3700 | $(INSTALLED_ODMIMAGE_TARGET): \ |
| 3701 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3702 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 3703 | $(INSTALLED_FILES_FILE_ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3704 | $(build-odmimage-target) |
| 3705 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3706 | ODM_NOTICE_DEPS += $(INSTALLED_ODMIMAGE_TARGET) |
| 3707 | |
| 3708 | $(call declare-1p-container,$(INSTALLED_ODMIMAGE_TARGET),) |
| 3709 | $(call declare-container-license-deps,$(INSTALLED_ODMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_ODMIMAGE_FILES) $(INSTALLED_FILES_FILE_ODM),$(PRODUCT_OUT)/:/) |
| 3710 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3711 | .PHONY: odmimage-nodeps onod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3712 | odmimage-nodeps onod: | $(INTERNAL_USERIMAGES_DEPS) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3713 | $(build-odmimage-target) |
| 3714 | |
| 3715 | sync: $(INTERNAL_ODMIMAGE_FILES) |
| 3716 | |
| 3717 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 3718 | INSTALLED_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3719 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODMIMAGE),$(INSTALLED_ODMIMAGE_TARGET))) |
| 3720 | endif |
| 3721 | |
| 3722 | # ----------------------------------------------------------------- |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3723 | # vendor_dlkm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3724 | 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] | 3725 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 3726 | INTERNAL_VENDOR_DLKMIMAGE_FILES := \ |
| 3727 | $(filter $(TARGET_OUT_VENDOR_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3728 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3729 | |
| 3730 | INSTALLED_FILES_FILE_VENDOR_DLKM := $(PRODUCT_OUT)/installed-files-vendor_dlkm.txt |
| 3731 | INSTALLED_FILES_JSON_VENDOR_DLKM := $(INSTALLED_FILES_FILE_VENDOR_DLKM:.txt=.json) |
| 3732 | $(INSTALLED_FILES_FILE_VENDOR_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DLKM) |
| 3733 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) : $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3734 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3735 | mkdir -p $(dir $@) |
| 3736 | rm -f $@ |
| 3737 | $(FILESLIST) $(TARGET_OUT_VENDOR_DLKM) > $(@:.txt=.json) |
| 3738 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3739 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3740 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_DLKM)) |
| 3741 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_DLKM)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3742 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3743 | vendor_dlkmimage_intermediates := \ |
| 3744 | $(call intermediates-dir-for,PACKAGING,vendor_dlkm) |
| 3745 | BUILT_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 3746 | define build-vendor_dlkmimage-target |
| 3747 | $(call pretty,"Target vendor_dlkm fs image: $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)") |
| 3748 | @mkdir -p $(TARGET_OUT_VENDOR_DLKM) |
| 3749 | @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] | 3750 | $(call generate-image-prop-dictionary, $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt, \ |
| 3751 | vendor_dlkm, skip_fsck=true) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3752 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3753 | $(BUILD_IMAGE) \ |
| 3754 | $(TARGET_OUT_VENDOR_DLKM) $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt \ |
| 3755 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3756 | $(call assert-max-image-size,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE)) |
| 3757 | endef |
| 3758 | |
| 3759 | # We just build this directly to the install location. |
| 3760 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(BUILT_VENDOR_DLKMIMAGE_TARGET) |
| 3761 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET): \ |
| 3762 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3763 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 3764 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) |
| 3765 | $(build-vendor_dlkmimage-target) |
| 3766 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3767 | VENDOR_DLKM_NOTICE_DEPS += $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
| 3768 | |
| 3769 | $(call declare-1p-container,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),) |
| 3770 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_VENDOR_DLKM),$(PRODUCT_OUT)/:/) |
| 3771 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3772 | .PHONY: vendor_dlkmimage-nodeps vdnod |
| 3773 | vendor_dlkmimage-nodeps vdnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3774 | $(build-vendor_dlkmimage-target) |
| 3775 | |
| 3776 | sync: $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
| 3777 | |
| 3778 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
| 3779 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 3780 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDOR_DLKMIMAGE),$(INSTALLED_VENDOR_DLKMIMAGE_TARGET))) |
| 3781 | endif |
| 3782 | |
| 3783 | # ----------------------------------------------------------------- |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3784 | # odm_dlkm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3785 | 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] | 3786 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 3787 | INTERNAL_ODM_DLKMIMAGE_FILES := \ |
| 3788 | $(filter $(TARGET_OUT_ODM_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3789 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3790 | |
| 3791 | INSTALLED_FILES_FILE_ODM_DLKM := $(PRODUCT_OUT)/installed-files-odm_dlkm.txt |
| 3792 | INSTALLED_FILES_JSON_ODM_DLKM := $(INSTALLED_FILES_FILE_ODM_DLKM:.txt=.json) |
| 3793 | $(INSTALLED_FILES_FILE_ODM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM_DLKM) |
| 3794 | $(INSTALLED_FILES_FILE_ODM_DLKM) : $(INTERNAL_ODM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3795 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3796 | mkdir -p $(dir $@) |
| 3797 | rm -f $@ |
| 3798 | $(FILESLIST) $(TARGET_OUT_ODM_DLKM) > $(@:.txt=.json) |
| 3799 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3800 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3801 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ODM_DLKM)) |
| 3802 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ODM_DLKM)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3803 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3804 | odm_dlkmimage_intermediates := \ |
| 3805 | $(call intermediates-dir-for,PACKAGING,odm_dlkm) |
| 3806 | BUILT_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 3807 | define build-odm_dlkmimage-target |
| 3808 | $(call pretty,"Target odm_dlkm fs image: $(INSTALLED_ODM_DLKMIMAGE_TARGET)") |
| 3809 | @mkdir -p $(TARGET_OUT_ODM_DLKM) |
| 3810 | @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] | 3811 | $(call generate-image-prop-dictionary, $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt, \ |
| 3812 | odm_dlkm, skip_fsck=true) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3813 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3814 | $(BUILD_IMAGE) \ |
| 3815 | $(TARGET_OUT_ODM_DLKM) $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt \ |
| 3816 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3817 | $(call assert-max-image-size,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE)) |
| 3818 | endef |
| 3819 | |
| 3820 | # We just build this directly to the install location. |
| 3821 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(BUILT_ODM_DLKMIMAGE_TARGET) |
| 3822 | $(INSTALLED_ODM_DLKMIMAGE_TARGET): \ |
| 3823 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3824 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
| 3825 | $(INSTALLED_FILES_FILE_ODM_DLKM) |
| 3826 | $(build-odm_dlkmimage-target) |
| 3827 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3828 | ODM_DLKM_NOTICE_DEPS += $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
| 3829 | |
| 3830 | $(call declare-1p-container,$(INSTALLED_ODM_DLKMIMAGE_TARGET),) |
| 3831 | $(call declare-container-license-deps,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_ODM_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_ODM_DLKM),$(PRODUCT_OUT)/:/) |
| 3832 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3833 | .PHONY: odm_dlkmimage-nodeps odnod |
| 3834 | odm_dlkmimage-nodeps odnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3835 | $(build-odm_dlkmimage-target) |
| 3836 | |
| 3837 | sync: $(INTERNAL_ODM_DLKMIMAGE_FILES) |
| 3838 | |
| 3839 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 3840 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 3841 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODM_DLKMIMAGE),$(INSTALLED_ODM_DLKMIMAGE_TARGET))) |
| 3842 | endif |
| 3843 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3844 | # ----------------------------------------------------------------- |
| 3845 | # system_dlkm partition image |
| 3846 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3847 | 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] | 3848 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 3849 | |
| 3850 | INTERNAL_SYSTEM_DLKMIMAGE_FILES := \ |
| 3851 | $(filter $(TARGET_OUT_SYSTEM_DLKM)/%,\ |
| 3852 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 3853 | |
| 3854 | INSTALLED_FILES_FILE_SYSTEM_DLKM := $(PRODUCT_OUT)/installed-files-system_dlkm.txt |
| 3855 | INSTALLED_FILES_JSON_SYSTEM_DLKM := $(INSTALLED_FILES_FILE_SYSTEM_DLKM:.txt=.json) |
| 3856 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_DLKM) |
| 3857 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM): $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3858 | @echo Installed file list: $@ |
| 3859 | mkdir -p $(dir $@) |
| 3860 | if [ -d "$(BOARD_SYSTEM_DLKM_SRC)" ]; then rsync -rupE $(BOARD_SYSTEM_DLKM_SRC)/ $(TARGET_OUT_SYSTEM_DLKM); fi |
| 3861 | rm -f $@ |
| 3862 | $(FILESLIST) $(TARGET_OUT_SYSTEM_DLKM) > $(@:.txt=.json) |
| 3863 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 3864 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3865 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEM_DLKM)) |
| 3866 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEM_DLKM)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3867 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3868 | system_dlkmimage_intermediates := \ |
| 3869 | $(call intermediates-dir-for,PACKAGING,system_dlkm) |
| 3870 | BUILT_SYSTEM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/system_dlkm.img |
| 3871 | define build-system_dlkmimage-target |
| 3872 | $(call pretty,"Target system_dlkm fs image: $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET)") |
| 3873 | @mkdir -p $(TARGET_OUT_SYSTEM_DLKM) |
| 3874 | @mkdir -p $(system_dlkmimage_intermediates) && rm -rf $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt |
| 3875 | $(call generate-image-prop-dictionary, $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt, \ |
| 3876 | system_dlkm, skip_fsck=true) |
| 3877 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3878 | $(BUILD_IMAGE) \ |
| 3879 | $(TARGET_OUT_SYSTEM_DLKM) $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt \ |
| 3880 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3881 | $(call assert-max-image-size,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(BOARD_SYSTEM_DLKMIMAGE_PARTITION_SIZE)) |
| 3882 | endef |
| 3883 | |
| 3884 | # We just build this directly to the install location. |
| 3885 | INSTALLED_SYSTEM_DLKMIMAGE_TARGET := $(BUILT_SYSTEM_DLKMIMAGE_TARGET) |
| 3886 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET): \ |
| 3887 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3888 | $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) \ |
| 3889 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM) |
| 3890 | $(build-system_dlkmimage-target) |
| 3891 | |
Bob Badour | 56e0de5 | 2022-08-02 17:46:48 +0000 | [diff] [blame] | 3892 | SYSTEM_DLKM_NOTICE_DEPS += $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) |
| 3893 | |
| 3894 | $(call declare-1p-container,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),) |
| 3895 | $(call declare-container-license-deps,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEM_DLKM),$(PRODUCT_OUT)/:/) |
| 3896 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3897 | .PHONY: system_dlkmimage-nodeps sdnod |
| 3898 | system_dlkmimage-nodeps sdnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3899 | $(build-system_dlkmimage-target) |
| 3900 | |
| 3901 | sync: $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) |
| 3902 | |
| 3903 | else ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
| 3904 | INSTALLED_SYSTEM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/system_dlkm.img |
| 3905 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_SYSTEM_DLKMIMAGE),$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET))) |
| 3906 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3907 | |
| 3908 | # ----------------------------------------------------------------- |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3909 | # dtbo image |
| 3910 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 3911 | INSTALLED_DTBOIMAGE_TARGET := $(PRODUCT_OUT)/dtbo.img |
| 3912 | |
| 3913 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3914 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) $(AVBTOOL) $(BOARD_AVB_DTBO_KEY_PATH) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3915 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 3916 | $(AVBTOOL) add_hash_footer \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3917 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 3918 | $(call get-partition-size-argument,$(BOARD_DTBOIMG_PARTITION_SIZE)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3919 | --partition_name dtbo $(INTERNAL_AVB_DTBO_SIGNING_ARGS) \ |
| 3920 | $(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3921 | |
| 3922 | $(call declare-1p-container,$(INSTALLED_DTBOIMAGE_TARGET),) |
| 3923 | $(call declare-container-license-deps,$(INSTALLED_DTBOIMAGE_TARGET),$(BOARD_PREBUILT_DTBOIMAGE),$(PRODUCT_OUT)/:/) |
| 3924 | |
| 3925 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_DTBOIMAGE_TARGET) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3926 | else |
| 3927 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) |
| 3928 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 3929 | endif |
| 3930 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3931 | endif # BOARD_PREBUILT_DTBOIMAGE |
| 3932 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3933 | # ----------------------------------------------------------------- |
| 3934 | # Protected VM firmware image |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 3935 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3936 | INSTALLED_PVMFWIMAGE_TARGET := $(PRODUCT_OUT)/pvmfw.img |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 3937 | INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET := $(PRODUCT_OUT)/pvmfw_embedded.avbpubkey |
Pierre-Clément Tosi | 3bda0d6 | 2021-09-21 13:49:35 +0200 | [diff] [blame] | 3938 | INTERNAL_PREBUILT_PVMFWIMAGE := packages/modules/Virtualization/pvmfw/pvmfw.img |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 3939 | INTERNAL_PVMFW_EMBEDDED_AVBKEY := external/avb/test/data/testkey_rsa4096_pub.bin |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3940 | |
Pierre-Clément Tosi | fa8193c | 2021-09-24 15:49:00 +0200 | [diff] [blame] | 3941 | ifdef BOARD_PREBUILT_PVMFWIMAGE |
Pierre-Clément Tosi | 37aa7e4 | 2022-02-01 13:01:28 +0100 | [diff] [blame] | 3942 | PREBUILT_PVMFWIMAGE_TARGET := $(BOARD_PREBUILT_PVMFWIMAGE) |
Pierre-Clément Tosi | 4bbb8dd | 2022-01-31 20:25:52 +0100 | [diff] [blame] | 3943 | else |
Pierre-Clément Tosi | 37aa7e4 | 2022-02-01 13:01:28 +0100 | [diff] [blame] | 3944 | PREBUILT_PVMFWIMAGE_TARGET := $(INTERNAL_PREBUILT_PVMFWIMAGE) |
Pierre-Clément Tosi | fa8193c | 2021-09-24 15:49:00 +0200 | [diff] [blame] | 3945 | endif |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3946 | |
| 3947 | ifeq ($(BOARD_AVB_ENABLE),true) |
Pierre-Clément Tosi | 37aa7e4 | 2022-02-01 13:01:28 +0100 | [diff] [blame] | 3948 | $(INSTALLED_PVMFWIMAGE_TARGET): $(PREBUILT_PVMFWIMAGE_TARGET) $(AVBTOOL) $(BOARD_AVB_PVMFW_KEY_PATH) |
| 3949 | cp $< $@ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3950 | $(AVBTOOL) add_hash_footer \ |
| 3951 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 3952 | $(call get-partition-size-argument,$(BOARD_PVMFWIMAGE_PARTITION_SIZE)) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3953 | --partition_name pvmfw $(INTERNAL_AVB_PVMFW_SIGNING_ARGS) \ |
| 3954 | $(BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3955 | |
| 3956 | $(call declare-1p-container,$(INSTALLED_PVMFWIMAGE_TARGET),) |
| 3957 | $(call declare-container-license-deps,$(INSTALLED_PVMFWIMAGE_TARGET),$(PREBUILT_PVMFWIMAGE_TARGET),$(PRODUCT_OUT)/:/) |
| 3958 | |
| 3959 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_PVMFWIMAGE_TARGET) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3960 | else |
Pierre-Clément Tosi | 37aa7e4 | 2022-02-01 13:01:28 +0100 | [diff] [blame] | 3961 | $(eval $(call copy-one-file,$(PREBUILT_PVMFWIMAGE_TARGET),$(INSTALLED_PVMFWIMAGE_TARGET))) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3962 | endif |
| 3963 | |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 3964 | $(INSTALLED_PVMFWIMAGE_TARGET): $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) |
| 3965 | |
| 3966 | $(eval $(call copy-one-file,$(INTERNAL_PVMFW_EMBEDDED_AVBKEY),$(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET))) |
| 3967 | |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 3968 | endif # BOARD_USES_PVMFWIMAGE |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3969 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3970 | # Returns a list of image targets corresponding to the given list of partitions. For example, it |
| 3971 | # returns "$(INSTALLED_PRODUCTIMAGE_TARGET)" for "product", or "$(INSTALLED_SYSTEMIMAGE_TARGET) |
| 3972 | # $(INSTALLED_VENDORIMAGE_TARGET)" for "system vendor". |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3973 | # (1): list of partitions like "system", "vendor" or "system product system_ext". |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3974 | define images-for-partitions |
Bowgo Tsai | 4f62aa0 | 2022-01-04 14:21:39 +0800 | [diff] [blame] | 3975 | $(strip $(foreach item,$(1),\ |
| 3976 | $(if $(filter $(item),system_other),$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),\ |
| 3977 | $(if $(filter $(item),init_boot),$(INSTALLED_INIT_BOOT_IMAGE_TARGET),\ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3978 | $(INSTALLED_$(call to-upper,$(item))IMAGE_TARGET))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3979 | endef |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3980 | |
| 3981 | # ----------------------------------------------------------------- |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3982 | # custom images |
| 3983 | INSTALLED_CUSTOMIMAGES_TARGET := |
| 3984 | |
| 3985 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 3986 | INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS := |
| 3987 | |
| 3988 | # Sign custom image. |
| 3989 | # $(1): the prebuilt custom image. |
| 3990 | # $(2): the mount point of the prebuilt custom image. |
| 3991 | # $(3): the signed custom image target. |
| 3992 | define sign_custom_image |
| 3993 | $(3): $(1) $(INTERNAL_USERIMAGES_DEPS) |
| 3994 | @echo Target custom image: $(3) |
| 3995 | mkdir -p $(dir $(3)) |
| 3996 | cp $(1) $(3) |
| 3997 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3998 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$$$PATH \ |
| 3999 | $(AVBTOOL) add_hashtree_footer \ |
| 4000 | --image $(3) \ |
| 4001 | --key $(BOARD_AVB_$(call to-upper,$(2))_KEY_PATH) \ |
| 4002 | --algorithm $(BOARD_AVB_$(call to-upper,$(2))_ALGORITHM) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 4003 | $(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] | 4004 | --partition_name $(2) \ |
| 4005 | $(INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS) \ |
| 4006 | $(BOARD_AVB_$(call to-upper,$(2))_ADD_HASHTREE_FOOTER_ARGS) |
| 4007 | endif |
| 4008 | INSTALLED_CUSTOMIMAGES_TARGET += $(3) |
| 4009 | endef |
| 4010 | |
| 4011 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4012 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST), \ |
| 4013 | $(eval $(call sign_custom_image,$(image),$(partition),$(PRODUCT_OUT)/$(notdir $(image)))))) |
| 4014 | endif |
| 4015 | |
| 4016 | # ----------------------------------------------------------------- |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4017 | # vbmeta image |
| 4018 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4019 | |
| 4020 | BUILT_VBMETAIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta.img |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4021 | AVB_CHAIN_KEY_DIR := $(TARGET_OUT_INTERMEDIATES)/avb_chain_keys |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4022 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4023 | ifdef BOARD_AVB_KEY_PATH |
| 4024 | $(if $(BOARD_AVB_ALGORITHM),,$(error BOARD_AVB_ALGORITHM is not defined)) |
| 4025 | else |
| 4026 | # If key path isn't specified, use the 4096-bit test key. |
| 4027 | BOARD_AVB_ALGORITHM := SHA256_RSA4096 |
| 4028 | BOARD_AVB_KEY_PATH := external/avb/test/data/testkey_rsa4096.pem |
| 4029 | endif |
| 4030 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 4031 | # AVB signing for system_other.img. |
| 4032 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 4033 | ifdef BOARD_AVB_SYSTEM_OTHER_KEY_PATH |
| 4034 | $(if $(BOARD_AVB_SYSTEM_OTHER_ALGORITHM),,$(error BOARD_AVB_SYSTEM_OTHER_ALGORITHM is not defined)) |
| 4035 | else |
| 4036 | # If key path isn't specified, use the same key as BOARD_AVB_KEY_PATH. |
| 4037 | BOARD_AVB_SYSTEM_OTHER_KEY_PATH := $(BOARD_AVB_KEY_PATH) |
| 4038 | BOARD_AVB_SYSTEM_OTHER_ALGORITHM := $(BOARD_AVB_ALGORITHM) |
| 4039 | endif |
| 4040 | |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 4041 | $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET): $(AVBTOOL) $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) |
| 4042 | @echo Extracting system_other avb key: $@ |
| 4043 | @rm -f $@ |
| 4044 | @mkdir -p $(dir $@) |
| 4045 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) --output $@ |
Bowgo Tsai | 45db7ce | 2019-01-30 14:53:57 +0800 | [diff] [blame] | 4046 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4047 | $(eval $(call declare-0p-target,$(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET),)) |
| 4048 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 4049 | ifndef BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX |
| 4050 | BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX := $(PLATFORM_SECURITY_PATCH_TIMESTAMP) |
| 4051 | endif |
| 4052 | |
| 4053 | BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS += --rollback_index $(BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX) |
| 4054 | endif # end of AVB for BUILDING_SYSTEM_OTHER_IMAGE |
| 4055 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4056 | INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES := \ |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4057 | $(BOARD_AVB_VBMETA_SYSTEM) \ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4058 | $(BOARD_AVB_VBMETA_VENDOR) |
| 4059 | |
| 4060 | # Not allowing the same partition to appear in multiple groups. |
| 4061 | 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] | 4062 | $(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] | 4063 | endif |
| 4064 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4065 | # When building a standalone recovery image for non-A/B devices, recovery image must be self-signed |
| 4066 | # to be verified independently, and cannot be chained into vbmeta.img. See the link below for |
| 4067 | # details. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4068 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4069 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 4070 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),,\ |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4071 | $(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] | 4072 | See https://android.googlesource.com/platform/external/avb/+/master/README.md#booting-into-recovery)) |
| 4073 | endif |
| 4074 | endif |
| 4075 | |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4076 | # Appends os version as a AVB property descriptor. |
| 4077 | SYSTEM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4078 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4079 | --prop com.android.build.system.os_version:$(SYSTEM_OS_VERSION) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4080 | |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4081 | PRODUCT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4082 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4083 | --prop com.android.build.product.os_version:$(PRODUCT_OS_VERSION) |
| 4084 | |
| 4085 | SYSTEM_EXT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4086 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4087 | --prop com.android.build.system_ext.os_version:$(SYSTEM_EXT_OS_VERSION) |
| 4088 | |
| 4089 | INIT_BOOT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4090 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4091 | --prop com.android.build.init_boot.os_version:$(INIT_BOOT_OS_VERSION) |
| 4092 | |
| 4093 | BOOT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4094 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4095 | --prop com.android.build.boot.os_version:$(BOOT_OS_VERSION) |
| 4096 | |
| 4097 | VENDOR_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4098 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4099 | --prop com.android.build.vendor.os_version:$(VENDOR_OS_VERSION) |
| 4100 | |
| 4101 | ODM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4102 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4103 | --prop com.android.build.odm.os_version:$(ODM_OS_VERSION) |
| 4104 | |
| 4105 | VENDOR_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4106 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4107 | --prop com.android.build.vendor_dlkm.os_version:$(VENDOR_DLKM_OS_VERSION) |
| 4108 | |
| 4109 | ODM_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4110 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4111 | --prop com.android.build.odm_dlkm.os_version:$(ODM_DLKM_OS_VERSION) |
| 4112 | |
| 4113 | SYSTEM_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4114 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4115 | --prop com.android.build.system_dlkm.os_version:$(SYSTEM_DLKM_OS_VERSION) |
| 4116 | |
| 4117 | # Appends fingerprint and security patch level as a AVB property descriptor. |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4118 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4119 | --prop com.android.build.system.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4120 | --prop com.android.build.system.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 4121 | |
| 4122 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4123 | --prop com.android.build.product.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4124 | --prop com.android.build.product.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 4125 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4126 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4127 | --prop com.android.build.system_ext.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4128 | --prop com.android.build.system_ext.security_patch:$(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4129 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4130 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Bowgo Tsai | 8c7f820 | 2022-02-22 14:47:45 +0800 | [diff] [blame] | 4131 | --prop com.android.build.boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4132 | |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4133 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4134 | --prop com.android.build.init_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4135 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4136 | BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4137 | --prop com.android.build.vendor_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 4138 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4139 | BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4140 | --prop com.android.build.vendor_kernel_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 4141 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4142 | BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS += \ |
| 4143 | --prop com.android.build.recovery.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4144 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4145 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4146 | --prop com.android.build.vendor.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4147 | |
| 4148 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4149 | --prop com.android.build.odm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4150 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4151 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4152 | --prop com.android.build.vendor_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4153 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4154 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4155 | --prop com.android.build.odm_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4156 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4157 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4158 | --prop com.android.build.system_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4159 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4160 | BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS += \ |
| 4161 | --prop com.android.build.dtbo.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4162 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4163 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 4164 | --prop com.android.build.pvmfw.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4165 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4166 | # 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] | 4167 | # TODO(b/210875415) Is this security_patch property used? Should it be removed from |
| 4168 | # boot.img when there is no platform ramdisk included in it? |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4169 | ifdef BOOT_SECURITY_PATCH |
| 4170 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4171 | --prop com.android.build.boot.security_patch:$(BOOT_SECURITY_PATCH) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4172 | endif |
| 4173 | |
| 4174 | ifdef INIT_BOOT_SECURITY_PATCH |
| 4175 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4176 | --prop com.android.build.init_boot.security_patch:$(INIT_BOOT_SECURITY_PATCH) |
| 4177 | else ifdef BOOT_SECURITY_PATCH |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4178 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4179 | --prop com.android.build.init_boot.security_patch:$(BOOT_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4180 | endif |
| 4181 | |
| 4182 | ifdef VENDOR_SECURITY_PATCH |
| 4183 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4184 | --prop com.android.build.vendor.security_patch:$(VENDOR_SECURITY_PATCH) |
| 4185 | endif |
| 4186 | |
| 4187 | ifdef ODM_SECURITY_PATCH |
| 4188 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4189 | --prop com.android.build.odm.security_patch:$(ODM_SECURITY_PATCH) |
| 4190 | endif |
| 4191 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4192 | ifdef VENDOR_DLKM_SECURITY_PATCH |
| 4193 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4194 | --prop com.android.build.vendor_dlkm.security_patch:$(VENDOR_DLKM_SECURITY_PATCH) |
| 4195 | endif |
| 4196 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4197 | ifdef ODM_DLKM_SECURITY_PATCH |
| 4198 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4199 | --prop com.android.build.odm_dlkm.security_patch:$(ODM_DLKM_SECURITY_PATCH) |
| 4200 | endif |
| 4201 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4202 | ifdef SYSTEM_DLKM_SECURITY_PATCH |
| 4203 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4204 | --prop com.android.build.system_dlkm.security_patch:$(SYSTEM_DLKM_SECURITY_PATCH) |
| 4205 | endif |
| 4206 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4207 | ifdef PVMFW_SECURITY_PATCH |
| 4208 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 4209 | --prop com.android.build.pvmfw.security_patch:$(PVMFW_SECURITY_PATCH) |
| 4210 | endif |
| 4211 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4212 | BOOT_FOOTER_ARGS := BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4213 | INIT_BOOT_FOOTER_ARGS := BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4214 | VENDOR_BOOT_FOOTER_ARGS := BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4215 | 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] | 4216 | DTBO_FOOTER_ARGS := BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4217 | PVMFW_FOOTER_ARGS := BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4218 | SYSTEM_FOOTER_ARGS := BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS |
| 4219 | VENDOR_FOOTER_ARGS := BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4220 | RECOVERY_FOOTER_ARGS := BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4221 | PRODUCT_FOOTER_ARGS := BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4222 | SYSTEM_EXT_FOOTER_ARGS := BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4223 | ODM_FOOTER_ARGS := BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4224 | VENDOR_DLKM_FOOTER_ARGS := BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4225 | ODM_DLKM_FOOTER_ARGS := BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4226 | SYSTEM_DLKM_FOOTER_ARGS := BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4227 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4228 | # 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] | 4229 | # $(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] | 4230 | define _check-and-set-avb-chain-args |
| 4231 | $(eval part := $(1)) |
| 4232 | $(eval PART=$(call to-upper,$(part))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4233 | |
| 4234 | $(eval _key_path := BOARD_AVB_$(PART)_KEY_PATH) |
| 4235 | $(eval _signing_algorithm := BOARD_AVB_$(PART)_ALGORITHM) |
| 4236 | $(eval _rollback_index := BOARD_AVB_$(PART)_ROLLBACK_INDEX) |
| 4237 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 4238 | $(if $($(_key_path)),,$(error $(_key_path) is not defined)) |
| 4239 | $(if $($(_signing_algorithm)),,$(error $(_signing_algorithm) is not defined)) |
| 4240 | $(if $($(_rollback_index)),,$(error $(_rollback_index) is not defined)) |
| 4241 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 4242 | |
| 4243 | # Set INTERNAL_AVB_(PART)_SIGNING_ARGS |
| 4244 | $(eval _signing_args := INTERNAL_AVB_$(PART)_SIGNING_ARGS) |
| 4245 | $(eval $(_signing_args) := \ |
| 4246 | --algorithm $($(_signing_algorithm)) --key $($(_key_path))) |
| 4247 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4248 | # The recovery partition in non-A/B devices should be verified separately. Skip adding the chain |
| 4249 | # partition descriptor for recovery partition into vbmeta.img. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4250 | $(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] | 4251 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4252 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4253 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4254 | # 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] | 4255 | # 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] | 4256 | $(if $(filter $(part),$(part:vbmeta_%=%)),\ |
| 4257 | $(eval _footer_args := $(PART)_FOOTER_ARGS) \ |
| 4258 | $(eval $($(_footer_args)) += --rollback_index $($(_rollback_index)))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4259 | endef |
| 4260 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4261 | # Checks and sets the required build variables for an AVB partition. The partition will be |
| 4262 | # 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] | 4263 | # image descriptor will be included into vbmeta.img, unless it has been already added to any chained |
| 4264 | # VBMeta image. |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 4265 | # Multiple boot images can be generated based on BOARD_KERNEL_BINARIES |
| 4266 | # but vbmeta would capture the image descriptor of only the first boot |
| 4267 | # image specified in BUILT_BOOTIMAGE_TARGET. |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4268 | # $(1): Partition name, e.g. boot or system. |
| 4269 | define check-and-set-avb-args |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4270 | $(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] | 4271 | $(if $(BOARD_AVB_$(call to-upper,$(1))_KEY_PATH),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4272 | $(if $(_in_chained_vbmeta),\ |
| 4273 | $(error Chaining partition "$(1)" in chained VBMeta image is not supported)) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4274 | $(call _check-and-set-avb-chain-args,$(1)),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4275 | $(if $(_in_chained_vbmeta),,\ |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 4276 | $(if $(filter boot,$(1)),\ |
| 4277 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4278 | --include_descriptors_from_image $(firstword $(call images-for-partitions,$(1)))),\ |
| 4279 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4280 | --include_descriptors_from_image $(call images-for-partitions,$(1)))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4281 | endef |
| 4282 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4283 | # Checks and sets build variables for a custom chained partition to include it into vbmeta.img. |
| 4284 | # $(1): the custom partition to enable AVB chain. |
| 4285 | define check-and-set-custom-avb-chain-args |
| 4286 | $(eval part := $(1)) |
| 4287 | $(eval PART=$(call to-upper,$(part))) |
| 4288 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 4289 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 4290 | |
| 4291 | INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4292 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey |
| 4293 | endef |
| 4294 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 4295 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4296 | $(eval $(call check-and-set-avb-args,boot)) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 4297 | endif |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4298 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4299 | ifdef INSTALLED_INIT_BOOT_IMAGE_TARGET |
| 4300 | $(eval $(call check-and-set-avb-args,init_boot)) |
| 4301 | endif |
| 4302 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4303 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 4304 | $(eval $(call check-and-set-avb-args,vendor_boot)) |
| 4305 | endif |
| 4306 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4307 | ifdef INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET |
| 4308 | $(eval $(call check-and-set-avb-args,vendor_kernel_boot)) |
| 4309 | endif |
| 4310 | |
Bowgo Tsai | e691aef | 2022-01-04 14:33:43 +0800 | [diff] [blame] | 4311 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4312 | $(eval $(call check-and-set-avb-args,system)) |
Bowgo Tsai | e691aef | 2022-01-04 14:33:43 +0800 | [diff] [blame] | 4313 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4314 | |
| 4315 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4316 | $(eval $(call check-and-set-avb-args,vendor)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4317 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4318 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4319 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4320 | $(eval $(call check-and-set-avb-args,product)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4321 | endif |
| 4322 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4323 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 4324 | $(eval $(call check-and-set-avb-args,system_ext)) |
Tao Bao | cee6d04 | 2018-08-22 23:39:03 -0700 | [diff] [blame] | 4325 | endif |
| 4326 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4327 | ifdef INSTALLED_ODMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4328 | $(eval $(call check-and-set-avb-args,odm)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4329 | endif |
| 4330 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4331 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 4332 | $(eval $(call check-and-set-avb-args,vendor_dlkm)) |
| 4333 | endif |
| 4334 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4335 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 4336 | $(eval $(call check-and-set-avb-args,odm_dlkm)) |
| 4337 | endif |
| 4338 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4339 | ifdef INSTALLED_SYSTEM_DLKMIMAGE_TARGET |
| 4340 | $(eval $(call check-and-set-avb-args,system_dlkm)) |
| 4341 | endif |
| 4342 | |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4343 | ifdef INSTALLED_DTBOIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4344 | $(eval $(call check-and-set-avb-args,dtbo)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4345 | endif |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4346 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4347 | ifdef INSTALLED_PVMFWIMAGE_TARGET |
| 4348 | $(eval $(call check-and-set-avb-args,pvmfw)) |
| 4349 | endif |
| 4350 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4351 | ifdef INSTALLED_RECOVERYIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4352 | $(eval $(call check-and-set-avb-args,recovery)) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4353 | endif |
Bowgo Tsai | 53cf999 | 2017-06-13 11:27:06 +0800 | [diff] [blame] | 4354 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4355 | # Not using INSTALLED_VBMETA_SYSTEMIMAGE_TARGET as it won't be set yet. |
| 4356 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 4357 | $(eval $(call check-and-set-avb-args,vbmeta_system)) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4358 | endif |
| 4359 | |
| 4360 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 4361 | $(eval $(call check-and-set-avb-args,vbmeta_vendor)) |
| 4362 | endif |
| 4363 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4364 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 4365 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4366 | $(eval $(call check-and-set-custom-avb-chain-args,$(partition)))) |
| 4367 | endif |
| 4368 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4369 | # Add kernel cmdline descriptor for kernel to mount system.img as root with |
| 4370 | # dm-verity. This works when system.img is either chained or not-chained: |
| 4371 | # - chained: The --setup_as_rootfs_from_kernel option will add dm-verity kernel |
| 4372 | # cmdline descriptor to system.img |
| 4373 | # - not-chained: The --include_descriptors_from_image option for make_vbmeta_image |
| 4374 | # will include the kernel cmdline descriptor from system.img into vbmeta.img |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 4375 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
David Anderson | 8916a2a | 2018-09-18 15:46:59 -0700 | [diff] [blame] | 4376 | ifeq ($(filter system, $(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4377 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += --setup_as_rootfs_from_kernel |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 4378 | endif |
David Anderson | 8916a2a | 2018-09-18 15:46:59 -0700 | [diff] [blame] | 4379 | endif |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 4380 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4381 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --padding_size 4096 |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4382 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += --padding_size 4096 |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4383 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += --padding_size 4096 |
| 4384 | |
| 4385 | ifeq (eng,$(filter eng, $(TARGET_BUILD_VARIANT))) |
Tao Bao | 240dcb8 | 2018-10-22 13:02:53 -0700 | [diff] [blame] | 4386 | # We only need the flag in top-level vbmeta.img. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4387 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --set_hashtree_disabled_flag |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4388 | endif |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4389 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4390 | ifdef BOARD_AVB_ROLLBACK_INDEX |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4391 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --rollback_index $(BOARD_AVB_ROLLBACK_INDEX) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4392 | endif |
| 4393 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4394 | ifdef BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX |
| 4395 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += \ |
| 4396 | --rollback_index $(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4397 | endif |
| 4398 | |
| 4399 | ifdef BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX |
| 4400 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += \ |
| 4401 | --rollback_index $(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX) |
John Reck | 0588b43 | 2018-05-03 13:20:01 -0700 | [diff] [blame] | 4402 | endif |
| 4403 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4404 | # $(1): the directory to extract public keys to |
| 4405 | define extract-avb-chain-public-keys |
| 4406 | $(if $(BOARD_AVB_BOOT_KEY_PATH),\ |
| 4407 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_BOOT_KEY_PATH) \ |
| 4408 | --output $(1)/boot.avbpubkey) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4409 | $(if $(BOARD_AVB_INIT_BOOT_KEY_PATH),\ |
| 4410 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_INIT_BOOT_KEY_PATH) \ |
| 4411 | --output $(1)/init_boot.avbpubkey) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4412 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),\ |
| 4413 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_BOOT_KEY_PATH) \ |
| 4414 | --output $(1)/vendor_boot.avbpubkey) |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4415 | $(if $(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH),\ |
| 4416 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH) \ |
| 4417 | --output $(1)/vendor_kernel_boot.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4418 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 4419 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_KEY_PATH) \ |
| 4420 | --output $(1)/system.avbpubkey) |
| 4421 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 4422 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KEY_PATH) \ |
| 4423 | --output $(1)/vendor.avbpubkey) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4424 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 4425 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PRODUCT_KEY_PATH) \ |
| 4426 | --output $(1)/product.avbpubkey) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4427 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 4428 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_EXT_KEY_PATH) \ |
| 4429 | --output $(1)/system_ext.avbpubkey) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4430 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 4431 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_KEY_PATH) \ |
| 4432 | --output $(1)/odm.avbpubkey) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4433 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 4434 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_DLKM_KEY_PATH) \ |
| 4435 | --output $(1)/vendor_dlkm.avbpubkey) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4436 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 4437 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_DLKM_KEY_PATH) \ |
| 4438 | --output $(1)/odm_dlkm.avbpubkey) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4439 | $(if $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH),\ |
| 4440 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH) \ |
| 4441 | --output $(1)/system_dlkm.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4442 | $(if $(BOARD_AVB_DTBO_KEY_PATH),\ |
| 4443 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_DTBO_KEY_PATH) \ |
| 4444 | --output $(1)/dtbo.avbpubkey) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4445 | $(if $(BOARD_AVB_PVMFW_KEY_PATH),\ |
| 4446 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PVMFW_KEY_PATH) \ |
| 4447 | --output $(1)/pvmfw.avbpubkey) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4448 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),\ |
| 4449 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_RECOVERY_KEY_PATH) \ |
| 4450 | --output $(1)/recovery.avbpubkey) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4451 | $(if $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH),\ |
| 4452 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 4453 | --output $(1)/vbmeta_system.avbpubkey) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4454 | $(if $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH),\ |
| 4455 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 4456 | --output $(1)/vbmeta_vendor.avbpubkey) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4457 | $(if $(BOARD_CUSTOMIMAGES_PARTITION_LIST),\ |
| 4458 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4459 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH) \ |
| 4460 | --output $(1)/$(partition).avbpubkey;)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4461 | endef |
| 4462 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4463 | # Builds a chained VBMeta image. This VBMeta image will contain the descriptors for the partitions |
| 4464 | # 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] | 4465 | # 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] | 4466 | # := system system_ext`, `vbmeta_system.img` will be created that includes the descriptors for |
| 4467 | # `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] | 4468 | # `vbmeta.img` as a chained partition. |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4469 | # $(1): VBMeta image name, such as "vbmeta_system", "vbmeta_vendor" etc. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4470 | # $(2): Output filename. |
| 4471 | define build-chained-vbmeta-image |
| 4472 | $(call pretty,"Target chained vbmeta image: $@") |
| 4473 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 4474 | $(INTERNAL_AVB_$(call to-upper,$(1))_SIGNING_ARGS) \ |
| 4475 | $(BOARD_AVB_MAKE_$(call to-upper,$(1))_IMAGE_ARGS) \ |
| 4476 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(1))), \ |
| 4477 | --include_descriptors_from_image $(call images-for-partitions,$(image))) \ |
| 4478 | --output $@ |
| 4479 | endef |
| 4480 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4481 | ifdef BUILDING_SYSTEM_IMAGE |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4482 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 4483 | INSTALLED_VBMETA_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_system.img |
| 4484 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4485 | $(AVBTOOL) \ |
| 4486 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_SYSTEM)) \ |
| 4487 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4488 | $(call build-chained-vbmeta-image,vbmeta_system) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4489 | |
| 4490 | $(call declare-1p-container,$(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET),) |
| 4491 | |
| 4492 | SYSTEM_NOTICE_DEPS += $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4493 | endif |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4494 | endif # BUILDING_SYSTEM_IMAGE |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4495 | |
| 4496 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 4497 | INSTALLED_VBMETA_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_vendor.img |
| 4498 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4499 | $(AVBTOOL) \ |
| 4500 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_VENDOR)) \ |
| 4501 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4502 | $(call build-chained-vbmeta-image,vbmeta_vendor) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4503 | |
| 4504 | $(call declare-1p-container,$(INSTALLED_VBMETA_VENDORIMAGE_TARGET),) |
| 4505 | |
| 4506 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4507 | endif |
| 4508 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4509 | define build-vbmetaimage-target |
| 4510 | $(call pretty,"Target vbmeta image: $(INSTALLED_VBMETAIMAGE_TARGET)") |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4511 | $(hide) mkdir -p $(AVB_CHAIN_KEY_DIR) |
| 4512 | $(call extract-avb-chain-public-keys, $(AVB_CHAIN_KEY_DIR)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4513 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 4514 | $(INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4515 | $(PRIVATE_AVB_VBMETA_SIGNING_ARGS) \ |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4516 | $(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
| 4517 | --output $@ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4518 | $(hide) rm -rf $(AVB_CHAIN_KEY_DIR) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4519 | endef |
| 4520 | |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 4521 | ifdef BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4522 | INSTALLED_VBMETAIMAGE_TARGET := $(BUILT_VBMETAIMAGE_TARGET) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4523 | $(INSTALLED_VBMETAIMAGE_TARGET): PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 4524 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
| 4525 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4526 | $(INSTALLED_VBMETAIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4527 | $(AVBTOOL) \ |
| 4528 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4529 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4530 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) \ |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4531 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4532 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 4533 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 4534 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4535 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4536 | $(INSTALLED_ODMIMAGE_TARGET) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4537 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4538 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4539 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4540 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4541 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4542 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4543 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 4544 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) \ |
| 4545 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) \ |
| 4546 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 4547 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 4548 | $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4549 | $(build-vbmetaimage-target) |
| 4550 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4551 | $(call declare-1p-container,$(INSTALLED_VBMETAIMAGE_TARGET),) |
| 4552 | |
| 4553 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_VBMETAIMAGE_TARGET) |
| 4554 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4555 | .PHONY: vbmetaimage-nodeps |
Bowgo Tsai | 6a4eaa5 | 2019-12-09 15:48:09 +0800 | [diff] [blame] | 4556 | vbmetaimage-nodeps: PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 4557 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4558 | vbmetaimage-nodeps: |
| 4559 | $(build-vbmetaimage-target) |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 4560 | endif # BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4561 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4562 | endif # BOARD_AVB_ENABLE |
| 4563 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4564 | # List of files from all images |
| 4565 | INTERNAL_ALLIMAGES_FILES := \ |
| 4566 | $(FULL_SYSTEMIMAGE_DEPS) \ |
| 4567 | $(INTERNAL_RAMDISK_FILES) \ |
| 4568 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 4569 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 4570 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 4571 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 4572 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 4573 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 4574 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4575 | $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) \ |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4576 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4577 | # ----------------------------------------------------------------- |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4578 | # Check VINTF of build |
| 4579 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4580 | # 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] | 4581 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4582 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4583 | intermediates := $(call intermediates-dir-for,PACKAGING,check_vintf_all) |
| 4584 | check_vintf_all_deps := |
| 4585 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4586 | # The build system only writes VINTF metadata to */etc/vintf paths. Legacy paths aren't needed here |
| 4587 | # because they are only used for prebuilt images. |
| 4588 | check_vintf_common_srcs_patterns := \ |
| 4589 | $(TARGET_OUT)/etc/vintf/% \ |
| 4590 | $(TARGET_OUT_VENDOR)/etc/vintf/% \ |
| 4591 | $(TARGET_OUT_ODM)/etc/vintf/% \ |
| 4592 | $(TARGET_OUT_PRODUCT)/etc/vintf/% \ |
| 4593 | $(TARGET_OUT_SYSTEM_EXT)/etc/vintf/% \ |
| 4594 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4595 | 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] | 4596 | check_vintf_common_srcs_patterns := |
| 4597 | |
| 4598 | check_vintf_has_system := |
| 4599 | check_vintf_has_vendor := |
| 4600 | |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4601 | ifneq (,$(filter EMPTY_ODM_SKU_PLACEHOLDER,$(ODM_MANIFEST_SKUS))) |
| 4602 | $(error EMPTY_ODM_SKU_PLACEHOLDER is an internal variable and cannot be used for ODM_MANIFEST_SKUS) |
| 4603 | endif |
| 4604 | ifneq (,$(filter EMPTY_VENDOR_SKU_PLACEHOLDER,$(DEVICE_MANIFEST_SKUS))) |
| 4605 | $(error EMPTY_VENDOR_SKU_PLACEHOLDER is an internal variable and cannot be used for DEIVCE_MANIFEST_SKUS) |
| 4606 | endif |
| 4607 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4608 | # -- Check system manifest / matrix including fragments (excluding other framework manifests / matrices, e.g. product); |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4609 | check_vintf_system_deps := $(filter $(TARGET_OUT)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 4610 | ifneq ($(check_vintf_system_deps),) |
| 4611 | check_vintf_has_system := true |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4612 | |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 4613 | check_vintf_system_log := $(intermediates)/check_vintf_system.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4614 | check_vintf_all_deps += $(check_vintf_system_log) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4615 | $(check_vintf_system_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_system_deps) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4616 | @( $< --check-one --dirmap /system:$(TARGET_OUT) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4617 | $(call declare-0p-target,$(check_vintf_system_log)) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4618 | check_vintf_system_log := |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4619 | |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 4620 | vintffm_log := $(intermediates)/vintffm.log |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4621 | check_vintf_all_deps += $(vintffm_log) |
| 4622 | $(vintffm_log): $(HOST_OUT_EXECUTABLES)/vintffm $(check_vintf_system_deps) |
| 4623 | @( $< --check --dirmap /system:$(TARGET_OUT) \ |
| 4624 | $(VINTF_FRAMEWORK_MANIFEST_FROZEN_DIR) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
| 4625 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4626 | $(call declare-0p-target,$(vintffm_log)) |
| 4627 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4628 | endif # check_vintf_system_deps |
| 4629 | check_vintf_system_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4630 | |
| 4631 | # -- Check vendor manifest / matrix including fragments (excluding other device manifests / matrices) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4632 | check_vintf_vendor_deps := $(filter $(TARGET_OUT_VENDOR)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 4633 | ifneq ($(check_vintf_vendor_deps),) |
| 4634 | check_vintf_has_vendor := true |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 4635 | check_vintf_vendor_log := $(intermediates)/check_vintf_vendor.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4636 | check_vintf_all_deps += $(check_vintf_vendor_log) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4637 | # Check vendor SKU=(empty) case when: |
| 4638 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 4639 | # - 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] | 4640 | $(check_vintf_vendor_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4641 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 4642 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4643 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4644 | $(check_vintf_vendor_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_vendor_deps) |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4645 | $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 4646 | ( $< --check-one --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 4647 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 4648 | > $@ 2>&1 ) || ( cat $@ && exit 1 ); ) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4649 | $(call declare-0p-target,$(check_vintf_vendor_log)) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4650 | check_vintf_vendor_log := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4651 | endif # check_vintf_vendor_deps |
| 4652 | check_vintf_vendor_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4653 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4654 | # -- Kernel version and configurations. |
| 4655 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
| 4656 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4657 | BUILT_KERNEL_CONFIGS_FILE := $(intermediates)/kernel_configs.txt |
| 4658 | BUILT_KERNEL_VERSION_FILE := $(intermediates)/kernel_version.txt |
| 4659 | |
| 4660 | my_board_extracted_kernel := |
| 4661 | |
| 4662 | # BOARD_KERNEL_CONFIG_FILE and BOARD_KERNEL_VERSION can be used to override the values extracted |
| 4663 | # from INSTALLED_KERNEL_TARGET. |
| 4664 | ifdef BOARD_KERNEL_CONFIG_FILE |
| 4665 | ifdef BOARD_KERNEL_VERSION |
| 4666 | $(BUILT_KERNEL_CONFIGS_FILE): $(BOARD_KERNEL_CONFIG_FILE) |
| 4667 | cp $< $@ |
| 4668 | $(BUILT_KERNEL_VERSION_FILE): |
| 4669 | echo $(BOARD_KERNEL_VERSION) > $@ |
| 4670 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4671 | $(call declare-0p-target,$(BUILT_KERNEL_CONFIGS_FILE)) |
| 4672 | $(call declare-0p-target,$(BUILT_KERNEL_VERSION_FILE)) |
| 4673 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4674 | my_board_extracted_kernel := true |
| 4675 | endif # BOARD_KERNEL_VERSION |
| 4676 | endif # BOARD_KERNEL_CONFIG_FILE |
| 4677 | |
| 4678 | ifneq ($(my_board_extracted_kernel),true) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4679 | # Tools for decompression that is not in PATH. |
| 4680 | # Check $(EXTRACT_KERNEL) for decompression algorithms supported by the script. |
| 4681 | # Algorithms that are in the script but not in this list will be found in PATH. |
| 4682 | my_decompress_tools := \ |
| 4683 | lz4:$(HOST_OUT_EXECUTABLES)/lz4 \ |
| 4684 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4685 | endif # my_board_extracted_kernel |
| 4686 | |
| 4687 | ifneq ($(my_board_extracted_kernel),true) |
| 4688 | ifdef INSTALLED_KERNEL_TARGET |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4689 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 4690 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 4691 | $(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] | 4692 | $(BUILT_KERNEL_CONFIGS_FILE): $(EXTRACT_KERNEL) $(firstword $(INSTALLED_KERNEL_TARGET)) |
| 4693 | $< --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(firstword $(INSTALLED_KERNEL_TARGET)) \ |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4694 | --output-configs $@ \ |
Yifan Hong | b95d02e | 2020-11-13 18:33:01 -0800 | [diff] [blame] | 4695 | --output-release $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4696 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4697 | $(call declare-0p-target,$(BUILT_KERNEL_CONFIGS_FILE)) |
| 4698 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4699 | my_board_extracted_kernel := true |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4700 | endif # INSTALLED_KERNEL_TARGET |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4701 | endif # my_board_extracted_kernel |
| 4702 | |
| 4703 | ifneq ($(my_board_extracted_kernel),true) |
| 4704 | ifdef INSTALLED_BOOTIMAGE_TARGET |
| 4705 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 4706 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 4707 | $(BUILT_KERNEL_CONFIGS_FILE): $(foreach pair,$(my_decompress_tools),$(call word-colon,2,$(pair))) |
| 4708 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_UNPACKED_BOOTIMG := $(intermediates)/unpacked_bootimage |
| 4709 | $(BUILT_KERNEL_CONFIGS_FILE): \ |
| 4710 | $(HOST_OUT_EXECUTABLES)/unpack_bootimg \ |
| 4711 | $(EXTRACT_KERNEL) \ |
| 4712 | $(INSTALLED_BOOTIMAGE_TARGET) |
| 4713 | $(HOST_OUT_EXECUTABLES)/unpack_bootimg --boot_img $(INSTALLED_BOOTIMAGE_TARGET) --out $(PRIVATE_UNPACKED_BOOTIMG) |
| 4714 | $(EXTRACT_KERNEL) --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(PRIVATE_UNPACKED_BOOTIMG)/kernel \ |
| 4715 | --output-configs $@ \ |
| 4716 | --output-release $(BUILT_KERNEL_VERSION_FILE) |
| 4717 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4718 | $(call declare-0p-target,$(BUILT_KERNEL_CONFIGS_FILE)) |
| 4719 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4720 | my_board_extracted_kernel := true |
| 4721 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 4722 | endif # my_board_extracted_kernel |
| 4723 | |
| 4724 | ifneq ($(my_board_extracted_kernel),true) |
| 4725 | $(warning Neither INSTALLED_KERNEL_TARGET nor INSTALLED_BOOTIMAGE_TARGET is defined when \ |
| 4726 | PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS is true. Information about the updated kernel \ |
| 4727 | cannot be built into OTA update package. You can fix this by: \ |
| 4728 | (1) setting TARGET_NO_KERNEL to false and installing the built kernel to $(PRODUCT_OUT)/kernel,\ |
| 4729 | so that kernel information will be extracted from the built kernel; or \ |
| 4730 | (2) Add a prebuilt boot image and specify it in BOARD_PREBUILT_BOOTIMAGE; or \ |
| 4731 | (3) extracting kernel configuration and defining BOARD_KERNEL_CONFIG_FILE and \ |
| 4732 | BOARD_KERNEL_VERSION manually; or \ |
| 4733 | (4) unsetting PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS manually.) |
| 4734 | # Clear their values to indicate that these two files does not exist. |
| 4735 | BUILT_KERNEL_CONFIGS_FILE := |
| 4736 | BUILT_KERNEL_VERSION_FILE := |
| 4737 | endif |
| 4738 | |
| 4739 | my_decompress_tools := |
| 4740 | my_board_extracted_kernel := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4741 | |
Yifan Hong | c0f904e | 2021-03-17 11:25:31 -0700 | [diff] [blame] | 4742 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 4743 | |
| 4744 | # -- Check VINTF compatibility of build. |
| 4745 | # Skip partial builds; only check full builds. Only check if: |
| 4746 | # - PRODUCT_ENFORCE_VINTF_MANIFEST is true |
| 4747 | # - system / vendor VINTF metadata exists |
| 4748 | # - Building product / system_ext / odm images if board has product / system_ext / odm images |
| 4749 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 4750 | ifeq ($(check_vintf_has_system),true) |
| 4751 | ifeq ($(check_vintf_has_vendor),true) |
| 4752 | ifeq ($(filter true,$(BUILDING_ODM_IMAGE)),$(filter true,$(BOARD_USES_ODMIMAGE))) |
| 4753 | ifeq ($(filter true,$(BUILDING_PRODUCT_IMAGE)),$(filter true,$(BOARD_USES_PRODUCTIMAGE))) |
| 4754 | ifeq ($(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),$(filter true,$(BOARD_USES_SYSTEM_EXTIMAGE))) |
| 4755 | |
| 4756 | check_vintf_compatible_log := $(intermediates)/check_vintf_compatible.log |
| 4757 | check_vintf_all_deps += $(check_vintf_compatible_log) |
| 4758 | |
| 4759 | check_vintf_compatible_args := |
| 4760 | check_vintf_compatible_deps := $(check_vintf_common_srcs) |
| 4761 | |
| 4762 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 4763 | ifneq (,$(BUILT_KERNEL_VERSION_FILE)$(BUILT_KERNEL_CONFIGS_FILE)) |
Yifan Hong | 72e78f2 | 2020-11-13 18:30:06 -0800 | [diff] [blame] | 4764 | 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] | 4765 | check_vintf_compatible_deps += $(BUILT_KERNEL_CONFIGS_FILE) $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 4766 | endif # BUILT_KERNEL_VERSION_FILE != "" || BUILT_KERNEL_CONFIGS_FILE != "" |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4767 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 4768 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4769 | check_vintf_compatible_args += \ |
| 4770 | --dirmap /system:$(TARGET_OUT) \ |
| 4771 | --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 4772 | --dirmap /odm:$(TARGET_OUT_ODM) \ |
| 4773 | --dirmap /product:$(TARGET_OUT_PRODUCT) \ |
| 4774 | --dirmap /system_ext:$(TARGET_OUT_SYSTEM_EXT) \ |
| 4775 | |
| 4776 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 4777 | check_vintf_compatible_args += --property ro.product.first_api_level=$(PRODUCT_SHIPPING_API_LEVEL) |
| 4778 | endif # PRODUCT_SHIPPING_API_LEVEL |
| 4779 | |
| 4780 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_ARGS := $(check_vintf_compatible_args) |
| 4781 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_DEPS := $(check_vintf_compatible_deps) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4782 | # Check ODM SKU=(empty) case when: |
| 4783 | # - ODM_MANIFEST_FILES is not empty; OR |
| 4784 | # - 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] | 4785 | $(check_vintf_compatible_log): PRIVATE_ODM_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4786 | $(if $(ODM_MANIFEST_FILES),EMPTY_ODM_SKU_PLACEHOLDER,\ |
| 4787 | $(if $(ODM_MANIFEST_SKUS),,EMPTY_ODM_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4788 | $(ODM_MANIFEST_SKUS) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4789 | # Check vendor SKU=(empty) case when: |
| 4790 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 4791 | # - 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] | 4792 | $(check_vintf_compatible_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4793 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 4794 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4795 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4796 | $(check_vintf_compatible_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_compatible_deps) |
Yifan Hong | 80ab214 | 2021-03-10 18:10:05 -0800 | [diff] [blame] | 4797 | @echo "PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS=$(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS)" > $@ |
| 4798 | @echo -n -e 'Deps: \n ' >> $@ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4799 | @sed 's/ /\n /g' <<< "$(PRIVATE_CHECK_VINTF_DEPS)" >> $@ |
| 4800 | @echo -n -e 'Args: \n ' >> $@ |
| 4801 | @cat <<< "$(PRIVATE_CHECK_VINTF_ARGS)" >> $@ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4802 | $(foreach odm_sku,$(PRIVATE_ODM_SKUS), $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 4803 | echo "For ODM SKU = $(odm_sku), vendor SKU = $(vendor_sku)" >> $@; \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4804 | ( $< --check-compat $(PRIVATE_CHECK_VINTF_ARGS) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4805 | --property ro.boot.product.hardware.sku=$(filter-out EMPTY_ODM_SKU_PLACEHOLDER,$(odm_sku)) \ |
| 4806 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 4807 | >> $@ 2>&1 ) || (cat $@ && exit 1); )) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4808 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4809 | $(call declare-0p-target,$(check_vintf_compatible_log)) |
| 4810 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4811 | check_vintf_compatible_log := |
| 4812 | check_vintf_compatible_args := |
| 4813 | check_vintf_compatible_deps := |
| 4814 | |
| 4815 | endif # BUILDING_SYSTEM_EXT_IMAGE equals BOARD_USES_SYSTEM_EXTIMAGE |
| 4816 | endif # BUILDING_PRODUCT_IMAGE equals BOARD_USES_PRODUCTIMAGE |
| 4817 | endif # BUILDING_ODM_IMAGE equals BOARD_USES_ODMIMAGE |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4818 | endif # check_vintf_has_vendor |
| 4819 | endif # check_vintf_has_system |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4820 | endif # PRODUCT_ENFORCE_VINTF_MANIFEST |
| 4821 | |
| 4822 | # Add all logs of VINTF checks to dist builds |
| 4823 | droid_targets: $(check_vintf_all_deps) |
| 4824 | $(call dist-for-goals, droid_targets, $(check_vintf_all_deps)) |
| 4825 | |
| 4826 | # Helper alias to check all VINTF of current build. |
| 4827 | .PHONY: check-vintf-all |
| 4828 | check-vintf-all: $(check_vintf_all_deps) |
| 4829 | $(foreach file,$^,echo "$(file)"; cat "$(file)"; echo;) |
| 4830 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4831 | check_vintf_has_vendor := |
| 4832 | check_vintf_has_system := |
| 4833 | check_vintf_common_srcs := |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4834 | check_vintf_all_deps := |
| 4835 | intermediates := |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4836 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4837 | |
| 4838 | # ----------------------------------------------------------------- |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4839 | # Check image sizes <= size of super partition |
| 4840 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4841 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4842 | |
| 4843 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
Yifan Hong | 37c0c7c | 2018-07-24 17:45:08 -0700 | [diff] [blame] | 4844 | |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 4845 | PARTITIONS_AND_OTHER_IN_SUPER := $(BOARD_SUPER_PARTITION_PARTITION_LIST) |
| 4846 | |
| 4847 | # Add the system other image to the misc_info. Because factory ota may install system_other to the super partition. |
| 4848 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 4849 | PARTITIONS_AND_OTHER_IN_SUPER += system_other |
| 4850 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 4851 | |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4852 | # $(1): misc_info.txt |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4853 | # #(2): optional log file |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 4854 | define check-all-partition-sizes-target |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4855 | mkdir -p $(dir $(1)) |
| 4856 | rm -f $(1) |
| 4857 | $(call dump-super-image-info, $(1)) |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 4858 | $(foreach partition,$(PARTITIONS_AND_OTHER_IN_SUPER), \ |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4859 | echo "$(partition)_image="$(call images-for-partitions,$(partition)) >> $(1);) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4860 | $(CHECK_PARTITION_SIZES) $(if $(2),--logfile $(2),-v) $(1) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 4861 | endef |
| 4862 | |
Yifan Hong | d11953c | 2021-03-11 14:47:48 -0800 | [diff] [blame] | 4863 | 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] | 4864 | droid_targets: $(check_all_partition_sizes_log) |
| 4865 | $(call dist-for-goals, droid_targets, $(check_all_partition_sizes_log)) |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 4866 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4867 | $(check_all_partition_sizes_log): \ |
| 4868 | $(CHECK_PARTITION_SIZES) \ |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 4869 | $(call images-for-partitions,$(PARTITIONS_AND_OTHER_IN_SUPER)) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4870 | $(call check-all-partition-sizes-target, \ |
| 4871 | $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/misc_info.txt, \ |
| 4872 | $@) |
| 4873 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4874 | $(call declare-0p-target,$(check_all_partition_sizes_log)) |
| 4875 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4876 | .PHONY: check-all-partition-sizes |
| 4877 | check-all-partition-sizes: $(check_all_partition_sizes_log) |
| 4878 | |
| 4879 | .PHONY: check-all-partition-sizes-nodeps |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 4880 | check-all-partition-sizes-nodeps: |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4881 | $(call check-all-partition-sizes-target, \ |
| 4882 | $(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] | 4883 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 4884 | endif # PRODUCT_BUILD_SUPER_PARTITION |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 4885 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4886 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 4887 | |
| 4888 | # ----------------------------------------------------------------- |
Greg Hartman | 2ebfef4 | 2014-11-04 21:17:06 -0800 | [diff] [blame] | 4889 | # bring in the installer image generation defines if necessary |
| 4890 | ifeq ($(TARGET_USE_DISKINSTALLER),true) |
| 4891 | include bootable/diskinstaller/config.mk |
| 4892 | endif |
| 4893 | |
| 4894 | # ----------------------------------------------------------------- |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame] | 4895 | # host tools needed to build dist and OTA packages |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4896 | |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 4897 | ifeq ($(BUILD_OS),darwin) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4898 | build_ota_package := false |
| 4899 | build_otatools_package := false |
| 4900 | else |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4901 | # Set build_ota_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4902 | build_ota_package := true |
| 4903 | ifeq ($(TARGET_SKIP_OTA_PACKAGE),true) |
| 4904 | build_ota_package := false |
| 4905 | endif |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 4906 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4907 | build_ota_package := false |
| 4908 | endif |
| 4909 | ifeq ($(TARGET_PRODUCT),sdk) |
| 4910 | build_ota_package := false |
| 4911 | endif |
Yifan Hong | f32f65c | 2021-07-14 14:19:12 -0700 | [diff] [blame] | 4912 | # A target without a kernel may be one of the following: |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 4913 | # - A generic target. In this case, the OTA package usually isn't built. |
| 4914 | # PRODUCT_BUILD_GENERIC_OTA_PACKAGE may be set to true to force OTA package |
| 4915 | # generation. |
| 4916 | # - A real device target, with TARGET_NO_KERNEL set to true and |
| 4917 | # BOARD_PREBUILT_BOOTIMAGE set. In this case, it is valid to generate |
| 4918 | # an OTA package. |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4919 | ifneq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 4920 | ifneq ($(filter generic%,$(TARGET_DEVICE)),) |
| 4921 | build_ota_package := false |
| 4922 | endif |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 4923 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 4924 | ifeq ($(TARGET_NO_KERNEL),true) |
| 4925 | build_ota_package := false |
| 4926 | endif |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 4927 | endif # INSTALLED_BOOTIMAGE_TARGET == "" |
Yifan Hong | bf77787 | 2021-07-19 16:28:49 +0000 | [diff] [blame] | 4928 | ifeq ($(recovery_fstab),) |
| 4929 | build_ota_package := false |
| 4930 | endif |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4931 | endif # PRODUCT_BUILD_GENERIC_OTA_PACKAGE |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4932 | |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4933 | # Set build_otatools_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4934 | build_otatools_package := true |
| 4935 | ifeq ($(TARGET_SKIP_OTATOOLS_PACKAGE),true) |
| 4936 | build_otatools_package := false |
| 4937 | endif |
Colin Cross | 481cc5a | 2016-02-04 15:09:23 -0800 | [diff] [blame] | 4938 | endif |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 4939 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4940 | ifeq ($(build_otatools_package),true) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4941 | |
| 4942 | INTERNAL_OTATOOLS_MODULES := \ |
changho.shin | 0f12536 | 2019-07-08 10:59:00 +0900 | [diff] [blame] | 4943 | aapt2 \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4944 | add_img_to_target_files \ |
Baligh Uddin | ab25b2d | 2020-05-29 19:01:32 +0000 | [diff] [blame] | 4945 | apksigner \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4946 | append2simg \ |
| 4947 | avbtool \ |
| 4948 | blk_alloc_to_base_fs \ |
| 4949 | boot_signer \ |
| 4950 | brillo_update_payload \ |
| 4951 | brotli \ |
| 4952 | bsdiff \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4953 | build_image \ |
| 4954 | build_super_image \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4955 | build_verity_metadata \ |
| 4956 | build_verity_tree \ |
| 4957 | care_map_generator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4958 | check_ota_package_signature \ |
| 4959 | check_target_files_signatures \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4960 | check_target_files_vintf \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4961 | checkvintf \ |
| 4962 | delta_generator \ |
| 4963 | e2fsck \ |
| 4964 | e2fsdroid \ |
| 4965 | fc_sort \ |
| 4966 | fec \ |
Woody Lin | e416419 | 2022-03-21 18:29:41 +0800 | [diff] [blame] | 4967 | fsck.erofs \ |
Jaegeuk Kim | 01da65f | 2021-06-08 18:24:46 -0700 | [diff] [blame] | 4968 | fsck.f2fs \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4969 | fs_config \ |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 4970 | generate_gki_certificate \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4971 | generate_verity_key \ |
Daniel Norman | ee33b4e | 2020-12-02 16:18:25 -0800 | [diff] [blame] | 4972 | host_init_verifier \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4973 | img2simg \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4974 | img_from_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4975 | imgdiff \ |
| 4976 | libconscrypt_openjdk_jni \ |
| 4977 | lpmake \ |
Isaac Chen | eec4a7c | 2019-06-25 11:50:58 +0800 | [diff] [blame] | 4978 | lpunpack \ |
Tianjie | 3031c29 | 2020-06-24 11:20:36 -0700 | [diff] [blame] | 4979 | lz4 \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4980 | make_f2fs \ |
Jaegeuk Kim | 8ba4bab | 2020-07-17 20:18:10 -0700 | [diff] [blame] | 4981 | make_f2fs_casefold \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4982 | merge_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4983 | minigzip \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4984 | mk_combined_img \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4985 | mkbootfs \ |
| 4986 | mkbootimg \ |
| 4987 | mke2fs \ |
Baligh Uddin | 6a8234b | 2020-01-29 17:42:59 -0800 | [diff] [blame] | 4988 | mke2fs.conf \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 4989 | mkfs.erofs \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4990 | mkf2fsuserimg.sh \ |
| 4991 | mksquashfs \ |
| 4992 | mksquashfsimage.sh \ |
| 4993 | mkuserimg_mke2fs \ |
Kelvin Zhang | 83eb9f7 | 2022-03-15 11:12:50 -0700 | [diff] [blame] | 4994 | ota_extractor \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 4995 | ota_from_target_files \ |
Bowgo Tsai | 6c37c17 | 2021-02-05 18:01:15 +0800 | [diff] [blame] | 4996 | repack_bootimg \ |
Daniel Norman | 48603ff | 2021-02-22 15:15:24 -0800 | [diff] [blame] | 4997 | secilc \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4998 | sefcontext_compile \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4999 | sgdisk \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5000 | shflags \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5001 | sign_apex \ |
| 5002 | sign_target_files_apks \ |
Jooyung Han | 8caba5e | 2021-10-27 03:58:09 +0900 | [diff] [blame] | 5003 | sign_virt_apex \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5004 | signapk \ |
| 5005 | simg2img \ |
| 5006 | sload_f2fs \ |
Yifan Hong | 125d0b6 | 2020-09-24 17:07:03 -0700 | [diff] [blame] | 5007 | toybox \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5008 | tune2fs \ |
Daniel Mentz | 30652b3 | 2020-01-04 15:18:09 -0800 | [diff] [blame] | 5009 | unpack_bootimg \ |
Tianjie Xu | 4e5591f | 2019-06-11 14:35:59 -0700 | [diff] [blame] | 5010 | update_host_simulator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5011 | validate_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5012 | verity_signer \ |
| 5013 | verity_verifier \ |
| 5014 | zipalign \ |
Kelvin Zhang | b673bbf | 2021-08-20 10:09:20 -0700 | [diff] [blame] | 5015 | zucchini \ |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 5016 | |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5017 | # Additional tools to unpack and repack the apex file. |
| 5018 | INTERNAL_OTATOOLS_MODULES += \ |
| 5019 | apexer \ |
Nikita Ioffe | 3608148 | 2021-01-20 01:32:28 +0000 | [diff] [blame] | 5020 | apex_compression_tool \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5021 | deapexer \ |
| 5022 | debugfs_static \ |
| 5023 | merge_zips \ |
| 5024 | resize2fs \ |
| 5025 | soong_zip \ |
| 5026 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5027 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5028 | INTERNAL_OTATOOLS_MODULES += \ |
| 5029 | futility \ |
| 5030 | vboot_signer |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 5031 | endif |
Tao Bao | f8e6fbe | 2016-01-04 09:57:32 -0800 | [diff] [blame] | 5032 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5033 | INTERNAL_OTATOOLS_FILES := \ |
| 5034 | $(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] | 5035 | |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 5036 | .PHONY: otatools |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5037 | otatools: $(INTERNAL_OTATOOLS_FILES) |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 5038 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5039 | # For each module, recursively resolve its host shared library dependencies. Then we have a full |
| 5040 | # list of modules whose installed files need to be packed. |
| 5041 | INTERNAL_OTATOOLS_MODULES_WITH_DEPS := \ |
| 5042 | $(sort $(INTERNAL_OTATOOLS_MODULES) \ |
| 5043 | $(foreach m,$(INTERNAL_OTATOOLS_MODULES),$(call get-all-shared-libs-deps,$(m)))) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5044 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5045 | INTERNAL_OTATOOLS_PACKAGE_FILES := \ |
| 5046 | $(filter $(HOST_OUT)/%,$(call module-installed-files,$(INTERNAL_OTATOOLS_MODULES_WITH_DEPS))) |
| 5047 | |
| 5048 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 5049 | $(sort $(shell find build/make/target/product/security -type f -name "*.x509.pem" -o \ |
| 5050 | -name "*.pk8" -o -name verity_key)) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5051 | |
| 5052 | ifneq (,$(wildcard device)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5053 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Dan Willemsen | 60c6644 | 2018-05-01 19:07:27 -0700 | [diff] [blame] | 5054 | $(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] | 5055 | -name "*.pem" -o -name "oem*.prop" -o -name "*.avbpubkey")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5056 | endif |
| 5057 | ifneq (,$(wildcard external/avb)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5058 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5059 | $(sort $(shell find external/avb/test/data -type f -name "testkey_*.pem" -o \ |
| 5060 | -name "atx_metadata.bin")) |
| 5061 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5062 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5063 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 5232f09 | 2018-02-10 04:03:32 +0000 | [diff] [blame] | 5064 | $(sort $(shell find external/vboot_reference/tests/devkeys -type f)) |
Tao Bao | e8ef8f70 | 2017-05-17 11:41:50 -0700 | [diff] [blame] | 5065 | endif |
| 5066 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5067 | INTERNAL_OTATOOLS_RELEASETOOLS := \ |
| 5068 | $(sort $(shell find build/make/tools/releasetools -name "*.pyc" -prune -o \ |
| 5069 | \( -type f -o -type l \) -print)) |
| 5070 | |
| 5071 | BUILT_OTATOOLS_PACKAGE := $(PRODUCT_OUT)/otatools.zip |
| 5072 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_ZIP_ROOT := $(call intermediates-dir-for,PACKAGING,otatools)/otatools |
| 5073 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_PACKAGE_FILES := $(INTERNAL_OTATOOLS_PACKAGE_FILES) |
| 5074 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_RELEASETOOLS := $(INTERNAL_OTATOOLS_RELEASETOOLS) |
| 5075 | $(BUILT_OTATOOLS_PACKAGE): $(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS) |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 5076 | $(BUILT_OTATOOLS_PACKAGE): $(SOONG_ZIP) $(ZIP2ZIP) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5077 | @echo "Package OTA tools: $@" |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5078 | rm -rf $@ $(PRIVATE_ZIP_ROOT) |
| 5079 | mkdir -p $(dir $@) |
| 5080 | $(call copy-files-with-structure,$(PRIVATE_OTATOOLS_PACKAGE_FILES),$(HOST_OUT)/,$(PRIVATE_ZIP_ROOT)) |
| 5081 | $(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] | 5082 | cp $(SOONG_ZIP) $(ZIP2ZIP) $(MERGE_ZIPS) $(PRIVATE_ZIP_ROOT)/bin/ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5083 | $(SOONG_ZIP) -o $@ -C $(PRIVATE_ZIP_ROOT) -D $(PRIVATE_ZIP_ROOT) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5084 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5085 | $(call declare-1p-container,$(BUILT_OTATOOLS_PACKAGE),build) |
| 5086 | $(call declare-container-license-deps,$(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS),$(BUILT_OTATOOLS_PACKAGE):) |
| 5087 | |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5088 | .PHONY: otatools-package |
| 5089 | otatools-package: $(BUILT_OTATOOLS_PACKAGE) |
| 5090 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5091 | endif # build_otatools_package |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5092 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5093 | # ----------------------------------------------------------------- |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5094 | # misc_info.txt |
| 5095 | |
| 5096 | INSTALLED_MISC_INFO_TARGET := $(PRODUCT_OUT)/misc_info.txt |
| 5097 | |
| 5098 | ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),) |
| 5099 | # default to common dir for device vendor |
| 5100 | tool_extensions := $(TARGET_DEVICE_DIR)/../common |
| 5101 | else |
| 5102 | tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) |
| 5103 | endif |
| 5104 | .KATI_READONLY := tool_extensions |
| 5105 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 5106 | # $1: boot image file name |
| 5107 | define misc_boot_size |
| 5108 | $(subst .img,_size,$(1))=$(BOARD_KERNEL$(call to-upper,$(subst boot,,$(subst .img,,$(1))))_BOOTIMAGE_PARTITION_SIZE) |
| 5109 | endef |
| 5110 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5111 | $(INSTALLED_MISC_INFO_TARGET): |
| 5112 | rm -f $@ |
| 5113 | $(call pretty,"Target misc_info.txt: $@") |
| 5114 | $(hide) echo "recovery_api_version=$(RECOVERY_API_VERSION)" >> $@ |
| 5115 | $(hide) echo "fstab_version=$(RECOVERY_FSTAB_VERSION)" >> $@ |
| 5116 | ifdef BOARD_FLASH_BLOCK_SIZE |
| 5117 | $(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $@ |
| 5118 | endif |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 5119 | ifneq ($(strip $(BOARD_BOOTIMAGE_PARTITION_SIZE))$(strip $(BOARD_KERNEL_BINARIES)),) |
| 5120 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),\ |
| 5121 | echo "$(call misc_boot_size,$(notdir $(b)))" >> $@;) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5122 | endif |
| 5123 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 5124 | $(hide) echo "no_boot=true" >> $@ |
Steve Muckle | 9793cf6 | 2020-04-08 18:27:00 -0700 | [diff] [blame] | 5125 | else |
| 5126 | echo "boot_images=$(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(notdir $(b)))" >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5127 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5128 | ifneq ($(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 5129 | $(hide) echo "init_boot=true" >> $@ |
| 5130 | $(hide) echo "init_boot_size=$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)" >> $@ |
| 5131 | endif |
J. Avila | 98cd4cc | 2020-06-10 20:09:10 +0000 | [diff] [blame] | 5132 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 5133 | echo "lz4_ramdisks=true" >> $@ |
| 5134 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5135 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 5136 | echo "vendor_boot=true" >> $@ |
| 5137 | echo "vendor_boot_size=$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 5138 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5139 | ifneq ($(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) |
| 5140 | echo "vendor_kernel_boot=true" >> $@ |
| 5141 | echo "vendor_kernel_boot_size=$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 5142 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5143 | ifeq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 5144 | $(hide) echo "no_recovery=true" >> $@ |
| 5145 | endif |
| 5146 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
| 5147 | $(hide) echo "include_recovery_dtbo=true" >> $@ |
| 5148 | endif |
| 5149 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 5150 | $(hide) echo "include_recovery_acpio=true" >> $@ |
| 5151 | endif |
| 5152 | ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE |
| 5153 | $(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $@ |
| 5154 | endif |
| 5155 | ifdef TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS |
| 5156 | @# TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS can be empty to indicate that nothing but defaults should be used. |
| 5157 | $(hide) echo "recovery_mount_options=$(TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 5158 | else |
| 5159 | $(hide) echo "recovery_mount_options=$(DEFAULT_TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 5160 | endif |
| 5161 | $(hide) echo "tool_extensions=$(tool_extensions)" >> $@ |
| 5162 | $(hide) echo "default_system_dev_certificate=$(DEFAULT_SYSTEM_DEV_CERTIFICATE)" >> $@ |
Jacky Liu | beb0b69 | 2021-12-29 16:29:05 +0800 | [diff] [blame] | 5163 | ifdef PRODUCT_EXTRA_OTA_KEYS |
| 5164 | $(hide) echo "extra_ota_keys=$(PRODUCT_EXTRA_OTA_KEYS)" >> $@ |
| 5165 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5166 | ifdef PRODUCT_EXTRA_RECOVERY_KEYS |
| 5167 | $(hide) echo "extra_recovery_keys=$(PRODUCT_EXTRA_RECOVERY_KEYS)" >> $@ |
| 5168 | endif |
| 5169 | $(hide) echo 'mkbootimg_args=$(BOARD_MKBOOTIMG_ARGS)' >> $@ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 5170 | $(hide) echo 'recovery_mkbootimg_args=$(BOARD_RECOVERY_MKBOOTIMG_ARGS)' >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5171 | $(hide) echo 'mkbootimg_version_args=$(INTERNAL_MKBOOTIMG_VERSION_ARGS)' >> $@ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5172 | $(hide) echo 'mkbootimg_init_args=$(BOARD_MKBOOTIMG_INIT_ARGS)' >> $@ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 5173 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 5174 | $(hide) echo 'gki_signing_key_path=$(BOARD_GKI_SIGNING_KEY_PATH)' >> $@ |
| 5175 | $(hide) echo 'gki_signing_algorithm=$(BOARD_GKI_SIGNING_ALGORITHM)' >> $@ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 5176 | $(hide) echo 'gki_signing_signature_args=$(BOARD_GKI_SIGNING_SIGNATURE_ARGS)' >> $@ |
| 5177 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5178 | $(hide) echo "multistage_support=1" >> $@ |
| 5179 | $(hide) echo "blockimgdiff_versions=3,4" >> $@ |
| 5180 | ifeq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 5181 | $(hide) echo "build_generic_ota_package=true" >> $@ |
| 5182 | endif |
| 5183 | ifneq ($(OEM_THUMBPRINT_PROPERTIES),) |
| 5184 | # OTA scripts are only interested in fingerprint related properties |
| 5185 | $(hide) echo "oem_fingerprint_properties=$(OEM_THUMBPRINT_PROPERTIES)" >> $@ |
| 5186 | endif |
| 5187 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
| 5188 | # We need to create userdata.img with real data because the instrumented libraries are in userdata.img. |
| 5189 | $(hide) echo "userdata_img_with_data=true" >> $@ |
| 5190 | endif |
| 5191 | ifeq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
| 5192 | $(hide) echo "full_recovery_image=true" >> $@ |
| 5193 | endif |
Bill Peckham | e868aec | 2019-09-17 17:06:47 -0700 | [diff] [blame] | 5194 | ifdef BOARD_USES_VENDORIMAGE |
| 5195 | $(hide) echo "board_uses_vendorimage=true" >> $@ |
| 5196 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5197 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 8218225 | 2020-11-13 11:28:17 +0800 | [diff] [blame] | 5198 | ifeq ($(BUILDING_VBMETA_IMAGE),true) |
| 5199 | $(hide) echo "avb_building_vbmeta_image=true" >> $@ |
| 5200 | endif # BUILDING_VBMETA_IMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5201 | $(hide) echo "avb_enable=true" >> $@ |
| 5202 | $(hide) echo "avb_vbmeta_key_path=$(BOARD_AVB_KEY_PATH)" >> $@ |
| 5203 | $(hide) echo "avb_vbmeta_algorithm=$(BOARD_AVB_ALGORITHM)" >> $@ |
| 5204 | $(hide) echo "avb_vbmeta_args=$(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS)" >> $@ |
| 5205 | $(hide) echo "avb_boot_add_hash_footer_args=$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5206 | ifdef BOARD_AVB_BOOT_KEY_PATH |
| 5207 | $(hide) echo "avb_boot_key_path=$(BOARD_AVB_BOOT_KEY_PATH)" >> $@ |
| 5208 | $(hide) echo "avb_boot_algorithm=$(BOARD_AVB_BOOT_ALGORITHM)" >> $@ |
| 5209 | $(hide) echo "avb_boot_rollback_index_location=$(BOARD_AVB_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5210 | endif # BOARD_AVB_BOOT_KEY_PATH |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 5211 | $(hide) echo "avb_init_boot_add_hash_footer_args=$(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5212 | ifdef BOARD_AVB_INIT_BOOT_KEY_PATH |
| 5213 | $(hide) echo "avb_init_boot_key_path=$(BOARD_AVB_INIT_BOOT_KEY_PATH)" >> $@ |
| 5214 | $(hide) echo "avb_init_boot_algorithm=$(BOARD_AVB_INIT_BOOT_ALGORITHM)" >> $@ |
| 5215 | $(hide) echo "avb_init_boot_rollback_index_location=$(BOARD_AVB_INIT_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5216 | endif # BOARD_AVB_INIT_BOOT_KEY_PATH |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5217 | echo "avb_vendor_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5218 | ifdef BOARD_AVB_VENDOR_BOOT_KEY_PATH |
| 5219 | echo "avb_vendor_boot_key_path=$(BOARD_AVB_VENDOR_BOOT_KEY_PATH)" >> $@ |
| 5220 | echo "avb_vendor_boot_algorithm=$(BOARD_AVB_VENDOR_BOOT_ALGORITHM)" >> $@ |
| 5221 | echo "avb_vendor_boot_rollback_index_location=$(BOARD_AVB_VENDOR_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5222 | endif # BOARD_AVB_VENDOR_BOOT_KEY_PATH |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5223 | echo "avb_vendor_kernel_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5224 | ifdef BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH |
| 5225 | echo "avb_vendor_kernel_boot_key_path=$(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH)" >> $@ |
| 5226 | echo "avb_vendor_kernel_boot_algorithm=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ALGORITHM)" >> $@ |
| 5227 | echo "avb_vendor_kernel_boot_rollback_index_location=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5228 | endif # BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5229 | $(hide) echo "avb_recovery_add_hash_footer_args=$(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5230 | ifdef BOARD_AVB_RECOVERY_KEY_PATH |
| 5231 | $(hide) echo "avb_recovery_key_path=$(BOARD_AVB_RECOVERY_KEY_PATH)" >> $@ |
| 5232 | $(hide) echo "avb_recovery_algorithm=$(BOARD_AVB_RECOVERY_ALGORITHM)" >> $@ |
| 5233 | $(hide) echo "avb_recovery_rollback_index_location=$(BOARD_AVB_RECOVERY_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5234 | endif # BOARD_AVB_RECOVERY_KEY_PATH |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5235 | ifneq (,$(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST))) |
| 5236 | $(hide) echo "avb_custom_images_partition_list=$(BOARD_CUSTOMIMAGES_PARTITION_LIST)" >> $@ |
| 5237 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 5238 | echo "avb_$(partition)_key_path=$(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH)" >> $@; \ |
| 5239 | echo "avb_$(partition)_algorithm=$(BOARD_AVB_$(call to-upper,$(partition))_ALGORITHM)" >> $@; \ |
| 5240 | echo "avb_$(partition)_add_hashtree_footer_args=$(BOARD_AVB_$(call to-upper,$(partition))_ADD_HASHTREE_FOOTER_ARGS)" >> $@; \ |
| 5241 | echo "avb_$(partition)_rollback_index_location=$(BOARD_AVB_$(call to-upper,$(partition))_ROLLBACK_INDEX_LOCATION)" >> $@; \ |
| 5242 | echo "avb_$(partition)_partition_size=$(BOARD_AVB_$(call to-upper,$(partition))_PARTITION_SIZE)" >> $@; \ |
| 5243 | echo "avb_$(partition)_image_list=$(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),$(notdir $(image)))" >> $@;) |
| 5244 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5245 | ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) |
| 5246 | $(hide) echo "avb_vbmeta_system=$(BOARD_AVB_VBMETA_SYSTEM)" >> $@ |
| 5247 | $(hide) echo "avb_vbmeta_system_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 5248 | $(hide) echo "avb_vbmeta_system_key_path=$(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH)" >> $@ |
| 5249 | $(hide) echo "avb_vbmeta_system_algorithm=$(BOARD_AVB_VBMETA_SYSTEM_ALGORITHM)" >> $@ |
| 5250 | $(hide) echo "avb_vbmeta_system_rollback_index_location=$(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5251 | endif # BOARD_AVB_VBMETA_SYSTEM |
| 5252 | ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) |
| 5253 | $(hide) echo "avb_vbmeta_vendor=$(BOARD_AVB_VBMETA_VENDOR)" >> $@ |
Bowgo Tsai | c85a201 | 2022-06-07 11:36:35 +0800 | [diff] [blame] | 5254 | $(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] | 5255 | $(hide) echo "avb_vbmeta_vendor_key_path=$(BOARD_AVB_VBMETA_VENDOR_KEY_PATH)" >> $@ |
| 5256 | $(hide) echo "avb_vbmeta_vendor_algorithm=$(BOARD_AVB_VBMETA_VENDOR_ALGORITHM)" >> $@ |
| 5257 | $(hide) echo "avb_vbmeta_vendor_rollback_index_location=$(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5258 | endif # BOARD_AVB_VBMETA_VENDOR_KEY_PATH |
| 5259 | endif # BOARD_AVB_ENABLE |
| 5260 | ifdef BOARD_BPT_INPUT_FILES |
| 5261 | $(hide) echo "board_bpt_enable=true" >> $@ |
| 5262 | $(hide) echo "board_bpt_make_table_args=$(BOARD_BPT_MAKE_TABLE_ARGS)" >> $@ |
| 5263 | $(hide) echo "board_bpt_input_files=$(BOARD_BPT_INPUT_FILES)" >> $@ |
| 5264 | endif |
| 5265 | ifdef BOARD_BPT_DISK_SIZE |
| 5266 | $(hide) echo "board_bpt_disk_size=$(BOARD_BPT_DISK_SIZE)" >> $@ |
| 5267 | endif |
| 5268 | $(call generate-userimage-prop-dictionary, $@) |
| 5269 | ifeq ($(AB_OTA_UPDATER),true) |
| 5270 | @# Include the build type in META/misc_info.txt so the server can easily differentiate production builds. |
| 5271 | $(hide) echo "build_type=$(TARGET_BUILD_VARIANT)" >> $@ |
| 5272 | $(hide) echo "ab_update=true" >> $@ |
| 5273 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5274 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
| 5275 | $(hide) echo "allow_non_ab=true" >> $@ |
| 5276 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5277 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 5278 | $(hide) echo "has_dtbo=true" >> $@ |
| 5279 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 5280 | $(hide) echo "dtbo_size=$(BOARD_DTBOIMG_PARTITION_SIZE)" >> $@ |
| 5281 | $(hide) echo "avb_dtbo_add_hash_footer_args=$(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5282 | ifdef BOARD_AVB_DTBO_KEY_PATH |
| 5283 | $(hide) echo "avb_dtbo_key_path=$(BOARD_AVB_DTBO_KEY_PATH)" >> $@ |
| 5284 | $(hide) echo "avb_dtbo_algorithm=$(BOARD_AVB_DTBO_ALGORITHM)" >> $@ |
| 5285 | $(hide) echo "avb_dtbo_rollback_index_location=$(BOARD_AVB_DTBO_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5286 | endif # BOARD_AVB_DTBO_KEY_PATH |
| 5287 | endif # BOARD_AVB_ENABLE |
| 5288 | endif # BOARD_PREBUILT_DTBOIMAGE |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 5289 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5290 | $(hide) echo "has_pvmfw=true" >> $@ |
| 5291 | ifeq ($(BOARD_AVB_ENABLE),true) |
Pierre-Clément Tosi | 592a3ca | 2021-10-04 11:34:11 +0200 | [diff] [blame] | 5292 | $(hide) echo "pvmfw_size=$(BOARD_PVMFWIMAGE_PARTITION_SIZE)" >> $@ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5293 | $(hide) echo "avb_pvmfw_add_hash_footer_args=$(BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5294 | ifdef BOARD_AVB_PVMFW_KEY_PATH |
| 5295 | $(hide) echo "avb_pvmfw_key_path=$(BOARD_AVB_PVMFW_KEY_PATH)" >> $@ |
| 5296 | $(hide) echo "avb_pvmfw_algorithm=$(BOARD_AVB_PVMFW_ALGORITHM)" >> $@ |
| 5297 | $(hide) echo "avb_pvmfw_rollback_index_location=$(BOARD_AVB_PVMFW_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5298 | endif # BOARD_AVB_PVMFW_KEY_PATH |
| 5299 | endif # BOARD_AVB_ENABLE |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 5300 | endif # BOARD_USES_PVMFWIMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5301 | $(call dump-dynamic-partitions-info,$@) |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5302 | @# VINTF checks |
| 5303 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 5304 | $(hide) echo "vintf_enforce=true" >> $@ |
| 5305 | endif |
| 5306 | ifdef ODM_MANIFEST_SKUS |
| 5307 | $(hide) echo "vintf_odm_manifest_skus=$(ODM_MANIFEST_SKUS)" >> $@ |
| 5308 | endif |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5309 | ifdef ODM_MANIFEST_FILES |
| 5310 | $(hide) echo "vintf_include_empty_odm_sku=true" >> $@ |
| 5311 | endif |
| 5312 | ifdef DEVICE_MANIFEST_SKUS |
| 5313 | $(hide) echo "vintf_vendor_manifest_skus=$(DEVICE_MANIFEST_SKUS)" >> $@ |
| 5314 | endif |
| 5315 | ifdef DEVICE_MANIFEST_FILE |
| 5316 | $(hide) echo "vintf_include_empty_vendor_sku=true" >> $@ |
| 5317 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5318 | ifeq ($(BOARD_BOOTLOADER_IN_UPDATE_PACKAGE),true) |
| 5319 | $(hide) echo "bootloader_in_update_package=true" >> $@ |
| 5320 | endif |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 5321 | ifeq ($(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE),true) |
| 5322 | $(hide) echo "exclude_kernel_from_recovery_image=true" >> $@ |
| 5323 | endif |
Kelvin Zhang | 5a65f69 | 2020-11-03 16:40:18 -0500 | [diff] [blame] | 5324 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
| 5325 | $(hide) echo "partial_ota_update_partitions_list=$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)" >> $@ |
| 5326 | endif |
Jose Galmes | 9c8f6eb | 2021-07-21 09:34:08 -0700 | [diff] [blame] | 5327 | ifeq ($(BUILDING_WITH_VSDK),true) |
| 5328 | $(hide) echo "building_with_vsdk=true" >> $@ |
| 5329 | endif |
| 5330 | ifeq ($(TARGET_FLATTEN_APEX),false) |
| 5331 | $(hide) echo "target_flatten_apex=false" >> $@ |
| 5332 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5333 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 5334 | $(call declare-0p-target,$(INSTALLED_MISC_INFO_TARGET)) |
| 5335 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5336 | .PHONY: misc_info |
| 5337 | misc_info: $(INSTALLED_MISC_INFO_TARGET) |
| 5338 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5339 | droidcore-unbundled: $(INSTALLED_MISC_INFO_TARGET) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5340 | |
| 5341 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5342 | # A zip of the directories that map to the target filesystem. |
| 5343 | # This zip can be used to create an OTA package or filesystem image |
| 5344 | # as a post-build step. |
| 5345 | # |
| 5346 | name := $(TARGET_PRODUCT) |
| 5347 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5348 | name := $(name)_debug |
| 5349 | endif |
| 5350 | name := $(name)-target_files-$(FILE_NAME_TAG) |
| 5351 | |
| 5352 | intermediates := $(call intermediates-dir-for,PACKAGING,target_files) |
| 5353 | BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip |
| 5354 | $(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates) |
| 5355 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5356 | zip_root := $(intermediates)/$(name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5357 | |
| 5358 | # $(1): Directory to copy |
| 5359 | # $(2): Location to copy it to |
| 5360 | # The "ls -A" is to prevent "acp s/* d" from failing if s is empty. |
| 5361 | define package_files-copy-root |
| 5362 | if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \ |
| 5363 | mkdir -p $(2) && \ |
| 5364 | $(ACP) -rd $(strip $(1))/* $(2); \ |
| 5365 | fi |
| 5366 | endef |
| 5367 | |
Tao Bao | a04fca3 | 2015-11-30 12:22:24 -0800 | [diff] [blame] | 5368 | built_ota_tools := |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 5369 | |
| 5370 | # We can't build static executables when SANITIZE_TARGET=address |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 5371 | ifeq (,$(filter address, $(SANITIZE_TARGET))) |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 5372 | built_ota_tools += \ |
Elliott Hughes | 9b824d5 | 2020-04-17 15:46:55 -0700 | [diff] [blame] | 5373 | $(call intermediates-dir-for,EXECUTABLES,updater)/updater |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 5374 | endif |
| 5375 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5376 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools) |
| 5377 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5378 | tool_extension := $(wildcard $(tool_extensions)/releasetools.py) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5379 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_TOOL_EXTENSION := $(tool_extension) |
Doug Zongker | c18736b | 2009-09-30 09:20:32 -0700 | [diff] [blame] | 5380 | |
HÃ¥kan Kvist | 8cabc71 | 2022-05-02 07:43:34 +0200 | [diff] [blame] | 5381 | updater_dep := |
Sen Jiang | 4438fd9 | 2016-03-07 16:51:01 -0800 | [diff] [blame] | 5382 | ifeq ($(AB_OTA_UPDATER),true) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 5383 | updater_dep += system/update_engine/update_engine.conf |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5384 | $(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] | 5385 | updater_dep += external/zucchini/version_info.h |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5386 | $(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] | 5387 | updater_dep += $(HOST_OUT_SHARED_LIBRARIES)/liblz4.so |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5388 | endif |
| 5389 | |
| 5390 | # Build OTA tools if non-A/B is allowed |
| 5391 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 5392 | updater_dep += $(built_ota_tools) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5393 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5394 | |
Shinichiro Hamaji | ee2d211 | 2016-05-10 16:40:38 +0900 | [diff] [blame] | 5395 | $(BUILT_TARGET_FILES_PACKAGE): $(updater_dep) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5396 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5397 | # If we are using recovery as boot, output recovery files to BOOT/. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 5398 | # 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] | 5399 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 5400 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := BOOT |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 5401 | else ifeq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
| 5402 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := VENDOR_BOOT |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5403 | else |
| 5404 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := RECOVERY |
| 5405 | endif |
| 5406 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5407 | ifeq ($(AB_OTA_UPDATER),true) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5408 | ifdef OSRELEASED_DIRECTORY |
| 5409 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id |
| 5410 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version |
| 5411 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_ETC)/$(OSRELEASED_DIRECTORY)/system_version |
| 5412 | endif |
Tao Bao | a835f38 | 2019-07-18 15:55:30 -0700 | [diff] [blame] | 5413 | |
| 5414 | # Not checking in board_config.mk, since AB_OTA_PARTITIONS may be updated in Android.mk (e.g. to |
| 5415 | # additionally include radio or bootloader partitions). |
| 5416 | ifeq ($(AB_OTA_PARTITIONS),) |
| 5417 | $(error AB_OTA_PARTITIONS must be defined when using AB_OTA_UPDATER) |
| 5418 | endif |
| 5419 | endif |
| 5420 | |
| 5421 | ifneq ($(AB_OTA_PARTITIONS),) |
| 5422 | ifneq ($(AB_OTA_UPDATER),true) |
| 5423 | $(error AB_OTA_UPDATER must be true when defining AB_OTA_PARTITIONS) |
| 5424 | endif |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5425 | endif |
| 5426 | |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5427 | # Run fs_config while creating the target files package |
| 5428 | # $1: root directory |
| 5429 | # $2: add prefix |
| 5430 | define fs_config |
Luis Hector Chavez | 440da2d | 2018-02-07 09:49:52 -0800 | [diff] [blame] | 5431 | (cd $(1); find . -type d | sed 's,$$,/,'; find . \! -type d) | cut -c 3- | sort | sed 's,^,$(2),' | $(HOST_OUT_EXECUTABLES)/fs_config -C -D $(TARGET_OUT) -S $(SELINUX_FC) -R "$(2)" |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5432 | endef |
| 5433 | |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 5434 | define filter-out-missing-vendor |
| 5435 | $(if $(INSTALLED_VENDORIMAGE_TARGET),$(1),$(filter-out vendor,$(1))) |
| 5436 | endef |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5437 | define filter-out-missing-vendor_dlkm |
| 5438 | $(if $(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(1),$(filter-out vendor_dlkm,$(1))) |
| 5439 | endef |
| 5440 | define filter-out-missing-odm |
| 5441 | $(if $(INSTALLED_ODMIMAGE_TARGET),$(1),$(filter-out odm,$(1))) |
| 5442 | endef |
| 5443 | define filter-out-missing-odm_dlkm |
| 5444 | $(if $(INSTALLED_ODM_DLKMIMAGE_TARGET),$(1),$(filter-out odm_dlkm,$(1))) |
| 5445 | endef |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5446 | define filter-out-missing-system_dlkm |
| 5447 | $(if $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(1),$(filter-out system_dlkm,$(1))) |
| 5448 | endef |
| 5449 | # 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] | 5450 | # $(1): list |
| 5451 | define filter-out-missing-partitions |
| 5452 | $(call filter-out-missing-vendor,\ |
| 5453 | $(call filter-out-missing-vendor_dlkm,\ |
| 5454 | $(call filter-out-missing-odm,\ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5455 | $(call filter-out-missing-odm_dlkm,\ |
| 5456 | $(call filter-out-missing-system_dlkm,$(1)))))) |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5457 | endef |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 5458 | |
| 5459 | # Information related to dynamic partitions and virtual A/B. This information |
| 5460 | # is needed for building the super image (see dump-super-image-info) and |
| 5461 | # building OTA packages. |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5462 | # $(1): file |
| 5463 | define dump-dynamic-partitions-info |
| 5464 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)), \ |
| 5465 | echo "use_dynamic_partitions=true" >> $(1)) |
| 5466 | $(if $(filter true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)), \ |
| 5467 | echo "dynamic_partition_retrofit=true" >> $(1)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 5468 | echo "lpmake=$(notdir $(LPMAKE))" >> $(1) |
| 5469 | $(if $(filter true,$(PRODUCT_BUILD_SUPER_PARTITION)), $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 5470 | echo "build_super_partition=true" >> $(1))) |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 5471 | $(if $(BUILDING_SUPER_EMPTY_IMAGE), \ |
| 5472 | echo "build_super_empty_partition=true" >> $(1)) |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 5473 | $(if $(filter true,$(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE)), \ |
| 5474 | echo "build_retrofit_dynamic_partitions_ota_package=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5475 | echo "super_metadata_device=$(BOARD_SUPER_PARTITION_METADATA_DEVICE)" >> $(1) |
| 5476 | $(if $(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 5477 | echo "super_block_devices=$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)" >> $(1)) |
| 5478 | $(foreach device,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 5479 | echo "super_$(device)_device_size=$(BOARD_SUPER_PARTITION_$(call to-upper,$(device))_DEVICE_SIZE)" >> $(1);) |
| 5480 | $(if $(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5481 | 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] | 5482 | $(if $(BOARD_SUPER_PARTITION_GROUPS), |
| 5483 | echo "super_partition_groups=$(BOARD_SUPER_PARTITION_GROUPS)" >> $(1)) |
| 5484 | $(foreach group,$(BOARD_SUPER_PARTITION_GROUPS), \ |
| 5485 | echo "super_$(group)_group_size=$(BOARD_$(call to-upper,$(group))_SIZE)" >> $(1); \ |
| 5486 | $(if $(BOARD_$(call to-upper,$(group))_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5487 | 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] | 5488 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)), \ |
| 5489 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 5490 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)), \ |
| 5491 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5492 | $(if $(filter true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)), \ |
| 5493 | echo "super_image_in_update_package=true" >> $(1)) |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5494 | $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 5495 | echo "super_partition_size=$(BOARD_SUPER_PARTITION_SIZE)" >> $(1)) |
| 5496 | $(if $(BOARD_SUPER_PARTITION_ALIGNMENT), \ |
| 5497 | echo "super_partition_alignment=$(BOARD_SUPER_PARTITION_ALIGNMENT)" >> $(1)) |
| 5498 | $(if $(BOARD_SUPER_PARTITION_WARN_LIMIT), \ |
| 5499 | echo "super_partition_warn_limit=$(BOARD_SUPER_PARTITION_WARN_LIMIT)" >> $(1)) |
| 5500 | $(if $(BOARD_SUPER_PARTITION_ERROR_LIMIT), \ |
| 5501 | echo "super_partition_error_limit=$(BOARD_SUPER_PARTITION_ERROR_LIMIT)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 5502 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA)), \ |
| 5503 | echo "virtual_ab=true" >> $(1)) |
Kelvin Zhang | 239a79a | 2021-01-15 13:47:52 -0500 | [diff] [blame] | 5504 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_COMPRESSION)), \ |
| 5505 | echo "virtual_ab_compression=true" >> $(1)) |
Kelvin Zhang | fa91e98 | 2022-02-09 11:19:16 -0800 | [diff] [blame] | 5506 | # This value controls the compression algorithm used for VABC |
| 5507 | # valid options are defined in system/core/fs_mgr/libsnapshot/cow_writer.cpp |
| 5508 | # e.g. "none", "gz", "brotli" |
| 5509 | $(if $(PRODUCT_VIRTUAL_AB_COMPRESSION_METHOD), \ |
| 5510 | echo "virtual_ab_compression_method=$(PRODUCT_VIRTUAL_AB_COMPRESSION_METHOD)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 5511 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA_RETROFIT)), \ |
| 5512 | echo "virtual_ab_retrofit=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5513 | endef |
| 5514 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 5515 | # By conditionally including the dependency of the target files package on the |
| 5516 | # full system image deps, we speed up builds that do not build the system |
| 5517 | # image. |
| 5518 | ifdef BUILDING_SYSTEM_IMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5519 | $(BUILT_TARGET_FILES_PACKAGE): $(FULL_SYSTEMIMAGE_DEPS) |
Yi-Yo Chiang | 9b25841 | 2022-01-04 00:05:11 +0800 | [diff] [blame] | 5520 | else |
| 5521 | # releasetools may need the system build.prop even when building a |
| 5522 | # system-image-less product. |
| 5523 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BUILD_PROP_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5524 | endif |
| 5525 | |
| 5526 | ifdef BUILDING_USERDATA_IMAGE |
| 5527 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_USERDATAIMAGE_FILES) |
| 5528 | endif |
| 5529 | |
| 5530 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 5531 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEMOTHERIMAGE_FILES) |
| 5532 | endif |
| 5533 | |
| 5534 | ifdef BUILDING_VENDOR_BOOT_IMAGE |
| 5535 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_RAMDISK_FILES) |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 5536 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
Devin Moore | 55af506 | 2021-06-09 10:44:44 -0700 | [diff] [blame] | 5537 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
Colin Cross | e643120 | 2021-02-24 11:44:55 -0800 | [diff] [blame] | 5538 | # The vendor ramdisk may be built from the recovery ramdisk. |
| 5539 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
| 5540 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 5541 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5542 | endif |
| 5543 | |
| 5544 | ifdef BUILDING_RECOVERY_IMAGE |
| 5545 | # 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] | 5546 | # BUILT_TARGET_FILES_PACKAGE dependencies because currently there're cp/rsync/rm |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5547 | # commands in build-recoveryimage-target, which would touch the files under |
| 5548 | # TARGET_RECOVERY_OUT and race with packaging target-files.zip. |
| 5549 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 5550 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTIMAGE_TARGET) |
| 5551 | else |
| 5552 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_RECOVERYIMAGE_TARGET) |
| 5553 | endif |
| 5554 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RECOVERYIMAGE_FILES) |
| 5555 | endif |
| 5556 | |
| 5557 | # Conditionally depend on the image files if the image is being built so the |
| 5558 | # target-files.zip rule doesn't wait on the image creation rule, or the image |
| 5559 | # if it is coming from a prebuilt. |
| 5560 | |
| 5561 | ifdef BUILDING_VENDOR_IMAGE |
| 5562 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDORIMAGE_FILES) |
| 5563 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 5564 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_VENDORIMAGE_TARGET) |
| 5565 | endif |
| 5566 | |
| 5567 | ifdef BUILDING_PRODUCT_IMAGE |
| 5568 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_PRODUCTIMAGE_FILES) |
| 5569 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 5570 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_PRODUCTIMAGE_TARGET) |
| 5571 | endif |
| 5572 | |
| 5573 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 5574 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
| 5575 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 5576 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
| 5577 | endif |
| 5578 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5579 | ifneq (,$(BUILDING_BOOT_IMAGE)$(BUILDING_INIT_BOOT_IMAGE)) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5580 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RAMDISK_FILES) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5581 | endif # BUILDING_BOOT_IMAGE != "" || BUILDING_INIT_BOOT_IMAGE != "" |
| 5582 | |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 5583 | ifneq (,$(INTERNAL_PREBUILT_BOOTIMAGE) $(filter true,$(BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES))) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5584 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTIMAGE_TARGET) |
| 5585 | endif |
| 5586 | |
| 5587 | ifdef BUILDING_ODM_IMAGE |
| 5588 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_ODMIMAGE_FILES) |
| 5589 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 5590 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_ODMIMAGE_TARGET) |
| 5591 | endif |
| 5592 | |
| 5593 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 5594 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 5595 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5596 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
| 5597 | endif |
| 5598 | |
| 5599 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 5600 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_ODM_DLKMIMAGE_FILES) |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 5601 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5602 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 5603 | endif |
| 5604 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5605 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 5606 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) |
| 5607 | else ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
| 5608 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) |
| 5609 | endif |
| 5610 | |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5611 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5612 | MK_VBMETA_BOOT_KERNEL_CMDLINE_SH := device/generic/goldfish/tools/mk_vbmeta_boot_params.sh |
| 5613 | $(BUILT_TARGET_FILES_PACKAGE): $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5614 | endif |
| 5615 | |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5616 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 5617 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTLOADER_MODULE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5618 | droidcore-unbundled: $(INSTALLED_BOOTLOADER_MODULE) |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5619 | endif |
| 5620 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5621 | # Depending on the various images guarantees that the underlying |
| 5622 | # directories are up-to-date. |
| 5623 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5624 | $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 5625 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5626 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5627 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5628 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 5629 | $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5630 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5631 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 5632 | $(INSTALLED_KERNEL_TARGET) \ |
Enrico Granata | b582e0f | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 5633 | $(INSTALLED_RAMDISK_TARGET) \ |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 5634 | $(INSTALLED_DTBIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5635 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 5636 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 5637 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 5638 | $(BOARD_RECOVERY_ACPIO) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5639 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 5640 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 5641 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5642 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5643 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5644 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5645 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5646 | $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5647 | $(LPMAKE) \ |
| 5648 | $(SELINUX_FC) \ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5649 | $(INSTALLED_MISC_INFO_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5650 | $(APKCERTS_FILE) \ |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 5651 | $(SOONG_APEX_KEYS_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5652 | $(SOONG_ZIP) \ |
| 5653 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5654 | $(ADD_IMG_TO_TARGET_FILES) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 5655 | $(MAKE_RECOVERY_PATCH) \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5656 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 5657 | $(BUILT_KERNEL_VERSION_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5658 | | $(ACP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5659 | @echo "Package target files: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 5660 | $(hide) rm -rf $@ $@.list $(zip_root) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5661 | $(hide) mkdir -p $(dir $@) $(zip_root) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 5662 | 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] | 5663 | @# Components of the recovery image |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5664 | $(hide) mkdir -p $(zip_root)/$(PRIVATE_RECOVERY_OUT) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 5665 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 5666 | # recovery ramdisk in vendor_boot. |
| 5667 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5668 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5669 | $(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/$(PRIVATE_RECOVERY_OUT)/RAMDISK) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 5670 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5671 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 5672 | ifneq (,$(filter true,$(BOARD_USES_RECOVERY_AS_BOOT))) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 5673 | cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 5674 | else ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 5675 | cp $(firstword $(INSTALLED_KERNEL_TARGET)) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/kernel |
| 5676 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5677 | endif |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 5678 | 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] | 5679 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5680 | 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] | 5681 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 5682 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 5683 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5684 | cp $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 5685 | else |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5686 | cp $(BOARD_PREBUILT_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 5687 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5688 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 5689 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5690 | cp $(BOARD_RECOVERY_ACPIO) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_acpio |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 5691 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 5692 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5693 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 5694 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5695 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 5696 | ifdef INTERNAL_KERNEL_CMDLINE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5697 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/cmdline |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5698 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 5699 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5700 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5701 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5702 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5703 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5704 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5705 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 5706 | endif # not (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5707 | 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] | 5708 | @# Components of the boot image |
| 5709 | $(hide) mkdir -p $(zip_root)/BOOT |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 5710 | $(hide) mkdir -p $(zip_root)/ROOT |
| 5711 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5712 | $(TARGET_ROOT_OUT),$(zip_root)/ROOT) |
Tom Cherry | 3871f0f | 2018-11-06 14:23:44 -0800 | [diff] [blame] | 5713 | @# If we are using recovery as boot, this is already done when processing recovery. |
| 5714 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 5715 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5716 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5717 | $(TARGET_RAMDISK_OUT),$(zip_root)/BOOT/RAMDISK) |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 5718 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5719 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 5720 | $(hide) cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5721 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 5722 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5723 | echo "$(GENERIC_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 5724 | else ifndef INSTALLED_VENDOR_BOOTIMAGE_TARGET # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5725 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5726 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5727 | cp $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5728 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 5729 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5730 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/BOOT/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 5731 | endif |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5732 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5733 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5734 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5735 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5736 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5737 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5738 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5739 | endif # BOARD_USES_RECOVERY_AS_BOOT not true |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 5740 | $(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\ |
| 5741 | mkdir -p $(zip_root)/RADIO; \ |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5742 | cp $(t) $(zip_root)/RADIO/$(notdir $(t));) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5743 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 5744 | mkdir -p $(zip_root)/VENDOR_BOOT |
| 5745 | $(call package_files-copy-root, \ |
| 5746 | $(TARGET_VENDOR_RAMDISK_OUT),$(zip_root)/VENDOR_BOOT/RAMDISK) |
| 5747 | ifdef INSTALLED_DTBIMAGE_TARGET |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5748 | ifneq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5749 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_BOOT/dtb |
| 5750 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5751 | endif # end of INSTALLED_DTBIMAGE_TARGET |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 5752 | ifdef INTERNAL_VENDOR_BOOTCONFIG_TARGET |
| 5753 | cp $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) $(zip_root)/VENDOR_BOOT/vendor_bootconfig |
| 5754 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5755 | ifdef BOARD_KERNEL_BASE |
| 5756 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/VENDOR_BOOT/base |
| 5757 | endif |
| 5758 | ifdef BOARD_KERNEL_PAGESIZE |
| 5759 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_BOOT/pagesize |
| 5760 | endif |
| 5761 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/VENDOR_BOOT/vendor_cmdline |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 5762 | ifdef INTERNAL_VENDOR_RAMDISK_FRAGMENTS |
| 5763 | echo "$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)" > "$(zip_root)/VENDOR_BOOT/vendor_ramdisk_fragments" |
| 5764 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 5765 | mkdir -p $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment); \ |
| 5766 | echo "$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)" > "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/mkbootimg_args"; \ |
| 5767 | $(eval prebuilt_ramdisk := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 5768 | $(if $(prebuilt_ramdisk), \ |
| 5769 | cp "$(prebuilt_ramdisk)" "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/prebuilt_ramdisk";, \ |
| 5770 | $(call package_files-copy-root, \ |
| 5771 | $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR), \ |
| 5772 | $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/RAMDISK); \ |
| 5773 | )) |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 5774 | endif # INTERNAL_VENDOR_RAMDISK_FRAGMENTS != "" |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5775 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5776 | ifdef INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET |
| 5777 | mkdir -p $(zip_root)/VENDOR_KERNEL_BOOT |
| 5778 | $(call package_files-copy-root, \ |
| 5779 | $(TARGET_VENDOR_KERNEL_RAMDISK_OUT),$(zip_root)/VENDOR_KERNEL_BOOT/RAMDISK) |
| 5780 | ifdef INSTALLED_DTBIMAGE_TARGET |
| 5781 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_KERNEL_BOOT/dtb |
| 5782 | endif |
| 5783 | ifdef BOARD_KERNEL_PAGESIZE |
| 5784 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_KERNEL_BOOT/pagesize |
| 5785 | endif |
| 5786 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5787 | ifdef BUILDING_SYSTEM_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5788 | @# Contents of the system image |
| 5789 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5790 | $(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM) |
Yi-Yo Chiang | 9b25841 | 2022-01-04 00:05:11 +0800 | [diff] [blame] | 5791 | else ifdef INSTALLED_BUILD_PROP_TARGET |
| 5792 | @# Copy the system build.prop even if not building a system image |
| 5793 | @# because add_img_to_target_files may need it to build other partition |
| 5794 | @# images. |
| 5795 | $(hide) mkdir -p "$(zip_root)/SYSTEM" |
| 5796 | $(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] | 5797 | endif |
| 5798 | ifdef BUILDING_USERDATA_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5799 | @# Contents of the data image |
| 5800 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5801 | $(TARGET_OUT_DATA),$(zip_root)/DATA) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5802 | endif |
| 5803 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 5804 | @# Contents of the vendor image |
| 5805 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5806 | $(TARGET_OUT_VENDOR),$(zip_root)/VENDOR) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 5807 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5808 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5809 | @# Contents of the product image |
| 5810 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5811 | $(TARGET_OUT_PRODUCT),$(zip_root)/PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5812 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5813 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 5814 | @# Contents of the system_ext image |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5815 | $(hide) $(call package_files-copy-root, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5816 | $(TARGET_OUT_SYSTEM_EXT),$(zip_root)/SYSTEM_EXT) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5817 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5818 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5819 | @# Contents of the odm image |
| 5820 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5821 | $(TARGET_OUT_ODM),$(zip_root)/ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5822 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5823 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 5824 | @# Contents of the vendor_dlkm image |
| 5825 | $(hide) $(call package_files-copy-root, \ |
| 5826 | $(TARGET_OUT_VENDOR_DLKM),$(zip_root)/VENDOR_DLKM) |
| 5827 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5828 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 5829 | @# Contents of the odm_dlkm image |
| 5830 | $(hide) $(call package_files-copy-root, \ |
| 5831 | $(TARGET_OUT_ODM_DLKM),$(zip_root)/ODM_DLKM) |
| 5832 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5833 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 5834 | @# Contents of the system_dlkm image |
| 5835 | $(hide) $(call package_files-copy-root, \ |
| 5836 | $(TARGET_OUT_SYSTEM_DLKM),$(zip_root)/SYSTEM_DLKM) |
| 5837 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5838 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 5839 | @# Contents of the system_other image |
| 5840 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5841 | $(TARGET_OUT_SYSTEM_OTHER),$(zip_root)/SYSTEM_OTHER) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 5842 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5843 | @# Extra contents of the OTA package |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5844 | $(hide) mkdir -p $(zip_root)/OTA |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5845 | $(hide) cp $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/ |
Enrico Granata | b582e0f | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 5846 | ifdef BUILDING_RAMDISK_IMAGE |
| 5847 | ifeq (true,$(BOARD_IMG_USE_RAMDISK)) |
| 5848 | @# Contents of the ramdisk image |
| 5849 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5850 | $(hide) cp $(INSTALLED_RAMDISK_TARGET) $(zip_root)/IMAGES/ |
| 5851 | endif |
| 5852 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5853 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 5854 | ifneq ($(built_ota_tools),) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5855 | $(hide) mkdir -p $(zip_root)/OTA/bin |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5856 | $(hide) cp $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/ |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5857 | endif |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 5858 | endif |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5859 | @# 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] | 5860 | @# build them. |
| 5861 | $(hide) mkdir -p $(zip_root)/META |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5862 | $(hide) cp $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 5863 | $(hide) cp $(SOONG_APEX_KEYS_FILE) $(zip_root)/META/apexkeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5864 | ifneq ($(tool_extension),) |
| 5865 | $(hide) cp $(PRIVATE_TOOL_EXTENSION) $(zip_root)/META/ |
| 5866 | endif |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 5867 | $(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5868 | $(hide) cp $(SELINUX_FC) $(zip_root)/META/file_contexts.bin |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5869 | $(hide) cp $(INSTALLED_MISC_INFO_TARGET) $(zip_root)/META/misc_info.txt |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5870 | ifneq ($(PRODUCT_SYSTEM_BASE_FS_PATH),) |
| 5871 | $(hide) cp $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 5872 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 5873 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5874 | ifneq ($(PRODUCT_VENDOR_BASE_FS_PATH),) |
| 5875 | $(hide) cp $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 5876 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 5877 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5878 | ifneq ($(PRODUCT_PRODUCT_BASE_FS_PATH),) |
| 5879 | $(hide) cp $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 5880 | $(zip_root)/META/$(notdir $(PRODUCT_PRODUCT_BASE_FS_PATH)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5881 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5882 | ifneq ($(PRODUCT_SYSTEM_EXT_BASE_FS_PATH),) |
| 5883 | $(hide) cp $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 5884 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5885 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5886 | ifneq ($(PRODUCT_ODM_BASE_FS_PATH),) |
| 5887 | $(hide) cp $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 5888 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_BASE_FS_PATH)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5889 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5890 | ifneq ($(PRODUCT_VENDOR_DLKM_BASE_FS_PATH),) |
| 5891 | $(hide) cp $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 5892 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH)) |
| 5893 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5894 | ifneq ($(PRODUCT_ODM_DLKM_BASE_FS_PATH),) |
| 5895 | $(hide) cp $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 5896 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_DLKM_BASE_FS_PATH)) |
| 5897 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5898 | ifneq ($(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH),) |
| 5899 | $(hide) cp $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
| 5900 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH)) |
| 5901 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5902 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 5903 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 5904 | $(hide) PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 5905 | $(MAKE_RECOVERY_PATCH) $(zip_root) $(zip_root) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 5906 | endif |
Bill Peckham | c0f413f | 2019-11-07 11:27:02 -0800 | [diff] [blame] | 5907 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 5908 | ifeq ($(AB_OTA_UPDATER),true) |
| 5909 | @# 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] | 5910 | $(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] | 5911 | $(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] | 5912 | $(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] | 5913 | $(hide) for part in $(sort $(AB_OTA_PARTITIONS)); do \ |
Alex Deymo | 8925d33 | 2015-10-01 17:38:09 -0700 | [diff] [blame] | 5914 | echo "$${part}" >> $(zip_root)/META/ab_partitions.txt; \ |
| 5915 | done |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 5916 | $(hide) for conf in $(strip $(AB_OTA_POSTINSTALL_CONFIG)); do \ |
Sen Jiang | 8f22e2a | 2015-11-12 13:53:25 -0800 | [diff] [blame] | 5917 | echo "$${conf}" >> $(zip_root)/META/postinstall_config.txt; \ |
| 5918 | done |
Bertrand SIMONNET | 4af7259 | 2015-10-08 15:32:40 -0700 | [diff] [blame] | 5919 | ifdef OSRELEASED_DIRECTORY |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5920 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id $(zip_root)/META/product_id.txt |
| 5921 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version $(zip_root)/META/product_version.txt |
| 5922 | $(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] | 5923 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 5924 | endif |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 5925 | ifeq ($(BREAKPAD_GENERATE_SYMBOLS),true) |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 5926 | @# If breakpad symbols have been generated, add them to the zip. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 5927 | $(hide) cp -R $(TARGET_OUT_BREAKPAD) $(zip_root)/BREAKPAD |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 5928 | endif |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 5929 | ifdef BOARD_PREBUILT_VENDORIMAGE |
| 5930 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5931 | $(hide) cp $(INSTALLED_VENDORIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5932 | endif |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5933 | ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 5934 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5935 | $(hide) cp $(INSTALLED_PRODUCTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5936 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5937 | ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5938 | $(hide) mkdir -p $(zip_root)/IMAGES |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5939 | $(hide) cp $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5940 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5941 | ifdef BOARD_PREBUILT_INIT_BOOT_IMAGE |
Devin Moore | cda41f0 | 2022-01-05 00:08:39 +0000 | [diff] [blame] | 5942 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5943 | $(hide) cp $(INSTALLED_INIT_BOOT_IMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5944 | endif |
Ramji Jiyani | 034e777 | 2022-01-24 04:00:29 +0000 | [diff] [blame] | 5945 | |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 5946 | ifndef BOARD_PREBUILT_BOOTIMAGE |
Yi-Yo Chiang | 8193900 | 2022-01-08 23:46:40 +0800 | [diff] [blame] | 5947 | 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] | 5948 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 5949 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5950 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 5951 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 5952 | endif # INTERNAL_PREBUILT_BOOTIMAGE != "" || BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES == true |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 5953 | else # BOARD_PREBUILT_BOOTIMAGE is defined |
| 5954 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5955 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
| 5956 | endif # BOARD_PREBUILT_BOOTIMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5957 | ifdef BOARD_PREBUILT_ODMIMAGE |
| 5958 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5959 | $(hide) cp $(INSTALLED_ODMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5960 | endif |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 5961 | ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5962 | $(hide) mkdir -p $(zip_root)/IMAGES |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 5963 | $(hide) cp $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5964 | endif |
| 5965 | ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 5966 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5967 | $(hide) cp $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5968 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5969 | ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
| 5970 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5971 | $(hide) cp $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5972 | endif |
Yueyao Zhu | 889ee5e | 2017-05-12 17:50:46 -0700 | [diff] [blame] | 5973 | ifdef BOARD_PREBUILT_DTBOIMAGE |
Tao Bao | c633ed0 | 2017-05-30 21:46:33 -0700 | [diff] [blame] | 5974 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5975 | $(hide) cp $(INSTALLED_DTBOIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 5976 | endif # BOARD_PREBUILT_DTBOIMAGE |
Pierre-Clément Tosi | 4bbb8dd | 2022-01-31 20:25:52 +0100 | [diff] [blame] | 5977 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5978 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5979 | $(hide) cp $(INSTALLED_PVMFWIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 5980 | $(hide) cp $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Pierre-Clément Tosi | c7b8378 | 2022-05-12 16:25:34 +0100 | [diff] [blame] | 5981 | $(hide) mkdir -p $(zip_root)/PVMFW |
| 5982 | $(hide) cp $(PREBUILT_PVMFWIMAGE_TARGET) $(zip_root)/PVMFW/ |
Pierre-Clément Tosi | d8248af | 2021-10-07 12:18:17 +0200 | [diff] [blame] | 5983 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5984 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 5985 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5986 | $(hide) cp $(INSTALLED_BOOTLOADER_MODULE) $(zip_root)/IMAGES/ |
| 5987 | endif |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5988 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 5989 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5990 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 5991 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),cp $(image) $(zip_root)/PREBUILT_IMAGES/;)) |
| 5992 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Tao Bao | 95a95c3 | 2017-06-16 15:30:23 -0700 | [diff] [blame] | 5993 | @# The radio images in BOARD_PACK_RADIOIMAGES will be additionally copied from RADIO/ into |
| 5994 | @# IMAGES/, which then will be added into <product>-img.zip. Such images must be listed in |
| 5995 | @# INSTALLED_RADIOIMAGE_TARGET. |
| 5996 | $(hide) $(foreach part,$(BOARD_PACK_RADIOIMAGES), \ |
| 5997 | echo $(part) >> $(zip_root)/META/pack_radioimages.txt;) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5998 | @# Run fs_config on all the system, vendor, boot ramdisk, |
| 5999 | @# and recovery ramdisk files in the zip, and save the output |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6000 | ifdef BUILDING_SYSTEM_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6001 | $(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] | 6002 | endif |
| 6003 | ifdef BUILDING_VENDOR_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6004 | $(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.txt |
| 6005 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6006 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6007 | $(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_config.txt |
| 6008 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6009 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 6010 | $(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] | 6011 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6012 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6013 | $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt |
| 6014 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6015 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 6016 | $(hide) $(call fs_config,$(zip_root)/VENDOR_DLKM,vendor_dlkm/) > $(zip_root)/META/vendor_dlkm_filesystem_config.txt |
| 6017 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6018 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 6019 | $(hide) $(call fs_config,$(zip_root)/ODM_DLKM,odm_dlkm/) > $(zip_root)/META/odm_dlkm_filesystem_config.txt |
| 6020 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6021 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 6022 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_DLKM,system_dlkm/) > $(zip_root)/META/system_dlkm_filesystem_config.txt |
| 6023 | endif |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 6024 | @# ROOT always contains the files for the root under normal boot. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6025 | $(hide) $(call fs_config,$(zip_root)/ROOT,) > $(zip_root)/META/root_filesystem_config.txt |
Tao Bao | da01b21 | 2018-02-28 21:20:08 -0800 | [diff] [blame] | 6026 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 6027 | @# BOOT/RAMDISK exists and contains the ramdisk for recovery if using BOARD_USES_RECOVERY_AS_BOOT. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6028 | $(hide) $(call fs_config,$(zip_root)/BOOT/RAMDISK,) > $(zip_root)/META/boot_filesystem_config.txt |
Tao Bao | da01b21 | 2018-02-28 21:20:08 -0800 | [diff] [blame] | 6029 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6030 | ifdef BUILDING_INIT_BOOT_IMAGE |
| 6031 | $(hide) $(call package_files-copy-root, $(TARGET_RAMDISK_OUT),$(zip_root)/INIT_BOOT/RAMDISK) |
| 6032 | $(hide) $(call fs_config,$(zip_root)/INIT_BOOT/RAMDISK,) > $(zip_root)/META/init_boot_filesystem_config.txt |
| 6033 | ifdef BOARD_KERNEL_PAGESIZE |
| 6034 | $(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/INIT_BOOT/pagesize |
| 6035 | endif # BOARD_KERNEL_PAGESIZE |
| 6036 | endif # BUILDING_INIT_BOOT_IMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6037 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 6038 | $(call fs_config,$(zip_root)/VENDOR_BOOT/RAMDISK,) > $(zip_root)/META/vendor_boot_filesystem_config.txt |
| 6039 | endif |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 6040 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 6041 | @# BOOT/RAMDISK also exists and contains the first stage ramdisk if not using BOARD_BUILD_SYSTEM_ROOT_IMAGE. |
Tao Bao | da01b21 | 2018-02-28 21:20:08 -0800 | [diff] [blame] | 6042 | $(hide) $(call fs_config,$(zip_root)/BOOT/RAMDISK,) > $(zip_root)/META/boot_filesystem_config.txt |
| 6043 | endif |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6044 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 6045 | $(hide) $(call fs_config,$(zip_root)/RECOVERY/RAMDISK,) > $(zip_root)/META/recovery_filesystem_config.txt |
| 6046 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6047 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6048 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_OTHER,system/) > $(zip_root)/META/system_other_filesystem_config.txt |
| 6049 | endif |
Michael Schwartz | 4d9cb56 | 2017-04-04 13:01:18 -0700 | [diff] [blame] | 6050 | @# Metadata for compatibility verification. |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 6051 | ifdef BUILT_KERNEL_CONFIGS_FILE |
| 6052 | $(hide) cp $(BUILT_KERNEL_CONFIGS_FILE) $(zip_root)/META/kernel_configs.txt |
| 6053 | endif |
| 6054 | ifdef BUILT_KERNEL_VERSION_FILE |
| 6055 | $(hide) cp $(BUILT_KERNEL_VERSION_FILE) $(zip_root)/META/kernel_version.txt |
| 6056 | endif |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 6057 | rm -rf $(zip_root)/META/dynamic_partitions_info.txt |
| 6058 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 6059 | $(call dump-dynamic-partitions-info, $(zip_root)/META/dynamic_partitions_info.txt) |
| 6060 | endif |
Tao Bao | cbd6d49 | 2019-10-07 22:46:02 -0700 | [diff] [blame] | 6061 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
| 6062 | $(ADD_IMG_TO_TARGET_FILES) -a -v -p $(HOST_OUT) $(zip_root) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6063 | ifeq ($(BUILD_QEMU_IMAGES),true) |
| 6064 | $(hide) AVBTOOL=$(AVBTOOL) $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(zip_root)/IMAGES/vbmeta.img \ |
| 6065 | $(zip_root)/IMAGES/system.img $(zip_root)/IMAGES/VerifiedBootParams.textproto |
| 6066 | endif |
Alex Deymo | 92cfd6f | 2016-01-26 18:47:44 -0800 | [diff] [blame] | 6067 | @# Zip everything up, preserving symlinks and placing META/ files first to |
| 6068 | @# help early validation of the .zip file while uploading it. |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 6069 | $(hide) find $(zip_root)/META | sort >$@.list |
Nan Zhang | cabecd9 | 2017-03-20 18:22:43 -0700 | [diff] [blame] | 6070 | $(hide) find $(zip_root) -path $(zip_root)/META -prune -o -print | sort >>$@.list |
Colin Cross | 17e98b7 | 2021-02-03 16:03:55 -0800 | [diff] [blame] | 6071 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(zip_root) -r $@.list |
Doug Zongker | 283e2a1 | 2010-03-15 17:52:32 -0700 | [diff] [blame] | 6072 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 6073 | .PHONY: target-files-package |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6074 | target-files-package: $(BUILT_TARGET_FILES_PACKAGE) |
| 6075 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6076 | $(call declare-1p-container,$(BUILT_TARGET_FILES_PACKAGE),) |
| 6077 | $(call declare-container-license-deps,$(BUILT_TARGET_FILES_PACKAGE), $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 6078 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 6079 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
| 6080 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
| 6081 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
| 6082 | $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) \ |
| 6083 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
| 6084 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 6085 | $(INSTALLED_KERNEL_TARGET) \ |
| 6086 | $(INSTALLED_RAMDISK_TARGET) \ |
| 6087 | $(INSTALLED_DTBIMAGE_TARGET) \ |
| 6088 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 6089 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
| 6090 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
| 6091 | $(BOARD_RECOVERY_ACPIO) \ |
| 6092 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 6093 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 6094 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 6095 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 6096 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 6097 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 6098 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 6099 | $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
| 6100 | $(LPMAKE) \ |
| 6101 | $(SELINUX_FC) \ |
| 6102 | $(INSTALLED_MISC_INFO_TARGET) \ |
| 6103 | $(APKCERTS_FILE) \ |
| 6104 | $(SOONG_APEX_KEYS_FILE) \ |
| 6105 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
| 6106 | $(ADD_IMG_TO_TARGET_FILES) \ |
| 6107 | $(MAKE_RECOVERY_PATCH) \ |
| 6108 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 6109 | $(BUILT_KERNEL_VERSION_FILE),$(BUILT_TARGET_FILES_PACKAGE):) |
| 6110 | |
Ying Wang | 4709d7c | 2014-04-14 17:25:43 -0700 | [diff] [blame] | 6111 | $(call dist-for-goals, target-files-package, $(BUILT_TARGET_FILES_PACKAGE)) |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 6112 | |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 6113 | # ----------------------------------------------------------------- |
| 6114 | # NDK Sysroot Package |
| 6115 | NDK_SYSROOT_TARGET := $(PRODUCT_OUT)/ndk_sysroot.tar.bz2 |
Dan Willemsen | 14e1026 | 2018-06-17 21:54:21 -0700 | [diff] [blame] | 6116 | $(NDK_SYSROOT_TARGET): $(SOONG_OUT_DIR)/ndk.timestamp |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 6117 | @echo Package NDK sysroot... |
| 6118 | $(hide) tar cjf $@ -C $(SOONG_OUT_DIR) ndk |
| 6119 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 6120 | ifeq ($(HOST_OS),linux) |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 6121 | $(call dist-for-goals,sdk,$(NDK_SYSROOT_TARGET)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 6122 | endif |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 6123 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 6124 | ifeq ($(build_ota_package),true) |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 6125 | # ----------------------------------------------------------------- |
| 6126 | # OTA update package |
| 6127 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6128 | # $(1): output file |
| 6129 | # $(2): additional args |
| 6130 | define build-ota-package-target |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6131 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 6132 | $(OTA_FROM_TARGET_FILES) \ |
| 6133 | --verbose \ |
| 6134 | --extracted_input_target_files $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) \ |
| 6135 | --path $(HOST_OUT) \ |
| 6136 | $(if $(OEM_OTA_CONFIG), --oem_settings $(OEM_OTA_CONFIG)) \ |
| 6137 | $(2) \ |
| 6138 | $(BUILT_TARGET_FILES_PACKAGE) $(1) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6139 | endef |
| 6140 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6141 | product_name := $(TARGET_PRODUCT) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6142 | ifeq ($(TARGET_BUILD_TYPE),debug) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6143 | product_name := $(product_name)_debug |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6144 | endif |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6145 | name := $(product_name)-ota-$(FILE_NAME_TAG) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6146 | |
| 6147 | INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 6148 | INTERNAL_OTA_METADATA := $(PRODUCT_OUT)/ota_metadata |
| 6149 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6150 | $(call declare-0p-target,$(INTERNAL_OTA_METADATA)) |
| 6151 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6152 | $(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 6153 | $(INTERNAL_OTA_PACKAGE_TARGET): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_OTA_METADATA) |
Yifan Hong | 5c1b199 | 2020-10-08 09:36:29 -0700 | [diff] [blame] | 6154 | $(INTERNAL_OTA_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6155 | @echo "Package OTA: $@" |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 6156 | $(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] | 6157 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6158 | $(call declare-1p-container,$(INTERNAL_OTA_PACKAGE_TARGET),) |
| 6159 | $(call declare-container-license-deps,$(INTERNAL_OTA_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES),$(PRODUCT_OUT)/:/) |
| 6160 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6161 | .PHONY: otapackage |
| 6162 | otapackage: $(INTERNAL_OTA_PACKAGE_TARGET) |
| 6163 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 6164 | ifeq ($(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE),true) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6165 | name := $(product_name)-ota-retrofit-$(FILE_NAME_TAG) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6166 | |
| 6167 | INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6168 | $(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] | 6169 | $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET): \ |
| 6170 | $(BUILT_TARGET_FILES_PACKAGE) \ |
Yifan Hong | 5c1b199 | 2020-10-08 09:36:29 -0700 | [diff] [blame] | 6171 | $(OTA_FROM_TARGET_FILES) \ |
| 6172 | $(INTERNAL_OTATOOLS_FILES) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6173 | @echo "Package OTA (retrofit dynamic partitions): $@" |
| 6174 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --retrofit_dynamic_partitions) |
| 6175 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6176 | $(call declare-1p-container,$(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET),) |
| 6177 | $(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)/:/) |
| 6178 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6179 | .PHONY: otardppackage |
| 6180 | |
| 6181 | otapackage otardppackage: $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET) |
| 6182 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 6183 | endif # BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6184 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6185 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
| 6186 | name := $(product_name)-partial-ota-$(FILE_NAME_TAG) |
| 6187 | |
| 6188 | INTERNAL_OTA_PARTIAL_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 6189 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
| 6190 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES) |
| 6191 | @echo "Package partial OTA: $@" |
| 6192 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --partial "$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)") |
| 6193 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6194 | $(call declare-1p-container,$(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET),) |
| 6195 | $(call declare-container-license-deps,$(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES),$(PRODUCT_OUT)/:/) |
| 6196 | |
| 6197 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6198 | .PHONY: partialotapackage |
| 6199 | partialotapackage: $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET) |
| 6200 | |
| 6201 | endif # BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST |
| 6202 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 6203 | endif # build_ota_package |
Ying Wang | f8824af | 2014-06-03 14:07:27 -0700 | [diff] [blame] | 6204 | |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 6205 | # ----------------------------------------------------------------- |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 6206 | # A zip of the appcompat directory containing logs |
| 6207 | APPCOMPAT_ZIP := $(PRODUCT_OUT)/appcompat.zip |
| 6208 | # 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] | 6209 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 6210 | $(APPCOMPAT_ZIP): $(FULL_SYSTEMIMAGE_DEPS) \ |
| 6211 | $(INTERNAL_RAMDISK_FILES) \ |
| 6212 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 6213 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 6214 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 6215 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 6216 | endif |
| 6217 | $(APPCOMPAT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,appcompat)/filelist |
| 6218 | $(APPCOMPAT_ZIP): $(SOONG_ZIP) |
| 6219 | @echo "appcompat logs: $@" |
| 6220 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 6221 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/appcompat $(dir $(PRIVATE_LIST_FILE)) |
| 6222 | $(hide) find $(PRODUCT_OUT)/appcompat | sort >$(PRIVATE_LIST_FILE) |
| 6223 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/appcompat -l $(PRIVATE_LIST_FILE) |
| 6224 | |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 6225 | # The mac build doesn't build dex2oat, so create the zip file only if the build OS is linux. |
| 6226 | ifeq ($(BUILD_OS),linux) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame] | 6227 | ifneq ($(DEX2OAT),) |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 6228 | dexpreopt_tools_deps := $(DEXPREOPT_GEN_DEPS) $(DEXPREOPT_GEN) $(AAPT2) |
Eric Miao | 1d0fd2c | 2021-11-08 19:34:50 +0000 | [diff] [blame] | 6229 | dexpreopt_tools_deps += $(HOST_OUT_EXECUTABLES)/dexdump |
| 6230 | dexpreopt_tools_deps += $(HOST_OUT_EXECUTABLES)/oatdump |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 6231 | DEXPREOPT_TOOLS_ZIP := $(PRODUCT_OUT)/dexpreopt_tools.zip |
| 6232 | $(DEXPREOPT_TOOLS_ZIP): $(dexpreopt_tools_deps) |
| 6233 | $(DEXPREOPT_TOOLS_ZIP): PRIVATE_DEXPREOPT_TOOLS_DEPS := $(dexpreopt_tools_deps) |
| 6234 | $(DEXPREOPT_TOOLS_ZIP): $(SOONG_ZIP) |
| 6235 | $(hide) mkdir -p $(dir $@) |
| 6236 | $(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] | 6237 | $(call declare-1p-target,$(DEXPREOPT_TOOLS_ZIP),) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame] | 6238 | endif # DEX2OAT is set |
| 6239 | endif # BUILD_OS == linux |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 6240 | |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6241 | DEXPREOPT_CONFIG_ZIP := $(PRODUCT_OUT)/dexpreopt_config.zip |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6242 | |
| 6243 | $(DEXPREOPT_CONFIG_ZIP): $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6244 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 6245 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 6246 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 6247 | |
| 6248 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6249 | $(DEXPREOPT_CONFIG_ZIP): $(DEX_PREOPT_CONFIG_FOR_MAKE) \ |
| 6250 | $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) \ |
| 6251 | |
| 6252 | endif |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6253 | |
| 6254 | $(DEXPREOPT_CONFIG_ZIP): $(SOONG_ZIP) |
| 6255 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6256 | |
| 6257 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 6258 | ifneq (,$(DEX_PREOPT_CONFIG_FOR_MAKE)) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6259 | $(hide) cp $(DEX_PREOPT_CONFIG_FOR_MAKE) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 6260 | endif |
| 6261 | ifneq (,$(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE)) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6262 | $(hide) cp $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 6263 | endif |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6264 | endif #!TARGET_BUILD_UNBUNDLED |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6265 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/dexpreopt_config -D $(PRODUCT_OUT)/dexpreopt_config |
| 6266 | |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6267 | .PHONY: dexpreopt_config_zip |
| 6268 | dexpreopt_config_zip: $(DEXPREOPT_CONFIG_ZIP) |
| 6269 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6270 | $(call declare-1p-target,$(DEXPREOPT_CONFIG_ZIP),) |
| 6271 | |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 6272 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6273 | # A zip of the symbols directory. Keep the full paths to make it |
| 6274 | # more obvious where these files came from. |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6275 | # Also produces a textproto containing mappings from elf IDs to symbols |
| 6276 | # filename, which will allow finding the appropriate symbols to deobfuscate |
| 6277 | # a stack trace frame. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6278 | # |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6279 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6280 | name := $(TARGET_PRODUCT) |
| 6281 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6282 | name := $(name)_debug |
| 6283 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6284 | |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6285 | # The path to the zip file containing binaries with symbols. |
| 6286 | SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name)-symbols-$(FILE_NAME_TAG).zip |
| 6287 | # The path to a file containing mappings from elf IDs to filenames. |
| 6288 | SYMBOLS_MAPPING := $(PRODUCT_OUT)/$(name)-symbols-mapping-$(FILE_NAME_TAG).textproto |
| 6289 | .KATI_READONLY := SYMBOLS_ZIP SYMBOLS_MAPPING |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 6290 | # 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] | 6291 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 6292 | $(SYMBOLS_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Ying Wang | da3b972 | 2014-10-24 11:36:59 -0700 | [diff] [blame] | 6293 | endif |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 6294 | $(SYMBOLS_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,symbols)/filelist |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6295 | $(SYMBOLS_ZIP): PRIVATE_MAPPING_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,elf_symbol_mapping) |
| 6296 | $(SYMBOLS_ZIP): $(SOONG_ZIP) $(SYMBOLS_MAP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6297 | @echo "Package symbols: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 6298 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6299 | $(hide) mkdir -p $(TARGET_OUT_UNSTRIPPED) $(dir $(PRIVATE_LIST_FILE)) $(PRIVATE_MAPPING_PACKAGING_DIR) |
| 6300 | # 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] | 6301 | $(hide) find -L $(TARGET_OUT_UNSTRIPPED) -type f | sort >$(PRIVATE_LIST_FILE) |
Colin Cross | 8d34244 | 2019-05-07 11:47:13 -0700 | [diff] [blame] | 6302 | $(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] | 6303 | # Find all of the files in the symbols mapping directory and merge them into the symbols mapping textproto. |
| 6304 | $(hide) find -L $(PRIVATE_MAPPING_PACKAGING_DIR) -type f | sort >$(PRIVATE_LIST_FILE) |
| 6305 | $(hide) $(SYMBOLS_MAP) -merge $(SYMBOLS_MAPPING) -ignore_missing_files @$(PRIVATE_LIST_FILE) |
| 6306 | $(SYMBOLS_ZIP): .KATI_IMPLICIT_OUTPUTS := $(SYMBOLS_MAPPING) |
| 6307 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6308 | $(call declare-1p-container,$(SYMBOLS_ZIP),) |
| 6309 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6310 | $(call declare-container-license-deps,$(SYMBOLS_ZIP),$(INTERNAL_ALLIMAGES_FILES) $(updater_dep),$(PRODUCT_OUT)/:/) |
| 6311 | endif |
| 6312 | |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6313 | # ----------------------------------------------------------------- |
| 6314 | # A zip of the coverage directory. |
| 6315 | # |
Oliver Nguyen | e91ab23 | 2019-04-30 15:14:44 -0700 | [diff] [blame] | 6316 | name := gcov-report-files-all |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6317 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6318 | name := $(name)_debug |
| 6319 | endif |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6320 | COVERAGE_ZIP := $(PRODUCT_OUT)/$(name).zip |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 6321 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 6322 | $(COVERAGE_ZIP): $(INTERNAL_ALLIMAGES_FILES) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6323 | endif |
| 6324 | $(COVERAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,coverage)/filelist |
| 6325 | $(COVERAGE_ZIP): $(SOONG_ZIP) |
| 6326 | @echo "Package coverage: $@" |
| 6327 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 6328 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_COVERAGE) $(dir $(PRIVATE_LIST_FILE)) |
| 6329 | $(hide) find $(TARGET_OUT_COVERAGE) | sort >$(PRIVATE_LIST_FILE) |
| 6330 | $(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] | 6331 | |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 6332 | $(call declare-1p-container,$(COVERAGE_ZIP),) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6333 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 6334 | $(call declare-container-license-deps,$(COVERAGE_ZIP),$(INTERNAL_ALLIMAGE_FILES),$(PRODUCT_OUT)/:/) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6335 | endif |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 6336 | |
| 6337 | SYSTEM_NOTICE_DEPS += $(COVERAGE_ZIP) |
| 6338 | |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 6339 | #------------------------------------------------------------------ |
| 6340 | # Export the LLVM profile data tool and dependencies for Clang coverage processing |
| 6341 | # |
| 6342 | ifeq (true,$(CLANG_COVERAGE)) |
| 6343 | 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] | 6344 | LLVM_COV := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/bin/llvm-cov |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 6345 | LIBCXX := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/lib64/libc++.so.1 |
Pirama Arumuga Nainar | 4e3d633 | 2022-03-08 22:28:33 -0800 | [diff] [blame] | 6346 | # Use llvm-profdata.zip for backwards compatibility with tradefed code. |
| 6347 | LLVM_COVERAGE_TOOLS_ZIP := $(PRODUCT_OUT)/llvm-profdata.zip |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 6348 | |
Pirama Arumuga Nainar | 4e3d633 | 2022-03-08 22:28:33 -0800 | [diff] [blame] | 6349 | $(LLVM_COVERAGE_TOOLS_ZIP): $(SOONG_ZIP) |
| 6350 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION) -f $(LLVM_PROFDATA) -f $(LIBCXX) -f $(LLVM_COV) |
| 6351 | |
| 6352 | $(call dist-for-goals,droidcore-unbundled apps_only,$(LLVM_COVERAGE_TOOLS_ZIP)) |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 6353 | endif |
| 6354 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6355 | # ----------------------------------------------------------------- |
| 6356 | # A zip of the Android Apps. Not keeping full path so that we don't |
| 6357 | # include product names when distributing |
| 6358 | # |
| 6359 | name := $(TARGET_PRODUCT) |
| 6360 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6361 | name := $(name)_debug |
| 6362 | endif |
| 6363 | name := $(name)-apps-$(FILE_NAME_TAG) |
| 6364 | |
| 6365 | APPS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 6366 | $(APPS_ZIP): $(FULL_SYSTEMIMAGE_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6367 | @echo "Package apps: $@" |
| 6368 | $(hide) rm -rf $@ |
| 6369 | $(hide) mkdir -p $(dir $@) |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 6370 | $(hide) apps_to_zip=`find $(TARGET_OUT_APPS) $(TARGET_OUT_APPS_PRIVILEGED) -mindepth 2 -maxdepth 3 -name "*.apk"`; \ |
| 6371 | if [ -z "$$apps_to_zip" ]; then \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6372 | echo "No apps to zip up. Generating empty apps archive." ; \ |
| 6373 | a=$$(mktemp /tmp/XXXXXXX) && touch $$a && zip $@ $$a && zip -d $@ $$a; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 6374 | else \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6375 | zip -qjX $@ $$apps_to_zip; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 6376 | fi |
Guang Zhu | 0198d6e | 2010-04-23 11:54:37 -0700 | [diff] [blame] | 6377 | |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 6378 | ifeq (true,$(EMMA_INSTRUMENT)) |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 6379 | #------------------------------------------------------------------ |
| 6380 | # An archive of classes for use in generating code-coverage reports |
| 6381 | # These are the uninstrumented versions of any classes that were |
| 6382 | # to be instrumented. |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 6383 | # Any dependencies are set up later in build/make/core/main.mk. |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 6384 | |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 6385 | JACOCO_REPORT_CLASSES_ALL := $(PRODUCT_OUT)/jacoco-report-classes-all.jar |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6386 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco) |
| 6387 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_HOST_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco,HOST) |
| 6388 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_PROGUARD_USAGE_DIR := $(call intermediates-dir-for,PACKAGING,proguard_usage) |
| 6389 | $(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] | 6390 | $(JACOCO_REPORT_CLASSES_ALL) : |
| 6391 | @echo "Collecting uninstrumented classes" |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6392 | mkdir -p $(PRIVATE_TARGET_JACOCO_DIR) $(PRIVATE_HOST_JACOCO_DIR) $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) $(PRIVATE_HOST_PROGUARD_USAGE_DIR) |
| 6393 | $(SOONG_ZIP) -o $@ -L 0 \ |
| 6394 | -C $(PRIVATE_TARGET_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_JACOCO_DIR) \ |
| 6395 | -C $(PRIVATE_HOST_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_HOST_JACOCO_DIR) \ |
| 6396 | -C $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) \ |
| 6397 | -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] | 6398 | |
Jiyong Park | 3c87560 | 2021-01-21 12:46:56 +0900 | [diff] [blame] | 6399 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6400 | $(JACOCO_REPORT_CLASSES_ALL): $(INTERNAL_ALLIMAGES_FILES) |
| 6401 | endif |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 6402 | endif # EMMA_INSTRUMENT=true |
| 6403 | |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 6404 | |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6405 | #------------------------------------------------------------------ |
| 6406 | # A zip of Proguard obfuscation dictionary files. |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6407 | # Also produces a textproto containing mappings from the hashes of the |
| 6408 | # dictionary contents (which are also stored in the dex files on the |
| 6409 | # devices) to the filename of the proguard dictionary, which will allow |
| 6410 | # finding the appropriate dictionary to deobfuscate a stack trace frame. |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6411 | # |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6412 | |
| 6413 | # The path to the zip file containing proguard dictionaries. |
Ying Wang | c62c92c | 2013-08-28 18:38:25 -0700 | [diff] [blame] | 6414 | PROGUARD_DICT_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict-$(FILE_NAME_TAG).zip |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6415 | # The path to the zip file containing mappings from dictionary hashes to filenames. |
| 6416 | PROGUARD_DICT_MAPPING := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict-mapping-$(FILE_NAME_TAG).textproto |
| 6417 | .KATI_READONLY := PROGUARD_DICT_ZIP PROGUARD_DICT_MAPPING |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 6418 | # 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] | 6419 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 6420 | $(PROGUARD_DICT_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 6421 | endif |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6422 | $(PROGUARD_DICT_ZIP): PRIVATE_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,proguard_dictionary) |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6423 | $(PROGUARD_DICT_ZIP): PRIVATE_MAPPING_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,proguard_dictionary_mapping) |
| 6424 | $(PROGUARD_DICT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard_dictionary_filelist)/filelist |
| 6425 | $(PROGUARD_DICT_ZIP): $(SOONG_ZIP) $(SYMBOLS_MAP) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6426 | @echo "Packaging Proguard obfuscation dictionary files." |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6427 | rm -rf $@ $(PRIVATE_LIST_FILE) |
| 6428 | mkdir -p $(PRIVATE_PACKAGING_DIR) $(PRIVATE_MAPPING_PACKAGING_DIR) $(dir $(PRIVATE_LIST_FILE)) |
| 6429 | # Zip all of the files in the proguard dictionary directory. |
| 6430 | $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(PRIVATE_PACKAGING_DIR) -D $(PRIVATE_PACKAGING_DIR) |
| 6431 | # Find all of the files in the proguard dictionary mapping directory and merge them into the mapping textproto. |
| 6432 | # Strip the PRIVATE_PACKAGING_DIR off the filenames to match soong_zip's -C argument. |
| 6433 | $(hide) find -L $(PRIVATE_MAPPING_PACKAGING_DIR) -type f | sort >$(PRIVATE_LIST_FILE) |
| 6434 | $(SYMBOLS_MAP) -merge $(PROGUARD_DICT_MAPPING) -strip_prefix $(PRIVATE_PACKAGING_DIR)/ -ignore_missing_files @$(PRIVATE_LIST_FILE) |
| 6435 | $(PROGUARD_DICT_ZIP): .KATI_IMPLICIT_OUTPUTS := $(PROGUARD_DICT_MAPPING) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6436 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6437 | $(call declare-1p-container,$(PROGUARD_DICT_ZIP),) |
| 6438 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6439 | $(call declare-container-license-deps,$(PROGUARD_DICT_ZIP),$(INTERNAL_ALLIMAGES_FILES) $(updater_dep),$(PRODUCT_OUT)/:/) |
| 6440 | endif |
| 6441 | |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6442 | #------------------------------------------------------------------ |
| 6443 | # A zip of Proguard usage files. |
| 6444 | # |
| 6445 | PROGUARD_USAGE_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-usage-$(FILE_NAME_TAG).zip |
| 6446 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
| 6447 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6448 | $(PROGUARD_USAGE_ZIP): \ |
| 6449 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6450 | $(INSTALLED_RAMDISK_TARGET) \ |
| 6451 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6452 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6453 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 6454 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 6455 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 6456 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 6457 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 6458 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
| 6459 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6460 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6461 | $(updater_dep) |
| 6462 | endif |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6463 | $(PROGUARD_USAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard_usage.zip)/filelist |
| 6464 | $(PROGUARD_USAGE_ZIP): PRIVATE_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,proguard_usage) |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6465 | $(PROGUARD_USAGE_ZIP): $(MERGE_ZIPS) |
| 6466 | @echo "Packaging Proguard usage files." |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6467 | mkdir -p $(dir $@) $(PRIVATE_PACKAGING_DIR) $(dir $(PRIVATE_LIST_FILE)) |
| 6468 | find $(PRIVATE_PACKAGING_DIR) -name proguard_usage.zip > $(PRIVATE_LIST_FILE) |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6469 | $(MERGE_ZIPS) $@ @$(PRIVATE_LIST_FILE) |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 6470 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6471 | $(call declare-1p-container,$(PROGUARD_USAGE_ZIP),) |
| 6472 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6473 | $(call declare-container-license-deps,$(PROGUARD_USAGE_ZIP),$(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6474 | $(INSTALLED_RAMDISK_TARGET) \ |
| 6475 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 6476 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
| 6477 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 6478 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 6479 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 6480 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 6481 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 6482 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
| 6483 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
| 6484 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
| 6485 | $(updater_dep),$(PROGUARD_USAGE_ZIP):/) |
| 6486 | endif |
| 6487 | |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 6488 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 6489 | |
| 6490 | # Dump variables used by build_super_image.py (for building super.img and super_empty.img). |
| 6491 | # $(1): output file |
| 6492 | define dump-super-image-info |
| 6493 | $(call dump-dynamic-partitions-info,$(1)) |
| 6494 | $(if $(filter true,$(AB_OTA_UPDATER)), \ |
| 6495 | echo "ab_update=true" >> $(1)) |
| 6496 | endef |
| 6497 | |
| 6498 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
| 6499 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6500 | # ----------------------------------------------------------------- |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6501 | # super partition image (dist) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6502 | |
| 6503 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 6504 | |
| 6505 | # BOARD_SUPER_PARTITION_SIZE must be defined to build super image. |
| 6506 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 6507 | |
| 6508 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6509 | |
| 6510 | # For real devices and for dist builds, build super image from target files to an intermediate directory. |
| 6511 | INTERNAL_SUPERIMAGE_DIST_TARGET := $(call intermediates-dir-for,PACKAGING,super.img)/super.img |
| 6512 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): extracted_input_target_files := $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) |
| 6513 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): $(LPMAKE) $(BUILT_TARGET_FILES_PACKAGE) $(BUILD_SUPER_IMAGE) |
| 6514 | $(call pretty,"Target super fs image from target files: $@") |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 6515 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 6516 | $(BUILD_SUPER_IMAGE) -v $(extracted_input_target_files) $@ |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 6517 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6518 | # Skip packing it in dist package because it is in update package. |
| 6519 | ifneq (true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6520 | $(call dist-for-goals,dist_files,$(INTERNAL_SUPERIMAGE_DIST_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6521 | endif |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6522 | |
| 6523 | .PHONY: superimage_dist |
| 6524 | superimage_dist: $(INTERNAL_SUPERIMAGE_DIST_TARGET) |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 6525 | |
| 6526 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6527 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 6528 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6529 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6530 | # ----------------------------------------------------------------- |
| 6531 | # super partition image for development |
| 6532 | |
| 6533 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 6534 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 6535 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
| 6536 | |
| 6537 | # Build super.img by using $(INSTALLED_*IMAGE_TARGET) to $(1) |
| 6538 | # $(1): built image path |
| 6539 | # $(2): misc_info.txt path; its contents should match expectation of build_super_image.py |
| 6540 | define build-superimage-target |
| 6541 | mkdir -p $(dir $(2)) |
| 6542 | rm -rf $(2) |
| 6543 | $(call dump-super-image-info,$(2)) |
| 6544 | $(foreach p,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 6545 | echo "$(p)_image=$(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)" >> $(2);) |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 6546 | $(if $(BUILDING_SYSTEM_OTHER_IMAGE), $(if $(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)), \ |
| 6547 | echo "system_other_image=$(INSTALLED_SYSTEMOTHERIMAGE_TARGET)" >> $(2);)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6548 | mkdir -p $(dir $(1)) |
| 6549 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 6550 | $(BUILD_SUPER_IMAGE) -v $(2) $(1) |
| 6551 | endef |
| 6552 | |
| 6553 | INSTALLED_SUPERIMAGE_TARGET := $(PRODUCT_OUT)/super.img |
| 6554 | INSTALLED_SUPERIMAGE_DEPENDENCIES := $(LPMAKE) $(BUILD_SUPER_IMAGE) \ |
| 6555 | $(foreach p, $(BOARD_SUPER_PARTITION_PARTITION_LIST), $(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)) |
| 6556 | |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 6557 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 6558 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
| 6559 | INSTALLED_SUPERIMAGE_DEPENDENCIES += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
| 6560 | endif |
| 6561 | endif |
| 6562 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6563 | $(INSTALLED_SUPERIMAGE_TARGET): $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 6564 | $(call pretty,"Target super fs image for debug: $@") |
| 6565 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 6566 | $(call intermediates-dir-for,PACKAGING,superimage_debug)/misc_info.txt) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6567 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6568 | # For devices that uses super image directly, the superimage target points to the file in $(PRODUCT_OUT). |
| 6569 | .PHONY: superimage |
| 6570 | superimage: $(INSTALLED_SUPERIMAGE_TARGET) |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 6571 | |
Peter Collingbourne | 683c493 | 2022-07-06 15:49:20 -0700 | [diff] [blame] | 6572 | # If BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT is set, super.img is built from images in the |
| 6573 | # $(PRODUCT_OUT) directory, and is built to $(PRODUCT_OUT)/super.img. Also, it will |
| 6574 | # be built for non-dist builds. This is useful for devices that uses super.img directly, e.g. |
| 6575 | # virtual devices. |
| 6576 | ifeq (true,$(BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT)) |
| 6577 | droidcore-unbundled: $(INSTALLED_SUPERIMAGE_TARGET) |
| 6578 | |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 6579 | $(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] | 6580 | endif # BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT |
| 6581 | |
| 6582 | # Build $(PRODUCT_OUT)/super.img without dependencies. |
| 6583 | .PHONY: superimage-nodeps supernod |
| 6584 | superimage-nodeps supernod: intermediates := |
| 6585 | superimage-nodeps supernod: | $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 6586 | $(call pretty,"make $(INSTALLED_SUPERIMAGE_TARGET): ignoring dependencies") |
| 6587 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
| 6588 | $(call intermediates-dir-for,PACKAGING,superimage-nodeps)/misc_info.txt) |
| 6589 | |
| 6590 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
| 6591 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 6592 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
| 6593 | |
| 6594 | # ----------------------------------------------------------------- |
| 6595 | # super empty image |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 6596 | ifdef BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6597 | |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 6598 | INSTALLED_SUPERIMAGE_EMPTY_TARGET := $(PRODUCT_OUT)/super_empty.img |
| 6599 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): intermediates := $(call intermediates-dir-for,PACKAGING,super_empty) |
| 6600 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): $(LPMAKE) $(BUILD_SUPER_IMAGE) |
| 6601 | $(call pretty,"Target empty super fs image: $@") |
| 6602 | mkdir -p $(intermediates) |
| 6603 | rm -rf $(intermediates)/misc_info.txt |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 6604 | $(call dump-super-image-info,$(intermediates)/misc_info.txt) |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 6605 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 6606 | $(BUILD_SUPER_IMAGE) -v $(intermediates)/misc_info.txt $@ |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 6607 | |
| 6608 | $(call dist-for-goals,dist_files,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 6609 | |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 6610 | $(call declare-0p-target,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 6611 | |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 6612 | endif # BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6613 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6614 | |
| 6615 | # ----------------------------------------------------------------- |
| 6616 | # The update package |
| 6617 | |
| 6618 | name := $(TARGET_PRODUCT) |
| 6619 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6620 | name := $(name)_debug |
| 6621 | endif |
| 6622 | name := $(name)-img-$(FILE_NAME_TAG) |
| 6623 | |
| 6624 | INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 6625 | |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 6626 | $(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES) |
| 6627 | $(call pretty,"Package: $@") |
| 6628 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
| 6629 | $(IMG_FROM_TARGET_FILES) \ |
| 6630 | --additional IMAGES/VerifiedBootParams.textproto:VerifiedBootParams.textproto \ |
| 6631 | $(BUILT_TARGET_FILES_PACKAGE) $@ |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6632 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6633 | $(call declare-1p-container,$(INTERNAL_UPDATE_PACKAGE_TARGET),) |
| 6634 | $(call declare-container-license-deps,$(INTERNAL_UPDATE_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES),$(PRODUCT_OUT)/:/) |
| 6635 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6636 | .PHONY: updatepackage |
| 6637 | updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET) |
Dan Willemsen | 9ae6495 | 2019-08-05 14:45:11 -0700 | [diff] [blame] | 6638 | $(call dist-for-goals,updatepackage,$(INTERNAL_UPDATE_PACKAGE_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6639 | |
| 6640 | |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6641 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6642 | # dalvik something |
| 6643 | .PHONY: dalvikfiles |
| 6644 | dalvikfiles: $(INTERNAL_DALVIK_MODULES) |
| 6645 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6646 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6647 | MK_QEMU_IMAGE_SH := device/generic/goldfish/tools/mk_qemu_image.sh |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6648 | MK_COMBINE_QEMU_IMAGE := $(HOST_OUT_EXECUTABLES)/mk_combined_img |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6649 | SGDISK_HOST := $(HOST_OUT_EXECUTABLES)/sgdisk |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 6650 | |
| 6651 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
| 6652 | INSTALLED_QEMU_SYSTEMIMAGE := $(PRODUCT_OUT)/system-qemu.img |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6653 | INSTALLED_SYSTEM_QEMU_CONFIG := $(PRODUCT_OUT)/system-qemu-config.txt |
| 6654 | $(INSTALLED_SYSTEM_QEMU_CONFIG): $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_VBMETAIMAGE_TARGET) |
| 6655 | @echo "$(PRODUCT_OUT)/vbmeta.img vbmeta 1" > $@ |
| 6656 | @echo "$(INSTALLED_SUPERIMAGE_TARGET) super 2" >> $@ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6657 | $(INSTALLED_QEMU_SYSTEMIMAGE): $(INSTALLED_VBMETAIMAGE_TARGET) $(MK_COMBINE_QEMU_IMAGE) $(SGDISK_HOST) $(SIMG2IMG) \ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6658 | $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_SYSTEM_QEMU_CONFIG) |
| 6659 | @echo Create system-qemu.img now |
| 6660 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6661 | $(MK_COMBINE_QEMU_IMAGE) -i $(INSTALLED_SYSTEM_QEMU_CONFIG) -o $@) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6662 | |
| 6663 | systemimage: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6664 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 6665 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 6666 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6667 | INSTALLED_QEMU_VENDORIMAGE := $(PRODUCT_OUT)/vendor-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 6668 | $(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] | 6669 | @echo Create vendor-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 6670 | (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] | 6671 | |
| 6672 | vendorimage: $(INSTALLED_QEMU_VENDORIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6673 | droidcore-unbundled: $(INSTALLED_QEMU_VENDORIMAGE) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6674 | endif |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 6675 | |
| 6676 | ifdef INSTALLED_RAMDISK_TARGET |
| 6677 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 6678 | ifdef INTERNAL_VENDOR_RAMDISK_TARGET |
| 6679 | INSTALLED_QEMU_RAMDISKIMAGE := $(PRODUCT_OUT)/ramdisk-qemu.img |
| 6680 | $(INSTALLED_QEMU_RAMDISKIMAGE): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_RAMDISK_TARGET) |
| 6681 | @echo Create ramdisk-qemu.img |
| 6682 | (cat $(INSTALLED_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_TARGET) > $(INSTALLED_QEMU_RAMDISKIMAGE)) |
| 6683 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6684 | droidcore-unbundled: $(INSTALLED_QEMU_RAMDISKIMAGE) |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 6685 | endif |
| 6686 | endif |
| 6687 | endif |
| 6688 | |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 6689 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6690 | INSTALLED_QEMU_PRODUCTIMAGE := $(PRODUCT_OUT)/product-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 6691 | $(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] | 6692 | @echo Create product-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 6693 | (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] | 6694 | |
| 6695 | productimage: $(INSTALLED_QEMU_PRODUCTIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6696 | droidcore-unbundled: $(INSTALLED_QEMU_PRODUCTIMAGE) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6697 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6698 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 6699 | INSTALLED_QEMU_SYSTEM_EXTIMAGE := $(PRODUCT_OUT)/system_ext-qemu.img |
| 6700 | $(INSTALLED_QEMU_SYSTEM_EXTIMAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) $(SIMG2IMG) |
| 6701 | @echo Create system_ext-qemu.img |
| 6702 | (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] | 6703 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6704 | systemextimage: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6705 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6706 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 6707 | ifdef INSTALLED_ODMIMAGE_TARGET |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6708 | INSTALLED_QEMU_ODMIMAGE := $(PRODUCT_OUT)/odm-qemu.img |
| 6709 | $(INSTALLED_QEMU_ODMIMAGE): $(INSTALLED_ODMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 6710 | @echo Create odm-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 6711 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODMIMAGE_TARGET)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6712 | |
| 6713 | odmimage: $(INSTALLED_QEMU_ODMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6714 | droidcore-unbundled: $(INSTALLED_QEMU_ODMIMAGE) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6715 | endif |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6716 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6717 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 6718 | INSTALLED_QEMU_VENDOR_DLKMIMAGE := $(PRODUCT_OUT)/vendor_dlkm-qemu.img |
| 6719 | $(INSTALLED_QEMU_VENDOR_DLKMIMAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 6720 | @echo Create vendor_dlkm-qemu.img |
| 6721 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)) |
| 6722 | |
| 6723 | vendor_dlkmimage: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6724 | droidcore-unbundled: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6725 | endif |
| 6726 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6727 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 6728 | INSTALLED_QEMU_ODM_DLKMIMAGE := $(PRODUCT_OUT)/odm_dlkm-qemu.img |
| 6729 | $(INSTALLED_QEMU_ODM_DLKMIMAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 6730 | @echo Create odm_dlkm-qemu.img |
| 6731 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODM_DLKMIMAGE_TARGET)) |
| 6732 | |
| 6733 | odm_dlkmimage: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6734 | droidcore-unbundled: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6735 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6736 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6737 | ifdef INSTALLED_SYSTEM_DLKMIMAGE_TARGET |
| 6738 | INSTALLED_QEMU_SYSTEM_DLKMIMAGE := $(PRODUCT_OUT)/system_dlkm-qemu.img |
| 6739 | $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE): $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 6740 | @echo Create system_dlkm-qemu.img |
| 6741 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET)) |
| 6742 | |
| 6743 | system_dlkmimage: $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE) |
| 6744 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE) |
| 6745 | endif |
| 6746 | |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6747 | QEMU_VERIFIED_BOOT_PARAMS := $(PRODUCT_OUT)/VerifiedBootParams.textproto |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6748 | $(QEMU_VERIFIED_BOOT_PARAMS): $(INSTALLED_VBMETAIMAGE_TARGET) $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6749 | $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(AVBTOOL) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6750 | @echo Creating $@ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6751 | (export AVBTOOL=$(AVBTOOL); $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(INSTALLED_VBMETAIMAGE_TARGET) \ |
| 6752 | $(INSTALLED_SYSTEMIMAGE_TARGET) $(QEMU_VERIFIED_BOOT_PARAMS)) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6753 | |
| 6754 | systemimage: $(QEMU_VERIFIED_BOOT_PARAMS) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6755 | droidcore-unbundled: $(QEMU_VERIFIED_BOOT_PARAMS) |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6756 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6757 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6758 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6759 | # The emulator package |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 6760 | ifeq ($(BUILD_EMULATOR),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6761 | INTERNAL_EMULATOR_PACKAGE_FILES += \ |
| 6762 | $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6763 | $(INSTALLED_RAMDISK_TARGET) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 6764 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6765 | $(INSTALLED_USERDATAIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6766 | |
| 6767 | name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG) |
| 6768 | |
| 6769 | INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 6770 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 6771 | $(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6772 | @echo "Package: $@" |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 6773 | $(hide) zip -qjX $@ $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6774 | |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 6775 | endif |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 6776 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6777 | |
| 6778 | # ----------------------------------------------------------------- |
| 6779 | # The SDK |
| 6780 | |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6781 | ifneq ($(filter sdk,$(MAKECMDGOALS)),) |
| 6782 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6783 | # The SDK includes host-specific components, so it belongs under HOST_OUT. |
Ying Wang | d7af176 | 2014-06-02 16:16:53 -0700 | [diff] [blame] | 6784 | sdk_dir := $(HOST_OUT)/sdk/$(TARGET_PRODUCT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6785 | |
| 6786 | # Build a name that looks like: |
| 6787 | # |
| 6788 | # linux-x86 --> android-sdk_12345_linux-x86 |
| 6789 | # darwin-x86 --> android-sdk_12345_mac-x86 |
| 6790 | # windows-x86 --> android-sdk_12345_windows |
| 6791 | # |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6792 | ifneq ($(HOST_OS),linux) |
| 6793 | $(error Building the monolithic SDK is only supported on Linux) |
| 6794 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6795 | sdk_name := android-sdk_$(FILE_NAME_TAG) |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6796 | INTERNAL_SDK_HOST_OS_NAME := linux-$(SDK_HOST_ARCH) |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 6797 | sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6798 | |
| 6799 | sdk_dep_file := $(sdk_dir)/sdk_deps.mk |
| 6800 | |
| 6801 | ATREE_FILES := |
| 6802 | -include $(sdk_dep_file) |
| 6803 | |
| 6804 | # if we don't have a real list, then use "everything" |
| 6805 | ifeq ($(strip $(ATREE_FILES)),) |
| 6806 | ATREE_FILES := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6807 | $(ALL_DOCS) \ |
| 6808 | $(ALL_SDK_FILES) |
| 6809 | endif |
| 6810 | |
| 6811 | atree_dir := development/build |
| 6812 | |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 6813 | |
Dan Willemsen | 53c98f7 | 2021-10-16 16:49:06 -0700 | [diff] [blame] | 6814 | sdk_atree_files := $(atree_dir)/sdk.exclude.atree |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6815 | |
David 'Digit' Turner | 77ec16a | 2011-06-23 12:49:02 +0200 | [diff] [blame] | 6816 | # development/build/sdk-android-<abi>.atree is used to differentiate |
| 6817 | # between architecture models (e.g. ARMv5TE versus ARMv7) when copying |
| 6818 | # files like the kernel image. We use TARGET_CPU_ABI because we don't |
| 6819 | # have a better way to distinguish between CPU models. |
| 6820 | ifneq (,$(strip $(wildcard $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree))) |
| 6821 | sdk_atree_files += $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree |
| 6822 | endif |
| 6823 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6824 | ifneq ($(PRODUCT_SDK_ATREE_FILES),) |
| 6825 | sdk_atree_files += $(PRODUCT_SDK_ATREE_FILES) |
Griff Hazen | 433febb | 2014-02-28 08:45:59 -0800 | [diff] [blame] | 6826 | else |
| 6827 | sdk_atree_files += $(atree_dir)/sdk.atree |
| 6828 | endif |
| 6829 | |
Deepanshu Gupta | 7a864ea | 2014-08-11 15:20:02 -0700 | [diff] [blame] | 6830 | include $(BUILD_SYSTEM)/sdk_font.mk |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 6831 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6832 | deps := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6833 | $(OUT_DOCS)/offline-sdk-timestamp \ |
Jerome Gaillard | a0171af | 2019-10-10 19:35:08 +0100 | [diff] [blame] | 6834 | $(SDK_METADATA_FILES) \ |
Anton Hansson | 55a8f02 | 2022-05-12 08:45:29 +0000 | [diff] [blame] | 6835 | $(INSTALLED_SDK_BUILD_PROP_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6836 | $(ATREE_FILES) \ |
Ying Wang | 0c0a4ce | 2014-02-18 14:29:59 -0800 | [diff] [blame] | 6837 | $(sdk_atree_files) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6838 | $(HOST_OUT_EXECUTABLES)/atree \ |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 6839 | $(HOST_OUT_EXECUTABLES)/line_endings \ |
Deepanshu Gupta | 7a864ea | 2014-08-11 15:20:02 -0700 | [diff] [blame] | 6840 | $(SDK_FONT_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6841 | |
| 6842 | INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip |
| 6843 | $(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name) |
| 6844 | $(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name) |
| 6845 | $(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file) |
| 6846 | $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files) |
| 6847 | |
| 6848 | # Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built. |
| 6849 | # |
| 6850 | #SDK_GNU_ERROR := true |
| 6851 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 6852 | $(INTERNAL_SDK_TARGET): $(deps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6853 | @echo "Package SDK: $@" |
| 6854 | $(hide) rm -rf $(PRIVATE_DIR) $@ |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 6855 | $(hide) for f in $(strip $(target_gnu_MODULES)); do \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6856 | if [ -f $$f ]; then \ |
| 6857 | echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \ |
| 6858 | including GNU target $$f >&2; \ |
| 6859 | FAIL=$(SDK_GNU_ERROR); \ |
| 6860 | fi; \ |
| 6861 | done; \ |
| 6862 | if [ $$FAIL ]; then exit 1; fi |
Deepanshu Gupta | 88a307e | 2014-08-12 10:23:58 -0700 | [diff] [blame] | 6863 | $(hide) echo $(notdir $(SDK_FONT_DEPS)) | tr " " "\n" > $(SDK_FONT_TEMP)/fontsInSdk.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6864 | $(hide) ( \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6865 | ATREE_STRIP="$(HOST_STRIP) -x" \ |
| 6866 | $(HOST_OUT_EXECUTABLES)/atree \ |
| 6867 | $(addprefix -f ,$(PRIVATE_INPUT_FILES)) \ |
| 6868 | -m $(PRIVATE_DEP_FILE) \ |
| 6869 | -I . \ |
| 6870 | -I $(PRODUCT_OUT) \ |
| 6871 | -I $(HOST_OUT) \ |
| 6872 | -I $(TARGET_COMMON_OUT_ROOT) \ |
| 6873 | -v "PLATFORM_NAME=android-$(PLATFORM_VERSION)" \ |
| 6874 | -v "OUT_DIR=$(OUT_DIR)" \ |
| 6875 | -v "HOST_OUT=$(HOST_OUT)" \ |
| 6876 | -v "TARGET_ARCH=$(TARGET_ARCH)" \ |
| 6877 | -v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \ |
| 6878 | -v "DLL_EXTENSION=$(HOST_SHLIB_SUFFIX)" \ |
| 6879 | -v "FONT_OUT=$(SDK_FONT_TEMP)" \ |
| 6880 | -o $(PRIVATE_DIR) && \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6881 | HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \ |
| 6882 | development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \ |
| 6883 | chmod -R ug+rwX $(PRIVATE_DIR) && \ |
| 6884 | cd $(dir $@) && zip -rqX $(notdir $@) $(PRIVATE_NAME) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6885 | ) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 ) |
| 6886 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 6887 | MAIN_SDK_DIR := $(sdk_dir) |
| 6888 | MAIN_SDK_ZIP := $(INTERNAL_SDK_TARGET) |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6889 | |
| 6890 | endif # sdk in MAKECMDGOALS |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 6891 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6892 | # ----------------------------------------------------------------- |
| 6893 | # Findbugs |
| 6894 | INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml |
| 6895 | INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html |
| 6896 | $(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES) |
| 6897 | @echo UnionBugs: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 6898 | $(hide) $(FINDBUGS_DIR)/unionBugs $(ALL_FINDBUGS_FILES) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6899 | > $@ |
| 6900 | $(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET) |
| 6901 | @echo ConvertXmlToText: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 6902 | $(hide) $(FINDBUGS_DIR)/convertXmlToText -html:fancy.xsl \ |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 6903 | $(INTERNAL_FINDBUGS_XML_TARGET) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6904 | |
| 6905 | # ----------------------------------------------------------------- |
| 6906 | # Findbugs |
| 6907 | |
| 6908 | # ----------------------------------------------------------------- |
| 6909 | # These are some additional build tasks that need to be run. |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 6910 | ifneq ($(dont_bother),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6911 | include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk)) |
Claes Elgemark | e22ad67 | 2010-11-12 15:46:00 +0100 | [diff] [blame] | 6912 | -include $(sort $(wildcard vendor/*/build/tasks/*.mk)) |
Andrew Boie | f34a9ba | 2012-04-16 10:03:16 -0700 | [diff] [blame] | 6913 | -include $(sort $(wildcard device/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 6914 | -include $(sort $(wildcard product/*/build/tasks/*.mk)) |
Ying Wang | 66c78e4 | 2014-09-05 17:47:34 -0700 | [diff] [blame] | 6915 | # Also the project-specific tasks |
| 6916 | -include $(sort $(wildcard vendor/*/*/build/tasks/*.mk)) |
| 6917 | -include $(sort $(wildcard device/*/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 6918 | -include $(sort $(wildcard product/*/*/build/tasks/*.mk)) |
Guang Zhu | 8322be7 | 2016-06-20 22:03:24 -0700 | [diff] [blame] | 6919 | # Also add test specifc tasks |
| 6920 | include $(sort $(wildcard platform_testing/build/tasks/*.mk)) |
Keun Soo Yim | 199a710 | 2016-08-31 09:20:51 -0700 | [diff] [blame] | 6921 | include $(sort $(wildcard test/vts/tools/build/tasks/*.mk)) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 6922 | endif |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 6923 | |
Ying Wang | 67132ba | 2015-10-28 16:42:39 -0700 | [diff] [blame] | 6924 | include $(BUILD_SYSTEM)/product-graph.mk |
| 6925 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 6926 | # ----------------------------------------------------------------- |
| 6927 | # Create SDK repository packages. Must be done after tasks/* since |
| 6928 | # we need the addon rules defined. |
| 6929 | ifneq ($(sdk_repo_goal),) |
| 6930 | include $(TOPDIR)development/build/tools/sdk_repo.mk |
| 6931 | endif |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 6932 | |
| 6933 | # ----------------------------------------------------------------- |
Mitch Phillips | 3adbcb3 | 2019-10-17 19:24:46 -0700 | [diff] [blame] | 6934 | # Soong generates the list of all shared libraries that are depended on by fuzz |
| 6935 | # targets. It saves this list as a source:destination pair to |
| 6936 | # FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS, where the source is the path to the |
| 6937 | # build of the unstripped shared library, and the destination is the |
| 6938 | # /data/fuzz/$ARCH/lib (for device) or /fuzz/$ARCH/lib (for host) directory |
| 6939 | # where fuzz target shared libraries are to be "reinstalled". The |
| 6940 | # copy-many-files below generates the rules to copy the unstripped shared |
| 6941 | # libraries to the device or host "reinstallation" directory. These rules are |
| 6942 | # depended on by each module in soong_cc_prebuilt.mk, where the module will have |
| 6943 | # a dependency on each shared library that it needs to be "reinstalled". |
| 6944 | FUZZ_SHARED_DEPS := $(call copy-many-files,$(strip $(FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS))) |
Cory Barker | 91ee4f9 | 2022-06-07 20:14:00 +0000 | [diff] [blame] | 6945 | AFL_FUZZ_SHARED_DEPS := $(call copy-many-files,$(strip $(AFL_FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS))) |
Mitch Phillips | 3adbcb3 | 2019-10-17 19:24:46 -0700 | [diff] [blame] | 6946 | |
| 6947 | # ----------------------------------------------------------------- |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 6948 | # 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] | 6949 | # Note: The packages are created in Soong, and in a perfect world, |
| 6950 | # we'd be able to create the phony rule there. But, if we want to |
| 6951 | # have dist goals for the fuzz target, we need to have the PHONY |
| 6952 | # target defined in make. MakeVarsContext.DistForGoal doesn't take |
| 6953 | # into account that a PHONY rule create by Soong won't be available |
| 6954 | # during make, and such will fail with `writing to readonly |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 6955 | # directory`, because kati will see 'haiku' as being a file, not a |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 6956 | # phony target. |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 6957 | .PHONY: haiku |
| 6958 | haiku: $(SOONG_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_FUZZ_TARGETS) |
| 6959 | $(call dist-for-goals,haiku,$(SOONG_FUZZ_PACKAGING_ARCH_MODULES)) |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 6960 | |
Cory Barker | 91ee4f9 | 2022-06-07 20:14:00 +0000 | [diff] [blame] | 6961 | .PHONY: haiku-afl |
| 6962 | haiku-afl: $(SOONG_AFL_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_AFL_FUZZ_TARGETS) |
| 6963 | $(call dist-for-goals,haiku-afl,$(SOONG_AFL_FUZZ_PACKAGING_ARCH_MODULES)) |
| 6964 | |
Muhammad Haseeb Ahmad | cced136 | 2022-01-13 03:17:39 +0000 | [diff] [blame] | 6965 | .PHONY: haiku-java |
| 6966 | haiku-java: $(SOONG_JAVA_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_JAVA_FUZZ_TARGETS) |
| 6967 | $(call dist-for-goals,haiku-java,$(SOONG_JAVA_FUZZ_PACKAGING_ARCH_MODULES)) |
| 6968 | |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 6969 | .PHONY: haiku-rust |
| 6970 | haiku-rust: $(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_RUST_FUZZ_TARGETS) |
| 6971 | $(call dist-for-goals,haiku-rust,$(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES)) |
Bob Badour | 70c07dd | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 6972 | |
| 6973 | |
| 6974 | # ----------------------------------------------------------------- |
| 6975 | # OS Licensing |
| 6976 | |
| 6977 | include $(BUILD_SYSTEM)/os_licensing.mk |
| 6978 | |
| 6979 | # When appending new code to this file, please insert above OS Licensing |