The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # Put some miscellaneous rules here |
| 2 | |
Ying Wang | 3bbfddd | 2014-03-01 15:32:04 -0800 | [diff] [blame] | 3 | # HACK: clear LOCAL_PATH from including last build target before calling |
| 4 | # intermedites-dir-for |
| 5 | LOCAL_PATH := $(BUILD_SYSTEM) |
| 6 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7 | # ----------------------------------------------------------------- |
| 8 | # Define rules to copy PRODUCT_COPY_FILES defined by the product. |
Ying Wang | 4b0486b | 2012-09-20 16:35:36 -0700 | [diff] [blame] | 9 | # PRODUCT_COPY_FILES contains words like <source file>:<dest file>[:<owner>]. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 10 | # <dest file> is relative to $(PRODUCT_OUT), so it should look like, |
| 11 | # e.g., "system/etc/file.xml". |
Jean-Baptiste Queru | 518ce57 | 2010-03-01 16:18:59 -0800 | [diff] [blame] | 12 | # The filter part means "only eval the copy-one-file rule if this |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 13 | # src:dest pair is the first one to match the same dest" |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 14 | #$(1): the src:dest pair |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 15 | #$(2): the dest |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 16 | define check-product-copy-files |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 17 | $(if $(filter-out $(TARGET_COPY_OUT_SYSTEM_OTHER)/%,$(2)), \ |
| 18 | $(if $(filter %.apk, $(2)),$(error \ |
Yifan Hong | 5e57a77 | 2020-01-09 16:15:11 -0800 | [diff] [blame] | 19 | Prebuilt apk found in PRODUCT_COPY_FILES: $(1), use BUILD_PREBUILT instead!))) \ |
| 20 | $(if $(filter true,$(BUILD_BROKEN_VINTF_PRODUCT_COPY_FILES)),, \ |
| 21 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM)/etc/vintf/% \ |
| 22 | $(TARGET_COPY_OUT_SYSTEM)/manifest.xml \ |
| 23 | $(TARGET_COPY_OUT_SYSTEM)/compatibility_matrix.xml,$(2)), \ |
| 24 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), use vintf_fragments instead!)) \ |
| 25 | $(if $(filter $(TARGET_COPY_OUT_PRODUCT)/etc/vintf/%,$(2)), \ |
| 26 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 27 | use PRODUCT_MANIFEST_FILES / DEVICE_PRODUCT_COMPATIBILITY_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 28 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM_EXT)/etc/vintf/%,$(2)), \ |
| 29 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 30 | use vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 31 | $(if $(filter $(TARGET_COPY_OUT_VENDOR)/etc/vintf/% \ |
| 32 | $(TARGET_COPY_OUT_VENDOR)/manifest.xml \ |
| 33 | $(TARGET_COPY_OUT_VENDOR)/compatibility_matrix.xml,$(2)), \ |
| 34 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 35 | use DEVICE_MANIFEST_FILE / DEVICE_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 36 | $(if $(filter $(TARGET_COPY_OUT_ODM)/etc/vintf/% \ |
| 37 | $(TARGET_COPY_OUT_ODM)/etc/manifest%,$(2)), \ |
| 38 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 39 | use ODM_MANIFEST_FILES / vintf_fragments instead!)) \ |
| 40 | ) |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 41 | endef |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 42 | |
Yo Chiang | 336883a | 2020-05-14 17:17:29 +0800 | [diff] [blame] | 43 | # Phony target to check PRODUCT_COPY_FILES copy pairs don't contain ELF files |
| 44 | .PHONY: check-elf-prebuilt-product-copy-files |
| 45 | check-elf-prebuilt-product-copy-files: |
| 46 | |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 47 | check_elf_prebuilt_product_copy_files := true |
Yo Chiang | 73d3148 | 2020-04-07 15:59:59 +0800 | [diff] [blame] | 48 | ifneq (,$(filter true,$(BUILD_BROKEN_ELF_PREBUILT_PRODUCT_COPY_FILES))) |
| 49 | check_elf_prebuilt_product_copy_files := |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 50 | endif |
| 51 | check_elf_prebuilt_product_copy_files_hint := \ |
| 52 | found ELF prebuilt in PRODUCT_COPY_FILES, use cc_prebuilt_binary / cc_prebuilt_library_shared instead. |
| 53 | |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 54 | # filter out the duplicate <source file>:<dest file> pairs. |
| 55 | unique_product_copy_files_pairs := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 56 | $(foreach cf,$(PRODUCT_COPY_FILES), \ |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 57 | $(if $(filter $(unique_product_copy_files_pairs),$(cf)),,\ |
| 58 | $(eval unique_product_copy_files_pairs += $(cf)))) |
| 59 | unique_product_copy_files_destinations := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 60 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 61 | $(foreach cf,$(unique_product_copy_files_pairs), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 62 | $(eval _src := $(call word-colon,1,$(cf))) \ |
| 63 | $(eval _dest := $(call word-colon,2,$(cf))) \ |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 64 | $(call check-product-copy-files,$(cf),$(_dest)) \ |
Ying Wang | 193010c | 2011-12-16 11:54:25 -0800 | [diff] [blame] | 65 | $(if $(filter $(unique_product_copy_files_destinations),$(_dest)), \ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 66 | $(eval product_copy_files_ignored += $(cf)), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 67 | $(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \ |
Ying Wang | 3ceecfa | 2012-05-14 14:39:00 -0700 | [diff] [blame] | 68 | $(if $(filter %.xml,$(_dest)),\ |
| 69 | $(eval $(call copy-xml-file-checked,$(_src),$(_fulldest))),\ |
Nicolas Geoffray | a95fbd1 | 2017-09-19 13:10:31 +0100 | [diff] [blame] | 70 | $(if $(and $(filter %.jar,$(_dest)),$(filter $(basename $(notdir $(_dest))),$(PRODUCT_LOADED_BY_PRIVILEGED_MODULES))),\ |
| 71 | $(eval $(call copy-and-uncompress-dexs,$(_src),$(_fulldest))), \ |
Tom Cherry | fc97764 | 2018-06-13 14:51:05 -0700 | [diff] [blame] | 72 | $(if $(filter init%rc,$(notdir $(_dest)))$(filter %/etc/init,$(dir $(_dest))),\ |
| 73 | $(eval $(call copy-init-script-file-checked,$(_src),$(_fulldest))),\ |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 74 | $(if $(and $(filter true,$(check_elf_prebuilt_product_copy_files)), \ |
| 75 | $(filter bin lib lib64,$(subst /,$(space),$(_dest)))), \ |
| 76 | $(eval $(call copy-non-elf-file-checked,$(_src),$(_fulldest),$(check_elf_prebuilt_product_copy_files_hint))), \ |
| 77 | $(eval $(call copy-one-file,$(_src),$(_fulldest))))))) \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 78 | $(eval unique_product_copy_files_destinations += $(_dest)))) |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 79 | |
| 80 | # Dump a list of overriden (and ignored PRODUCT_COPY_FILES entries) |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 81 | pcf_ignored_file := $(PRODUCT_OUT)/product_copy_files_ignored.txt |
| 82 | $(pcf_ignored_file): PRIVATE_IGNORED := $(sort $(product_copy_files_ignored)) |
| 83 | $(pcf_ignored_file): |
| 84 | echo "$(PRIVATE_IGNORED)" | tr " " "\n" >$@ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 85 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 86 | $(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] | 87 | |
| 88 | pcf_ignored_file := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 89 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 90 | unique_product_copy_files_pairs := |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 91 | unique_product_copy_files_destinations := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 92 | |
| 93 | # ----------------------------------------------------------------- |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 94 | # Returns the max allowed size for an image suitable for hash verification |
| 95 | # (e.g., boot.img, recovery.img, etc). |
| 96 | # The value 69632 derives from MAX_VBMETA_SIZE + MAX_FOOTER_SIZE in $(AVBTOOL). |
| 97 | # $(1): partition size to flash the image |
| 98 | define get-hash-image-max-size |
| 99 | $(if $(1), \ |
| 100 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 101 | $(eval _hash_meta_size := 69632), \ |
| 102 | $(eval _hash_meta_size := 0)) \ |
| 103 | $(1)-$(_hash_meta_size)) |
| 104 | endef |
| 105 | |
| 106 | # ----------------------------------------------------------------- |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 107 | # Define rules to copy headers defined in copy_headers.mk |
| 108 | # If more than one makefile declared a header, print a warning, |
| 109 | # then copy the last one defined. This matches the previous make |
| 110 | # behavior. |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 111 | has_dup_copy_headers := |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 112 | $(foreach dest,$(ALL_COPIED_HEADERS), \ |
| 113 | $(eval _srcs := $(ALL_COPIED_HEADERS.$(dest).SRC)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 114 | $(eval _src := $(lastword $(_srcs))) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 115 | $(if $(call streq,$(_src),$(_srcs)),, \ |
| 116 | $(warning Duplicate header copy: $(dest)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 117 | $(warning _ Using $(_src)) \ |
| 118 | $(warning __ from $(lastword $(ALL_COPIED_HEADERS.$(dest).MAKEFILE))) \ |
| 119 | $(eval _makefiles := $$(wordlist 1,$(call int_subtract,$(words $(ALL_COPIED_HEADERS.$(dest).MAKEFILE)),1),$$(ALL_COPIED_HEADERS.$$(dest).MAKEFILE))) \ |
| 120 | $(foreach src,$(wordlist 1,$(call int_subtract,$(words $(_srcs)),1),$(_srcs)), \ |
| 121 | $(warning _ Ignoring $(src)) \ |
| 122 | $(warning __ from $(firstword $(_makefiles))) \ |
| 123 | $(eval _makefiles := $$(wordlist 2,9999,$$(_makefiles)))) \ |
| 124 | $(eval has_dup_copy_headers := true)) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 125 | $(eval $(call copy-one-header,$(_src),$(dest)))) |
| 126 | all_copied_headers: $(ALL_COPIED_HEADERS) |
| 127 | |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 128 | ifdef has_dup_copy_headers |
| 129 | has_dup_copy_headers := |
Dan Willemsen | 1d4a56f | 2019-04-18 09:38:25 -0700 | [diff] [blame] | 130 | $(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] | 131 | endif |
| 132 | |
Dan Willemsen | 79a0caf | 2019-12-13 18:55:18 -0800 | [diff] [blame] | 133 | $(file >$(PRODUCT_OUT)/.copied_headers_list,$(TARGET_OUT_HEADERS) $(ALL_COPIED_HEADERS)) |
| 134 | |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 135 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 136 | # docs/index.html |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 137 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 138 | gen := $(OUT_DOCS)/index.html |
| 139 | ALL_DOCS += $(gen) |
| 140 | $(gen): frameworks/base/docs/docs-redirect-index.html |
| 141 | @mkdir -p $(dir $@) |
| 142 | @cp -f $< $@ |
Ying Wang | 3f45b3c | 2012-04-02 18:21:36 -0700 | [diff] [blame] | 143 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 144 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 145 | ndk_doxygen_out := $(OUT_NDK_DOCS) |
| 146 | ndk_headers := $(SOONG_OUT_DIR)/ndk/sysroot/usr/include |
| 147 | ndk_docs_src_dir := frameworks/native/docs |
| 148 | ndk_doxyfile := $(ndk_docs_src_dir)/Doxyfile |
| 149 | ifneq ($(wildcard $(ndk_docs_src_dir)),) |
| 150 | ndk_docs_srcs := $(addprefix $(ndk_docs_src_dir)/,\ |
| 151 | $(call find-files-in-subdirs,$(ndk_docs_src_dir),"*",.)) |
| 152 | $(ndk_doxygen_out)/index.html: $(ndk_docs_srcs) $(SOONG_OUT_DIR)/ndk.timestamp |
| 153 | @mkdir -p $(ndk_doxygen_out) |
| 154 | @echo "Generating NDK docs to $(ndk_doxygen_out)" |
| 155 | @( cat $(ndk_doxyfile); \ |
| 156 | echo "INPUT=$(ndk_headers)"; \ |
| 157 | echo "HTML_OUTPUT=$(ndk_doxygen_out)" \ |
| 158 | ) | doxygen - |
| 159 | |
| 160 | # Note: Not a part of the docs target because we don't have doxygen available. |
| 161 | # You can run this target locally if you have doxygen installed. |
| 162 | ndk-docs: $(ndk_doxygen_out)/index.html |
| 163 | .PHONY: ndk-docs |
| 164 | endif |
| 165 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 166 | ifeq ($(HOST_OS),linux) |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 167 | $(call dist-for-goals,sdk,$(API_FINGERPRINT)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 168 | endif |
Dan Willemsen | ad6a154 | 2018-12-14 01:04:19 -0800 | [diff] [blame] | 169 | |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 170 | INSTALLED_RECOVERYIMAGE_TARGET := |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 171 | # Build recovery image if |
| 172 | # BUILDING_RECOVERY_IMAGE && !BOARD_USES_RECOVERY_AS_BOOT && !BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT. |
| 173 | # If BOARD_USES_RECOVERY_AS_BOOT is true, leave empty because INSTALLED_BOOTIMAGE_TARGET is built |
| 174 | # with recovery resources. |
| 175 | # If BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT is true, leave empty to build recovery resources |
| 176 | # but not the final recovery image. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 177 | ifdef BUILDING_RECOVERY_IMAGE |
| 178 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 179 | ifneq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 180 | INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img |
| 181 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 182 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 183 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 184 | |
Jiyong Park | e134686 | 2020-05-18 14:31:30 +0900 | [diff] [blame] | 185 | include $(BUILD_SYSTEM)/sysprop.mk |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 186 | |
| 187 | # ---------------------------------------------------------------- |
| 188 | |
| 189 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 190 | # sdk-build.prop |
| 191 | # |
| 192 | # There are certain things in build.prop that we don't want to |
| 193 | # ship with the sdk; remove them. |
| 194 | |
| 195 | # This must be a list of entire property keys followed by |
| 196 | # "=" characters, without any internal spaces. |
| 197 | sdk_build_prop_remove := \ |
| 198 | ro.build.user= \ |
| 199 | ro.build.host= \ |
| 200 | ro.product.brand= \ |
| 201 | ro.product.manufacturer= \ |
| 202 | ro.product.device= |
| 203 | # TODO: Remove this soon-to-be obsolete property |
| 204 | sdk_build_prop_remove += ro.build.product= |
| 205 | INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop |
| 206 | $(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET) |
| 207 | @echo SDK buildinfo: $@ |
| 208 | @mkdir -p $(dir $@) |
| 209 | $(hide) grep -v "$(subst $(space),\|,$(strip \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 210 | $(sdk_build_prop_remove)))" $< > $@.tmp |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 211 | $(hide) for x in $(strip $(sdk_build_prop_remove)); do \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 212 | echo "$$x"generic >> $@.tmp; done |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 213 | $(hide) mv $@.tmp $@ |
| 214 | |
| 215 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 216 | # declare recovery ramdisk files |
| 217 | ifeq ($(BUILDING_RECOVERY_IMAGE),true) |
| 218 | INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP := $(call intermediates-dir-for,PACKAGING,recovery)/ramdisk_files-timestamp |
| 219 | endif |
| 220 | |
| 221 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 222 | # Declare vendor ramdisk fragments |
| 223 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := |
| 224 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 225 | ifeq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 226 | ifneq (,$(filter recovery,$(BOARD_VENDOR_RAMDISK_FRAGMENTS))) |
| 227 | $(error BOARD_VENDOR_RAMDISK_FRAGMENTS must not contain "recovery" if \ |
| 228 | BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT is set) |
| 229 | endif |
| 230 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += recovery |
| 231 | VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 232 | VENDOR_RAMDISK_FRAGMENT.recovery.FILES := $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 233 | BOARD_VENDOR_RAMDISK_FRAGMENT.recovery.MKBOOTIMG_ARGS += --ramdisk_type RECOVERY |
| 234 | .KATI_READONLY := VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR |
| 235 | endif |
| 236 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 237 | # Validation check and assign default --ramdisk_type. |
| 238 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 239 | $(if $(and $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 240 | $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)), \ |
| 241 | $(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))) \ |
| 242 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragment-stage-$(vendor_ramdisk_fragment))) \ |
| 243 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES :=) \ |
| 244 | $(if $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 245 | $(if $(filter --ramdisk_type,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)),, \ |
| 246 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_type DLKM))) \ |
| 247 | ) |
| 248 | |
| 249 | # Create the "kernel module directory" to "vendor ramdisk fragment" inverse mapping. |
| 250 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 251 | $(foreach kmd,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 252 | $(eval kmd_vrf := KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd)) \ |
| 253 | $(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)) \ |
| 254 | $(eval $(kmd_vrf) := $(vendor_ramdisk_fragment)) \ |
| 255 | ) \ |
| 256 | ) |
| 257 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += $(BOARD_VENDOR_RAMDISK_FRAGMENTS) |
| 258 | |
Yi-Yo Chiang | 378b779 | 2021-04-09 20:09:13 +0800 | [diff] [blame] | 259 | # Strip the list in case of any whitespace. |
| 260 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := \ |
| 261 | $(strip $(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)) |
| 262 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 263 | # Assign --ramdisk_name for each vendor ramdisk fragment. |
| 264 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
| 265 | $(if $(filter --ramdisk_name,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)), \ |
| 266 | $(error Must not specify --ramdisk_name for vendor ramdisk fragment: $(vendor_ramdisk_fragment))) \ |
| 267 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_name $(vendor_ramdisk_fragment)) \ |
| 268 | $(eval .KATI_READONLY := BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) \ |
| 269 | ) |
| 270 | |
| 271 | # ----------------------------------------------------------------- |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 272 | # kernel modules |
| 273 | |
| 274 | # Depmod requires a well-formed kernel version so 0.0 is used as a placeholder. |
| 275 | DEPMOD_STAGING_SUBDIR :=$= lib/modules/0.0 |
| 276 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 277 | define copy-and-strip-kernel-module |
| 278 | $(2): $(1) |
J. Avila | f758602 | 2020-06-19 20:42:17 +0000 | [diff] [blame] | 279 | $(LLVM_STRIP) -o $(2) --strip-debug $(1) |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 280 | endef |
| 281 | |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 282 | # $(1): modules list |
| 283 | # $(2): output dir |
| 284 | # $(3): mount point |
| 285 | # $(4): staging dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 286 | # $(5): module load list |
| 287 | # $(6): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 288 | # $(7): module archive |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 289 | # $(8): staging dir for stripped modules |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 290 | # $(9): module directory name |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 291 | # 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] | 292 | define build-image-kernel-modules |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 293 | $(if $(9), \ |
| 294 | $(eval _dir := $(9)/), \ |
| 295 | $(eval _dir :=)) \ |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 296 | $(foreach module,$(1), \ |
| 297 | $(eval _src := $(module)) \ |
| 298 | $(if $(8), \ |
| 299 | $(eval _src := $(8)/$(notdir $(module))) \ |
| 300 | $(eval $(call copy-and-strip-kernel-module,$(module),$(_src)))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 301 | $(_src):$(2)/lib/modules/$(_dir)$(notdir $(module))) \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 302 | $(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] | 303 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.dep:$(2)/lib/modules/$(_dir)modules.dep \ |
| 304 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.alias:$(2)/lib/modules/$(_dir)modules.alias \ |
| 305 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.softdep:$(2)/lib/modules/$(_dir)modules.softdep \ |
| 306 | $(4)/$(DEPMOD_STAGING_SUBDIR)/$(6):$(2)/lib/modules/$(_dir)$(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 307 | endef |
| 308 | |
| 309 | # $(1): modules list |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 310 | # $(2): mount point |
| 311 | # $(3): staging dir |
| 312 | # $(4): module load list |
| 313 | # $(5): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 314 | # $(6): module archive |
| 315 | # $(7): output dir |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 316 | # $(8): module directory name |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 317 | # TODO(b/144844424): If a module archive is being used, this step (which |
| 318 | # generates obj/PACKAGING/.../modules.dep) also unzips the module archive into |
| 319 | # the output directory. This should be moved to a module with a |
| 320 | # LOCAL_POST_INSTALL_CMD so that if modules.dep is removed from the output dir, |
| 321 | # the archive modules are restored along with modules.dep. |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 322 | define build-image-kernel-modules-depmod |
Steve Muckle | 0f7bb1b | 2019-07-11 17:42:13 -0700 | [diff] [blame] | 323 | $(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] | 324 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(DEPMOD) |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 325 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULES := $(strip $(1)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 326 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MOUNT_POINT := $(2) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 327 | $(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] | 328 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_STAGING_DIR := $(3) |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 329 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_LOAD_MODULES := $(strip $(4)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 330 | $(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] | 331 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_ARCHIVE := $(6) |
| 332 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_OUTPUT_DIR := $(7) |
| 333 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(1) $(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 334 | @echo depmod $$(PRIVATE_STAGING_DIR) |
| 335 | rm -rf $$(PRIVATE_STAGING_DIR) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 336 | mkdir -p $$(PRIVATE_MODULE_DIR) |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 337 | $(if $(6),\ |
Colin Cross | c27d795 | 2020-07-11 22:33:30 -0700 | [diff] [blame] | 338 | unzip -qoDD -d $$(PRIVATE_MODULE_DIR) $$(PRIVATE_MODULE_ARCHIVE); \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 339 | mkdir -p $$(PRIVATE_OUTPUT_DIR)/lib; \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 340 | 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] | 341 | find $$(PRIVATE_MODULE_DIR) -type f -name *.ko | xargs basename -a > $$(PRIVATE_LOAD_FILE); \ |
| 342 | ) |
| 343 | $(if $(1),\ |
| 344 | cp $$(PRIVATE_MODULES) $$(PRIVATE_MODULE_DIR)/; \ |
| 345 | for MODULE in $$(PRIVATE_LOAD_MODULES); do \ |
| 346 | basename $$$$MODULE >> $$(PRIVATE_LOAD_FILE); \ |
| 347 | done; \ |
| 348 | ) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 349 | $(DEPMOD) -b $$(PRIVATE_STAGING_DIR) 0.0 |
| 350 | # Turn paths in modules.dep into absolute paths |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 351 | sed -i.tmp -e 's|\([^: ]*lib/modules/[^: ]*\)|/\1|g' $$(PRIVATE_STAGING_DIR)/$$(DEPMOD_STAGING_SUBDIR)/modules.dep |
| 352 | touch $$(PRIVATE_LOAD_FILE) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 353 | endef |
| 354 | |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 355 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 356 | # $(2): modules list |
| 357 | # $(3): module load list |
| 358 | # $(4): module load list filename |
| 359 | # $(5): output dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 360 | define module-load-list-copy-paths |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 361 | $(eval $(call build-image-module-load-list,$(1),$(2),$(3),$(4))) \ |
| 362 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4):$(5)/lib/modules/$(4) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 363 | endef |
| 364 | |
| 365 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 366 | # $(2): modules list |
| 367 | # $(3): module load list |
| 368 | # $(4): module load list filename |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 369 | define build-image-module-load-list |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 370 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): PRIVATE_LOAD_MODULES := $(3) |
| 371 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): $(2) |
| 372 | @echo load-list $$(@) |
| 373 | @echo '$$(strip $$(notdir $$(PRIVATE_LOAD_MODULES)))' | tr ' ' '\n' > $$(@) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 374 | endef |
| 375 | |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 376 | # $(1): source options file |
| 377 | # $(2): destination pathname |
| 378 | # Returns a build rule that checks the syntax of and installs a kernel modules |
| 379 | # options file. Strip and squeeze any extra space and blank lines. |
| 380 | # For use via $(eval). |
| 381 | define build-image-kernel-modules-options-file |
| 382 | $(2): $(1) |
| 383 | @echo "libmodprobe options $$(@)" |
| 384 | $(hide) mkdir -p "$$(dir $$@)" |
| 385 | $(hide) rm -f "$$@" |
| 386 | $(hide) awk <"$$<" >"$$@" \ |
| 387 | '/^#/ { print; next } \ |
| 388 | NF == 0 { next } \ |
| 389 | NF < 2 || $$$$1 != "options" \ |
| 390 | { print "Invalid options line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 391 | exit_status = 1; next } \ |
| 392 | { $$$$1 = $$$$1; print } \ |
| 393 | END { exit exit_status }' |
| 394 | endef |
| 395 | |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 396 | # $(1): source blocklist file |
| 397 | # $(2): destination pathname |
| 398 | # 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] | 399 | # blocklist file. Strip and squeeze any extra space and blank lines. |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 400 | # For use via $(eval). |
| 401 | define build-image-kernel-modules-blocklist-file |
| 402 | $(2): $(1) |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 403 | @echo "libmodprobe blocklist $$(@)" |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 404 | $(hide) mkdir -p "$$(dir $$@)" |
| 405 | $(hide) rm -f "$$@" |
| 406 | $(hide) awk <"$$<" >"$$@" \ |
| 407 | '/^#/ { print; next } \ |
| 408 | NF == 0 { next } \ |
| 409 | NF != 2 || $$$$1 != "blocklist" \ |
| 410 | { print "Invalid blocklist line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 411 | exit_status = 1; next } \ |
| 412 | { $$$$1 = $$$$1; print } \ |
| 413 | END { exit exit_status }' |
| 414 | endef |
| 415 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 416 | # $(1): image name |
| 417 | # $(2): build output directory (TARGET_OUT_VENDOR, TARGET_RECOVERY_ROOT_OUT, etc) |
| 418 | # $(3): mount point |
| 419 | # $(4): module load filename |
| 420 | # $(5): stripped staging directory |
| 421 | # $(6): kernel module directory name (top is an out of band value for no directory) |
| 422 | define build-image-kernel-modules-dir |
| 423 | $(if $(filter top,$(6)),\ |
| 424 | $(eval _kver :=)$(eval _sep :=),\ |
| 425 | $(eval _kver := $(6))$(eval _sep :=_))\ |
| 426 | $(if $(5),\ |
| 427 | $(eval _stripped_staging_dir := $(5)$(_sep)$(_kver)),\ |
| 428 | $(eval _stripped_staging_dir :=))\ |
| 429 | $(if $(strip $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver))$(BOARD_$(1)_KERNEL_MODULES_ARCHIVE$(_sep)$(_kver))),\ |
| 430 | $(if $(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver)),,\ |
| 431 | $(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] | 432 | $(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] | 433 | $(if $(_kver), \ |
| 434 | $(eval _dir := $(_kver)/), \ |
| 435 | $(eval _dir :=)) \ |
| 436 | $(if $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 437 | $(eval $(call build-image-kernel-modules-options-file, \ |
| 438 | $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 439 | $(2)/lib/modules/$(_dir)modules.options)) \ |
| 440 | $(2)/lib/modules/$(_dir)modules.options) \ |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 441 | $(if $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
| 442 | $(eval $(call build-image-kernel-modules-blocklist-file, \ |
| 443 | $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 444 | $(2)/lib/modules/$(_dir)modules.blocklist)) \ |
| 445 | $(2)/lib/modules/$(_dir)modules.blocklist) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 446 | endef |
| 447 | |
| 448 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 449 | define build-recovery-as-boot-load |
| 450 | $(if $(filter top,$(1)),\ |
| 451 | $(eval _kver :=)$(eval _sep :=),\ |
| 452 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 453 | $(if $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 454 | $(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)))) |
| 455 | endef |
| 456 | |
| 457 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 458 | define build-vendor-ramdisk-recovery-load |
| 459 | $(if $(filter top,$(1)),\ |
| 460 | $(eval _kver :=)$(eval _sep :=),\ |
| 461 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 462 | $(if $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 463 | $(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)))) |
| 464 | endef |
| 465 | |
Mark Salyzyn | 46a9c02 | 2020-06-25 04:35:16 -0700 | [diff] [blame] | 466 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 467 | define build-vendor-charger-load |
| 468 | $(if $(filter top,$(1)),\ |
| 469 | $(eval _kver :=)$(eval _sep :=),\ |
| 470 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 471 | $(if $(BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 472 | $(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)))) |
| 473 | endef |
| 474 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 475 | ifneq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 476 | # If there is no vendor boot partition, store vendor ramdisk kernel modules in the |
| 477 | # boot ramdisk. |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 478 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 479 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD) |
| 480 | endif |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 481 | |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 482 | ifeq ($(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD),) |
| 483 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD := $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 484 | endif |
| 485 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 486 | ifneq ($(strip $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES)),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 487 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT), true) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 488 | BOARD_RECOVERY_KERNEL_MODULES += $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 489 | endif |
| 490 | endif |
| 491 | |
Mark-PK Tsai | 8c54396 | 2021-08-23 18:01:51 +0800 | [diff] [blame] | 492 | ifneq ($(BOARD_DO_NOT_STRIP_RECOVERY_MODULES),true) |
| 493 | RECOVERY_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_recovery_stripped) |
| 494 | else |
| 495 | RECOVERY_STRIPPED_MODULE_STAGING_DIR := |
| 496 | endif |
| 497 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 498 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_MODULES),true) |
| 499 | VENDOR_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_stripped) |
| 500 | else |
| 501 | VENDOR_STRIPPED_MODULE_STAGING_DIR := |
| 502 | endif |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 503 | |
Pierre Couillaud | d99da8f | 2020-06-02 13:13:32 -0700 | [diff] [blame] | 504 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_RAMDISK_MODULES),true) |
| 505 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_ramdisk_stripped) |
| 506 | else |
| 507 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 508 | endif |
| 509 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 510 | BOARD_KERNEL_MODULE_DIRS += top |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 511 | $(foreach kmd,$(BOARD_KERNEL_MODULE_DIRS), \ |
Mark-PK Tsai | 8c54396 | 2021-08-23 18:01:51 +0800 | [diff] [blame] | 512 | $(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] | 513 | $(eval vendor_ramdisk_fragment := $(KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd))) \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 514 | $(if $(vendor_ramdisk_fragment), \ |
| 515 | $(eval output_dir := $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR)) \ |
| 516 | $(eval result_var := VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES) \ |
| 517 | $(eval ### else ###), \ |
| 518 | $(eval output_dir := $(TARGET_VENDOR_RAMDISK_OUT)) \ |
| 519 | $(eval result_var := ALL_DEFAULT_INSTALLED_MODULES)) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 520 | $(eval $(result_var) += $(call build-image-kernel-modules-dir,VENDOR_RAMDISK,$(output_dir),,modules.load,$(VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR),$(kmd))) \ |
| 521 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-ramdisk-recovery-load,$(kmd))) \ |
| 522 | $(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))) \ |
| 523 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-charger-load,$(kmd))) \ |
| 524 | $(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] | 525 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 526 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-recovery-as-boot-load,$(kmd))),\ |
| 527 | $(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] | 528 | |
| 529 | # ----------------------------------------------------------------- |
Inseob Kim | f69346e | 2021-10-13 15:16:33 +0900 | [diff] [blame] | 530 | # FSVerity metadata generation |
| 531 | ifeq ($(PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA),true) |
| 532 | |
| 533 | FSVERITY_APK_KEY_PATH := $(DEFAULT_SYSTEM_DEV_CERTIFICATE) |
| 534 | FSVERITY_APK_OUT := system/etc/security/fsverity/BuildManifest.apk |
| 535 | FSVERITY_APK_MANIFEST_PATH := system/security/fsverity/AndroidManifest.xml |
| 536 | |
| 537 | endif # PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA |
| 538 | |
| 539 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 540 | # Cert-to-package mapping. Used by the post-build signing tools. |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 541 | # Use a macro to add newline to each echo command |
Jiyong Park | 7b96c59 | 2020-05-01 10:29:09 +0900 | [diff] [blame] | 542 | # $1 stem name of the package |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 543 | # $2 certificate |
| 544 | # $3 private key |
| 545 | # $4 compressed |
| 546 | # $5 partition tag |
| 547 | # $6 output file |
Narayan Kamath | 6a4bd69 | 2017-08-14 10:53:50 +0100 | [diff] [blame] | 548 | define _apkcerts_write_line |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 549 | $(hide) echo -n 'name="$(1).apk" certificate="$2" private_key="$3"' >> $6 |
| 550 | $(if $(4), $(hide) echo -n ' compressed="$4"' >> $6) |
| 551 | $(if $(5), $(hide) echo -n ' partition="$5"' >> $6) |
| 552 | $(hide) echo '' >> $6 |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 553 | |
| 554 | endef |
| 555 | |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 556 | # ----------------------------------------------------------------- |
| 557 | # Merge an individual apkcerts output into the final apkcerts.txt output. |
| 558 | # Use a macro to make it compatible with _apkcerts_write_line |
| 559 | # $1 apkcerts file to be merged |
| 560 | # $2 output file |
| 561 | define _apkcerts_merge |
| 562 | $(hide) cat $1 >> $2 |
| 563 | |
| 564 | endef |
| 565 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 566 | name := $(TARGET_PRODUCT) |
| 567 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 568 | name := $(name)_debug |
| 569 | endif |
| 570 | name := $(name)-apkcerts-$(FILE_NAME_TAG) |
| 571 | intermediates := \ |
| 572 | $(call intermediates-dir-for,PACKAGING,apkcerts) |
| 573 | APKCERTS_FILE := $(intermediates)/$(name).txt |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 574 | all_apkcerts_files := $(sort $(foreach p,$(PACKAGES),$(PACKAGES.$(p).APKCERTS_FILE))) |
| 575 | $(APKCERTS_FILE): $(all_apkcerts_files) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 576 | # We don't need to really build all the modules. |
| 577 | # TODO: rebuild APKCERTS_FILE if any app change its cert. |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 578 | $(APKCERTS_FILE): |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 579 | @echo APK certs list: $@ |
| 580 | @mkdir -p $(dir $@) |
| 581 | @rm -f $@ |
Chris Gross | fabf50a | 2019-05-02 12:42:09 -0700 | [diff] [blame] | 582 | $(foreach p,$(sort $(PACKAGES)),\ |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 583 | $(if $(PACKAGES.$(p).APKCERTS_FILE),\ |
| 584 | $(call _apkcerts_merge,$(PACKAGES.$(p).APKCERTS_FILE), $@),\ |
| 585 | $(if $(PACKAGES.$(p).EXTERNAL_KEY),\ |
Jaewoong Jung | 7b634d3 | 2020-10-23 14:02:16 -0700 | [diff] [blame] | 586 | $(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] | 587 | $(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] | 588 | $(if $(filter true,$(PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA)),\ |
| 589 | $(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] | 590 | # In case value of PACKAGES is empty. |
Ying Wang | f272cd6 | 2011-09-26 12:05:06 -0700 | [diff] [blame] | 591 | $(hide) touch $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 592 | |
| 593 | .PHONY: apkcerts-list |
| 594 | apkcerts-list: $(APKCERTS_FILE) |
| 595 | |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 596 | ifneq (,$(TARGET_BUILD_APPS)) |
| 597 | $(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt) |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 598 | $(call dist-for-goals, apps_only, $(SOONG_APEX_KEYS_FILE):apexkeys.txt) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 599 | endif |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 600 | |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 601 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 602 | # ----------------------------------------------------------------- |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 603 | # build system stats |
| 604 | BUILD_SYSTEM_STATS := $(PRODUCT_OUT)/build_system_stats.txt |
| 605 | $(BUILD_SYSTEM_STATS): |
| 606 | @rm -f $@ |
| 607 | @$(foreach s,$(STATS.MODULE_TYPE),echo "modules_type_make,$(s),$(words $(STATS.MODULE_TYPE.$(s)))" >>$@;) |
| 608 | @$(foreach s,$(STATS.SOONG_MODULE_TYPE),echo "modules_type_soong,$(s),$(STATS.SOONG_MODULE_TYPE.$(s))" >>$@;) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 609 | $(call dist-for-goals,droidcore-unbundled,$(BUILD_SYSTEM_STATS)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 610 | |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 611 | # ----------------------------------------------------------------- |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 612 | # build /product/etc/security/avb/system_other.avbpubkey if needed |
| 613 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 614 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 615 | INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET := $(TARGET_OUT_PRODUCT_ETC)/security/avb/system_other.avbpubkey |
| 616 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET) |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 617 | endif # BOARD_AVB_ENABLE |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 618 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 619 | |
| 620 | # ----------------------------------------------------------------- |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 621 | # Modules ready to be converted to Soong, ordered by how many |
| 622 | # modules depend on them. |
| 623 | SOONG_CONV := $(sort $(SOONG_CONV)) |
| 624 | SOONG_CONV_DATA := $(call intermediates-dir-for,PACKAGING,soong_conversion)/soong_conv_data |
| 625 | $(SOONG_CONV_DATA): |
| 626 | @rm -f $@ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 627 | @$(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] | 628 | |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 629 | SOONG_TO_CONVERT_SCRIPT := build/make/tools/soong_to_convert.py |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 630 | SOONG_TO_CONVERT := $(PRODUCT_OUT)/soong_to_convert.txt |
| 631 | $(SOONG_TO_CONVERT): $(SOONG_CONV_DATA) $(SOONG_TO_CONVERT_SCRIPT) |
| 632 | @rm -f $@ |
| 633 | $(hide) $(SOONG_TO_CONVERT_SCRIPT) $< >$@ |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 634 | $(call dist-for-goals,droidcore-unbundled,$(SOONG_TO_CONVERT)) |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 635 | |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 636 | MK2BP_CATALOG_SCRIPT := build/make/tools/mk2bp_catalog.py |
| 637 | MK2BP_REMAINING_HTML := $(PRODUCT_OUT)/mk2bp_remaining.html |
| 638 | $(MK2BP_REMAINING_HTML): PRIVATE_CODE_SEARCH_BASE_URL := "https://cs.android.com/android/platform/superproject/+/master:" |
| 639 | $(MK2BP_REMAINING_HTML): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) |
| 640 | @rm -f $@ |
| 641 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 642 | --device=$(TARGET_DEVICE) \ |
| 643 | --title="Remaining Android.mk files for $(TARGET_DEVICE)-$(TARGET_BUILD_VARIANT)" \ |
| 644 | --codesearch=$(PRIVATE_CODE_SEARCH_BASE_URL) \ |
| 645 | --out_dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 646 | --mode=html \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 647 | > $@ |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 648 | $(call dist-for-goals,droidcore-unbundled,$(MK2BP_REMAINING_HTML)) |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 649 | |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 650 | MK2BP_REMAINING_CSV := $(PRODUCT_OUT)/mk2bp_remaining.csv |
| 651 | $(MK2BP_REMAINING_CSV): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) |
| 652 | @rm -f $@ |
| 653 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 654 | --device=$(TARGET_DEVICE) \ |
| 655 | --out_dir="$(OUT_DIR)" \ |
| 656 | --mode=csv \ |
| 657 | > $@ |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 658 | $(call dist-for-goals,droidcore-unbundled,$(MK2BP_REMAINING_CSV)) |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 659 | |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 660 | # ----------------------------------------------------------------- |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 661 | # Modules use -Wno-error, or added default -Wall -Werror |
| 662 | WALL_WERROR := $(PRODUCT_OUT)/wall_werror.txt |
| 663 | $(WALL_WERROR): |
| 664 | @rm -f $@ |
| 665 | echo "# Modules using -Wno-error" >> $@ |
| 666 | for m in $(sort $(SOONG_MODULES_USING_WNO_ERROR) $(MODULES_USING_WNO_ERROR)); do echo $$m >> $@; done |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 667 | echo "# Modules added default -Wall" >> $@ |
| 668 | for m in $(sort $(SOONG_MODULES_ADDED_WALL) $(MODULES_ADDED_WALL)); do echo $$m >> $@; done |
| 669 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 670 | $(call dist-for-goals,droidcore-unbundled,$(WALL_WERROR)) |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 671 | |
| 672 | # ----------------------------------------------------------------- |
Jesse Pai | d004692 | 2019-09-13 17:02:32 -0700 | [diff] [blame] | 673 | # C/C++ flag information for modules |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 674 | $(call dist-for-goals,droidcore-unbundled,$(SOONG_MODULES_CFLAG_ARTIFACTS)) |
Jesse Pai | d004692 | 2019-09-13 17:02:32 -0700 | [diff] [blame] | 675 | |
| 676 | # ----------------------------------------------------------------- |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 677 | # Modules missing profile files |
| 678 | PGO_PROFILE_MISSING := $(PRODUCT_OUT)/pgo_profile_file_missing.txt |
| 679 | $(PGO_PROFILE_MISSING): |
| 680 | @rm -f $@ |
| 681 | echo "# Modules missing PGO profile files" >> $@ |
| 682 | for m in $(SOONG_MODULES_MISSING_PGO_PROFILE_FILE); do echo $$m >> $@; done |
| 683 | |
| 684 | $(call dist-for-goals,droidcore,$(PGO_PROFILE_MISSING)) |
| 685 | |
Anton Hansson | cd8fa36 | 2020-12-08 20:56:02 +0000 | [diff] [blame] | 686 | CERTIFICATE_VIOLATION_MODULES_FILENAME := $(PRODUCT_OUT)/certificate_violation_modules.txt |
| 687 | $(CERTIFICATE_VIOLATION_MODULES_FILENAME): |
| 688 | rm -f $@ |
| 689 | $(foreach m,$(sort $(CERTIFICATE_VIOLATION_MODULES)), echo $(m) >> $@;) |
| 690 | $(call dist-for-goals,droidcore,$(CERTIFICATE_VIOLATION_MODULES_FILENAME)) |
| 691 | |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 692 | # ----------------------------------------------------------------- |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 693 | # 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] | 694 | # for future OTA packages installed by this system. Actual product |
| 695 | # deliverables will be re-signed by hand. We expect this file to |
| 696 | # exist with the suffixes ".x509.pem" and ".pk8". |
Colin Cross | 21122f9 | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 697 | DEFAULT_KEY_CERT_PAIR := $(strip $(DEFAULT_SYSTEM_DEV_CERTIFICATE)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 698 | |
| 699 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 700 | # 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] | 701 | # if they don't do anything. |
| 702 | .PHONY: systemimage |
| 703 | systemimage: |
| 704 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 705 | # ----------------------------------------------------------------- |
| 706 | |
| 707 | .PHONY: event-log-tags |
| 708 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 709 | # Produce an event logs tag file for everything we know about, in order |
| 710 | # to properly allocate numbers. Then produce a file that's filtered |
| 711 | # for what's going to be installed. |
| 712 | |
| 713 | all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt |
| 714 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 715 | event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags |
| 716 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 717 | # Include tags from all packages that we know about |
| 718 | all_event_log_tags_src := \ |
| 719 | $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS))) |
| 720 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 721 | $(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src) |
| 722 | $(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] | 723 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 724 | $(hide) $(MERGETAGS) -o $@ $(PRIVATE_SRC_FILES) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 725 | |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 726 | # Include tags from all packages included in this product, plus all |
| 727 | # tags that are part of the system (ie, not in a vendor/ or device/ |
| 728 | # directory). |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 729 | event_log_tags_src := \ |
| 730 | $(sort $(foreach m,\ |
Yo Chiang | 5e85bfe | 2020-05-13 20:19:05 +0800 | [diff] [blame] | 731 | $(call resolve-bitness-for-modules,TARGET,$(PRODUCT_PACKAGES)) \ |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 732 | $(call module-names-for-tag-list,user), \ |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 733 | $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \ |
| 734 | $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src))) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 735 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 736 | $(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 737 | $(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file) |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 738 | $(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] | 739 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 740 | $(hide) $(MERGETAGS) -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 741 | |
| 742 | event-log-tags: $(event_log_tags_file) |
| 743 | |
| 744 | ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file) |
| 745 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 746 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 747 | # ################################################################# |
| 748 | # Targets for boot/OS images |
| 749 | # ################################################################# |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 750 | ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true) |
| 751 | INSTALLED_BOOTLOADER_MODULE := $(PRODUCT_OUT)/bootloader |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 752 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 753 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_BOOTLOADER),$(INSTALLED_BOOTLOADER_MODULE))) |
| 754 | $(call dist-for-goals,dist_files,$(INSTALLED_BOOTLOADER_MODULE)) |
| 755 | endif # BOARD_PREBUILT_BOOTLOADER |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 756 | ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true) |
| 757 | INSTALLED_2NDBOOTLOADER_TARGET := $(PRODUCT_OUT)/2ndbootloader |
| 758 | else |
| 759 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 760 | endif |
| 761 | else |
| 762 | INSTALLED_BOOTLOADER_MODULE := |
| 763 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 764 | endif # TARGET_NO_BOOTLOADER |
| 765 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 766 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 767 | INSTALLED_KERNEL_TARGET := $(foreach k,$(BOARD_KERNEL_BINARIES), \ |
| 768 | $(PRODUCT_OUT)/$(k)) |
| 769 | else |
| 770 | INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel |
| 771 | endif |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 772 | else |
| 773 | INSTALLED_KERNEL_TARGET := |
| 774 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 775 | |
| 776 | # ----------------------------------------------------------------- |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 777 | # the root dir |
| 778 | INTERNAL_ROOT_FILES := $(filter $(TARGET_ROOT_OUT)/%, \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 779 | $(ALL_GENERATED_SOURCES) \ |
| 780 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 781 | |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 782 | INSTALLED_FILES_FILE_ROOT := $(PRODUCT_OUT)/installed-files-root.txt |
| 783 | INSTALLED_FILES_JSON_ROOT := $(INSTALLED_FILES_FILE_ROOT:.txt=.json) |
| 784 | $(INSTALLED_FILES_FILE_ROOT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ROOT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 785 | $(INSTALLED_FILES_FILE_ROOT) : $(INTERNAL_ROOT_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 786 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 787 | mkdir -p $(dir $@) |
| 788 | rm -f $@ |
| 789 | $(FILESLIST) $(TARGET_ROOT_OUT) > $(@:.txt=.json) |
| 790 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 791 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 792 | ifeq ($(HOST_OS),linux) |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 793 | $(call dist-for-goals, sdk sdk_addon, $(INSTALLED_FILES_FILE_ROOT)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 794 | endif |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 795 | |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 796 | #------------------------------------------------------------------ |
| 797 | # dtb |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 798 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 799 | INSTALLED_DTBIMAGE_TARGET := $(PRODUCT_OUT)/dtb.img |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 800 | ifdef BOARD_PREBUILT_DTBIMAGE_DIR |
Hridya Valsaraju | c63a744 | 2019-02-07 11:38:18 -0800 | [diff] [blame] | 801 | $(INSTALLED_DTBIMAGE_TARGET) : $(sort $(wildcard $(BOARD_PREBUILT_DTBIMAGE_DIR)/*.dtb)) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 802 | cat $^ > $@ |
| 803 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 804 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 805 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 806 | # ----------------------------------------------------------------- |
| 807 | # the ramdisk |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 808 | ifdef BUILDING_RAMDISK_IMAGE |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 809 | INTERNAL_RAMDISK_FILES := $(filter $(TARGET_RAMDISK_OUT)/%, \ |
| 810 | $(ALL_GENERATED_SOURCES) \ |
| 811 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 812 | |
| 813 | INSTALLED_FILES_FILE_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk.txt |
| 814 | INSTALLED_FILES_JSON_RAMDISK := $(INSTALLED_FILES_FILE_RAMDISK:.txt=.json) |
| 815 | $(INSTALLED_FILES_FILE_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RAMDISK) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 816 | $(INSTALLED_FILES_FILE_RAMDISK) : $(INTERNAL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 817 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 818 | mkdir -p $(TARGET_RAMDISK_OUT) |
| 819 | mkdir -p $(dir $@) |
| 820 | rm -f $@ |
| 821 | $(FILESLIST) $(TARGET_RAMDISK_OUT) > $(@:.txt=.json) |
| 822 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 823 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 824 | ifeq ($(HOST_OS),linux) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 825 | $(call dist-for-goals, sdk win_sdk sdk_addon, $(INSTALLED_FILES_FILE_RAMDISK)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 826 | endif |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 827 | BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img |
| 828 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 829 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 830 | # -l enables the legacy format used by the Linux kernel |
| 831 | COMPRESSION_COMMAND_DEPS := $(LZ4) |
| 832 | COMPRESSION_COMMAND := $(LZ4) -l -12 --favor-decSpeed |
| 833 | RAMDISK_EXT := .lz4 |
| 834 | else |
| 835 | COMPRESSION_COMMAND_DEPS := $(MINIGZIP) |
| 836 | COMPRESSION_COMMAND := $(MINIGZIP) |
| 837 | RAMDISK_EXT := .gz |
| 838 | endif |
| 839 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 840 | # We just build this directly to the install location. |
| 841 | INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET) |
Inseob Kim | adcdb2f | 2021-06-11 12:55:10 +0900 | [diff] [blame] | 842 | $(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] | 843 | $(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] | 844 | $(call pretty,"Target ramdisk: $@") |
Inseob Kim | adcdb2f | 2021-06-11 12:55:10 +0900 | [diff] [blame] | 845 | $(hide) mkdir -p $(addprefix $(TARGET_RAMDISK_OUT)/,$(PRIVATE_DIRS)) |
| 846 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
| 847 | $(hide) mkdir -p $(addprefix $(TARGET_RAMDISK_OUT)/first_stage_ramdisk/,$(PRIVATE_DIRS)) |
| 848 | endif |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 849 | $(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] | 850 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 851 | .PHONY: ramdisk-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 852 | ramdisk-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 853 | @echo "make $@: ignoring dependencies" |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 854 | $(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] | 855 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 856 | endif # BUILDING_RAMDISK_IMAGE |
| 857 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 858 | # ----------------------------------------------------------------- |
| 859 | # the boot image, which is a collection of other images. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 860 | |
| 861 | # This is defined here since we may be building recovery as boot |
| 862 | # below and only want to define this once |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 863 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 864 | BUILT_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot,$(BOARD_KERNEL_BINARIES)), $(PRODUCT_OUT)/$(k).img) |
| 865 | else |
| 866 | BUILT_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 867 | endif |
| 868 | |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 869 | INTERNAL_PREBUILT_BOOTIMAGE := |
| 870 | |
| 871 | my_installed_prebuilt_gki_apex := $(strip $(foreach package,$(PRODUCT_PACKAGES),$(if $(ALL_MODULES.$(package).EXTRACTED_BOOT_IMAGE),$(package)))) |
| 872 | ifdef my_installed_prebuilt_gki_apex |
| 873 | ifneq (1,$(words $(my_installed_prebuilt_gki_apex))) # len(my_installed_prebuilt_gki_apex) > 1 |
| 874 | $(error More than one prebuilt GKI APEXes are installed: $(my_installed_prebuilt_gki_apex)) |
| 875 | endif # len(my_installed_prebuilt_gki_apex) > 1 |
| 876 | |
| 877 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 878 | $(error Must not define BOARD_PREBUILT_BOOTIMAGE because a prebuilt GKI APEX is installed: $(my_installed_prebuilt_gki_apex)) |
| 879 | endif # BOARD_PREBUILT_BOOTIMAGE defined |
| 880 | |
| 881 | my_apex_extracted_boot_image := $(ALL_MODULES.$(my_installed_prebuilt_gki_apex).EXTRACTED_BOOT_IMAGE) |
| 882 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 883 | $(eval $(call copy-one-file,$(my_apex_extracted_boot_image),$(INSTALLED_BOOTIMAGE_TARGET))) |
| 884 | |
| 885 | INTERNAL_PREBUILT_BOOTIMAGE := $(my_apex_extracted_boot_image) |
| 886 | |
| 887 | else # my_installed_prebuilt_gki_apex not defined |
| 888 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 889 | # $1: boot image target |
| 890 | # returns the kernel used to make the bootimage |
| 891 | define bootimage-to-kernel |
| 892 | $(if $(BOARD_KERNEL_BINARIES),\ |
| 893 | $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $(1)))),\ |
| 894 | $(INSTALLED_KERNEL_TARGET)) |
| 895 | endef |
| 896 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 897 | ifdef BOARD_BOOTIMAGE_PARTITION_SIZE |
| 898 | BOARD_KERNEL_BOOTIMAGE_PARTITION_SIZE := $(BOARD_BOOTIMAGE_PARTITION_SIZE) |
| 899 | endif |
| 900 | |
| 901 | # $1: boot image file name |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 902 | # $2: boot image variant (boot, boot-debug, boot-test-harness) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 903 | define get-bootimage-partition-size |
| 904 | $(BOARD_$(call to-upper,$(subst .img,,$(subst $(2),kernel,$(notdir $(1)))))_BOOTIMAGE_PARTITION_SIZE) |
| 905 | endef |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 906 | |
| 907 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 908 | INTERNAL_BOOTIMAGE_ARGS := \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 909 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 910 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 911 | INTERNAL_INIT_BOOT_IMAGE_ARGS := |
| 912 | |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 913 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 914 | ifneq ($(BUILDING_INIT_BOOT_IMAGE),true) |
| 915 | INTERNAL_BOOTIMAGE_ARGS += --ramdisk $(INSTALLED_RAMDISK_TARGET) |
| 916 | else |
| 917 | INTERNAL_INIT_BOOT_IMAGE_ARGS += --ramdisk $(INSTALLED_RAMDISK_TARGET) |
| 918 | endif |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 919 | endif |
| 920 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 921 | ifndef BUILDING_VENDOR_BOOT_IMAGE |
| 922 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 923 | INTERNAL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 924 | endif |
| 925 | endif |
| 926 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 927 | INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS)) |
| 928 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 929 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 930 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 931 | 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] | 932 | | grep keyid | sed 's/://g' | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]' | sed 's/keyid//g'` |
| 933 | endif |
| 934 | endif |
| 935 | |
Anton Hansson | 72e36f0 | 2019-02-26 17:36:30 +0000 | [diff] [blame] | 936 | 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] | 937 | |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 938 | # kernel cmdline/base/pagesize in boot. |
| 939 | # - If using GKI, use GENERIC_KERNEL_CMDLINE. Remove kernel base and pagesize because they are |
| 940 | # device-specific. |
| 941 | # - If not using GKI: |
| 942 | # - If building vendor_boot, INTERNAL_KERNEL_CMDLINE, base and pagesize goes in vendor_boot. |
| 943 | # - Otherwise, put them in boot. |
| 944 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 945 | ifdef GENERIC_KERNEL_CMDLINE |
| 946 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(GENERIC_KERNEL_CMDLINE)" |
| 947 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 948 | else ifndef BUILDING_VENDOR_BOOT_IMAGE # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
| 949 | ifdef INTERNAL_KERNEL_CMDLINE |
| 950 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 951 | endif |
| 952 | ifdef BOARD_KERNEL_BASE |
| 953 | INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 954 | endif |
| 955 | ifdef BOARD_KERNEL_PAGESIZE |
| 956 | INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 957 | endif |
| 958 | endif # BUILDING_VENDOR_BOOT_IMAGE == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 959 | |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 960 | INTERNAL_MKBOOTIMG_VERSION_ARGS := \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 961 | --os_version $(PLATFORM_VERSION_LAST_STABLE) \ |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 962 | --os_patch_level $(PLATFORM_SECURITY_PATCH) |
| 963 | |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 964 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 965 | ifndef BOARD_GKI_SIGNING_ALGORITHM |
| 966 | $(error BOARD_GKI_SIGNING_ALGORITHM should be defined with BOARD_GKI_SIGNING_KEY_PATH) |
| 967 | endif |
| 968 | INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS := \ |
| 969 | --gki_signing_key $(BOARD_GKI_SIGNING_KEY_PATH) \ |
| 970 | --gki_signing_algorithm $(BOARD_GKI_SIGNING_ALGORITHM) \ |
| 971 | --gki_signing_avbtool_path $(AVBTOOL) |
| 972 | endif |
| 973 | |
| 974 | # Using double quote to pass BOARD_GKI_SIGNING_SIGNATURE_ARGS as a single string |
| 975 | # to MKBOOTIMG, although it may contain multiple args. |
| 976 | ifdef BOARD_GKI_SIGNING_SIGNATURE_ARGS |
| 977 | INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS += \ |
| 978 | --gki_signing_signature_args "$(BOARD_GKI_SIGNING_SIGNATURE_ARGS)" |
| 979 | endif |
| 980 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 981 | # Define these only if we are building boot |
| 982 | ifdef BUILDING_BOOT_IMAGE |
| 983 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 984 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 985 | ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true) |
JP Abgrall | 7bb75e4 | 2015-02-11 15:04:59 -0800 | [diff] [blame] | 986 | $(error TARGET_BOOTIMAGE_USE_EXT2 is not supported anymore) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 987 | endif # TARGET_BOOTIMAGE_USE_EXT2 |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 988 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 989 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET), $(eval $(call add-dependency,$(b),$(call bootimage-to-kernel,$(b))))) |
| 990 | |
| 991 | ifeq (true,$(BOARD_AVB_ENABLE)) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 992 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 993 | # $1: boot image target |
| 994 | define build_boot_board_avb_enabled |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 995 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
| 996 | $(INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 997 | $(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] | 998 | $(AVBTOOL) add_hash_footer \ |
| 999 | --image $(1) \ |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 1000 | --partition_size $(call get-bootimage-partition-size,$(1),boot) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1001 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 1002 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1003 | endef |
| 1004 | |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 1005 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(AVBTOOL) $(INTERNAL_BOOTIMAGE_FILES) $(BOARD_AVB_BOOT_KEY_PATH) $(BOARD_GKI_SIGNING_KEY_PATH) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1006 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1007 | $(call build_boot_board_avb_enabled,$@) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1008 | |
| 1009 | .PHONY: bootimage-nodeps |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 1010 | bootimage-nodeps: $(MKBOOTIMG) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) $(BOARD_GKI_SIGNING_KEY_PATH) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1011 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1012 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_board_avb_enabled,$(b))) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1013 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1014 | else ifeq (true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)) # BOARD_AVB_ENABLE != true |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 1015 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1016 | # $1: boot image target |
| 1017 | define build_boot_supports_boot_signer |
| 1018 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
| 1019 | $(BOOT_SIGNER) /boot $@ $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $(1) |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 1020 | $(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] | 1021 | endef |
| 1022 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1023 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(BOOT_SIGNER) |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 1024 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1025 | $(call build_boot_supports_boot_signer,$@) |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 1026 | |
| 1027 | .PHONY: bootimage-nodeps |
| 1028 | bootimage-nodeps: $(MKBOOTIMG) $(BOOT_SIGNER) |
| 1029 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1030 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_supports_boot_signer,$(b))) |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 1031 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1032 | else ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) # PRODUCT_SUPPORTS_BOOT_SIGNER != true |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1033 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1034 | # $1: boot image target |
| 1035 | define build_boot_supports_vboot |
| 1036 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1).unsigned |
| 1037 | $(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] | 1038 | $(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] | 1039 | endef |
| 1040 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1041 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1042 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1043 | $(call build_boot_supports_vboot,$@) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1044 | |
| 1045 | .PHONY: bootimage-nodeps |
Tao Bao | 4b57741 | 2017-02-22 22:54:39 -0800 | [diff] [blame] | 1046 | bootimage-nodeps: $(MKBOOTIMG) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1047 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1048 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_supports_vboot,$(b))) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1049 | |
| 1050 | else # PRODUCT_SUPPORTS_VBOOT != true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1051 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1052 | # $1: boot image target |
| 1053 | define build_boot_novboot |
| 1054 | $(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] | 1055 | $(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] | 1056 | endef |
| 1057 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1058 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1059 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1060 | $(call build_boot_novboot,$@) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1061 | |
| 1062 | .PHONY: bootimage-nodeps |
| 1063 | bootimage-nodeps: $(MKBOOTIMG) |
| 1064 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1065 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_novboot,$(b))) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1066 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1067 | endif # BOARD_AVB_ENABLE |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1068 | endif # BUILDING_BOOT_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1069 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1070 | else # TARGET_NO_KERNEL == "true" |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 1071 | ifdef BOARD_PREBUILT_BOOTIMAGE |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1072 | INTERNAL_PREBUILT_BOOTIMAGE := $(BOARD_PREBUILT_BOOTIMAGE) |
Kiyoung Kim | 62e2231 | 2019-06-20 14:27:45 +0900 | [diff] [blame] | 1073 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1074 | |
| 1075 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1076 | $(INSTALLED_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_BOOTIMAGE) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
| 1077 | cp $(INTERNAL_PREBUILT_BOOTIMAGE) $@ |
| 1078 | $(AVBTOOL) add_hash_footer \ |
| 1079 | --image $@ \ |
| 1080 | --partition_size $(BOARD_BOOTIMAGE_PARTITION_SIZE) \ |
| 1081 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 1082 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1083 | else |
| 1084 | $(INSTALLED_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_BOOTIMAGE) |
| 1085 | cp $(INTERNAL_PREBUILT_BOOTIMAGE) $@ |
| 1086 | endif # BOARD_AVB_ENABLE |
| 1087 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1088 | else # BOARD_PREBUILT_BOOTIMAGE not defined |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1089 | INSTALLED_BOOTIMAGE_TARGET := |
| 1090 | endif # BOARD_PREBUILT_BOOTIMAGE |
| 1091 | endif # TARGET_NO_KERNEL |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1092 | endif # my_installed_prebuilt_gki_apex not defined |
| 1093 | |
| 1094 | my_apex_extracted_boot_image := |
| 1095 | my_installed_prebuilt_gki_apex := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1096 | |
| 1097 | # ----------------------------------------------------------------- |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1098 | # init boot image |
| 1099 | ifeq ($(BUILDING_INIT_BOOT_IMAGE),true) |
| 1100 | |
| 1101 | INSTALLED_INIT_BOOT_IMAGE_TARGET := $(PRODUCT_OUT)/init_boot.img |
| 1102 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_RAMDISK_TARGET) |
| 1103 | |
| 1104 | ifdef BOARD_KERNEL_PAGESIZE |
| 1105 | INTERNAL_INIT_BOOT_IMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1106 | endif |
| 1107 | |
| 1108 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1109 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_INIT_BOOT_IMAGE_KEY_PATH) |
| 1110 | $(call pretty,"Target init_boot image: $@") |
| 1111 | $(MKBOOTIMG) $(INTERNAL_INIT_BOOT_IMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_INIT_ARGS) --output $@ |
| 1112 | $(call assert-max-image-size,$@,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) |
| 1113 | $(AVBTOOL) add_hash_footer \ |
| 1114 | --image $@ \ |
| 1115 | --partition_size $(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE) \ |
| 1116 | --partition_name init_boot $(INTERNAL_AVB_INIT_BOOT_SIGNING_ARGS) \ |
| 1117 | $(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1118 | else |
| 1119 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): |
| 1120 | $(call pretty,"Target init_boot image: $@") |
| 1121 | $(MKBOOTIMG) $(INTERNAL_INIT_BOOT_IMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_INIT_ARGS) --output $@ |
| 1122 | $(call assert-max-image-size,$@,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) |
| 1123 | endif |
| 1124 | |
| 1125 | else # BUILDING_INIT_BOOT_IMAGE is not true |
| 1126 | |
| 1127 | ifdef BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 1128 | INTERNAL_PREBUILT_INIT_BOOT_IMAGE := $(BOARD_PREBUILT_INIT_BOOT_IMAGE) |
| 1129 | INSTALLED_INIT_BOOT_IMAGE_TARGET := $(PRODUCT_OUT)/init_boot.img |
| 1130 | |
| 1131 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1132 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $(AVBTOOL) $(BOARD_AVB_INIT_BOOT_KEY_PATH) |
| 1133 | cp $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $@ |
| 1134 | $(AVBTOOL) add_hash_footer \ |
| 1135 | --image $@ \ |
| 1136 | --partition_size $(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE) \ |
| 1137 | --partition_name boot $(INTERNAL_AVB_INIT_BOOT_SIGNING_ARGS) \ |
| 1138 | $(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1139 | else |
| 1140 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) |
| 1141 | cp $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $@ |
| 1142 | endif # BOARD_AVB_ENABLE |
| 1143 | |
| 1144 | else # BOARD_PREBUILT_INIT_BOOT_IMAGE not defined |
| 1145 | INSTALLED_INIT_BOOT_IMAGE_TARGET := |
| 1146 | endif # BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 1147 | |
| 1148 | endif # BUILDING_INIT_BOOT_IMAGE is not true |
| 1149 | # ----------------------------------------------------------------- |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1150 | # vendor boot image |
| 1151 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 1152 | |
| 1153 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
| 1154 | $(error vboot 1.0 does not support vendor_boot partition) |
| 1155 | endif |
| 1156 | |
| 1157 | INTERNAL_VENDOR_RAMDISK_FILES := $(filter $(TARGET_VENDOR_RAMDISK_OUT)/%, \ |
| 1158 | $(ALL_GENERATED_SOURCES) \ |
| 1159 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1160 | |
Petri Gynther | 6a6d621 | 2021-03-06 00:45:53 -0800 | [diff] [blame] | 1161 | 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] | 1162 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1163 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 1164 | # recovery ramdisk in vendor_boot. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1165 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1166 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1167 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 1168 | $(INTERNAL_VENDOR_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 1169 | endif |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1170 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1171 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1172 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1173 | $(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] | 1174 | |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1175 | INSTALLED_VENDOR_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk.img |
| 1176 | $(INSTALLED_VENDOR_RAMDISK_TARGET): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 1177 | @echo "Target vendor ramdisk: $@" |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1178 | $(copy-file-to-target) |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1179 | |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1180 | INSTALLED_FILES_FILE_VENDOR_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk.txt |
| 1181 | INSTALLED_FILES_JSON_VENDOR_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_RAMDISK:.txt=.json) |
| 1182 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_RAMDISK) |
| 1183 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
| 1184 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1185 | @echo Installed file list: $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1186 | mkdir -p $(dir $@) |
| 1187 | rm -f $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1188 | $(FILESLIST) $(TARGET_VENDOR_RAMDISK_OUT) > $(@:.txt=.json) |
| 1189 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1190 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1191 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1192 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1193 | endif |
| 1194 | ifdef BOARD_KERNEL_BASE |
| 1195 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1196 | endif |
| 1197 | ifdef BOARD_KERNEL_PAGESIZE |
| 1198 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1199 | endif |
| 1200 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1201 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1202 | endif |
| 1203 | |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1204 | ifdef INTERNAL_BOOTCONFIG |
Yi-Yo Chiang | 9c46136 | 2021-04-04 03:26:18 +0800 | [diff] [blame] | 1205 | INTERNAL_VENDOR_BOOTCONFIG_TARGET := $(PRODUCT_OUT)/vendor-bootconfig.img |
| 1206 | $(INTERNAL_VENDOR_BOOTCONFIG_TARGET): |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1207 | rm -f $@ |
| 1208 | $(foreach param,$(INTERNAL_BOOTCONFIG), \ |
| 1209 | printf "%s\n" $(param) >> $@;) |
| 1210 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_bootconfig $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
| 1211 | endif |
| 1212 | |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1213 | # $(1): Build target name |
| 1214 | # $(2): Staging dir to be compressed |
| 1215 | # $(3): Build dependencies |
| 1216 | define build-vendor-ramdisk-fragment-target |
| 1217 | $(1): $(3) $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 1218 | $(MKBOOTFS) -d $(TARGET_OUT) $(2) | $(COMPRESSION_COMMAND) > $$@ |
| 1219 | endef |
| 1220 | |
| 1221 | # $(1): Ramdisk name |
| 1222 | define build-vendor-ramdisk-fragment |
| 1223 | $(strip \ |
| 1224 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragments)/$(1).cpio$(RAMDISK_EXT)) \ |
| 1225 | $(eval $(call build-vendor-ramdisk-fragment-target,$(build_target),$(VENDOR_RAMDISK_FRAGMENT.$(1).STAGING_DIR),$(VENDOR_RAMDISK_FRAGMENT.$(1).FILES))) \ |
| 1226 | $(build_target) \ |
| 1227 | ) |
| 1228 | endef |
| 1229 | |
| 1230 | # $(1): Ramdisk name |
| 1231 | # $(2): Prebuilt file path |
| 1232 | define build-prebuilt-vendor-ramdisk-fragment |
| 1233 | $(strip \ |
| 1234 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,prebuilt_vendor_ramdisk_fragments)/$(1)) \ |
| 1235 | $(eval $(call copy-one-file,$(2),$(build_target))) \ |
| 1236 | $(build_target) \ |
| 1237 | ) |
| 1238 | endef |
| 1239 | |
| 1240 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS := |
| 1241 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS := |
| 1242 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1243 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1244 | $(eval prebuilt_vendor_ramdisk_fragment_file := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 1245 | $(if $(prebuilt_vendor_ramdisk_fragment_file), \ |
| 1246 | $(eval vendor_ramdisk_fragment_target := $(call build-prebuilt-vendor-ramdisk-fragment,$(vendor_ramdisk_fragment),$(prebuilt_vendor_ramdisk_fragment_file))) \ |
| 1247 | $(eval ### else ###), \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1248 | $(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] | 1249 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS += $(vendor_ramdisk_fragment_target)) \ |
| 1250 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS += $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) --vendor_ramdisk_fragment $(vendor_ramdisk_fragment_target)) \ |
| 1251 | ) |
| 1252 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1253 | INSTALLED_VENDOR_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot.img |
| 1254 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET) |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1255 | $(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] | 1256 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1257 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOTIMAGE_KEY_PATH) |
| 1258 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1259 | $(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] | 1260 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1261 | $(AVBTOOL) add_hash_footer \ |
| 1262 | --image $@ \ |
| 1263 | --partition_size $(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE) \ |
| 1264 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_SIGNING_ARGS) \ |
| 1265 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1266 | else |
| 1267 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): |
| 1268 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1269 | $(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] | 1270 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1271 | endif |
| 1272 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 1273 | |
| 1274 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1275 | # NOTICE files |
| 1276 | # |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 1277 | # We are required to publish the licenses for all code under BSD, GPL and |
| 1278 | # Apache licenses (and possibly other more exotic ones as well). We err on the |
| 1279 | # side of caution, so the licenses for other third-party code are included here |
| 1280 | # too. |
| 1281 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1282 | # This needs to be before the systemimage rules, because it adds to |
| 1283 | # ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files |
| 1284 | # go into the systemimage. |
| 1285 | |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1286 | .PHONY: notice_files |
| 1287 | |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1288 | # Create the rule to combine the files into text and html/xml forms |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1289 | # $(1) - xml_excluded_system_product_odm_vendor_dlkm_odm_dlkm| |
| 1290 | # xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm| |
| 1291 | # xml_product|xml_odm|xml_system_ext|xml_system|xml_vendor_dlkm| |
| 1292 | # xml_odm_dlkm|html |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1293 | # $(2) - Plain text output file |
| 1294 | # $(3) - HTML/XML output file |
| 1295 | # $(4) - File title |
Jaewoong Jung | e6f57e0 | 2019-06-16 21:48:42 -0700 | [diff] [blame] | 1296 | # $(5) - Directory to use. Notice files are all $(5)/src. Other |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1297 | # directories in there will be used for scratch |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1298 | # $(6) - Dependencies for the output files |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1299 | # $(7) - Directories to exclude |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1300 | # |
| 1301 | # The algorithm here is that we go collect a hash for each of the notice |
| 1302 | # files and write the names of the files that match that hash. Then |
| 1303 | # to generate the real files, we go print out all of the files and their |
| 1304 | # hashes. |
| 1305 | # |
| 1306 | # These rules are fairly complex, so they depend on this makefile so if |
| 1307 | # it changes, they'll run again. |
| 1308 | # |
| 1309 | # TODO: We could clean this up so that we just record the locations of the |
| 1310 | # original notice files instead of making rules to copy them somwehere. |
| 1311 | # Then we could traverse that without quite as much bash drama. |
| 1312 | define combine-notice-files |
Dan Willemsen | f4cbafa | 2020-04-28 15:57:32 -0700 | [diff] [blame] | 1313 | $(2): PRIVATE_MESSAGE := $(4) |
| 1314 | $(2): PRIVATE_DIR := $(5) |
| 1315 | $(2): .KATI_IMPLICIT_OUTPUTS := $(3) |
| 1316 | $(2): $(6) $(BUILD_SYSTEM)/Makefile build/make/tools/generate-notice-files.py |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1317 | build/make/tools/generate-notice-files.py --text-output $(2) $(foreach xdir, $(7), -e $(xdir) )\ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1318 | $(if $(filter $(1),xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm),-e vendor -e product -e system_ext -e odm -e vendor_dlkm -e odm_dlkm --xml-output, \ |
| 1319 | $(if $(filter $(1),xml_excluded_system_product_odm_vendor_dlkm_odm_dlkm),-e system -e product -e system_ext -e odm -e vendor_dlkm -e odm_dlkm --xml-output, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1320 | $(if $(filter $(1),xml_product),-i product --xml-output, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1321 | $(if $(filter $(1),xml_system_ext),-i system_ext --xml-output, \ |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1322 | $(if $(filter $(1),xml_system),-i system --xml-output, \ |
| 1323 | $(if $(filter $(1),xml_odm),-i odm --xml-output, \ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1324 | $(if $(filter $(1),xml_vendor_dlkm),-i vendor_dlkm --xml-output, \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1325 | $(if $(filter $(1),xml_odm_dlkm),-i odm_dlkm --xml-output, \ |
| 1326 | --html-output)))))))) $(3) \ |
Bob Badour | 5e9e1fb | 2020-07-17 20:47:42 -0700 | [diff] [blame] | 1327 | -t $$(PRIVATE_MESSAGE) $$(foreach dir,$$(sort $$(PRIVATE_DIR)), -s $$(dir)/src) |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1328 | notice_files: $(2) $(3) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1329 | endef |
| 1330 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1331 | # Notice file logic isn't relevant for TARGET_BUILD_APPS |
| 1332 | ifndef TARGET_BUILD_APPS |
| 1333 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1334 | # TODO These intermediate NOTICE.txt/NOTICE.html files should go into |
| 1335 | # TARGET_OUT_NOTICE_FILES now that the notice files are gathered from |
| 1336 | # the src subdirectory. |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1337 | target_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE.txt |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1338 | tools_notice_file_txt := $(HOST_OUT_INTERMEDIATES)/NOTICE.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1339 | tools_notice_file_html := $(HOST_OUT_INTERMEDIATES)/NOTICE.html |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1340 | kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt |
| 1341 | 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] | 1342 | |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1343 | # Some targets get included under $(PRODUCT_OUT) for debug symbols or other |
| 1344 | # reasons--not to be flashed onto any device. Targets under these directories |
| 1345 | # need no associated notice file on the device UI. |
| 1346 | exclude_target_dirs := apex |
| 1347 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 1348 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1349 | ifneq ($(PRODUCT_NOTICE_SPLIT),true) |
| 1350 | target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html |
| 1351 | target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz |
| 1352 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.html.gz |
| 1353 | $(eval $(call combine-notice-files, html, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1354 | $(target_notice_file_txt), \ |
| 1355 | $(target_notice_file_html), \ |
| 1356 | "Notices for files contained in the filesystem images in this directory:", \ |
| 1357 | $(TARGET_OUT_NOTICE_FILES), \ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1358 | $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1359 | $(exclude_target_dirs))) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1360 | $(target_notice_file_html_gz): $(target_notice_file_html) | $(MINIGZIP) |
| 1361 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1362 | $(installed_notice_html_or_xml_gz): $(target_notice_file_html_gz) |
| 1363 | $(copy-file-to-target) |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 1364 | |
| 1365 | $(call declare-0p-target,$(target_notice_file_html_gz)) |
| 1366 | $(call declare-0p-target,$(installed_notice_html_or_xml_gz)) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1367 | else |
| 1368 | target_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml |
| 1369 | target_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml.gz |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1370 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.xml.gz |
| 1371 | |
| 1372 | target_vendor_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.txt |
| 1373 | target_vendor_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml |
| 1374 | target_vendor_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml.gz |
| 1375 | installed_vendor_notice_xml_gz := $(TARGET_OUT_VENDOR)/etc/NOTICE.xml.gz |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1376 | |
| 1377 | target_product_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.txt |
| 1378 | target_product_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml |
| 1379 | target_product_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml.gz |
| 1380 | installed_product_notice_xml_gz := $(TARGET_OUT_PRODUCT)/etc/NOTICE.xml.gz |
Dario Freni | cbca113 | 2018-08-28 18:04:03 +0100 | [diff] [blame] | 1381 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1382 | target_system_ext_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.txt |
| 1383 | target_system_ext_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml |
| 1384 | target_system_ext_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml.gz |
| 1385 | 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] | 1386 | |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1387 | target_odm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.txt |
| 1388 | target_odm_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml |
| 1389 | target_odm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml.gz |
| 1390 | installed_odm_notice_xml_gz := $(TARGET_OUT_ODM)/etc/NOTICE.xml.gz |
| 1391 | |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1392 | target_vendor_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.txt |
| 1393 | target_vendor_dlkm_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.xml |
| 1394 | target_vendor_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.xml.gz |
| 1395 | installed_vendor_dlkm_notice_xml_gz := $(TARGET_OUT_VENDOR_DLKM)/etc/NOTICE.xml.gz |
| 1396 | |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1397 | target_odm_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.txt |
| 1398 | target_odm_dlkm_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.xml |
| 1399 | target_odm_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.xml.gz |
| 1400 | installed_odm_dlkm_notice_xml_gz := $(TARGET_OUT_ODM_DLKM)/etc/NOTICE.xml.gz |
| 1401 | |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1402 | # Notice files are copied to TARGET_OUT_NOTICE_FILES as a side-effect of their module |
| 1403 | # being built. A notice xml file must depend on all modules that could potentially |
| 1404 | # install a license file relevant to it. |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1405 | license_modules := $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1406 | # Only files copied to a system image need system image notices. |
| 1407 | license_modules := $(filter $(PRODUCT_OUT)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1408 | # Phonys/fakes don't have notice files (though their deps might) |
| 1409 | license_modules := $(filter-out $(TARGET_OUT_FAKE)/%,$(license_modules)) |
Jooyung Han | 4416b00 | 2019-05-29 18:28:22 +0900 | [diff] [blame] | 1410 | # testcases are not relevant to the system image. |
| 1411 | license_modules := $(filter-out $(TARGET_OUT_TESTCASES)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1412 | # 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] | 1413 | license_modules_system := $(filter $(TARGET_OUT)/%,$(license_modules)) |
Jeongik Cha | 9917520 | 2020-06-17 17:10:19 +0900 | [diff] [blame] | 1414 | # system_other is relevant to system partition. |
| 1415 | license_modules_system += $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1416 | license_modules_vendor := $(filter $(TARGET_OUT_VENDOR)/%,$(license_modules)) |
| 1417 | license_modules_product := $(filter $(TARGET_OUT_PRODUCT)/%,$(license_modules)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1418 | license_modules_system_ext := $(filter $(TARGET_OUT_SYSTEM_EXT)/%,$(license_modules)) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1419 | license_modules_odm := $(filter $(TARGET_OUT_ODM)/%,$(license_modules)) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1420 | license_modules_vendor_dlkm := $(filter $(TARGET_OUT_VENDOR_DLKM)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1421 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_ODM_DLKM)/%,$(license_modules)) |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1422 | license_modules_agg := $(license_modules_system) \ |
| 1423 | $(license_modules_vendor) \ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1424 | $(license_modules_product) \ |
| 1425 | $(license_modules_system_ext) \ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1426 | $(license_modules_odm) \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1427 | $(license_modules_vendor_dlkm) \ |
| 1428 | $(license_modules_odm_dlkm) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1429 | # targets used for debug symbols only and do not get copied to the device |
| 1430 | license_modules_symbols_only := $(filter $(PRODUCT_OUT)/apex/%,$(license_modules)) |
| 1431 | |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1432 | license_modules_rest := $(filter-out $(license_modules_agg),$(license_modules)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1433 | license_modules_rest := $(filter-out $(license_modules_symbols_only),$(license_modules_rest)) |
| 1434 | |
| 1435 | # Identify the other targets we expect to have notices for: |
| 1436 | # targets copied to the device but are not readable by the UI (e.g. must boot |
| 1437 | # into a different partition to read or don't have an associated /etc |
| 1438 | # directory) must have their notices built somewhere readable. |
| 1439 | license_modules_rehomed := $(filter-out $(PRODUCT_OUT)/%/%,$(license_modules_rest)) # files in root have no /etc |
| 1440 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/recovery/%,$(license_modules_rest)) |
| 1441 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/root/%,$(license_modules_rest)) |
| 1442 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/data/%,$(license_modules_rest)) |
| 1443 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/ramdisk/%,$(license_modules_rest)) |
| 1444 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/debug_ramdisk/%,$(license_modules_rest)) |
Petri Gynther | dc24d88 | 2021-03-02 23:54:08 -0800 | [diff] [blame] | 1445 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/vendor_ramdisk/%,$(license_modules_rest)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1446 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist/%,$(license_modules_rest)) |
| 1447 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist.img,$(license_modules_rest)) |
| 1448 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/system_other/%,$(license_modules_rest)) |
| 1449 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/kernel%,$(license_modules_rest)) |
| 1450 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.img,$(license_modules_rest)) |
| 1451 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.bin,$(license_modules_rest)) |
| 1452 | |
| 1453 | # after removing targets in system images, targets reported in system images, and |
| 1454 | # targets used for debug symbols that do not need notices, nothing must remain. |
| 1455 | license_modules_rest := $(filter-out $(license_modules_rehomed),$(license_modules_rest)) |
| 1456 | $(call maybe-print-list-and-error, $(license_modules_rest), \ |
| 1457 | "Targets added under $(PRODUCT_OUT)/ unaccounted for notice handling.") |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1458 | |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1459 | # If we are building in a configuration that includes a prebuilt vendor.img, we can't |
| 1460 | # update its notice file, so include those notices in the system partition instead |
| 1461 | ifdef BOARD_PREBUILT_VENDORIMAGE |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1462 | license_modules_system += $(license_modules_rehomed) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1463 | system_xml_directories := xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm |
| 1464 | 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] | 1465 | else |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1466 | license_modules_vendor += $(license_modules_rehomed) |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1467 | system_xml_directories := xml_system |
| 1468 | 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] | 1469 | endif |
| 1470 | |
| 1471 | $(eval $(call combine-notice-files, $(system_xml_directories), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1472 | $(target_notice_file_txt), \ |
| 1473 | $(target_notice_file_xml), \ |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1474 | $(system_notice_file_message), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1475 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1476 | $(license_modules_system), \ |
| 1477 | $(exclude_target_dirs))) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1478 | $(eval $(call combine-notice-files, xml_excluded_system_product_odm_vendor_dlkm_odm_dlkm, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1479 | $(target_vendor_notice_file_txt), \ |
| 1480 | $(target_vendor_notice_file_xml), \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1481 | "Notices for files contained in all filesystem images except system/system_ext/product/odm/vendor_dlkm/odm_dlkm in this directory:", \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1482 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1483 | $(license_modules_vendor), \ |
| 1484 | $(exclude_target_dirs))) |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1485 | $(eval $(call combine-notice-files, xml_product, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1486 | $(target_product_notice_file_txt), \ |
| 1487 | $(target_product_notice_file_xml), \ |
| 1488 | "Notices for files contained in the product filesystem image in this directory:", \ |
| 1489 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1490 | $(license_modules_product), \ |
| 1491 | $(exclude_target_dirs))) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1492 | $(eval $(call combine-notice-files, xml_system_ext, \ |
| 1493 | $(target_system_ext_notice_file_txt), \ |
| 1494 | $(target_system_ext_notice_file_xml), \ |
| 1495 | "Notices for files contained in the system_ext filesystem image in this directory:", \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1496 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1497 | $(license_modules_system_ext), \ |
| 1498 | $(exclude_target_dirs))) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1499 | $(eval $(call combine-notice-files, xml_odm, \ |
| 1500 | $(target_odm_notice_file_txt), \ |
| 1501 | $(target_odm_notice_file_xml), \ |
| 1502 | "Notices for files contained in the odm filesystem image in this directory:", \ |
| 1503 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1504 | $(license_modules_odm), \ |
| 1505 | $(exclude_target_dirs))) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1506 | $(eval $(call combine-notice-files, xml_vendor_dlkm, \ |
| 1507 | $(target_vendor_dlkm_notice_file_txt), \ |
| 1508 | $(target_vendor_dlkm_notice_file_xml), \ |
| 1509 | "Notices for files contained in the vendor_dlkm filesystem image in this directory:", \ |
| 1510 | $(TARGET_OUT_NOTICE_FILES), \ |
| 1511 | $(license_modules_vendor_dlkm), \ |
| 1512 | $(exclude_target_dirs))) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1513 | $(eval $(call combine-notice-files, xml_odm_dlkm, \ |
| 1514 | $(target_odm_dlkm_notice_file_txt), \ |
| 1515 | $(target_odm_dlkm_notice_file_xml), \ |
| 1516 | "Notices for files contained in the odm_dlkm filesystem image in this directory:", \ |
| 1517 | $(TARGET_OUT_NOTICE_FILES), \ |
| 1518 | $(license_modules_odm_dlkm), \ |
| 1519 | $(exclude_target_dirs))) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1520 | |
| 1521 | $(target_notice_file_xml_gz): $(target_notice_file_xml) | $(MINIGZIP) |
| 1522 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1523 | $(target_vendor_notice_file_xml_gz): $(target_vendor_notice_file_xml) | $(MINIGZIP) |
| 1524 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1525 | $(target_product_notice_file_xml_gz): $(target_product_notice_file_xml) | $(MINIGZIP) |
| 1526 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1527 | $(target_system_ext_notice_file_xml_gz): $(target_system_ext_notice_file_xml) | $(MINIGZIP) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1528 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1529 | $(target_odm_notice_file_xml_gz): $(target_odm_notice_file_xml) | $(MINIGZIP) |
| 1530 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1531 | $(target_vendor_dlkm_notice_file_xml_gz): $(target_vendor_dlkm_notice_file_xml) | $(MINIGZIP) |
| 1532 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1533 | $(target_odm_dlkm_notice_file_xml_gz): $(target_odm_dlkm_notice_file_xml) | $(MINIGZIP) |
| 1534 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1535 | $(installed_notice_html_or_xml_gz): $(target_notice_file_xml_gz) |
| 1536 | $(copy-file-to-target) |
| 1537 | $(installed_vendor_notice_xml_gz): $(target_vendor_notice_file_xml_gz) |
| 1538 | $(copy-file-to-target) |
| 1539 | $(installed_product_notice_xml_gz): $(target_product_notice_file_xml_gz) |
| 1540 | $(copy-file-to-target) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1541 | $(installed_system_ext_notice_xml_gz): $(target_system_ext_notice_file_xml_gz) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1542 | $(copy-file-to-target) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1543 | $(installed_odm_notice_xml_gz): $(target_odm_notice_file_xml_gz) |
| 1544 | $(copy-file-to-target) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1545 | $(installed_vendor_dlkm_notice_xml_gz): $(target_vendor_dlkm_notice_file_xml_gz) |
| 1546 | $(copy-file-to-target) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1547 | $(installed_odm_dlkm_notice_xml_gz): $(target_odm_dlkm_notice_file_xml_gz) |
| 1548 | $(copy-file-to-target) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1549 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 1550 | $(call declare-0p-target,$(target_notice_file_xml)) |
| 1551 | $(call declare-0p-target,$(target_notice_file_xml_gz)) |
| 1552 | $(call declare-0p-target,$(target_vendor_notice_file_xml)) |
| 1553 | $(call declare-0p-target,$(target_vendor_notice_file_xml_gz)) |
| 1554 | $(call declare-0p-target,$(target_product_notice_file_xml)) |
| 1555 | $(call declare-0p-target,$(target_product_notice_file_xml_gz)) |
| 1556 | $(call declare-0p-target,$(target_system_ext_notice_file_xml)) |
| 1557 | $(call declare-0p-target,$(target_system_ext_notice_file_xml_gz)) |
| 1558 | $(call declare-0p-target,$(target_odm_notice_file_xml)) |
| 1559 | $(call declare-0p-target,$(target_odm_notice_file_xml_gz)) |
| 1560 | $(call declare-0p-target,$(target_vendor_dlkm_notice_file_xml)) |
| 1561 | $(call declare-0p-target,$(target_vendor_dlkm_notice_file_xml_gz)) |
| 1562 | $(call declare-0p-target,$(target_odm_dlkm_notice_file_xml)) |
| 1563 | $(call declare-0p-target,$(target_odm_dlkm_notice_file_xml_gz)) |
| 1564 | $(call declare-0p-target,$(installed_notice_html_or_xml_gz)) |
| 1565 | $(call declare-0p-target,$(installed_vendor_notice_xml_gz)) |
| 1566 | $(call declare-0p-target,$(installed_product_notice_xml_gz)) |
| 1567 | $(call declare-0p-target,$(installed_system_ext_notice_xml_gz)) |
| 1568 | $(call declare-0p-target,$(installed_odm_notice_xml_gz)) |
| 1569 | $(call declare-0p-target,$(installed_vendor_dlkm_notice_xml_gz)) |
| 1570 | $(call declare-0p-target,$(installed_odm_dlkm_notice_xml_gz)) |
| 1571 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1572 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_or_xml_gz) |
| 1573 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_notice_xml_gz) |
| 1574 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_product_notice_xml_gz) |
| 1575 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_ext_notice_xml_gz) |
| 1576 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_notice_xml_gz) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1577 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_dlkm_notice_xml_gz) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1578 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_dlkm_notice_xml_gz) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1579 | endif # PRODUCT_NOTICE_SPLIT |
| 1580 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1581 | 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] | 1582 | |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1583 | $(eval $(call combine-notice-files, html, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1584 | $(tools_notice_file_txt), \ |
| 1585 | $(tools_notice_file_html), \ |
| 1586 | "Notices for files contained in the tools directory:", \ |
| 1587 | $(HOST_OUT_NOTICE_FILES), \ |
| 1588 | $(ALL_DEFAULT_INSTALLED_MODULES) \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1589 | $(winpthreads_notice_file), \ |
| 1590 | $(exclude_target_dirs))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1591 | |
Ying Wang | 62c81f8 | 2013-08-22 20:02:03 -0700 | [diff] [blame] | 1592 | endif # TARGET_BUILD_APPS |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1593 | |
| 1594 | # The kernel isn't really a module, so to get its module file in there, we |
| 1595 | # make the target NOTICE files depend on this particular file too, which will |
| 1596 | # 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] | 1597 | $(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] | 1598 | |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 1599 | $(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] | 1600 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1601 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1602 | # ################################################################# |
| 1603 | # Targets for user images |
| 1604 | # ################################################################# |
| 1605 | |
Ying Wang | 933abf1 | 2010-06-16 14:31:34 -0700 | [diff] [blame] | 1606 | INTERNAL_USERIMAGES_EXT_VARIANT := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1607 | ifeq ($(TARGET_USERIMAGES_USE_EXT2),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1608 | INTERNAL_USERIMAGES_EXT_VARIANT := ext2 |
| 1609 | else |
| 1610 | ifeq ($(TARGET_USERIMAGES_USE_EXT3),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1611 | INTERNAL_USERIMAGES_EXT_VARIANT := ext3 |
| 1612 | else |
| 1613 | ifeq ($(TARGET_USERIMAGES_USE_EXT4),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1614 | INTERNAL_USERIMAGES_EXT_VARIANT := ext4 |
| 1615 | endif |
| 1616 | endif |
| 1617 | endif |
| 1618 | |
JP Abgrall | 6ea5bd6 | 2014-10-22 20:01:22 -0700 | [diff] [blame] | 1619 | # These options tell the recovery updater/installer how to mount the partitions writebale. |
| 1620 | # <fstype>=<fstype_opts>[|<fstype_opts>]... |
| 1621 | # fstype_opts := <opt>[,<opt>]... |
| 1622 | # opt := <name>[=<value>] |
JP Abgrall | 775b1ab | 2014-10-23 16:27:03 -0700 | [diff] [blame] | 1623 | # The following worked on Nexus devices with Kernel 3.1, 3.4, 3.10 |
| 1624 | 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] | 1625 | |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 1626 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)) |
| 1627 | INTERNAL_USERIMAGES_SPARSE_EXT_FLAG := -s |
| 1628 | endif |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1629 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_EROFS_DISABLED)) |
| 1630 | INTERNAL_USERIMAGES_SPARSE_EROFS_FLAG := -s |
| 1631 | endif |
Todd Poynor | b2a555e | 2015-12-15 18:00:14 -0800 | [diff] [blame] | 1632 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_SQUASHFS_DISABLED)) |
| 1633 | INTERNAL_USERIMAGES_SPARSE_SQUASHFS_FLAG := -s |
| 1634 | endif |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 1635 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)) |
| 1636 | INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG := -S |
| 1637 | endif |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1638 | |
| 1639 | INTERNAL_USERIMAGES_DEPS := \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1640 | $(BUILD_IMAGE) \ |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1641 | $(MKE2FS_CONF) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1642 | $(MKEXTUSERIMG) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1643 | |
| 1644 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
| 1645 | INTERNAL_USERIMAGES_DEPS += $(MKF2FSUSERIMG) |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 1646 | endif |
| 1647 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1648 | ifneq ($(filter \ |
| 1649 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1650 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1651 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1652 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1653 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1654 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1655 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1656 | ,erofs),) |
| 1657 | INTERNAL_USERIMAGES_DEPS += $(MKEROFSUSERIMG) |
Kelvin Zhang | 37d4929 | 2021-12-01 14:21:24 -0800 | [diff] [blame] | 1658 | BOARD_EROFS_COMPRESSOR ?= "lz4hc,9" |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1659 | endif |
| 1660 | |
| 1661 | ifneq ($(filter \ |
| 1662 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1663 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1664 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1665 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1666 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1667 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1668 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1669 | ,squashfs),) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1670 | INTERNAL_USERIMAGES_DEPS += $(MKSQUASHFSUSERIMG) |
| 1671 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1672 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1673 | ifeq (true,$(PRODUCT_SUPPORTS_VERITY)) |
Tao Bao | b4ec6d7 | 2018-03-15 23:21:28 -0700 | [diff] [blame] | 1674 | INTERNAL_USERIMAGES_DEPS += $(BUILD_VERITY_METADATA) $(BUILD_VERITY_TREE) $(APPEND2SIMG) $(VERITY_SIGNER) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1675 | ifeq (true,$(PRODUCT_SUPPORTS_VERITY_FEC)) |
Sami Tolvanen | f99b531 | 2015-05-20 07:30:57 +0100 | [diff] [blame] | 1676 | INTERNAL_USERIMAGES_DEPS += $(FEC) |
| 1677 | endif |
Geremy Condra | fd6f751 | 2013-06-16 17:26:08 -0700 | [diff] [blame] | 1678 | endif |
| 1679 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1680 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1681 | INTERNAL_USERIMAGES_DEPS += $(AVBTOOL) |
| 1682 | endif |
| 1683 | |
| 1684 | # Get a colon-separated list of search paths. |
| 1685 | INTERNAL_USERIMAGES_BINARY_PATHS := $(subst $(space),:,$(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))) |
| 1686 | |
Jooyung Han | b27c2e8 | 2020-09-23 19:15:20 +0900 | [diff] [blame] | 1687 | # Collects file_contexts files from modules to be installed |
| 1688 | $(call merge-fc-files, \ |
| 1689 | $(sort $(foreach m,$(product_MODULES),$(ALL_MODULES.$(m).FILE_CONTEXTS))),\ |
| 1690 | $(call intermediates-dir-for,ETC,file_contexts.bin)/file_contexts.modules.tmp) |
| 1691 | |
Alex Klyubin | 092c902 | 2017-03-13 13:28:34 -0700 | [diff] [blame] | 1692 | 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] | 1693 | |
Ying Wang | fdbd9cb | 2012-11-21 10:47:00 -0800 | [diff] [blame] | 1694 | INTERNAL_USERIMAGES_DEPS += $(SELINUX_FC) |
| 1695 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 1696 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1697 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1698 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1699 | $(error vboot 1.0 doesn't support logical partition) |
| 1700 | endif |
| 1701 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 1702 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1703 | |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1704 | # $(1) the partition name (eg system) |
| 1705 | # $(2) the image prop file |
| 1706 | define add-common-flags-to-image-props |
| 1707 | $(eval _var := $(call to-upper,$(1))) |
| 1708 | $(hide) echo "$(1)_selinux_fc=$(SELINUX_FC)" >> $(2) |
| 1709 | $(hide) echo "building_$(1)_image=$(BUILDING_$(_var)_IMAGE)" >> $(2) |
| 1710 | endef |
| 1711 | |
| 1712 | # $(1) the partition name (eg system) |
| 1713 | # $(2) the image prop file |
| 1714 | define add-common-ro-flags-to-image-props |
| 1715 | $(eval _var := $(call to-upper,$(1))) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 1716 | $(if $(BOARD_$(_var)IMAGE_EROFS_COMPRESSOR),$(hide) echo "$(1)_erofs_compressor=$(BOARD_$(_var)IMAGE_EROFS_COMPRESSOR)" >> $(2)) |
| 1717 | $(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] | 1718 | $(if $(BOARD_$(_var)IMAGE_EXTFS_INODE_COUNT),$(hide) echo "$(1)_extfs_inode_count=$(BOARD_$(_var)IMAGE_EXTFS_INODE_COUNT)" >> $(2)) |
| 1719 | $(if $(BOARD_$(_var)IMAGE_EXTFS_RSV_PCT),$(hide) echo "$(1)_extfs_rsv_pct=$(BOARD_$(_var)IMAGE_EXTFS_RSV_PCT)" >> $(2)) |
| 1720 | $(if $(BOARD_$(_var)IMAGE_F2FS_SLOAD_COMPRESS_FLAGS),$(hide) echo "$(1)_f2fs_sldc_flags=$(BOARD_$(_var)IMAGE_F2FS_SLOAD_COMPRESS_FLAGS)" >> $(2)) |
| 1721 | $(if $(BOARD_$(_var)IMAGE_FILE_SYSTEM_COMPRESS),$(hide) echo "$(1)_f2fs_compress=$(BOARD_$(_var)IMAGE_FILE_SYSTEM_COMPRESS)" >> $(2)) |
| 1722 | $(if $(BOARD_$(_var)IMAGE_FILE_SYSTEM_TYPE),$(hide) echo "$(1)_fs_type=$(BOARD_$(_var)IMAGE_FILE_SYSTEM_TYPE)" >> $(2)) |
| 1723 | $(if $(BOARD_$(_var)IMAGE_JOURNAL_SIZE),$(hide) echo "$(1)_journal_size=$(BOARD_$(_var)IMAGE_JOURNAL_SIZE)" >> $(2)) |
| 1724 | $(if $(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "$(1)_reserved_size=$(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE)" >> $(2)) |
| 1725 | $(if $(BOARD_$(_var)IMAGE_PARTITION_SIZE),$(hide) echo "$(1)_size=$(BOARD_$(_var)IMAGE_PARTITION_SIZE)" >> $(2)) |
| 1726 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "$(1)_squashfs_block_size=$(BOARD_$(_var)IMAGE_SQUASHFS_BLOCK_SIZE)" >> $(2)) |
| 1727 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "$(1)_squashfs_compressor=$(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR)" >> $(2)) |
| 1728 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "$(1)_squashfs_compressor_opt=$(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(2)) |
| 1729 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "$(1)_squashfs_disable_4k_align=$(BOARD_$(_var)IMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(2)) |
| 1730 | $(if $(PRODUCT_$(_var)_BASE_FS_PATH),$(hide) echo "$(1)_base_fs_file=$(PRODUCT_$(_var)_BASE_FS_PATH)" >> $(2)) |
| 1731 | $(eval _size := $(BOARD_$(_var)IMAGE_PARTITION_SIZE)) |
| 1732 | $(eval _reserved := $(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE)) |
| 1733 | $(eval _headroom := $(PRODUCT_$(_var)_HEADROOM)) |
David Anderson | 5f4aa6c | 2021-09-23 17:03:14 -0700 | [diff] [blame] | 1734 | $(if $(or $(_size), $(_reserved), $(_headroom)),, |
| 1735 | $(hide) echo "$(1)_disable_sparse=true" >> $(2)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1736 | $(call add-common-flags-to-image-props,$(1),$(2)) |
David Anderson | 9e95a02 | 2021-08-31 21:32:45 -0700 | [diff] [blame] | 1737 | endef |
| 1738 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1739 | # $(1): the path of the output dictionary file |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1740 | # $(2): a subset of "system vendor cache userdata product system_ext oem odm vendor_dlkm odm_dlkm" |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1741 | # $(3): additional "key=value" pairs to append to the dictionary file. |
| 1742 | define generate-image-prop-dictionary |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1743 | $(if $(filter $(2),system),\ |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 1744 | $(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] | 1745 | $(if $(PRODUCT_SYSTEM_HEADROOM),$(hide) echo "system_headroom=$(PRODUCT_SYSTEM_HEADROOM)" >> $(1)) |
Inseob Kim | 9cda397 | 2021-10-12 22:59:12 +0900 | [diff] [blame] | 1746 | $(if $(filter true,$(PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA)),$(hide) echo "fsverity=$(HOST_OUT_EXECUTABLES)/fsverity" >> $(1)) |
| 1747 | $(if $(filter true,$(PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA)),$(hide) echo "fsverity_generate_metadata=true" >> $(1)) |
Inseob Kim | f69346e | 2021-10-13 15:16:33 +0900 | [diff] [blame] | 1748 | $(if $(filter true,$(PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA)),$(hide) echo "fsverity_apk_key=$(FSVERITY_APK_KEY_PATH)" >> $(1)) |
| 1749 | $(if $(filter true,$(PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA)),$(hide) echo "fsverity_apk_manifest=$(FSVERITY_APK_MANIFEST_PATH)" >> $(1)) |
| 1750 | $(if $(filter true,$(PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA)),$(hide) echo "fsverity_apk_out=$(FSVERITY_APK_OUT)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1751 | $(call add-common-ro-flags-to-image-props,system,$(1)) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1752 | ) |
| 1753 | $(if $(filter $(2),system_other),\ |
| 1754 | $(hide) echo "building_system_other_image=$(BUILDING_SYSTEM_OTHER_IMAGE)" >> $(1) |
David Anderson | 9e95a02 | 2021-08-31 21:32:45 -0700 | [diff] [blame] | 1755 | $(if $(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE),, |
| 1756 | $(hide) echo "system_other_disable_sparse=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1757 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1758 | $(if $(filter $(2),userdata),\ |
| 1759 | $(if $(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "userdata_fs_type=$(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1760 | $(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] | 1761 | $(if $(PRODUCT_FS_CASEFOLD),$(hide) echo "needs_casefold=$(PRODUCT_FS_CASEFOLD)" >> $(1)) |
| 1762 | $(if $(PRODUCT_QUOTA_PROJID),$(hide) echo "needs_projid=$(PRODUCT_QUOTA_PROJID)" >> $(1)) |
Jaegeuk Kim | 55c16dd | 2020-10-12 19:50:05 -0700 | [diff] [blame] | 1763 | $(if $(PRODUCT_FS_COMPRESSION),$(hide) echo "needs_compress=$(PRODUCT_FS_COMPRESSION)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1764 | $(call add-common-flags-to-image-props,userdata,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1765 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1766 | $(if $(filter $(2),cache),\ |
| 1767 | $(if $(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "cache_fs_type=$(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1768 | $(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] | 1769 | $(call add-common-flags-to-image-props,cache,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1770 | ) |
| 1771 | $(if $(filter $(2),vendor),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1772 | $(call add-common-ro-flags-to-image-props,vendor,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1773 | ) |
| 1774 | $(if $(filter $(2),product),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1775 | $(call add-common-ro-flags-to-image-props,product,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1776 | ) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1777 | $(if $(filter $(2),system_ext),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1778 | $(call add-common-ro-flags-to-image-props,system_ext,$(1)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 1779 | ) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1780 | $(if $(filter $(2),odm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1781 | $(call add-common-ro-flags-to-image-props,odm,$(1)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1782 | ) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1783 | $(if $(filter $(2),vendor_dlkm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1784 | $(call add-common-ro-flags-to-image-props,vendor_dlkm,$(1)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1785 | ) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1786 | $(if $(filter $(2),odm_dlkm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1787 | $(call add-common-ro-flags-to-image-props,odm_dlkm,$(1)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1788 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1789 | $(if $(filter $(2),oem),\ |
| 1790 | $(if $(BOARD_OEMIMAGE_PARTITION_SIZE),$(hide) echo "oem_size=$(BOARD_OEMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1791 | $(if $(BOARD_OEMIMAGE_JOURNAL_SIZE),$(hide) echo "oem_journal_size=$(BOARD_OEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1792 | $(if $(BOARD_OEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "oem_extfs_inode_count=$(BOARD_OEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1793 | $(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] | 1794 | $(call add-common-flags-to-image-props,oem,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1795 | ) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1796 | $(hide) echo "ext_mkuserimg=$(notdir $(MKEXTUSERIMG))" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1797 | |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1798 | $(if $(INTERNAL_USERIMAGES_EXT_VARIANT),$(hide) echo "fs_type=$(INTERNAL_USERIMAGES_EXT_VARIANT)" >> $(1)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1799 | $(if $(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG),$(hide) echo "extfs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG)" >> $(1)) |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1800 | $(if $(INTERNAL_USERIMAGES_SPARSE_EROFS_FLAG),$(hide) echo "erofs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_EROFS_FLAG)" >> $(1)) |
Todd Poynor | b2a555e | 2015-12-15 18:00:14 -0800 | [diff] [blame] | 1801 | $(if $(INTERNAL_USERIMAGES_SPARSE_SQUASHFS_FLAG),$(hide) echo "squashfs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_SQUASHFS_FLAG)" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 1802 | $(if $(INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG),$(hide) echo "f2fs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG)" >> $(1)) |
David Anderson | 40a821f | 2021-09-22 18:02:01 -0700 | [diff] [blame] | 1803 | $(if $(BOARD_EROFS_COMPRESSOR),$(hide) echo "erofs_default_compressor=$(BOARD_EROFS_COMPRESSOR)" >> $(1)) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 1804 | $(if $(BOARD_EROFS_PCLUSTER_SIZE),$(hide) echo "erofs_pcluster_size=$(BOARD_EROFS_PCLUSTER_SIZE)" >> $(1)) |
| 1805 | $(if $(BOARD_EROFS_SHARE_DUP_BLOCKS),$(hide) echo "erofs_share_dup_blocks=$(BOARD_EROFS_SHARE_DUP_BLOCKS)" >> $(1)) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1806 | $(if $(BOARD_EXT4_SHARE_DUP_BLOCKS),$(hide) echo "ext4_share_dup_blocks=$(BOARD_EXT4_SHARE_DUP_BLOCKS)" >> $(1)) |
| 1807 | $(if $(BOARD_FLASH_LOGICAL_BLOCK_SIZE), $(hide) echo "flash_logical_block_size=$(BOARD_FLASH_LOGICAL_BLOCK_SIZE)" >> $(1)) |
| 1808 | $(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] | 1809 | $(if $(PRODUCT_SUPPORTS_BOOT_SIGNER),$(hide) echo "boot_signer=$(PRODUCT_SUPPORTS_BOOT_SIGNER)" >> $(1)) |
| 1810 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity=$(PRODUCT_SUPPORTS_VERITY)" >> $(1)) |
| 1811 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity_key=$(PRODUCT_VERITY_SIGNING_KEY)" >> $(1)) |
| 1812 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity_signer_cmd=$(notdir $(VERITY_SIGNER))" >> $(1)) |
| 1813 | $(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] | 1814 | $(if $(filter eng, $(TARGET_BUILD_VARIANT)),$(hide) echo "verity_disable=true" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1815 | $(if $(PRODUCT_SYSTEM_VERITY_PARTITION),$(hide) echo "system_verity_block_device=$(PRODUCT_SYSTEM_VERITY_PARTITION)" >> $(1)) |
| 1816 | $(if $(PRODUCT_VENDOR_VERITY_PARTITION),$(hide) echo "vendor_verity_block_device=$(PRODUCT_VENDOR_VERITY_PARTITION)" >> $(1)) |
| 1817 | $(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] | 1818 | $(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] | 1819 | $(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] | 1820 | $(if $(PRODUCT_ODM_DLKM_VERITY_PARTITION),$(hide) echo "odm_dlkm_verity_block_device=$(PRODUCT_ODM_DLKM_VERITY_PARTITION)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1821 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot=$(PRODUCT_SUPPORTS_VBOOT)" >> $(1)) |
| 1822 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_key=$(PRODUCT_VBOOT_SIGNING_KEY)" >> $(1)) |
| 1823 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_subkey=$(PRODUCT_VBOOT_SIGNING_SUBKEY)" >> $(1)) |
| 1824 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "futility=$(notdir $(FUTILITY))" >> $(1)) |
| 1825 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_signer_cmd=$(VBOOT_SIGNER)" >> $(1)) |
Tao Bao | 3cba374 | 2017-05-16 16:27:25 -0700 | [diff] [blame] | 1826 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_avbtool=$(notdir $(AVBTOOL))" >> $(1)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1827 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1828 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1829 | $(if $(BOARD_AVB_ENABLE),\ |
| 1830 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 1831 | $(hide) echo "avb_system_key_path=$(BOARD_AVB_SYSTEM_KEY_PATH)" >> $(1) |
| 1832 | $(hide) echo "avb_system_algorithm=$(BOARD_AVB_SYSTEM_ALGORITHM)" >> $(1) |
| 1833 | $(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] | 1834 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1835 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1836 | $(if $(BOARD_AVB_ENABLE),\ |
| 1837 | $(if $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH),\ |
| 1838 | $(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] | 1839 | $(hide) echo "avb_system_other_algorithm=$(BOARD_AVB_SYSTEM_OTHER_ALGORITHM)" >> $(1))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1840 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1841 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1842 | $(if $(BOARD_AVB_ENABLE),\ |
| 1843 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 1844 | $(hide) echo "avb_vendor_key_path=$(BOARD_AVB_VENDOR_KEY_PATH)" >> $(1) |
| 1845 | $(hide) echo "avb_vendor_algorithm=$(BOARD_AVB_VENDOR_ALGORITHM)" >> $(1) |
| 1846 | $(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] | 1847 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1848 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_add_hashtree_footer_args=$(BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1849 | $(if $(BOARD_AVB_ENABLE),\ |
| 1850 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 1851 | $(hide) echo "avb_product_key_path=$(BOARD_AVB_PRODUCT_KEY_PATH)" >> $(1) |
| 1852 | $(hide) echo "avb_product_algorithm=$(BOARD_AVB_PRODUCT_ALGORITHM)" >> $(1) |
| 1853 | $(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] | 1854 | $(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] | 1855 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1856 | $(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] | 1857 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1858 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 1859 | $(hide) echo "avb_system_ext_key_path=$(BOARD_AVB_SYSTEM_EXT_KEY_PATH)" >> $(1) |
| 1860 | $(hide) echo "avb_system_ext_algorithm=$(BOARD_AVB_SYSTEM_EXT_ALGORITHM)" >> $(1) |
| 1861 | $(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] | 1862 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1863 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_add_hashtree_footer_args=$(BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1864 | $(if $(BOARD_AVB_ENABLE),\ |
| 1865 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 1866 | $(hide) echo "avb_odm_key_path=$(BOARD_AVB_ODM_KEY_PATH)" >> $(1) |
| 1867 | $(hide) echo "avb_odm_algorithm=$(BOARD_AVB_ODM_ALGORITHM)" >> $(1) |
| 1868 | $(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] | 1869 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1870 | $(if $(BOARD_AVB_ENABLE),\ |
| 1871 | $(hide) echo "avb_vendor_dlkm_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1872 | $(if $(BOARD_AVB_ENABLE),\ |
| 1873 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 1874 | $(hide) echo "avb_vendor_dlkm_key_path=$(BOARD_AVB_VENDOR_DLKM_KEY_PATH)" >> $(1) |
| 1875 | $(hide) echo "avb_vendor_dlkm_algorithm=$(BOARD_AVB_VENDOR_DLKM_ALGORITHM)" >> $(1) |
| 1876 | $(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] | 1877 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1878 | $(if $(BOARD_AVB_ENABLE),\ |
| 1879 | $(hide) echo "avb_odm_dlkm_add_hashtree_footer_args=$(BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1880 | $(if $(BOARD_AVB_ENABLE),\ |
| 1881 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 1882 | $(hide) echo "avb_odm_dlkm_key_path=$(BOARD_AVB_ODM_DLKM_KEY_PATH)" >> $(1) |
| 1883 | $(hide) echo "avb_odm_dlkm_algorithm=$(BOARD_AVB_ODM_DLKM_ALGORITHM)" >> $(1) |
| 1884 | $(hide) echo "avb_odm_dlkm_rollback_index_location=$(BOARD_AVB_ODM_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 1885 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
| 1886 | $(hide) echo "recovery_as_boot=true" >> $(1)) |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 1887 | $(if $(filter true,$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)),\ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1888 | $(hide) echo "system_root_image=true" >> $(1)) |
| 1889 | $(hide) echo "root_dir=$(TARGET_ROOT_OUT)" >> $(1) |
Tamas Petz | 89418f0 | 2020-02-03 15:40:15 +0100 | [diff] [blame] | 1890 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITION_SIZE)),\ |
| 1891 | $(hide) echo "use_dynamic_partition_size=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1892 | $(if $(3),$(hide) $(foreach kv,$(3),echo "$(kv)" >> $(1);)) |
| 1893 | endef |
| 1894 | |
| 1895 | # $(1): the path of the output dictionary file |
| 1896 | # $(2): additional "key=value" pairs to append to the dictionary file. |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1897 | PROP_DICTIONARY_IMAGES := oem |
| 1898 | ifdef BUILDING_CACHE_IMAGE |
| 1899 | PROP_DICTIONARY_IMAGES += cache |
| 1900 | endif |
| 1901 | ifdef BUILDING_SYSTEM_IMAGE |
| 1902 | PROP_DICTIONARY_IMAGES += system |
| 1903 | endif |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1904 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 1905 | PROP_DICTIONARY_IMAGES += system_other |
| 1906 | endif |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1907 | ifdef BUILDING_USERDATA_IMAGE |
| 1908 | PROP_DICTIONARY_IMAGES += userdata |
| 1909 | endif |
| 1910 | ifdef BUILDING_VENDOR_IMAGE |
| 1911 | PROP_DICTIONARY_IMAGES += vendor |
| 1912 | endif |
| 1913 | ifdef BUILDING_PRODUCT_IMAGE |
| 1914 | PROP_DICTIONARY_IMAGES += product |
| 1915 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1916 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 1917 | PROP_DICTIONARY_IMAGES += system_ext |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1918 | endif |
| 1919 | ifdef BUILDING_ODM_IMAGE |
| 1920 | PROP_DICTIONARY_IMAGES += odm |
| 1921 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1922 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 1923 | PROP_DICTIONARY_IMAGES += vendor_dlkm |
| 1924 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1925 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 1926 | PROP_DICTIONARY_IMAGES += odm_dlkm |
| 1927 | endif |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1928 | define generate-userimage-prop-dictionary |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1929 | $(call generate-image-prop-dictionary,$(1),$(PROP_DICTIONARY_IMAGES),$(2)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1930 | endef |
| 1931 | |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1932 | # $(1): the path of the input dictionary file, where each line has the format key=value |
| 1933 | # $(2): the key to look up |
| 1934 | define read-image-prop-dictionary |
| 1935 | $$(grep '$(2)=' $(1) | cut -f2- -d'=') |
| 1936 | endef |
| 1937 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1938 | # ----------------------------------------------------------------- |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1939 | # Recovery image |
Doug Zongker | 8cebf1f | 2009-07-07 17:14:25 -0700 | [diff] [blame] | 1940 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 1941 | # Recovery image exists if we are building recovery, or building recovery as boot. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1942 | ifdef BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1943 | |
Ying Wang | 3752614 | 2015-03-10 12:02:57 -0700 | [diff] [blame] | 1944 | INTERNAL_RECOVERYIMAGE_FILES := $(filter $(TARGET_RECOVERY_OUT)/%, \ |
| 1945 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1946 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1947 | INSTALLED_FILES_FILE_RECOVERY := $(PRODUCT_OUT)/installed-files-recovery.txt |
| 1948 | INSTALLED_FILES_JSON_RECOVERY := $(INSTALLED_FILES_FILE_RECOVERY:.txt=.json) |
| 1949 | |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 1950 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 1951 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 1952 | endif |
| 1953 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1954 | # TODO(b/30414428): Can't depend on INTERNAL_RECOVERYIMAGE_FILES alone like other |
| 1955 | # INSTALLED_FILES_FILE_* rules. Because currently there're cp/rsync/rm commands in |
| 1956 | # build-recoveryimage-target, which would touch the files under TARGET_RECOVERY_OUT and race with |
| 1957 | # the call to FILELIST. |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 1958 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1959 | |
| 1960 | $(INSTALLED_FILES_FILE_RECOVERY): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RECOVERY) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1961 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERYIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1962 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1963 | mkdir -p $(dir $@) |
| 1964 | rm -f $@ |
| 1965 | $(FILESLIST) $(TARGET_RECOVERY_ROOT_OUT) > $(@:.txt=.json) |
| 1966 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1967 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1968 | recovery_sepolicy := \ |
| 1969 | $(TARGET_RECOVERY_ROOT_OUT)/sepolicy \ |
Jeff Vander Stoep | 4ff042c | 2017-06-13 08:30:46 -0700 | [diff] [blame] | 1970 | $(TARGET_RECOVERY_ROOT_OUT)/plat_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 1971 | $(TARGET_RECOVERY_ROOT_OUT)/plat_service_contexts \ |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1972 | $(TARGET_RECOVERY_ROOT_OUT)/plat_property_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 1973 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 1974 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_service_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 1975 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_property_contexts \ |
| 1976 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 1977 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_service_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 1978 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_property_contexts \ |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 1979 | $(TARGET_RECOVERY_ROOT_OUT)/odm_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 1980 | $(TARGET_RECOVERY_ROOT_OUT)/odm_property_contexts \ |
| 1981 | $(TARGET_RECOVERY_ROOT_OUT)/product_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 1982 | $(TARGET_RECOVERY_ROOT_OUT)/product_service_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 1983 | $(TARGET_RECOVERY_ROOT_OUT)/product_property_contexts |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 1984 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1985 | # Passed into rsync from non-recovery root to recovery root, to avoid overwriting recovery-specific |
| 1986 | # SELinux files |
| 1987 | IGNORE_RECOVERY_SEPOLICY := $(patsubst $(TARGET_RECOVERY_OUT)/%,--exclude=/%,$(recovery_sepolicy)) |
| 1988 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1989 | # if building multiple boot images from multiple kernels, use the first kernel listed |
| 1990 | # for the recovery image |
| 1991 | recovery_kernel := $(firstword $(INSTALLED_KERNEL_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1992 | recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1993 | recovery_resources_common := bootable/recovery/res |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 1994 | |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 1995 | # Set recovery_density to a density bucket based on TARGET_SCREEN_DENSITY, PRODUCT_AAPT_PREF_CONFIG, |
| 1996 | # or mdpi, in order of preference. We support both specific buckets (e.g. xdpi) and numbers, |
| 1997 | # which get remapped to a bucket. |
| 1998 | recovery_density := $(or $(TARGET_SCREEN_DENSITY),$(PRODUCT_AAPT_PREF_CONFIG),mdpi) |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 1999 | ifeq (,$(filter xxxhdpi xxhdpi xhdpi hdpi mdpi,$(recovery_density))) |
| 2000 | recovery_density_value := $(patsubst %dpi,%,$(recovery_density)) |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 2001 | # 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] | 2002 | # ------160------240------320----------480------------640------ |
| 2003 | # mdpi hdpi xhdpi xxhdpi xxxhdpi |
| 2004 | recovery_density := $(strip \ |
| 2005 | $(or $(if $(filter $(shell echo $$(($(recovery_density_value) >= 560))),1),xxxhdpi),\ |
| 2006 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 400))),1),xxhdpi),\ |
| 2007 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 280))),1),xhdpi),\ |
| 2008 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 200))),1),hdpi,mdpi))) |
Doug Zongker | 8eaeea9 | 2014-05-12 15:32:20 -0700 | [diff] [blame] | 2009 | endif |
| 2010 | |
| 2011 | ifneq (,$(wildcard $(recovery_resources_common)-$(recovery_density))) |
| 2012 | recovery_resources_common := $(recovery_resources_common)-$(recovery_density) |
| 2013 | else |
Doug Zongker | 25d55f8 | 2014-04-04 13:51:15 -0700 | [diff] [blame] | 2014 | recovery_resources_common := $(recovery_resources_common)-xhdpi |
| 2015 | endif |
| 2016 | |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 2017 | # Select the 18x32 font on high-density devices (xhdpi and up); and the 12x22 font on other devices. |
| 2018 | # Note that the font selected here can be overridden for a particular device by putting a font.png |
| 2019 | # in its private recovery resources. |
| 2020 | ifneq (,$(filter xxxhdpi xxhdpi xhdpi,$(recovery_density))) |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2021 | recovery_font := bootable/recovery/fonts/18x32.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2022 | else |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2023 | recovery_font := bootable/recovery/fonts/12x22.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2024 | endif |
| 2025 | |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2026 | |
| 2027 | # We will only generate the recovery background text images if the variable |
| 2028 | # TARGET_RECOVERY_UI_SCREEN_WIDTH is defined. For devices with xxxhdpi and xxhdpi, we set the |
| 2029 | # variable to the commonly used values here, if it hasn't been intialized elsewhere. While for |
| 2030 | # devices with lower density, they must have TARGET_RECOVERY_UI_SCREEN_WIDTH defined in their |
| 2031 | # BoardConfig in order to use this feature. |
| 2032 | ifeq ($(recovery_density),xxxhdpi) |
| 2033 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1440 |
| 2034 | else ifeq ($(recovery_density),xxhdpi) |
| 2035 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1080 |
| 2036 | endif |
| 2037 | |
| 2038 | ifneq ($(TARGET_RECOVERY_UI_SCREEN_WIDTH),) |
| 2039 | # Subtracts the margin width and menu indent from the screen width; it's safe to be conservative. |
| 2040 | ifeq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),) |
| 2041 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - 10)) |
| 2042 | else |
| 2043 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - $(TARGET_RECOVERY_UI_MARGIN_WIDTH) - 10)) |
| 2044 | endif |
| 2045 | |
| 2046 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2047 | 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] | 2048 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/installing_security_text.png |
| 2049 | RECOVERY_ERASING_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/erasing_text.png |
| 2050 | RECOVERY_ERROR_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/error_text.png |
| 2051 | RECOVERY_NO_COMMAND_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/no_command_text.png |
| 2052 | |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2053 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/cancel_wipe_data_text.png |
| 2054 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/factory_data_reset_text.png |
| 2055 | RECOVERY_TRY_AGAIN_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/try_again_text.png |
| 2056 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_confirmation_text.png |
| 2057 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_menu_header_text.png |
| 2058 | |
| 2059 | generated_recovery_text_files := \ |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2060 | $(RECOVERY_INSTALLING_TEXT_FILE) \ |
| 2061 | $(RECOVERY_INSTALLING_SECURITY_TEXT_FILE) \ |
| 2062 | $(RECOVERY_ERASING_TEXT_FILE) \ |
| 2063 | $(RECOVERY_ERROR_TEXT_FILE) \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2064 | $(RECOVERY_NO_COMMAND_TEXT_FILE) \ |
| 2065 | $(RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE) \ |
| 2066 | $(RECOVERY_FACTORY_DATA_RESET_TEXT_FILE) \ |
| 2067 | $(RECOVERY_TRY_AGAIN_TEXT_FILE) \ |
| 2068 | $(RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE) \ |
| 2069 | $(RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2070 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2071 | resource_dir := bootable/recovery/tools/recovery_l10n/res/ |
| 2072 | resource_dir_deps := $(sort $(shell find $(resource_dir) -name *.xml -not -name .*)) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2073 | image_generator_jar := $(HOST_OUT_JAVA_LIBRARIES)/RecoveryImageGenerator.jar |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2074 | zopflipng := $(HOST_OUT_EXECUTABLES)/zopflipng |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2075 | $(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] | 2076 | $(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] | 2077 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RESOURCE_DIR := $(resource_dir) |
| 2078 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_IMAGE_GENERATOR_JAR := $(image_generator_jar) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2079 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_ZOPFLIPNG := $(zopflipng) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2080 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_IMAGE_WIDTH := $(recovery_image_width) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2081 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_BACKGROUND_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2082 | recovery_installing \ |
| 2083 | recovery_installing_security \ |
| 2084 | recovery_erasing \ |
| 2085 | recovery_error \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2086 | recovery_no_command |
| 2087 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_WIPE_DATA_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2088 | recovery_cancel_wipe_data \ |
| 2089 | recovery_factory_data_reset \ |
| 2090 | recovery_try_again \ |
| 2091 | recovery_wipe_data_menu_header \ |
| 2092 | recovery_wipe_data_confirmation |
| 2093 | $(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] | 2094 | $(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] | 2095 | # Prepares the font directory. |
| 2096 | @rm -rf $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
| 2097 | @mkdir -p $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2098 | $(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] | 2099 | @rm -rf $(dir $@) |
| 2100 | @mkdir -p $(dir $@) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2101 | $(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] | 2102 | $(eval output_file := $(dir $@)/$(patsubst recovery_%,%_text.png,$(text_name))) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2103 | $(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] | 2104 | java -jar $(PRIVATE_IMAGE_GENERATOR_JAR) \ |
| 2105 | --image_width $(PRIVATE_RECOVERY_IMAGE_WIDTH) \ |
| 2106 | --text_name $(text_name) \ |
| 2107 | --font_dir $(PRIVATE_RECOVERY_FONT_FILES_DIR) \ |
| 2108 | --resource_dir $(PRIVATE_RESOURCE_DIR) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2109 | --output_file $(output_file) $(center_alignment) && \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2110 | $(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] | 2111 | else |
| 2112 | RECOVERY_INSTALLING_TEXT_FILE := |
| 2113 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := |
| 2114 | RECOVERY_ERASING_TEXT_FILE := |
| 2115 | RECOVERY_ERROR_TEXT_FILE := |
| 2116 | RECOVERY_NO_COMMAND_TEXT_FILE := |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2117 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := |
| 2118 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := |
| 2119 | RECOVERY_TRY_AGAIN_TEXT_FILE := |
| 2120 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := |
| 2121 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2122 | endif # TARGET_RECOVERY_UI_SCREEN_WIDTH |
| 2123 | |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2124 | ifndef TARGET_PRIVATE_RES_DIRS |
| 2125 | TARGET_PRIVATE_RES_DIRS := $(wildcard $(TARGET_DEVICE_DIR)/recovery/res) |
| 2126 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2127 | recovery_resource_deps := $(shell find $(recovery_resources_common) \ |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2128 | $(TARGET_PRIVATE_RES_DIRS) -type f) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2129 | recovery_resource_deps += $(generated_recovery_text_files) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2130 | |
| 2131 | |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2132 | ifdef TARGET_RECOVERY_FSTAB |
| 2133 | recovery_fstab := $(TARGET_RECOVERY_FSTAB) |
| 2134 | else |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 2135 | recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab)) |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2136 | endif |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2137 | ifdef TARGET_RECOVERY_WIPE |
| 2138 | recovery_wipe := $(TARGET_RECOVERY_WIPE) |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2139 | else |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2140 | recovery_wipe := |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2141 | endif |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2142 | |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2143 | # Traditionally with non-A/B OTA we have: |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2144 | # boot.img + recovery-from-boot.p + recovery-resource.dat = recovery.img. |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2145 | # recovery-resource.dat is needed only if we carry an imgdiff patch of the boot and recovery images |
| 2146 | # 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] | 2147 | # |
| 2148 | # We no longer need that if one of the following conditions holds: |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2149 | # 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] | 2150 | # (BOARD_USES_FULL_RECOVERY_IMAGE = true); |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2151 | # b) We build a single image that contains boot and recovery both - no recovery image to install |
| 2152 | # (BOARD_USES_RECOVERY_AS_BOOT = true); |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2153 | # 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] | 2154 | # (BOARD_BUILD_SYSTEM_ROOT_IMAGE = true). |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2155 | # d) We include the recovery DTBO image within recovery - not needing the resource file as we |
| 2156 | # do bsdiff because boot and recovery will contain different number of entries |
| 2157 | # (BOARD_INCLUDE_RECOVERY_DTBO = true). |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2158 | # e) We include the recovery ACPIO image within recovery - not needing the resource file as we |
| 2159 | # do bsdiff because boot and recovery will contain different number of entries |
| 2160 | # (BOARD_INCLUDE_RECOVERY_ACPIO = true). |
Yifan Hong | ef7a971 | 2020-10-20 13:17:42 -0700 | [diff] [blame] | 2161 | # f) We build a single image that contains vendor_boot and recovery both - no recovery image to |
| 2162 | # install |
| 2163 | # (BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT = true). |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2164 | |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2165 | 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] | 2166 | $(BOARD_BUILD_SYSTEM_ROOT_IMAGE) $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO) \ |
| 2167 | $(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT))) |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2168 | # 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] | 2169 | RECOVERY_RESOURCE_ZIP := $(TARGET_OUT_VENDOR)/etc/recovery-resource.dat |
| 2170 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_RESOURCE_ZIP) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2171 | else |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2172 | RECOVERY_RESOURCE_ZIP := |
| 2173 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2174 | |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2175 | INSTALLED_RECOVERY_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/prop.default |
| 2176 | |
| 2177 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): PRIVATE_RECOVERY_UI_PROPERTIES := \ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2178 | TARGET_RECOVERY_UI_ANIMATION_FPS:animation_fps \ |
| 2179 | TARGET_RECOVERY_UI_MARGIN_HEIGHT:margin_height \ |
| 2180 | TARGET_RECOVERY_UI_MARGIN_WIDTH:margin_width \ |
| 2181 | TARGET_RECOVERY_UI_MENU_UNUSABLE_ROWS:menu_unusable_rows \ |
| 2182 | TARGET_RECOVERY_UI_PROGRESS_BAR_BASELINE:progress_bar_baseline \ |
| 2183 | TARGET_RECOVERY_UI_TOUCH_LOW_THRESHOLD:touch_low_threshold \ |
| 2184 | TARGET_RECOVERY_UI_TOUCH_HIGH_THRESHOLD:touch_high_threshold \ |
| 2185 | TARGET_RECOVERY_UI_VR_STEREO_OFFSET:vr_stereo_offset |
| 2186 | |
| 2187 | # Parses the given list of build variables and writes their values as build properties if defined. |
| 2188 | # For example, if a target defines `TARGET_RECOVERY_UI_MARGIN_HEIGHT := 100`, |
| 2189 | # `ro.recovery.ui.margin_height=100` will be appended to the given output file. |
| 2190 | # $(1): Map from the build variable names to property names |
| 2191 | # $(2): Output file |
| 2192 | define append-recovery-ui-properties |
| 2193 | echo "#" >> $(2) |
| 2194 | echo "# RECOVERY UI BUILD PROPERTIES" >> $(2) |
| 2195 | echo "#" >> $(2) |
| 2196 | $(foreach prop,$(1), \ |
| 2197 | $(eval _varname := $(call word-colon,1,$(prop))) \ |
| 2198 | $(eval _propname := $(call word-colon,2,$(prop))) \ |
| 2199 | $(eval _value := $($(_varname))) \ |
| 2200 | $(if $(_value), \ |
| 2201 | echo ro.recovery.ui.$(_propname)=$(_value) >> $(2) &&)) true |
| 2202 | endef |
| 2203 | |
| 2204 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): \ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2205 | $(INSTALLED_BUILD_PROP_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2206 | $(INSTALLED_VENDOR_BUILD_PROP_TARGET) \ |
| 2207 | $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2208 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2209 | $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) |
Tao Bao | 1edaca1 | 2018-09-18 10:22:54 -0700 | [diff] [blame] | 2210 | @echo "Target recovery buildinfo: $@" |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2211 | $(hide) mkdir -p $(dir $@) |
| 2212 | $(hide) rm -f $@ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2213 | $(hide) cat $(INSTALLED_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2214 | $(hide) cat $(INSTALLED_VENDOR_BUILD_PROP_TARGET) >> $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2215 | $(hide) cat $(INSTALLED_ODM_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2216 | $(hide) cat $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) >> $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2217 | $(hide) cat $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2218 | $(call append-recovery-ui-properties,$(PRIVATE_RECOVERY_UI_PROPERTIES),$@) |
| 2219 | |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2220 | # Only install boot/etc/build.prop to recovery image on recovery_as_boot. |
| 2221 | # On device with dedicated recovery partition, the file should come from the boot |
| 2222 | # ramdisk. |
| 2223 | ifeq (true,$(BOARD_USES_RECOVERY_AS_BOOT)) |
| 2224 | INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/$(RAMDISK_BUILD_PROP_REL_PATH) |
| 2225 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET): $(INSTALLED_RAMDISK_BUILD_PROP_TARGET) |
| 2226 | $(copy-file-to-target) |
| 2227 | endif |
| 2228 | |
Yifan Hong | c56931c | 2020-10-28 16:35:19 -0700 | [diff] [blame] | 2229 | INTERNAL_RECOVERYIMAGE_ARGS := --ramdisk $(recovery_ramdisk) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2230 | |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 2231 | 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] | 2232 | INTERNAL_RECOVERYIMAGE_ARGS += $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2233 | # Assumes this has already been stripped |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2234 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 2235 | ifdef INTERNAL_KERNEL_CMDLINE |
| 2236 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2237 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 2238 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2239 | ifdef BOARD_KERNEL_BASE |
| 2240 | INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 2241 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 2242 | ifdef BOARD_KERNEL_PAGESIZE |
| 2243 | INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 2244 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2245 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2246 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2247 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2248 | else |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2249 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_DTBOIMAGE) |
| 2250 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 2251 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2252 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 2253 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_acpio $(BOARD_RECOVERY_ACPIO) |
| 2254 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2255 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 2256 | INTERNAL_RECOVERYIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 2257 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 2258 | endif # (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2259 | ifndef BOARD_RECOVERY_MKBOOTIMG_ARGS |
| 2260 | BOARD_RECOVERY_MKBOOTIMG_ARGS := $(BOARD_MKBOOTIMG_ARGS) |
| 2261 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2262 | |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2263 | $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP): $(MKBOOTFS) $(COMPRESSION_COMMAND_DEPS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2264 | $(INTERNAL_ROOT_FILES) \ |
| 2265 | $(INSTALLED_RAMDISK_TARGET) \ |
| 2266 | $(INTERNAL_RECOVERYIMAGE_FILES) \ |
| 2267 | $(recovery_sepolicy) \ |
| 2268 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 2269 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET) \ |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2270 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2271 | $(recovery_resource_deps) \ |
| 2272 | $(recovery_fstab) |
| 2273 | # Making recovery image |
| 2274 | mkdir -p $(TARGET_RECOVERY_OUT) |
| 2275 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sdcard $(TARGET_RECOVERY_ROOT_OUT)/tmp |
| 2276 | # Copying baseline ramdisk... |
| 2277 | # Use rsync because "cp -Rf" fails to overwrite broken symlinks on Mac. |
| 2278 | rsync -a --exclude=sdcard $(IGNORE_RECOVERY_SEPOLICY) $(IGNORE_CACHE_LINK) $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT) |
| 2279 | # Modifying ramdisk contents... |
| 2280 | $(if $(filter true,$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)),, \ |
| 2281 | ln -sf /system/bin/init $(TARGET_RECOVERY_ROOT_OUT)/init) |
| 2282 | # Removes $(TARGET_RECOVERY_ROOT_OUT)/init*.rc EXCEPT init.recovery*.rc. |
| 2283 | find $(TARGET_RECOVERY_ROOT_OUT) -maxdepth 1 -name 'init*.rc' -type f -not -name "init.recovery.*.rc" | xargs rm -f |
| 2284 | cp $(TARGET_ROOT_OUT)/init.recovery.*.rc $(TARGET_RECOVERY_ROOT_OUT)/ 2> /dev/null || true # Ignore error when the src file doesn't exist. |
| 2285 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2286 | rm -rf $(TARGET_RECOVERY_ROOT_OUT)/res/* |
| 2287 | cp -rf $(recovery_resources_common)/* $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2288 | $(foreach recovery_text_file,$(generated_recovery_text_files), \ |
| 2289 | cp -rf $(recovery_text_file) $(TARGET_RECOVERY_ROOT_OUT)/res/images/ &&) true |
| 2290 | cp -f $(recovery_font) $(TARGET_RECOVERY_ROOT_OUT)/res/images/font.png |
| 2291 | $(foreach item,$(TARGET_PRIVATE_RES_DIRS), \ |
| 2292 | cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/$(newline)) |
| 2293 | $(foreach item,$(recovery_fstab), \ |
| 2294 | cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.fstab) |
| 2295 | $(if $(strip $(recovery_wipe)), \ |
| 2296 | cp -f $(recovery_wipe) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.wipe) |
| 2297 | ln -sf prop.default $(TARGET_RECOVERY_ROOT_OUT)/default.prop |
| 2298 | $(BOARD_RECOVERY_IMAGE_PREPARE) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2299 | $(hide) touch $@ |
| 2300 | |
| 2301 | $(recovery_ramdisk): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2302 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RECOVERY_ROOT_OUT) | $(COMPRESSION_COMMAND) > $(recovery_ramdisk) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2303 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2304 | # $(1): output file |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2305 | # $(2): optional kernel file |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2306 | define build-recoveryimage-target |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2307 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2308 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2309 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_RECOVERY_MKBOOTIMG_ARGS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2310 | --output $(1).unsigned, \ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2311 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2312 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS) \ |
| 2313 | $(BOARD_RECOVERY_MKBOOTIMG_ARGS) --output $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2314 | $(if $(filter true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)),\ |
Nick Desaulniers | d491fcf | 2016-08-08 10:51:10 -0700 | [diff] [blame] | 2315 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2316 | $(BOOT_SIGNER) /boot $(1) $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $(1),\ |
| 2317 | $(BOOT_SIGNER) /recovery $(1) $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $(1)\ |
Nick Desaulniers | d491fcf | 2016-08-08 10:51:10 -0700 | [diff] [blame] | 2318 | )\ |
| 2319 | ) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2320 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
| 2321 | $(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] | 2322 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2323 | $(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] | 2324 | $(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] | 2325 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 2326 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2327 | $(AVBTOOL) add_hash_footer --image $(1) --partition_size $(call get-bootimage-partition-size,$(1),boot) --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS),\ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2328 | $(AVBTOOL) add_hash_footer --image $(1) --partition_size $(BOARD_RECOVERYIMAGE_PARTITION_SIZE) --partition_name recovery $(INTERNAL_AVB_RECOVERY_SIGNING_ARGS) $(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS))) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2329 | endef |
| 2330 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2331 | recoveryimage-deps := $(MKBOOTIMG) $(recovery_ramdisk) $(recovery_kernel) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2332 | ifeq (true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2333 | recoveryimage-deps += $(BOOT_SIGNER) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 2334 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2335 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2336 | recoveryimage-deps += $(VBOOT_SIGNER) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 2337 | endif |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2338 | ifeq (true,$(BOARD_AVB_ENABLE)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2339 | recoveryimage-deps += $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2340 | endif |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2341 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 2342 | recoveryimage-deps += $(BOARD_GKI_SIGNING_KEY_PATH) $(AVBTOOL) |
| 2343 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2344 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2345 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2346 | recoveryimage-deps += $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2347 | else |
| 2348 | recoveryimage-deps += $(BOARD_PREBUILT_DTBOIMAGE) |
| 2349 | endif |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2350 | endif |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2351 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2352 | recoveryimage-deps += $(BOARD_RECOVERY_ACPIO) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2353 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2354 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2355 | recoveryimage-deps += $(INSTALLED_DTBIMAGE_TARGET) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2356 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2357 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2358 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 2359 | $(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] | 2360 | $(INSTALLED_BOOTIMAGE_TARGET): $(recoveryimage-deps) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2361 | $(call pretty,"Target boot image from recovery: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2362 | $(call build-recoveryimage-target, $@, $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $@)))) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2363 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2364 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2365 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(recoveryimage-deps) |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2366 | $(call build-recoveryimage-target, $@, \ |
| 2367 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2368 | |
Tao Bao | 4594d0e | 2015-12-22 09:47:46 -0800 | [diff] [blame] | 2369 | ifdef RECOVERY_RESOURCE_ZIP |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2370 | $(RECOVERY_RESOURCE_ZIP): $(INSTALLED_RECOVERYIMAGE_TARGET) | $(ZIPTIME) |
Doug Zongker | 1a09726 | 2012-09-04 14:45:11 -0700 | [diff] [blame] | 2371 | $(hide) mkdir -p $(dir $@) |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2372 | $(hide) find $(TARGET_RECOVERY_ROOT_OUT)/res -type f | sort | zip -0qrjX $@ -@ |
| 2373 | $(remove-timestamps-from-package) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2374 | endif |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2375 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2376 | .PHONY: recoveryimage-nodeps |
| 2377 | recoveryimage-nodeps: |
| 2378 | @echo "make $@: ignoring dependencies" |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2379 | $(call build-recoveryimage-target, $(INSTALLED_RECOVERYIMAGE_TARGET), \ |
| 2380 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2381 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2382 | else # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2383 | RECOVERY_RESOURCE_ZIP := |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2384 | endif # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2385 | |
| 2386 | .PHONY: recoveryimage |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2387 | recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET) $(RECOVERY_RESOURCE_ZIP) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2388 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2389 | ifneq ($(BOARD_NAND_PAGE_SIZE),) |
| 2390 | $(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] | 2391 | endif |
| 2392 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2393 | ifneq ($(BOARD_NAND_SPARE_SIZE),) |
| 2394 | $(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] | 2395 | endif |
| 2396 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2397 | |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2398 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2399 | # Build debug ramdisk and debug boot image. |
| 2400 | ifneq ($(BUILDING_DEBUG_BOOT_IMAGE)$(BUILDING_DEBUG_VENDOR_BOOT_IMAGE),) |
| 2401 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2402 | INTERNAL_DEBUG_RAMDISK_FILES := $(filter $(TARGET_DEBUG_RAMDISK_OUT)/%, \ |
| 2403 | $(ALL_GENERATED_SOURCES) \ |
| 2404 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2405 | |
| 2406 | # Directories to be picked into the debug ramdisk. |
| 2407 | # As these directories are all merged into one single cpio archive, the order |
| 2408 | # matters. If there are multiple files with the same pathname, then the last one |
| 2409 | # wins. |
| 2410 | # |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2411 | # ramdisk-debug.img will merge the content from either ramdisk.img or |
| 2412 | # ramdisk-recovery.img, depending on whether BOARD_USES_RECOVERY_AS_BOOT |
| 2413 | # is set or not. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2414 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2415 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS := $(TARGET_RECOVERY_ROOT_OUT) |
| 2416 | INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET := $(recovery_ramdisk) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2417 | else # BOARD_USES_RECOVERY_AS_BOOT == true |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2418 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS := $(TARGET_RAMDISK_OUT) |
| 2419 | INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET := $(INSTALLED_RAMDISK_TARGET) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2420 | endif # BOARD_USES_RECOVERY_AS_BOOT != true |
| 2421 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2422 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS += $(TARGET_DEBUG_RAMDISK_OUT) |
| 2423 | INTERNAL_DEBUG_RAMDISK_SRC_DEPS := $(INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET) $(INTERNAL_DEBUG_RAMDISK_FILES) |
| 2424 | |
| 2425 | # INSTALLED_FILES_FILE_DEBUG_RAMDISK would ensure TARGET_DEBUG_RAMDISK_OUT is created. |
| 2426 | INSTALLED_FILES_FILE_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk-debug.txt |
| 2427 | INSTALLED_FILES_JSON_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK:.txt=.json) |
| 2428 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_DEBUG_RAMDISK) |
| 2429 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(INTERNAL_DEBUG_RAMDISK_SRC_DEPS) |
| 2430 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(FILESLIST) $(FILESLIST_UTIL) |
| 2431 | @echo "Installed file list: $@" |
| 2432 | $(hide) rm -f $@ |
| 2433 | $(hide) mkdir -p $(dir $@) $(TARGET_DEBUG_RAMDISK_OUT) |
| 2434 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
| 2435 | $(FILESLIST) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) > $(@:.txt=.json) |
| 2436 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2437 | |
| 2438 | ifdef BUILDING_DEBUG_BOOT_IMAGE |
| 2439 | |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2440 | # ----------------------------------------------------------------- |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2441 | # the debug ramdisk, which is the original ramdisk plus additional |
| 2442 | # files: force_debuggable, adb_debug.prop and userdebug sepolicy. |
| 2443 | # When /force_debuggable is present, /init will load userdebug sepolicy |
| 2444 | # 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] | 2445 | INSTALLED_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-debug.img |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2446 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2447 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2448 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2449 | @echo "Target debug ramdisk: $@" |
| 2450 | $(hide) rm -f $@ |
| 2451 | $(hide) mkdir -p $(dir $@) |
| 2452 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2453 | |
| 2454 | .PHONY: ramdisk_debug-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2455 | ramdisk_debug-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2456 | @echo "make $@: ignoring dependencies" |
| 2457 | $(hide) rm -f $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2458 | $(hide) mkdir -p $(dir $(INSTALLED_DEBUG_RAMDISK_TARGET)) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) |
| 2459 | $(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] | 2460 | |
| 2461 | # ----------------------------------------------------------------- |
| 2462 | # the boot-debug.img, which is the kernel plus ramdisk-debug.img |
| 2463 | # |
| 2464 | # Note: it's intentional to skip signing for boot-debug.img, because it |
| 2465 | # can only be used if the device is unlocked with verification error. |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2466 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2467 | 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] | 2468 | $(PRODUCT_OUT)/$(k).img) |
| 2469 | else |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2470 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-debug.img |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2471 | endif |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2472 | |
| 2473 | # 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] | 2474 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2475 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2476 | 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] | 2477 | else |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2478 | 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] | 2479 | endif |
| 2480 | |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2481 | # If boot.img is chained but boot-debug.img is not signed, libavb in bootloader |
| 2482 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2483 | # Using a test key to sign boot-debug.img to continue booting with the mismatched |
| 2484 | # public key, if the device is unlocked. |
| 2485 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2486 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2487 | endif |
| 2488 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2489 | BOARD_AVB_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2490 | INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2491 | # $(1): the bootimage to sign |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2492 | # $(2): boot image variant (boot, boot-debug, boot-test-harness) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2493 | define test-key-sign-bootimage |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2494 | $(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] | 2495 | $(AVBTOOL) add_hash_footer \ |
| 2496 | --image $(1) \ |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2497 | --partition_size $(call get-bootimage-partition-size,$(1),$(2))\ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2498 | --partition_name boot $(INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS) \ |
| 2499 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2500 | $(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] | 2501 | endef |
| 2502 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2503 | # $(1): output file |
| 2504 | define build-debug-bootimage-target |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2505 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-debug,kernel,$(notdir $(1)))) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2506 | $(INTERNAL_DEBUG_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
| 2507 | $(INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $1 |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2508 | $(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] | 2509 | endef |
| 2510 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2511 | # Depends on original boot.img and ramdisk-debug.img, to build the new boot-debug.img |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2512 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_BOOTIMAGE_TARGET) $(BOARD_GKI_SIGNING_KEY_PATH) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2513 | $(call pretty,"Target boot debug image: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2514 | $(call build-debug-bootimage-target, $@) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2515 | |
| 2516 | .PHONY: bootimage_debug-nodeps |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2517 | bootimage_debug-nodeps: $(MKBOOTIMG) $(BOARD_GKI_SIGNING_KEY_PATH) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2518 | echo "make $@: ignoring dependencies" |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2519 | $(foreach b,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(call build-debug-bootimage-target,$b)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2520 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2521 | endif # BUILDING_DEBUG_BOOT_IMAGE |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2522 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2523 | # ----------------------------------------------------------------- |
| 2524 | # vendor debug ramdisk |
| 2525 | # Combines vendor ramdisk files and debug ramdisk files to build the vendor debug ramdisk. |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2526 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2527 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2528 | INTERNAL_VENDOR_DEBUG_RAMDISK_FILES := $(filter $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/%, \ |
| 2529 | $(ALL_GENERATED_SOURCES) \ |
| 2530 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2531 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2532 | # The debug vendor ramdisk combines vendor ramdisk and debug ramdisk. |
| 2533 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS := $(TARGET_VENDOR_RAMDISK_OUT) |
| 2534 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS := $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2535 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 2536 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 2537 | # recovery ramdisk in vendor_boot. |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2538 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2539 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 2540 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS += $(TARGET_RECOVERY_ROOT_OUT) |
| 2541 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS += $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 2542 | endif # BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT != true |
| 2543 | endif # BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT == true |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2544 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2545 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS += $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) $(TARGET_DEBUG_RAMDISK_OUT) |
| 2546 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS += $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
| 2547 | |
| 2548 | # INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK would ensure TARGET_VENDOR_DEBUG_RAMDISK_OUT is created. |
| 2549 | INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk-debug.txt |
| 2550 | INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK:.txt=.json) |
| 2551 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK) |
| 2552 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS) |
| 2553 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(FILESLIST) $(FILESLIST_UTIL) |
| 2554 | @echo "Installed file list: $@" |
| 2555 | $(hide) rm -f $@ |
| 2556 | $(hide) mkdir -p $(dir $@) $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) |
| 2557 | $(FILESLIST) $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) > $(@:.txt=.json) |
| 2558 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2559 | |
| 2560 | INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-debug)/vendor_ramdisk-debug.cpio$(RAMDISK_EXT) |
| 2561 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2562 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2563 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2564 | $(hide) rm -f $@ |
| 2565 | $(hide) mkdir -p $(dir $@) |
| 2566 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2567 | |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2568 | INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-debug.img |
| 2569 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET) |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 2570 | @echo "Target debug vendor ramdisk: $@" |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2571 | $(copy-file-to-target) |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2572 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2573 | # ----------------------------------------------------------------- |
| 2574 | # vendor_boot-debug.img. |
| 2575 | INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-debug.img |
| 2576 | |
| 2577 | # The util to sign vendor_boot-debug.img with a test key. |
| 2578 | BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2579 | INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2580 | # $(1): the vendor bootimage to sign |
| 2581 | define test-key-sign-vendor-bootimage |
| 2582 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE))) |
| 2583 | $(AVBTOOL) add_hash_footer \ |
| 2584 | --image $(1) \ |
| 2585 | --partition_size $(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE) \ |
| 2586 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS) \ |
| 2587 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 2588 | $(call assert-max-image-size,$(1),$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2589 | endef |
| 2590 | |
| 2591 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 2592 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2593 | endif |
| 2594 | |
| 2595 | # 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] | 2596 | $(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] | 2597 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2598 | $(call pretty,"Target vendor_boot debug image: $@") |
Bowgo Tsai | 7ac9603 | 2021-01-20 16:29:49 +0800 | [diff] [blame] | 2599 | $(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] | 2600 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2601 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 2602 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2603 | endif # BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2604 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2605 | # Appends a few test harness specific properties into the adb_debug.prop. |
| 2606 | ADDITIONAL_TEST_HARNESS_PROPERTIES := ro.audio.silent=1 |
| 2607 | ADDITIONAL_TEST_HARNESS_PROPERTIES += ro.test_harness=1 |
| 2608 | |
| 2609 | INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET := $(strip $(filter $(TARGET_DEBUG_RAMDISK_OUT)/adb_debug.prop,$(INTERNAL_DEBUG_RAMDISK_FILES))) |
| 2610 | INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET := $(TARGET_TEST_HARNESS_RAMDISK_OUT)/adb_debug.prop |
| 2611 | $(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET): $(INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET) |
| 2612 | $(hide) rm -f $@ |
| 2613 | $(hide) mkdir -p $(dir $@) |
| 2614 | ifdef INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET |
| 2615 | $(hide) cp $(INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET) $@ |
| 2616 | endif |
| 2617 | $(hide) echo "" >> $@ |
| 2618 | $(hide) echo "#" >> $@ |
| 2619 | $(hide) echo "# ADDITIONAL TEST HARNESS PROPERTIES" >> $@ |
| 2620 | $(hide) echo "#" >> $@ |
| 2621 | $(hide) $(foreach line,$(ADDITIONAL_TEST_HARNESS_PROPERTIES), \ |
| 2622 | echo "$(line)" >> $@;) |
| 2623 | |
| 2624 | INTERNAL_TEST_HARNESS_RAMDISK_FILES := $(filter $(TARGET_TEST_HARNESS_RAMDISK_OUT)/%, \ |
| 2625 | $(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET) \ |
| 2626 | $(ALL_GENERATED_SOURCES) \ |
| 2627 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2628 | |
| 2629 | # The order is important here. The test harness ramdisk staging directory has to |
| 2630 | # come last so that it can override the adb_debug.prop in the debug ramdisk |
| 2631 | # staging directory. |
| 2632 | INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS := $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
| 2633 | INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) $(INTERNAL_TEST_HARNESS_RAMDISK_FILES) |
| 2634 | |
| 2635 | ifdef BUILDING_DEBUG_BOOT_IMAGE |
| 2636 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2637 | # ----------------------------------------------------------------- |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2638 | # The test harness ramdisk, which is based off debug_ramdisk, plus a |
| 2639 | # few additional test-harness-specific properties in adb_debug.prop. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2640 | INSTALLED_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-test-harness.img |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2641 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2642 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS) |
| 2643 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2644 | @echo "Target test harness ramdisk: $@" |
| 2645 | $(hide) rm -f $@ |
| 2646 | $(hide) mkdir -p $(dir $@) |
| 2647 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2648 | |
| 2649 | .PHONY: ramdisk_test_harness-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2650 | ramdisk_test_harness-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2651 | @echo "make $@: ignoring dependencies" |
| 2652 | $(hide) rm -f $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
| 2653 | $(hide) mkdir -p $(dir $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET)) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) |
| 2654 | $(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] | 2655 | |
| 2656 | # ----------------------------------------------------------------- |
| 2657 | # the boot-test-harness.img, which is the kernel plus ramdisk-test-harness.img |
| 2658 | # |
| 2659 | # Note: it's intentional to skip signing for boot-test-harness.img, because it |
| 2660 | # can only be used if the device is unlocked with verification error. |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2661 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 2662 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-test-harness,$(BOARD_KERNEL_BINARIES)), \ |
| 2663 | $(PRODUCT_OUT)/$(k).img) |
| 2664 | else |
| 2665 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-test-harness.img |
| 2666 | endif |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2667 | |
| 2668 | # 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] | 2669 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2670 | INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS := $(subst $(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_DEBUG_BOOTIMAGE_ARGS)) |
| 2671 | |
| 2672 | # If boot.img is chained but boot-test-harness.img is not signed, libavb in bootloader |
| 2673 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2674 | # Using a test key to sign boot-test-harness.img to continue booting with the mismatched |
| 2675 | # public key, if the device is unlocked. |
| 2676 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
| 2677 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2678 | endif |
| 2679 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2680 | # $(1): output file |
| 2681 | define build-boot-test-harness-target |
| 2682 | $(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] | 2683 | $(INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
| 2684 | $(INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@ |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2685 | $(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] | 2686 | endef |
| 2687 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2688 | # Build the new boot-test-harness.img, based on boot-debug.img and ramdisk-test-harness.img. |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2689 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) $(BOARD_GKI_SIGNING_KEY_PATH) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2690 | $(call pretty,"Target boot test harness image: $@") |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2691 | $(call build-boot-test-harness-target,$@) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2692 | |
| 2693 | .PHONY: bootimage_test_harness-nodeps |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2694 | bootimage_test_harness-nodeps: $(MKBOOTIMG) $(BOARD_GKI_SIGNING_KEY_PATH) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2695 | echo "make $@: ignoring dependencies" |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2696 | $(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] | 2697 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2698 | endif # BUILDING_DEBUG_BOOT_IMAGE |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2699 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2700 | # ----------------------------------------------------------------- |
| 2701 | # vendor test harness ramdisk, which is a vendor ramdisk combined with |
| 2702 | # a test harness ramdisk. |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2703 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2704 | |
| 2705 | INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-test-harness)/vendor_ramdisk-test-harness.cpio$(RAMDISK_EXT) |
| 2706 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2707 | # The order is important here. The test harness ramdisk staging directory has to |
| 2708 | # come last so that it can override the adb_debug.prop in the debug ramdisk |
| 2709 | # staging directory. |
| 2710 | INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DIRS := $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
| 2711 | 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] | 2712 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2713 | $(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] | 2714 | $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2715 | $(hide) rm -f $@ |
| 2716 | $(hide) mkdir -p $(dir $@) |
| 2717 | $(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] | 2718 | |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 2719 | INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-test-harness.img |
| 2720 | $(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 2721 | @echo "Target test harness vendor ramdisk: $@" |
| 2722 | $(copy-file-to-target) |
| 2723 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2724 | # ----------------------------------------------------------------- |
| 2725 | # vendor_boot-test-harness.img. |
| 2726 | INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-test-harness.img |
| 2727 | |
| 2728 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 2729 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2730 | endif |
| 2731 | |
| 2732 | # Depends on vendor_boot.img and vendor_ramdisk-test-harness.cpio$(RAMDISK_EXT) to build the new vendor_boot-test-harness.img |
| 2733 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) |
| 2734 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 2735 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
| 2736 | $(call pretty,"Target vendor_boot test harness image: $@") |
| 2737 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS) --vendor_boot $@ |
| 2738 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2739 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 2740 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2741 | endif # BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2742 | |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2743 | endif # BUILDING_DEBUG_BOOT_IMAGE || BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2744 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2745 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2746 | # Creates a compatibility symlink between two partitions, e.g. /system/vendor to /vendor |
| 2747 | # $1: from location (e.g $(TARGET_OUT)/vendor) |
| 2748 | # $2: destination location (e.g. /vendor) |
| 2749 | # $3: partition image name (e.g. vendor.img) |
| 2750 | define create-partition-compat-symlink |
| 2751 | $(eval \ |
| 2752 | $1: |
| 2753 | @echo Symlink $(patsubst $(PRODUCT_OUT)/%,%,$1) to $2 |
| 2754 | mkdir -p $(dir $1) |
| 2755 | if [ -d $1 ] && [ ! -h $1 ]; then \ |
| 2756 | echo 'Non-symlink $1 detected!' 1>&2; \ |
| 2757 | echo 'You cannot install files to $1 while building a separate $3!' 1>&2; \ |
| 2758 | exit 1; \ |
| 2759 | fi |
| 2760 | ln -sfn $2 $1 |
Jingwen Chen | 7d7f945 | 2020-09-22 13:47:13 +0000 | [diff] [blame] | 2761 | $1: .KATI_SYMLINK_OUTPUTS := $1 |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2762 | ) |
| 2763 | $1 |
| 2764 | endef |
| 2765 | |
| 2766 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2767 | # ----------------------------------------------------------------- |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 2768 | # system image |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2769 | |
Dan Willemsen | 37a1986 | 2018-10-31 16:31:46 -0700 | [diff] [blame] | 2770 | INTERNAL_SYSTEMIMAGE_FILES := $(sort $(filter $(TARGET_OUT)/%, \ |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 2771 | $(ALL_GENERATED_SOURCES) \ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2772 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 2773 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2774 | # Create symlink /system/vendor to /vendor if necessary. |
| 2775 | ifdef BOARD_USES_VENDORIMAGE |
| 2776 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/vendor,/vendor,vendor.img) |
| 2777 | endif |
| 2778 | |
| 2779 | # Create symlink /system/product to /product if necessary. |
| 2780 | ifdef BOARD_USES_PRODUCTIMAGE |
| 2781 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/product,/product,product.img) |
| 2782 | endif |
| 2783 | |
| 2784 | # Create symlink /system/system_ext to /system_ext if necessary. |
| 2785 | ifdef BOARD_USES_SYSTEM_EXTIMAGE |
| 2786 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/system_ext,/system_ext,system_ext.img) |
| 2787 | endif |
| 2788 | |
Ramji Jiyani | f9ce357 | 2021-12-01 00:03:11 +0000 | [diff] [blame] | 2789 | # ----------------------------------------------------------------- |
| 2790 | # system_dlkm partition image |
| 2791 | |
| 2792 | # Create symlinks for system_dlkm on devices with a system_dlkm partition: |
| 2793 | # /system/lib/modules -> /system_dlkm/lib/modules |
| 2794 | # |
| 2795 | # On devices with a system_dlkm partition, |
| 2796 | # - /system/lib/modules is a symlink to a directory that stores system DLKMs. |
| 2797 | # - The system_dlkm partition is mounted at /system_dlkm at runtime. |
| 2798 | ifdef BOARD_USES_SYSTEM_DLKM_PARTITION |
| 2799 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/lib/modules,/system_dlkm/lib/modules,system_dlkm.img) |
| 2800 | endif |
| 2801 | |
Ying Wang | 82cceba | 2012-08-13 15:03:00 -0700 | [diff] [blame] | 2802 | FULL_SYSTEMIMAGE_DEPS := $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2803 | |
| 2804 | # ASAN libraries in the system image - add dependency. |
| 2805 | ASAN_IN_SYSTEM_INSTALLED := $(TARGET_OUT)/asan.tar.bz2 |
Evgenii Stepanov | 8841a7f | 2018-07-27 11:54:32 -0700 | [diff] [blame] | 2806 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2807 | ifeq (true,$(SANITIZE_TARGET_SYSTEM)) |
| 2808 | FULL_SYSTEMIMAGE_DEPS += $(ASAN_IN_SYSTEM_INSTALLED) |
| 2809 | endif |
| 2810 | endif |
| 2811 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 2812 | FULL_SYSTEMIMAGE_DEPS += $(INTERNAL_ROOT_FILES) $(INSTALLED_FILES_FILE_ROOT) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 2813 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2814 | # ----------------------------------------------------------------- |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2815 | ifdef BUILDING_SYSTEM_IMAGE |
| 2816 | |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 2817 | # Install system linker configuration |
| 2818 | # Collect all available stub libraries installed in system and install with predefined linker configuration |
| 2819 | SYSTEM_LINKER_CONFIG := $(TARGET_OUT)/etc/linker.config.pb |
| 2820 | $(SYSTEM_LINKER_CONFIG) : $(INTERNAL_SYSTEMIMAGE_FILES) $(LINKER_CONFIG_PATH_system_linker_config) | conv_linker_config |
| 2821 | $(HOST_OUT_EXECUTABLES)/conv_linker_config systemprovide --source $(LINKER_CONFIG_PATH_system_linker_config)\ |
| 2822 | --output $@ --value "$(STUB_LIBRARIES)" --system "$(TARGET_OUT)" |
| 2823 | |
| 2824 | FULL_SYSTEMIMAGE_DEPS += $(SYSTEM_LINKER_CONFIG) |
| 2825 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2826 | # installed file list |
| 2827 | # Depending on anything that $(BUILT_SYSTEMIMAGE) depends on. |
| 2828 | # We put installed-files.txt ahead of image itself in the dependency graph |
| 2829 | # so that we can get the size stat even if the build fails due to too large |
| 2830 | # system image. |
| 2831 | INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 2832 | INSTALLED_FILES_JSON := $(INSTALLED_FILES_FILE:.txt=.json) |
| 2833 | $(INSTALLED_FILES_FILE): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2834 | $(INSTALLED_FILES_FILE): $(FULL_SYSTEMIMAGE_DEPS) $(FILESLIST) $(FILESLIST_UTIL) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2835 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 2836 | mkdir -p $(dir $@) |
| 2837 | rm -f $@ |
| 2838 | $(FILESLIST) $(TARGET_OUT) > $(@:.txt=.json) |
| 2839 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2840 | |
| 2841 | .PHONY: installed-file-list |
| 2842 | installed-file-list: $(INSTALLED_FILES_FILE) |
Ying Wang | 534fcd7 | 2013-03-01 16:45:35 -0800 | [diff] [blame] | 2843 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 2844 | ifeq ($(HOST_OS),linux) |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 2845 | $(call dist-for-goals, sdk sdk_addon, $(INSTALLED_FILES_FILE)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 2846 | endif |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2847 | |
| 2848 | systemimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2849 | $(call intermediates-dir-for,PACKAGING,systemimage) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2850 | BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img |
| 2851 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2852 | # $(1): output file |
| 2853 | define build-systemimage-target |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2854 | @echo "Target system fs image: $(1)" |
| 2855 | @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] | 2856 | $(call generate-image-prop-dictionary, $(systemimage_intermediates)/system_image_info.txt,system, \ |
Geremy Condra | 5b5f495 | 2014-05-05 22:19:37 -0700 | [diff] [blame] | 2857 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 2858 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2859 | $(BUILD_IMAGE) \ |
| 2860 | $(TARGET_OUT) $(systemimage_intermediates)/system_image_info.txt $(1) $(TARGET_OUT) \ |
| 2861 | || ( mkdir -p $${DIST_DIR}; \ |
| 2862 | cp $(INSTALLED_FILES_FILE) $${DIST_DIR}/installed-files-rescued.txt; \ |
| 2863 | exit 1 ) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2864 | endef |
| 2865 | |
Dan Willemsen | 6b72c73 | 2019-06-12 21:33:38 +0000 | [diff] [blame] | 2866 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 2867 | $(BUILT_SYSTEMIMAGE): $(BOARD_AVB_SYSTEM_KEY_PATH) |
| 2868 | endif |
Inseob Kim | 9cda397 | 2021-10-12 22:59:12 +0900 | [diff] [blame] | 2869 | ifeq ($(PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA),true) |
Inseob Kim | c1d4512 | 2021-11-15 11:26:57 +0900 | [diff] [blame] | 2870 | $(BUILT_SYSTEMIMAGE): $(HOST_OUT_EXECUTABLES)/fsverity $(HOST_OUT_EXECUTABLES)/aapt2 $(HOST_OUT_EXECUTABLES)/apksigner \ |
Inseob Kim | f69346e | 2021-10-13 15:16:33 +0900 | [diff] [blame] | 2871 | $(FSVERITY_APK_MANIFEST_PATH) $(FSVERITY_APK_KEY_PATH).x509.pem $(FSVERITY_APK_KEY_PATH).pk8 |
Inseob Kim | 9cda397 | 2021-10-12 22:59:12 +0900 | [diff] [blame] | 2872 | endif |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2873 | $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2874 | $(call build-systemimage-target,$@) |
| 2875 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 2876 | $(call declare-1p-container,$(BUILT_SYSTEMIMAGE),system/extras) |
| 2877 | $(call declare-container-license-deps,$(BUILT_SYSTEMIMAGE),$(FULL_SYSTEMIMAGE_DEPS),$(PRODUCT_OUT)/:) |
| 2878 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2879 | INSTALLED_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/system.img |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 2880 | SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2881 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2882 | # INSTALLED_SYSTEMIMAGE_TARGET used to be named INSTALLED_SYSTEMIMAGE. Create an alias for backward |
| 2883 | # compatibility, in case device-specific Makefiles still refer to the old name. |
| 2884 | INSTALLED_SYSTEMIMAGE := $(INSTALLED_SYSTEMIMAGE_TARGET) |
| 2885 | |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2886 | # The system partition needs room for the recovery image as well. We |
| 2887 | # now store the recovery image as a binary patch using the boot image |
| 2888 | # as the source (since they are very similar). Generate the patch so |
| 2889 | # we can see how big it's going to be, and include that in the system |
| 2890 | # image size check calculation. |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 2891 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
Sriram Raman | 1e96ac8 | 2009-07-24 13:52:32 -0700 | [diff] [blame] | 2892 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2893 | ifneq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2894 | 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] | 2895 | diff_tool := $(HOST_OUT_EXECUTABLES)/bsdiff |
| 2896 | else |
| 2897 | diff_tool := $(HOST_OUT_EXECUTABLES)/imgdiff |
| 2898 | endif |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2899 | intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch) |
| 2900 | RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2901 | $(RECOVERY_FROM_BOOT_PATCH): PRIVATE_DIFF_TOOL := $(diff_tool) |
| 2902 | $(RECOVERY_FROM_BOOT_PATCH): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2903 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 2904 | $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2905 | $(diff_tool) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2906 | @echo "Construct recovery from boot" |
| 2907 | mkdir -p $(dir $@) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 2908 | $(PRIVATE_DIFF_TOOL) $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) $(INSTALLED_RECOVERYIMAGE_TARGET) $@ |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2909 | else # $(BOARD_USES_FULL_RECOVERY_IMAGE) == true |
| 2910 | RECOVERY_FROM_BOOT_PATCH := $(INSTALLED_RECOVERYIMAGE_TARGET) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 2911 | endif # BOARD_USES_FULL_RECOVERY_IMAGE |
| 2912 | endif # INSTALLED_RECOVERYIMAGE_TARGET |
| 2913 | endif # INSTALLED_BOOTIMAGE_TARGET |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2914 | |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 2915 | $(INSTALLED_SYSTEMIMAGE_TARGET): $(BUILT_SYSTEMIMAGE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2916 | @echo "Install system fs image: $@" |
| 2917 | $(copy-file-to-target) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 2918 | $(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] | 2919 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 2920 | $(call declare-1p-container,$(INSTALLED_SYSTEMIMAGE_TARGET),) |
| 2921 | $(call declare-container-license-deps,$(INSTALLED_SYSTEMIMAGE_TARGET),$(BUILT_SYSTEMIMAGE),$(BUILT_SYSTEMIMAGE):/) |
| 2922 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2923 | systemimage: $(INSTALLED_SYSTEMIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2924 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 2925 | .PHONY: systemlicense |
| 2926 | systemlicense: $(call license-metadata-dir)/$(INSTALLED_SYSTEMIMAGE_TARGET).meta_lic reportmissinglicenses |
| 2927 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2928 | .PHONY: systemimage-nodeps snod |
| 2929 | systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \ |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 2930 | | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2931 | @echo "make $@: ignoring dependencies" |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2932 | $(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE_TARGET)) |
Yifan Hong | 8c3dce0 | 2019-04-09 17:03:57 +0000 | [diff] [blame] | 2933 | $(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] | 2934 | ifeq (true,$(WITH_DEXPREOPT)) |
Dan Willemsen | 395358e | 2020-03-04 23:50:53 +0000 | [diff] [blame] | 2935 | $(warning Warning: with dexpreopt enabled, you may need a full rebuild.) |
Ying Wang | acf01ec | 2012-02-24 11:05:48 -0800 | [diff] [blame] | 2936 | endif |
| 2937 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2938 | endif # BUILDING_SYSTEM_IMAGE |
| 2939 | |
Anton Hansson | 30e061b | 2018-11-12 13:36:46 +0000 | [diff] [blame] | 2940 | .PHONY: sync syncsys |
| 2941 | sync syncsys: $(INTERNAL_SYSTEMIMAGE_FILES) |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 2942 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2943 | # ----------------------------------------------------------------- |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2944 | # Old PDK fusion targets |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 2945 | .PHONY: platform |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2946 | platform: |
| 2947 | echo "Warning: 'platform' is obsolete" |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 2948 | |
| 2949 | .PHONY: platform-java |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2950 | platform-java: |
| 2951 | echo "Warning: 'platform-java' is obsolete" |
Colin Cross | 53c8f97 | 2018-09-28 16:19:42 -0700 | [diff] [blame] | 2952 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2953 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2954 | # data partition image |
| 2955 | INTERNAL_USERDATAIMAGE_FILES := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2956 | $(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2957 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2958 | ifdef BUILDING_USERDATA_IMAGE |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2959 | userdataimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2960 | $(call intermediates-dir-for,PACKAGING,userdata) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 2961 | BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img |
| 2962 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2963 | define build-userdataimage-target |
| 2964 | $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)") |
| 2965 | @mkdir -p $(TARGET_OUT_DATA) |
| 2966 | @mkdir -p $(userdataimage_intermediates) && rm -rf $(userdataimage_intermediates)/userdata_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2967 | $(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] | 2968 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2969 | $(BUILD_IMAGE) \ |
| 2970 | $(TARGET_OUT_DATA) $(userdataimage_intermediates)/userdata_image_info.txt \ |
| 2971 | $(INSTALLED_USERDATAIMAGE_TARGET) $(TARGET_OUT) |
| 2972 | $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2973 | endef |
| 2974 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 2975 | # We just build this directly to the install location. |
| 2976 | INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2977 | INSTALLED_USERDATAIMAGE_TARGET_DEPS := \ |
| 2978 | $(INTERNAL_USERIMAGES_DEPS) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2979 | $(INTERNAL_USERDATAIMAGE_FILES) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2980 | $(INSTALLED_USERDATAIMAGE_TARGET): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2981 | $(build-userdataimage-target) |
| 2982 | |
| 2983 | .PHONY: userdataimage-nodeps |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 2984 | userdataimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2985 | $(build-userdataimage-target) |
| 2986 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2987 | endif # BUILDING_USERDATA_IMAGE |
Ying Wang | e215ed5 | 2012-10-15 14:36:22 -0700 | [diff] [blame] | 2988 | |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2989 | # ASAN libraries in the system image - build rule. |
| 2990 | ASAN_OUT_DIRS_FOR_SYSTEM_INSTALL := $(sort $(patsubst $(PRODUCT_OUT)/%,%,\ |
| 2991 | $(TARGET_OUT_SHARED_LIBRARIES) \ |
| 2992 | $(2ND_TARGET_OUT_SHARED_LIBRARIES) \ |
| 2993 | $(TARGET_OUT_VENDOR_SHARED_LIBRARIES) \ |
| 2994 | $(2ND_TARGET_OUT_VENDOR_SHARED_LIBRARIES))) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 2995 | # Extra options: Enforce the system user for the files to avoid having to change ownership. |
| 2996 | ASAN_SYSTEM_INSTALL_OPTIONS := --owner=1000 --group=1000 |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2997 | # Note: experimentally, it seems not worth it to try to get "best" compression. We don't save |
| 2998 | # enough space. |
| 2999 | $(ASAN_IN_SYSTEM_INSTALLED): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 3000 | 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] | 3001 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3002 | # ----------------------------------------------------------------- |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3003 | # partition table image |
| 3004 | ifdef BOARD_BPT_INPUT_FILES |
| 3005 | |
| 3006 | BUILT_BPTIMAGE_TARGET := $(PRODUCT_OUT)/partition-table.img |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 3007 | BUILT_BPTJSON_TARGET := $(PRODUCT_OUT)/partition-table.bpt |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3008 | |
| 3009 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS := \ |
| 3010 | --output_gpt $(BUILT_BPTIMAGE_TARGET) \ |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 3011 | --output_json $(BUILT_BPTJSON_TARGET) \ |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3012 | $(foreach file, $(BOARD_BPT_INPUT_FILES), --input $(file)) |
| 3013 | |
| 3014 | ifdef BOARD_BPT_DISK_SIZE |
| 3015 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS += --disk_size $(BOARD_BPT_DISK_SIZE) |
| 3016 | endif |
| 3017 | |
| 3018 | define build-bptimage-target |
| 3019 | $(call pretty,"Target partition table image: $(INSTALLED_BPTIMAGE_TARGET)") |
| 3020 | $(hide) $(BPTTOOL) make_table $(INTERNAL_BVBTOOL_MAKE_TABLE_ARGS) $(BOARD_BPT_MAKE_TABLE_ARGS) |
| 3021 | endef |
| 3022 | |
| 3023 | INSTALLED_BPTIMAGE_TARGET := $(BUILT_BPTIMAGE_TARGET) |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 3024 | $(BUILT_BPTJSON_TARGET): $(INSTALLED_BPTIMAGE_TARGET) |
| 3025 | $(hide) touch -c $(BUILT_BPTJSON_TARGET) |
| 3026 | |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3027 | $(INSTALLED_BPTIMAGE_TARGET): $(BPTTOOL) $(BOARD_BPT_INPUT_FILES) |
| 3028 | $(build-bptimage-target) |
| 3029 | |
| 3030 | .PHONY: bptimage-nodeps |
| 3031 | bptimage-nodeps: |
| 3032 | $(build-bptimage-target) |
| 3033 | |
| 3034 | endif # BOARD_BPT_INPUT_FILES |
| 3035 | |
| 3036 | # ----------------------------------------------------------------- |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3037 | # cache partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3038 | ifdef BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3039 | INTERNAL_CACHEIMAGE_FILES := \ |
| 3040 | $(filter $(TARGET_OUT_CACHE)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
| 3041 | |
| 3042 | cacheimage_intermediates := \ |
| 3043 | $(call intermediates-dir-for,PACKAGING,cache) |
| 3044 | BUILT_CACHEIMAGE_TARGET := $(PRODUCT_OUT)/cache.img |
| 3045 | |
| 3046 | define build-cacheimage-target |
| 3047 | $(call pretty,"Target cache fs image: $(INSTALLED_CACHEIMAGE_TARGET)") |
| 3048 | @mkdir -p $(TARGET_OUT_CACHE) |
| 3049 | @mkdir -p $(cacheimage_intermediates) && rm -rf $(cacheimage_intermediates)/cache_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3050 | $(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] | 3051 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3052 | $(BUILD_IMAGE) \ |
| 3053 | $(TARGET_OUT_CACHE) $(cacheimage_intermediates)/cache_image_info.txt \ |
| 3054 | $(INSTALLED_CACHEIMAGE_TARGET) $(TARGET_OUT) |
| 3055 | $(call assert-max-image-size,$(INSTALLED_CACHEIMAGE_TARGET),$(BOARD_CACHEIMAGE_PARTITION_SIZE)) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3056 | endef |
| 3057 | |
| 3058 | # We just build this directly to the install location. |
| 3059 | INSTALLED_CACHEIMAGE_TARGET := $(BUILT_CACHEIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3060 | $(INSTALLED_CACHEIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3061 | $(build-cacheimage-target) |
| 3062 | |
| 3063 | .PHONY: cacheimage-nodeps |
| 3064 | cacheimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 3065 | $(build-cacheimage-target) |
| 3066 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3067 | else # BUILDING_CACHE_IMAGE |
Patrick Tjin | f3b0dc2 | 2016-05-13 15:26:09 -0700 | [diff] [blame] | 3068 | # we need to ignore the broken cache link when doing the rsync |
| 3069 | IGNORE_CACHE_LINK := --exclude=cache |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3070 | endif # BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3071 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 3072 | # ----------------------------------------------------------------- |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3073 | # system_other partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3074 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3075 | ifeq ($(BOARD_USES_SYSTEM_OTHER_ODEX),true) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3076 | # Marker file to identify that odex files are installed |
| 3077 | INSTALLED_SYSTEM_OTHER_ODEX_MARKER := $(TARGET_OUT_SYSTEM_OTHER)/system-other-odex-marker |
| 3078 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER) |
| 3079 | $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER): |
| 3080 | $(hide) touch $@ |
| 3081 | endif |
| 3082 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3083 | INTERNAL_SYSTEMOTHERIMAGE_FILES := \ |
| 3084 | $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3085 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3086 | |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 3087 | # system_other dex files are installed as a side-effect of installing system image files |
| 3088 | INTERNAL_SYSTEMOTHERIMAGE_FILES += $(INTERNAL_SYSTEMIMAGE_FILES) |
| 3089 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3090 | INSTALLED_FILES_FILE_SYSTEMOTHER := $(PRODUCT_OUT)/installed-files-system-other.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3091 | INSTALLED_FILES_JSON_SYSTEMOTHER := $(INSTALLED_FILES_FILE_SYSTEMOTHER:.txt=.json) |
| 3092 | $(INSTALLED_FILES_FILE_SYSTEMOTHER): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEMOTHER) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3093 | $(INSTALLED_FILES_FILE_SYSTEMOTHER) : $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3094 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3095 | mkdir -p $(dir $@) |
| 3096 | rm -f $@ |
| 3097 | $(FILESLIST) $(TARGET_OUT_SYSTEM_OTHER) > $(@:.txt=.json) |
| 3098 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3099 | |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 3100 | # Determines partition size for system_other.img. |
| 3101 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 3102 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)),) |
| 3103 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE := $(BOARD_SUPER_PARTITION_SYSTEM_DEVICE_SIZE) |
| 3104 | endif |
| 3105 | endif |
| 3106 | |
| 3107 | ifndef INTERNAL_SYSTEM_OTHER_PARTITION_SIZE |
| 3108 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE:= $(BOARD_SYSTEMIMAGE_PARTITION_SIZE) |
| 3109 | endif |
| 3110 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3111 | systemotherimage_intermediates := \ |
| 3112 | $(call intermediates-dir-for,PACKAGING,system_other) |
| 3113 | BUILT_SYSTEMOTHERIMAGE_TARGET := $(PRODUCT_OUT)/system_other.img |
| 3114 | |
| 3115 | # Note that we assert the size is SYSTEMIMAGE_PARTITION_SIZE since this is the 'b' system image. |
| 3116 | define build-systemotherimage-target |
| 3117 | $(call pretty,"Target system_other fs image: $(INSTALLED_SYSTEMOTHERIMAGE_TARGET)") |
| 3118 | @mkdir -p $(TARGET_OUT_SYSTEM_OTHER) |
| 3119 | @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] | 3120 | $(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] | 3121 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3122 | $(BUILD_IMAGE) \ |
| 3123 | $(TARGET_OUT_SYSTEM_OTHER) $(systemotherimage_intermediates)/system_other_image_info.txt \ |
| 3124 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) $(TARGET_OUT) |
| 3125 | $(call assert-max-image-size,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3126 | endef |
| 3127 | |
| 3128 | # We just build this directly to the install location. |
| 3129 | INSTALLED_SYSTEMOTHERIMAGE_TARGET := $(BUILT_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3130 | ifneq (true,$(SANITIZE_LITE)) |
| 3131 | # 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] | 3132 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEMOTHER) |
| 3133 | $(build-systemotherimage-target) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3134 | endif |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3135 | |
| 3136 | .PHONY: systemotherimage-nodeps |
| 3137 | systemotherimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 3138 | $(build-systemotherimage-target) |
| 3139 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3140 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3141 | |
| 3142 | |
| 3143 | # ----------------------------------------------------------------- |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3144 | # vendor partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3145 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3146 | INTERNAL_VENDORIMAGE_FILES := \ |
Ying Wang | cff3862 | 2014-07-16 17:46:35 -0700 | [diff] [blame] | 3147 | $(filter $(TARGET_OUT_VENDOR)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3148 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3149 | |
Ying Wang | 8da19e3 | 2015-09-15 14:22:12 -0700 | [diff] [blame] | 3150 | |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 3151 | # Create symlink /vendor/odm to /odm if necessary. |
| 3152 | ifdef BOARD_USES_ODMIMAGE |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3153 | 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] | 3154 | endif |
| 3155 | |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 3156 | # Create symlinks for vendor_dlkm on devices with a vendor_dlkm partition: |
| 3157 | # /vendor/lib/modules -> /vendor_dlkm/lib/modules |
| 3158 | # |
| 3159 | # On devices with a vendor_dlkm partition, |
| 3160 | # - /vendor/lib/modules is a symlink to a directory that stores vendor DLKMs. |
| 3161 | # - /vendor_dlkm/{etc,...} store other vendor_dlkm files directly. The vendor_dlkm partition is |
| 3162 | # mounted at /vendor_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3163 | # are hidden. |
| 3164 | # On devices without a vendor_dlkm partition, |
| 3165 | # - /vendor/lib/modules stores vendor DLKMs directly. |
| 3166 | # - /vendor_dlkm/{etc,...} are symlinks to directories that store other vendor_dlkm files. |
| 3167 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3168 | # The vendor DLKMs and other vendor_dlkm files must not be accessed using other paths because they |
| 3169 | # are not guaranteed to exist on all devices. |
| 3170 | ifdef BOARD_USES_VENDOR_DLKMIMAGE |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3171 | 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] | 3172 | endif |
| 3173 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3174 | INSTALLED_FILES_FILE_VENDOR := $(PRODUCT_OUT)/installed-files-vendor.txt |
| 3175 | INSTALLED_FILES_JSON_VENDOR := $(INSTALLED_FILES_FILE_VENDOR:.txt=.json) |
| 3176 | $(INSTALLED_FILES_FILE_VENDOR): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR) |
| 3177 | $(INSTALLED_FILES_FILE_VENDOR) : $(INTERNAL_VENDORIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3178 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3179 | mkdir -p $(dir $@) |
| 3180 | rm -f $@ |
| 3181 | $(FILESLIST) $(TARGET_OUT_VENDOR) > $(@:.txt=.json) |
| 3182 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | 3d5e2c2 | 2020-07-15 17:01:14 -0700 | [diff] [blame] | 3183 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3184 | vendorimage_intermediates := \ |
| 3185 | $(call intermediates-dir-for,PACKAGING,vendor) |
| 3186 | BUILT_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3187 | define build-vendorimage-target |
| 3188 | $(call pretty,"Target vendor fs image: $(INSTALLED_VENDORIMAGE_TARGET)") |
| 3189 | @mkdir -p $(TARGET_OUT_VENDOR) |
| 3190 | @mkdir -p $(vendorimage_intermediates) && rm -rf $(vendorimage_intermediates)/vendor_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3191 | $(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] | 3192 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3193 | $(BUILD_IMAGE) \ |
| 3194 | $(TARGET_OUT_VENDOR) $(vendorimage_intermediates)/vendor_image_info.txt \ |
| 3195 | $(INSTALLED_VENDORIMAGE_TARGET) $(TARGET_OUT) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3196 | $(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] | 3197 | endef |
| 3198 | |
| 3199 | # We just build this directly to the install location. |
| 3200 | INSTALLED_VENDORIMAGE_TARGET := $(BUILT_VENDORIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3201 | $(INSTALLED_VENDORIMAGE_TARGET): \ |
| 3202 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3203 | $(INTERNAL_VENDORIMAGE_FILES) \ |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3204 | $(INSTALLED_FILES_FILE_VENDOR) \ |
| 3205 | $(RECOVERY_FROM_BOOT_PATCH) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3206 | $(build-vendorimage-target) |
| 3207 | |
Steven Moreland | a2e734d | 2017-03-07 12:10:09 -0800 | [diff] [blame] | 3208 | .PHONY: vendorimage-nodeps vnod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3209 | vendorimage-nodeps vnod: | $(INTERNAL_USERIMAGES_DEPS) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3210 | $(build-vendorimage-target) |
| 3211 | |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 3212 | sync: $(INTERNAL_VENDORIMAGE_FILES) |
| 3213 | |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 3214 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 3215 | INSTALLED_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
| 3216 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDORIMAGE),$(INSTALLED_VENDORIMAGE_TARGET))) |
| 3217 | endif |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3218 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3219 | # ----------------------------------------------------------------- |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3220 | # product partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3221 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3222 | INTERNAL_PRODUCTIMAGE_FILES := \ |
| 3223 | $(filter $(TARGET_OUT_PRODUCT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3224 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3225 | |
| 3226 | INSTALLED_FILES_FILE_PRODUCT := $(PRODUCT_OUT)/installed-files-product.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3227 | INSTALLED_FILES_JSON_PRODUCT := $(INSTALLED_FILES_FILE_PRODUCT:.txt=.json) |
| 3228 | $(INSTALLED_FILES_FILE_PRODUCT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_PRODUCT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3229 | $(INSTALLED_FILES_FILE_PRODUCT) : $(INTERNAL_PRODUCTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3230 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3231 | mkdir -p $(dir $@) |
| 3232 | rm -f $@ |
| 3233 | $(FILESLIST) $(TARGET_OUT_PRODUCT) > $(@:.txt=.json) |
| 3234 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3235 | |
| 3236 | productimage_intermediates := \ |
| 3237 | $(call intermediates-dir-for,PACKAGING,product) |
| 3238 | BUILT_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3239 | define build-productimage-target |
| 3240 | $(call pretty,"Target product fs image: $(INSTALLED_PRODUCTIMAGE_TARGET)") |
| 3241 | @mkdir -p $(TARGET_OUT_PRODUCT) |
| 3242 | @mkdir -p $(productimage_intermediates) && rm -rf $(productimage_intermediates)/product_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3243 | $(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] | 3244 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3245 | $(BUILD_IMAGE) \ |
| 3246 | $(TARGET_OUT_PRODUCT) $(productimage_intermediates)/product_image_info.txt \ |
| 3247 | $(INSTALLED_PRODUCTIMAGE_TARGET) $(TARGET_OUT) |
| 3248 | $(call assert-max-image-size,$(INSTALLED_PRODUCTIMAGE_TARGET),$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3249 | endef |
| 3250 | |
| 3251 | # We just build this directly to the install location. |
| 3252 | INSTALLED_PRODUCTIMAGE_TARGET := $(BUILT_PRODUCTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3253 | $(INSTALLED_PRODUCTIMAGE_TARGET): \ |
| 3254 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3255 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 3256 | $(INSTALLED_FILES_FILE_PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3257 | $(build-productimage-target) |
| 3258 | |
| 3259 | .PHONY: productimage-nodeps pnod |
| 3260 | productimage-nodeps pnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3261 | $(build-productimage-target) |
| 3262 | |
| 3263 | sync: $(INTERNAL_PRODUCTIMAGE_FILES) |
| 3264 | |
| 3265 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 3266 | INSTALLED_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3267 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_PRODUCTIMAGE),$(INSTALLED_PRODUCTIMAGE_TARGET))) |
| 3268 | endif |
| 3269 | |
| 3270 | # ----------------------------------------------------------------- |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3271 | # system_ext partition image |
| 3272 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3273 | INTERNAL_SYSTEM_EXTIMAGE_FILES := \ |
| 3274 | $(filter $(TARGET_OUT_SYSTEM_EXT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3275 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3276 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3277 | INSTALLED_FILES_FILE_SYSTEM_EXT := $(PRODUCT_OUT)/installed-files-system_ext.txt |
| 3278 | INSTALLED_FILES_JSON_SYSTEM_EXT := $(INSTALLED_FILES_FILE_SYSTEM_EXT:.txt=.json) |
| 3279 | $(INSTALLED_FILES_FILE_SYSTEM_EXT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_EXT) |
| 3280 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) : $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3281 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3282 | mkdir -p $(dir $@) |
| 3283 | rm -f $@ |
| 3284 | $(FILESLIST) $(TARGET_OUT_SYSTEM_EXT) > $(@:.txt=.json) |
| 3285 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3286 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3287 | system_extimage_intermediates := \ |
| 3288 | $(call intermediates-dir-for,PACKAGING,system_ext) |
| 3289 | BUILT_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3290 | define build-system_extimage-target |
| 3291 | $(call pretty,"Target system_ext fs image: $(INSTALLED_SYSTEM_EXTIMAGE_TARGET)") |
| 3292 | @mkdir -p $(TARGET_OUT_SYSTEM_EXT) |
| 3293 | @mkdir -p $(system_extimage_intermediates) && rm -rf $(system_extimage_intermediates)/system_ext_image_info.txt |
| 3294 | $(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] | 3295 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3296 | $(BUILD_IMAGE) \ |
| 3297 | $(TARGET_OUT_SYSTEM_EXT) \ |
| 3298 | $(system_extimage_intermediates)/system_ext_image_info.txt \ |
| 3299 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 3300 | $(TARGET_OUT) |
| 3301 | $(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] | 3302 | endef |
| 3303 | |
| 3304 | # We just build this directly to the install location. |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3305 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(BUILT_SYSTEM_EXTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3306 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET): \ |
| 3307 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3308 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 3309 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3310 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3311 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3312 | .PHONY: systemextimage-nodeps senod |
| 3313 | systemextimage-nodeps senod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3314 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3315 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3316 | sync: $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3317 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3318 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 3319 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3320 | $(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] | 3321 | endif |
| 3322 | |
| 3323 | # ----------------------------------------------------------------- |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3324 | # odm partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3325 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3326 | INTERNAL_ODMIMAGE_FILES := \ |
| 3327 | $(filter $(TARGET_OUT_ODM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3328 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3329 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3330 | # Create symlinks for odm_dlkm on devices with a odm_dlkm partition: |
| 3331 | # /odm/lib/modules -> /odm_dlkm/lib/modules |
| 3332 | # |
| 3333 | # On devices with a odm_dlkm partition, |
| 3334 | # - /odm/lib/modules is a symlink to a directory that stores odm DLKMs. |
| 3335 | # - /odm_dlkm/{etc,...} store other odm_dlkm files directly. The odm_dlkm partition is |
| 3336 | # mounted at /odm_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3337 | # are hidden. |
| 3338 | # On devices without a odm_dlkm partition, |
| 3339 | # - /odm/lib/modules stores odm DLKMs directly. |
| 3340 | # - /odm_dlkm/{etc,...} are symlinks to directories that store other odm_dlkm files. |
| 3341 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3342 | # The odm DLKMs and other odm_dlkm files must not be accessed using other paths because they |
| 3343 | # are not guaranteed to exist on all devices. |
| 3344 | ifdef BOARD_USES_ODM_DLKMIMAGE |
| 3345 | INTERNAL_ODMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT_ODM)/lib/modules,/odm_dlkm/lib/modules,odm_dlkm.img) |
| 3346 | endif |
| 3347 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3348 | INSTALLED_FILES_FILE_ODM := $(PRODUCT_OUT)/installed-files-odm.txt |
| 3349 | INSTALLED_FILES_JSON_ODM := $(INSTALLED_FILES_FILE_ODM:.txt=.json) |
| 3350 | $(INSTALLED_FILES_FILE_ODM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3351 | $(INSTALLED_FILES_FILE_ODM) : $(INTERNAL_ODMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3352 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3353 | mkdir -p $(dir $@) |
| 3354 | rm -f $@ |
| 3355 | $(FILESLIST) $(TARGET_OUT_ODM) > $(@:.txt=.json) |
| 3356 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3357 | |
| 3358 | odmimage_intermediates := \ |
| 3359 | $(call intermediates-dir-for,PACKAGING,odm) |
| 3360 | BUILT_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3361 | define build-odmimage-target |
| 3362 | $(call pretty,"Target odm fs image: $(INSTALLED_ODMIMAGE_TARGET)") |
| 3363 | @mkdir -p $(TARGET_OUT_ODM) |
| 3364 | @mkdir -p $(odmimage_intermediates) && rm -rf $(odmimage_intermediates)/odm_image_info.txt |
David Anderson | 17063cf | 2021-08-27 16:43:09 -0700 | [diff] [blame] | 3365 | $(call generate-image-prop-dictionary, $(odmimage_intermediates)/odm_image_info.txt, odm, \ |
| 3366 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3367 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3368 | $(BUILD_IMAGE) \ |
| 3369 | $(TARGET_OUT_ODM) $(odmimage_intermediates)/odm_image_info.txt \ |
| 3370 | $(INSTALLED_ODMIMAGE_TARGET) $(TARGET_OUT) |
| 3371 | $(call assert-max-image-size,$(INSTALLED_ODMIMAGE_TARGET),$(BOARD_ODMIMAGE_PARTITION_SIZE)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3372 | endef |
| 3373 | |
| 3374 | # We just build this directly to the install location. |
| 3375 | INSTALLED_ODMIMAGE_TARGET := $(BUILT_ODMIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3376 | $(INSTALLED_ODMIMAGE_TARGET): \ |
| 3377 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3378 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 3379 | $(INSTALLED_FILES_FILE_ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3380 | $(build-odmimage-target) |
| 3381 | |
| 3382 | .PHONY: odmimage-nodeps onod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3383 | odmimage-nodeps onod: | $(INTERNAL_USERIMAGES_DEPS) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3384 | $(build-odmimage-target) |
| 3385 | |
| 3386 | sync: $(INTERNAL_ODMIMAGE_FILES) |
| 3387 | |
| 3388 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 3389 | INSTALLED_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3390 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODMIMAGE),$(INSTALLED_ODMIMAGE_TARGET))) |
| 3391 | endif |
| 3392 | |
| 3393 | # ----------------------------------------------------------------- |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3394 | # vendor_dlkm partition image |
| 3395 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 3396 | INTERNAL_VENDOR_DLKMIMAGE_FILES := \ |
| 3397 | $(filter $(TARGET_OUT_VENDOR_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3398 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3399 | |
| 3400 | INSTALLED_FILES_FILE_VENDOR_DLKM := $(PRODUCT_OUT)/installed-files-vendor_dlkm.txt |
| 3401 | INSTALLED_FILES_JSON_VENDOR_DLKM := $(INSTALLED_FILES_FILE_VENDOR_DLKM:.txt=.json) |
| 3402 | $(INSTALLED_FILES_FILE_VENDOR_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DLKM) |
| 3403 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) : $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3404 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3405 | mkdir -p $(dir $@) |
| 3406 | rm -f $@ |
| 3407 | $(FILESLIST) $(TARGET_OUT_VENDOR_DLKM) > $(@:.txt=.json) |
| 3408 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3409 | |
| 3410 | vendor_dlkmimage_intermediates := \ |
| 3411 | $(call intermediates-dir-for,PACKAGING,vendor_dlkm) |
| 3412 | BUILT_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 3413 | define build-vendor_dlkmimage-target |
| 3414 | $(call pretty,"Target vendor_dlkm fs image: $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)") |
| 3415 | @mkdir -p $(TARGET_OUT_VENDOR_DLKM) |
| 3416 | @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] | 3417 | $(call generate-image-prop-dictionary, $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt, \ |
| 3418 | vendor_dlkm, skip_fsck=true) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3419 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3420 | $(BUILD_IMAGE) \ |
| 3421 | $(TARGET_OUT_VENDOR_DLKM) $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt \ |
| 3422 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3423 | $(call assert-max-image-size,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE)) |
| 3424 | endef |
| 3425 | |
| 3426 | # We just build this directly to the install location. |
| 3427 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(BUILT_VENDOR_DLKMIMAGE_TARGET) |
| 3428 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET): \ |
| 3429 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3430 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 3431 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) |
| 3432 | $(build-vendor_dlkmimage-target) |
| 3433 | |
| 3434 | .PHONY: vendor_dlkmimage-nodeps vdnod |
| 3435 | vendor_dlkmimage-nodeps vdnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3436 | $(build-vendor_dlkmimage-target) |
| 3437 | |
| 3438 | sync: $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
| 3439 | |
| 3440 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
| 3441 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 3442 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDOR_DLKMIMAGE),$(INSTALLED_VENDOR_DLKMIMAGE_TARGET))) |
| 3443 | endif |
| 3444 | |
| 3445 | # ----------------------------------------------------------------- |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3446 | # odm_dlkm partition image |
| 3447 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 3448 | INTERNAL_ODM_DLKMIMAGE_FILES := \ |
| 3449 | $(filter $(TARGET_OUT_ODM_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3450 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3451 | |
| 3452 | INSTALLED_FILES_FILE_ODM_DLKM := $(PRODUCT_OUT)/installed-files-odm_dlkm.txt |
| 3453 | INSTALLED_FILES_JSON_ODM_DLKM := $(INSTALLED_FILES_FILE_ODM_DLKM:.txt=.json) |
| 3454 | $(INSTALLED_FILES_FILE_ODM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM_DLKM) |
| 3455 | $(INSTALLED_FILES_FILE_ODM_DLKM) : $(INTERNAL_ODM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3456 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3457 | mkdir -p $(dir $@) |
| 3458 | rm -f $@ |
| 3459 | $(FILESLIST) $(TARGET_OUT_ODM_DLKM) > $(@:.txt=.json) |
| 3460 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3461 | |
| 3462 | odm_dlkmimage_intermediates := \ |
| 3463 | $(call intermediates-dir-for,PACKAGING,odm_dlkm) |
| 3464 | BUILT_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 3465 | define build-odm_dlkmimage-target |
| 3466 | $(call pretty,"Target odm_dlkm fs image: $(INSTALLED_ODM_DLKMIMAGE_TARGET)") |
| 3467 | @mkdir -p $(TARGET_OUT_ODM_DLKM) |
| 3468 | @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] | 3469 | $(call generate-image-prop-dictionary, $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt, \ |
| 3470 | odm_dlkm, skip_fsck=true) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3471 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3472 | $(BUILD_IMAGE) \ |
| 3473 | $(TARGET_OUT_ODM_DLKM) $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt \ |
| 3474 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3475 | $(call assert-max-image-size,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE)) |
| 3476 | endef |
| 3477 | |
| 3478 | # We just build this directly to the install location. |
| 3479 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(BUILT_ODM_DLKMIMAGE_TARGET) |
| 3480 | $(INSTALLED_ODM_DLKMIMAGE_TARGET): \ |
| 3481 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3482 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
| 3483 | $(INSTALLED_FILES_FILE_ODM_DLKM) |
| 3484 | $(build-odm_dlkmimage-target) |
| 3485 | |
| 3486 | .PHONY: odm_dlkmimage-nodeps odnod |
| 3487 | odm_dlkmimage-nodeps odnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3488 | $(build-odm_dlkmimage-target) |
| 3489 | |
| 3490 | sync: $(INTERNAL_ODM_DLKMIMAGE_FILES) |
| 3491 | |
| 3492 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 3493 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 3494 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODM_DLKMIMAGE),$(INSTALLED_ODM_DLKMIMAGE_TARGET))) |
| 3495 | endif |
| 3496 | |
| 3497 | |
| 3498 | # ----------------------------------------------------------------- |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3499 | # dtbo image |
| 3500 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 3501 | INSTALLED_DTBOIMAGE_TARGET := $(PRODUCT_OUT)/dtbo.img |
| 3502 | |
| 3503 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3504 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) $(AVBTOOL) $(BOARD_AVB_DTBO_KEY_PATH) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3505 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 3506 | $(AVBTOOL) add_hash_footer \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3507 | --image $@ \ |
| 3508 | --partition_size $(BOARD_DTBOIMG_PARTITION_SIZE) \ |
| 3509 | --partition_name dtbo $(INTERNAL_AVB_DTBO_SIGNING_ARGS) \ |
| 3510 | $(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3511 | else |
| 3512 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) |
| 3513 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 3514 | endif |
| 3515 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3516 | endif # BOARD_PREBUILT_DTBOIMAGE |
| 3517 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3518 | # ----------------------------------------------------------------- |
| 3519 | # Protected VM firmware image |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 3520 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3521 | INSTALLED_PVMFWIMAGE_TARGET := $(PRODUCT_OUT)/pvmfw.img |
Pierre-Clément Tosi | 3bda0d6 | 2021-09-21 13:49:35 +0200 | [diff] [blame] | 3522 | INTERNAL_PREBUILT_PVMFWIMAGE := packages/modules/Virtualization/pvmfw/pvmfw.img |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3523 | |
Pierre-Clément Tosi | fa8193c | 2021-09-24 15:49:00 +0200 | [diff] [blame] | 3524 | ifdef BOARD_PREBUILT_PVMFWIMAGE |
| 3525 | BUILT_PVMFWIMAGE_TARGET := $(BOARD_PREBUILT_PVMFWIMAGE) |
Pierre-Clément Tosi | 3bda0d6 | 2021-09-21 13:49:35 +0200 | [diff] [blame] | 3526 | else ifeq ($(BUILDING_PVMFW_IMAGE),true) |
| 3527 | BUILT_PVMFWIMAGE_TARGET := $(INTERNAL_PREBUILT_PVMFWIMAGE) |
Pierre-Clément Tosi | fa8193c | 2021-09-24 15:49:00 +0200 | [diff] [blame] | 3528 | endif |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3529 | |
| 3530 | ifeq ($(BOARD_AVB_ENABLE),true) |
Pierre-Clément Tosi | fa8193c | 2021-09-24 15:49:00 +0200 | [diff] [blame] | 3531 | $(INSTALLED_PVMFWIMAGE_TARGET): $(BUILT_PVMFWIMAGE_TARGET) $(AVBTOOL) $(BOARD_AVB_PVMFW_KEY_PATH) |
| 3532 | cp $(BUILT_PVMFWIMAGE_TARGET) $@ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3533 | $(AVBTOOL) add_hash_footer \ |
| 3534 | --image $@ \ |
Pierre-Clément Tosi | 592a3ca | 2021-10-04 11:34:11 +0200 | [diff] [blame] | 3535 | --partition_size $(BOARD_PVMFWIMAGE_PARTITION_SIZE) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3536 | --partition_name pvmfw $(INTERNAL_AVB_PVMFW_SIGNING_ARGS) \ |
| 3537 | $(BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS) |
| 3538 | else |
Pierre-Clément Tosi | fa8193c | 2021-09-24 15:49:00 +0200 | [diff] [blame] | 3539 | $(eval $(call copy-one-file,$(BUILT_PVMFWIMAGE_TARGET),$(INSTALLED_PVMFWIMAGE_TARGET))) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3540 | endif |
| 3541 | |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 3542 | endif # BOARD_USES_PVMFWIMAGE |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3543 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3544 | # Returns a list of image targets corresponding to the given list of partitions. For example, it |
| 3545 | # returns "$(INSTALLED_PRODUCTIMAGE_TARGET)" for "product", or "$(INSTALLED_SYSTEMIMAGE_TARGET) |
| 3546 | # $(INSTALLED_VENDORIMAGE_TARGET)" for "system vendor". |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3547 | # (1): list of partitions like "system", "vendor" or "system product system_ext". |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3548 | define images-for-partitions |
Bowgo Tsai | 4f62aa0 | 2022-01-04 14:21:39 +0800 | [diff] [blame^] | 3549 | $(strip $(foreach item,$(1),\ |
| 3550 | $(if $(filter $(item),system_other),$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),\ |
| 3551 | $(if $(filter $(item),init_boot),$(INSTALLED_INIT_BOOT_IMAGE_TARGET),\ |
| 3552 | $(INSTALLED_$(call to-upper,$(item))IMAGE_TARGET))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3553 | endef |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3554 | |
| 3555 | # ----------------------------------------------------------------- |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3556 | # custom images |
| 3557 | INSTALLED_CUSTOMIMAGES_TARGET := |
| 3558 | |
| 3559 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 3560 | INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS := |
| 3561 | |
| 3562 | # Sign custom image. |
| 3563 | # $(1): the prebuilt custom image. |
| 3564 | # $(2): the mount point of the prebuilt custom image. |
| 3565 | # $(3): the signed custom image target. |
| 3566 | define sign_custom_image |
| 3567 | $(3): $(1) $(INTERNAL_USERIMAGES_DEPS) |
| 3568 | @echo Target custom image: $(3) |
| 3569 | mkdir -p $(dir $(3)) |
| 3570 | cp $(1) $(3) |
| 3571 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3572 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$$$PATH \ |
| 3573 | $(AVBTOOL) add_hashtree_footer \ |
| 3574 | --image $(3) \ |
| 3575 | --key $(BOARD_AVB_$(call to-upper,$(2))_KEY_PATH) \ |
| 3576 | --algorithm $(BOARD_AVB_$(call to-upper,$(2))_ALGORITHM) \ |
| 3577 | --partition_size $(BOARD_AVB_$(call to-upper,$(2))_PARTITION_SIZE) \ |
| 3578 | --partition_name $(2) \ |
| 3579 | $(INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS) \ |
| 3580 | $(BOARD_AVB_$(call to-upper,$(2))_ADD_HASHTREE_FOOTER_ARGS) |
| 3581 | endif |
| 3582 | INSTALLED_CUSTOMIMAGES_TARGET += $(3) |
| 3583 | endef |
| 3584 | |
| 3585 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 3586 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST), \ |
| 3587 | $(eval $(call sign_custom_image,$(image),$(partition),$(PRODUCT_OUT)/$(notdir $(image)))))) |
| 3588 | endif |
| 3589 | |
| 3590 | # ----------------------------------------------------------------- |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3591 | # vbmeta image |
| 3592 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3593 | |
| 3594 | BUILT_VBMETAIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta.img |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3595 | AVB_CHAIN_KEY_DIR := $(TARGET_OUT_INTERMEDIATES)/avb_chain_keys |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3596 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3597 | ifdef BOARD_AVB_KEY_PATH |
| 3598 | $(if $(BOARD_AVB_ALGORITHM),,$(error BOARD_AVB_ALGORITHM is not defined)) |
| 3599 | else |
| 3600 | # If key path isn't specified, use the 4096-bit test key. |
| 3601 | BOARD_AVB_ALGORITHM := SHA256_RSA4096 |
| 3602 | BOARD_AVB_KEY_PATH := external/avb/test/data/testkey_rsa4096.pem |
| 3603 | endif |
| 3604 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 3605 | # AVB signing for system_other.img. |
| 3606 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 3607 | ifdef BOARD_AVB_SYSTEM_OTHER_KEY_PATH |
| 3608 | $(if $(BOARD_AVB_SYSTEM_OTHER_ALGORITHM),,$(error BOARD_AVB_SYSTEM_OTHER_ALGORITHM is not defined)) |
| 3609 | else |
| 3610 | # If key path isn't specified, use the same key as BOARD_AVB_KEY_PATH. |
| 3611 | BOARD_AVB_SYSTEM_OTHER_KEY_PATH := $(BOARD_AVB_KEY_PATH) |
| 3612 | BOARD_AVB_SYSTEM_OTHER_ALGORITHM := $(BOARD_AVB_ALGORITHM) |
| 3613 | endif |
| 3614 | |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 3615 | $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET): $(AVBTOOL) $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) |
| 3616 | @echo Extracting system_other avb key: $@ |
| 3617 | @rm -f $@ |
| 3618 | @mkdir -p $(dir $@) |
| 3619 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) --output $@ |
Bowgo Tsai | 45db7ce | 2019-01-30 14:53:57 +0800 | [diff] [blame] | 3620 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 3621 | ifndef BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX |
| 3622 | BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX := $(PLATFORM_SECURITY_PATCH_TIMESTAMP) |
| 3623 | endif |
| 3624 | |
| 3625 | BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS += --rollback_index $(BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX) |
| 3626 | endif # end of AVB for BUILDING_SYSTEM_OTHER_IMAGE |
| 3627 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3628 | INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES := \ |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3629 | $(BOARD_AVB_VBMETA_SYSTEM) \ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3630 | $(BOARD_AVB_VBMETA_VENDOR) |
| 3631 | |
| 3632 | # Not allowing the same partition to appear in multiple groups. |
| 3633 | 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] | 3634 | $(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] | 3635 | endif |
| 3636 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3637 | # When building a standalone recovery image for non-A/B devices, recovery image must be self-signed |
| 3638 | # to be verified independently, and cannot be chained into vbmeta.img. See the link below for |
| 3639 | # details. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 3640 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3641 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 3642 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),,\ |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 3643 | $(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] | 3644 | See https://android.googlesource.com/platform/external/avb/+/master/README.md#booting-into-recovery)) |
| 3645 | endif |
| 3646 | endif |
| 3647 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3648 | # Appends os version and security patch level as a AVB property descriptor |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3649 | |
| 3650 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3651 | --prop com.android.build.system.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3652 | --prop com.android.build.system.os_version:$(PLATFORM_VERSION_LAST_STABLE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3653 | --prop com.android.build.system.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 3654 | |
| 3655 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3656 | --prop com.android.build.product.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3657 | --prop com.android.build.product.os_version:$(PLATFORM_VERSION_LAST_STABLE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3658 | --prop com.android.build.product.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 3659 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3660 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3661 | --prop com.android.build.system_ext.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3662 | --prop com.android.build.system_ext.os_version:$(PLATFORM_VERSION_LAST_STABLE) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3663 | --prop com.android.build.system_ext.security_patch:$(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3664 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3665 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3666 | --prop com.android.build.boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3667 | --prop com.android.build.boot.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3668 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3669 | BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 3670 | --prop com.android.build.vendor_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 3671 | |
| 3672 | BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS += \ |
| 3673 | --prop com.android.build.recovery.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 3674 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3675 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3676 | --prop com.android.build.vendor.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3677 | --prop com.android.build.vendor.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3678 | |
| 3679 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3680 | --prop com.android.build.odm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3681 | --prop com.android.build.odm.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3682 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3683 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3684 | --prop com.android.build.vendor_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 3685 | --prop com.android.build.vendor_dlkm.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
| 3686 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3687 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3688 | --prop com.android.build.odm_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 3689 | --prop com.android.build.odm_dlkm.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
| 3690 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3691 | BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS += \ |
| 3692 | --prop com.android.build.dtbo.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 3693 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3694 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 3695 | --prop com.android.build.pvmfw.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 3696 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3697 | # 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] | 3698 | # TODO(b/210875415) Is this security_patch property used? Should it be removed from |
| 3699 | # boot.img when there is no platform ramdisk included in it? |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3700 | ifdef BOOT_SECURITY_PATCH |
| 3701 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 3702 | --prop com.android.build.boot.security_patch:$(BOOT_SECURITY_PATCH) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 3703 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 3704 | --prop com.android.build.init_boot.security_patch:$(BOOT_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3705 | endif |
| 3706 | |
| 3707 | ifdef VENDOR_SECURITY_PATCH |
| 3708 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3709 | --prop com.android.build.vendor.security_patch:$(VENDOR_SECURITY_PATCH) |
| 3710 | endif |
| 3711 | |
| 3712 | ifdef ODM_SECURITY_PATCH |
| 3713 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3714 | --prop com.android.build.odm.security_patch:$(ODM_SECURITY_PATCH) |
| 3715 | endif |
| 3716 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3717 | ifdef VENDOR_DLKM_SECURITY_PATCH |
| 3718 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3719 | --prop com.android.build.vendor_dlkm.security_patch:$(VENDOR_DLKM_SECURITY_PATCH) |
| 3720 | endif |
| 3721 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3722 | ifdef ODM_DLKM_SECURITY_PATCH |
| 3723 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3724 | --prop com.android.build.odm_dlkm.security_patch:$(ODM_DLKM_SECURITY_PATCH) |
| 3725 | endif |
| 3726 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3727 | ifdef PVMFW_SECURITY_PATCH |
| 3728 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 3729 | --prop com.android.build.pvmfw.security_patch:$(PVMFW_SECURITY_PATCH) |
| 3730 | endif |
| 3731 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3732 | BOOT_FOOTER_ARGS := BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 3733 | INIT_BOOT_FOOTER_ARGS := BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3734 | VENDOR_BOOT_FOOTER_ARGS := BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3735 | DTBO_FOOTER_ARGS := BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3736 | PVMFW_FOOTER_ARGS := BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3737 | SYSTEM_FOOTER_ARGS := BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS |
| 3738 | VENDOR_FOOTER_ARGS := BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3739 | RECOVERY_FOOTER_ARGS := BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3740 | PRODUCT_FOOTER_ARGS := BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3741 | SYSTEM_EXT_FOOTER_ARGS := BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3742 | ODM_FOOTER_ARGS := BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3743 | VENDOR_DLKM_FOOTER_ARGS := BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3744 | ODM_DLKM_FOOTER_ARGS := BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3745 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3746 | # 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] | 3747 | # $(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] | 3748 | define _check-and-set-avb-chain-args |
| 3749 | $(eval part := $(1)) |
| 3750 | $(eval PART=$(call to-upper,$(part))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3751 | |
| 3752 | $(eval _key_path := BOARD_AVB_$(PART)_KEY_PATH) |
| 3753 | $(eval _signing_algorithm := BOARD_AVB_$(PART)_ALGORITHM) |
| 3754 | $(eval _rollback_index := BOARD_AVB_$(PART)_ROLLBACK_INDEX) |
| 3755 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 3756 | $(if $($(_key_path)),,$(error $(_key_path) is not defined)) |
| 3757 | $(if $($(_signing_algorithm)),,$(error $(_signing_algorithm) is not defined)) |
| 3758 | $(if $($(_rollback_index)),,$(error $(_rollback_index) is not defined)) |
| 3759 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 3760 | |
| 3761 | # Set INTERNAL_AVB_(PART)_SIGNING_ARGS |
| 3762 | $(eval _signing_args := INTERNAL_AVB_$(PART)_SIGNING_ARGS) |
| 3763 | $(eval $(_signing_args) := \ |
| 3764 | --algorithm $($(_signing_algorithm)) --key $($(_key_path))) |
| 3765 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3766 | # The recovery partition in non-A/B devices should be verified separately. Skip adding the chain |
| 3767 | # partition descriptor for recovery partition into vbmeta.img. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 3768 | $(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] | 3769 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3770 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3771 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3772 | # 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] | 3773 | # 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] | 3774 | $(if $(filter $(part),$(part:vbmeta_%=%)),\ |
| 3775 | $(eval _footer_args := $(PART)_FOOTER_ARGS) \ |
| 3776 | $(eval $($(_footer_args)) += --rollback_index $($(_rollback_index)))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3777 | endef |
| 3778 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3779 | # Checks and sets the required build variables for an AVB partition. The partition will be |
| 3780 | # 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] | 3781 | # image descriptor will be included into vbmeta.img, unless it has been already added to any chained |
| 3782 | # VBMeta image. |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 3783 | # Multiple boot images can be generated based on BOARD_KERNEL_BINARIES |
| 3784 | # but vbmeta would capture the image descriptor of only the first boot |
| 3785 | # image specified in BUILT_BOOTIMAGE_TARGET. |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3786 | # $(1): Partition name, e.g. boot or system. |
| 3787 | define check-and-set-avb-args |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3788 | $(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] | 3789 | $(if $(BOARD_AVB_$(call to-upper,$(1))_KEY_PATH),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3790 | $(if $(_in_chained_vbmeta),\ |
| 3791 | $(error Chaining partition "$(1)" in chained VBMeta image is not supported)) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3792 | $(call _check-and-set-avb-chain-args,$(1)),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3793 | $(if $(_in_chained_vbmeta),,\ |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 3794 | $(if $(filter boot,$(1)),\ |
| 3795 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3796 | --include_descriptors_from_image $(firstword $(call images-for-partitions,$(1)))),\ |
| 3797 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3798 | --include_descriptors_from_image $(call images-for-partitions,$(1)))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3799 | endef |
| 3800 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3801 | # Checks and sets build variables for a custom chained partition to include it into vbmeta.img. |
| 3802 | # $(1): the custom partition to enable AVB chain. |
| 3803 | define check-and-set-custom-avb-chain-args |
| 3804 | $(eval part := $(1)) |
| 3805 | $(eval PART=$(call to-upper,$(part))) |
| 3806 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 3807 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 3808 | |
| 3809 | INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3810 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey |
| 3811 | endef |
| 3812 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3813 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3814 | $(eval $(call check-and-set-avb-args,boot)) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3815 | endif |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3816 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 3817 | ifdef INSTALLED_INIT_BOOT_IMAGE_TARGET |
| 3818 | $(eval $(call check-and-set-avb-args,init_boot)) |
| 3819 | endif |
| 3820 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3821 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 3822 | $(eval $(call check-and-set-avb-args,vendor_boot)) |
| 3823 | endif |
| 3824 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3825 | $(eval $(call check-and-set-avb-args,system)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3826 | |
| 3827 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3828 | $(eval $(call check-and-set-avb-args,vendor)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3829 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3830 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3831 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3832 | $(eval $(call check-and-set-avb-args,product)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3833 | endif |
| 3834 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3835 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 3836 | $(eval $(call check-and-set-avb-args,system_ext)) |
Tao Bao | cee6d04 | 2018-08-22 23:39:03 -0700 | [diff] [blame] | 3837 | endif |
| 3838 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3839 | ifdef INSTALLED_ODMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3840 | $(eval $(call check-and-set-avb-args,odm)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3841 | endif |
| 3842 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3843 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 3844 | $(eval $(call check-and-set-avb-args,vendor_dlkm)) |
| 3845 | endif |
| 3846 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3847 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 3848 | $(eval $(call check-and-set-avb-args,odm_dlkm)) |
| 3849 | endif |
| 3850 | |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3851 | ifdef INSTALLED_DTBOIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3852 | $(eval $(call check-and-set-avb-args,dtbo)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3853 | endif |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3854 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3855 | ifdef INSTALLED_PVMFWIMAGE_TARGET |
| 3856 | $(eval $(call check-and-set-avb-args,pvmfw)) |
| 3857 | endif |
| 3858 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3859 | ifdef INSTALLED_RECOVERYIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3860 | $(eval $(call check-and-set-avb-args,recovery)) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3861 | endif |
Bowgo Tsai | 53cf999 | 2017-06-13 11:27:06 +0800 | [diff] [blame] | 3862 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3863 | # Not using INSTALLED_VBMETA_SYSTEMIMAGE_TARGET as it won't be set yet. |
| 3864 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 3865 | $(eval $(call check-and-set-avb-args,vbmeta_system)) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3866 | endif |
| 3867 | |
| 3868 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 3869 | $(eval $(call check-and-set-avb-args,vbmeta_vendor)) |
| 3870 | endif |
| 3871 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3872 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 3873 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 3874 | $(eval $(call check-and-set-custom-avb-chain-args,$(partition)))) |
| 3875 | endif |
| 3876 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3877 | # Add kernel cmdline descriptor for kernel to mount system.img as root with |
| 3878 | # dm-verity. This works when system.img is either chained or not-chained: |
| 3879 | # - chained: The --setup_as_rootfs_from_kernel option will add dm-verity kernel |
| 3880 | # cmdline descriptor to system.img |
| 3881 | # - not-chained: The --include_descriptors_from_image option for make_vbmeta_image |
| 3882 | # will include the kernel cmdline descriptor from system.img into vbmeta.img |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3883 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
David Anderson | 8916a2a | 2018-09-18 15:46:59 -0700 | [diff] [blame] | 3884 | ifeq ($(filter system, $(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3885 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += --setup_as_rootfs_from_kernel |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3886 | endif |
David Anderson | 8916a2a | 2018-09-18 15:46:59 -0700 | [diff] [blame] | 3887 | endif |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3888 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3889 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --padding_size 4096 |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3890 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += --padding_size 4096 |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3891 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += --padding_size 4096 |
| 3892 | |
| 3893 | ifeq (eng,$(filter eng, $(TARGET_BUILD_VARIANT))) |
Tao Bao | 240dcb8 | 2018-10-22 13:02:53 -0700 | [diff] [blame] | 3894 | # We only need the flag in top-level vbmeta.img. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3895 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --set_hashtree_disabled_flag |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3896 | endif |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3897 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3898 | ifdef BOARD_AVB_ROLLBACK_INDEX |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3899 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --rollback_index $(BOARD_AVB_ROLLBACK_INDEX) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3900 | endif |
| 3901 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3902 | ifdef BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX |
| 3903 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += \ |
| 3904 | --rollback_index $(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3905 | endif |
| 3906 | |
| 3907 | ifdef BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX |
| 3908 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += \ |
| 3909 | --rollback_index $(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX) |
John Reck | 0588b43 | 2018-05-03 13:20:01 -0700 | [diff] [blame] | 3910 | endif |
| 3911 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3912 | # $(1): the directory to extract public keys to |
| 3913 | define extract-avb-chain-public-keys |
| 3914 | $(if $(BOARD_AVB_BOOT_KEY_PATH),\ |
| 3915 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_BOOT_KEY_PATH) \ |
| 3916 | --output $(1)/boot.avbpubkey) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 3917 | $(if $(BOARD_AVB_INIT_BOOT_KEY_PATH),\ |
| 3918 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_INIT_BOOT_KEY_PATH) \ |
| 3919 | --output $(1)/init_boot.avbpubkey) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3920 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),\ |
| 3921 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_BOOT_KEY_PATH) \ |
| 3922 | --output $(1)/vendor_boot.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3923 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 3924 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_KEY_PATH) \ |
| 3925 | --output $(1)/system.avbpubkey) |
| 3926 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 3927 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KEY_PATH) \ |
| 3928 | --output $(1)/vendor.avbpubkey) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3929 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 3930 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PRODUCT_KEY_PATH) \ |
| 3931 | --output $(1)/product.avbpubkey) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3932 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 3933 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_EXT_KEY_PATH) \ |
| 3934 | --output $(1)/system_ext.avbpubkey) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3935 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 3936 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_KEY_PATH) \ |
| 3937 | --output $(1)/odm.avbpubkey) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3938 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 3939 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_DLKM_KEY_PATH) \ |
| 3940 | --output $(1)/vendor_dlkm.avbpubkey) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3941 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 3942 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_DLKM_KEY_PATH) \ |
| 3943 | --output $(1)/odm_dlkm.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3944 | $(if $(BOARD_AVB_DTBO_KEY_PATH),\ |
| 3945 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_DTBO_KEY_PATH) \ |
| 3946 | --output $(1)/dtbo.avbpubkey) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3947 | $(if $(BOARD_AVB_PVMFW_KEY_PATH),\ |
| 3948 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PVMFW_KEY_PATH) \ |
| 3949 | --output $(1)/pvmfw.avbpubkey) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3950 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),\ |
| 3951 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_RECOVERY_KEY_PATH) \ |
| 3952 | --output $(1)/recovery.avbpubkey) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3953 | $(if $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH),\ |
| 3954 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 3955 | --output $(1)/vbmeta_system.avbpubkey) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3956 | $(if $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH),\ |
| 3957 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 3958 | --output $(1)/vbmeta_vendor.avbpubkey) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3959 | $(if $(BOARD_CUSTOMIMAGES_PARTITION_LIST),\ |
| 3960 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 3961 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH) \ |
| 3962 | --output $(1)/$(partition).avbpubkey;)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3963 | endef |
| 3964 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3965 | # Builds a chained VBMeta image. This VBMeta image will contain the descriptors for the partitions |
| 3966 | # 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] | 3967 | # 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] | 3968 | # := system system_ext`, `vbmeta_system.img` will be created that includes the descriptors for |
| 3969 | # `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] | 3970 | # `vbmeta.img` as a chained partition. |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3971 | # $(1): VBMeta image name, such as "vbmeta_system", "vbmeta_vendor" etc. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3972 | # $(2): Output filename. |
| 3973 | define build-chained-vbmeta-image |
| 3974 | $(call pretty,"Target chained vbmeta image: $@") |
| 3975 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 3976 | $(INTERNAL_AVB_$(call to-upper,$(1))_SIGNING_ARGS) \ |
| 3977 | $(BOARD_AVB_MAKE_$(call to-upper,$(1))_IMAGE_ARGS) \ |
| 3978 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(1))), \ |
| 3979 | --include_descriptors_from_image $(call images-for-partitions,$(image))) \ |
| 3980 | --output $@ |
| 3981 | endef |
| 3982 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 3983 | ifdef BUILDING_SYSTEM_IMAGE |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3984 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 3985 | INSTALLED_VBMETA_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_system.img |
| 3986 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3987 | $(AVBTOOL) \ |
| 3988 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_SYSTEM)) \ |
| 3989 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3990 | $(call build-chained-vbmeta-image,vbmeta_system) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3991 | endif |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 3992 | endif # BUILDING_SYSTEM_IMAGE |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3993 | |
| 3994 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 3995 | INSTALLED_VBMETA_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_vendor.img |
| 3996 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3997 | $(AVBTOOL) \ |
| 3998 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_VENDOR)) \ |
| 3999 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4000 | $(call build-chained-vbmeta-image,vbmeta_vendor) |
| 4001 | endif |
| 4002 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4003 | define build-vbmetaimage-target |
| 4004 | $(call pretty,"Target vbmeta image: $(INSTALLED_VBMETAIMAGE_TARGET)") |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4005 | $(hide) mkdir -p $(AVB_CHAIN_KEY_DIR) |
| 4006 | $(call extract-avb-chain-public-keys, $(AVB_CHAIN_KEY_DIR)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4007 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 4008 | $(INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4009 | $(PRIVATE_AVB_VBMETA_SIGNING_ARGS) \ |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4010 | $(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
| 4011 | --output $@ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4012 | $(hide) rm -rf $(AVB_CHAIN_KEY_DIR) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4013 | endef |
| 4014 | |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 4015 | ifdef BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4016 | INSTALLED_VBMETAIMAGE_TARGET := $(BUILT_VBMETAIMAGE_TARGET) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4017 | $(INSTALLED_VBMETAIMAGE_TARGET): PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 4018 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
| 4019 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4020 | $(INSTALLED_VBMETAIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4021 | $(AVBTOOL) \ |
| 4022 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4023 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4024 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4025 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 4026 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 4027 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4028 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4029 | $(INSTALLED_ODMIMAGE_TARGET) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4030 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4031 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4032 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4033 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4034 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4035 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 4036 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) \ |
| 4037 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) \ |
| 4038 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 4039 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 4040 | $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4041 | $(build-vbmetaimage-target) |
| 4042 | |
| 4043 | .PHONY: vbmetaimage-nodeps |
Bowgo Tsai | 6a4eaa5 | 2019-12-09 15:48:09 +0800 | [diff] [blame] | 4044 | vbmetaimage-nodeps: PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 4045 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4046 | vbmetaimage-nodeps: |
| 4047 | $(build-vbmetaimage-target) |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 4048 | endif # BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4049 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4050 | endif # BOARD_AVB_ENABLE |
| 4051 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4052 | # List of files from all images |
| 4053 | INTERNAL_ALLIMAGES_FILES := \ |
| 4054 | $(FULL_SYSTEMIMAGE_DEPS) \ |
| 4055 | $(INTERNAL_RAMDISK_FILES) \ |
| 4056 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 4057 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 4058 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 4059 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 4060 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 4061 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 4062 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
| 4063 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4064 | # ----------------------------------------------------------------- |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4065 | # Check VINTF of build |
| 4066 | |
Yifan Hong | c08cbf0 | 2020-09-15 19:07:39 +0000 | [diff] [blame] | 4067 | # Note: vendor_dlkm and odm_dlkm does not have VINTF files. |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4068 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4069 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4070 | intermediates := $(call intermediates-dir-for,PACKAGING,check_vintf_all) |
| 4071 | check_vintf_all_deps := |
| 4072 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4073 | # The build system only writes VINTF metadata to */etc/vintf paths. Legacy paths aren't needed here |
| 4074 | # because they are only used for prebuilt images. |
| 4075 | check_vintf_common_srcs_patterns := \ |
| 4076 | $(TARGET_OUT)/etc/vintf/% \ |
| 4077 | $(TARGET_OUT_VENDOR)/etc/vintf/% \ |
| 4078 | $(TARGET_OUT_ODM)/etc/vintf/% \ |
| 4079 | $(TARGET_OUT_PRODUCT)/etc/vintf/% \ |
| 4080 | $(TARGET_OUT_SYSTEM_EXT)/etc/vintf/% \ |
| 4081 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4082 | 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] | 4083 | check_vintf_common_srcs_patterns := |
| 4084 | |
| 4085 | check_vintf_has_system := |
| 4086 | check_vintf_has_vendor := |
| 4087 | |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4088 | ifneq (,$(filter EMPTY_ODM_SKU_PLACEHOLDER,$(ODM_MANIFEST_SKUS))) |
| 4089 | $(error EMPTY_ODM_SKU_PLACEHOLDER is an internal variable and cannot be used for ODM_MANIFEST_SKUS) |
| 4090 | endif |
| 4091 | ifneq (,$(filter EMPTY_VENDOR_SKU_PLACEHOLDER,$(DEVICE_MANIFEST_SKUS))) |
| 4092 | $(error EMPTY_VENDOR_SKU_PLACEHOLDER is an internal variable and cannot be used for DEIVCE_MANIFEST_SKUS) |
| 4093 | endif |
| 4094 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4095 | # -- 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] | 4096 | check_vintf_system_deps := $(filter $(TARGET_OUT)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 4097 | ifneq ($(check_vintf_system_deps),) |
| 4098 | check_vintf_has_system := true |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4099 | |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 4100 | check_vintf_system_log := $(intermediates)/check_vintf_system.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4101 | check_vintf_all_deps += $(check_vintf_system_log) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4102 | $(check_vintf_system_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_system_deps) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4103 | @( $< --check-one --dirmap /system:$(TARGET_OUT) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
| 4104 | check_vintf_system_log := |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4105 | |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 4106 | vintffm_log := $(intermediates)/vintffm.log |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4107 | check_vintf_all_deps += $(vintffm_log) |
| 4108 | $(vintffm_log): $(HOST_OUT_EXECUTABLES)/vintffm $(check_vintf_system_deps) |
| 4109 | @( $< --check --dirmap /system:$(TARGET_OUT) \ |
| 4110 | $(VINTF_FRAMEWORK_MANIFEST_FROZEN_DIR) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
| 4111 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4112 | endif # check_vintf_system_deps |
| 4113 | check_vintf_system_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4114 | |
| 4115 | # -- Check vendor manifest / matrix including fragments (excluding other device manifests / matrices) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4116 | check_vintf_vendor_deps := $(filter $(TARGET_OUT_VENDOR)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 4117 | ifneq ($(check_vintf_vendor_deps),) |
| 4118 | check_vintf_has_vendor := true |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 4119 | check_vintf_vendor_log := $(intermediates)/check_vintf_vendor.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4120 | check_vintf_all_deps += $(check_vintf_vendor_log) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4121 | # Check vendor SKU=(empty) case when: |
| 4122 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 4123 | # - 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] | 4124 | $(check_vintf_vendor_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4125 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 4126 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4127 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4128 | $(check_vintf_vendor_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_vendor_deps) |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4129 | $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 4130 | ( $< --check-one --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 4131 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 4132 | > $@ 2>&1 ) || ( cat $@ && exit 1 ); ) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4133 | check_vintf_vendor_log := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4134 | endif # check_vintf_vendor_deps |
| 4135 | check_vintf_vendor_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4136 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4137 | # -- Kernel version and configurations. |
| 4138 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
| 4139 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4140 | BUILT_KERNEL_CONFIGS_FILE := $(intermediates)/kernel_configs.txt |
| 4141 | BUILT_KERNEL_VERSION_FILE := $(intermediates)/kernel_version.txt |
| 4142 | |
| 4143 | my_board_extracted_kernel := |
| 4144 | |
| 4145 | # BOARD_KERNEL_CONFIG_FILE and BOARD_KERNEL_VERSION can be used to override the values extracted |
| 4146 | # from INSTALLED_KERNEL_TARGET. |
| 4147 | ifdef BOARD_KERNEL_CONFIG_FILE |
| 4148 | ifdef BOARD_KERNEL_VERSION |
| 4149 | $(BUILT_KERNEL_CONFIGS_FILE): $(BOARD_KERNEL_CONFIG_FILE) |
| 4150 | cp $< $@ |
| 4151 | $(BUILT_KERNEL_VERSION_FILE): |
| 4152 | echo $(BOARD_KERNEL_VERSION) > $@ |
| 4153 | |
| 4154 | my_board_extracted_kernel := true |
| 4155 | endif # BOARD_KERNEL_VERSION |
| 4156 | endif # BOARD_KERNEL_CONFIG_FILE |
| 4157 | |
| 4158 | ifneq ($(my_board_extracted_kernel),true) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4159 | # Tools for decompression that is not in PATH. |
| 4160 | # Check $(EXTRACT_KERNEL) for decompression algorithms supported by the script. |
| 4161 | # Algorithms that are in the script but not in this list will be found in PATH. |
| 4162 | my_decompress_tools := \ |
| 4163 | lz4:$(HOST_OUT_EXECUTABLES)/lz4 \ |
| 4164 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4165 | endif # my_board_extracted_kernel |
| 4166 | |
| 4167 | ifneq ($(my_board_extracted_kernel),true) |
| 4168 | ifdef INSTALLED_KERNEL_TARGET |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4169 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 4170 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 4171 | $(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] | 4172 | $(BUILT_KERNEL_CONFIGS_FILE): $(EXTRACT_KERNEL) $(firstword $(INSTALLED_KERNEL_TARGET)) |
| 4173 | $< --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(firstword $(INSTALLED_KERNEL_TARGET)) \ |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4174 | --output-configs $@ \ |
Yifan Hong | b95d02e | 2020-11-13 18:33:01 -0800 | [diff] [blame] | 4175 | --output-release $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4176 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4177 | my_board_extracted_kernel := true |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4178 | endif # INSTALLED_KERNEL_TARGET |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4179 | endif # my_board_extracted_kernel |
| 4180 | |
| 4181 | ifneq ($(my_board_extracted_kernel),true) |
| 4182 | ifdef INSTALLED_BOOTIMAGE_TARGET |
| 4183 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 4184 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 4185 | $(BUILT_KERNEL_CONFIGS_FILE): $(foreach pair,$(my_decompress_tools),$(call word-colon,2,$(pair))) |
| 4186 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_UNPACKED_BOOTIMG := $(intermediates)/unpacked_bootimage |
| 4187 | $(BUILT_KERNEL_CONFIGS_FILE): \ |
| 4188 | $(HOST_OUT_EXECUTABLES)/unpack_bootimg \ |
| 4189 | $(EXTRACT_KERNEL) \ |
| 4190 | $(INSTALLED_BOOTIMAGE_TARGET) |
| 4191 | $(HOST_OUT_EXECUTABLES)/unpack_bootimg --boot_img $(INSTALLED_BOOTIMAGE_TARGET) --out $(PRIVATE_UNPACKED_BOOTIMG) |
| 4192 | $(EXTRACT_KERNEL) --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(PRIVATE_UNPACKED_BOOTIMG)/kernel \ |
| 4193 | --output-configs $@ \ |
| 4194 | --output-release $(BUILT_KERNEL_VERSION_FILE) |
| 4195 | |
| 4196 | my_board_extracted_kernel := true |
| 4197 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 4198 | endif # my_board_extracted_kernel |
| 4199 | |
| 4200 | ifneq ($(my_board_extracted_kernel),true) |
| 4201 | $(warning Neither INSTALLED_KERNEL_TARGET nor INSTALLED_BOOTIMAGE_TARGET is defined when \ |
| 4202 | PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS is true. Information about the updated kernel \ |
| 4203 | cannot be built into OTA update package. You can fix this by: \ |
| 4204 | (1) setting TARGET_NO_KERNEL to false and installing the built kernel to $(PRODUCT_OUT)/kernel,\ |
| 4205 | so that kernel information will be extracted from the built kernel; or \ |
| 4206 | (2) Add a prebuilt boot image and specify it in BOARD_PREBUILT_BOOTIMAGE; or \ |
| 4207 | (3) extracting kernel configuration and defining BOARD_KERNEL_CONFIG_FILE and \ |
| 4208 | BOARD_KERNEL_VERSION manually; or \ |
| 4209 | (4) unsetting PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS manually.) |
| 4210 | # Clear their values to indicate that these two files does not exist. |
| 4211 | BUILT_KERNEL_CONFIGS_FILE := |
| 4212 | BUILT_KERNEL_VERSION_FILE := |
| 4213 | endif |
| 4214 | |
| 4215 | my_decompress_tools := |
| 4216 | my_board_extracted_kernel := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4217 | |
Yifan Hong | c0f904e | 2021-03-17 11:25:31 -0700 | [diff] [blame] | 4218 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 4219 | |
| 4220 | # -- Check VINTF compatibility of build. |
| 4221 | # Skip partial builds; only check full builds. Only check if: |
| 4222 | # - PRODUCT_ENFORCE_VINTF_MANIFEST is true |
| 4223 | # - system / vendor VINTF metadata exists |
| 4224 | # - Building product / system_ext / odm images if board has product / system_ext / odm images |
| 4225 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 4226 | ifeq ($(check_vintf_has_system),true) |
| 4227 | ifeq ($(check_vintf_has_vendor),true) |
| 4228 | ifeq ($(filter true,$(BUILDING_ODM_IMAGE)),$(filter true,$(BOARD_USES_ODMIMAGE))) |
| 4229 | ifeq ($(filter true,$(BUILDING_PRODUCT_IMAGE)),$(filter true,$(BOARD_USES_PRODUCTIMAGE))) |
| 4230 | ifeq ($(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),$(filter true,$(BOARD_USES_SYSTEM_EXTIMAGE))) |
| 4231 | |
| 4232 | check_vintf_compatible_log := $(intermediates)/check_vintf_compatible.log |
| 4233 | check_vintf_all_deps += $(check_vintf_compatible_log) |
| 4234 | |
| 4235 | check_vintf_compatible_args := |
| 4236 | check_vintf_compatible_deps := $(check_vintf_common_srcs) |
| 4237 | |
| 4238 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 4239 | ifneq (,$(BUILT_KERNEL_VERSION_FILE)$(BUILT_KERNEL_CONFIGS_FILE)) |
Yifan Hong | 72e78f2 | 2020-11-13 18:30:06 -0800 | [diff] [blame] | 4240 | 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] | 4241 | check_vintf_compatible_deps += $(BUILT_KERNEL_CONFIGS_FILE) $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 4242 | endif # BUILT_KERNEL_VERSION_FILE != "" || BUILT_KERNEL_CONFIGS_FILE != "" |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4243 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 4244 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4245 | check_vintf_compatible_args += \ |
| 4246 | --dirmap /system:$(TARGET_OUT) \ |
| 4247 | --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 4248 | --dirmap /odm:$(TARGET_OUT_ODM) \ |
| 4249 | --dirmap /product:$(TARGET_OUT_PRODUCT) \ |
| 4250 | --dirmap /system_ext:$(TARGET_OUT_SYSTEM_EXT) \ |
| 4251 | |
| 4252 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 4253 | check_vintf_compatible_args += --property ro.product.first_api_level=$(PRODUCT_SHIPPING_API_LEVEL) |
| 4254 | endif # PRODUCT_SHIPPING_API_LEVEL |
| 4255 | |
| 4256 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_ARGS := $(check_vintf_compatible_args) |
| 4257 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_DEPS := $(check_vintf_compatible_deps) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4258 | # Check ODM SKU=(empty) case when: |
| 4259 | # - ODM_MANIFEST_FILES is not empty; OR |
| 4260 | # - 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] | 4261 | $(check_vintf_compatible_log): PRIVATE_ODM_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4262 | $(if $(ODM_MANIFEST_FILES),EMPTY_ODM_SKU_PLACEHOLDER,\ |
| 4263 | $(if $(ODM_MANIFEST_SKUS),,EMPTY_ODM_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4264 | $(ODM_MANIFEST_SKUS) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4265 | # Check vendor SKU=(empty) case when: |
| 4266 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 4267 | # - 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] | 4268 | $(check_vintf_compatible_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4269 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 4270 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4271 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4272 | $(check_vintf_compatible_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_compatible_deps) |
Yifan Hong | 80ab214 | 2021-03-10 18:10:05 -0800 | [diff] [blame] | 4273 | @echo "PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS=$(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS)" > $@ |
| 4274 | @echo -n -e 'Deps: \n ' >> $@ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4275 | @sed 's/ /\n /g' <<< "$(PRIVATE_CHECK_VINTF_DEPS)" >> $@ |
| 4276 | @echo -n -e 'Args: \n ' >> $@ |
| 4277 | @cat <<< "$(PRIVATE_CHECK_VINTF_ARGS)" >> $@ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4278 | $(foreach odm_sku,$(PRIVATE_ODM_SKUS), $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 4279 | echo "For ODM SKU = $(odm_sku), vendor SKU = $(vendor_sku)" >> $@; \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4280 | ( $< --check-compat $(PRIVATE_CHECK_VINTF_ARGS) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4281 | --property ro.boot.product.hardware.sku=$(filter-out EMPTY_ODM_SKU_PLACEHOLDER,$(odm_sku)) \ |
| 4282 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 4283 | >> $@ 2>&1 ) || (cat $@ && exit 1); )) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4284 | |
| 4285 | check_vintf_compatible_log := |
| 4286 | check_vintf_compatible_args := |
| 4287 | check_vintf_compatible_deps := |
| 4288 | |
| 4289 | endif # BUILDING_SYSTEM_EXT_IMAGE equals BOARD_USES_SYSTEM_EXTIMAGE |
| 4290 | endif # BUILDING_PRODUCT_IMAGE equals BOARD_USES_PRODUCTIMAGE |
| 4291 | endif # BUILDING_ODM_IMAGE equals BOARD_USES_ODMIMAGE |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4292 | endif # check_vintf_has_vendor |
| 4293 | endif # check_vintf_has_system |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4294 | endif # PRODUCT_ENFORCE_VINTF_MANIFEST |
| 4295 | |
| 4296 | # Add all logs of VINTF checks to dist builds |
| 4297 | droid_targets: $(check_vintf_all_deps) |
| 4298 | $(call dist-for-goals, droid_targets, $(check_vintf_all_deps)) |
| 4299 | |
| 4300 | # Helper alias to check all VINTF of current build. |
| 4301 | .PHONY: check-vintf-all |
| 4302 | check-vintf-all: $(check_vintf_all_deps) |
| 4303 | $(foreach file,$^,echo "$(file)"; cat "$(file)"; echo;) |
| 4304 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4305 | check_vintf_has_vendor := |
| 4306 | check_vintf_has_system := |
| 4307 | check_vintf_common_srcs := |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4308 | check_vintf_all_deps := |
| 4309 | intermediates := |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4310 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4311 | |
| 4312 | # ----------------------------------------------------------------- |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4313 | # Check image sizes <= size of super partition |
| 4314 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4315 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4316 | |
| 4317 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
Yifan Hong | 37c0c7c | 2018-07-24 17:45:08 -0700 | [diff] [blame] | 4318 | |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 4319 | PARTITIONS_AND_OTHER_IN_SUPER := $(BOARD_SUPER_PARTITION_PARTITION_LIST) |
| 4320 | |
| 4321 | # Add the system other image to the misc_info. Because factory ota may install system_other to the super partition. |
| 4322 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 4323 | PARTITIONS_AND_OTHER_IN_SUPER += system_other |
| 4324 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 4325 | |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4326 | # $(1): misc_info.txt |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4327 | # #(2): optional log file |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 4328 | define check-all-partition-sizes-target |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4329 | mkdir -p $(dir $(1)) |
| 4330 | rm -f $(1) |
| 4331 | $(call dump-super-image-info, $(1)) |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 4332 | $(foreach partition,$(PARTITIONS_AND_OTHER_IN_SUPER), \ |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4333 | echo "$(partition)_image="$(call images-for-partitions,$(partition)) >> $(1);) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4334 | $(CHECK_PARTITION_SIZES) $(if $(2),--logfile $(2),-v) $(1) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 4335 | endef |
| 4336 | |
Yifan Hong | d11953c | 2021-03-11 14:47:48 -0800 | [diff] [blame] | 4337 | 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] | 4338 | droid_targets: $(check_all_partition_sizes_log) |
| 4339 | $(call dist-for-goals, droid_targets, $(check_all_partition_sizes_log)) |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 4340 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4341 | $(check_all_partition_sizes_log): \ |
| 4342 | $(CHECK_PARTITION_SIZES) \ |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 4343 | $(call images-for-partitions,$(PARTITIONS_AND_OTHER_IN_SUPER)) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4344 | $(call check-all-partition-sizes-target, \ |
| 4345 | $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/misc_info.txt, \ |
| 4346 | $@) |
| 4347 | |
| 4348 | .PHONY: check-all-partition-sizes |
| 4349 | check-all-partition-sizes: $(check_all_partition_sizes_log) |
| 4350 | |
| 4351 | .PHONY: check-all-partition-sizes-nodeps |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 4352 | check-all-partition-sizes-nodeps: |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4353 | $(call check-all-partition-sizes-target, \ |
| 4354 | $(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] | 4355 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 4356 | endif # PRODUCT_BUILD_SUPER_PARTITION |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 4357 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4358 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 4359 | |
| 4360 | # ----------------------------------------------------------------- |
Greg Hartman | 2ebfef4 | 2014-11-04 21:17:06 -0800 | [diff] [blame] | 4361 | # bring in the installer image generation defines if necessary |
| 4362 | ifeq ($(TARGET_USE_DISKINSTALLER),true) |
| 4363 | include bootable/diskinstaller/config.mk |
| 4364 | endif |
| 4365 | |
| 4366 | # ----------------------------------------------------------------- |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame] | 4367 | # host tools needed to build dist and OTA packages |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4368 | |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 4369 | ifeq ($(BUILD_OS),darwin) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4370 | build_ota_package := false |
| 4371 | build_otatools_package := false |
| 4372 | else |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4373 | # Set build_ota_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4374 | build_ota_package := true |
| 4375 | ifeq ($(TARGET_SKIP_OTA_PACKAGE),true) |
| 4376 | build_ota_package := false |
| 4377 | endif |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 4378 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4379 | build_ota_package := false |
| 4380 | endif |
| 4381 | ifeq ($(TARGET_PRODUCT),sdk) |
| 4382 | build_ota_package := false |
| 4383 | endif |
Yifan Hong | f32f65c | 2021-07-14 14:19:12 -0700 | [diff] [blame] | 4384 | # A target without a kernel may be one of the following: |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 4385 | # - A generic target. In this case, the OTA package usually isn't built. |
| 4386 | # PRODUCT_BUILD_GENERIC_OTA_PACKAGE may be set to true to force OTA package |
| 4387 | # generation. |
| 4388 | # - A real device target, with TARGET_NO_KERNEL set to true and |
| 4389 | # BOARD_PREBUILT_BOOTIMAGE set. In this case, it is valid to generate |
| 4390 | # an OTA package. |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4391 | ifneq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 4392 | ifneq ($(filter generic%,$(TARGET_DEVICE)),) |
| 4393 | build_ota_package := false |
| 4394 | endif |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 4395 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 4396 | ifeq ($(TARGET_NO_KERNEL),true) |
| 4397 | build_ota_package := false |
| 4398 | endif |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 4399 | endif # INSTALLED_BOOTIMAGE_TARGET == "" |
Yifan Hong | bf77787 | 2021-07-19 16:28:49 +0000 | [diff] [blame] | 4400 | ifeq ($(recovery_fstab),) |
| 4401 | build_ota_package := false |
| 4402 | endif |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4403 | endif # PRODUCT_BUILD_GENERIC_OTA_PACKAGE |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4404 | |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4405 | # Set build_otatools_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4406 | build_otatools_package := true |
| 4407 | ifeq ($(TARGET_SKIP_OTATOOLS_PACKAGE),true) |
| 4408 | build_otatools_package := false |
| 4409 | endif |
Colin Cross | 481cc5a | 2016-02-04 15:09:23 -0800 | [diff] [blame] | 4410 | endif |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 4411 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4412 | ifeq ($(build_otatools_package),true) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4413 | |
| 4414 | INTERNAL_OTATOOLS_MODULES := \ |
changho.shin | 0f12536 | 2019-07-08 10:59:00 +0900 | [diff] [blame] | 4415 | aapt2 \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4416 | add_img_to_target_files \ |
Baligh Uddin | ab25b2d | 2020-05-29 19:01:32 +0000 | [diff] [blame] | 4417 | apksigner \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4418 | append2simg \ |
| 4419 | avbtool \ |
| 4420 | blk_alloc_to_base_fs \ |
| 4421 | boot_signer \ |
| 4422 | brillo_update_payload \ |
| 4423 | brotli \ |
| 4424 | bsdiff \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4425 | build_image \ |
| 4426 | build_super_image \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4427 | build_verity_metadata \ |
| 4428 | build_verity_tree \ |
| 4429 | care_map_generator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4430 | check_ota_package_signature \ |
| 4431 | check_target_files_signatures \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4432 | check_target_files_vintf \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4433 | checkvintf \ |
| 4434 | delta_generator \ |
| 4435 | e2fsck \ |
| 4436 | e2fsdroid \ |
| 4437 | fc_sort \ |
| 4438 | fec \ |
Jaegeuk Kim | 01da65f | 2021-06-08 18:24:46 -0700 | [diff] [blame] | 4439 | fsck.f2fs \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4440 | fs_config \ |
| 4441 | generate_verity_key \ |
Daniel Norman | ee33b4e | 2020-12-02 16:18:25 -0800 | [diff] [blame] | 4442 | host_init_verifier \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4443 | img2simg \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4444 | img_from_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4445 | imgdiff \ |
| 4446 | libconscrypt_openjdk_jni \ |
| 4447 | lpmake \ |
Isaac Chen | eec4a7c | 2019-06-25 11:50:58 +0800 | [diff] [blame] | 4448 | lpunpack \ |
Tianjie | 3031c29 | 2020-06-24 11:20:36 -0700 | [diff] [blame] | 4449 | lz4 \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4450 | make_f2fs \ |
Jaegeuk Kim | 8ba4bab | 2020-07-17 20:18:10 -0700 | [diff] [blame] | 4451 | make_f2fs_casefold \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4452 | merge_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4453 | minigzip \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4454 | mk_combined_img \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4455 | mkbootfs \ |
| 4456 | mkbootimg \ |
| 4457 | mke2fs \ |
Baligh Uddin | 6a8234b | 2020-01-29 17:42:59 -0800 | [diff] [blame] | 4458 | mke2fs.conf \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 4459 | mkfs.erofs \ |
| 4460 | mkerofsimage.sh \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4461 | mkf2fsuserimg.sh \ |
| 4462 | mksquashfs \ |
| 4463 | mksquashfsimage.sh \ |
| 4464 | mkuserimg_mke2fs \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 4465 | ota_from_target_files \ |
Bowgo Tsai | 6c37c17 | 2021-02-05 18:01:15 +0800 | [diff] [blame] | 4466 | repack_bootimg \ |
Daniel Norman | 48603ff | 2021-02-22 15:15:24 -0800 | [diff] [blame] | 4467 | secilc \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4468 | sefcontext_compile \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4469 | sgdisk \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4470 | shflags \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4471 | sign_apex \ |
| 4472 | sign_target_files_apks \ |
Jooyung Han | 8caba5e | 2021-10-27 03:58:09 +0900 | [diff] [blame] | 4473 | sign_virt_apex \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4474 | signapk \ |
| 4475 | simg2img \ |
| 4476 | sload_f2fs \ |
Yifan Hong | 125d0b6 | 2020-09-24 17:07:03 -0700 | [diff] [blame] | 4477 | toybox \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4478 | tune2fs \ |
Daniel Mentz | 30652b3 | 2020-01-04 15:18:09 -0800 | [diff] [blame] | 4479 | unpack_bootimg \ |
Tianjie Xu | 4e5591f | 2019-06-11 14:35:59 -0700 | [diff] [blame] | 4480 | update_host_simulator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4481 | validate_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4482 | verity_signer \ |
| 4483 | verity_verifier \ |
| 4484 | zipalign \ |
Kelvin Zhang | b673bbf | 2021-08-20 10:09:20 -0700 | [diff] [blame] | 4485 | zucchini \ |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 4486 | |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 4487 | # Additional tools to unpack and repack the apex file. |
| 4488 | INTERNAL_OTATOOLS_MODULES += \ |
| 4489 | apexer \ |
Nikita Ioffe | 3608148 | 2021-01-20 01:32:28 +0000 | [diff] [blame] | 4490 | apex_compression_tool \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 4491 | deapexer \ |
| 4492 | debugfs_static \ |
| 4493 | merge_zips \ |
| 4494 | resize2fs \ |
| 4495 | soong_zip \ |
| 4496 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4497 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4498 | INTERNAL_OTATOOLS_MODULES += \ |
| 4499 | futility \ |
| 4500 | vboot_signer |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 4501 | endif |
Tao Bao | f8e6fbe | 2016-01-04 09:57:32 -0800 | [diff] [blame] | 4502 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4503 | INTERNAL_OTATOOLS_FILES := \ |
| 4504 | $(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] | 4505 | |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 4506 | .PHONY: otatools |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4507 | otatools: $(INTERNAL_OTATOOLS_FILES) |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 4508 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4509 | # For each module, recursively resolve its host shared library dependencies. Then we have a full |
| 4510 | # list of modules whose installed files need to be packed. |
| 4511 | INTERNAL_OTATOOLS_MODULES_WITH_DEPS := \ |
| 4512 | $(sort $(INTERNAL_OTATOOLS_MODULES) \ |
| 4513 | $(foreach m,$(INTERNAL_OTATOOLS_MODULES),$(call get-all-shared-libs-deps,$(m)))) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4514 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4515 | INTERNAL_OTATOOLS_PACKAGE_FILES := \ |
| 4516 | $(filter $(HOST_OUT)/%,$(call module-installed-files,$(INTERNAL_OTATOOLS_MODULES_WITH_DEPS))) |
| 4517 | |
| 4518 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 4519 | $(sort $(shell find build/make/target/product/security -type f -name "*.x509.pem" -o \ |
| 4520 | -name "*.pk8" -o -name verity_key)) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 4521 | |
| 4522 | ifneq (,$(wildcard device)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4523 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Dan Willemsen | 60c6644 | 2018-05-01 19:07:27 -0700 | [diff] [blame] | 4524 | $(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] | 4525 | -name "*.pem" -o -name "oem*.prop" -o -name "*.avbpubkey")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 4526 | endif |
| 4527 | ifneq (,$(wildcard external/avb)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4528 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 4529 | $(sort $(shell find external/avb/test/data -type f -name "testkey_*.pem" -o \ |
| 4530 | -name "atx_metadata.bin")) |
| 4531 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4532 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4533 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 5232f09 | 2018-02-10 04:03:32 +0000 | [diff] [blame] | 4534 | $(sort $(shell find external/vboot_reference/tests/devkeys -type f)) |
Tao Bao | e8ef8f70 | 2017-05-17 11:41:50 -0700 | [diff] [blame] | 4535 | endif |
| 4536 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4537 | INTERNAL_OTATOOLS_RELEASETOOLS := \ |
| 4538 | $(sort $(shell find build/make/tools/releasetools -name "*.pyc" -prune -o \ |
| 4539 | \( -type f -o -type l \) -print)) |
| 4540 | |
| 4541 | BUILT_OTATOOLS_PACKAGE := $(PRODUCT_OUT)/otatools.zip |
| 4542 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_ZIP_ROOT := $(call intermediates-dir-for,PACKAGING,otatools)/otatools |
| 4543 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_PACKAGE_FILES := $(INTERNAL_OTATOOLS_PACKAGE_FILES) |
| 4544 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_RELEASETOOLS := $(INTERNAL_OTATOOLS_RELEASETOOLS) |
| 4545 | $(BUILT_OTATOOLS_PACKAGE): $(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS) |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 4546 | $(BUILT_OTATOOLS_PACKAGE): $(SOONG_ZIP) $(ZIP2ZIP) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4547 | @echo "Package OTA tools: $@" |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4548 | rm -rf $@ $(PRIVATE_ZIP_ROOT) |
| 4549 | mkdir -p $(dir $@) |
| 4550 | $(call copy-files-with-structure,$(PRIVATE_OTATOOLS_PACKAGE_FILES),$(HOST_OUT)/,$(PRIVATE_ZIP_ROOT)) |
| 4551 | $(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] | 4552 | cp $(SOONG_ZIP) $(ZIP2ZIP) $(MERGE_ZIPS) $(PRIVATE_ZIP_ROOT)/bin/ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4553 | $(SOONG_ZIP) -o $@ -C $(PRIVATE_ZIP_ROOT) -D $(PRIVATE_ZIP_ROOT) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4554 | |
| 4555 | .PHONY: otatools-package |
| 4556 | otatools-package: $(BUILT_OTATOOLS_PACKAGE) |
| 4557 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4558 | endif # build_otatools_package |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4559 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4560 | # ----------------------------------------------------------------- |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4561 | # misc_info.txt |
| 4562 | |
| 4563 | INSTALLED_MISC_INFO_TARGET := $(PRODUCT_OUT)/misc_info.txt |
| 4564 | |
| 4565 | ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),) |
| 4566 | # default to common dir for device vendor |
| 4567 | tool_extensions := $(TARGET_DEVICE_DIR)/../common |
| 4568 | else |
| 4569 | tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) |
| 4570 | endif |
| 4571 | .KATI_READONLY := tool_extensions |
| 4572 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 4573 | # $1: boot image file name |
| 4574 | define misc_boot_size |
| 4575 | $(subst .img,_size,$(1))=$(BOARD_KERNEL$(call to-upper,$(subst boot,,$(subst .img,,$(1))))_BOOTIMAGE_PARTITION_SIZE) |
| 4576 | endef |
| 4577 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4578 | $(INSTALLED_MISC_INFO_TARGET): |
| 4579 | rm -f $@ |
| 4580 | $(call pretty,"Target misc_info.txt: $@") |
| 4581 | $(hide) echo "recovery_api_version=$(RECOVERY_API_VERSION)" >> $@ |
| 4582 | $(hide) echo "fstab_version=$(RECOVERY_FSTAB_VERSION)" >> $@ |
| 4583 | ifdef BOARD_FLASH_BLOCK_SIZE |
| 4584 | $(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $@ |
| 4585 | endif |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 4586 | ifneq ($(strip $(BOARD_BOOTIMAGE_PARTITION_SIZE))$(strip $(BOARD_KERNEL_BINARIES)),) |
| 4587 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),\ |
| 4588 | echo "$(call misc_boot_size,$(notdir $(b)))" >> $@;) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4589 | endif |
| 4590 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 4591 | $(hide) echo "no_boot=true" >> $@ |
Steve Muckle | 9793cf6 | 2020-04-08 18:27:00 -0700 | [diff] [blame] | 4592 | else |
| 4593 | echo "boot_images=$(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(notdir $(b)))" >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4594 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4595 | ifneq ($(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 4596 | $(hide) echo "init_boot=true" >> $@ |
| 4597 | $(hide) echo "init_boot_size=$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)" >> $@ |
| 4598 | endif |
J. Avila | 98cd4cc | 2020-06-10 20:09:10 +0000 | [diff] [blame] | 4599 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 4600 | echo "lz4_ramdisks=true" >> $@ |
| 4601 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4602 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 4603 | echo "vendor_boot=true" >> $@ |
| 4604 | echo "vendor_boot_size=$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 4605 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4606 | ifeq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 4607 | $(hide) echo "no_recovery=true" >> $@ |
| 4608 | endif |
| 4609 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
| 4610 | $(hide) echo "include_recovery_dtbo=true" >> $@ |
| 4611 | endif |
| 4612 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 4613 | $(hide) echo "include_recovery_acpio=true" >> $@ |
| 4614 | endif |
| 4615 | ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE |
| 4616 | $(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $@ |
| 4617 | endif |
| 4618 | ifdef TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS |
| 4619 | @# TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS can be empty to indicate that nothing but defaults should be used. |
| 4620 | $(hide) echo "recovery_mount_options=$(TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 4621 | else |
| 4622 | $(hide) echo "recovery_mount_options=$(DEFAULT_TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 4623 | endif |
| 4624 | $(hide) echo "tool_extensions=$(tool_extensions)" >> $@ |
| 4625 | $(hide) echo "default_system_dev_certificate=$(DEFAULT_SYSTEM_DEV_CERTIFICATE)" >> $@ |
| 4626 | ifdef PRODUCT_EXTRA_RECOVERY_KEYS |
| 4627 | $(hide) echo "extra_recovery_keys=$(PRODUCT_EXTRA_RECOVERY_KEYS)" >> $@ |
| 4628 | endif |
| 4629 | $(hide) echo 'mkbootimg_args=$(BOARD_MKBOOTIMG_ARGS)' >> $@ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 4630 | $(hide) echo 'recovery_mkbootimg_args=$(BOARD_RECOVERY_MKBOOTIMG_ARGS)' >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4631 | $(hide) echo 'mkbootimg_version_args=$(INTERNAL_MKBOOTIMG_VERSION_ARGS)' >> $@ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4632 | $(hide) echo 'mkbootimg_init_args=$(BOARD_MKBOOTIMG_INIT_ARGS)' >> $@ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 4633 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 4634 | $(hide) echo 'gki_signing_key_path=$(BOARD_GKI_SIGNING_KEY_PATH)' >> $@ |
| 4635 | $(hide) echo 'gki_signing_algorithm=$(BOARD_GKI_SIGNING_ALGORITHM)' >> $@ |
| 4636 | endif |
| 4637 | ifdef BOARD_GKI_SIGNING_SIGNATURE_ARGS |
| 4638 | $(hide) echo 'gki_signing_signature_args=$(BOARD_GKI_SIGNING_SIGNATURE_ARGS)' >> $@ |
| 4639 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4640 | $(hide) echo "multistage_support=1" >> $@ |
| 4641 | $(hide) echo "blockimgdiff_versions=3,4" >> $@ |
| 4642 | ifeq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 4643 | $(hide) echo "build_generic_ota_package=true" >> $@ |
| 4644 | endif |
| 4645 | ifneq ($(OEM_THUMBPRINT_PROPERTIES),) |
| 4646 | # OTA scripts are only interested in fingerprint related properties |
| 4647 | $(hide) echo "oem_fingerprint_properties=$(OEM_THUMBPRINT_PROPERTIES)" >> $@ |
| 4648 | endif |
| 4649 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
| 4650 | # We need to create userdata.img with real data because the instrumented libraries are in userdata.img. |
| 4651 | $(hide) echo "userdata_img_with_data=true" >> $@ |
| 4652 | endif |
| 4653 | ifeq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
| 4654 | $(hide) echo "full_recovery_image=true" >> $@ |
| 4655 | endif |
Bill Peckham | e868aec | 2019-09-17 17:06:47 -0700 | [diff] [blame] | 4656 | ifdef BOARD_USES_VENDORIMAGE |
| 4657 | $(hide) echo "board_uses_vendorimage=true" >> $@ |
| 4658 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4659 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 8218225 | 2020-11-13 11:28:17 +0800 | [diff] [blame] | 4660 | ifeq ($(BUILDING_VBMETA_IMAGE),true) |
| 4661 | $(hide) echo "avb_building_vbmeta_image=true" >> $@ |
| 4662 | endif # BUILDING_VBMETA_IMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4663 | $(hide) echo "avb_enable=true" >> $@ |
| 4664 | $(hide) echo "avb_vbmeta_key_path=$(BOARD_AVB_KEY_PATH)" >> $@ |
| 4665 | $(hide) echo "avb_vbmeta_algorithm=$(BOARD_AVB_ALGORITHM)" >> $@ |
| 4666 | $(hide) echo "avb_vbmeta_args=$(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS)" >> $@ |
| 4667 | $(hide) echo "avb_boot_add_hash_footer_args=$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4668 | ifdef BOARD_AVB_BOOT_KEY_PATH |
| 4669 | $(hide) echo "avb_boot_key_path=$(BOARD_AVB_BOOT_KEY_PATH)" >> $@ |
| 4670 | $(hide) echo "avb_boot_algorithm=$(BOARD_AVB_BOOT_ALGORITHM)" >> $@ |
| 4671 | $(hide) echo "avb_boot_rollback_index_location=$(BOARD_AVB_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4672 | endif # BOARD_AVB_BOOT_KEY_PATH |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4673 | echo "avb_vendor_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4674 | ifdef BOARD_AVB_VENDOR_BOOT_KEY_PATH |
| 4675 | echo "avb_vendor_boot_key_path=$(BOARD_AVB_VENDOR_BOOT_KEY_PATH)" >> $@ |
| 4676 | echo "avb_vendor_boot_algorithm=$(BOARD_AVB_VENDOR_BOOT_ALGORITHM)" >> $@ |
| 4677 | echo "avb_vendor_boot_rollback_index_location=$(BOARD_AVB_VENDOR_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4678 | endif # BOARD_AVB_VENDOR_BOOT_KEY_PATH |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4679 | $(hide) echo "avb_recovery_add_hash_footer_args=$(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4680 | ifdef BOARD_AVB_RECOVERY_KEY_PATH |
| 4681 | $(hide) echo "avb_recovery_key_path=$(BOARD_AVB_RECOVERY_KEY_PATH)" >> $@ |
| 4682 | $(hide) echo "avb_recovery_algorithm=$(BOARD_AVB_RECOVERY_ALGORITHM)" >> $@ |
| 4683 | $(hide) echo "avb_recovery_rollback_index_location=$(BOARD_AVB_RECOVERY_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4684 | endif # BOARD_AVB_RECOVERY_KEY_PATH |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4685 | ifneq (,$(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST))) |
| 4686 | $(hide) echo "avb_custom_images_partition_list=$(BOARD_CUSTOMIMAGES_PARTITION_LIST)" >> $@ |
| 4687 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4688 | echo "avb_$(partition)_key_path=$(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH)" >> $@; \ |
| 4689 | echo "avb_$(partition)_algorithm=$(BOARD_AVB_$(call to-upper,$(partition))_ALGORITHM)" >> $@; \ |
| 4690 | echo "avb_$(partition)_add_hashtree_footer_args=$(BOARD_AVB_$(call to-upper,$(partition))_ADD_HASHTREE_FOOTER_ARGS)" >> $@; \ |
| 4691 | echo "avb_$(partition)_rollback_index_location=$(BOARD_AVB_$(call to-upper,$(partition))_ROLLBACK_INDEX_LOCATION)" >> $@; \ |
| 4692 | echo "avb_$(partition)_partition_size=$(BOARD_AVB_$(call to-upper,$(partition))_PARTITION_SIZE)" >> $@; \ |
| 4693 | echo "avb_$(partition)_image_list=$(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),$(notdir $(image)))" >> $@;) |
| 4694 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4695 | ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) |
| 4696 | $(hide) echo "avb_vbmeta_system=$(BOARD_AVB_VBMETA_SYSTEM)" >> $@ |
| 4697 | $(hide) echo "avb_vbmeta_system_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 4698 | $(hide) echo "avb_vbmeta_system_key_path=$(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH)" >> $@ |
| 4699 | $(hide) echo "avb_vbmeta_system_algorithm=$(BOARD_AVB_VBMETA_SYSTEM_ALGORITHM)" >> $@ |
| 4700 | $(hide) echo "avb_vbmeta_system_rollback_index_location=$(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4701 | endif # BOARD_AVB_VBMETA_SYSTEM |
| 4702 | ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) |
| 4703 | $(hide) echo "avb_vbmeta_vendor=$(BOARD_AVB_VBMETA_VENDOR)" >> $@ |
| 4704 | $(hide) echo "avb_vbmeta_vendor_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 4705 | $(hide) echo "avb_vbmeta_vendor_key_path=$(BOARD_AVB_VBMETA_VENDOR_KEY_PATH)" >> $@ |
| 4706 | $(hide) echo "avb_vbmeta_vendor_algorithm=$(BOARD_AVB_VBMETA_VENDOR_ALGORITHM)" >> $@ |
| 4707 | $(hide) echo "avb_vbmeta_vendor_rollback_index_location=$(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4708 | endif # BOARD_AVB_VBMETA_VENDOR_KEY_PATH |
| 4709 | endif # BOARD_AVB_ENABLE |
| 4710 | ifdef BOARD_BPT_INPUT_FILES |
| 4711 | $(hide) echo "board_bpt_enable=true" >> $@ |
| 4712 | $(hide) echo "board_bpt_make_table_args=$(BOARD_BPT_MAKE_TABLE_ARGS)" >> $@ |
| 4713 | $(hide) echo "board_bpt_input_files=$(BOARD_BPT_INPUT_FILES)" >> $@ |
| 4714 | endif |
| 4715 | ifdef BOARD_BPT_DISK_SIZE |
| 4716 | $(hide) echo "board_bpt_disk_size=$(BOARD_BPT_DISK_SIZE)" >> $@ |
| 4717 | endif |
| 4718 | $(call generate-userimage-prop-dictionary, $@) |
| 4719 | ifeq ($(AB_OTA_UPDATER),true) |
| 4720 | @# Include the build type in META/misc_info.txt so the server can easily differentiate production builds. |
| 4721 | $(hide) echo "build_type=$(TARGET_BUILD_VARIANT)" >> $@ |
| 4722 | $(hide) echo "ab_update=true" >> $@ |
| 4723 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4724 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
| 4725 | $(hide) echo "allow_non_ab=true" >> $@ |
| 4726 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4727 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 4728 | $(hide) echo "has_dtbo=true" >> $@ |
| 4729 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4730 | $(hide) echo "dtbo_size=$(BOARD_DTBOIMG_PARTITION_SIZE)" >> $@ |
| 4731 | $(hide) echo "avb_dtbo_add_hash_footer_args=$(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4732 | ifdef BOARD_AVB_DTBO_KEY_PATH |
| 4733 | $(hide) echo "avb_dtbo_key_path=$(BOARD_AVB_DTBO_KEY_PATH)" >> $@ |
| 4734 | $(hide) echo "avb_dtbo_algorithm=$(BOARD_AVB_DTBO_ALGORITHM)" >> $@ |
| 4735 | $(hide) echo "avb_dtbo_rollback_index_location=$(BOARD_AVB_DTBO_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4736 | endif # BOARD_AVB_DTBO_KEY_PATH |
| 4737 | endif # BOARD_AVB_ENABLE |
| 4738 | endif # BOARD_PREBUILT_DTBOIMAGE |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 4739 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4740 | $(hide) echo "has_pvmfw=true" >> $@ |
| 4741 | ifeq ($(BOARD_AVB_ENABLE),true) |
Pierre-Clément Tosi | 592a3ca | 2021-10-04 11:34:11 +0200 | [diff] [blame] | 4742 | $(hide) echo "pvmfw_size=$(BOARD_PVMFWIMAGE_PARTITION_SIZE)" >> $@ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4743 | $(hide) echo "avb_pvmfw_add_hash_footer_args=$(BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4744 | ifdef BOARD_AVB_PVMFW_KEY_PATH |
| 4745 | $(hide) echo "avb_pvmfw_key_path=$(BOARD_AVB_PVMFW_KEY_PATH)" >> $@ |
| 4746 | $(hide) echo "avb_pvmfw_algorithm=$(BOARD_AVB_PVMFW_ALGORITHM)" >> $@ |
| 4747 | $(hide) echo "avb_pvmfw_rollback_index_location=$(BOARD_AVB_PVMFW_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4748 | endif # BOARD_AVB_PVMFW_KEY_PATH |
| 4749 | endif # BOARD_AVB_ENABLE |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 4750 | endif # BOARD_USES_PVMFWIMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4751 | $(call dump-dynamic-partitions-info,$@) |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4752 | @# VINTF checks |
| 4753 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 4754 | $(hide) echo "vintf_enforce=true" >> $@ |
| 4755 | endif |
| 4756 | ifdef ODM_MANIFEST_SKUS |
| 4757 | $(hide) echo "vintf_odm_manifest_skus=$(ODM_MANIFEST_SKUS)" >> $@ |
| 4758 | endif |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4759 | ifdef ODM_MANIFEST_FILES |
| 4760 | $(hide) echo "vintf_include_empty_odm_sku=true" >> $@ |
| 4761 | endif |
| 4762 | ifdef DEVICE_MANIFEST_SKUS |
| 4763 | $(hide) echo "vintf_vendor_manifest_skus=$(DEVICE_MANIFEST_SKUS)" >> $@ |
| 4764 | endif |
| 4765 | ifdef DEVICE_MANIFEST_FILE |
| 4766 | $(hide) echo "vintf_include_empty_vendor_sku=true" >> $@ |
| 4767 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 4768 | ifeq ($(BOARD_BOOTLOADER_IN_UPDATE_PACKAGE),true) |
| 4769 | $(hide) echo "bootloader_in_update_package=true" >> $@ |
| 4770 | endif |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 4771 | ifeq ($(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE),true) |
| 4772 | $(hide) echo "exclude_kernel_from_recovery_image=true" >> $@ |
| 4773 | endif |
Kelvin Zhang | 5a65f69 | 2020-11-03 16:40:18 -0500 | [diff] [blame] | 4774 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
| 4775 | $(hide) echo "partial_ota_update_partitions_list=$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)" >> $@ |
| 4776 | endif |
Jose Galmes | 9c8f6eb | 2021-07-21 09:34:08 -0700 | [diff] [blame] | 4777 | ifeq ($(BUILDING_WITH_VSDK),true) |
| 4778 | $(hide) echo "building_with_vsdk=true" >> $@ |
| 4779 | endif |
| 4780 | ifeq ($(TARGET_FLATTEN_APEX),false) |
| 4781 | $(hide) echo "target_flatten_apex=false" >> $@ |
| 4782 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4783 | |
| 4784 | .PHONY: misc_info |
| 4785 | misc_info: $(INSTALLED_MISC_INFO_TARGET) |
| 4786 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 4787 | droidcore-unbundled: $(INSTALLED_MISC_INFO_TARGET) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4788 | |
| 4789 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4790 | # A zip of the directories that map to the target filesystem. |
| 4791 | # This zip can be used to create an OTA package or filesystem image |
| 4792 | # as a post-build step. |
| 4793 | # |
| 4794 | name := $(TARGET_PRODUCT) |
| 4795 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4796 | name := $(name)_debug |
| 4797 | endif |
| 4798 | name := $(name)-target_files-$(FILE_NAME_TAG) |
| 4799 | |
| 4800 | intermediates := $(call intermediates-dir-for,PACKAGING,target_files) |
| 4801 | BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip |
| 4802 | $(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates) |
| 4803 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4804 | zip_root := $(intermediates)/$(name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4805 | |
| 4806 | # $(1): Directory to copy |
| 4807 | # $(2): Location to copy it to |
| 4808 | # The "ls -A" is to prevent "acp s/* d" from failing if s is empty. |
| 4809 | define package_files-copy-root |
| 4810 | if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \ |
| 4811 | mkdir -p $(2) && \ |
| 4812 | $(ACP) -rd $(strip $(1))/* $(2); \ |
| 4813 | fi |
| 4814 | endef |
| 4815 | |
Tao Bao | a04fca3 | 2015-11-30 12:22:24 -0800 | [diff] [blame] | 4816 | built_ota_tools := |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4817 | |
| 4818 | # We can't build static executables when SANITIZE_TARGET=address |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 4819 | ifeq (,$(filter address, $(SANITIZE_TARGET))) |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4820 | built_ota_tools += \ |
Elliott Hughes | 9b824d5 | 2020-04-17 15:46:55 -0700 | [diff] [blame] | 4821 | $(call intermediates-dir-for,EXECUTABLES,updater)/updater |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4822 | endif |
| 4823 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4824 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools) |
| 4825 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4826 | tool_extension := $(wildcard $(tool_extensions)/releasetools.py) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4827 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_TOOL_EXTENSION := $(tool_extension) |
Doug Zongker | c18736b | 2009-09-30 09:20:32 -0700 | [diff] [blame] | 4828 | |
Sen Jiang | 4438fd9 | 2016-03-07 16:51:01 -0800 | [diff] [blame] | 4829 | ifeq ($(AB_OTA_UPDATER),true) |
Sen Jiang | 4393563 | 2017-12-19 15:24:43 -0800 | [diff] [blame] | 4830 | updater_dep := system/update_engine/update_engine.conf |
Kelvin Zhang | c06f062 | 2021-11-30 12:38:39 -0800 | [diff] [blame] | 4831 | updater_dep := external/zucchini/version_info.h |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4832 | endif |
| 4833 | |
| 4834 | # Build OTA tools if non-A/B is allowed |
| 4835 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Shinichiro Hamaji | ee2d211 | 2016-05-10 16:40:38 +0900 | [diff] [blame] | 4836 | updater_dep := $(built_ota_tools) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4837 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4838 | |
Shinichiro Hamaji | ee2d211 | 2016-05-10 16:40:38 +0900 | [diff] [blame] | 4839 | $(BUILT_TARGET_FILES_PACKAGE): $(updater_dep) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4840 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4841 | # If we are using recovery as boot, output recovery files to BOOT/. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 4842 | # 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] | 4843 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 4844 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := BOOT |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 4845 | else ifeq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
| 4846 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := VENDOR_BOOT |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4847 | else |
| 4848 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := RECOVERY |
| 4849 | endif |
| 4850 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4851 | ifeq ($(AB_OTA_UPDATER),true) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4852 | ifdef OSRELEASED_DIRECTORY |
| 4853 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id |
| 4854 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version |
| 4855 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_ETC)/$(OSRELEASED_DIRECTORY)/system_version |
| 4856 | endif |
Tao Bao | a835f38 | 2019-07-18 15:55:30 -0700 | [diff] [blame] | 4857 | |
| 4858 | # Not checking in board_config.mk, since AB_OTA_PARTITIONS may be updated in Android.mk (e.g. to |
| 4859 | # additionally include radio or bootloader partitions). |
| 4860 | ifeq ($(AB_OTA_PARTITIONS),) |
| 4861 | $(error AB_OTA_PARTITIONS must be defined when using AB_OTA_UPDATER) |
| 4862 | endif |
| 4863 | endif |
| 4864 | |
| 4865 | ifneq ($(AB_OTA_PARTITIONS),) |
| 4866 | ifneq ($(AB_OTA_UPDATER),true) |
| 4867 | $(error AB_OTA_UPDATER must be true when defining AB_OTA_PARTITIONS) |
| 4868 | endif |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4869 | endif |
| 4870 | |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4871 | # Run fs_config while creating the target files package |
| 4872 | # $1: root directory |
| 4873 | # $2: add prefix |
| 4874 | define fs_config |
Luis Hector Chavez | 440da2d | 2018-02-07 09:49:52 -0800 | [diff] [blame] | 4875 | (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] | 4876 | endef |
| 4877 | |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 4878 | define filter-out-missing-vendor |
| 4879 | $(if $(INSTALLED_VENDORIMAGE_TARGET),$(1),$(filter-out vendor,$(1))) |
| 4880 | endef |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 4881 | define filter-out-missing-vendor_dlkm |
| 4882 | $(if $(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(1),$(filter-out vendor_dlkm,$(1))) |
| 4883 | endef |
| 4884 | define filter-out-missing-odm |
| 4885 | $(if $(INSTALLED_ODMIMAGE_TARGET),$(1),$(filter-out odm,$(1))) |
| 4886 | endef |
| 4887 | define filter-out-missing-odm_dlkm |
| 4888 | $(if $(INSTALLED_ODM_DLKMIMAGE_TARGET),$(1),$(filter-out odm_dlkm,$(1))) |
| 4889 | endef |
| 4890 | # Filter out vendor,vendor_dlkm,odm,odm_dlkm from the list for AOSP targets. |
| 4891 | # $(1): list |
| 4892 | define filter-out-missing-partitions |
| 4893 | $(call filter-out-missing-vendor,\ |
| 4894 | $(call filter-out-missing-vendor_dlkm,\ |
| 4895 | $(call filter-out-missing-odm,\ |
| 4896 | $(call filter-out-missing-odm_dlkm,$(1))))) |
| 4897 | endef |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 4898 | |
| 4899 | # Information related to dynamic partitions and virtual A/B. This information |
| 4900 | # is needed for building the super image (see dump-super-image-info) and |
| 4901 | # building OTA packages. |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4902 | # $(1): file |
| 4903 | define dump-dynamic-partitions-info |
| 4904 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)), \ |
| 4905 | echo "use_dynamic_partitions=true" >> $(1)) |
| 4906 | $(if $(filter true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)), \ |
| 4907 | echo "dynamic_partition_retrofit=true" >> $(1)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4908 | echo "lpmake=$(notdir $(LPMAKE))" >> $(1) |
| 4909 | $(if $(filter true,$(PRODUCT_BUILD_SUPER_PARTITION)), $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 4910 | echo "build_super_partition=true" >> $(1))) |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 4911 | $(if $(BUILDING_SUPER_EMPTY_IMAGE), \ |
| 4912 | echo "build_super_empty_partition=true" >> $(1)) |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 4913 | $(if $(filter true,$(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE)), \ |
| 4914 | echo "build_retrofit_dynamic_partitions_ota_package=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4915 | echo "super_metadata_device=$(BOARD_SUPER_PARTITION_METADATA_DEVICE)" >> $(1) |
| 4916 | $(if $(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 4917 | echo "super_block_devices=$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)" >> $(1)) |
| 4918 | $(foreach device,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 4919 | echo "super_$(device)_device_size=$(BOARD_SUPER_PARTITION_$(call to-upper,$(device))_DEVICE_SIZE)" >> $(1);) |
| 4920 | $(if $(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 4921 | 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] | 4922 | $(if $(BOARD_SUPER_PARTITION_GROUPS), |
| 4923 | echo "super_partition_groups=$(BOARD_SUPER_PARTITION_GROUPS)" >> $(1)) |
| 4924 | $(foreach group,$(BOARD_SUPER_PARTITION_GROUPS), \ |
| 4925 | echo "super_$(group)_group_size=$(BOARD_$(call to-upper,$(group))_SIZE)" >> $(1); \ |
| 4926 | $(if $(BOARD_$(call to-upper,$(group))_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 4927 | 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] | 4928 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)), \ |
| 4929 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 4930 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)), \ |
| 4931 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 4932 | $(if $(filter true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)), \ |
| 4933 | echo "super_image_in_update_package=true" >> $(1)) |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4934 | $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 4935 | echo "super_partition_size=$(BOARD_SUPER_PARTITION_SIZE)" >> $(1)) |
| 4936 | $(if $(BOARD_SUPER_PARTITION_ALIGNMENT), \ |
| 4937 | echo "super_partition_alignment=$(BOARD_SUPER_PARTITION_ALIGNMENT)" >> $(1)) |
| 4938 | $(if $(BOARD_SUPER_PARTITION_WARN_LIMIT), \ |
| 4939 | echo "super_partition_warn_limit=$(BOARD_SUPER_PARTITION_WARN_LIMIT)" >> $(1)) |
| 4940 | $(if $(BOARD_SUPER_PARTITION_ERROR_LIMIT), \ |
| 4941 | echo "super_partition_error_limit=$(BOARD_SUPER_PARTITION_ERROR_LIMIT)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 4942 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA)), \ |
| 4943 | echo "virtual_ab=true" >> $(1)) |
Kelvin Zhang | 239a79a | 2021-01-15 13:47:52 -0500 | [diff] [blame] | 4944 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_COMPRESSION)), \ |
| 4945 | echo "virtual_ab_compression=true" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 4946 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA_RETROFIT)), \ |
| 4947 | echo "virtual_ab_retrofit=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4948 | endef |
| 4949 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4950 | # By conditionally including the dependency of the target files package on the |
| 4951 | # full system image deps, we speed up builds that do not build the system |
| 4952 | # image. |
| 4953 | ifdef BUILDING_SYSTEM_IMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4954 | $(BUILT_TARGET_FILES_PACKAGE): $(FULL_SYSTEMIMAGE_DEPS) |
| 4955 | endif |
| 4956 | |
| 4957 | ifdef BUILDING_USERDATA_IMAGE |
| 4958 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_USERDATAIMAGE_FILES) |
| 4959 | endif |
| 4960 | |
| 4961 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 4962 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEMOTHERIMAGE_FILES) |
| 4963 | endif |
| 4964 | |
| 4965 | ifdef BUILDING_VENDOR_BOOT_IMAGE |
| 4966 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_RAMDISK_FILES) |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 4967 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
Devin Moore | 55af506 | 2021-06-09 10:44:44 -0700 | [diff] [blame] | 4968 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
Colin Cross | e643120 | 2021-02-24 11:44:55 -0800 | [diff] [blame] | 4969 | # The vendor ramdisk may be built from the recovery ramdisk. |
| 4970 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
| 4971 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 4972 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4973 | endif |
| 4974 | |
| 4975 | ifdef BUILDING_RECOVERY_IMAGE |
| 4976 | # 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] | 4977 | # BUILT_TARGET_FILES_PACKAGE dependencies because currently there're cp/rsync/rm |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4978 | # commands in build-recoveryimage-target, which would touch the files under |
| 4979 | # TARGET_RECOVERY_OUT and race with packaging target-files.zip. |
| 4980 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 4981 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTIMAGE_TARGET) |
| 4982 | else |
| 4983 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_RECOVERYIMAGE_TARGET) |
| 4984 | endif |
| 4985 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RECOVERYIMAGE_FILES) |
| 4986 | endif |
| 4987 | |
| 4988 | # Conditionally depend on the image files if the image is being built so the |
| 4989 | # target-files.zip rule doesn't wait on the image creation rule, or the image |
| 4990 | # if it is coming from a prebuilt. |
| 4991 | |
| 4992 | ifdef BUILDING_VENDOR_IMAGE |
| 4993 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDORIMAGE_FILES) |
| 4994 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 4995 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_VENDORIMAGE_TARGET) |
| 4996 | endif |
| 4997 | |
| 4998 | ifdef BUILDING_PRODUCT_IMAGE |
| 4999 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_PRODUCTIMAGE_FILES) |
| 5000 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 5001 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_PRODUCTIMAGE_TARGET) |
| 5002 | endif |
| 5003 | |
| 5004 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 5005 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
| 5006 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 5007 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
| 5008 | endif |
| 5009 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5010 | ifneq (,$(BUILDING_BOOT_IMAGE)$(BUILDING_INIT_BOOT_IMAGE)) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5011 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RAMDISK_FILES) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5012 | endif # BUILDING_BOOT_IMAGE != "" || BUILDING_INIT_BOOT_IMAGE != "" |
| 5013 | |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 5014 | 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] | 5015 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTIMAGE_TARGET) |
| 5016 | endif |
| 5017 | |
| 5018 | ifdef BUILDING_ODM_IMAGE |
| 5019 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_ODMIMAGE_FILES) |
| 5020 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 5021 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_ODMIMAGE_TARGET) |
| 5022 | endif |
| 5023 | |
| 5024 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 5025 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 5026 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5027 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
| 5028 | endif |
| 5029 | |
| 5030 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 5031 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_ODM_DLKMIMAGE_FILES) |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 5032 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5033 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 5034 | endif |
| 5035 | |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5036 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5037 | MK_VBMETA_BOOT_KERNEL_CMDLINE_SH := device/generic/goldfish/tools/mk_vbmeta_boot_params.sh |
| 5038 | $(BUILT_TARGET_FILES_PACKAGE): $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5039 | endif |
| 5040 | |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5041 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 5042 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTLOADER_MODULE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5043 | droidcore-unbundled: $(INSTALLED_BOOTLOADER_MODULE) |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5044 | endif |
| 5045 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5046 | # Depending on the various images guarantees that the underlying |
| 5047 | # directories are up-to-date. |
| 5048 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5049 | $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 5050 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5051 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5052 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5053 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5054 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5055 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 5056 | $(INSTALLED_KERNEL_TARGET) \ |
Enrico Granata | b582e0f | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 5057 | $(INSTALLED_RAMDISK_TARGET) \ |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 5058 | $(INSTALLED_DTBIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5059 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 5060 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 5061 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 5062 | $(BOARD_RECOVERY_ACPIO) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5063 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 5064 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 5065 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5066 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5067 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5068 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5069 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5070 | $(LPMAKE) \ |
| 5071 | $(SELINUX_FC) \ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5072 | $(INSTALLED_MISC_INFO_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5073 | $(APKCERTS_FILE) \ |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 5074 | $(SOONG_APEX_KEYS_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5075 | $(SOONG_ZIP) \ |
| 5076 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5077 | $(ADD_IMG_TO_TARGET_FILES) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 5078 | $(MAKE_RECOVERY_PATCH) \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5079 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 5080 | $(BUILT_KERNEL_VERSION_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5081 | | $(ACP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5082 | @echo "Package target files: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 5083 | $(hide) rm -rf $@ $@.list $(zip_root) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5084 | $(hide) mkdir -p $(dir $@) $(zip_root) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 5085 | 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] | 5086 | @# Components of the recovery image |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5087 | $(hide) mkdir -p $(zip_root)/$(PRIVATE_RECOVERY_OUT) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 5088 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 5089 | # recovery ramdisk in vendor_boot. |
| 5090 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5091 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5092 | $(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/$(PRIVATE_RECOVERY_OUT)/RAMDISK) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 5093 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5094 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 5095 | ifneq (,$(filter true,$(BOARD_USES_RECOVERY_AS_BOOT))) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 5096 | cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 5097 | else ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 5098 | cp $(firstword $(INSTALLED_KERNEL_TARGET)) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/kernel |
| 5099 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5100 | endif |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 5101 | 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] | 5102 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5103 | 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] | 5104 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 5105 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 5106 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5107 | cp $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 5108 | else |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5109 | cp $(BOARD_PREBUILT_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 5110 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5111 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 5112 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5113 | cp $(BOARD_RECOVERY_ACPIO) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_acpio |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 5114 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 5115 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5116 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 5117 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5118 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 5119 | ifdef INTERNAL_KERNEL_CMDLINE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5120 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/cmdline |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5121 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 5122 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5123 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5124 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5125 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5126 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5127 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5128 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 5129 | endif # not (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5130 | 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] | 5131 | @# Components of the boot image |
| 5132 | $(hide) mkdir -p $(zip_root)/BOOT |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 5133 | $(hide) mkdir -p $(zip_root)/ROOT |
| 5134 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5135 | $(TARGET_ROOT_OUT),$(zip_root)/ROOT) |
Tom Cherry | 3871f0f | 2018-11-06 14:23:44 -0800 | [diff] [blame] | 5136 | @# If we are using recovery as boot, this is already done when processing recovery. |
| 5137 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 5138 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5139 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5140 | $(TARGET_RAMDISK_OUT),$(zip_root)/BOOT/RAMDISK) |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 5141 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5142 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 5143 | $(hide) cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5144 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 5145 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5146 | echo "$(GENERIC_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 5147 | else ifndef INSTALLED_VENDOR_BOOTIMAGE_TARGET # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5148 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5149 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5150 | cp $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5151 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 5152 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5153 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/BOOT/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 5154 | endif |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5155 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5156 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5157 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5158 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5159 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5160 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5161 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5162 | endif # BOARD_USES_RECOVERY_AS_BOOT not true |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 5163 | $(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\ |
| 5164 | mkdir -p $(zip_root)/RADIO; \ |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5165 | cp $(t) $(zip_root)/RADIO/$(notdir $(t));) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5166 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 5167 | mkdir -p $(zip_root)/VENDOR_BOOT |
| 5168 | $(call package_files-copy-root, \ |
| 5169 | $(TARGET_VENDOR_RAMDISK_OUT),$(zip_root)/VENDOR_BOOT/RAMDISK) |
| 5170 | ifdef INSTALLED_DTBIMAGE_TARGET |
| 5171 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_BOOT/dtb |
| 5172 | endif |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 5173 | ifdef INTERNAL_VENDOR_BOOTCONFIG_TARGET |
| 5174 | cp $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) $(zip_root)/VENDOR_BOOT/vendor_bootconfig |
| 5175 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5176 | ifdef BOARD_KERNEL_BASE |
| 5177 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/VENDOR_BOOT/base |
| 5178 | endif |
| 5179 | ifdef BOARD_KERNEL_PAGESIZE |
| 5180 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_BOOT/pagesize |
| 5181 | endif |
| 5182 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/VENDOR_BOOT/vendor_cmdline |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 5183 | ifdef INTERNAL_VENDOR_RAMDISK_FRAGMENTS |
| 5184 | echo "$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)" > "$(zip_root)/VENDOR_BOOT/vendor_ramdisk_fragments" |
| 5185 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 5186 | mkdir -p $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment); \ |
| 5187 | echo "$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)" > "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/mkbootimg_args"; \ |
| 5188 | $(eval prebuilt_ramdisk := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 5189 | $(if $(prebuilt_ramdisk), \ |
| 5190 | cp "$(prebuilt_ramdisk)" "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/prebuilt_ramdisk";, \ |
| 5191 | $(call package_files-copy-root, \ |
| 5192 | $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR), \ |
| 5193 | $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/RAMDISK); \ |
| 5194 | )) |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 5195 | endif # INTERNAL_VENDOR_RAMDISK_FRAGMENTS != "" |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5196 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5197 | ifdef BUILDING_SYSTEM_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5198 | @# Contents of the system image |
| 5199 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5200 | $(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5201 | endif |
| 5202 | ifdef BUILDING_USERDATA_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5203 | @# Contents of the data image |
| 5204 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5205 | $(TARGET_OUT_DATA),$(zip_root)/DATA) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5206 | endif |
| 5207 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 5208 | @# Contents of the vendor image |
| 5209 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5210 | $(TARGET_OUT_VENDOR),$(zip_root)/VENDOR) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 5211 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5212 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5213 | @# Contents of the product image |
| 5214 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5215 | $(TARGET_OUT_PRODUCT),$(zip_root)/PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5216 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5217 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 5218 | @# Contents of the system_ext image |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5219 | $(hide) $(call package_files-copy-root, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5220 | $(TARGET_OUT_SYSTEM_EXT),$(zip_root)/SYSTEM_EXT) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5221 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5222 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5223 | @# Contents of the odm image |
| 5224 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5225 | $(TARGET_OUT_ODM),$(zip_root)/ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5226 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5227 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 5228 | @# Contents of the vendor_dlkm image |
| 5229 | $(hide) $(call package_files-copy-root, \ |
| 5230 | $(TARGET_OUT_VENDOR_DLKM),$(zip_root)/VENDOR_DLKM) |
| 5231 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5232 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 5233 | @# Contents of the odm_dlkm image |
| 5234 | $(hide) $(call package_files-copy-root, \ |
| 5235 | $(TARGET_OUT_ODM_DLKM),$(zip_root)/ODM_DLKM) |
| 5236 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5237 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 5238 | @# Contents of the system_other image |
| 5239 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5240 | $(TARGET_OUT_SYSTEM_OTHER),$(zip_root)/SYSTEM_OTHER) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 5241 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5242 | @# Extra contents of the OTA package |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5243 | $(hide) mkdir -p $(zip_root)/OTA |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5244 | $(hide) cp $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/ |
Enrico Granata | b582e0f | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 5245 | ifdef BUILDING_RAMDISK_IMAGE |
| 5246 | ifeq (true,$(BOARD_IMG_USE_RAMDISK)) |
| 5247 | @# Contents of the ramdisk image |
| 5248 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5249 | $(hide) cp $(INSTALLED_RAMDISK_TARGET) $(zip_root)/IMAGES/ |
| 5250 | endif |
| 5251 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5252 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 5253 | ifneq ($(built_ota_tools),) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5254 | $(hide) mkdir -p $(zip_root)/OTA/bin |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5255 | $(hide) cp $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/ |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5256 | endif |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 5257 | endif |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5258 | @# 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] | 5259 | @# build them. |
| 5260 | $(hide) mkdir -p $(zip_root)/META |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5261 | $(hide) cp $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 5262 | $(hide) cp $(SOONG_APEX_KEYS_FILE) $(zip_root)/META/apexkeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5263 | ifneq ($(tool_extension),) |
| 5264 | $(hide) cp $(PRIVATE_TOOL_EXTENSION) $(zip_root)/META/ |
| 5265 | endif |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 5266 | $(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5267 | $(hide) cp $(SELINUX_FC) $(zip_root)/META/file_contexts.bin |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5268 | $(hide) cp $(INSTALLED_MISC_INFO_TARGET) $(zip_root)/META/misc_info.txt |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5269 | ifneq ($(PRODUCT_SYSTEM_BASE_FS_PATH),) |
| 5270 | $(hide) cp $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 5271 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 5272 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5273 | ifneq ($(PRODUCT_VENDOR_BASE_FS_PATH),) |
| 5274 | $(hide) cp $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 5275 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 5276 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5277 | ifneq ($(PRODUCT_PRODUCT_BASE_FS_PATH),) |
| 5278 | $(hide) cp $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 5279 | $(zip_root)/META/$(notdir $(PRODUCT_PRODUCT_BASE_FS_PATH)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5280 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5281 | ifneq ($(PRODUCT_SYSTEM_EXT_BASE_FS_PATH),) |
| 5282 | $(hide) cp $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 5283 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5284 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5285 | ifneq ($(PRODUCT_ODM_BASE_FS_PATH),) |
| 5286 | $(hide) cp $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 5287 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_BASE_FS_PATH)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5288 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5289 | ifneq ($(PRODUCT_VENDOR_DLKM_BASE_FS_PATH),) |
| 5290 | $(hide) cp $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 5291 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH)) |
| 5292 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5293 | ifneq ($(PRODUCT_ODM_DLKM_BASE_FS_PATH),) |
| 5294 | $(hide) cp $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 5295 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_DLKM_BASE_FS_PATH)) |
| 5296 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5297 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 5298 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 5299 | $(hide) PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 5300 | $(MAKE_RECOVERY_PATCH) $(zip_root) $(zip_root) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 5301 | endif |
Bill Peckham | c0f413f | 2019-11-07 11:27:02 -0800 | [diff] [blame] | 5302 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 5303 | ifeq ($(AB_OTA_UPDATER),true) |
| 5304 | @# 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] | 5305 | $(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] | 5306 | $(hide) cp $(TOPDIR)external/zucchini/version_info.h $(zip_root)/META/zucchini_config.txt |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 5307 | $(hide) for part in $(strip $(AB_OTA_PARTITIONS)); do \ |
Alex Deymo | 8925d33 | 2015-10-01 17:38:09 -0700 | [diff] [blame] | 5308 | echo "$${part}" >> $(zip_root)/META/ab_partitions.txt; \ |
| 5309 | done |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 5310 | $(hide) for conf in $(strip $(AB_OTA_POSTINSTALL_CONFIG)); do \ |
Sen Jiang | 8f22e2a | 2015-11-12 13:53:25 -0800 | [diff] [blame] | 5311 | echo "$${conf}" >> $(zip_root)/META/postinstall_config.txt; \ |
| 5312 | done |
Bertrand SIMONNET | 4af7259 | 2015-10-08 15:32:40 -0700 | [diff] [blame] | 5313 | ifdef OSRELEASED_DIRECTORY |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5314 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id $(zip_root)/META/product_id.txt |
| 5315 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version $(zip_root)/META/product_version.txt |
| 5316 | $(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] | 5317 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 5318 | endif |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 5319 | ifeq ($(BREAKPAD_GENERATE_SYMBOLS),true) |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 5320 | @# If breakpad symbols have been generated, add them to the zip. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 5321 | $(hide) cp -R $(TARGET_OUT_BREAKPAD) $(zip_root)/BREAKPAD |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 5322 | endif |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 5323 | ifdef BOARD_PREBUILT_VENDORIMAGE |
| 5324 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5325 | $(hide) cp $(INSTALLED_VENDORIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5326 | endif |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5327 | ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 5328 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5329 | $(hide) cp $(INSTALLED_PRODUCTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5330 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5331 | ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5332 | $(hide) mkdir -p $(zip_root)/IMAGES |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5333 | $(hide) cp $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5334 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5335 | ifdef BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 5336 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5337 | $(hide) cp $(INSTALLED_INIT_BOOT_IMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5338 | endif |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 5339 | ifndef BOARD_PREBUILT_BOOTIMAGE |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 5340 | ifneq (,$(INTERNAL_PREBUILT_BOOTIMAGE) $(filter true,$(BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES))) |
| 5341 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 5342 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5343 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 5344 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 5345 | endif # INTERNAL_PREBUILT_BOOTIMAGE != "" || BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES == true |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 5346 | else # BOARD_PREBUILT_BOOTIMAGE is defined |
| 5347 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5348 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
| 5349 | endif # BOARD_PREBUILT_BOOTIMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5350 | ifdef BOARD_PREBUILT_ODMIMAGE |
| 5351 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5352 | $(hide) cp $(INSTALLED_ODMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5353 | endif |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 5354 | ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5355 | $(hide) mkdir -p $(zip_root)/IMAGES |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 5356 | $(hide) cp $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5357 | endif |
| 5358 | ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 5359 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5360 | $(hide) cp $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5361 | endif |
Yueyao Zhu | 889ee5e | 2017-05-12 17:50:46 -0700 | [diff] [blame] | 5362 | ifdef BOARD_PREBUILT_DTBOIMAGE |
Tao Bao | c633ed0 | 2017-05-30 21:46:33 -0700 | [diff] [blame] | 5363 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5364 | $(hide) cp $(INSTALLED_DTBOIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 5365 | endif # BOARD_PREBUILT_DTBOIMAGE |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5366 | ifdef BOARD_PREBUILT_PVMFWIMAGE |
| 5367 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5368 | $(hide) cp $(INSTALLED_PVMFWIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Pierre-Clément Tosi | d8248af | 2021-10-07 12:18:17 +0200 | [diff] [blame] | 5369 | else ifeq ($(BUILDING_PVMFW_IMAGE),true) |
| 5370 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5371 | $(hide) cp $(INSTALLED_PVMFWIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5372 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5373 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 5374 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5375 | $(hide) cp $(INSTALLED_BOOTLOADER_MODULE) $(zip_root)/IMAGES/ |
| 5376 | endif |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5377 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 5378 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5379 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 5380 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),cp $(image) $(zip_root)/PREBUILT_IMAGES/;)) |
| 5381 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Tao Bao | 95a95c3 | 2017-06-16 15:30:23 -0700 | [diff] [blame] | 5382 | @# The radio images in BOARD_PACK_RADIOIMAGES will be additionally copied from RADIO/ into |
| 5383 | @# IMAGES/, which then will be added into <product>-img.zip. Such images must be listed in |
| 5384 | @# INSTALLED_RADIOIMAGE_TARGET. |
| 5385 | $(hide) $(foreach part,$(BOARD_PACK_RADIOIMAGES), \ |
| 5386 | echo $(part) >> $(zip_root)/META/pack_radioimages.txt;) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5387 | @# Run fs_config on all the system, vendor, boot ramdisk, |
| 5388 | @# and recovery ramdisk files in the zip, and save the output |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5389 | ifdef BUILDING_SYSTEM_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5390 | $(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] | 5391 | endif |
| 5392 | ifdef BUILDING_VENDOR_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5393 | $(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.txt |
| 5394 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5395 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5396 | $(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_config.txt |
| 5397 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5398 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 5399 | $(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] | 5400 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5401 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5402 | $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt |
| 5403 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5404 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 5405 | $(hide) $(call fs_config,$(zip_root)/VENDOR_DLKM,vendor_dlkm/) > $(zip_root)/META/vendor_dlkm_filesystem_config.txt |
| 5406 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5407 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 5408 | $(hide) $(call fs_config,$(zip_root)/ODM_DLKM,odm_dlkm/) > $(zip_root)/META/odm_dlkm_filesystem_config.txt |
| 5409 | endif |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 5410 | @# ROOT always contains the files for the root under normal boot. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5411 | $(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] | 5412 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 5413 | @# 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] | 5414 | $(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] | 5415 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5416 | ifdef BUILDING_INIT_BOOT_IMAGE |
| 5417 | $(hide) $(call package_files-copy-root, $(TARGET_RAMDISK_OUT),$(zip_root)/INIT_BOOT/RAMDISK) |
| 5418 | $(hide) $(call fs_config,$(zip_root)/INIT_BOOT/RAMDISK,) > $(zip_root)/META/init_boot_filesystem_config.txt |
| 5419 | ifdef BOARD_KERNEL_PAGESIZE |
| 5420 | $(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/INIT_BOOT/pagesize |
| 5421 | endif # BOARD_KERNEL_PAGESIZE |
| 5422 | endif # BUILDING_INIT_BOOT_IMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5423 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 5424 | $(call fs_config,$(zip_root)/VENDOR_BOOT/RAMDISK,) > $(zip_root)/META/vendor_boot_filesystem_config.txt |
| 5425 | endif |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 5426 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 5427 | @# 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] | 5428 | $(hide) $(call fs_config,$(zip_root)/BOOT/RAMDISK,) > $(zip_root)/META/boot_filesystem_config.txt |
| 5429 | endif |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5430 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 5431 | $(hide) $(call fs_config,$(zip_root)/RECOVERY/RAMDISK,) > $(zip_root)/META/recovery_filesystem_config.txt |
| 5432 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5433 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5434 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_OTHER,system/) > $(zip_root)/META/system_other_filesystem_config.txt |
| 5435 | endif |
Michael Schwartz | 4d9cb56 | 2017-04-04 13:01:18 -0700 | [diff] [blame] | 5436 | @# Metadata for compatibility verification. |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5437 | ifdef BUILT_KERNEL_CONFIGS_FILE |
| 5438 | $(hide) cp $(BUILT_KERNEL_CONFIGS_FILE) $(zip_root)/META/kernel_configs.txt |
| 5439 | endif |
| 5440 | ifdef BUILT_KERNEL_VERSION_FILE |
| 5441 | $(hide) cp $(BUILT_KERNEL_VERSION_FILE) $(zip_root)/META/kernel_version.txt |
| 5442 | endif |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 5443 | rm -rf $(zip_root)/META/dynamic_partitions_info.txt |
| 5444 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 5445 | $(call dump-dynamic-partitions-info, $(zip_root)/META/dynamic_partitions_info.txt) |
| 5446 | endif |
Tao Bao | cbd6d49 | 2019-10-07 22:46:02 -0700 | [diff] [blame] | 5447 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
| 5448 | $(ADD_IMG_TO_TARGET_FILES) -a -v -p $(HOST_OUT) $(zip_root) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5449 | ifeq ($(BUILD_QEMU_IMAGES),true) |
| 5450 | $(hide) AVBTOOL=$(AVBTOOL) $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(zip_root)/IMAGES/vbmeta.img \ |
| 5451 | $(zip_root)/IMAGES/system.img $(zip_root)/IMAGES/VerifiedBootParams.textproto |
| 5452 | endif |
Alex Deymo | 92cfd6f | 2016-01-26 18:47:44 -0800 | [diff] [blame] | 5453 | @# Zip everything up, preserving symlinks and placing META/ files first to |
| 5454 | @# help early validation of the .zip file while uploading it. |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 5455 | $(hide) find $(zip_root)/META | sort >$@.list |
Nan Zhang | cabecd9 | 2017-03-20 18:22:43 -0700 | [diff] [blame] | 5456 | $(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] | 5457 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(zip_root) -r $@.list |
Doug Zongker | 283e2a1 | 2010-03-15 17:52:32 -0700 | [diff] [blame] | 5458 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 5459 | .PHONY: target-files-package |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5460 | target-files-package: $(BUILT_TARGET_FILES_PACKAGE) |
| 5461 | |
Ying Wang | 4709d7c | 2014-04-14 17:25:43 -0700 | [diff] [blame] | 5462 | $(call dist-for-goals, target-files-package, $(BUILT_TARGET_FILES_PACKAGE)) |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 5463 | |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 5464 | # ----------------------------------------------------------------- |
| 5465 | # NDK Sysroot Package |
| 5466 | NDK_SYSROOT_TARGET := $(PRODUCT_OUT)/ndk_sysroot.tar.bz2 |
Dan Willemsen | 14e1026 | 2018-06-17 21:54:21 -0700 | [diff] [blame] | 5467 | $(NDK_SYSROOT_TARGET): $(SOONG_OUT_DIR)/ndk.timestamp |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 5468 | @echo Package NDK sysroot... |
| 5469 | $(hide) tar cjf $@ -C $(SOONG_OUT_DIR) ndk |
| 5470 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 5471 | ifeq ($(HOST_OS),linux) |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 5472 | $(call dist-for-goals,sdk,$(NDK_SYSROOT_TARGET)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 5473 | endif |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 5474 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 5475 | ifeq ($(build_ota_package),true) |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 5476 | # ----------------------------------------------------------------- |
| 5477 | # OTA update package |
| 5478 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5479 | # $(1): output file |
| 5480 | # $(2): additional args |
| 5481 | define build-ota-package-target |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5482 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 5483 | $(OTA_FROM_TARGET_FILES) \ |
| 5484 | --verbose \ |
| 5485 | --extracted_input_target_files $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) \ |
| 5486 | --path $(HOST_OUT) \ |
| 5487 | $(if $(OEM_OTA_CONFIG), --oem_settings $(OEM_OTA_CONFIG)) \ |
| 5488 | $(2) \ |
| 5489 | $(BUILT_TARGET_FILES_PACKAGE) $(1) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5490 | endef |
| 5491 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5492 | product_name := $(TARGET_PRODUCT) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5493 | ifeq ($(TARGET_BUILD_TYPE),debug) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5494 | product_name := $(product_name)_debug |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5495 | endif |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5496 | name := $(product_name)-ota-$(FILE_NAME_TAG) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5497 | |
| 5498 | INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 5499 | INTERNAL_OTA_METADATA := $(PRODUCT_OUT)/ota_metadata |
| 5500 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5501 | $(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 5502 | $(INTERNAL_OTA_PACKAGE_TARGET): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_OTA_METADATA) |
Yifan Hong | 5c1b199 | 2020-10-08 09:36:29 -0700 | [diff] [blame] | 5503 | $(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] | 5504 | @echo "Package OTA: $@" |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 5505 | $(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] | 5506 | |
| 5507 | .PHONY: otapackage |
| 5508 | otapackage: $(INTERNAL_OTA_PACKAGE_TARGET) |
| 5509 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 5510 | ifeq ($(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE),true) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5511 | name := $(product_name)-ota-retrofit-$(FILE_NAME_TAG) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5512 | |
| 5513 | INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5514 | $(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] | 5515 | $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET): \ |
| 5516 | $(BUILT_TARGET_FILES_PACKAGE) \ |
Yifan Hong | 5c1b199 | 2020-10-08 09:36:29 -0700 | [diff] [blame] | 5517 | $(OTA_FROM_TARGET_FILES) \ |
| 5518 | $(INTERNAL_OTATOOLS_FILES) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5519 | @echo "Package OTA (retrofit dynamic partitions): $@" |
| 5520 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --retrofit_dynamic_partitions) |
| 5521 | |
| 5522 | .PHONY: otardppackage |
| 5523 | |
| 5524 | otapackage otardppackage: $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET) |
| 5525 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 5526 | endif # BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5527 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5528 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
| 5529 | name := $(product_name)-partial-ota-$(FILE_NAME_TAG) |
| 5530 | |
| 5531 | INTERNAL_OTA_PARTIAL_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 5532 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
| 5533 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES) |
| 5534 | @echo "Package partial OTA: $@" |
| 5535 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --partial "$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)") |
| 5536 | |
| 5537 | .PHONY: partialotapackage |
| 5538 | partialotapackage: $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET) |
| 5539 | |
| 5540 | endif # BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST |
| 5541 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 5542 | endif # build_ota_package |
Ying Wang | f8824af | 2014-06-03 14:07:27 -0700 | [diff] [blame] | 5543 | |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 5544 | # ----------------------------------------------------------------- |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 5545 | # A zip of the appcompat directory containing logs |
| 5546 | APPCOMPAT_ZIP := $(PRODUCT_OUT)/appcompat.zip |
| 5547 | # 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] | 5548 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 5549 | $(APPCOMPAT_ZIP): $(FULL_SYSTEMIMAGE_DEPS) \ |
| 5550 | $(INTERNAL_RAMDISK_FILES) \ |
| 5551 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 5552 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 5553 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 5554 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 5555 | endif |
| 5556 | $(APPCOMPAT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,appcompat)/filelist |
| 5557 | $(APPCOMPAT_ZIP): $(SOONG_ZIP) |
| 5558 | @echo "appcompat logs: $@" |
| 5559 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 5560 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/appcompat $(dir $(PRIVATE_LIST_FILE)) |
| 5561 | $(hide) find $(PRODUCT_OUT)/appcompat | sort >$(PRIVATE_LIST_FILE) |
| 5562 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/appcompat -l $(PRIVATE_LIST_FILE) |
| 5563 | |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 5564 | # The mac build doesn't build dex2oat, so create the zip file only if the build OS is linux. |
| 5565 | ifeq ($(BUILD_OS),linux) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame] | 5566 | ifneq ($(DEX2OAT),) |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 5567 | dexpreopt_tools_deps := $(DEXPREOPT_GEN_DEPS) $(DEXPREOPT_GEN) $(AAPT2) |
Eric Miao | 1d0fd2c | 2021-11-08 19:34:50 +0000 | [diff] [blame] | 5568 | dexpreopt_tools_deps += $(HOST_OUT_EXECUTABLES)/dexdump |
| 5569 | dexpreopt_tools_deps += $(HOST_OUT_EXECUTABLES)/oatdump |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 5570 | DEXPREOPT_TOOLS_ZIP := $(PRODUCT_OUT)/dexpreopt_tools.zip |
| 5571 | $(DEXPREOPT_TOOLS_ZIP): $(dexpreopt_tools_deps) |
| 5572 | $(DEXPREOPT_TOOLS_ZIP): PRIVATE_DEXPREOPT_TOOLS_DEPS := $(dexpreopt_tools_deps) |
| 5573 | $(DEXPREOPT_TOOLS_ZIP): $(SOONG_ZIP) |
| 5574 | $(hide) mkdir -p $(dir $@) |
| 5575 | $(hide) $(SOONG_ZIP) -d -o $@ -j $(addprefix -f ,$(PRIVATE_DEXPREOPT_TOOLS_DEPS)) -f $$(realpath $(DEX2OAT)) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame] | 5576 | endif # DEX2OAT is set |
| 5577 | endif # BUILD_OS == linux |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 5578 | |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 5579 | DEXPREOPT_CONFIG_ZIP := $(PRODUCT_OUT)/dexpreopt_config.zip |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 5580 | |
| 5581 | $(DEXPREOPT_CONFIG_ZIP): $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 5582 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 5583 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 5584 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 5585 | |
| 5586 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 5587 | $(DEXPREOPT_CONFIG_ZIP): $(DEX_PREOPT_CONFIG_FOR_MAKE) \ |
| 5588 | $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) \ |
| 5589 | |
| 5590 | endif |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 5591 | |
| 5592 | $(DEXPREOPT_CONFIG_ZIP): $(SOONG_ZIP) |
| 5593 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 5594 | |
| 5595 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 5596 | ifneq (,$(DEX_PREOPT_CONFIG_FOR_MAKE)) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 5597 | $(hide) cp $(DEX_PREOPT_CONFIG_FOR_MAKE) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 5598 | endif |
| 5599 | ifneq (,$(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE)) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 5600 | $(hide) cp $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 5601 | endif |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 5602 | endif #!TARGET_BUILD_UNBUNDLED |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 5603 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/dexpreopt_config -D $(PRODUCT_OUT)/dexpreopt_config |
| 5604 | |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 5605 | .PHONY: dexpreopt_config_zip |
| 5606 | dexpreopt_config_zip: $(DEXPREOPT_CONFIG_ZIP) |
| 5607 | |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 5608 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5609 | # A zip of the symbols directory. Keep the full paths to make it |
| 5610 | # more obvious where these files came from. |
| 5611 | # |
| 5612 | name := $(TARGET_PRODUCT) |
| 5613 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5614 | name := $(name)_debug |
| 5615 | endif |
| 5616 | name := $(name)-symbols-$(FILE_NAME_TAG) |
| 5617 | |
| 5618 | SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 5619 | # 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] | 5620 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 5621 | $(SYMBOLS_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Ying Wang | da3b972 | 2014-10-24 11:36:59 -0700 | [diff] [blame] | 5622 | endif |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 5623 | $(SYMBOLS_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,symbols)/filelist |
| 5624 | $(SYMBOLS_ZIP): $(SOONG_ZIP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5625 | @echo "Package symbols: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 5626 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 5627 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_UNSTRIPPED) $(dir $(PRIVATE_LIST_FILE)) |
Jiyong Park | 88e0980 | 2019-03-21 15:19:16 +0900 | [diff] [blame] | 5628 | $(hide) find -L $(TARGET_OUT_UNSTRIPPED) -type f | sort >$(PRIVATE_LIST_FILE) |
Colin Cross | 8d34244 | 2019-05-07 11:47:13 -0700 | [diff] [blame] | 5629 | $(hide) $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(OUT_DIR)/.. -l $(PRIVATE_LIST_FILE) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 5630 | # ----------------------------------------------------------------- |
| 5631 | # A zip of the coverage directory. |
| 5632 | # |
Oliver Nguyen | e91ab23 | 2019-04-30 15:14:44 -0700 | [diff] [blame] | 5633 | name := gcov-report-files-all |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 5634 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5635 | name := $(name)_debug |
| 5636 | endif |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 5637 | COVERAGE_ZIP := $(PRODUCT_OUT)/$(name).zip |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 5638 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 5639 | $(COVERAGE_ZIP): $(INTERNAL_ALLIMAGES_FILES) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 5640 | endif |
| 5641 | $(COVERAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,coverage)/filelist |
| 5642 | $(COVERAGE_ZIP): $(SOONG_ZIP) |
| 5643 | @echo "Package coverage: $@" |
| 5644 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 5645 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_COVERAGE) $(dir $(PRIVATE_LIST_FILE)) |
| 5646 | $(hide) find $(TARGET_OUT_COVERAGE) | sort >$(PRIVATE_LIST_FILE) |
| 5647 | $(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] | 5648 | |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 5649 | #------------------------------------------------------------------ |
| 5650 | # Export the LLVM profile data tool and dependencies for Clang coverage processing |
| 5651 | # |
| 5652 | ifeq (true,$(CLANG_COVERAGE)) |
| 5653 | LLVM_PROFDATA := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/bin/llvm-profdata |
| 5654 | LIBCXX := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/lib64/libc++.so.1 |
| 5655 | PROFDATA_ZIP := $(PRODUCT_OUT)/llvm-profdata.zip |
| 5656 | $(PROFDATA_ZIP): $(SOONG_ZIP) |
| 5657 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION) -f $(LLVM_PROFDATA) -f $(LIBCXX) |
| 5658 | |
Bill Peckham | 184524a | 2021-06-16 14:57:36 -0700 | [diff] [blame] | 5659 | $(call dist-for-goals,droidcore-unbundled apps_only,$(PROFDATA_ZIP)) |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 5660 | endif |
| 5661 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5662 | # ----------------------------------------------------------------- |
| 5663 | # A zip of the Android Apps. Not keeping full path so that we don't |
| 5664 | # include product names when distributing |
| 5665 | # |
| 5666 | name := $(TARGET_PRODUCT) |
| 5667 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5668 | name := $(name)_debug |
| 5669 | endif |
| 5670 | name := $(name)-apps-$(FILE_NAME_TAG) |
| 5671 | |
| 5672 | APPS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 5673 | $(APPS_ZIP): $(FULL_SYSTEMIMAGE_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5674 | @echo "Package apps: $@" |
| 5675 | $(hide) rm -rf $@ |
| 5676 | $(hide) mkdir -p $(dir $@) |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 5677 | $(hide) apps_to_zip=`find $(TARGET_OUT_APPS) $(TARGET_OUT_APPS_PRIVILEGED) -mindepth 2 -maxdepth 3 -name "*.apk"`; \ |
| 5678 | if [ -z "$$apps_to_zip" ]; then \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5679 | echo "No apps to zip up. Generating empty apps archive." ; \ |
| 5680 | a=$$(mktemp /tmp/XXXXXXX) && touch $$a && zip $@ $$a && zip -d $@ $$a; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 5681 | else \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5682 | zip -qjX $@ $$apps_to_zip; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 5683 | fi |
Guang Zhu | 0198d6e | 2010-04-23 11:54:37 -0700 | [diff] [blame] | 5684 | |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 5685 | ifeq (true,$(EMMA_INSTRUMENT)) |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 5686 | #------------------------------------------------------------------ |
| 5687 | # An archive of classes for use in generating code-coverage reports |
| 5688 | # These are the uninstrumented versions of any classes that were |
| 5689 | # to be instrumented. |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 5690 | # Any dependencies are set up later in build/make/core/main.mk. |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 5691 | |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 5692 | JACOCO_REPORT_CLASSES_ALL := $(PRODUCT_OUT)/jacoco-report-classes-all.jar |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5693 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco) |
| 5694 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_HOST_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco,HOST) |
| 5695 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_PROGUARD_USAGE_DIR := $(call intermediates-dir-for,PACKAGING,proguard_usage) |
| 5696 | $(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] | 5697 | $(JACOCO_REPORT_CLASSES_ALL) : |
| 5698 | @echo "Collecting uninstrumented classes" |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5699 | mkdir -p $(PRIVATE_TARGET_JACOCO_DIR) $(PRIVATE_HOST_JACOCO_DIR) $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) $(PRIVATE_HOST_PROGUARD_USAGE_DIR) |
| 5700 | $(SOONG_ZIP) -o $@ -L 0 \ |
| 5701 | -C $(PRIVATE_TARGET_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_JACOCO_DIR) \ |
| 5702 | -C $(PRIVATE_HOST_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_HOST_JACOCO_DIR) \ |
| 5703 | -C $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) \ |
| 5704 | -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] | 5705 | |
Jiyong Park | 3c87560 | 2021-01-21 12:46:56 +0900 | [diff] [blame] | 5706 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 5707 | $(JACOCO_REPORT_CLASSES_ALL): $(INTERNAL_ALLIMAGES_FILES) |
| 5708 | endif |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 5709 | endif # EMMA_INSTRUMENT=true |
| 5710 | |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 5711 | |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 5712 | #------------------------------------------------------------------ |
| 5713 | # A zip of Proguard obfuscation dictionary files. |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 5714 | # |
Ying Wang | c62c92c | 2013-08-28 18:38:25 -0700 | [diff] [blame] | 5715 | PROGUARD_DICT_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict-$(FILE_NAME_TAG).zip |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 5716 | # 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] | 5717 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 5718 | $(PROGUARD_DICT_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 5719 | endif |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5720 | $(PROGUARD_DICT_ZIP): PRIVATE_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,proguard_dictionary) |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 5721 | $(PROGUARD_DICT_ZIP): $(SOONG_ZIP) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 5722 | @echo "Packaging Proguard obfuscation dictionary files." |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5723 | mkdir -p $(dir $@) $(PRIVATE_PACKAGING_DIR) |
| 5724 | $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(PRIVATE_PACKAGING_DIR) -P out/target/common/obj -D $(PRIVATE_PACKAGING_DIR) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 5725 | |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 5726 | #------------------------------------------------------------------ |
| 5727 | # A zip of Proguard usage files. |
| 5728 | # |
| 5729 | PROGUARD_USAGE_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-usage-$(FILE_NAME_TAG).zip |
| 5730 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
| 5731 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 5732 | $(PROGUARD_USAGE_ZIP): \ |
| 5733 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 5734 | $(INSTALLED_RAMDISK_TARGET) \ |
| 5735 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5736 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 5737 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 5738 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 5739 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 5740 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 5741 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 5742 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
| 5743 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
| 5744 | $(updater_dep) |
| 5745 | endif |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5746 | $(PROGUARD_USAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard_usage.zip)/filelist |
| 5747 | $(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] | 5748 | $(PROGUARD_USAGE_ZIP): $(MERGE_ZIPS) |
| 5749 | @echo "Packaging Proguard usage files." |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5750 | mkdir -p $(dir $@) $(PRIVATE_PACKAGING_DIR) $(dir $(PRIVATE_LIST_FILE)) |
| 5751 | find $(PRIVATE_PACKAGING_DIR) -name proguard_usage.zip > $(PRIVATE_LIST_FILE) |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 5752 | $(MERGE_ZIPS) $@ @$(PRIVATE_LIST_FILE) |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 5753 | |
| 5754 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 5755 | |
| 5756 | # Dump variables used by build_super_image.py (for building super.img and super_empty.img). |
| 5757 | # $(1): output file |
| 5758 | define dump-super-image-info |
| 5759 | $(call dump-dynamic-partitions-info,$(1)) |
| 5760 | $(if $(filter true,$(AB_OTA_UPDATER)), \ |
| 5761 | echo "ab_update=true" >> $(1)) |
| 5762 | endef |
| 5763 | |
| 5764 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
| 5765 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5766 | # ----------------------------------------------------------------- |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5767 | # super partition image (dist) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5768 | |
| 5769 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 5770 | |
| 5771 | # BOARD_SUPER_PARTITION_SIZE must be defined to build super image. |
| 5772 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 5773 | |
| 5774 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5775 | |
| 5776 | # For real devices and for dist builds, build super image from target files to an intermediate directory. |
| 5777 | INTERNAL_SUPERIMAGE_DIST_TARGET := $(call intermediates-dir-for,PACKAGING,super.img)/super.img |
| 5778 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): extracted_input_target_files := $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) |
| 5779 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): $(LPMAKE) $(BUILT_TARGET_FILES_PACKAGE) $(BUILD_SUPER_IMAGE) |
| 5780 | $(call pretty,"Target super fs image from target files: $@") |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 5781 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5782 | $(BUILD_SUPER_IMAGE) -v $(extracted_input_target_files) $@ |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5783 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5784 | # Skip packing it in dist package because it is in update package. |
| 5785 | ifneq (true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5786 | $(call dist-for-goals,dist_files,$(INTERNAL_SUPERIMAGE_DIST_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5787 | endif |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5788 | |
| 5789 | .PHONY: superimage_dist |
| 5790 | superimage_dist: $(INTERNAL_SUPERIMAGE_DIST_TARGET) |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5791 | |
| 5792 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5793 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 5794 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5795 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5796 | # ----------------------------------------------------------------- |
| 5797 | # super partition image for development |
| 5798 | |
| 5799 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 5800 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 5801 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
| 5802 | |
| 5803 | # Build super.img by using $(INSTALLED_*IMAGE_TARGET) to $(1) |
| 5804 | # $(1): built image path |
| 5805 | # $(2): misc_info.txt path; its contents should match expectation of build_super_image.py |
| 5806 | define build-superimage-target |
| 5807 | mkdir -p $(dir $(2)) |
| 5808 | rm -rf $(2) |
| 5809 | $(call dump-super-image-info,$(2)) |
| 5810 | $(foreach p,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 5811 | echo "$(p)_image=$(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)" >> $(2);) |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 5812 | $(if $(BUILDING_SYSTEM_OTHER_IMAGE), $(if $(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)), \ |
| 5813 | echo "system_other_image=$(INSTALLED_SYSTEMOTHERIMAGE_TARGET)" >> $(2);)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5814 | mkdir -p $(dir $(1)) |
| 5815 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5816 | $(BUILD_SUPER_IMAGE) -v $(2) $(1) |
| 5817 | endef |
| 5818 | |
| 5819 | INSTALLED_SUPERIMAGE_TARGET := $(PRODUCT_OUT)/super.img |
| 5820 | INSTALLED_SUPERIMAGE_DEPENDENCIES := $(LPMAKE) $(BUILD_SUPER_IMAGE) \ |
| 5821 | $(foreach p, $(BOARD_SUPER_PARTITION_PARTITION_LIST), $(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)) |
| 5822 | |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 5823 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 5824 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
| 5825 | INSTALLED_SUPERIMAGE_DEPENDENCIES += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
| 5826 | endif |
| 5827 | endif |
| 5828 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5829 | # If BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT is set, super.img is built from images in the |
| 5830 | # $(PRODUCT_OUT) directory, and is built to $(PRODUCT_OUT)/super.img. Also, it will |
| 5831 | # be built for non-dist builds. This is useful for devices that uses super.img directly, e.g. |
| 5832 | # virtual devices. |
| 5833 | ifeq (true,$(BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT)) |
| 5834 | $(INSTALLED_SUPERIMAGE_TARGET): $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 5835 | $(call pretty,"Target super fs image for debug: $@") |
| 5836 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 5837 | $(call intermediates-dir-for,PACKAGING,superimage_debug)/misc_info.txt) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5838 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5839 | droidcore-unbundled: $(INSTALLED_SUPERIMAGE_TARGET) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5840 | |
| 5841 | # For devices that uses super image directly, the superimage target points to the file in $(PRODUCT_OUT). |
| 5842 | .PHONY: superimage |
| 5843 | superimage: $(INSTALLED_SUPERIMAGE_TARGET) |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 5844 | |
| 5845 | $(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] | 5846 | endif # BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT |
| 5847 | |
| 5848 | # Build $(PRODUCT_OUT)/super.img without dependencies. |
| 5849 | .PHONY: superimage-nodeps supernod |
| 5850 | superimage-nodeps supernod: intermediates := |
| 5851 | superimage-nodeps supernod: | $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 5852 | $(call pretty,"make $(INSTALLED_SUPERIMAGE_TARGET): ignoring dependencies") |
| 5853 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
| 5854 | $(call intermediates-dir-for,PACKAGING,superimage-nodeps)/misc_info.txt) |
| 5855 | |
| 5856 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
| 5857 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 5858 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
| 5859 | |
| 5860 | # ----------------------------------------------------------------- |
| 5861 | # super empty image |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 5862 | ifdef BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5863 | |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 5864 | INSTALLED_SUPERIMAGE_EMPTY_TARGET := $(PRODUCT_OUT)/super_empty.img |
| 5865 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): intermediates := $(call intermediates-dir-for,PACKAGING,super_empty) |
| 5866 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): $(LPMAKE) $(BUILD_SUPER_IMAGE) |
| 5867 | $(call pretty,"Target empty super fs image: $@") |
| 5868 | mkdir -p $(intermediates) |
| 5869 | rm -rf $(intermediates)/misc_info.txt |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5870 | $(call dump-super-image-info,$(intermediates)/misc_info.txt) |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 5871 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5872 | $(BUILD_SUPER_IMAGE) -v $(intermediates)/misc_info.txt $@ |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 5873 | |
| 5874 | $(call dist-for-goals,dist_files,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 5875 | |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 5876 | endif # BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5877 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5878 | |
| 5879 | # ----------------------------------------------------------------- |
| 5880 | # The update package |
| 5881 | |
| 5882 | name := $(TARGET_PRODUCT) |
| 5883 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5884 | name := $(name)_debug |
| 5885 | endif |
| 5886 | name := $(name)-img-$(FILE_NAME_TAG) |
| 5887 | |
| 5888 | INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 5889 | |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 5890 | $(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES) |
| 5891 | $(call pretty,"Package: $@") |
| 5892 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
| 5893 | $(IMG_FROM_TARGET_FILES) \ |
| 5894 | --additional IMAGES/VerifiedBootParams.textproto:VerifiedBootParams.textproto \ |
| 5895 | $(BUILT_TARGET_FILES_PACKAGE) $@ |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5896 | |
| 5897 | .PHONY: updatepackage |
| 5898 | updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET) |
Dan Willemsen | 9ae6495 | 2019-08-05 14:45:11 -0700 | [diff] [blame] | 5899 | $(call dist-for-goals,updatepackage,$(INTERNAL_UPDATE_PACKAGE_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5900 | |
| 5901 | |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5902 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5903 | # dalvik something |
| 5904 | .PHONY: dalvikfiles |
| 5905 | dalvikfiles: $(INTERNAL_DALVIK_MODULES) |
| 5906 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5907 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5908 | MK_QEMU_IMAGE_SH := device/generic/goldfish/tools/mk_qemu_image.sh |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5909 | MK_COMBINE_QEMU_IMAGE := $(HOST_OUT_EXECUTABLES)/mk_combined_img |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5910 | SGDISK_HOST := $(HOST_OUT_EXECUTABLES)/sgdisk |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 5911 | |
| 5912 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
| 5913 | INSTALLED_QEMU_SYSTEMIMAGE := $(PRODUCT_OUT)/system-qemu.img |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5914 | INSTALLED_SYSTEM_QEMU_CONFIG := $(PRODUCT_OUT)/system-qemu-config.txt |
| 5915 | $(INSTALLED_SYSTEM_QEMU_CONFIG): $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_VBMETAIMAGE_TARGET) |
| 5916 | @echo "$(PRODUCT_OUT)/vbmeta.img vbmeta 1" > $@ |
| 5917 | @echo "$(INSTALLED_SUPERIMAGE_TARGET) super 2" >> $@ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5918 | $(INSTALLED_QEMU_SYSTEMIMAGE): $(INSTALLED_VBMETAIMAGE_TARGET) $(MK_COMBINE_QEMU_IMAGE) $(SGDISK_HOST) $(SIMG2IMG) \ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5919 | $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_SYSTEM_QEMU_CONFIG) |
| 5920 | @echo Create system-qemu.img now |
| 5921 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5922 | $(MK_COMBINE_QEMU_IMAGE) -i $(INSTALLED_SYSTEM_QEMU_CONFIG) -o $@) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5923 | |
| 5924 | systemimage: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5925 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 5926 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5927 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5928 | INSTALLED_QEMU_VENDORIMAGE := $(PRODUCT_OUT)/vendor-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 5929 | $(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] | 5930 | @echo Create vendor-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5931 | (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] | 5932 | |
| 5933 | vendorimage: $(INSTALLED_QEMU_VENDORIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5934 | droidcore-unbundled: $(INSTALLED_QEMU_VENDORIMAGE) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5935 | endif |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 5936 | |
| 5937 | ifdef INSTALLED_RAMDISK_TARGET |
| 5938 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 5939 | ifdef INTERNAL_VENDOR_RAMDISK_TARGET |
| 5940 | INSTALLED_QEMU_RAMDISKIMAGE := $(PRODUCT_OUT)/ramdisk-qemu.img |
| 5941 | $(INSTALLED_QEMU_RAMDISKIMAGE): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_RAMDISK_TARGET) |
| 5942 | @echo Create ramdisk-qemu.img |
| 5943 | (cat $(INSTALLED_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_TARGET) > $(INSTALLED_QEMU_RAMDISKIMAGE)) |
| 5944 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5945 | droidcore-unbundled: $(INSTALLED_QEMU_RAMDISKIMAGE) |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 5946 | endif |
| 5947 | endif |
| 5948 | endif |
| 5949 | |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5950 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5951 | INSTALLED_QEMU_PRODUCTIMAGE := $(PRODUCT_OUT)/product-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 5952 | $(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] | 5953 | @echo Create product-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5954 | (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] | 5955 | |
| 5956 | productimage: $(INSTALLED_QEMU_PRODUCTIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5957 | droidcore-unbundled: $(INSTALLED_QEMU_PRODUCTIMAGE) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5958 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5959 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 5960 | INSTALLED_QEMU_SYSTEM_EXTIMAGE := $(PRODUCT_OUT)/system_ext-qemu.img |
| 5961 | $(INSTALLED_QEMU_SYSTEM_EXTIMAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) $(SIMG2IMG) |
| 5962 | @echo Create system_ext-qemu.img |
| 5963 | (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] | 5964 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5965 | systemextimage: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5966 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5967 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5968 | ifdef INSTALLED_ODMIMAGE_TARGET |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5969 | INSTALLED_QEMU_ODMIMAGE := $(PRODUCT_OUT)/odm-qemu.img |
| 5970 | $(INSTALLED_QEMU_ODMIMAGE): $(INSTALLED_ODMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 5971 | @echo Create odm-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5972 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODMIMAGE_TARGET)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5973 | |
| 5974 | odmimage: $(INSTALLED_QEMU_ODMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5975 | droidcore-unbundled: $(INSTALLED_QEMU_ODMIMAGE) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5976 | endif |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5977 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5978 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 5979 | INSTALLED_QEMU_VENDOR_DLKMIMAGE := $(PRODUCT_OUT)/vendor_dlkm-qemu.img |
| 5980 | $(INSTALLED_QEMU_VENDOR_DLKMIMAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 5981 | @echo Create vendor_dlkm-qemu.img |
| 5982 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)) |
| 5983 | |
| 5984 | vendor_dlkmimage: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5985 | droidcore-unbundled: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5986 | endif |
| 5987 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5988 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 5989 | INSTALLED_QEMU_ODM_DLKMIMAGE := $(PRODUCT_OUT)/odm_dlkm-qemu.img |
| 5990 | $(INSTALLED_QEMU_ODM_DLKMIMAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 5991 | @echo Create odm_dlkm-qemu.img |
| 5992 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODM_DLKMIMAGE_TARGET)) |
| 5993 | |
| 5994 | odm_dlkmimage: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5995 | droidcore-unbundled: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5996 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5997 | |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5998 | QEMU_VERIFIED_BOOT_PARAMS := $(PRODUCT_OUT)/VerifiedBootParams.textproto |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5999 | $(QEMU_VERIFIED_BOOT_PARAMS): $(INSTALLED_VBMETAIMAGE_TARGET) $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6000 | $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(AVBTOOL) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6001 | @echo Creating $@ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6002 | (export AVBTOOL=$(AVBTOOL); $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(INSTALLED_VBMETAIMAGE_TARGET) \ |
| 6003 | $(INSTALLED_SYSTEMIMAGE_TARGET) $(QEMU_VERIFIED_BOOT_PARAMS)) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6004 | |
| 6005 | systemimage: $(QEMU_VERIFIED_BOOT_PARAMS) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6006 | droidcore-unbundled: $(QEMU_VERIFIED_BOOT_PARAMS) |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6007 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6008 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6009 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6010 | # The emulator package |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 6011 | ifeq ($(BUILD_EMULATOR),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6012 | INTERNAL_EMULATOR_PACKAGE_FILES += \ |
| 6013 | $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \ |
Jean-Baptiste Queru | 5ea72ef | 2012-01-06 16:44:06 -0800 | [diff] [blame] | 6014 | prebuilts/qemu-kernel/$(TARGET_ARCH)/kernel-qemu \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6015 | $(INSTALLED_RAMDISK_TARGET) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 6016 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6017 | $(INSTALLED_USERDATAIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6018 | |
| 6019 | name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG) |
| 6020 | |
| 6021 | INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 6022 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 6023 | $(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6024 | @echo "Package: $@" |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 6025 | $(hide) zip -qjX $@ $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6026 | |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 6027 | endif |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 6028 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6029 | |
| 6030 | # ----------------------------------------------------------------- |
| 6031 | # The SDK |
| 6032 | |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6033 | ifneq ($(filter sdk,$(MAKECMDGOALS)),) |
| 6034 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6035 | # The SDK includes host-specific components, so it belongs under HOST_OUT. |
Ying Wang | d7af176 | 2014-06-02 16:16:53 -0700 | [diff] [blame] | 6036 | sdk_dir := $(HOST_OUT)/sdk/$(TARGET_PRODUCT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6037 | |
| 6038 | # Build a name that looks like: |
| 6039 | # |
| 6040 | # linux-x86 --> android-sdk_12345_linux-x86 |
| 6041 | # darwin-x86 --> android-sdk_12345_mac-x86 |
| 6042 | # windows-x86 --> android-sdk_12345_windows |
| 6043 | # |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6044 | ifneq ($(HOST_OS),linux) |
| 6045 | $(error Building the monolithic SDK is only supported on Linux) |
| 6046 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6047 | sdk_name := android-sdk_$(FILE_NAME_TAG) |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6048 | INTERNAL_SDK_HOST_OS_NAME := linux-$(SDK_HOST_ARCH) |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 6049 | sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6050 | |
| 6051 | sdk_dep_file := $(sdk_dir)/sdk_deps.mk |
| 6052 | |
| 6053 | ATREE_FILES := |
| 6054 | -include $(sdk_dep_file) |
| 6055 | |
| 6056 | # if we don't have a real list, then use "everything" |
| 6057 | ifeq ($(strip $(ATREE_FILES)),) |
| 6058 | ATREE_FILES := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6059 | $(ALL_DEFAULT_INSTALLED_MODULES) \ |
| 6060 | $(INSTALLED_RAMDISK_TARGET) \ |
| 6061 | $(ALL_DOCS) \ |
| 6062 | $(ALL_SDK_FILES) |
| 6063 | endif |
| 6064 | |
| 6065 | atree_dir := development/build |
| 6066 | |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 6067 | |
Dan Willemsen | 53c98f7 | 2021-10-16 16:49:06 -0700 | [diff] [blame] | 6068 | sdk_atree_files := $(atree_dir)/sdk.exclude.atree |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6069 | |
David 'Digit' Turner | 77ec16a | 2011-06-23 12:49:02 +0200 | [diff] [blame] | 6070 | # development/build/sdk-android-<abi>.atree is used to differentiate |
| 6071 | # between architecture models (e.g. ARMv5TE versus ARMv7) when copying |
| 6072 | # files like the kernel image. We use TARGET_CPU_ABI because we don't |
| 6073 | # have a better way to distinguish between CPU models. |
| 6074 | ifneq (,$(strip $(wildcard $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree))) |
| 6075 | sdk_atree_files += $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree |
| 6076 | endif |
| 6077 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6078 | ifneq ($(PRODUCT_SDK_ATREE_FILES),) |
| 6079 | sdk_atree_files += $(PRODUCT_SDK_ATREE_FILES) |
Griff Hazen | 433febb | 2014-02-28 08:45:59 -0800 | [diff] [blame] | 6080 | else |
| 6081 | sdk_atree_files += $(atree_dir)/sdk.atree |
| 6082 | endif |
| 6083 | |
Deepanshu Gupta | 7a864ea | 2014-08-11 15:20:02 -0700 | [diff] [blame] | 6084 | include $(BUILD_SYSTEM)/sdk_font.mk |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 6085 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6086 | deps := \ |
| 6087 | $(target_notice_file_txt) \ |
| 6088 | $(tools_notice_file_txt) \ |
| 6089 | $(OUT_DOCS)/offline-sdk-timestamp \ |
Jerome Gaillard | a0171af | 2019-10-10 19:35:08 +0100 | [diff] [blame] | 6090 | $(SDK_METADATA_FILES) \ |
Ying Wang | 139e332 | 2010-03-31 17:29:04 -0700 | [diff] [blame] | 6091 | $(SYMBOLS_ZIP) \ |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6092 | $(COVERAGE_ZIP) \ |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 6093 | $(APPCOMPAT_ZIP) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 6094 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6095 | $(INSTALLED_QEMU_SYSTEMIMAGE) \ |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 6096 | $(INSTALLED_QEMU_RAMDISKIMAGE) \ |
bohu | 18d1868 | 2017-08-14 14:52:20 -0700 | [diff] [blame] | 6097 | $(INSTALLED_QEMU_VENDORIMAGE) \ |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6098 | $(QEMU_VERIFIED_BOOT_PARAMS) \ |
Doug Zongker | dddd957 | 2009-06-15 21:25:32 -0700 | [diff] [blame] | 6099 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 6100 | $(INSTALLED_RAMDISK_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6101 | $(INSTALLED_SDK_BUILD_PROP_TARGET) \ |
Ying Wang | 139e332 | 2010-03-31 17:29:04 -0700 | [diff] [blame] | 6102 | $(INSTALLED_BUILD_PROP_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6103 | $(ATREE_FILES) \ |
Ying Wang | 0c0a4ce | 2014-02-18 14:29:59 -0800 | [diff] [blame] | 6104 | $(sdk_atree_files) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6105 | $(HOST_OUT_EXECUTABLES)/atree \ |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 6106 | $(HOST_OUT_EXECUTABLES)/line_endings \ |
Deepanshu Gupta | 7a864ea | 2014-08-11 15:20:02 -0700 | [diff] [blame] | 6107 | $(SDK_FONT_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6108 | |
| 6109 | INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip |
| 6110 | $(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name) |
| 6111 | $(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name) |
| 6112 | $(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file) |
| 6113 | $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files) |
| 6114 | |
| 6115 | # Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built. |
| 6116 | # |
| 6117 | #SDK_GNU_ERROR := true |
| 6118 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 6119 | $(INTERNAL_SDK_TARGET): $(deps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6120 | @echo "Package SDK: $@" |
| 6121 | $(hide) rm -rf $(PRIVATE_DIR) $@ |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 6122 | $(hide) for f in $(strip $(target_gnu_MODULES)); do \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6123 | if [ -f $$f ]; then \ |
| 6124 | echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \ |
| 6125 | including GNU target $$f >&2; \ |
| 6126 | FAIL=$(SDK_GNU_ERROR); \ |
| 6127 | fi; \ |
| 6128 | done; \ |
| 6129 | if [ $$FAIL ]; then exit 1; fi |
Deepanshu Gupta | 88a307e | 2014-08-12 10:23:58 -0700 | [diff] [blame] | 6130 | $(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] | 6131 | $(hide) ( \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6132 | ATREE_STRIP="$(HOST_STRIP) -x" \ |
| 6133 | $(HOST_OUT_EXECUTABLES)/atree \ |
| 6134 | $(addprefix -f ,$(PRIVATE_INPUT_FILES)) \ |
| 6135 | -m $(PRIVATE_DEP_FILE) \ |
| 6136 | -I . \ |
| 6137 | -I $(PRODUCT_OUT) \ |
| 6138 | -I $(HOST_OUT) \ |
| 6139 | -I $(TARGET_COMMON_OUT_ROOT) \ |
| 6140 | -v "PLATFORM_NAME=android-$(PLATFORM_VERSION)" \ |
| 6141 | -v "OUT_DIR=$(OUT_DIR)" \ |
| 6142 | -v "HOST_OUT=$(HOST_OUT)" \ |
| 6143 | -v "TARGET_ARCH=$(TARGET_ARCH)" \ |
| 6144 | -v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \ |
| 6145 | -v "DLL_EXTENSION=$(HOST_SHLIB_SUFFIX)" \ |
| 6146 | -v "FONT_OUT=$(SDK_FONT_TEMP)" \ |
| 6147 | -o $(PRIVATE_DIR) && \ |
| 6148 | cp -f $(target_notice_file_txt) \ |
| 6149 | $(PRIVATE_DIR)/system-images/android-$(PLATFORM_VERSION)/$(TARGET_CPU_ABI)/NOTICE.txt && \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6150 | HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \ |
| 6151 | development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \ |
| 6152 | chmod -R ug+rwX $(PRIVATE_DIR) && \ |
| 6153 | cd $(dir $@) && zip -rqX $(notdir $@) $(PRIVATE_NAME) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6154 | ) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 ) |
| 6155 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 6156 | MAIN_SDK_DIR := $(sdk_dir) |
| 6157 | MAIN_SDK_ZIP := $(INTERNAL_SDK_TARGET) |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6158 | |
| 6159 | endif # sdk in MAKECMDGOALS |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 6160 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6161 | # ----------------------------------------------------------------- |
| 6162 | # Findbugs |
| 6163 | INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml |
| 6164 | INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html |
| 6165 | $(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES) |
| 6166 | @echo UnionBugs: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 6167 | $(hide) $(FINDBUGS_DIR)/unionBugs $(ALL_FINDBUGS_FILES) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6168 | > $@ |
| 6169 | $(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET) |
| 6170 | @echo ConvertXmlToText: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 6171 | $(hide) $(FINDBUGS_DIR)/convertXmlToText -html:fancy.xsl \ |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 6172 | $(INTERNAL_FINDBUGS_XML_TARGET) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6173 | |
| 6174 | # ----------------------------------------------------------------- |
| 6175 | # Findbugs |
| 6176 | |
| 6177 | # ----------------------------------------------------------------- |
| 6178 | # These are some additional build tasks that need to be run. |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 6179 | ifneq ($(dont_bother),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6180 | include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk)) |
Claes Elgemark | e22ad67 | 2010-11-12 15:46:00 +0100 | [diff] [blame] | 6181 | -include $(sort $(wildcard vendor/*/build/tasks/*.mk)) |
Andrew Boie | f34a9ba | 2012-04-16 10:03:16 -0700 | [diff] [blame] | 6182 | -include $(sort $(wildcard device/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 6183 | -include $(sort $(wildcard product/*/build/tasks/*.mk)) |
Ying Wang | 66c78e4 | 2014-09-05 17:47:34 -0700 | [diff] [blame] | 6184 | # Also the project-specific tasks |
| 6185 | -include $(sort $(wildcard vendor/*/*/build/tasks/*.mk)) |
| 6186 | -include $(sort $(wildcard device/*/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 6187 | -include $(sort $(wildcard product/*/*/build/tasks/*.mk)) |
Guang Zhu | 8322be7 | 2016-06-20 22:03:24 -0700 | [diff] [blame] | 6188 | # Also add test specifc tasks |
| 6189 | include $(sort $(wildcard platform_testing/build/tasks/*.mk)) |
Keun Soo Yim | 199a710 | 2016-08-31 09:20:51 -0700 | [diff] [blame] | 6190 | include $(sort $(wildcard test/vts/tools/build/tasks/*.mk)) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 6191 | endif |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 6192 | |
Ying Wang | 67132ba | 2015-10-28 16:42:39 -0700 | [diff] [blame] | 6193 | include $(BUILD_SYSTEM)/product-graph.mk |
| 6194 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 6195 | # ----------------------------------------------------------------- |
| 6196 | # Create SDK repository packages. Must be done after tasks/* since |
| 6197 | # we need the addon rules defined. |
| 6198 | ifneq ($(sdk_repo_goal),) |
| 6199 | include $(TOPDIR)development/build/tools/sdk_repo.mk |
| 6200 | endif |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 6201 | |
| 6202 | # ----------------------------------------------------------------- |
Mitch Phillips | 3adbcb3 | 2019-10-17 19:24:46 -0700 | [diff] [blame] | 6203 | # Soong generates the list of all shared libraries that are depended on by fuzz |
| 6204 | # targets. It saves this list as a source:destination pair to |
| 6205 | # FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS, where the source is the path to the |
| 6206 | # build of the unstripped shared library, and the destination is the |
| 6207 | # /data/fuzz/$ARCH/lib (for device) or /fuzz/$ARCH/lib (for host) directory |
| 6208 | # where fuzz target shared libraries are to be "reinstalled". The |
| 6209 | # copy-many-files below generates the rules to copy the unstripped shared |
| 6210 | # libraries to the device or host "reinstallation" directory. These rules are |
| 6211 | # depended on by each module in soong_cc_prebuilt.mk, where the module will have |
| 6212 | # a dependency on each shared library that it needs to be "reinstalled". |
| 6213 | FUZZ_SHARED_DEPS := $(call copy-many-files,$(strip $(FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS))) |
| 6214 | |
| 6215 | # ----------------------------------------------------------------- |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 6216 | # 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] | 6217 | # Note: The packages are created in Soong, and in a perfect world, |
| 6218 | # we'd be able to create the phony rule there. But, if we want to |
| 6219 | # have dist goals for the fuzz target, we need to have the PHONY |
| 6220 | # target defined in make. MakeVarsContext.DistForGoal doesn't take |
| 6221 | # into account that a PHONY rule create by Soong won't be available |
| 6222 | # during make, and such will fail with `writing to readonly |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 6223 | # directory`, because kati will see 'haiku' as being a file, not a |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 6224 | # phony target. |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 6225 | .PHONY: haiku |
| 6226 | haiku: $(SOONG_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_FUZZ_TARGETS) |
| 6227 | $(call dist-for-goals,haiku,$(SOONG_FUZZ_PACKAGING_ARCH_MODULES)) |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 6228 | |
| 6229 | .PHONY: haiku-rust |
| 6230 | haiku-rust: $(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_RUST_FUZZ_TARGETS) |
| 6231 | $(call dist-for-goals,haiku-rust,$(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES)) |