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 | |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 86 | $(call dist-for-goals,droidcore,$(pcf_ignored_file):logs/$(notdir $(pcf_ignored_file))) |
| 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 | |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 166 | $(call dist-for-goals,sdk,$(API_FINGERPRINT)) |
Dan Willemsen | ad6a154 | 2018-12-14 01:04:19 -0800 | [diff] [blame] | 167 | |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 168 | INSTALLED_RECOVERYIMAGE_TARGET := |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 169 | # Build recovery image if |
| 170 | # BUILDING_RECOVERY_IMAGE && !BOARD_USES_RECOVERY_AS_BOOT && !BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT. |
| 171 | # If BOARD_USES_RECOVERY_AS_BOOT is true, leave empty because INSTALLED_BOOTIMAGE_TARGET is built |
| 172 | # with recovery resources. |
| 173 | # If BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT is true, leave empty to build recovery resources |
| 174 | # but not the final recovery image. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 175 | ifdef BUILDING_RECOVERY_IMAGE |
| 176 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 177 | ifneq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 178 | INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img |
| 179 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 180 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 181 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 182 | |
Jiyong Park | e134686 | 2020-05-18 14:31:30 +0900 | [diff] [blame] | 183 | include $(BUILD_SYSTEM)/sysprop.mk |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 184 | |
| 185 | # ---------------------------------------------------------------- |
| 186 | |
| 187 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 188 | # sdk-build.prop |
| 189 | # |
| 190 | # There are certain things in build.prop that we don't want to |
| 191 | # ship with the sdk; remove them. |
| 192 | |
| 193 | # This must be a list of entire property keys followed by |
| 194 | # "=" characters, without any internal spaces. |
| 195 | sdk_build_prop_remove := \ |
| 196 | ro.build.user= \ |
| 197 | ro.build.host= \ |
| 198 | ro.product.brand= \ |
| 199 | ro.product.manufacturer= \ |
| 200 | ro.product.device= |
| 201 | # TODO: Remove this soon-to-be obsolete property |
| 202 | sdk_build_prop_remove += ro.build.product= |
| 203 | INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop |
| 204 | $(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET) |
| 205 | @echo SDK buildinfo: $@ |
| 206 | @mkdir -p $(dir $@) |
| 207 | $(hide) grep -v "$(subst $(space),\|,$(strip \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 208 | $(sdk_build_prop_remove)))" $< > $@.tmp |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 209 | $(hide) for x in $(sdk_build_prop_remove); do \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 210 | echo "$$x"generic >> $@.tmp; done |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 211 | $(hide) mv $@.tmp $@ |
| 212 | |
| 213 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 214 | # declare recovery ramdisk files |
| 215 | ifeq ($(BUILDING_RECOVERY_IMAGE),true) |
| 216 | INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP := $(call intermediates-dir-for,PACKAGING,recovery)/ramdisk_files-timestamp |
| 217 | endif |
| 218 | |
| 219 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 220 | # Declare vendor ramdisk fragments |
| 221 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := |
| 222 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 223 | ifeq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 224 | ifneq (,$(filter recovery,$(BOARD_VENDOR_RAMDISK_FRAGMENTS))) |
| 225 | $(error BOARD_VENDOR_RAMDISK_FRAGMENTS must not contain "recovery" if \ |
| 226 | BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT is set) |
| 227 | endif |
| 228 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += recovery |
| 229 | VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 230 | VENDOR_RAMDISK_FRAGMENT.recovery.FILES := $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 231 | BOARD_VENDOR_RAMDISK_FRAGMENT.recovery.MKBOOTIMG_ARGS += --ramdisk_type RECOVERY |
| 232 | .KATI_READONLY := VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR |
| 233 | endif |
| 234 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 235 | # Validation check and assign default --ramdisk_type. |
| 236 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 237 | $(if $(and $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 238 | $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)), \ |
| 239 | $(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))) \ |
| 240 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragment-stage-$(vendor_ramdisk_fragment))) \ |
| 241 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES :=) \ |
| 242 | $(if $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 243 | $(if $(filter --ramdisk_type,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)),, \ |
| 244 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_type DLKM))) \ |
| 245 | ) |
| 246 | |
| 247 | # Create the "kernel module directory" to "vendor ramdisk fragment" inverse mapping. |
| 248 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 249 | $(foreach kmd,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 250 | $(eval kmd_vrf := KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd)) \ |
| 251 | $(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)) \ |
| 252 | $(eval $(kmd_vrf) := $(vendor_ramdisk_fragment)) \ |
| 253 | ) \ |
| 254 | ) |
| 255 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += $(BOARD_VENDOR_RAMDISK_FRAGMENTS) |
| 256 | |
Yi-Yo Chiang | 378b779 | 2021-04-09 20:09:13 +0800 | [diff] [blame] | 257 | # Strip the list in case of any whitespace. |
| 258 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := \ |
| 259 | $(strip $(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)) |
| 260 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 261 | # Assign --ramdisk_name for each vendor ramdisk fragment. |
| 262 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
| 263 | $(if $(filter --ramdisk_name,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)), \ |
| 264 | $(error Must not specify --ramdisk_name for vendor ramdisk fragment: $(vendor_ramdisk_fragment))) \ |
| 265 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_name $(vendor_ramdisk_fragment)) \ |
| 266 | $(eval .KATI_READONLY := BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) \ |
| 267 | ) |
| 268 | |
| 269 | # ----------------------------------------------------------------- |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 270 | # kernel modules |
| 271 | |
| 272 | # Depmod requires a well-formed kernel version so 0.0 is used as a placeholder. |
| 273 | DEPMOD_STAGING_SUBDIR :=$= lib/modules/0.0 |
| 274 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 275 | define copy-and-strip-kernel-module |
| 276 | $(2): $(1) |
J. Avila | f758602 | 2020-06-19 20:42:17 +0000 | [diff] [blame] | 277 | $(LLVM_STRIP) -o $(2) --strip-debug $(1) |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 278 | endef |
| 279 | |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 280 | # $(1): modules list |
| 281 | # $(2): output dir |
| 282 | # $(3): mount point |
| 283 | # $(4): staging dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 284 | # $(5): module load list |
| 285 | # $(6): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 286 | # $(7): module archive |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 287 | # $(8): staging dir for stripped modules |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 288 | # $(9): module directory name |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 289 | # 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] | 290 | define build-image-kernel-modules |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 291 | $(if $(9), \ |
| 292 | $(eval _dir := $(9)/), \ |
| 293 | $(eval _dir :=)) \ |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 294 | $(foreach module,$(1), \ |
| 295 | $(eval _src := $(module)) \ |
| 296 | $(if $(8), \ |
| 297 | $(eval _src := $(8)/$(notdir $(module))) \ |
| 298 | $(eval $(call copy-and-strip-kernel-module,$(module),$(_src)))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 299 | $(_src):$(2)/lib/modules/$(_dir)$(notdir $(module))) \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 300 | $(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] | 301 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.dep:$(2)/lib/modules/$(_dir)modules.dep \ |
| 302 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.alias:$(2)/lib/modules/$(_dir)modules.alias \ |
| 303 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.softdep:$(2)/lib/modules/$(_dir)modules.softdep \ |
| 304 | $(4)/$(DEPMOD_STAGING_SUBDIR)/$(6):$(2)/lib/modules/$(_dir)$(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 305 | endef |
| 306 | |
| 307 | # $(1): modules list |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 308 | # $(2): mount point |
| 309 | # $(3): staging dir |
| 310 | # $(4): module load list |
| 311 | # $(5): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 312 | # $(6): module archive |
| 313 | # $(7): output dir |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 314 | # $(8): module directory name |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 315 | # TODO(b/144844424): If a module archive is being used, this step (which |
| 316 | # generates obj/PACKAGING/.../modules.dep) also unzips the module archive into |
| 317 | # the output directory. This should be moved to a module with a |
| 318 | # LOCAL_POST_INSTALL_CMD so that if modules.dep is removed from the output dir, |
| 319 | # the archive modules are restored along with modules.dep. |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 320 | define build-image-kernel-modules-depmod |
Steve Muckle | 0f7bb1b | 2019-07-11 17:42:13 -0700 | [diff] [blame] | 321 | $(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] | 322 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(DEPMOD) |
| 323 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULES := $(1) |
| 324 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MOUNT_POINT := $(2) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 325 | $(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] | 326 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_STAGING_DIR := $(3) |
| 327 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_LOAD_MODULES := $(4) |
| 328 | $(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] | 329 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_ARCHIVE := $(6) |
| 330 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_OUTPUT_DIR := $(7) |
| 331 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(1) $(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 332 | @echo depmod $$(PRIVATE_STAGING_DIR) |
| 333 | rm -rf $$(PRIVATE_STAGING_DIR) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 334 | mkdir -p $$(PRIVATE_MODULE_DIR) |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 335 | $(if $(6),\ |
Colin Cross | c27d795 | 2020-07-11 22:33:30 -0700 | [diff] [blame] | 336 | unzip -qoDD -d $$(PRIVATE_MODULE_DIR) $$(PRIVATE_MODULE_ARCHIVE); \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 337 | mkdir -p $$(PRIVATE_OUTPUT_DIR)/lib; \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 338 | 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] | 339 | find $$(PRIVATE_MODULE_DIR) -type f -name *.ko | xargs basename -a > $$(PRIVATE_LOAD_FILE); \ |
| 340 | ) |
| 341 | $(if $(1),\ |
| 342 | cp $$(PRIVATE_MODULES) $$(PRIVATE_MODULE_DIR)/; \ |
| 343 | for MODULE in $$(PRIVATE_LOAD_MODULES); do \ |
| 344 | basename $$$$MODULE >> $$(PRIVATE_LOAD_FILE); \ |
| 345 | done; \ |
| 346 | ) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 347 | $(DEPMOD) -b $$(PRIVATE_STAGING_DIR) 0.0 |
| 348 | # Turn paths in modules.dep into absolute paths |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 349 | sed -i.tmp -e 's|\([^: ]*lib/modules/[^: ]*\)|/\1|g' $$(PRIVATE_STAGING_DIR)/$$(DEPMOD_STAGING_SUBDIR)/modules.dep |
| 350 | touch $$(PRIVATE_LOAD_FILE) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 351 | endef |
| 352 | |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 353 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 354 | # $(2): modules list |
| 355 | # $(3): module load list |
| 356 | # $(4): module load list filename |
| 357 | # $(5): output dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 358 | define module-load-list-copy-paths |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 359 | $(eval $(call build-image-module-load-list,$(1),$(2),$(3),$(4))) \ |
| 360 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4):$(5)/lib/modules/$(4) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 361 | endef |
| 362 | |
| 363 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 364 | # $(2): modules list |
| 365 | # $(3): module load list |
| 366 | # $(4): module load list filename |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 367 | define build-image-module-load-list |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 368 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): PRIVATE_LOAD_MODULES := $(3) |
| 369 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): $(2) |
| 370 | @echo load-list $$(@) |
| 371 | @echo '$$(strip $$(notdir $$(PRIVATE_LOAD_MODULES)))' | tr ' ' '\n' > $$(@) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 372 | endef |
| 373 | |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 374 | # $(1): source options file |
| 375 | # $(2): destination pathname |
| 376 | # Returns a build rule that checks the syntax of and installs a kernel modules |
| 377 | # options file. Strip and squeeze any extra space and blank lines. |
| 378 | # For use via $(eval). |
| 379 | define build-image-kernel-modules-options-file |
| 380 | $(2): $(1) |
| 381 | @echo "libmodprobe options $$(@)" |
| 382 | $(hide) mkdir -p "$$(dir $$@)" |
| 383 | $(hide) rm -f "$$@" |
| 384 | $(hide) awk <"$$<" >"$$@" \ |
| 385 | '/^#/ { print; next } \ |
| 386 | NF == 0 { next } \ |
| 387 | NF < 2 || $$$$1 != "options" \ |
| 388 | { print "Invalid options line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 389 | exit_status = 1; next } \ |
| 390 | { $$$$1 = $$$$1; print } \ |
| 391 | END { exit exit_status }' |
| 392 | endef |
| 393 | |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 394 | # $(1): source blocklist file |
| 395 | # $(2): destination pathname |
| 396 | # 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] | 397 | # blocklist file. Strip and squeeze any extra space and blank lines. |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 398 | # For use via $(eval). |
| 399 | define build-image-kernel-modules-blocklist-file |
| 400 | $(2): $(1) |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 401 | @echo "libmodprobe blocklist $$(@)" |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 402 | $(hide) mkdir -p "$$(dir $$@)" |
| 403 | $(hide) rm -f "$$@" |
| 404 | $(hide) awk <"$$<" >"$$@" \ |
| 405 | '/^#/ { print; next } \ |
| 406 | NF == 0 { next } \ |
| 407 | NF != 2 || $$$$1 != "blocklist" \ |
| 408 | { print "Invalid blocklist line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 409 | exit_status = 1; next } \ |
| 410 | { $$$$1 = $$$$1; print } \ |
| 411 | END { exit exit_status }' |
| 412 | endef |
| 413 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 414 | # $(1): image name |
| 415 | # $(2): build output directory (TARGET_OUT_VENDOR, TARGET_RECOVERY_ROOT_OUT, etc) |
| 416 | # $(3): mount point |
| 417 | # $(4): module load filename |
| 418 | # $(5): stripped staging directory |
| 419 | # $(6): kernel module directory name (top is an out of band value for no directory) |
| 420 | define build-image-kernel-modules-dir |
| 421 | $(if $(filter top,$(6)),\ |
| 422 | $(eval _kver :=)$(eval _sep :=),\ |
| 423 | $(eval _kver := $(6))$(eval _sep :=_))\ |
| 424 | $(if $(5),\ |
| 425 | $(eval _stripped_staging_dir := $(5)$(_sep)$(_kver)),\ |
| 426 | $(eval _stripped_staging_dir :=))\ |
| 427 | $(if $(strip $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver))$(BOARD_$(1)_KERNEL_MODULES_ARCHIVE$(_sep)$(_kver))),\ |
| 428 | $(if $(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver)),,\ |
| 429 | $(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] | 430 | $(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] | 431 | $(if $(_kver), \ |
| 432 | $(eval _dir := $(_kver)/), \ |
| 433 | $(eval _dir :=)) \ |
| 434 | $(if $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 435 | $(eval $(call build-image-kernel-modules-options-file, \ |
| 436 | $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 437 | $(2)/lib/modules/$(_dir)modules.options)) \ |
| 438 | $(2)/lib/modules/$(_dir)modules.options) \ |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 439 | $(if $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
| 440 | $(eval $(call build-image-kernel-modules-blocklist-file, \ |
| 441 | $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 442 | $(2)/lib/modules/$(_dir)modules.blocklist)) \ |
| 443 | $(2)/lib/modules/$(_dir)modules.blocklist) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 444 | endef |
| 445 | |
| 446 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 447 | define build-recovery-as-boot-load |
| 448 | $(if $(filter top,$(1)),\ |
| 449 | $(eval _kver :=)$(eval _sep :=),\ |
| 450 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 451 | $(if $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 452 | $(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)))) |
| 453 | endef |
| 454 | |
| 455 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 456 | define build-vendor-ramdisk-recovery-load |
| 457 | $(if $(filter top,$(1)),\ |
| 458 | $(eval _kver :=)$(eval _sep :=),\ |
| 459 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 460 | $(if $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 461 | $(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)))) |
| 462 | endef |
| 463 | |
Mark Salyzyn | 46a9c02 | 2020-06-25 04:35:16 -0700 | [diff] [blame] | 464 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 465 | define build-vendor-charger-load |
| 466 | $(if $(filter top,$(1)),\ |
| 467 | $(eval _kver :=)$(eval _sep :=),\ |
| 468 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 469 | $(if $(BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 470 | $(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)))) |
| 471 | endef |
| 472 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 473 | ifneq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 474 | # If there is no vendor boot partition, store vendor ramdisk kernel modules in the |
| 475 | # boot ramdisk. |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 476 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 477 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD) |
| 478 | endif |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 479 | |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 480 | ifeq ($(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD),) |
| 481 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD := $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 482 | endif |
| 483 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 484 | ifneq ($(strip $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES)),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 485 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT), true) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 486 | BOARD_RECOVERY_KERNEL_MODULES += $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 487 | endif |
| 488 | endif |
| 489 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 490 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_MODULES),true) |
| 491 | VENDOR_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_stripped) |
| 492 | else |
| 493 | VENDOR_STRIPPED_MODULE_STAGING_DIR := |
| 494 | endif |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 495 | |
Pierre Couillaud | d99da8f | 2020-06-02 13:13:32 -0700 | [diff] [blame] | 496 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_RAMDISK_MODULES),true) |
| 497 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_ramdisk_stripped) |
| 498 | else |
| 499 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 500 | endif |
| 501 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 502 | BOARD_KERNEL_MODULE_DIRS += top |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 503 | $(foreach kmd,$(BOARD_KERNEL_MODULE_DIRS), \ |
| 504 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,RECOVERY,$(TARGET_RECOVERY_ROOT_OUT),,modules.load.recovery,,$(kmd))) \ |
| 505 | $(eval vendor_ramdisk_fragment := $(KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd))) \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 506 | $(if $(vendor_ramdisk_fragment), \ |
| 507 | $(eval output_dir := $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR)) \ |
| 508 | $(eval result_var := VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES) \ |
| 509 | $(eval ### else ###), \ |
| 510 | $(eval output_dir := $(TARGET_VENDOR_RAMDISK_OUT)) \ |
| 511 | $(eval result_var := ALL_DEFAULT_INSTALLED_MODULES)) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 512 | $(eval $(result_var) += $(call build-image-kernel-modules-dir,VENDOR_RAMDISK,$(output_dir),,modules.load,$(VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR),$(kmd))) \ |
| 513 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-ramdisk-recovery-load,$(kmd))) \ |
| 514 | $(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))) \ |
| 515 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-charger-load,$(kmd))) \ |
| 516 | $(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] | 517 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 518 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-recovery-as-boot-load,$(kmd))),\ |
| 519 | $(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] | 520 | |
| 521 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 522 | # Cert-to-package mapping. Used by the post-build signing tools. |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 523 | # Use a macro to add newline to each echo command |
Jiyong Park | 7b96c59 | 2020-05-01 10:29:09 +0900 | [diff] [blame] | 524 | # $1 stem name of the package |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 525 | # $2 certificate |
| 526 | # $3 private key |
| 527 | # $4 compressed |
| 528 | # $5 partition tag |
| 529 | # $6 output file |
Narayan Kamath | 6a4bd69 | 2017-08-14 10:53:50 +0100 | [diff] [blame] | 530 | define _apkcerts_write_line |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 531 | $(hide) echo -n 'name="$(1).apk" certificate="$2" private_key="$3"' >> $6 |
| 532 | $(if $(4), $(hide) echo -n ' compressed="$4"' >> $6) |
| 533 | $(if $(5), $(hide) echo -n ' partition="$5"' >> $6) |
| 534 | $(hide) echo '' >> $6 |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 535 | |
| 536 | endef |
| 537 | |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 538 | # ----------------------------------------------------------------- |
| 539 | # Merge an individual apkcerts output into the final apkcerts.txt output. |
| 540 | # Use a macro to make it compatible with _apkcerts_write_line |
| 541 | # $1 apkcerts file to be merged |
| 542 | # $2 output file |
| 543 | define _apkcerts_merge |
| 544 | $(hide) cat $1 >> $2 |
| 545 | |
| 546 | endef |
| 547 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 548 | name := $(TARGET_PRODUCT) |
| 549 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 550 | name := $(name)_debug |
| 551 | endif |
| 552 | name := $(name)-apkcerts-$(FILE_NAME_TAG) |
| 553 | intermediates := \ |
| 554 | $(call intermediates-dir-for,PACKAGING,apkcerts) |
| 555 | APKCERTS_FILE := $(intermediates)/$(name).txt |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 556 | all_apkcerts_files := $(sort $(foreach p,$(PACKAGES),$(PACKAGES.$(p).APKCERTS_FILE))) |
| 557 | $(APKCERTS_FILE): $(all_apkcerts_files) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 558 | # We don't need to really build all the modules. |
| 559 | # TODO: rebuild APKCERTS_FILE if any app change its cert. |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 560 | $(APKCERTS_FILE): |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 561 | @echo APK certs list: $@ |
| 562 | @mkdir -p $(dir $@) |
| 563 | @rm -f $@ |
Chris Gross | fabf50a | 2019-05-02 12:42:09 -0700 | [diff] [blame] | 564 | $(foreach p,$(sort $(PACKAGES)),\ |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 565 | $(if $(PACKAGES.$(p).APKCERTS_FILE),\ |
| 566 | $(call _apkcerts_merge,$(PACKAGES.$(p).APKCERTS_FILE), $@),\ |
| 567 | $(if $(PACKAGES.$(p).EXTERNAL_KEY),\ |
Jaewoong Jung | 7b634d3 | 2020-10-23 14:02:16 -0700 | [diff] [blame] | 568 | $(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] | 569 | $(call _apkcerts_write_line,$(PACKAGES.$(p).STEM),$(PACKAGES.$(p).CERTIFICATE),$(PACKAGES.$(p).PRIVATE_KEY),$(PACKAGES.$(p).COMPRESSED),$(PACKAGES.$(p).PARTITION),$@)))) |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 570 | # In case value of PACKAGES is empty. |
Ying Wang | f272cd6 | 2011-09-26 12:05:06 -0700 | [diff] [blame] | 571 | $(hide) touch $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 572 | |
| 573 | .PHONY: apkcerts-list |
| 574 | apkcerts-list: $(APKCERTS_FILE) |
| 575 | |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 576 | ifneq (,$(TARGET_BUILD_APPS)) |
| 577 | $(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt) |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 578 | $(call dist-for-goals, apps_only, $(SOONG_APEX_KEYS_FILE):apexkeys.txt) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 579 | endif |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 580 | |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 581 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 582 | # ----------------------------------------------------------------- |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 583 | # build system stats |
| 584 | BUILD_SYSTEM_STATS := $(PRODUCT_OUT)/build_system_stats.txt |
| 585 | $(BUILD_SYSTEM_STATS): |
| 586 | @rm -f $@ |
| 587 | @$(foreach s,$(STATS.MODULE_TYPE),echo "modules_type_make,$(s),$(words $(STATS.MODULE_TYPE.$(s)))" >>$@;) |
| 588 | @$(foreach s,$(STATS.SOONG_MODULE_TYPE),echo "modules_type_soong,$(s),$(STATS.SOONG_MODULE_TYPE.$(s))" >>$@;) |
| 589 | $(call dist-for-goals,droidcore,$(BUILD_SYSTEM_STATS)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 590 | |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 591 | # ----------------------------------------------------------------- |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 592 | # build /product/etc/security/avb/system_other.avbpubkey if needed |
| 593 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 594 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 595 | INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET := $(TARGET_OUT_PRODUCT_ETC)/security/avb/system_other.avbpubkey |
| 596 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET) |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 597 | endif # BOARD_AVB_ENABLE |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 598 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 599 | |
| 600 | # ----------------------------------------------------------------- |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 601 | # Modules ready to be converted to Soong, ordered by how many |
| 602 | # modules depend on them. |
| 603 | SOONG_CONV := $(sort $(SOONG_CONV)) |
| 604 | SOONG_CONV_DATA := $(call intermediates-dir-for,PACKAGING,soong_conversion)/soong_conv_data |
| 605 | $(SOONG_CONV_DATA): |
| 606 | @rm -f $@ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 607 | @$(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] | 608 | |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 609 | SOONG_TO_CONVERT_SCRIPT := build/make/tools/soong_to_convert.py |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 610 | SOONG_TO_CONVERT := $(PRODUCT_OUT)/soong_to_convert.txt |
| 611 | $(SOONG_TO_CONVERT): $(SOONG_CONV_DATA) $(SOONG_TO_CONVERT_SCRIPT) |
| 612 | @rm -f $@ |
| 613 | $(hide) $(SOONG_TO_CONVERT_SCRIPT) $< >$@ |
| 614 | $(call dist-for-goals,droidcore,$(SOONG_TO_CONVERT)) |
| 615 | |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 616 | MK2BP_CATALOG_SCRIPT := build/make/tools/mk2bp_catalog.py |
| 617 | MK2BP_REMAINING_HTML := $(PRODUCT_OUT)/mk2bp_remaining.html |
| 618 | $(MK2BP_REMAINING_HTML): PRIVATE_CODE_SEARCH_BASE_URL := "https://cs.android.com/android/platform/superproject/+/master:" |
| 619 | $(MK2BP_REMAINING_HTML): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) |
| 620 | @rm -f $@ |
| 621 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 622 | --device=$(TARGET_DEVICE) \ |
| 623 | --title="Remaining Android.mk files for $(TARGET_DEVICE)-$(TARGET_BUILD_VARIANT)" \ |
| 624 | --codesearch=$(PRIVATE_CODE_SEARCH_BASE_URL) \ |
| 625 | --out_dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 626 | --mode=html \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 627 | > $@ |
| 628 | $(call dist-for-goals,droidcore,$(MK2BP_REMAINING_HTML)) |
| 629 | |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 630 | MK2BP_REMAINING_CSV := $(PRODUCT_OUT)/mk2bp_remaining.csv |
| 631 | $(MK2BP_REMAINING_CSV): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) |
| 632 | @rm -f $@ |
| 633 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 634 | --device=$(TARGET_DEVICE) \ |
| 635 | --out_dir="$(OUT_DIR)" \ |
| 636 | --mode=csv \ |
| 637 | > $@ |
| 638 | $(call dist-for-goals,droidcore,$(MK2BP_REMAINING_CSV)) |
| 639 | |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 640 | # ----------------------------------------------------------------- |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 641 | # Modules use -Wno-error, or added default -Wall -Werror |
| 642 | WALL_WERROR := $(PRODUCT_OUT)/wall_werror.txt |
| 643 | $(WALL_WERROR): |
| 644 | @rm -f $@ |
| 645 | echo "# Modules using -Wno-error" >> $@ |
| 646 | 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] | 647 | echo "# Modules added default -Wall" >> $@ |
| 648 | for m in $(sort $(SOONG_MODULES_ADDED_WALL) $(MODULES_ADDED_WALL)); do echo $$m >> $@; done |
| 649 | |
| 650 | $(call dist-for-goals,droidcore,$(WALL_WERROR)) |
| 651 | |
| 652 | # ----------------------------------------------------------------- |
Jesse Pai | d004692 | 2019-09-13 17:02:32 -0700 | [diff] [blame] | 653 | # C/C++ flag information for modules |
| 654 | $(call dist-for-goals,droidcore,$(SOONG_MODULES_CFLAG_ARTIFACTS)) |
| 655 | |
| 656 | # ----------------------------------------------------------------- |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 657 | # Modules missing profile files |
| 658 | PGO_PROFILE_MISSING := $(PRODUCT_OUT)/pgo_profile_file_missing.txt |
| 659 | $(PGO_PROFILE_MISSING): |
| 660 | @rm -f $@ |
| 661 | echo "# Modules missing PGO profile files" >> $@ |
| 662 | for m in $(SOONG_MODULES_MISSING_PGO_PROFILE_FILE); do echo $$m >> $@; done |
| 663 | |
| 664 | $(call dist-for-goals,droidcore,$(PGO_PROFILE_MISSING)) |
| 665 | |
Anton Hansson | cd8fa36 | 2020-12-08 20:56:02 +0000 | [diff] [blame] | 666 | CERTIFICATE_VIOLATION_MODULES_FILENAME := $(PRODUCT_OUT)/certificate_violation_modules.txt |
| 667 | $(CERTIFICATE_VIOLATION_MODULES_FILENAME): |
| 668 | rm -f $@ |
| 669 | $(foreach m,$(sort $(CERTIFICATE_VIOLATION_MODULES)), echo $(m) >> $@;) |
| 670 | $(call dist-for-goals,droidcore,$(CERTIFICATE_VIOLATION_MODULES_FILENAME)) |
| 671 | |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 672 | # ----------------------------------------------------------------- |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 673 | # 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] | 674 | # for future OTA packages installed by this system. Actual product |
| 675 | # deliverables will be re-signed by hand. We expect this file to |
| 676 | # exist with the suffixes ".x509.pem" and ".pk8". |
Colin Cross | 21122f9 | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 677 | DEFAULT_KEY_CERT_PAIR := $(strip $(DEFAULT_SYSTEM_DEV_CERTIFICATE)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 678 | |
| 679 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 680 | # 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] | 681 | # if they don't do anything. |
| 682 | .PHONY: systemimage |
| 683 | systemimage: |
| 684 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 685 | # ----------------------------------------------------------------- |
| 686 | |
| 687 | .PHONY: event-log-tags |
| 688 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 689 | # Produce an event logs tag file for everything we know about, in order |
| 690 | # to properly allocate numbers. Then produce a file that's filtered |
| 691 | # for what's going to be installed. |
| 692 | |
| 693 | all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt |
| 694 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 695 | event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags |
| 696 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 697 | # Include tags from all packages that we know about |
| 698 | all_event_log_tags_src := \ |
| 699 | $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS))) |
| 700 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 701 | $(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src) |
| 702 | $(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] | 703 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 704 | $(hide) $(MERGETAGS) -o $@ $(PRIVATE_SRC_FILES) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 705 | |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 706 | # Include tags from all packages included in this product, plus all |
| 707 | # tags that are part of the system (ie, not in a vendor/ or device/ |
| 708 | # directory). |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 709 | event_log_tags_src := \ |
| 710 | $(sort $(foreach m,\ |
Yo Chiang | 5e85bfe | 2020-05-13 20:19:05 +0800 | [diff] [blame] | 711 | $(call resolve-bitness-for-modules,TARGET,$(PRODUCT_PACKAGES)) \ |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 712 | $(call module-names-for-tag-list,user), \ |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 713 | $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \ |
| 714 | $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src))) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 715 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 716 | $(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 717 | $(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file) |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 718 | $(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] | 719 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 720 | $(hide) $(MERGETAGS) -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 721 | |
| 722 | event-log-tags: $(event_log_tags_file) |
| 723 | |
| 724 | ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file) |
| 725 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 726 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 727 | # ################################################################# |
| 728 | # Targets for boot/OS images |
| 729 | # ################################################################# |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 730 | ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true) |
| 731 | INSTALLED_BOOTLOADER_MODULE := $(PRODUCT_OUT)/bootloader |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 732 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 733 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_BOOTLOADER),$(INSTALLED_BOOTLOADER_MODULE))) |
| 734 | $(call dist-for-goals,dist_files,$(INSTALLED_BOOTLOADER_MODULE)) |
| 735 | endif # BOARD_PREBUILT_BOOTLOADER |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 736 | ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true) |
| 737 | INSTALLED_2NDBOOTLOADER_TARGET := $(PRODUCT_OUT)/2ndbootloader |
| 738 | else |
| 739 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 740 | endif |
| 741 | else |
| 742 | INSTALLED_BOOTLOADER_MODULE := |
| 743 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 744 | endif # TARGET_NO_BOOTLOADER |
| 745 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 746 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 747 | INSTALLED_KERNEL_TARGET := $(foreach k,$(BOARD_KERNEL_BINARIES), \ |
| 748 | $(PRODUCT_OUT)/$(k)) |
| 749 | else |
| 750 | INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel |
| 751 | endif |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 752 | else |
| 753 | INSTALLED_KERNEL_TARGET := |
| 754 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 755 | |
| 756 | # ----------------------------------------------------------------- |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 757 | # the root dir |
| 758 | INTERNAL_ROOT_FILES := $(filter $(TARGET_ROOT_OUT)/%, \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 759 | $(ALL_GENERATED_SOURCES) \ |
| 760 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 761 | |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 762 | INSTALLED_FILES_FILE_ROOT := $(PRODUCT_OUT)/installed-files-root.txt |
| 763 | INSTALLED_FILES_JSON_ROOT := $(INSTALLED_FILES_FILE_ROOT:.txt=.json) |
| 764 | $(INSTALLED_FILES_FILE_ROOT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ROOT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 765 | $(INSTALLED_FILES_FILE_ROOT) : $(INTERNAL_ROOT_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 766 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 767 | mkdir -p $(dir $@) |
| 768 | rm -f $@ |
| 769 | $(FILESLIST) $(TARGET_ROOT_OUT) > $(@:.txt=.json) |
| 770 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 771 | |
| 772 | $(call dist-for-goals, sdk win_sdk sdk_addon, $(INSTALLED_FILES_FILE_ROOT)) |
| 773 | |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 774 | #------------------------------------------------------------------ |
| 775 | # dtb |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 776 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 777 | INSTALLED_DTBIMAGE_TARGET := $(PRODUCT_OUT)/dtb.img |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 778 | ifdef BOARD_PREBUILT_DTBIMAGE_DIR |
Hridya Valsaraju | c63a744 | 2019-02-07 11:38:18 -0800 | [diff] [blame] | 779 | $(INSTALLED_DTBIMAGE_TARGET) : $(sort $(wildcard $(BOARD_PREBUILT_DTBIMAGE_DIR)/*.dtb)) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 780 | cat $^ > $@ |
| 781 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 782 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 783 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 784 | # ----------------------------------------------------------------- |
| 785 | # the ramdisk |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 786 | ifdef BUILDING_RAMDISK_IMAGE |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 787 | INTERNAL_RAMDISK_FILES := $(filter $(TARGET_RAMDISK_OUT)/%, \ |
| 788 | $(ALL_GENERATED_SOURCES) \ |
| 789 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 790 | |
| 791 | INSTALLED_FILES_FILE_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk.txt |
| 792 | INSTALLED_FILES_JSON_RAMDISK := $(INSTALLED_FILES_FILE_RAMDISK:.txt=.json) |
| 793 | $(INSTALLED_FILES_FILE_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RAMDISK) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 794 | $(INSTALLED_FILES_FILE_RAMDISK) : $(INTERNAL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 795 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 796 | mkdir -p $(TARGET_RAMDISK_OUT) |
| 797 | mkdir -p $(dir $@) |
| 798 | rm -f $@ |
| 799 | $(FILESLIST) $(TARGET_RAMDISK_OUT) > $(@:.txt=.json) |
| 800 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 801 | |
| 802 | $(call dist-for-goals, sdk win_sdk sdk_addon, $(INSTALLED_FILES_FILE_RAMDISK)) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 803 | BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img |
| 804 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 805 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 806 | # -l enables the legacy format used by the Linux kernel |
| 807 | COMPRESSION_COMMAND_DEPS := $(LZ4) |
| 808 | COMPRESSION_COMMAND := $(LZ4) -l -12 --favor-decSpeed |
| 809 | RAMDISK_EXT := .lz4 |
| 810 | else |
| 811 | COMPRESSION_COMMAND_DEPS := $(MINIGZIP) |
| 812 | COMPRESSION_COMMAND := $(MINIGZIP) |
| 813 | RAMDISK_EXT := .gz |
| 814 | endif |
| 815 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 816 | # We just build this directly to the install location. |
| 817 | INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 818 | $(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] | 819 | $(call pretty,"Target ramdisk: $@") |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 820 | $(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] | 821 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 822 | .PHONY: ramdisk-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 823 | ramdisk-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 824 | @echo "make $@: ignoring dependencies" |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 825 | $(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] | 826 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 827 | endif # BUILDING_RAMDISK_IMAGE |
| 828 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 829 | # ----------------------------------------------------------------- |
| 830 | # the boot image, which is a collection of other images. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 831 | |
| 832 | # This is defined here since we may be building recovery as boot |
| 833 | # below and only want to define this once |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 834 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 835 | BUILT_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot,$(BOARD_KERNEL_BINARIES)), $(PRODUCT_OUT)/$(k).img) |
| 836 | else |
| 837 | BUILT_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 838 | endif |
| 839 | |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 840 | INTERNAL_PREBUILT_BOOTIMAGE := |
| 841 | |
| 842 | my_installed_prebuilt_gki_apex := $(strip $(foreach package,$(PRODUCT_PACKAGES),$(if $(ALL_MODULES.$(package).EXTRACTED_BOOT_IMAGE),$(package)))) |
| 843 | ifdef my_installed_prebuilt_gki_apex |
| 844 | ifneq (1,$(words $(my_installed_prebuilt_gki_apex))) # len(my_installed_prebuilt_gki_apex) > 1 |
| 845 | $(error More than one prebuilt GKI APEXes are installed: $(my_installed_prebuilt_gki_apex)) |
| 846 | endif # len(my_installed_prebuilt_gki_apex) > 1 |
| 847 | |
| 848 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 849 | $(error Must not define BOARD_PREBUILT_BOOTIMAGE because a prebuilt GKI APEX is installed: $(my_installed_prebuilt_gki_apex)) |
| 850 | endif # BOARD_PREBUILT_BOOTIMAGE defined |
| 851 | |
| 852 | my_apex_extracted_boot_image := $(ALL_MODULES.$(my_installed_prebuilt_gki_apex).EXTRACTED_BOOT_IMAGE) |
| 853 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 854 | $(eval $(call copy-one-file,$(my_apex_extracted_boot_image),$(INSTALLED_BOOTIMAGE_TARGET))) |
| 855 | |
| 856 | INTERNAL_PREBUILT_BOOTIMAGE := $(my_apex_extracted_boot_image) |
| 857 | |
| 858 | else # my_installed_prebuilt_gki_apex not defined |
| 859 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 860 | # $1: boot image target |
| 861 | # returns the kernel used to make the bootimage |
| 862 | define bootimage-to-kernel |
| 863 | $(if $(BOARD_KERNEL_BINARIES),\ |
| 864 | $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $(1)))),\ |
| 865 | $(INSTALLED_KERNEL_TARGET)) |
| 866 | endef |
| 867 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 868 | ifdef BOARD_BOOTIMAGE_PARTITION_SIZE |
| 869 | BOARD_KERNEL_BOOTIMAGE_PARTITION_SIZE := $(BOARD_BOOTIMAGE_PARTITION_SIZE) |
| 870 | endif |
| 871 | |
| 872 | # $1: boot image file name |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 873 | # $2: boot image variant (boot, boot-debug, boot-test-harness) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 874 | define get-bootimage-partition-size |
| 875 | $(BOARD_$(call to-upper,$(subst .img,,$(subst $(2),kernel,$(notdir $(1)))))_BOOTIMAGE_PARTITION_SIZE) |
| 876 | endef |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 877 | |
| 878 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 879 | INTERNAL_BOOTIMAGE_ARGS := \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 880 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 881 | |
| 882 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 883 | INTERNAL_BOOTIMAGE_ARGS += --ramdisk $(INSTALLED_RAMDISK_TARGET) |
| 884 | endif |
| 885 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 886 | ifndef BUILDING_VENDOR_BOOT_IMAGE |
| 887 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 888 | INTERNAL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 889 | endif |
| 890 | endif |
| 891 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 892 | INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS)) |
| 893 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 894 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 895 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 896 | 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] | 897 | | grep keyid | sed 's/://g' | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]' | sed 's/keyid//g'` |
| 898 | endif |
| 899 | endif |
| 900 | |
Anton Hansson | 72e36f0 | 2019-02-26 17:36:30 +0000 | [diff] [blame] | 901 | 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] | 902 | |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 903 | # kernel cmdline/base/pagesize in boot. |
| 904 | # - If using GKI, use GENERIC_KERNEL_CMDLINE. Remove kernel base and pagesize because they are |
| 905 | # device-specific. |
| 906 | # - If not using GKI: |
| 907 | # - If building vendor_boot, INTERNAL_KERNEL_CMDLINE, base and pagesize goes in vendor_boot. |
| 908 | # - Otherwise, put them in boot. |
| 909 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 910 | ifdef GENERIC_KERNEL_CMDLINE |
| 911 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(GENERIC_KERNEL_CMDLINE)" |
| 912 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 913 | else ifndef BUILDING_VENDOR_BOOT_IMAGE # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
| 914 | ifdef INTERNAL_KERNEL_CMDLINE |
| 915 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 916 | endif |
| 917 | ifdef BOARD_KERNEL_BASE |
| 918 | INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 919 | endif |
| 920 | ifdef BOARD_KERNEL_PAGESIZE |
| 921 | INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 922 | endif |
| 923 | endif # BUILDING_VENDOR_BOOT_IMAGE == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 924 | |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 925 | INTERNAL_MKBOOTIMG_VERSION_ARGS := \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 926 | --os_version $(PLATFORM_VERSION_LAST_STABLE) \ |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 927 | --os_patch_level $(PLATFORM_SECURITY_PATCH) |
| 928 | |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 929 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 930 | ifndef BOARD_GKI_SIGNING_ALGORITHM |
| 931 | $(error BOARD_GKI_SIGNING_ALGORITHM should be defined with BOARD_GKI_SIGNING_KEY_PATH) |
| 932 | endif |
| 933 | INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS := \ |
| 934 | --gki_signing_key $(BOARD_GKI_SIGNING_KEY_PATH) \ |
| 935 | --gki_signing_algorithm $(BOARD_GKI_SIGNING_ALGORITHM) \ |
| 936 | --gki_signing_avbtool_path $(AVBTOOL) |
| 937 | endif |
| 938 | |
| 939 | # Using double quote to pass BOARD_GKI_SIGNING_SIGNATURE_ARGS as a single string |
| 940 | # to MKBOOTIMG, although it may contain multiple args. |
| 941 | ifdef BOARD_GKI_SIGNING_SIGNATURE_ARGS |
| 942 | INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS += \ |
| 943 | --gki_signing_signature_args "$(BOARD_GKI_SIGNING_SIGNATURE_ARGS)" |
| 944 | endif |
| 945 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 946 | # Define these only if we are building boot |
| 947 | ifdef BUILDING_BOOT_IMAGE |
| 948 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 949 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 950 | ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true) |
JP Abgrall | 7bb75e4 | 2015-02-11 15:04:59 -0800 | [diff] [blame] | 951 | $(error TARGET_BOOTIMAGE_USE_EXT2 is not supported anymore) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 952 | endif # TARGET_BOOTIMAGE_USE_EXT2 |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 953 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 954 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET), $(eval $(call add-dependency,$(b),$(call bootimage-to-kernel,$(b))))) |
| 955 | |
| 956 | ifeq (true,$(BOARD_AVB_ENABLE)) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 957 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 958 | # $1: boot image target |
| 959 | define build_boot_board_avb_enabled |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 960 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
| 961 | $(INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 962 | $(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] | 963 | $(AVBTOOL) add_hash_footer \ |
| 964 | --image $(1) \ |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 965 | --partition_size $(call get-bootimage-partition-size,$(1),boot) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 966 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 967 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 968 | endef |
| 969 | |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 970 | $(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] | 971 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 972 | $(call build_boot_board_avb_enabled,$@) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 973 | |
| 974 | .PHONY: bootimage-nodeps |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 975 | 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] | 976 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 977 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_board_avb_enabled,$(b))) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 978 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 979 | else ifeq (true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)) # BOARD_AVB_ENABLE != true |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 980 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 981 | # $1: boot image target |
| 982 | define build_boot_supports_boot_signer |
| 983 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
| 984 | $(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] | 985 | $(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] | 986 | endef |
| 987 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 988 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(BOOT_SIGNER) |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 989 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 990 | $(call build_boot_supports_boot_signer,$@) |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 991 | |
| 992 | .PHONY: bootimage-nodeps |
| 993 | bootimage-nodeps: $(MKBOOTIMG) $(BOOT_SIGNER) |
| 994 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 995 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_supports_boot_signer,$(b))) |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 996 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 997 | else ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) # PRODUCT_SUPPORTS_BOOT_SIGNER != true |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 998 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 999 | # $1: boot image target |
| 1000 | define build_boot_supports_vboot |
| 1001 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1).unsigned |
| 1002 | $(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] | 1003 | $(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] | 1004 | endef |
| 1005 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1006 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1007 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1008 | $(call build_boot_supports_vboot,$@) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1009 | |
| 1010 | .PHONY: bootimage-nodeps |
Tao Bao | 4b57741 | 2017-02-22 22:54:39 -0800 | [diff] [blame] | 1011 | bootimage-nodeps: $(MKBOOTIMG) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1012 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1013 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_supports_vboot,$(b))) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1014 | |
| 1015 | else # PRODUCT_SUPPORTS_VBOOT != true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1016 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1017 | # $1: boot image target |
| 1018 | define build_boot_novboot |
| 1019 | $(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] | 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) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1024 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1025 | $(call build_boot_novboot,$@) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1026 | |
| 1027 | .PHONY: bootimage-nodeps |
| 1028 | bootimage-nodeps: $(MKBOOTIMG) |
| 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_novboot,$(b))) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1031 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1032 | endif # BOARD_AVB_ENABLE |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1033 | endif # BUILDING_BOOT_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1034 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1035 | else # TARGET_NO_KERNEL == "true" |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 1036 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 1037 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 1038 | # Remove when b/63676296 is resolved. |
| 1039 | $(error Prebuilt bootimage is only supported for AB targets) |
| 1040 | endif |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1041 | INTERNAL_PREBUILT_BOOTIMAGE := $(BOARD_PREBUILT_BOOTIMAGE) |
Kiyoung Kim | 62e2231 | 2019-06-20 14:27:45 +0900 | [diff] [blame] | 1042 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1043 | $(eval $(call copy-one-file,$(INTERNAL_PREBUILT_BOOTIMAGE),$(INSTALLED_BOOTIMAGE_TARGET))) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1044 | else # BOARD_PREBUILT_BOOTIMAGE not defined |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1045 | INSTALLED_BOOTIMAGE_TARGET := |
| 1046 | endif # BOARD_PREBUILT_BOOTIMAGE |
| 1047 | endif # TARGET_NO_KERNEL |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1048 | endif # my_installed_prebuilt_gki_apex not defined |
| 1049 | |
| 1050 | my_apex_extracted_boot_image := |
| 1051 | my_installed_prebuilt_gki_apex := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1052 | |
| 1053 | # ----------------------------------------------------------------- |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1054 | # vendor boot image |
| 1055 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 1056 | |
| 1057 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
| 1058 | $(error vboot 1.0 does not support vendor_boot partition) |
| 1059 | endif |
| 1060 | |
| 1061 | INTERNAL_VENDOR_RAMDISK_FILES := $(filter $(TARGET_VENDOR_RAMDISK_OUT)/%, \ |
| 1062 | $(ALL_GENERATED_SOURCES) \ |
| 1063 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1064 | |
Petri Gynther | 6a6d621 | 2021-03-06 00:45:53 -0800 | [diff] [blame] | 1065 | 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] | 1066 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1067 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 1068 | # recovery ramdisk in vendor_boot. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1069 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1070 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1071 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 1072 | $(INTERNAL_VENDOR_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 1073 | endif |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1074 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1075 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1076 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1077 | $(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] | 1078 | |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1079 | ifeq (true,$(BOARD_BUILD_VENDOR_RAMDISK_IMAGE)) |
| 1080 | INSTALLED_VENDOR_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk.img |
| 1081 | $(INSTALLED_VENDOR_RAMDISK_TARGET): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Petri Gynther | 4c063e3 | 2021-03-06 13:26:01 -0800 | [diff] [blame] | 1082 | $(call pretty,"Target vendor ramdisk: $@") |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1083 | $(copy-file-to-target) |
| 1084 | endif |
| 1085 | |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1086 | INSTALLED_FILES_FILE_VENDOR_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk.txt |
| 1087 | INSTALLED_FILES_JSON_VENDOR_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_RAMDISK:.txt=.json) |
| 1088 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_RAMDISK) |
| 1089 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
| 1090 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1091 | @echo Installed file list: $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1092 | mkdir -p $(dir $@) |
| 1093 | rm -f $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1094 | $(FILESLIST) $(TARGET_VENDOR_RAMDISK_OUT) > $(@:.txt=.json) |
| 1095 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1096 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1097 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1098 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1099 | endif |
| 1100 | ifdef BOARD_KERNEL_BASE |
| 1101 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1102 | endif |
| 1103 | ifdef BOARD_KERNEL_PAGESIZE |
| 1104 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1105 | endif |
| 1106 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1107 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1108 | endif |
| 1109 | |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1110 | ifdef INTERNAL_BOOTCONFIG |
Yi-Yo Chiang | 9c46136 | 2021-04-04 03:26:18 +0800 | [diff] [blame] | 1111 | ifneq (,$(findstring androidboot.hardware=, $(INTERNAL_BOOTCONFIG))) |
| 1112 | $(error "androidboot.hardware" BOOTCONFIG parameter is not supported due \ |
| 1113 | to bootconfig limitations. Use "hardware" instead. INTERNAL_BOOTCONFIG: \ |
| 1114 | $(INTERNAL_BOOTCONFIG)) |
| 1115 | endif |
| 1116 | INTERNAL_VENDOR_BOOTCONFIG_TARGET := $(PRODUCT_OUT)/vendor-bootconfig.img |
| 1117 | $(INTERNAL_VENDOR_BOOTCONFIG_TARGET): |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1118 | rm -f $@ |
| 1119 | $(foreach param,$(INTERNAL_BOOTCONFIG), \ |
| 1120 | printf "%s\n" $(param) >> $@;) |
| 1121 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_bootconfig $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
| 1122 | endif |
| 1123 | |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1124 | # $(1): Build target name |
| 1125 | # $(2): Staging dir to be compressed |
| 1126 | # $(3): Build dependencies |
| 1127 | define build-vendor-ramdisk-fragment-target |
| 1128 | $(1): $(3) $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 1129 | $(MKBOOTFS) -d $(TARGET_OUT) $(2) | $(COMPRESSION_COMMAND) > $$@ |
| 1130 | endef |
| 1131 | |
| 1132 | # $(1): Ramdisk name |
| 1133 | define build-vendor-ramdisk-fragment |
| 1134 | $(strip \ |
| 1135 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragments)/$(1).cpio$(RAMDISK_EXT)) \ |
| 1136 | $(eval $(call build-vendor-ramdisk-fragment-target,$(build_target),$(VENDOR_RAMDISK_FRAGMENT.$(1).STAGING_DIR),$(VENDOR_RAMDISK_FRAGMENT.$(1).FILES))) \ |
| 1137 | $(build_target) \ |
| 1138 | ) |
| 1139 | endef |
| 1140 | |
| 1141 | # $(1): Ramdisk name |
| 1142 | # $(2): Prebuilt file path |
| 1143 | define build-prebuilt-vendor-ramdisk-fragment |
| 1144 | $(strip \ |
| 1145 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,prebuilt_vendor_ramdisk_fragments)/$(1)) \ |
| 1146 | $(eval $(call copy-one-file,$(2),$(build_target))) \ |
| 1147 | $(build_target) \ |
| 1148 | ) |
| 1149 | endef |
| 1150 | |
| 1151 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS := |
| 1152 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS := |
| 1153 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1154 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1155 | $(eval prebuilt_vendor_ramdisk_fragment_file := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 1156 | $(if $(prebuilt_vendor_ramdisk_fragment_file), \ |
| 1157 | $(eval vendor_ramdisk_fragment_target := $(call build-prebuilt-vendor-ramdisk-fragment,$(vendor_ramdisk_fragment),$(prebuilt_vendor_ramdisk_fragment_file))) \ |
| 1158 | $(eval ### else ###), \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1159 | $(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] | 1160 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS += $(vendor_ramdisk_fragment_target)) \ |
| 1161 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS += $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) --vendor_ramdisk_fragment $(vendor_ramdisk_fragment_target)) \ |
| 1162 | ) |
| 1163 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1164 | INSTALLED_VENDOR_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot.img |
| 1165 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET) |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1166 | $(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] | 1167 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1168 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOTIMAGE_KEY_PATH) |
| 1169 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1170 | $(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] | 1171 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1172 | $(AVBTOOL) add_hash_footer \ |
| 1173 | --image $@ \ |
| 1174 | --partition_size $(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE) \ |
| 1175 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_SIGNING_ARGS) \ |
| 1176 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1177 | else |
| 1178 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): |
| 1179 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1180 | $(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] | 1181 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1182 | endif |
| 1183 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 1184 | |
| 1185 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1186 | # NOTICE files |
| 1187 | # |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 1188 | # We are required to publish the licenses for all code under BSD, GPL and |
| 1189 | # Apache licenses (and possibly other more exotic ones as well). We err on the |
| 1190 | # side of caution, so the licenses for other third-party code are included here |
| 1191 | # too. |
| 1192 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1193 | # This needs to be before the systemimage rules, because it adds to |
| 1194 | # ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files |
| 1195 | # go into the systemimage. |
| 1196 | |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1197 | .PHONY: notice_files |
| 1198 | |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1199 | # 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] | 1200 | # $(1) - xml_excluded_system_product_odm_vendor_dlkm_odm_dlkm| |
| 1201 | # xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm| |
| 1202 | # xml_product|xml_odm|xml_system_ext|xml_system|xml_vendor_dlkm| |
| 1203 | # xml_odm_dlkm|html |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1204 | # $(2) - Plain text output file |
| 1205 | # $(3) - HTML/XML output file |
| 1206 | # $(4) - File title |
Jaewoong Jung | e6f57e0 | 2019-06-16 21:48:42 -0700 | [diff] [blame] | 1207 | # $(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] | 1208 | # directories in there will be used for scratch |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1209 | # $(6) - Dependencies for the output files |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1210 | # $(7) - Directories to exclude |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1211 | # |
| 1212 | # The algorithm here is that we go collect a hash for each of the notice |
| 1213 | # files and write the names of the files that match that hash. Then |
| 1214 | # to generate the real files, we go print out all of the files and their |
| 1215 | # hashes. |
| 1216 | # |
| 1217 | # These rules are fairly complex, so they depend on this makefile so if |
| 1218 | # it changes, they'll run again. |
| 1219 | # |
| 1220 | # TODO: We could clean this up so that we just record the locations of the |
| 1221 | # original notice files instead of making rules to copy them somwehere. |
| 1222 | # Then we could traverse that without quite as much bash drama. |
| 1223 | define combine-notice-files |
Dan Willemsen | f4cbafa | 2020-04-28 15:57:32 -0700 | [diff] [blame] | 1224 | $(2): PRIVATE_MESSAGE := $(4) |
| 1225 | $(2): PRIVATE_DIR := $(5) |
| 1226 | $(2): .KATI_IMPLICIT_OUTPUTS := $(3) |
| 1227 | $(2): $(6) $(BUILD_SYSTEM)/Makefile build/make/tools/generate-notice-files.py |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1228 | 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] | 1229 | $(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, \ |
| 1230 | $(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] | 1231 | $(if $(filter $(1),xml_product),-i product --xml-output, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1232 | $(if $(filter $(1),xml_system_ext),-i system_ext --xml-output, \ |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1233 | $(if $(filter $(1),xml_system),-i system --xml-output, \ |
| 1234 | $(if $(filter $(1),xml_odm),-i odm --xml-output, \ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1235 | $(if $(filter $(1),xml_vendor_dlkm),-i vendor_dlkm --xml-output, \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1236 | $(if $(filter $(1),xml_odm_dlkm),-i odm_dlkm --xml-output, \ |
| 1237 | --html-output)))))))) $(3) \ |
Bob Badour | 5e9e1fb | 2020-07-17 20:47:42 -0700 | [diff] [blame] | 1238 | -t $$(PRIVATE_MESSAGE) $$(foreach dir,$$(sort $$(PRIVATE_DIR)), -s $$(dir)/src) |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1239 | notice_files: $(2) $(3) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1240 | endef |
| 1241 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1242 | # Notice file logic isn't relevant for TARGET_BUILD_APPS |
| 1243 | ifndef TARGET_BUILD_APPS |
| 1244 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1245 | # TODO These intermediate NOTICE.txt/NOTICE.html files should go into |
| 1246 | # TARGET_OUT_NOTICE_FILES now that the notice files are gathered from |
| 1247 | # the src subdirectory. |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1248 | target_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE.txt |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1249 | tools_notice_file_txt := $(HOST_OUT_INTERMEDIATES)/NOTICE.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1250 | tools_notice_file_html := $(HOST_OUT_INTERMEDIATES)/NOTICE.html |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1251 | kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt |
| 1252 | 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] | 1253 | |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1254 | # Some targets get included under $(PRODUCT_OUT) for debug symbols or other |
| 1255 | # reasons--not to be flashed onto any device. Targets under these directories |
| 1256 | # need no associated notice file on the device UI. |
| 1257 | exclude_target_dirs := apex |
| 1258 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 1259 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1260 | ifneq ($(PRODUCT_NOTICE_SPLIT),true) |
| 1261 | target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html |
| 1262 | target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz |
| 1263 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.html.gz |
| 1264 | $(eval $(call combine-notice-files, html, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1265 | $(target_notice_file_txt), \ |
| 1266 | $(target_notice_file_html), \ |
| 1267 | "Notices for files contained in the filesystem images in this directory:", \ |
| 1268 | $(TARGET_OUT_NOTICE_FILES), \ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1269 | $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1270 | $(exclude_target_dirs))) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1271 | $(target_notice_file_html_gz): $(target_notice_file_html) | $(MINIGZIP) |
| 1272 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1273 | $(installed_notice_html_or_xml_gz): $(target_notice_file_html_gz) |
| 1274 | $(copy-file-to-target) |
| 1275 | else |
| 1276 | target_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml |
| 1277 | target_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml.gz |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1278 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.xml.gz |
| 1279 | |
| 1280 | target_vendor_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.txt |
| 1281 | target_vendor_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml |
| 1282 | target_vendor_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml.gz |
| 1283 | installed_vendor_notice_xml_gz := $(TARGET_OUT_VENDOR)/etc/NOTICE.xml.gz |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1284 | |
| 1285 | target_product_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.txt |
| 1286 | target_product_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml |
| 1287 | target_product_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml.gz |
| 1288 | installed_product_notice_xml_gz := $(TARGET_OUT_PRODUCT)/etc/NOTICE.xml.gz |
Dario Freni | cbca113 | 2018-08-28 18:04:03 +0100 | [diff] [blame] | 1289 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1290 | target_system_ext_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.txt |
| 1291 | target_system_ext_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml |
| 1292 | target_system_ext_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml.gz |
| 1293 | 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] | 1294 | |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1295 | target_odm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.txt |
| 1296 | target_odm_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml |
| 1297 | target_odm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml.gz |
| 1298 | installed_odm_notice_xml_gz := $(TARGET_OUT_ODM)/etc/NOTICE.xml.gz |
| 1299 | |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1300 | target_vendor_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.txt |
| 1301 | target_vendor_dlkm_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.xml |
| 1302 | target_vendor_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.xml.gz |
| 1303 | installed_vendor_dlkm_notice_xml_gz := $(TARGET_OUT_VENDOR_DLKM)/etc/NOTICE.xml.gz |
| 1304 | |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1305 | target_odm_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.txt |
| 1306 | target_odm_dlkm_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.xml |
| 1307 | target_odm_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.xml.gz |
| 1308 | installed_odm_dlkm_notice_xml_gz := $(TARGET_OUT_ODM_DLKM)/etc/NOTICE.xml.gz |
| 1309 | |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1310 | # Notice files are copied to TARGET_OUT_NOTICE_FILES as a side-effect of their module |
| 1311 | # being built. A notice xml file must depend on all modules that could potentially |
| 1312 | # install a license file relevant to it. |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1313 | license_modules := $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1314 | # Only files copied to a system image need system image notices. |
| 1315 | license_modules := $(filter $(PRODUCT_OUT)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1316 | # Phonys/fakes don't have notice files (though their deps might) |
| 1317 | license_modules := $(filter-out $(TARGET_OUT_FAKE)/%,$(license_modules)) |
Jooyung Han | 4416b00 | 2019-05-29 18:28:22 +0900 | [diff] [blame] | 1318 | # testcases are not relevant to the system image. |
| 1319 | license_modules := $(filter-out $(TARGET_OUT_TESTCASES)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1320 | # 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] | 1321 | license_modules_system := $(filter $(TARGET_OUT)/%,$(license_modules)) |
Jeongik Cha | 9917520 | 2020-06-17 17:10:19 +0900 | [diff] [blame] | 1322 | # system_other is relevant to system partition. |
| 1323 | license_modules_system += $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1324 | license_modules_vendor := $(filter $(TARGET_OUT_VENDOR)/%,$(license_modules)) |
| 1325 | license_modules_product := $(filter $(TARGET_OUT_PRODUCT)/%,$(license_modules)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1326 | license_modules_system_ext := $(filter $(TARGET_OUT_SYSTEM_EXT)/%,$(license_modules)) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1327 | license_modules_odm := $(filter $(TARGET_OUT_ODM)/%,$(license_modules)) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1328 | license_modules_vendor_dlkm := $(filter $(TARGET_OUT_VENDOR_DLKM)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1329 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_ODM_DLKM)/%,$(license_modules)) |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1330 | license_modules_agg := $(license_modules_system) \ |
| 1331 | $(license_modules_vendor) \ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1332 | $(license_modules_product) \ |
| 1333 | $(license_modules_system_ext) \ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1334 | $(license_modules_odm) \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1335 | $(license_modules_vendor_dlkm) \ |
| 1336 | $(license_modules_odm_dlkm) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1337 | # targets used for debug symbols only and do not get copied to the device |
| 1338 | license_modules_symbols_only := $(filter $(PRODUCT_OUT)/apex/%,$(license_modules)) |
| 1339 | |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1340 | license_modules_rest := $(filter-out $(license_modules_agg),$(license_modules)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1341 | license_modules_rest := $(filter-out $(license_modules_symbols_only),$(license_modules_rest)) |
| 1342 | |
| 1343 | # Identify the other targets we expect to have notices for: |
| 1344 | # targets copied to the device but are not readable by the UI (e.g. must boot |
| 1345 | # into a different partition to read or don't have an associated /etc |
| 1346 | # directory) must have their notices built somewhere readable. |
| 1347 | license_modules_rehomed := $(filter-out $(PRODUCT_OUT)/%/%,$(license_modules_rest)) # files in root have no /etc |
| 1348 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/recovery/%,$(license_modules_rest)) |
| 1349 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/root/%,$(license_modules_rest)) |
| 1350 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/data/%,$(license_modules_rest)) |
| 1351 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/ramdisk/%,$(license_modules_rest)) |
| 1352 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/debug_ramdisk/%,$(license_modules_rest)) |
Petri Gynther | dc24d88 | 2021-03-02 23:54:08 -0800 | [diff] [blame] | 1353 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/vendor_ramdisk/%,$(license_modules_rest)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1354 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist/%,$(license_modules_rest)) |
| 1355 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist.img,$(license_modules_rest)) |
| 1356 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/system_other/%,$(license_modules_rest)) |
| 1357 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/kernel%,$(license_modules_rest)) |
| 1358 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.img,$(license_modules_rest)) |
| 1359 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.bin,$(license_modules_rest)) |
| 1360 | |
| 1361 | # after removing targets in system images, targets reported in system images, and |
| 1362 | # targets used for debug symbols that do not need notices, nothing must remain. |
| 1363 | license_modules_rest := $(filter-out $(license_modules_rehomed),$(license_modules_rest)) |
| 1364 | $(call maybe-print-list-and-error, $(license_modules_rest), \ |
| 1365 | "Targets added under $(PRODUCT_OUT)/ unaccounted for notice handling.") |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1366 | |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1367 | # If we are building in a configuration that includes a prebuilt vendor.img, we can't |
| 1368 | # update its notice file, so include those notices in the system partition instead |
| 1369 | ifdef BOARD_PREBUILT_VENDORIMAGE |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1370 | license_modules_system += $(license_modules_rehomed) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1371 | system_xml_directories := xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm |
| 1372 | 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] | 1373 | else |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1374 | license_modules_vendor += $(license_modules_rehomed) |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1375 | system_xml_directories := xml_system |
| 1376 | 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] | 1377 | endif |
| 1378 | |
| 1379 | $(eval $(call combine-notice-files, $(system_xml_directories), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1380 | $(target_notice_file_txt), \ |
| 1381 | $(target_notice_file_xml), \ |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1382 | $(system_notice_file_message), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1383 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1384 | $(license_modules_system), \ |
| 1385 | $(exclude_target_dirs))) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1386 | $(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] | 1387 | $(target_vendor_notice_file_txt), \ |
| 1388 | $(target_vendor_notice_file_xml), \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1389 | "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] | 1390 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1391 | $(license_modules_vendor), \ |
| 1392 | $(exclude_target_dirs))) |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1393 | $(eval $(call combine-notice-files, xml_product, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1394 | $(target_product_notice_file_txt), \ |
| 1395 | $(target_product_notice_file_xml), \ |
| 1396 | "Notices for files contained in the product filesystem image in this directory:", \ |
| 1397 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1398 | $(license_modules_product), \ |
| 1399 | $(exclude_target_dirs))) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1400 | $(eval $(call combine-notice-files, xml_system_ext, \ |
| 1401 | $(target_system_ext_notice_file_txt), \ |
| 1402 | $(target_system_ext_notice_file_xml), \ |
| 1403 | "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] | 1404 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1405 | $(license_modules_system_ext), \ |
| 1406 | $(exclude_target_dirs))) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1407 | $(eval $(call combine-notice-files, xml_odm, \ |
| 1408 | $(target_odm_notice_file_txt), \ |
| 1409 | $(target_odm_notice_file_xml), \ |
| 1410 | "Notices for files contained in the odm filesystem image in this directory:", \ |
| 1411 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1412 | $(license_modules_odm), \ |
| 1413 | $(exclude_target_dirs))) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1414 | $(eval $(call combine-notice-files, xml_vendor_dlkm, \ |
| 1415 | $(target_vendor_dlkm_notice_file_txt), \ |
| 1416 | $(target_vendor_dlkm_notice_file_xml), \ |
| 1417 | "Notices for files contained in the vendor_dlkm filesystem image in this directory:", \ |
| 1418 | $(TARGET_OUT_NOTICE_FILES), \ |
| 1419 | $(license_modules_vendor_dlkm), \ |
| 1420 | $(exclude_target_dirs))) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1421 | $(eval $(call combine-notice-files, xml_odm_dlkm, \ |
| 1422 | $(target_odm_dlkm_notice_file_txt), \ |
| 1423 | $(target_odm_dlkm_notice_file_xml), \ |
| 1424 | "Notices for files contained in the odm_dlkm filesystem image in this directory:", \ |
| 1425 | $(TARGET_OUT_NOTICE_FILES), \ |
| 1426 | $(license_modules_odm_dlkm), \ |
| 1427 | $(exclude_target_dirs))) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1428 | |
| 1429 | $(target_notice_file_xml_gz): $(target_notice_file_xml) | $(MINIGZIP) |
| 1430 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1431 | $(target_vendor_notice_file_xml_gz): $(target_vendor_notice_file_xml) | $(MINIGZIP) |
| 1432 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1433 | $(target_product_notice_file_xml_gz): $(target_product_notice_file_xml) | $(MINIGZIP) |
| 1434 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1435 | $(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] | 1436 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1437 | $(target_odm_notice_file_xml_gz): $(target_odm_notice_file_xml) | $(MINIGZIP) |
| 1438 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1439 | $(target_vendor_dlkm_notice_file_xml_gz): $(target_vendor_dlkm_notice_file_xml) | $(MINIGZIP) |
| 1440 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1441 | $(target_odm_dlkm_notice_file_xml_gz): $(target_odm_dlkm_notice_file_xml) | $(MINIGZIP) |
| 1442 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1443 | $(installed_notice_html_or_xml_gz): $(target_notice_file_xml_gz) |
| 1444 | $(copy-file-to-target) |
| 1445 | $(installed_vendor_notice_xml_gz): $(target_vendor_notice_file_xml_gz) |
| 1446 | $(copy-file-to-target) |
| 1447 | $(installed_product_notice_xml_gz): $(target_product_notice_file_xml_gz) |
| 1448 | $(copy-file-to-target) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1449 | $(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] | 1450 | $(copy-file-to-target) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1451 | $(installed_odm_notice_xml_gz): $(target_odm_notice_file_xml_gz) |
| 1452 | $(copy-file-to-target) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1453 | $(installed_vendor_dlkm_notice_xml_gz): $(target_vendor_dlkm_notice_file_xml_gz) |
| 1454 | $(copy-file-to-target) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1455 | $(installed_odm_dlkm_notice_xml_gz): $(target_odm_dlkm_notice_file_xml_gz) |
| 1456 | $(copy-file-to-target) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1457 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1458 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_or_xml_gz) |
| 1459 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_notice_xml_gz) |
| 1460 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_product_notice_xml_gz) |
| 1461 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_ext_notice_xml_gz) |
| 1462 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_notice_xml_gz) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1463 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_dlkm_notice_xml_gz) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1464 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_dlkm_notice_xml_gz) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1465 | endif # PRODUCT_NOTICE_SPLIT |
| 1466 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1467 | 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] | 1468 | |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1469 | $(eval $(call combine-notice-files, html, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1470 | $(tools_notice_file_txt), \ |
| 1471 | $(tools_notice_file_html), \ |
| 1472 | "Notices for files contained in the tools directory:", \ |
| 1473 | $(HOST_OUT_NOTICE_FILES), \ |
| 1474 | $(ALL_DEFAULT_INSTALLED_MODULES) \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1475 | $(winpthreads_notice_file), \ |
| 1476 | $(exclude_target_dirs))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1477 | |
Ying Wang | 62c81f8 | 2013-08-22 20:02:03 -0700 | [diff] [blame] | 1478 | endif # TARGET_BUILD_APPS |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1479 | |
| 1480 | # The kernel isn't really a module, so to get its module file in there, we |
| 1481 | # make the target NOTICE files depend on this particular file too, which will |
| 1482 | # 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] | 1483 | $(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] | 1484 | |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 1485 | $(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] | 1486 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1487 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1488 | # ################################################################# |
| 1489 | # Targets for user images |
| 1490 | # ################################################################# |
| 1491 | |
Ying Wang | 933abf1 | 2010-06-16 14:31:34 -0700 | [diff] [blame] | 1492 | INTERNAL_USERIMAGES_EXT_VARIANT := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1493 | ifeq ($(TARGET_USERIMAGES_USE_EXT2),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1494 | INTERNAL_USERIMAGES_EXT_VARIANT := ext2 |
| 1495 | else |
| 1496 | ifeq ($(TARGET_USERIMAGES_USE_EXT3),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1497 | INTERNAL_USERIMAGES_EXT_VARIANT := ext3 |
| 1498 | else |
| 1499 | ifeq ($(TARGET_USERIMAGES_USE_EXT4),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1500 | INTERNAL_USERIMAGES_EXT_VARIANT := ext4 |
| 1501 | endif |
| 1502 | endif |
| 1503 | endif |
| 1504 | |
JP Abgrall | 6ea5bd6 | 2014-10-22 20:01:22 -0700 | [diff] [blame] | 1505 | # These options tell the recovery updater/installer how to mount the partitions writebale. |
| 1506 | # <fstype>=<fstype_opts>[|<fstype_opts>]... |
| 1507 | # fstype_opts := <opt>[,<opt>]... |
| 1508 | # opt := <name>[=<value>] |
JP Abgrall | 775b1ab | 2014-10-23 16:27:03 -0700 | [diff] [blame] | 1509 | # The following worked on Nexus devices with Kernel 3.1, 3.4, 3.10 |
| 1510 | 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] | 1511 | |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 1512 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)) |
| 1513 | INTERNAL_USERIMAGES_SPARSE_EXT_FLAG := -s |
| 1514 | endif |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1515 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_EROFS_DISABLED)) |
| 1516 | INTERNAL_USERIMAGES_SPARSE_EROFS_FLAG := -s |
| 1517 | endif |
Todd Poynor | b2a555e | 2015-12-15 18:00:14 -0800 | [diff] [blame] | 1518 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_SQUASHFS_DISABLED)) |
| 1519 | INTERNAL_USERIMAGES_SPARSE_SQUASHFS_FLAG := -s |
| 1520 | endif |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 1521 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)) |
| 1522 | INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG := -S |
| 1523 | endif |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1524 | |
| 1525 | INTERNAL_USERIMAGES_DEPS := \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1526 | $(BUILD_IMAGE) \ |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1527 | $(MKE2FS_CONF) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1528 | $(MKEXTUSERIMG) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1529 | |
| 1530 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
| 1531 | INTERNAL_USERIMAGES_DEPS += $(MKF2FSUSERIMG) |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 1532 | endif |
| 1533 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1534 | ifneq ($(filter \ |
| 1535 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1536 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1537 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1538 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1539 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1540 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1541 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1542 | ,erofs),) |
| 1543 | INTERNAL_USERIMAGES_DEPS += $(MKEROFSUSERIMG) |
| 1544 | endif |
| 1545 | |
| 1546 | ifneq ($(filter \ |
| 1547 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1548 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1549 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1550 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1551 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1552 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1553 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1554 | ,squashfs),) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1555 | INTERNAL_USERIMAGES_DEPS += $(MKSQUASHFSUSERIMG) |
| 1556 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1557 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1558 | ifeq (true,$(PRODUCT_SUPPORTS_VERITY)) |
Tao Bao | b4ec6d7 | 2018-03-15 23:21:28 -0700 | [diff] [blame] | 1559 | INTERNAL_USERIMAGES_DEPS += $(BUILD_VERITY_METADATA) $(BUILD_VERITY_TREE) $(APPEND2SIMG) $(VERITY_SIGNER) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1560 | ifeq (true,$(PRODUCT_SUPPORTS_VERITY_FEC)) |
Sami Tolvanen | f99b531 | 2015-05-20 07:30:57 +0100 | [diff] [blame] | 1561 | INTERNAL_USERIMAGES_DEPS += $(FEC) |
| 1562 | endif |
Geremy Condra | fd6f751 | 2013-06-16 17:26:08 -0700 | [diff] [blame] | 1563 | endif |
| 1564 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1565 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1566 | INTERNAL_USERIMAGES_DEPS += $(AVBTOOL) |
| 1567 | endif |
| 1568 | |
| 1569 | # Get a colon-separated list of search paths. |
| 1570 | INTERNAL_USERIMAGES_BINARY_PATHS := $(subst $(space),:,$(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))) |
| 1571 | |
Jooyung Han | b27c2e8 | 2020-09-23 19:15:20 +0900 | [diff] [blame] | 1572 | # Collects file_contexts files from modules to be installed |
| 1573 | $(call merge-fc-files, \ |
| 1574 | $(sort $(foreach m,$(product_MODULES),$(ALL_MODULES.$(m).FILE_CONTEXTS))),\ |
| 1575 | $(call intermediates-dir-for,ETC,file_contexts.bin)/file_contexts.modules.tmp) |
| 1576 | |
Alex Klyubin | 092c902 | 2017-03-13 13:28:34 -0700 | [diff] [blame] | 1577 | 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] | 1578 | |
Ying Wang | fdbd9cb | 2012-11-21 10:47:00 -0800 | [diff] [blame] | 1579 | INTERNAL_USERIMAGES_DEPS += $(SELINUX_FC) |
| 1580 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 1581 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1582 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1583 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1584 | $(error vboot 1.0 doesn't support logical partition) |
| 1585 | endif |
| 1586 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 1587 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1588 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1589 | # $(1): the path of the output dictionary file |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1590 | # $(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] | 1591 | # $(3): additional "key=value" pairs to append to the dictionary file. |
| 1592 | define generate-image-prop-dictionary |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1593 | $(if $(filter $(2),system),\ |
| 1594 | $(if $(BOARD_SYSTEMIMAGE_PARTITION_SIZE),$(hide) echo "system_size=$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)" >> $(1)) |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 1595 | $(if $(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE),$(hide) echo "system_other_size=$(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE)" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1596 | $(if $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "system_fs_type=$(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
Robin Hsu | 3e51f42 | 2020-11-04 09:29:09 +0800 | [diff] [blame] | 1597 | $(if $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_COMPRESS),$(hide) echo "system_fs_compress=$(BOARD_SYSTEMIMAGE_FILE_SYSTEM_COMPRESS)" >> $(1)) |
| 1598 | $(if $(BOARD_SYSTEMIMAGE_F2FS_SLOAD_COMPRESS_FLAGS),$(hide) echo "system_f2fs_sldc_flags=$(BOARD_SYSTEMIMAGE_F2FS_SLOAD_COMPRESS_FLAGS)" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1599 | $(if $(BOARD_SYSTEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "system_extfs_inode_count=$(BOARD_SYSTEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1600 | $(if $(BOARD_SYSTEMIMAGE_EXTFS_RSV_PCT),$(hide) echo "system_extfs_rsv_pct=$(BOARD_SYSTEMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1601 | $(if $(BOARD_SYSTEMIMAGE_JOURNAL_SIZE),$(hide) echo "system_journal_size=$(BOARD_SYSTEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1602 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "system_squashfs_compressor=$(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1603 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "system_squashfs_compressor_opt=$(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1604 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "system_squashfs_block_size=$(BOARD_SYSTEMIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1605 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "system_squashfs_disable_4k_align=$(BOARD_SYSTEMIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1606 | $(if $(PRODUCT_SYSTEM_BASE_FS_PATH),$(hide) echo "system_base_fs_file=$(PRODUCT_SYSTEM_BASE_FS_PATH)" >> $(1)) |
| 1607 | $(if $(PRODUCT_SYSTEM_HEADROOM),$(hide) echo "system_headroom=$(PRODUCT_SYSTEM_HEADROOM)" >> $(1)) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1608 | $(if $(BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "system_reserved_size=$(BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1609 | $(hide) echo "system_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1610 | $(hide) echo "building_system_image=$(BUILDING_SYSTEM_IMAGE)" >> $(1) |
| 1611 | ) |
| 1612 | $(if $(filter $(2),system_other),\ |
| 1613 | $(hide) echo "building_system_other_image=$(BUILDING_SYSTEM_OTHER_IMAGE)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1614 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1615 | $(if $(filter $(2),userdata),\ |
| 1616 | $(if $(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "userdata_fs_type=$(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1617 | $(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] | 1618 | $(if $(PRODUCT_FS_CASEFOLD),$(hide) echo "needs_casefold=$(PRODUCT_FS_CASEFOLD)" >> $(1)) |
| 1619 | $(if $(PRODUCT_QUOTA_PROJID),$(hide) echo "needs_projid=$(PRODUCT_QUOTA_PROJID)" >> $(1)) |
Jaegeuk Kim | ed754fb | 2020-10-12 19:50:05 -0700 | [diff] [blame] | 1620 | $(if $(PRODUCT_FS_COMPRESSION),$(hide) echo "needs_compress=$(PRODUCT_FS_COMPRESSION)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1621 | $(hide) echo "userdata_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1622 | $(hide) echo "building_userdata_image=$(BUILDING_USERDATA_IMAGE)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1623 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1624 | $(if $(filter $(2),cache),\ |
| 1625 | $(if $(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "cache_fs_type=$(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1626 | $(if $(BOARD_CACHEIMAGE_PARTITION_SIZE),$(hide) echo "cache_size=$(BOARD_CACHEIMAGE_PARTITION_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1627 | $(hide) echo "cache_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1628 | $(hide) echo "building_cache_image=$(BUILDING_CACHE_IMAGE)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1629 | ) |
| 1630 | $(if $(filter $(2),vendor),\ |
| 1631 | $(if $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "vendor_fs_type=$(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1632 | $(if $(BOARD_VENDORIMAGE_EXTFS_INODE_COUNT),$(hide) echo "vendor_extfs_inode_count=$(BOARD_VENDORIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1633 | $(if $(BOARD_VENDORIMAGE_EXTFS_RSV_PCT),$(hide) echo "vendor_extfs_rsv_pct=$(BOARD_VENDORIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1634 | $(if $(BOARD_VENDORIMAGE_PARTITION_SIZE),$(hide) echo "vendor_size=$(BOARD_VENDORIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1635 | $(if $(BOARD_VENDORIMAGE_JOURNAL_SIZE),$(hide) echo "vendor_journal_size=$(BOARD_VENDORIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1636 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "vendor_squashfs_compressor=$(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1637 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "vendor_squashfs_compressor_opt=$(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1638 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "vendor_squashfs_block_size=$(BOARD_VENDORIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1639 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "vendor_squashfs_disable_4k_align=$(BOARD_VENDORIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1640 | $(if $(PRODUCT_VENDOR_BASE_FS_PATH),$(hide) echo "vendor_base_fs_file=$(PRODUCT_VENDOR_BASE_FS_PATH)" >> $(1)) |
Yifan Hong | 749062d | 2018-06-19 16:23:16 -0700 | [diff] [blame] | 1641 | $(if $(BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "vendor_reserved_size=$(BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1642 | $(hide) echo "vendor_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1643 | $(hide) echo "building_vendor_image=$(BUILDING_VENDOR_IMAGE)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1644 | ) |
| 1645 | $(if $(filter $(2),product),\ |
| 1646 | $(if $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "product_fs_type=$(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1647 | $(if $(BOARD_PRODUCTIMAGE_EXTFS_INODE_COUNT),$(hide) echo "product_extfs_inode_count=$(BOARD_PRODUCTIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1648 | $(if $(BOARD_PRODUCTIMAGE_EXTFS_RSV_PCT),$(hide) echo "product_extfs_rsv_pct=$(BOARD_PRODUCTIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1649 | $(if $(BOARD_PRODUCTIMAGE_PARTITION_SIZE),$(hide) echo "product_size=$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1650 | $(if $(BOARD_PRODUCTIMAGE_JOURNAL_SIZE),$(hide) echo "product_journal_size=$(BOARD_PRODUCTIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1651 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "product_squashfs_compressor=$(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1652 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "product_squashfs_compressor_opt=$(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1653 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "product_squashfs_block_size=$(BOARD_PRODUCTIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1654 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "product_squashfs_disable_4k_align=$(BOARD_PRODUCTIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1655 | $(if $(PRODUCT_PRODUCT_BASE_FS_PATH),$(hide) echo "product_base_fs_file=$(PRODUCT_PRODUCT_BASE_FS_PATH)" >> $(1)) |
Yifan Hong | 56a6c3b | 2018-07-20 15:19:34 -0700 | [diff] [blame] | 1656 | $(if $(BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "product_reserved_size=$(BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1657 | $(hide) echo "product_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1658 | $(hide) echo "building_product_image=$(BUILDING_PRODUCT_IMAGE)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1659 | ) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1660 | $(if $(filter $(2),system_ext),\ |
| 1661 | $(if $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "system_ext_fs_type=$(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1662 | $(if $(BOARD_SYSTEM_EXTIMAGE_EXTFS_INODE_COUNT),$(hide) echo "system_ext_extfs_inode_count=$(BOARD_SYSTEM_EXTIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1663 | $(if $(BOARD_SYSTEM_EXTIMAGE_EXTFS_RSV_PCT),$(hide) echo "system_ext_extfs_rsv_pct=$(BOARD_SYSTEM_EXTIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1664 | $(if $(BOARD_SYSTEM_EXTIMAGE_PARTITION_SIZE),$(hide) echo "system_ext_size=$(BOARD_SYSTEM_EXTIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1665 | $(if $(BOARD_SYSTEM_EXTIMAGE_JOURNAL_SIZE),$(hide) echo "system_ext_journal_size=$(BOARD_SYSTEM_EXTIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1666 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "system_ext_squashfs_compressor=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1667 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "system_ext_squashfs_compressor_opt=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1668 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "system_ext_squashfs_block_size=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1669 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "system_ext_squashfs_disable_4k_align=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
| 1670 | $(if $(BOARD_SYSTEM_EXTIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "system_ext_reserved_size=$(BOARD_SYSTEM_EXTIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
| 1671 | $(hide) echo "system_ext_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1672 | $(hide) echo "building_system_ext_image=$(BUILDING_SYSTEM_EXT_IMAGE)" >> $(1) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 1673 | ) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1674 | $(if $(filter $(2),odm),\ |
| 1675 | $(if $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "odm_fs_type=$(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1676 | $(if $(BOARD_ODMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "odm_extfs_inode_count=$(BOARD_ODMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1677 | $(if $(BOARD_ODMIMAGE_EXTFS_RSV_PCT),$(hide) echo "odm_extfs_rsv_pct=$(BOARD_ODMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1678 | $(if $(BOARD_ODMIMAGE_PARTITION_SIZE),$(hide) echo "odm_size=$(BOARD_ODMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1679 | $(if $(BOARD_ODMIMAGE_JOURNAL_SIZE),$(hide) echo "odm_journal_size=$(BOARD_ODMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1680 | $(if $(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "odm_squashfs_compressor=$(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1681 | $(if $(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "odm_squashfs_compressor_opt=$(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1682 | $(if $(BOARD_ODMIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "odm_squashfs_block_size=$(BOARD_ODMIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1683 | $(if $(BOARD_ODMIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "odm_squashfs_disable_4k_align=$(BOARD_ODMIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1684 | $(if $(PRODUCT_ODM_BASE_FS_PATH),$(hide) echo "odm_base_fs_file=$(PRODUCT_ODM_BASE_FS_PATH)" >> $(1)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1685 | $(if $(BOARD_ODMIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "odm_reserved_size=$(BOARD_ODMIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1686 | $(hide) echo "odm_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1687 | $(hide) echo "building_odm_image=$(BUILDING_ODM_IMAGE)" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1688 | ) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1689 | $(if $(filter $(2),vendor_dlkm),\ |
| 1690 | $(if $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "vendor_dlkm_fs_type=$(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1691 | $(if $(BOARD_VENDOR_DLKMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "vendor_dlkm_extfs_inode_count=$(BOARD_VENDOR_DLKMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1692 | $(if $(BOARD_VENDOR_DLKMIMAGE_EXTFS_RSV_PCT),$(hide) echo "vendor_dlkm_extfs_rsv_pct=$(BOARD_VENDOR_DLKMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1693 | $(if $(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE),$(hide) echo "vendor_dlkm_size=$(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1694 | $(if $(BOARD_VENDOR_DLKMIMAGE_JOURNAL_SIZE),$(hide) echo "vendor_dlkm_journal_size=$(BOARD_VENDOR_DLKMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1695 | $(if $(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "vendor_dlkm_squashfs_compressor=$(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1696 | $(if $(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "vendor_dlkm_squashfs_compressor_opt=$(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1697 | $(if $(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "vendor_dlkm_squashfs_block_size=$(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1698 | $(if $(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "vendor_dlkm_squashfs_disable_4k_align=$(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
| 1699 | $(if $(BOARD_VENDOR_DLKMIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "vendor_dlkm_reserved_size=$(BOARD_VENDOR_DLKMIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
| 1700 | $(hide) echo "vendor_dlkm_selinux_fc=$(SELINUX_FC)" >> $(1) |
| 1701 | $(hide) echo "building_vendor_dlkm_image=$(BUILDING_VENDOR_DLKM_IMAGE)" >> $(1) |
| 1702 | ) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1703 | $(if $(filter $(2),odm_dlkm),\ |
| 1704 | $(if $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "odm_dlkm_fs_type=$(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1705 | $(if $(BOARD_ODM_DLKMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "odm_dlkm_extfs_inode_count=$(BOARD_ODM_DLKMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1706 | $(if $(BOARD_ODM_DLKMIMAGE_EXTFS_RSV_PCT),$(hide) echo "odm_dlkm_extfs_rsv_pct=$(BOARD_ODM_DLKMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1707 | $(if $(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE),$(hide) echo "odm_dlkm_size=$(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1708 | $(if $(BOARD_ODM_DLKMIMAGE_JOURNAL_SIZE),$(hide) echo "odm_dlkm_journal_size=$(BOARD_ODM_DLKMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1709 | $(if $(BOARD_ODM_DLKMIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "odm_dlkm_squashfs_compressor=$(BOARD_ODM_DLKMIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1710 | $(if $(BOARD_ODM_DLKMIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "odm_dlkm_squashfs_compressor_opt=$(BOARD_ODM_DLKMIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1711 | $(if $(BOARD_ODM_DLKMIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "odm_dlkm_squashfs_block_size=$(BOARD_ODM_DLKMIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1712 | $(if $(BOARD_ODM_DLKMIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "odm_dlkm_squashfs_disable_4k_align=$(BOARD_ODM_DLKMIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
| 1713 | $(if $(BOARD_ODM_DLKMIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "odm_dlkm_reserved_size=$(BOARD_ODM_DLKMIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
| 1714 | $(hide) echo "odm_dlkm_selinux_fc=$(SELINUX_FC)" >> $(1) |
| 1715 | $(hide) echo "building_odm_dlkm_image=$(BUILDING_ODM_DLKM_IMAGE)" >> $(1) |
| 1716 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1717 | $(if $(filter $(2),oem),\ |
| 1718 | $(if $(BOARD_OEMIMAGE_PARTITION_SIZE),$(hide) echo "oem_size=$(BOARD_OEMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1719 | $(if $(BOARD_OEMIMAGE_JOURNAL_SIZE),$(hide) echo "oem_journal_size=$(BOARD_OEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1720 | $(if $(BOARD_OEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "oem_extfs_inode_count=$(BOARD_OEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1721 | $(if $(BOARD_OEMIMAGE_EXTFS_RSV_PCT),$(hide) echo "oem_extfs_rsv_pct=$(BOARD_OEMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1722 | $(hide) echo "oem_selinux_fc=$(SELINUX_FC)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1723 | ) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1724 | $(hide) echo "ext_mkuserimg=$(notdir $(MKEXTUSERIMG))" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1725 | |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1726 | $(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] | 1727 | $(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] | 1728 | $(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] | 1729 | $(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] | 1730 | $(if $(INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG),$(hide) echo "f2fs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG)" >> $(1)) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1731 | $(if $(BOARD_EXT4_SHARE_DUP_BLOCKS),$(hide) echo "ext4_share_dup_blocks=$(BOARD_EXT4_SHARE_DUP_BLOCKS)" >> $(1)) |
| 1732 | $(if $(BOARD_FLASH_LOGICAL_BLOCK_SIZE), $(hide) echo "flash_logical_block_size=$(BOARD_FLASH_LOGICAL_BLOCK_SIZE)" >> $(1)) |
| 1733 | $(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] | 1734 | $(if $(PRODUCT_SUPPORTS_BOOT_SIGNER),$(hide) echo "boot_signer=$(PRODUCT_SUPPORTS_BOOT_SIGNER)" >> $(1)) |
| 1735 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity=$(PRODUCT_SUPPORTS_VERITY)" >> $(1)) |
| 1736 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity_key=$(PRODUCT_VERITY_SIGNING_KEY)" >> $(1)) |
| 1737 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity_signer_cmd=$(notdir $(VERITY_SIGNER))" >> $(1)) |
| 1738 | $(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] | 1739 | $(if $(filter eng, $(TARGET_BUILD_VARIANT)),$(hide) echo "verity_disable=true" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1740 | $(if $(PRODUCT_SYSTEM_VERITY_PARTITION),$(hide) echo "system_verity_block_device=$(PRODUCT_SYSTEM_VERITY_PARTITION)" >> $(1)) |
| 1741 | $(if $(PRODUCT_VENDOR_VERITY_PARTITION),$(hide) echo "vendor_verity_block_device=$(PRODUCT_VENDOR_VERITY_PARTITION)" >> $(1)) |
| 1742 | $(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] | 1743 | $(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] | 1744 | $(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] | 1745 | $(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] | 1746 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot=$(PRODUCT_SUPPORTS_VBOOT)" >> $(1)) |
| 1747 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_key=$(PRODUCT_VBOOT_SIGNING_KEY)" >> $(1)) |
| 1748 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_subkey=$(PRODUCT_VBOOT_SIGNING_SUBKEY)" >> $(1)) |
| 1749 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "futility=$(notdir $(FUTILITY))" >> $(1)) |
| 1750 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_signer_cmd=$(VBOOT_SIGNER)" >> $(1)) |
Tao Bao | 3cba374 | 2017-05-16 16:27:25 -0700 | [diff] [blame] | 1751 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_avbtool=$(notdir $(AVBTOOL))" >> $(1)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1752 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1753 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1754 | $(if $(BOARD_AVB_ENABLE),\ |
| 1755 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 1756 | $(hide) echo "avb_system_key_path=$(BOARD_AVB_SYSTEM_KEY_PATH)" >> $(1) |
| 1757 | $(hide) echo "avb_system_algorithm=$(BOARD_AVB_SYSTEM_ALGORITHM)" >> $(1) |
| 1758 | $(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] | 1759 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1760 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1761 | $(if $(BOARD_AVB_ENABLE),\ |
| 1762 | $(if $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH),\ |
| 1763 | $(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] | 1764 | $(hide) echo "avb_system_other_algorithm=$(BOARD_AVB_SYSTEM_OTHER_ALGORITHM)" >> $(1))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1765 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1766 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1767 | $(if $(BOARD_AVB_ENABLE),\ |
| 1768 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 1769 | $(hide) echo "avb_vendor_key_path=$(BOARD_AVB_VENDOR_KEY_PATH)" >> $(1) |
| 1770 | $(hide) echo "avb_vendor_algorithm=$(BOARD_AVB_VENDOR_ALGORITHM)" >> $(1) |
| 1771 | $(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] | 1772 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1773 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_add_hashtree_footer_args=$(BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1774 | $(if $(BOARD_AVB_ENABLE),\ |
| 1775 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 1776 | $(hide) echo "avb_product_key_path=$(BOARD_AVB_PRODUCT_KEY_PATH)" >> $(1) |
| 1777 | $(hide) echo "avb_product_algorithm=$(BOARD_AVB_PRODUCT_ALGORITHM)" >> $(1) |
| 1778 | $(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] | 1779 | $(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] | 1780 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1781 | $(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] | 1782 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1783 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 1784 | $(hide) echo "avb_system_ext_key_path=$(BOARD_AVB_SYSTEM_EXT_KEY_PATH)" >> $(1) |
| 1785 | $(hide) echo "avb_system_ext_algorithm=$(BOARD_AVB_SYSTEM_EXT_ALGORITHM)" >> $(1) |
| 1786 | $(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] | 1787 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1788 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_add_hashtree_footer_args=$(BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1789 | $(if $(BOARD_AVB_ENABLE),\ |
| 1790 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 1791 | $(hide) echo "avb_odm_key_path=$(BOARD_AVB_ODM_KEY_PATH)" >> $(1) |
| 1792 | $(hide) echo "avb_odm_algorithm=$(BOARD_AVB_ODM_ALGORITHM)" >> $(1) |
| 1793 | $(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] | 1794 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1795 | $(if $(BOARD_AVB_ENABLE),\ |
| 1796 | $(hide) echo "avb_vendor_dlkm_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1797 | $(if $(BOARD_AVB_ENABLE),\ |
| 1798 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 1799 | $(hide) echo "avb_vendor_dlkm_key_path=$(BOARD_AVB_VENDOR_DLKM_KEY_PATH)" >> $(1) |
| 1800 | $(hide) echo "avb_vendor_dlkm_algorithm=$(BOARD_AVB_VENDOR_DLKM_ALGORITHM)" >> $(1) |
| 1801 | $(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] | 1802 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1803 | $(if $(BOARD_AVB_ENABLE),\ |
| 1804 | $(hide) echo "avb_odm_dlkm_add_hashtree_footer_args=$(BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1805 | $(if $(BOARD_AVB_ENABLE),\ |
| 1806 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 1807 | $(hide) echo "avb_odm_dlkm_key_path=$(BOARD_AVB_ODM_DLKM_KEY_PATH)" >> $(1) |
| 1808 | $(hide) echo "avb_odm_dlkm_algorithm=$(BOARD_AVB_ODM_DLKM_ALGORITHM)" >> $(1) |
| 1809 | $(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] | 1810 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
| 1811 | $(hide) echo "recovery_as_boot=true" >> $(1)) |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 1812 | $(if $(filter true,$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)),\ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1813 | $(hide) echo "system_root_image=true" >> $(1)) |
| 1814 | $(hide) echo "root_dir=$(TARGET_ROOT_OUT)" >> $(1) |
Tamas Petz | 89418f0 | 2020-02-03 15:40:15 +0100 | [diff] [blame] | 1815 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITION_SIZE)),\ |
| 1816 | $(hide) echo "use_dynamic_partition_size=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1817 | $(if $(3),$(hide) $(foreach kv,$(3),echo "$(kv)" >> $(1);)) |
| 1818 | endef |
| 1819 | |
| 1820 | # $(1): the path of the output dictionary file |
| 1821 | # $(2): additional "key=value" pairs to append to the dictionary file. |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1822 | PROP_DICTIONARY_IMAGES := oem |
| 1823 | ifdef BUILDING_CACHE_IMAGE |
| 1824 | PROP_DICTIONARY_IMAGES += cache |
| 1825 | endif |
| 1826 | ifdef BUILDING_SYSTEM_IMAGE |
| 1827 | PROP_DICTIONARY_IMAGES += system |
| 1828 | endif |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1829 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 1830 | PROP_DICTIONARY_IMAGES += system_other |
| 1831 | endif |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1832 | ifdef BUILDING_USERDATA_IMAGE |
| 1833 | PROP_DICTIONARY_IMAGES += userdata |
| 1834 | endif |
| 1835 | ifdef BUILDING_VENDOR_IMAGE |
| 1836 | PROP_DICTIONARY_IMAGES += vendor |
| 1837 | endif |
| 1838 | ifdef BUILDING_PRODUCT_IMAGE |
| 1839 | PROP_DICTIONARY_IMAGES += product |
| 1840 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1841 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 1842 | PROP_DICTIONARY_IMAGES += system_ext |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1843 | endif |
| 1844 | ifdef BUILDING_ODM_IMAGE |
| 1845 | PROP_DICTIONARY_IMAGES += odm |
| 1846 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1847 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 1848 | PROP_DICTIONARY_IMAGES += vendor_dlkm |
| 1849 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1850 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 1851 | PROP_DICTIONARY_IMAGES += odm_dlkm |
| 1852 | endif |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1853 | define generate-userimage-prop-dictionary |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1854 | $(call generate-image-prop-dictionary,$(1),$(PROP_DICTIONARY_IMAGES),$(2)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1855 | endef |
| 1856 | |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1857 | # $(1): the path of the input dictionary file, where each line has the format key=value |
| 1858 | # $(2): the key to look up |
| 1859 | define read-image-prop-dictionary |
| 1860 | $$(grep '$(2)=' $(1) | cut -f2- -d'=') |
| 1861 | endef |
| 1862 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1863 | # ----------------------------------------------------------------- |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1864 | # Recovery image |
Doug Zongker | 8cebf1f | 2009-07-07 17:14:25 -0700 | [diff] [blame] | 1865 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 1866 | # 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] | 1867 | ifdef BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1868 | |
Ying Wang | 3752614 | 2015-03-10 12:02:57 -0700 | [diff] [blame] | 1869 | INTERNAL_RECOVERYIMAGE_FILES := $(filter $(TARGET_RECOVERY_OUT)/%, \ |
| 1870 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1871 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1872 | INSTALLED_FILES_FILE_RECOVERY := $(PRODUCT_OUT)/installed-files-recovery.txt |
| 1873 | INSTALLED_FILES_JSON_RECOVERY := $(INSTALLED_FILES_FILE_RECOVERY:.txt=.json) |
| 1874 | |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 1875 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 1876 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 1877 | endif |
| 1878 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1879 | # TODO(b/30414428): Can't depend on INTERNAL_RECOVERYIMAGE_FILES alone like other |
| 1880 | # INSTALLED_FILES_FILE_* rules. Because currently there're cp/rsync/rm commands in |
| 1881 | # build-recoveryimage-target, which would touch the files under TARGET_RECOVERY_OUT and race with |
| 1882 | # the call to FILELIST. |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 1883 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1884 | |
| 1885 | $(INSTALLED_FILES_FILE_RECOVERY): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RECOVERY) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1886 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERYIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1887 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1888 | mkdir -p $(dir $@) |
| 1889 | rm -f $@ |
| 1890 | $(FILESLIST) $(TARGET_RECOVERY_ROOT_OUT) > $(@:.txt=.json) |
| 1891 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1892 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1893 | recovery_sepolicy := \ |
| 1894 | $(TARGET_RECOVERY_ROOT_OUT)/sepolicy \ |
Jeff Vander Stoep | 4ff042c | 2017-06-13 08:30:46 -0700 | [diff] [blame] | 1895 | $(TARGET_RECOVERY_ROOT_OUT)/plat_file_contexts \ |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1896 | $(TARGET_RECOVERY_ROOT_OUT)/plat_property_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 1897 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_file_contexts \ |
| 1898 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_property_contexts \ |
| 1899 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 1900 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_property_contexts \ |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 1901 | $(TARGET_RECOVERY_ROOT_OUT)/odm_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 1902 | $(TARGET_RECOVERY_ROOT_OUT)/odm_property_contexts \ |
| 1903 | $(TARGET_RECOVERY_ROOT_OUT)/product_file_contexts \ |
| 1904 | $(TARGET_RECOVERY_ROOT_OUT)/product_property_contexts |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 1905 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1906 | # Passed into rsync from non-recovery root to recovery root, to avoid overwriting recovery-specific |
| 1907 | # SELinux files |
| 1908 | IGNORE_RECOVERY_SEPOLICY := $(patsubst $(TARGET_RECOVERY_OUT)/%,--exclude=/%,$(recovery_sepolicy)) |
| 1909 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1910 | # if building multiple boot images from multiple kernels, use the first kernel listed |
| 1911 | # for the recovery image |
| 1912 | recovery_kernel := $(firstword $(INSTALLED_KERNEL_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1913 | recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1914 | recovery_resources_common := bootable/recovery/res |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 1915 | |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 1916 | # Set recovery_density to a density bucket based on TARGET_SCREEN_DENSITY, PRODUCT_AAPT_PREF_CONFIG, |
| 1917 | # or mdpi, in order of preference. We support both specific buckets (e.g. xdpi) and numbers, |
| 1918 | # which get remapped to a bucket. |
| 1919 | recovery_density := $(or $(TARGET_SCREEN_DENSITY),$(PRODUCT_AAPT_PREF_CONFIG),mdpi) |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 1920 | ifeq (,$(filter xxxhdpi xxhdpi xhdpi hdpi mdpi,$(recovery_density))) |
| 1921 | recovery_density_value := $(patsubst %dpi,%,$(recovery_density)) |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 1922 | # 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] | 1923 | # ------160------240------320----------480------------640------ |
| 1924 | # mdpi hdpi xhdpi xxhdpi xxxhdpi |
| 1925 | recovery_density := $(strip \ |
| 1926 | $(or $(if $(filter $(shell echo $$(($(recovery_density_value) >= 560))),1),xxxhdpi),\ |
| 1927 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 400))),1),xxhdpi),\ |
| 1928 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 280))),1),xhdpi),\ |
| 1929 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 200))),1),hdpi,mdpi))) |
Doug Zongker | 8eaeea9 | 2014-05-12 15:32:20 -0700 | [diff] [blame] | 1930 | endif |
| 1931 | |
| 1932 | ifneq (,$(wildcard $(recovery_resources_common)-$(recovery_density))) |
| 1933 | recovery_resources_common := $(recovery_resources_common)-$(recovery_density) |
| 1934 | else |
Doug Zongker | 25d55f8 | 2014-04-04 13:51:15 -0700 | [diff] [blame] | 1935 | recovery_resources_common := $(recovery_resources_common)-xhdpi |
| 1936 | endif |
| 1937 | |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 1938 | # Select the 18x32 font on high-density devices (xhdpi and up); and the 12x22 font on other devices. |
| 1939 | # Note that the font selected here can be overridden for a particular device by putting a font.png |
| 1940 | # in its private recovery resources. |
| 1941 | ifneq (,$(filter xxxhdpi xxhdpi xhdpi,$(recovery_density))) |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1942 | recovery_font := bootable/recovery/fonts/18x32.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 1943 | else |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1944 | recovery_font := bootable/recovery/fonts/12x22.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 1945 | endif |
| 1946 | |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1947 | |
| 1948 | # We will only generate the recovery background text images if the variable |
| 1949 | # TARGET_RECOVERY_UI_SCREEN_WIDTH is defined. For devices with xxxhdpi and xxhdpi, we set the |
| 1950 | # variable to the commonly used values here, if it hasn't been intialized elsewhere. While for |
| 1951 | # devices with lower density, they must have TARGET_RECOVERY_UI_SCREEN_WIDTH defined in their |
| 1952 | # BoardConfig in order to use this feature. |
| 1953 | ifeq ($(recovery_density),xxxhdpi) |
| 1954 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1440 |
| 1955 | else ifeq ($(recovery_density),xxhdpi) |
| 1956 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1080 |
| 1957 | endif |
| 1958 | |
| 1959 | ifneq ($(TARGET_RECOVERY_UI_SCREEN_WIDTH),) |
| 1960 | # Subtracts the margin width and menu indent from the screen width; it's safe to be conservative. |
| 1961 | ifeq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),) |
| 1962 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - 10)) |
| 1963 | else |
| 1964 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - $(TARGET_RECOVERY_UI_MARGIN_WIDTH) - 10)) |
| 1965 | endif |
| 1966 | |
| 1967 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1968 | 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] | 1969 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/installing_security_text.png |
| 1970 | RECOVERY_ERASING_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/erasing_text.png |
| 1971 | RECOVERY_ERROR_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/error_text.png |
| 1972 | RECOVERY_NO_COMMAND_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/no_command_text.png |
| 1973 | |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1974 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/cancel_wipe_data_text.png |
| 1975 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/factory_data_reset_text.png |
| 1976 | RECOVERY_TRY_AGAIN_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/try_again_text.png |
| 1977 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_confirmation_text.png |
| 1978 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_menu_header_text.png |
| 1979 | |
| 1980 | generated_recovery_text_files := \ |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1981 | $(RECOVERY_INSTALLING_TEXT_FILE) \ |
| 1982 | $(RECOVERY_INSTALLING_SECURITY_TEXT_FILE) \ |
| 1983 | $(RECOVERY_ERASING_TEXT_FILE) \ |
| 1984 | $(RECOVERY_ERROR_TEXT_FILE) \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1985 | $(RECOVERY_NO_COMMAND_TEXT_FILE) \ |
| 1986 | $(RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE) \ |
| 1987 | $(RECOVERY_FACTORY_DATA_RESET_TEXT_FILE) \ |
| 1988 | $(RECOVERY_TRY_AGAIN_TEXT_FILE) \ |
| 1989 | $(RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE) \ |
| 1990 | $(RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1991 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1992 | resource_dir := bootable/recovery/tools/recovery_l10n/res/ |
| 1993 | resource_dir_deps := $(sort $(shell find $(resource_dir) -name *.xml -not -name .*)) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1994 | image_generator_jar := $(HOST_OUT_JAVA_LIBRARIES)/RecoveryImageGenerator.jar |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1995 | zopflipng := $(HOST_OUT_EXECUTABLES)/zopflipng |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1996 | $(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] | 1997 | $(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] | 1998 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RESOURCE_DIR := $(resource_dir) |
| 1999 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_IMAGE_GENERATOR_JAR := $(image_generator_jar) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2000 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_ZOPFLIPNG := $(zopflipng) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2001 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_IMAGE_WIDTH := $(recovery_image_width) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2002 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_BACKGROUND_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2003 | recovery_installing \ |
| 2004 | recovery_installing_security \ |
| 2005 | recovery_erasing \ |
| 2006 | recovery_error \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2007 | recovery_no_command |
| 2008 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_WIPE_DATA_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2009 | recovery_cancel_wipe_data \ |
| 2010 | recovery_factory_data_reset \ |
| 2011 | recovery_try_again \ |
| 2012 | recovery_wipe_data_menu_header \ |
| 2013 | recovery_wipe_data_confirmation |
| 2014 | $(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] | 2015 | $(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] | 2016 | # Prepares the font directory. |
| 2017 | @rm -rf $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
| 2018 | @mkdir -p $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2019 | $(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] | 2020 | @rm -rf $(dir $@) |
| 2021 | @mkdir -p $(dir $@) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2022 | $(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] | 2023 | $(eval output_file := $(dir $@)/$(patsubst recovery_%,%_text.png,$(text_name))) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2024 | $(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] | 2025 | java -jar $(PRIVATE_IMAGE_GENERATOR_JAR) \ |
| 2026 | --image_width $(PRIVATE_RECOVERY_IMAGE_WIDTH) \ |
| 2027 | --text_name $(text_name) \ |
| 2028 | --font_dir $(PRIVATE_RECOVERY_FONT_FILES_DIR) \ |
| 2029 | --resource_dir $(PRIVATE_RESOURCE_DIR) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2030 | --output_file $(output_file) $(center_alignment) && \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2031 | $(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] | 2032 | else |
| 2033 | RECOVERY_INSTALLING_TEXT_FILE := |
| 2034 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := |
| 2035 | RECOVERY_ERASING_TEXT_FILE := |
| 2036 | RECOVERY_ERROR_TEXT_FILE := |
| 2037 | RECOVERY_NO_COMMAND_TEXT_FILE := |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2038 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := |
| 2039 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := |
| 2040 | RECOVERY_TRY_AGAIN_TEXT_FILE := |
| 2041 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := |
| 2042 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2043 | endif # TARGET_RECOVERY_UI_SCREEN_WIDTH |
| 2044 | |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2045 | ifndef TARGET_PRIVATE_RES_DIRS |
| 2046 | TARGET_PRIVATE_RES_DIRS := $(wildcard $(TARGET_DEVICE_DIR)/recovery/res) |
| 2047 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2048 | recovery_resource_deps := $(shell find $(recovery_resources_common) \ |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2049 | $(TARGET_PRIVATE_RES_DIRS) -type f) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2050 | recovery_resource_deps += $(generated_recovery_text_files) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2051 | |
| 2052 | |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2053 | ifdef TARGET_RECOVERY_FSTAB |
| 2054 | recovery_fstab := $(TARGET_RECOVERY_FSTAB) |
| 2055 | else |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 2056 | recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab)) |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2057 | endif |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2058 | ifdef TARGET_RECOVERY_WIPE |
| 2059 | recovery_wipe := $(TARGET_RECOVERY_WIPE) |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2060 | else |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2061 | recovery_wipe := |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2062 | endif |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2063 | |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2064 | # Traditionally with non-A/B OTA we have: |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2065 | # boot.img + recovery-from-boot.p + recovery-resource.dat = recovery.img. |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2066 | # recovery-resource.dat is needed only if we carry an imgdiff patch of the boot and recovery images |
| 2067 | # 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] | 2068 | # |
| 2069 | # We no longer need that if one of the following conditions holds: |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2070 | # 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] | 2071 | # (BOARD_USES_FULL_RECOVERY_IMAGE = true); |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2072 | # b) We build a single image that contains boot and recovery both - no recovery image to install |
| 2073 | # (BOARD_USES_RECOVERY_AS_BOOT = true); |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2074 | # 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] | 2075 | # (BOARD_BUILD_SYSTEM_ROOT_IMAGE = true). |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2076 | # d) We include the recovery DTBO image within recovery - not needing the resource file as we |
| 2077 | # do bsdiff because boot and recovery will contain different number of entries |
| 2078 | # (BOARD_INCLUDE_RECOVERY_DTBO = true). |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2079 | # e) We include the recovery ACPIO image within recovery - not needing the resource file as we |
| 2080 | # do bsdiff because boot and recovery will contain different number of entries |
| 2081 | # (BOARD_INCLUDE_RECOVERY_ACPIO = true). |
Yifan Hong | ef7a971 | 2020-10-20 13:17:42 -0700 | [diff] [blame] | 2082 | # f) We build a single image that contains vendor_boot and recovery both - no recovery image to |
| 2083 | # install |
| 2084 | # (BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT = true). |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2085 | |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2086 | 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] | 2087 | $(BOARD_BUILD_SYSTEM_ROOT_IMAGE) $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO) \ |
| 2088 | $(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT))) |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2089 | # 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] | 2090 | RECOVERY_RESOURCE_ZIP := $(TARGET_OUT_VENDOR)/etc/recovery-resource.dat |
| 2091 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_RESOURCE_ZIP) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2092 | else |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2093 | RECOVERY_RESOURCE_ZIP := |
| 2094 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2095 | |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2096 | INSTALLED_RECOVERY_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/prop.default |
| 2097 | |
| 2098 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): PRIVATE_RECOVERY_UI_PROPERTIES := \ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2099 | TARGET_RECOVERY_UI_ANIMATION_FPS:animation_fps \ |
| 2100 | TARGET_RECOVERY_UI_MARGIN_HEIGHT:margin_height \ |
| 2101 | TARGET_RECOVERY_UI_MARGIN_WIDTH:margin_width \ |
| 2102 | TARGET_RECOVERY_UI_MENU_UNUSABLE_ROWS:menu_unusable_rows \ |
| 2103 | TARGET_RECOVERY_UI_PROGRESS_BAR_BASELINE:progress_bar_baseline \ |
| 2104 | TARGET_RECOVERY_UI_TOUCH_LOW_THRESHOLD:touch_low_threshold \ |
| 2105 | TARGET_RECOVERY_UI_TOUCH_HIGH_THRESHOLD:touch_high_threshold \ |
| 2106 | TARGET_RECOVERY_UI_VR_STEREO_OFFSET:vr_stereo_offset |
| 2107 | |
| 2108 | # Parses the given list of build variables and writes their values as build properties if defined. |
| 2109 | # For example, if a target defines `TARGET_RECOVERY_UI_MARGIN_HEIGHT := 100`, |
| 2110 | # `ro.recovery.ui.margin_height=100` will be appended to the given output file. |
| 2111 | # $(1): Map from the build variable names to property names |
| 2112 | # $(2): Output file |
| 2113 | define append-recovery-ui-properties |
| 2114 | echo "#" >> $(2) |
| 2115 | echo "# RECOVERY UI BUILD PROPERTIES" >> $(2) |
| 2116 | echo "#" >> $(2) |
| 2117 | $(foreach prop,$(1), \ |
| 2118 | $(eval _varname := $(call word-colon,1,$(prop))) \ |
| 2119 | $(eval _propname := $(call word-colon,2,$(prop))) \ |
| 2120 | $(eval _value := $($(_varname))) \ |
| 2121 | $(if $(_value), \ |
| 2122 | echo ro.recovery.ui.$(_propname)=$(_value) >> $(2) &&)) true |
| 2123 | endef |
| 2124 | |
| 2125 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): \ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2126 | $(INSTALLED_BUILD_PROP_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2127 | $(INSTALLED_VENDOR_BUILD_PROP_TARGET) \ |
| 2128 | $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2129 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2130 | $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) |
Tao Bao | 1edaca1 | 2018-09-18 10:22:54 -0700 | [diff] [blame] | 2131 | @echo "Target recovery buildinfo: $@" |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2132 | $(hide) mkdir -p $(dir $@) |
| 2133 | $(hide) rm -f $@ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2134 | $(hide) cat $(INSTALLED_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2135 | $(hide) cat $(INSTALLED_VENDOR_BUILD_PROP_TARGET) >> $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2136 | $(hide) cat $(INSTALLED_ODM_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2137 | $(hide) cat $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) >> $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2138 | $(hide) cat $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2139 | $(call append-recovery-ui-properties,$(PRIVATE_RECOVERY_UI_PROPERTIES),$@) |
| 2140 | |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2141 | # Only install boot/etc/build.prop to recovery image on recovery_as_boot. |
| 2142 | # On device with dedicated recovery partition, the file should come from the boot |
| 2143 | # ramdisk. |
| 2144 | ifeq (true,$(BOARD_USES_RECOVERY_AS_BOOT)) |
| 2145 | INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/$(RAMDISK_BUILD_PROP_REL_PATH) |
| 2146 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET): $(INSTALLED_RAMDISK_BUILD_PROP_TARGET) |
| 2147 | $(copy-file-to-target) |
| 2148 | endif |
| 2149 | |
Yifan Hong | c56931c | 2020-10-28 16:35:19 -0700 | [diff] [blame] | 2150 | INTERNAL_RECOVERYIMAGE_ARGS := --ramdisk $(recovery_ramdisk) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2151 | |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 2152 | 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] | 2153 | INTERNAL_RECOVERYIMAGE_ARGS += $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2154 | # Assumes this has already been stripped |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2155 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 2156 | ifdef INTERNAL_KERNEL_CMDLINE |
| 2157 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2158 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 2159 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2160 | ifdef BOARD_KERNEL_BASE |
| 2161 | INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 2162 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 2163 | ifdef BOARD_KERNEL_PAGESIZE |
| 2164 | INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 2165 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2166 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2167 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2168 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2169 | else |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2170 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_DTBOIMAGE) |
| 2171 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 2172 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2173 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 2174 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_acpio $(BOARD_RECOVERY_ACPIO) |
| 2175 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2176 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 2177 | INTERNAL_RECOVERYIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 2178 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 2179 | endif # (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2180 | ifndef BOARD_RECOVERY_MKBOOTIMG_ARGS |
| 2181 | BOARD_RECOVERY_MKBOOTIMG_ARGS := $(BOARD_MKBOOTIMG_ARGS) |
| 2182 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2183 | |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2184 | $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP): $(MKBOOTFS) $(COMPRESSION_COMMAND_DEPS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2185 | $(INTERNAL_ROOT_FILES) \ |
| 2186 | $(INSTALLED_RAMDISK_TARGET) \ |
| 2187 | $(INTERNAL_RECOVERYIMAGE_FILES) \ |
| 2188 | $(recovery_sepolicy) \ |
| 2189 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 2190 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET) \ |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2191 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2192 | $(recovery_resource_deps) \ |
| 2193 | $(recovery_fstab) |
| 2194 | # Making recovery image |
| 2195 | mkdir -p $(TARGET_RECOVERY_OUT) |
| 2196 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sdcard $(TARGET_RECOVERY_ROOT_OUT)/tmp |
| 2197 | # Copying baseline ramdisk... |
| 2198 | # Use rsync because "cp -Rf" fails to overwrite broken symlinks on Mac. |
| 2199 | rsync -a --exclude=sdcard $(IGNORE_RECOVERY_SEPOLICY) $(IGNORE_CACHE_LINK) $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT) |
| 2200 | # Modifying ramdisk contents... |
| 2201 | $(if $(filter true,$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)),, \ |
| 2202 | ln -sf /system/bin/init $(TARGET_RECOVERY_ROOT_OUT)/init) |
| 2203 | # Removes $(TARGET_RECOVERY_ROOT_OUT)/init*.rc EXCEPT init.recovery*.rc. |
| 2204 | find $(TARGET_RECOVERY_ROOT_OUT) -maxdepth 1 -name 'init*.rc' -type f -not -name "init.recovery.*.rc" | xargs rm -f |
| 2205 | cp $(TARGET_ROOT_OUT)/init.recovery.*.rc $(TARGET_RECOVERY_ROOT_OUT)/ 2> /dev/null || true # Ignore error when the src file doesn't exist. |
| 2206 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2207 | rm -rf $(TARGET_RECOVERY_ROOT_OUT)/res/* |
| 2208 | cp -rf $(recovery_resources_common)/* $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2209 | $(foreach recovery_text_file,$(generated_recovery_text_files), \ |
| 2210 | cp -rf $(recovery_text_file) $(TARGET_RECOVERY_ROOT_OUT)/res/images/ &&) true |
| 2211 | cp -f $(recovery_font) $(TARGET_RECOVERY_ROOT_OUT)/res/images/font.png |
| 2212 | $(foreach item,$(TARGET_PRIVATE_RES_DIRS), \ |
| 2213 | cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/$(newline)) |
| 2214 | $(foreach item,$(recovery_fstab), \ |
| 2215 | cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.fstab) |
| 2216 | $(if $(strip $(recovery_wipe)), \ |
| 2217 | cp -f $(recovery_wipe) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.wipe) |
| 2218 | ln -sf prop.default $(TARGET_RECOVERY_ROOT_OUT)/default.prop |
| 2219 | $(BOARD_RECOVERY_IMAGE_PREPARE) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2220 | $(hide) touch $@ |
| 2221 | |
| 2222 | $(recovery_ramdisk): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2223 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RECOVERY_ROOT_OUT) | $(COMPRESSION_COMMAND) > $(recovery_ramdisk) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2224 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2225 | # $(1): output file |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2226 | # $(2): optional kernel file |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2227 | define build-recoveryimage-target |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2228 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2229 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2230 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_RECOVERY_MKBOOTIMG_ARGS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2231 | --output $(1).unsigned, \ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2232 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2233 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS) \ |
| 2234 | $(BOARD_RECOVERY_MKBOOTIMG_ARGS) --output $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2235 | $(if $(filter true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)),\ |
Nick Desaulniers | d491fcf | 2016-08-08 10:51:10 -0700 | [diff] [blame] | 2236 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2237 | $(BOOT_SIGNER) /boot $(1) $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $(1),\ |
| 2238 | $(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] | 2239 | )\ |
| 2240 | ) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2241 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
| 2242 | $(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] | 2243 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2244 | $(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] | 2245 | $(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] | 2246 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 2247 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2248 | $(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] | 2249 | $(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] | 2250 | endef |
| 2251 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2252 | recoveryimage-deps := $(MKBOOTIMG) $(recovery_ramdisk) $(recovery_kernel) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2253 | ifeq (true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2254 | recoveryimage-deps += $(BOOT_SIGNER) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 2255 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2256 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2257 | recoveryimage-deps += $(VBOOT_SIGNER) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 2258 | endif |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2259 | ifeq (true,$(BOARD_AVB_ENABLE)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2260 | recoveryimage-deps += $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2261 | endif |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2262 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 2263 | recoveryimage-deps += $(BOARD_GKI_SIGNING_KEY_PATH) $(AVBTOOL) |
| 2264 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2265 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2266 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2267 | recoveryimage-deps += $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2268 | else |
| 2269 | recoveryimage-deps += $(BOARD_PREBUILT_DTBOIMAGE) |
| 2270 | endif |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2271 | endif |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2272 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2273 | recoveryimage-deps += $(BOARD_RECOVERY_ACPIO) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2274 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2275 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2276 | recoveryimage-deps += $(INSTALLED_DTBIMAGE_TARGET) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2277 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2278 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2279 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 2280 | $(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] | 2281 | $(INSTALLED_BOOTIMAGE_TARGET): $(recoveryimage-deps) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2282 | $(call pretty,"Target boot image from recovery: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2283 | $(call build-recoveryimage-target, $@, $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $@)))) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2284 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2285 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2286 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(recoveryimage-deps) |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2287 | $(call build-recoveryimage-target, $@, \ |
| 2288 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2289 | |
Tao Bao | 4594d0e | 2015-12-22 09:47:46 -0800 | [diff] [blame] | 2290 | ifdef RECOVERY_RESOURCE_ZIP |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2291 | $(RECOVERY_RESOURCE_ZIP): $(INSTALLED_RECOVERYIMAGE_TARGET) | $(ZIPTIME) |
Doug Zongker | 1a09726 | 2012-09-04 14:45:11 -0700 | [diff] [blame] | 2292 | $(hide) mkdir -p $(dir $@) |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2293 | $(hide) find $(TARGET_RECOVERY_ROOT_OUT)/res -type f | sort | zip -0qrjX $@ -@ |
| 2294 | $(remove-timestamps-from-package) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2295 | endif |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2296 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2297 | .PHONY: recoveryimage-nodeps |
| 2298 | recoveryimage-nodeps: |
| 2299 | @echo "make $@: ignoring dependencies" |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2300 | $(call build-recoveryimage-target, $(INSTALLED_RECOVERYIMAGE_TARGET), \ |
| 2301 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2302 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2303 | else # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2304 | RECOVERY_RESOURCE_ZIP := |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2305 | endif # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2306 | |
| 2307 | .PHONY: recoveryimage |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2308 | recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET) $(RECOVERY_RESOURCE_ZIP) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2309 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2310 | ifneq ($(BOARD_NAND_PAGE_SIZE),) |
| 2311 | $(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] | 2312 | endif |
| 2313 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2314 | ifneq ($(BOARD_NAND_SPARE_SIZE),) |
| 2315 | $(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] | 2316 | endif |
| 2317 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2318 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2319 | # ----------------------------------------------------------------- |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2320 | # the debug ramdisk, which is the original ramdisk plus additional |
| 2321 | # files: force_debuggable, adb_debug.prop and userdebug sepolicy. |
| 2322 | # When /force_debuggable is present, /init will load userdebug sepolicy |
| 2323 | # and property files to allow adb root, if the device is unlocked. |
| 2324 | |
| 2325 | ifdef BUILDING_RAMDISK_IMAGE |
| 2326 | BUILT_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-debug.img |
| 2327 | INSTALLED_DEBUG_RAMDISK_TARGET := $(BUILT_DEBUG_RAMDISK_TARGET) |
| 2328 | |
| 2329 | INTERNAL_DEBUG_RAMDISK_FILES := $(filter $(TARGET_DEBUG_RAMDISK_OUT)/%, \ |
| 2330 | $(ALL_GENERATED_SOURCES) \ |
| 2331 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2332 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2333 | INSTALLED_FILES_FILE_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk-debug.txt |
| 2334 | INSTALLED_FILES_JSON_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK:.txt=.json) |
| 2335 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_DEBUG_RAMDISK) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2336 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2337 | # ramdisk-debug.img will merge the content from either ramdisk.img or |
| 2338 | # ramdisk-recovery.img, depending on whether BOARD_USES_RECOVERY_AS_BOOT |
| 2339 | # is set or not. |
| 2340 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2341 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 2342 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(recovery_ramdisk) |
| 2343 | else |
| 2344 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): PRIVATE_ADDITIONAL_DIR := $(TARGET_RAMDISK_OUT) |
| 2345 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(INSTALLED_RAMDISK_TARGET) |
| 2346 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2347 | |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2348 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) : $(INTERNAL_DEBUG_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 2349 | @echo Installed file list: $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2350 | mkdir -p $(dir $@) |
| 2351 | rm -f $@ |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2352 | $(FILESLIST) $(TARGET_DEBUG_RAMDISK_OUT) $(PRIVATE_ADDITIONAL_DIR) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2353 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2354 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2355 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2356 | $(INSTALLED_DEBUG_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 2357 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(recovery_ramdisk) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2358 | else |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2359 | $(INSTALLED_DEBUG_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RAMDISK_OUT) |
| 2360 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_RAMDISK_TARGET) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2361 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2362 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2363 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2364 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_DEBUG_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Petri Gynther | 4c063e3 | 2021-03-06 13:26:01 -0800 | [diff] [blame] | 2365 | $(call pretty,"Target debug ramdisk: $@") |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2366 | mkdir -p $(TARGET_DEBUG_RAMDISK_OUT) |
| 2367 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2368 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_DEBUG_RAMDISK_OUT) $(PRIVATE_ADDITIONAL_DIR) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2369 | |
| 2370 | .PHONY: ramdisk_debug-nodeps |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2371 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2372 | ramdisk_debug-nodeps: PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 2373 | else |
| 2374 | ramdisk_debug-nodeps: PRIVATE_ADDITIONAL_DIR := $(TARGET_RAMDISK_OUT) |
| 2375 | endif # BOARD_USES_RECOVERY_AS_BOOT |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2376 | ramdisk_debug-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2377 | echo "make $@: ignoring dependencies" |
| 2378 | mkdir -p $(TARGET_DEBUG_RAMDISK_OUT) |
| 2379 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2380 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_DEBUG_RAMDISK_OUT) $(PRIVATE_ADDITIONAL_DIR) | $(COMPRESSION_COMMAND) > $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2381 | |
| 2382 | endif # BUILDING_RAMDISK_IMAGE |
| 2383 | |
| 2384 | # ----------------------------------------------------------------- |
| 2385 | # the boot-debug.img, which is the kernel plus ramdisk-debug.img |
| 2386 | # |
| 2387 | # Note: it's intentional to skip signing for boot-debug.img, because it |
| 2388 | # can only be used if the device is unlocked with verification error. |
Daniel Norman | af67081 | 2020-10-12 11:31:35 -0700 | [diff] [blame] | 2389 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2390 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2391 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 2392 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-debug,$(BOARD_KERNEL_BINARIES)), \ |
| 2393 | $(PRODUCT_OUT)/$(k).img) |
| 2394 | else |
| 2395 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-debug.img |
| 2396 | endif |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2397 | |
| 2398 | # Replace ramdisk.img in $(MKBOOTIMG) ARGS with ramdisk-debug.img to build boot-debug.img |
| 2399 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2400 | INTERNAL_DEBUG_BOOTIMAGE_ARGS := $(subst $(recovery_ramdisk),$(INSTALLED_DEBUG_RAMDISK_TARGET), $(INTERNAL_RECOVERYIMAGE_ARGS)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2401 | else |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2402 | INTERNAL_DEBUG_BOOTIMAGE_ARGS := $(subst $(INSTALLED_RAMDISK_TARGET),$(INSTALLED_DEBUG_RAMDISK_TARGET), $(INTERNAL_BOOTIMAGE_ARGS)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2403 | endif |
| 2404 | |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2405 | # If boot.img is chained but boot-debug.img is not signed, libavb in bootloader |
| 2406 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2407 | # Using a test key to sign boot-debug.img to continue booting with the mismatched |
| 2408 | # public key, if the device is unlocked. |
| 2409 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2410 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2411 | endif |
| 2412 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2413 | BOARD_AVB_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2414 | INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2415 | # $(1): the bootimage to sign |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2416 | # $(2): boot image variant (boot, boot-debug, boot-test-harness) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2417 | define test-key-sign-bootimage |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2418 | $(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] | 2419 | $(AVBTOOL) add_hash_footer \ |
| 2420 | --image $(1) \ |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2421 | --partition_size $(call get-bootimage-partition-size,$(1),$(2))\ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2422 | --partition_name boot $(INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS) \ |
| 2423 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2424 | $(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] | 2425 | endef |
| 2426 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2427 | # $(1): output file |
| 2428 | define build-debug-bootimage-target |
| 2429 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-debug,kernel,$(notdir $(1)))) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2430 | $(INTERNAL_DEBUG_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
| 2431 | $(INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $1 |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2432 | $(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] | 2433 | endef |
| 2434 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2435 | # Depends on original boot.img and ramdisk-debug.img, to build the new boot-debug.img |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2436 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_DEBUG_RAMDISK_TARGET) $(BOARD_GKI_SIGNING_KEY_PATH) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2437 | $(call pretty,"Target boot debug image: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2438 | $(call build-debug-bootimage-target, $@) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2439 | |
| 2440 | .PHONY: bootimage_debug-nodeps |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2441 | bootimage_debug-nodeps: $(MKBOOTIMG) $(BOARD_GKI_SIGNING_KEY_PATH) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2442 | echo "make $@: ignoring dependencies" |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2443 | $(foreach b,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(call build-debug-bootimage-target,$b)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2444 | |
| 2445 | endif # TARGET_NO_KERNEL |
Daniel Norman | af67081 | 2020-10-12 11:31:35 -0700 | [diff] [blame] | 2446 | endif # INSTALLED_BOOTIMAGE_TARGET |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2447 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2448 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 2449 | ifeq ($(BUILDING_RAMDISK_IMAGE),true) |
| 2450 | # ----------------------------------------------------------------- |
| 2451 | # vendor debug ramdisk |
| 2452 | # Combines vendor ramdisk files and debug ramdisk files to build the vendor debug ramdisk. |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2453 | # |
| 2454 | INTERNAL_VENDOR_DEBUG_RAMDISK_FILES := $(filter $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/%, \ |
| 2455 | $(ALL_GENERATED_SOURCES) \ |
| 2456 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2457 | |
| 2458 | INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk-debug.txt |
| 2459 | INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK:.txt=.json) |
| 2460 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK) |
| 2461 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2462 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 2463 | @echo Installed file list: $@ |
| 2464 | mkdir -p $(dir $@) |
| 2465 | rm -f $@ |
| 2466 | mkdir -p $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) # The dir might not be created if no modules are installed here. |
| 2467 | $(FILESLIST) $(TARGET_VENDOR_RAMDISK_OUT) $(TARGET_DEBUG_RAMDISK_OUT) $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) > $(@:.txt=.json) |
| 2468 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2469 | |
Petri Gynther | 6a6d621 | 2021-03-06 00:45:53 -0800 | [diff] [blame] | 2470 | INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-debug)/vendor_ramdisk-debug.cpio$(RAMDISK_EXT) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2471 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 2472 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 2473 | # recovery ramdisk in vendor_boot. |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2474 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 2475 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 2476 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
Bowgo Tsai | 7ac9603 | 2021-01-20 16:29:49 +0800 | [diff] [blame] | 2477 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2478 | endif |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 2479 | endif |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2480 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2481 | # The vendor debug ramdisk combines vendor ramdisk and debug ramdisk. |
Bowgo Tsai | 7ac9603 | 2021-01-20 16:29:49 +0800 | [diff] [blame] | 2482 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2483 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK) |
Bowgo Tsai | 7ac9603 | 2021-01-20 16:29:49 +0800 | [diff] [blame] | 2484 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2485 | mkdir -p $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2486 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_VENDOR_RAMDISK_OUT) $(TARGET_DEBUG_RAMDISK_OUT) $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) $(PRIVATE_ADDITIONAL_DIR) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2487 | |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2488 | ifeq (true,$(BOARD_BUILD_VENDOR_RAMDISK_IMAGE)) |
| 2489 | INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-debug.img |
| 2490 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET) |
| 2491 | $(call pretty,"Target vendor debug ramdisk: $@") |
| 2492 | $(copy-file-to-target) |
| 2493 | endif |
| 2494 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2495 | # ----------------------------------------------------------------- |
| 2496 | # vendor_boot-debug.img. |
| 2497 | INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-debug.img |
| 2498 | |
| 2499 | # The util to sign vendor_boot-debug.img with a test key. |
| 2500 | BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2501 | INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2502 | # $(1): the vendor bootimage to sign |
| 2503 | define test-key-sign-vendor-bootimage |
| 2504 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE))) |
| 2505 | $(AVBTOOL) add_hash_footer \ |
| 2506 | --image $(1) \ |
| 2507 | --partition_size $(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE) \ |
| 2508 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS) \ |
| 2509 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 2510 | $(call assert-max-image-size,$(1),$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2511 | endef |
| 2512 | |
| 2513 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 2514 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2515 | endif |
| 2516 | |
| 2517 | # 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] | 2518 | $(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] | 2519 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2520 | $(call pretty,"Target vendor_boot debug image: $@") |
Bowgo Tsai | 7ac9603 | 2021-01-20 16:29:49 +0800 | [diff] [blame] | 2521 | $(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] | 2522 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2523 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 2524 | |
| 2525 | endif # BUILDING_RAMDISK_IMAGE |
| 2526 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 2527 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2528 | # ----------------------------------------------------------------- |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2529 | # The test harness ramdisk, which is based off debug_ramdisk, plus a |
| 2530 | # few additional test-harness-specific properties in adb_debug.prop. |
| 2531 | |
| 2532 | ifdef BUILDING_RAMDISK_IMAGE |
| 2533 | BUILT_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-test-harness.img |
| 2534 | INSTALLED_TEST_HARNESS_RAMDISK_TARGET := $(BUILT_TEST_HARNESS_RAMDISK_TARGET) |
| 2535 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2536 | # Appends a few test harness specific properties into the adb_debug.prop. |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2537 | TEST_HARNESS_PROP_TARGET := $(TARGET_TEST_HARNESS_RAMDISK_OUT)/adb_debug.prop |
| 2538 | ADDITIONAL_TEST_HARNESS_PROPERTIES := ro.audio.silent=1 |
| 2539 | ADDITIONAL_TEST_HARNESS_PROPERTIES += ro.test_harness=1 |
| 2540 | |
| 2541 | # $(1): a list of key=value pairs for additional property assignments |
| 2542 | # $(2): the target .prop file to append the properties from $(1) |
| 2543 | define append-test-harness-props |
| 2544 | echo "#" >> $(2); \ |
| 2545 | echo "# ADDITIONAL TEST HARNESS_PROPERTIES" >> $(2); \ |
| 2546 | echo "#" >> $(2); |
| 2547 | $(foreach line,$(1), echo "$(line)" >> $(2);) |
| 2548 | endef |
| 2549 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2550 | INTERNAL_TEST_HARNESS_RAMDISK_FILES := $(filter $(TARGET_TEST_HARNESS_RAMDISK_OUT)/%, \ |
| 2551 | $(ALL_GENERATED_SOURCES) \ |
| 2552 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2553 | |
| 2554 | # ramdisk-test-harness.img will merge the content from either ramdisk.img or |
| 2555 | # ramdisk-recovery.img, depending on whether BOARD_USES_RECOVERY_AS_BOOT is set |
| 2556 | # or not. |
| 2557 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2558 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 2559 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(recovery_ramdisk) |
| 2560 | else |
| 2561 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RAMDISK_OUT) |
| 2562 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(INSTALLED_RAMDISK_TARGET) |
| 2563 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2564 | |
| 2565 | # The test harness ramdisk will rsync the files from the debug ramdisk, then appends some props. |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2566 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(INSTALLED_DEBUG_RAMDISK_TARGET) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2567 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_TEST_HARNESS_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Petri Gynther | 4c063e3 | 2021-03-06 13:26:01 -0800 | [diff] [blame] | 2568 | $(call pretty,"Target test harness ramdisk: $@") |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2569 | rsync --chmod=u+w -a $(TARGET_DEBUG_RAMDISK_OUT)/ $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2570 | $(call append-test-harness-props,$(ADDITIONAL_TEST_HARNESS_PROPERTIES),$(TEST_HARNESS_PROP_TARGET)) |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2571 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_TEST_HARNESS_RAMDISK_OUT) $(PRIVATE_ADDITIONAL_DIR) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2572 | |
| 2573 | .PHONY: ramdisk_test_harness-nodeps |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2574 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2575 | ramdisk_test_harness-nodeps: PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 2576 | else |
| 2577 | ramdisk_test_harness-nodeps: PRIVATE_ADDITIONAL_DIR := $(TARGET_RAMDISK_OUT) |
| 2578 | endif # BOARD_USES_RECOVERY_AS_BOOT |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2579 | ramdisk_test_harness-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2580 | echo "make $@: ignoring dependencies" |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2581 | rsync --chmod=u+w -a $(TARGET_DEBUG_RAMDISK_OUT)/ $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2582 | $(call append-test-harness-props,$(ADDITIONAL_TEST_HARNESS_PROPERTIES),$(TEST_HARNESS_PROP_TARGET)) |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2583 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_TEST_HARNESS_RAMDISK_OUT) $(PRIVATE_ADDITIONAL_DIR) | $(COMPRESSION_COMMAND) > $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2584 | |
| 2585 | endif # BUILDING_RAMDISK_IMAGE |
| 2586 | |
| 2587 | # ----------------------------------------------------------------- |
| 2588 | # the boot-test-harness.img, which is the kernel plus ramdisk-test-harness.img |
| 2589 | # |
| 2590 | # Note: it's intentional to skip signing for boot-test-harness.img, because it |
| 2591 | # can only be used if the device is unlocked with verification error. |
Bowgo Tsai | 1ed0fd5 | 2021-04-06 16:09:19 +0800 | [diff] [blame] | 2592 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2593 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
| 2594 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2595 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 2596 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-test-harness,$(BOARD_KERNEL_BINARIES)), \ |
| 2597 | $(PRODUCT_OUT)/$(k).img) |
| 2598 | else |
| 2599 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-test-harness.img |
| 2600 | endif |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2601 | |
| 2602 | # Replace ramdisk-debug.img in $(MKBOOTIMG) ARGS with ramdisk-test-harness.img to build boot-test-harness.img |
| 2603 | INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS := $(subst $(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_DEBUG_BOOTIMAGE_ARGS)) |
| 2604 | |
| 2605 | # If boot.img is chained but boot-test-harness.img is not signed, libavb in bootloader |
| 2606 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2607 | # Using a test key to sign boot-test-harness.img to continue booting with the mismatched |
| 2608 | # public key, if the device is unlocked. |
| 2609 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
| 2610 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2611 | endif |
| 2612 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2613 | # $(1): output file |
| 2614 | define build-boot-test-harness-target |
| 2615 | $(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] | 2616 | $(INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
| 2617 | $(INTERNAL_MKBOOTIMG_GKI_SINGING_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@ |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2618 | $(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] | 2619 | endef |
| 2620 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2621 | # Build the new boot-test-harness.img, based on boot-debug.img and ramdisk-test-harness.img. |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2622 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) \ |
| 2623 | $(BOARD_GKI_SIGNING_KEY_PATH) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2624 | $(call pretty,"Target boot test harness image: $@") |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2625 | $(call build-boot-test-harness-target,$@) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2626 | |
| 2627 | .PHONY: bootimage_test_harness-nodeps |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2628 | bootimage_test_harness-nodeps: $(MKBOOTIMG) $(BOARD_GKI_SIGNING_KEY_PATH) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2629 | echo "make $@: ignoring dependencies" |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2630 | $(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] | 2631 | |
| 2632 | endif # TARGET_NO_KERNEL |
Bowgo Tsai | 1ed0fd5 | 2021-04-06 16:09:19 +0800 | [diff] [blame] | 2633 | endif # INSTALLED_BOOTIMAGE_TARGET |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2634 | endif # BOARD_BUILD_SYSTEM_ROOT_IMAGE is not true |
| 2635 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2636 | # Creates a compatibility symlink between two partitions, e.g. /system/vendor to /vendor |
| 2637 | # $1: from location (e.g $(TARGET_OUT)/vendor) |
| 2638 | # $2: destination location (e.g. /vendor) |
| 2639 | # $3: partition image name (e.g. vendor.img) |
| 2640 | define create-partition-compat-symlink |
| 2641 | $(eval \ |
| 2642 | $1: |
| 2643 | @echo Symlink $(patsubst $(PRODUCT_OUT)/%,%,$1) to $2 |
| 2644 | mkdir -p $(dir $1) |
| 2645 | if [ -d $1 ] && [ ! -h $1 ]; then \ |
| 2646 | echo 'Non-symlink $1 detected!' 1>&2; \ |
| 2647 | echo 'You cannot install files to $1 while building a separate $3!' 1>&2; \ |
| 2648 | exit 1; \ |
| 2649 | fi |
| 2650 | ln -sfn $2 $1 |
Jingwen Chen | 7d7f945 | 2020-09-22 13:47:13 +0000 | [diff] [blame] | 2651 | $1: .KATI_SYMLINK_OUTPUTS := $1 |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2652 | ) |
| 2653 | $1 |
| 2654 | endef |
| 2655 | |
| 2656 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2657 | # ----------------------------------------------------------------- |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 2658 | # system image |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2659 | |
Dan Willemsen | 37a1986 | 2018-10-31 16:31:46 -0700 | [diff] [blame] | 2660 | INTERNAL_SYSTEMIMAGE_FILES := $(sort $(filter $(TARGET_OUT)/%, \ |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 2661 | $(ALL_GENERATED_SOURCES) \ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2662 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 2663 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2664 | # Create symlink /system/vendor to /vendor if necessary. |
| 2665 | ifdef BOARD_USES_VENDORIMAGE |
| 2666 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/vendor,/vendor,vendor.img) |
| 2667 | endif |
| 2668 | |
| 2669 | # Create symlink /system/product to /product if necessary. |
| 2670 | ifdef BOARD_USES_PRODUCTIMAGE |
| 2671 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/product,/product,product.img) |
| 2672 | endif |
| 2673 | |
| 2674 | # Create symlink /system/system_ext to /system_ext if necessary. |
| 2675 | ifdef BOARD_USES_SYSTEM_EXTIMAGE |
| 2676 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/system_ext,/system_ext,system_ext.img) |
| 2677 | endif |
| 2678 | |
Ying Wang | 82cceba | 2012-08-13 15:03:00 -0700 | [diff] [blame] | 2679 | FULL_SYSTEMIMAGE_DEPS := $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2680 | |
| 2681 | # ASAN libraries in the system image - add dependency. |
| 2682 | ASAN_IN_SYSTEM_INSTALLED := $(TARGET_OUT)/asan.tar.bz2 |
Evgenii Stepanov | 8841a7f | 2018-07-27 11:54:32 -0700 | [diff] [blame] | 2683 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2684 | ifeq (true,$(SANITIZE_TARGET_SYSTEM)) |
| 2685 | FULL_SYSTEMIMAGE_DEPS += $(ASAN_IN_SYSTEM_INSTALLED) |
| 2686 | endif |
| 2687 | endif |
| 2688 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 2689 | FULL_SYSTEMIMAGE_DEPS += $(INTERNAL_ROOT_FILES) $(INSTALLED_FILES_FILE_ROOT) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 2690 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2691 | # ----------------------------------------------------------------- |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2692 | ifdef BUILDING_SYSTEM_IMAGE |
| 2693 | |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 2694 | # Install system linker configuration |
| 2695 | # Collect all available stub libraries installed in system and install with predefined linker configuration |
| 2696 | SYSTEM_LINKER_CONFIG := $(TARGET_OUT)/etc/linker.config.pb |
| 2697 | $(SYSTEM_LINKER_CONFIG) : $(INTERNAL_SYSTEMIMAGE_FILES) $(LINKER_CONFIG_PATH_system_linker_config) | conv_linker_config |
| 2698 | $(HOST_OUT_EXECUTABLES)/conv_linker_config systemprovide --source $(LINKER_CONFIG_PATH_system_linker_config)\ |
| 2699 | --output $@ --value "$(STUB_LIBRARIES)" --system "$(TARGET_OUT)" |
| 2700 | |
| 2701 | FULL_SYSTEMIMAGE_DEPS += $(SYSTEM_LINKER_CONFIG) |
| 2702 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2703 | # installed file list |
| 2704 | # Depending on anything that $(BUILT_SYSTEMIMAGE) depends on. |
| 2705 | # We put installed-files.txt ahead of image itself in the dependency graph |
| 2706 | # so that we can get the size stat even if the build fails due to too large |
| 2707 | # system image. |
| 2708 | INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 2709 | INSTALLED_FILES_JSON := $(INSTALLED_FILES_FILE:.txt=.json) |
| 2710 | $(INSTALLED_FILES_FILE): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2711 | $(INSTALLED_FILES_FILE): $(FULL_SYSTEMIMAGE_DEPS) $(FILESLIST) $(FILESLIST_UTIL) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2712 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 2713 | mkdir -p $(dir $@) |
| 2714 | rm -f $@ |
| 2715 | $(FILESLIST) $(TARGET_OUT) > $(@:.txt=.json) |
| 2716 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2717 | |
| 2718 | .PHONY: installed-file-list |
| 2719 | installed-file-list: $(INSTALLED_FILES_FILE) |
Ying Wang | 534fcd7 | 2013-03-01 16:45:35 -0800 | [diff] [blame] | 2720 | |
| 2721 | $(call dist-for-goals, sdk win_sdk sdk_addon, $(INSTALLED_FILES_FILE)) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2722 | |
| 2723 | systemimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2724 | $(call intermediates-dir-for,PACKAGING,systemimage) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2725 | BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img |
| 2726 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2727 | # $(1): output file |
| 2728 | define build-systemimage-target |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2729 | @echo "Target system fs image: $(1)" |
| 2730 | @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] | 2731 | $(call generate-image-prop-dictionary, $(systemimage_intermediates)/system_image_info.txt,system, \ |
Geremy Condra | 5b5f495 | 2014-05-05 22:19:37 -0700 | [diff] [blame] | 2732 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 2733 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2734 | $(BUILD_IMAGE) \ |
| 2735 | $(TARGET_OUT) $(systemimage_intermediates)/system_image_info.txt $(1) $(TARGET_OUT) \ |
| 2736 | || ( mkdir -p $${DIST_DIR}; \ |
| 2737 | cp $(INSTALLED_FILES_FILE) $${DIST_DIR}/installed-files-rescued.txt; \ |
| 2738 | exit 1 ) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2739 | endef |
| 2740 | |
Dan Willemsen | 6b72c73 | 2019-06-12 21:33:38 +0000 | [diff] [blame] | 2741 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 2742 | $(BUILT_SYSTEMIMAGE): $(BOARD_AVB_SYSTEM_KEY_PATH) |
| 2743 | endif |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2744 | $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2745 | $(call build-systemimage-target,$@) |
| 2746 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2747 | INSTALLED_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/system.img |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 2748 | SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2749 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2750 | # INSTALLED_SYSTEMIMAGE_TARGET used to be named INSTALLED_SYSTEMIMAGE. Create an alias for backward |
| 2751 | # compatibility, in case device-specific Makefiles still refer to the old name. |
| 2752 | INSTALLED_SYSTEMIMAGE := $(INSTALLED_SYSTEMIMAGE_TARGET) |
| 2753 | |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2754 | # The system partition needs room for the recovery image as well. We |
| 2755 | # now store the recovery image as a binary patch using the boot image |
| 2756 | # as the source (since they are very similar). Generate the patch so |
| 2757 | # we can see how big it's going to be, and include that in the system |
| 2758 | # image size check calculation. |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 2759 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
Sriram Raman | 1e96ac8 | 2009-07-24 13:52:32 -0700 | [diff] [blame] | 2760 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2761 | ifneq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2762 | 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] | 2763 | diff_tool := $(HOST_OUT_EXECUTABLES)/bsdiff |
| 2764 | else |
| 2765 | diff_tool := $(HOST_OUT_EXECUTABLES)/imgdiff |
| 2766 | endif |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2767 | intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch) |
| 2768 | RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2769 | $(RECOVERY_FROM_BOOT_PATCH): PRIVATE_DIFF_TOOL := $(diff_tool) |
| 2770 | $(RECOVERY_FROM_BOOT_PATCH): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2771 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 2772 | $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2773 | $(diff_tool) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2774 | @echo "Construct recovery from boot" |
| 2775 | mkdir -p $(dir $@) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 2776 | $(PRIVATE_DIFF_TOOL) $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) $(INSTALLED_RECOVERYIMAGE_TARGET) $@ |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2777 | else # $(BOARD_USES_FULL_RECOVERY_IMAGE) == true |
| 2778 | RECOVERY_FROM_BOOT_PATCH := $(INSTALLED_RECOVERYIMAGE_TARGET) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 2779 | endif # BOARD_USES_FULL_RECOVERY_IMAGE |
| 2780 | endif # INSTALLED_RECOVERYIMAGE_TARGET |
| 2781 | endif # INSTALLED_BOOTIMAGE_TARGET |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2782 | |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 2783 | $(INSTALLED_SYSTEMIMAGE_TARGET): $(BUILT_SYSTEMIMAGE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2784 | @echo "Install system fs image: $@" |
| 2785 | $(copy-file-to-target) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 2786 | $(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] | 2787 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2788 | systemimage: $(INSTALLED_SYSTEMIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2789 | |
| 2790 | .PHONY: systemimage-nodeps snod |
| 2791 | systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \ |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 2792 | | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2793 | @echo "make $@: ignoring dependencies" |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2794 | $(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE_TARGET)) |
Yifan Hong | 8c3dce0 | 2019-04-09 17:03:57 +0000 | [diff] [blame] | 2795 | $(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] | 2796 | ifeq (true,$(WITH_DEXPREOPT)) |
Dan Willemsen | 395358e | 2020-03-04 23:50:53 +0000 | [diff] [blame] | 2797 | $(warning Warning: with dexpreopt enabled, you may need a full rebuild.) |
Ying Wang | acf01ec | 2012-02-24 11:05:48 -0800 | [diff] [blame] | 2798 | endif |
| 2799 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2800 | endif # BUILDING_SYSTEM_IMAGE |
| 2801 | |
Anton Hansson | 30e061b | 2018-11-12 13:36:46 +0000 | [diff] [blame] | 2802 | .PHONY: sync syncsys |
| 2803 | sync syncsys: $(INTERNAL_SYSTEMIMAGE_FILES) |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 2804 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2805 | # ----------------------------------------------------------------- |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2806 | # Old PDK fusion targets |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 2807 | .PHONY: platform |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2808 | platform: |
| 2809 | echo "Warning: 'platform' is obsolete" |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 2810 | |
| 2811 | .PHONY: platform-java |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2812 | platform-java: |
| 2813 | echo "Warning: 'platform-java' is obsolete" |
Colin Cross | 53c8f97 | 2018-09-28 16:19:42 -0700 | [diff] [blame] | 2814 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2815 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2816 | # data partition image |
| 2817 | INTERNAL_USERDATAIMAGE_FILES := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2818 | $(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2819 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2820 | ifdef BUILDING_USERDATA_IMAGE |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2821 | userdataimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2822 | $(call intermediates-dir-for,PACKAGING,userdata) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 2823 | BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img |
| 2824 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2825 | define build-userdataimage-target |
| 2826 | $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)") |
| 2827 | @mkdir -p $(TARGET_OUT_DATA) |
| 2828 | @mkdir -p $(userdataimage_intermediates) && rm -rf $(userdataimage_intermediates)/userdata_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2829 | $(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] | 2830 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2831 | $(BUILD_IMAGE) \ |
| 2832 | $(TARGET_OUT_DATA) $(userdataimage_intermediates)/userdata_image_info.txt \ |
| 2833 | $(INSTALLED_USERDATAIMAGE_TARGET) $(TARGET_OUT) |
| 2834 | $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2835 | endef |
| 2836 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 2837 | # We just build this directly to the install location. |
| 2838 | INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2839 | INSTALLED_USERDATAIMAGE_TARGET_DEPS := \ |
| 2840 | $(INTERNAL_USERIMAGES_DEPS) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2841 | $(INTERNAL_USERDATAIMAGE_FILES) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2842 | $(INSTALLED_USERDATAIMAGE_TARGET): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2843 | $(build-userdataimage-target) |
| 2844 | |
| 2845 | .PHONY: userdataimage-nodeps |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 2846 | userdataimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2847 | $(build-userdataimage-target) |
| 2848 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2849 | endif # BUILDING_USERDATA_IMAGE |
Ying Wang | e215ed5 | 2012-10-15 14:36:22 -0700 | [diff] [blame] | 2850 | |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2851 | # ASAN libraries in the system image - build rule. |
| 2852 | ASAN_OUT_DIRS_FOR_SYSTEM_INSTALL := $(sort $(patsubst $(PRODUCT_OUT)/%,%,\ |
| 2853 | $(TARGET_OUT_SHARED_LIBRARIES) \ |
| 2854 | $(2ND_TARGET_OUT_SHARED_LIBRARIES) \ |
| 2855 | $(TARGET_OUT_VENDOR_SHARED_LIBRARIES) \ |
| 2856 | $(2ND_TARGET_OUT_VENDOR_SHARED_LIBRARIES))) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 2857 | # Extra options: Enforce the system user for the files to avoid having to change ownership. |
| 2858 | ASAN_SYSTEM_INSTALL_OPTIONS := --owner=1000 --group=1000 |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2859 | # Note: experimentally, it seems not worth it to try to get "best" compression. We don't save |
| 2860 | # enough space. |
| 2861 | $(ASAN_IN_SYSTEM_INSTALLED): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 2862 | 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] | 2863 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2864 | # ----------------------------------------------------------------- |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2865 | # partition table image |
| 2866 | ifdef BOARD_BPT_INPUT_FILES |
| 2867 | |
| 2868 | BUILT_BPTIMAGE_TARGET := $(PRODUCT_OUT)/partition-table.img |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 2869 | BUILT_BPTJSON_TARGET := $(PRODUCT_OUT)/partition-table.bpt |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2870 | |
| 2871 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS := \ |
| 2872 | --output_gpt $(BUILT_BPTIMAGE_TARGET) \ |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 2873 | --output_json $(BUILT_BPTJSON_TARGET) \ |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2874 | $(foreach file, $(BOARD_BPT_INPUT_FILES), --input $(file)) |
| 2875 | |
| 2876 | ifdef BOARD_BPT_DISK_SIZE |
| 2877 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS += --disk_size $(BOARD_BPT_DISK_SIZE) |
| 2878 | endif |
| 2879 | |
| 2880 | define build-bptimage-target |
| 2881 | $(call pretty,"Target partition table image: $(INSTALLED_BPTIMAGE_TARGET)") |
| 2882 | $(hide) $(BPTTOOL) make_table $(INTERNAL_BVBTOOL_MAKE_TABLE_ARGS) $(BOARD_BPT_MAKE_TABLE_ARGS) |
| 2883 | endef |
| 2884 | |
| 2885 | INSTALLED_BPTIMAGE_TARGET := $(BUILT_BPTIMAGE_TARGET) |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 2886 | $(BUILT_BPTJSON_TARGET): $(INSTALLED_BPTIMAGE_TARGET) |
| 2887 | $(hide) touch -c $(BUILT_BPTJSON_TARGET) |
| 2888 | |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2889 | $(INSTALLED_BPTIMAGE_TARGET): $(BPTTOOL) $(BOARD_BPT_INPUT_FILES) |
| 2890 | $(build-bptimage-target) |
| 2891 | |
| 2892 | .PHONY: bptimage-nodeps |
| 2893 | bptimage-nodeps: |
| 2894 | $(build-bptimage-target) |
| 2895 | |
| 2896 | endif # BOARD_BPT_INPUT_FILES |
| 2897 | |
| 2898 | # ----------------------------------------------------------------- |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2899 | # cache partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2900 | ifdef BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2901 | INTERNAL_CACHEIMAGE_FILES := \ |
| 2902 | $(filter $(TARGET_OUT_CACHE)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2903 | |
| 2904 | cacheimage_intermediates := \ |
| 2905 | $(call intermediates-dir-for,PACKAGING,cache) |
| 2906 | BUILT_CACHEIMAGE_TARGET := $(PRODUCT_OUT)/cache.img |
| 2907 | |
| 2908 | define build-cacheimage-target |
| 2909 | $(call pretty,"Target cache fs image: $(INSTALLED_CACHEIMAGE_TARGET)") |
| 2910 | @mkdir -p $(TARGET_OUT_CACHE) |
| 2911 | @mkdir -p $(cacheimage_intermediates) && rm -rf $(cacheimage_intermediates)/cache_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2912 | $(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] | 2913 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2914 | $(BUILD_IMAGE) \ |
| 2915 | $(TARGET_OUT_CACHE) $(cacheimage_intermediates)/cache_image_info.txt \ |
| 2916 | $(INSTALLED_CACHEIMAGE_TARGET) $(TARGET_OUT) |
| 2917 | $(call assert-max-image-size,$(INSTALLED_CACHEIMAGE_TARGET),$(BOARD_CACHEIMAGE_PARTITION_SIZE)) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2918 | endef |
| 2919 | |
| 2920 | # We just build this directly to the install location. |
| 2921 | INSTALLED_CACHEIMAGE_TARGET := $(BUILT_CACHEIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2922 | $(INSTALLED_CACHEIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2923 | $(build-cacheimage-target) |
| 2924 | |
| 2925 | .PHONY: cacheimage-nodeps |
| 2926 | cacheimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 2927 | $(build-cacheimage-target) |
| 2928 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2929 | else # BUILDING_CACHE_IMAGE |
Patrick Tjin | f3b0dc2 | 2016-05-13 15:26:09 -0700 | [diff] [blame] | 2930 | # we need to ignore the broken cache link when doing the rsync |
| 2931 | IGNORE_CACHE_LINK := --exclude=cache |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2932 | endif # BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2933 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 2934 | # ----------------------------------------------------------------- |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2935 | # system_other partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2936 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2937 | ifeq ($(BOARD_USES_SYSTEM_OTHER_ODEX),true) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2938 | # Marker file to identify that odex files are installed |
| 2939 | INSTALLED_SYSTEM_OTHER_ODEX_MARKER := $(TARGET_OUT_SYSTEM_OTHER)/system-other-odex-marker |
| 2940 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER) |
| 2941 | $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER): |
| 2942 | $(hide) touch $@ |
| 2943 | endif |
| 2944 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2945 | INTERNAL_SYSTEMOTHERIMAGE_FILES := \ |
| 2946 | $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2947 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2948 | |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 2949 | # system_other dex files are installed as a side-effect of installing system image files |
| 2950 | INTERNAL_SYSTEMOTHERIMAGE_FILES += $(INTERNAL_SYSTEMIMAGE_FILES) |
| 2951 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2952 | INSTALLED_FILES_FILE_SYSTEMOTHER := $(PRODUCT_OUT)/installed-files-system-other.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 2953 | INSTALLED_FILES_JSON_SYSTEMOTHER := $(INSTALLED_FILES_FILE_SYSTEMOTHER:.txt=.json) |
| 2954 | $(INSTALLED_FILES_FILE_SYSTEMOTHER): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEMOTHER) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2955 | $(INSTALLED_FILES_FILE_SYSTEMOTHER) : $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2956 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 2957 | mkdir -p $(dir $@) |
| 2958 | rm -f $@ |
| 2959 | $(FILESLIST) $(TARGET_OUT_SYSTEM_OTHER) > $(@:.txt=.json) |
| 2960 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2961 | |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 2962 | # Determines partition size for system_other.img. |
| 2963 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 2964 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)),) |
| 2965 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE := $(BOARD_SUPER_PARTITION_SYSTEM_DEVICE_SIZE) |
| 2966 | endif |
| 2967 | endif |
| 2968 | |
| 2969 | ifndef INTERNAL_SYSTEM_OTHER_PARTITION_SIZE |
| 2970 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE:= $(BOARD_SYSTEMIMAGE_PARTITION_SIZE) |
| 2971 | endif |
| 2972 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2973 | systemotherimage_intermediates := \ |
| 2974 | $(call intermediates-dir-for,PACKAGING,system_other) |
| 2975 | BUILT_SYSTEMOTHERIMAGE_TARGET := $(PRODUCT_OUT)/system_other.img |
| 2976 | |
| 2977 | # Note that we assert the size is SYSTEMIMAGE_PARTITION_SIZE since this is the 'b' system image. |
| 2978 | define build-systemotherimage-target |
| 2979 | $(call pretty,"Target system_other fs image: $(INSTALLED_SYSTEMOTHERIMAGE_TARGET)") |
| 2980 | @mkdir -p $(TARGET_OUT_SYSTEM_OTHER) |
| 2981 | @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] | 2982 | $(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] | 2983 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2984 | $(BUILD_IMAGE) \ |
| 2985 | $(TARGET_OUT_SYSTEM_OTHER) $(systemotherimage_intermediates)/system_other_image_info.txt \ |
| 2986 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) $(TARGET_OUT) |
| 2987 | $(call assert-max-image-size,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2988 | endef |
| 2989 | |
| 2990 | # We just build this directly to the install location. |
| 2991 | INSTALLED_SYSTEMOTHERIMAGE_TARGET := $(BUILT_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 2992 | ifneq (true,$(SANITIZE_LITE)) |
| 2993 | # 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] | 2994 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEMOTHER) |
| 2995 | $(build-systemotherimage-target) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 2996 | endif |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2997 | |
| 2998 | .PHONY: systemotherimage-nodeps |
| 2999 | systemotherimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 3000 | $(build-systemotherimage-target) |
| 3001 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3002 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3003 | |
| 3004 | |
| 3005 | # ----------------------------------------------------------------- |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3006 | # vendor partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3007 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3008 | INTERNAL_VENDORIMAGE_FILES := \ |
Ying Wang | cff3862 | 2014-07-16 17:46:35 -0700 | [diff] [blame] | 3009 | $(filter $(TARGET_OUT_VENDOR)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3010 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3011 | |
Ying Wang | 8da19e3 | 2015-09-15 14:22:12 -0700 | [diff] [blame] | 3012 | |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 3013 | # Create symlink /vendor/odm to /odm if necessary. |
| 3014 | ifdef BOARD_USES_ODMIMAGE |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3015 | 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] | 3016 | endif |
| 3017 | |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 3018 | # Create symlinks for vendor_dlkm on devices with a vendor_dlkm partition: |
| 3019 | # /vendor/lib/modules -> /vendor_dlkm/lib/modules |
| 3020 | # |
| 3021 | # On devices with a vendor_dlkm partition, |
| 3022 | # - /vendor/lib/modules is a symlink to a directory that stores vendor DLKMs. |
| 3023 | # - /vendor_dlkm/{etc,...} store other vendor_dlkm files directly. The vendor_dlkm partition is |
| 3024 | # mounted at /vendor_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3025 | # are hidden. |
| 3026 | # On devices without a vendor_dlkm partition, |
| 3027 | # - /vendor/lib/modules stores vendor DLKMs directly. |
| 3028 | # - /vendor_dlkm/{etc,...} are symlinks to directories that store other vendor_dlkm files. |
| 3029 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3030 | # The vendor DLKMs and other vendor_dlkm files must not be accessed using other paths because they |
| 3031 | # are not guaranteed to exist on all devices. |
| 3032 | ifdef BOARD_USES_VENDOR_DLKMIMAGE |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3033 | 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] | 3034 | endif |
| 3035 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3036 | INSTALLED_FILES_FILE_VENDOR := $(PRODUCT_OUT)/installed-files-vendor.txt |
| 3037 | INSTALLED_FILES_JSON_VENDOR := $(INSTALLED_FILES_FILE_VENDOR:.txt=.json) |
| 3038 | $(INSTALLED_FILES_FILE_VENDOR): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR) |
| 3039 | $(INSTALLED_FILES_FILE_VENDOR) : $(INTERNAL_VENDORIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3040 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3041 | mkdir -p $(dir $@) |
| 3042 | rm -f $@ |
| 3043 | $(FILESLIST) $(TARGET_OUT_VENDOR) > $(@:.txt=.json) |
| 3044 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | 3d5e2c2 | 2020-07-15 17:01:14 -0700 | [diff] [blame] | 3045 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3046 | vendorimage_intermediates := \ |
| 3047 | $(call intermediates-dir-for,PACKAGING,vendor) |
| 3048 | BUILT_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3049 | define build-vendorimage-target |
| 3050 | $(call pretty,"Target vendor fs image: $(INSTALLED_VENDORIMAGE_TARGET)") |
| 3051 | @mkdir -p $(TARGET_OUT_VENDOR) |
| 3052 | @mkdir -p $(vendorimage_intermediates) && rm -rf $(vendorimage_intermediates)/vendor_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3053 | $(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] | 3054 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3055 | $(BUILD_IMAGE) \ |
| 3056 | $(TARGET_OUT_VENDOR) $(vendorimage_intermediates)/vendor_image_info.txt \ |
| 3057 | $(INSTALLED_VENDORIMAGE_TARGET) $(TARGET_OUT) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3058 | $(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] | 3059 | endef |
| 3060 | |
| 3061 | # We just build this directly to the install location. |
| 3062 | INSTALLED_VENDORIMAGE_TARGET := $(BUILT_VENDORIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3063 | $(INSTALLED_VENDORIMAGE_TARGET): \ |
| 3064 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3065 | $(INTERNAL_VENDORIMAGE_FILES) \ |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3066 | $(INSTALLED_FILES_FILE_VENDOR) \ |
| 3067 | $(RECOVERY_FROM_BOOT_PATCH) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3068 | $(build-vendorimage-target) |
| 3069 | |
Steven Moreland | a2e734d | 2017-03-07 12:10:09 -0800 | [diff] [blame] | 3070 | .PHONY: vendorimage-nodeps vnod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3071 | vendorimage-nodeps vnod: | $(INTERNAL_USERIMAGES_DEPS) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3072 | $(build-vendorimage-target) |
| 3073 | |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 3074 | sync: $(INTERNAL_VENDORIMAGE_FILES) |
| 3075 | |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 3076 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 3077 | INSTALLED_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
| 3078 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDORIMAGE),$(INSTALLED_VENDORIMAGE_TARGET))) |
| 3079 | endif |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3080 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3081 | # ----------------------------------------------------------------- |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3082 | # product partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3083 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3084 | INTERNAL_PRODUCTIMAGE_FILES := \ |
| 3085 | $(filter $(TARGET_OUT_PRODUCT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3086 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3087 | |
| 3088 | INSTALLED_FILES_FILE_PRODUCT := $(PRODUCT_OUT)/installed-files-product.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3089 | INSTALLED_FILES_JSON_PRODUCT := $(INSTALLED_FILES_FILE_PRODUCT:.txt=.json) |
| 3090 | $(INSTALLED_FILES_FILE_PRODUCT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_PRODUCT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3091 | $(INSTALLED_FILES_FILE_PRODUCT) : $(INTERNAL_PRODUCTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3092 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3093 | mkdir -p $(dir $@) |
| 3094 | rm -f $@ |
| 3095 | $(FILESLIST) $(TARGET_OUT_PRODUCT) > $(@:.txt=.json) |
| 3096 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3097 | |
| 3098 | productimage_intermediates := \ |
| 3099 | $(call intermediates-dir-for,PACKAGING,product) |
| 3100 | BUILT_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3101 | define build-productimage-target |
| 3102 | $(call pretty,"Target product fs image: $(INSTALLED_PRODUCTIMAGE_TARGET)") |
| 3103 | @mkdir -p $(TARGET_OUT_PRODUCT) |
| 3104 | @mkdir -p $(productimage_intermediates) && rm -rf $(productimage_intermediates)/product_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3105 | $(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] | 3106 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3107 | $(BUILD_IMAGE) \ |
| 3108 | $(TARGET_OUT_PRODUCT) $(productimage_intermediates)/product_image_info.txt \ |
| 3109 | $(INSTALLED_PRODUCTIMAGE_TARGET) $(TARGET_OUT) |
| 3110 | $(call assert-max-image-size,$(INSTALLED_PRODUCTIMAGE_TARGET),$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3111 | endef |
| 3112 | |
| 3113 | # We just build this directly to the install location. |
| 3114 | INSTALLED_PRODUCTIMAGE_TARGET := $(BUILT_PRODUCTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3115 | $(INSTALLED_PRODUCTIMAGE_TARGET): \ |
| 3116 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3117 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 3118 | $(INSTALLED_FILES_FILE_PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3119 | $(build-productimage-target) |
| 3120 | |
| 3121 | .PHONY: productimage-nodeps pnod |
| 3122 | productimage-nodeps pnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3123 | $(build-productimage-target) |
| 3124 | |
| 3125 | sync: $(INTERNAL_PRODUCTIMAGE_FILES) |
| 3126 | |
| 3127 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 3128 | INSTALLED_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3129 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_PRODUCTIMAGE),$(INSTALLED_PRODUCTIMAGE_TARGET))) |
| 3130 | endif |
| 3131 | |
| 3132 | # ----------------------------------------------------------------- |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3133 | # system_ext partition image |
| 3134 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3135 | INTERNAL_SYSTEM_EXTIMAGE_FILES := \ |
| 3136 | $(filter $(TARGET_OUT_SYSTEM_EXT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3137 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3138 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3139 | INSTALLED_FILES_FILE_SYSTEM_EXT := $(PRODUCT_OUT)/installed-files-system_ext.txt |
| 3140 | INSTALLED_FILES_JSON_SYSTEM_EXT := $(INSTALLED_FILES_FILE_SYSTEM_EXT:.txt=.json) |
| 3141 | $(INSTALLED_FILES_FILE_SYSTEM_EXT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_EXT) |
| 3142 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) : $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3143 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3144 | mkdir -p $(dir $@) |
| 3145 | rm -f $@ |
| 3146 | $(FILESLIST) $(TARGET_OUT_SYSTEM_EXT) > $(@:.txt=.json) |
| 3147 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3148 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3149 | system_extimage_intermediates := \ |
| 3150 | $(call intermediates-dir-for,PACKAGING,system_ext) |
| 3151 | BUILT_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3152 | define build-system_extimage-target |
| 3153 | $(call pretty,"Target system_ext fs image: $(INSTALLED_SYSTEM_EXTIMAGE_TARGET)") |
| 3154 | @mkdir -p $(TARGET_OUT_SYSTEM_EXT) |
| 3155 | @mkdir -p $(system_extimage_intermediates) && rm -rf $(system_extimage_intermediates)/system_ext_image_info.txt |
| 3156 | $(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] | 3157 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3158 | $(BUILD_IMAGE) \ |
| 3159 | $(TARGET_OUT_SYSTEM_EXT) \ |
| 3160 | $(system_extimage_intermediates)/system_ext_image_info.txt \ |
| 3161 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 3162 | $(TARGET_OUT) |
| 3163 | $(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] | 3164 | endef |
| 3165 | |
| 3166 | # We just build this directly to the install location. |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3167 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(BUILT_SYSTEM_EXTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3168 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET): \ |
| 3169 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3170 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 3171 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3172 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3173 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3174 | .PHONY: systemextimage-nodeps senod |
| 3175 | systemextimage-nodeps senod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3176 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3177 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3178 | sync: $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3179 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3180 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 3181 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3182 | $(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] | 3183 | endif |
| 3184 | |
| 3185 | # ----------------------------------------------------------------- |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3186 | # odm partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3187 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3188 | INTERNAL_ODMIMAGE_FILES := \ |
| 3189 | $(filter $(TARGET_OUT_ODM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3190 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3191 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3192 | # Create symlinks for odm_dlkm on devices with a odm_dlkm partition: |
| 3193 | # /odm/lib/modules -> /odm_dlkm/lib/modules |
| 3194 | # |
| 3195 | # On devices with a odm_dlkm partition, |
| 3196 | # - /odm/lib/modules is a symlink to a directory that stores odm DLKMs. |
| 3197 | # - /odm_dlkm/{etc,...} store other odm_dlkm files directly. The odm_dlkm partition is |
| 3198 | # mounted at /odm_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3199 | # are hidden. |
| 3200 | # On devices without a odm_dlkm partition, |
| 3201 | # - /odm/lib/modules stores odm DLKMs directly. |
| 3202 | # - /odm_dlkm/{etc,...} are symlinks to directories that store other odm_dlkm files. |
| 3203 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3204 | # The odm DLKMs and other odm_dlkm files must not be accessed using other paths because they |
| 3205 | # are not guaranteed to exist on all devices. |
| 3206 | ifdef BOARD_USES_ODM_DLKMIMAGE |
| 3207 | INTERNAL_ODMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT_ODM)/lib/modules,/odm_dlkm/lib/modules,odm_dlkm.img) |
| 3208 | endif |
| 3209 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3210 | INSTALLED_FILES_FILE_ODM := $(PRODUCT_OUT)/installed-files-odm.txt |
| 3211 | INSTALLED_FILES_JSON_ODM := $(INSTALLED_FILES_FILE_ODM:.txt=.json) |
| 3212 | $(INSTALLED_FILES_FILE_ODM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3213 | $(INSTALLED_FILES_FILE_ODM) : $(INTERNAL_ODMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3214 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3215 | mkdir -p $(dir $@) |
| 3216 | rm -f $@ |
| 3217 | $(FILESLIST) $(TARGET_OUT_ODM) > $(@:.txt=.json) |
| 3218 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3219 | |
| 3220 | odmimage_intermediates := \ |
| 3221 | $(call intermediates-dir-for,PACKAGING,odm) |
| 3222 | BUILT_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3223 | define build-odmimage-target |
| 3224 | $(call pretty,"Target odm fs image: $(INSTALLED_ODMIMAGE_TARGET)") |
| 3225 | @mkdir -p $(TARGET_OUT_ODM) |
| 3226 | @mkdir -p $(odmimage_intermediates) && rm -rf $(odmimage_intermediates)/odm_image_info.txt |
| 3227 | $(call generate-userimage-prop-dictionary, $(odmimage_intermediates)/odm_image_info.txt, skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3228 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3229 | $(BUILD_IMAGE) \ |
| 3230 | $(TARGET_OUT_ODM) $(odmimage_intermediates)/odm_image_info.txt \ |
| 3231 | $(INSTALLED_ODMIMAGE_TARGET) $(TARGET_OUT) |
| 3232 | $(call assert-max-image-size,$(INSTALLED_ODMIMAGE_TARGET),$(BOARD_ODMIMAGE_PARTITION_SIZE)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3233 | endef |
| 3234 | |
| 3235 | # We just build this directly to the install location. |
| 3236 | INSTALLED_ODMIMAGE_TARGET := $(BUILT_ODMIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3237 | $(INSTALLED_ODMIMAGE_TARGET): \ |
| 3238 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3239 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 3240 | $(INSTALLED_FILES_FILE_ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3241 | $(build-odmimage-target) |
| 3242 | |
| 3243 | .PHONY: odmimage-nodeps onod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3244 | odmimage-nodeps onod: | $(INTERNAL_USERIMAGES_DEPS) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3245 | $(build-odmimage-target) |
| 3246 | |
| 3247 | sync: $(INTERNAL_ODMIMAGE_FILES) |
| 3248 | |
| 3249 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 3250 | INSTALLED_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3251 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODMIMAGE),$(INSTALLED_ODMIMAGE_TARGET))) |
| 3252 | endif |
| 3253 | |
| 3254 | # ----------------------------------------------------------------- |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3255 | # vendor_dlkm partition image |
| 3256 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 3257 | INTERNAL_VENDOR_DLKMIMAGE_FILES := \ |
| 3258 | $(filter $(TARGET_OUT_VENDOR_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3259 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3260 | |
| 3261 | INSTALLED_FILES_FILE_VENDOR_DLKM := $(PRODUCT_OUT)/installed-files-vendor_dlkm.txt |
| 3262 | INSTALLED_FILES_JSON_VENDOR_DLKM := $(INSTALLED_FILES_FILE_VENDOR_DLKM:.txt=.json) |
| 3263 | $(INSTALLED_FILES_FILE_VENDOR_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DLKM) |
| 3264 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) : $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3265 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3266 | mkdir -p $(dir $@) |
| 3267 | rm -f $@ |
| 3268 | $(FILESLIST) $(TARGET_OUT_VENDOR_DLKM) > $(@:.txt=.json) |
| 3269 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3270 | |
| 3271 | vendor_dlkmimage_intermediates := \ |
| 3272 | $(call intermediates-dir-for,PACKAGING,vendor_dlkm) |
| 3273 | BUILT_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 3274 | define build-vendor_dlkmimage-target |
| 3275 | $(call pretty,"Target vendor_dlkm fs image: $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)") |
| 3276 | @mkdir -p $(TARGET_OUT_VENDOR_DLKM) |
| 3277 | @mkdir -p $(vendor_dlkmimage_intermediates) && rm -rf $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt |
| 3278 | $(call generate-userimage-prop-dictionary, $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt, skip_fsck=true) |
| 3279 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3280 | $(BUILD_IMAGE) \ |
| 3281 | $(TARGET_OUT_VENDOR_DLKM) $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt \ |
| 3282 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3283 | $(call assert-max-image-size,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE)) |
| 3284 | endef |
| 3285 | |
| 3286 | # We just build this directly to the install location. |
| 3287 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(BUILT_VENDOR_DLKMIMAGE_TARGET) |
| 3288 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET): \ |
| 3289 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3290 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 3291 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) |
| 3292 | $(build-vendor_dlkmimage-target) |
| 3293 | |
| 3294 | .PHONY: vendor_dlkmimage-nodeps vdnod |
| 3295 | vendor_dlkmimage-nodeps vdnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3296 | $(build-vendor_dlkmimage-target) |
| 3297 | |
| 3298 | sync: $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
| 3299 | |
| 3300 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
| 3301 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 3302 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDOR_DLKMIMAGE),$(INSTALLED_VENDOR_DLKMIMAGE_TARGET))) |
| 3303 | endif |
| 3304 | |
| 3305 | # ----------------------------------------------------------------- |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3306 | # odm_dlkm partition image |
| 3307 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 3308 | INTERNAL_ODM_DLKMIMAGE_FILES := \ |
| 3309 | $(filter $(TARGET_OUT_ODM_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3310 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3311 | |
| 3312 | INSTALLED_FILES_FILE_ODM_DLKM := $(PRODUCT_OUT)/installed-files-odm_dlkm.txt |
| 3313 | INSTALLED_FILES_JSON_ODM_DLKM := $(INSTALLED_FILES_FILE_ODM_DLKM:.txt=.json) |
| 3314 | $(INSTALLED_FILES_FILE_ODM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM_DLKM) |
| 3315 | $(INSTALLED_FILES_FILE_ODM_DLKM) : $(INTERNAL_ODM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3316 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3317 | mkdir -p $(dir $@) |
| 3318 | rm -f $@ |
| 3319 | $(FILESLIST) $(TARGET_OUT_ODM_DLKM) > $(@:.txt=.json) |
| 3320 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3321 | |
| 3322 | odm_dlkmimage_intermediates := \ |
| 3323 | $(call intermediates-dir-for,PACKAGING,odm_dlkm) |
| 3324 | BUILT_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 3325 | define build-odm_dlkmimage-target |
| 3326 | $(call pretty,"Target odm_dlkm fs image: $(INSTALLED_ODM_DLKMIMAGE_TARGET)") |
| 3327 | @mkdir -p $(TARGET_OUT_ODM_DLKM) |
| 3328 | @mkdir -p $(odm_dlkmimage_intermediates) && rm -rf $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt |
| 3329 | $(call generate-userimage-prop-dictionary, $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt, skip_fsck=true) |
| 3330 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3331 | $(BUILD_IMAGE) \ |
| 3332 | $(TARGET_OUT_ODM_DLKM) $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt \ |
| 3333 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3334 | $(call assert-max-image-size,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE)) |
| 3335 | endef |
| 3336 | |
| 3337 | # We just build this directly to the install location. |
| 3338 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(BUILT_ODM_DLKMIMAGE_TARGET) |
| 3339 | $(INSTALLED_ODM_DLKMIMAGE_TARGET): \ |
| 3340 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3341 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
| 3342 | $(INSTALLED_FILES_FILE_ODM_DLKM) |
| 3343 | $(build-odm_dlkmimage-target) |
| 3344 | |
| 3345 | .PHONY: odm_dlkmimage-nodeps odnod |
| 3346 | odm_dlkmimage-nodeps odnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3347 | $(build-odm_dlkmimage-target) |
| 3348 | |
| 3349 | sync: $(INTERNAL_ODM_DLKMIMAGE_FILES) |
| 3350 | |
| 3351 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 3352 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 3353 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODM_DLKMIMAGE),$(INSTALLED_ODM_DLKMIMAGE_TARGET))) |
| 3354 | endif |
| 3355 | |
| 3356 | |
| 3357 | # ----------------------------------------------------------------- |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3358 | # dtbo image |
| 3359 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 3360 | INSTALLED_DTBOIMAGE_TARGET := $(PRODUCT_OUT)/dtbo.img |
| 3361 | |
| 3362 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3363 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) $(AVBTOOL) $(BOARD_AVB_DTBO_KEY_PATH) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3364 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 3365 | $(AVBTOOL) add_hash_footer \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3366 | --image $@ \ |
| 3367 | --partition_size $(BOARD_DTBOIMG_PARTITION_SIZE) \ |
| 3368 | --partition_name dtbo $(INTERNAL_AVB_DTBO_SIGNING_ARGS) \ |
| 3369 | $(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3370 | else |
| 3371 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) |
| 3372 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 3373 | endif |
| 3374 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3375 | endif # BOARD_PREBUILT_DTBOIMAGE |
| 3376 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3377 | # ----------------------------------------------------------------- |
| 3378 | # Protected VM firmware image |
| 3379 | ifdef BOARD_PREBUILT_PVMFWIMAGE |
| 3380 | INSTALLED_PVMFWIMAGE_TARGET := $(PRODUCT_OUT)/pvmfw.img |
| 3381 | |
| 3382 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3383 | $(INSTALLED_PVMFWIMAGE_TARGET): $(BOARD_PREBUILT_PVMFWIMAGE) $(AVBTOOL) $(BOARD_AVB_PVMFW_KEY_PATH) |
| 3384 | cp $(BOARD_PREBUILT_PVMFWIMAGE) $@ |
| 3385 | $(AVBTOOL) add_hash_footer \ |
| 3386 | --image $@ \ |
| 3387 | --partition_size $(BOARD_PVMFWIMG_PARTITION_SIZE) \ |
| 3388 | --partition_name pvmfw $(INTERNAL_AVB_PVMFW_SIGNING_ARGS) \ |
| 3389 | $(BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS) |
| 3390 | else |
| 3391 | $(INSTALLED_PVMFWIMAGE_TARGET): $(BOARD_PREBUILT_PVMFWIMAGE) |
| 3392 | cp $(BOARD_PREBUILT_PVMFWIMAGE) $@ |
| 3393 | endif |
| 3394 | |
| 3395 | endif # BOARD_PREBUILT_PVMFWIMAGE |
| 3396 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3397 | # Returns a list of image targets corresponding to the given list of partitions. For example, it |
| 3398 | # returns "$(INSTALLED_PRODUCTIMAGE_TARGET)" for "product", or "$(INSTALLED_SYSTEMIMAGE_TARGET) |
| 3399 | # $(INSTALLED_VENDORIMAGE_TARGET)" for "system vendor". |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3400 | # (1): list of partitions like "system", "vendor" or "system product system_ext". |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3401 | define images-for-partitions |
| 3402 | $(strip $(foreach item,$(1),$(INSTALLED_$(call to-upper,$(item))IMAGE_TARGET))) |
| 3403 | endef |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3404 | |
| 3405 | # ----------------------------------------------------------------- |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3406 | # custom images |
| 3407 | INSTALLED_CUSTOMIMAGES_TARGET := |
| 3408 | |
| 3409 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 3410 | INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS := |
| 3411 | |
| 3412 | # Sign custom image. |
| 3413 | # $(1): the prebuilt custom image. |
| 3414 | # $(2): the mount point of the prebuilt custom image. |
| 3415 | # $(3): the signed custom image target. |
| 3416 | define sign_custom_image |
| 3417 | $(3): $(1) $(INTERNAL_USERIMAGES_DEPS) |
| 3418 | @echo Target custom image: $(3) |
| 3419 | mkdir -p $(dir $(3)) |
| 3420 | cp $(1) $(3) |
| 3421 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3422 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$$$PATH \ |
| 3423 | $(AVBTOOL) add_hashtree_footer \ |
| 3424 | --image $(3) \ |
| 3425 | --key $(BOARD_AVB_$(call to-upper,$(2))_KEY_PATH) \ |
| 3426 | --algorithm $(BOARD_AVB_$(call to-upper,$(2))_ALGORITHM) \ |
| 3427 | --partition_size $(BOARD_AVB_$(call to-upper,$(2))_PARTITION_SIZE) \ |
| 3428 | --partition_name $(2) \ |
| 3429 | $(INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS) \ |
| 3430 | $(BOARD_AVB_$(call to-upper,$(2))_ADD_HASHTREE_FOOTER_ARGS) |
| 3431 | endif |
| 3432 | INSTALLED_CUSTOMIMAGES_TARGET += $(3) |
| 3433 | endef |
| 3434 | |
| 3435 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 3436 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST), \ |
| 3437 | $(eval $(call sign_custom_image,$(image),$(partition),$(PRODUCT_OUT)/$(notdir $(image)))))) |
| 3438 | endif |
| 3439 | |
| 3440 | # ----------------------------------------------------------------- |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3441 | # vbmeta image |
| 3442 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3443 | |
| 3444 | BUILT_VBMETAIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta.img |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3445 | AVB_CHAIN_KEY_DIR := $(TARGET_OUT_INTERMEDIATES)/avb_chain_keys |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3446 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3447 | ifdef BOARD_AVB_KEY_PATH |
| 3448 | $(if $(BOARD_AVB_ALGORITHM),,$(error BOARD_AVB_ALGORITHM is not defined)) |
| 3449 | else |
| 3450 | # If key path isn't specified, use the 4096-bit test key. |
| 3451 | BOARD_AVB_ALGORITHM := SHA256_RSA4096 |
| 3452 | BOARD_AVB_KEY_PATH := external/avb/test/data/testkey_rsa4096.pem |
| 3453 | endif |
| 3454 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 3455 | # AVB signing for system_other.img. |
| 3456 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 3457 | ifdef BOARD_AVB_SYSTEM_OTHER_KEY_PATH |
| 3458 | $(if $(BOARD_AVB_SYSTEM_OTHER_ALGORITHM),,$(error BOARD_AVB_SYSTEM_OTHER_ALGORITHM is not defined)) |
| 3459 | else |
| 3460 | # If key path isn't specified, use the same key as BOARD_AVB_KEY_PATH. |
| 3461 | BOARD_AVB_SYSTEM_OTHER_KEY_PATH := $(BOARD_AVB_KEY_PATH) |
| 3462 | BOARD_AVB_SYSTEM_OTHER_ALGORITHM := $(BOARD_AVB_ALGORITHM) |
| 3463 | endif |
| 3464 | |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 3465 | $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET): $(AVBTOOL) $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) |
| 3466 | @echo Extracting system_other avb key: $@ |
| 3467 | @rm -f $@ |
| 3468 | @mkdir -p $(dir $@) |
| 3469 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) --output $@ |
Bowgo Tsai | 45db7ce | 2019-01-30 14:53:57 +0800 | [diff] [blame] | 3470 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 3471 | ifndef BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX |
| 3472 | BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX := $(PLATFORM_SECURITY_PATCH_TIMESTAMP) |
| 3473 | endif |
| 3474 | |
| 3475 | BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS += --rollback_index $(BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX) |
| 3476 | endif # end of AVB for BUILDING_SYSTEM_OTHER_IMAGE |
| 3477 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3478 | INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES := \ |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3479 | $(BOARD_AVB_VBMETA_SYSTEM) \ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3480 | $(BOARD_AVB_VBMETA_VENDOR) |
| 3481 | |
| 3482 | # Not allowing the same partition to appear in multiple groups. |
| 3483 | 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] | 3484 | $(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] | 3485 | endif |
| 3486 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3487 | # When building a standalone recovery image for non-A/B devices, recovery image must be self-signed |
| 3488 | # to be verified independently, and cannot be chained into vbmeta.img. See the link below for |
| 3489 | # details. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 3490 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3491 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 3492 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),,\ |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 3493 | $(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] | 3494 | See https://android.googlesource.com/platform/external/avb/+/master/README.md#booting-into-recovery)) |
| 3495 | endif |
| 3496 | endif |
| 3497 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3498 | # Appends os version and security patch level as a AVB property descriptor |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3499 | |
| 3500 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3501 | --prop com.android.build.system.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3502 | --prop com.android.build.system.os_version:$(PLATFORM_VERSION_LAST_STABLE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3503 | --prop com.android.build.system.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 3504 | |
| 3505 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3506 | --prop com.android.build.product.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3507 | --prop com.android.build.product.os_version:$(PLATFORM_VERSION_LAST_STABLE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3508 | --prop com.android.build.product.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 3509 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3510 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3511 | --prop com.android.build.system_ext.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3512 | --prop com.android.build.system_ext.os_version:$(PLATFORM_VERSION_LAST_STABLE) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3513 | --prop com.android.build.system_ext.security_patch:$(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3514 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3515 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3516 | --prop com.android.build.boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3517 | --prop com.android.build.boot.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3518 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3519 | BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 3520 | --prop com.android.build.vendor_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 3521 | |
| 3522 | BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS += \ |
| 3523 | --prop com.android.build.recovery.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 3524 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3525 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3526 | --prop com.android.build.vendor.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3527 | --prop com.android.build.vendor.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3528 | |
| 3529 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3530 | --prop com.android.build.odm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3531 | --prop com.android.build.odm.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3532 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3533 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3534 | --prop com.android.build.vendor_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 3535 | --prop com.android.build.vendor_dlkm.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
| 3536 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3537 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3538 | --prop com.android.build.odm_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 3539 | --prop com.android.build.odm_dlkm.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
| 3540 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3541 | BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS += \ |
| 3542 | --prop com.android.build.dtbo.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 3543 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3544 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 3545 | --prop com.android.build.pvmfw.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 3546 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3547 | # The following vendor- and odm-specific images needs explicit SPL set per board. |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3548 | ifdef BOOT_SECURITY_PATCH |
| 3549 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 3550 | --prop com.android.build.boot.security_patch:$(BOOT_SECURITY_PATCH) |
| 3551 | endif |
| 3552 | |
| 3553 | ifdef VENDOR_SECURITY_PATCH |
| 3554 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3555 | --prop com.android.build.vendor.security_patch:$(VENDOR_SECURITY_PATCH) |
| 3556 | endif |
| 3557 | |
| 3558 | ifdef ODM_SECURITY_PATCH |
| 3559 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3560 | --prop com.android.build.odm.security_patch:$(ODM_SECURITY_PATCH) |
| 3561 | endif |
| 3562 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3563 | ifdef VENDOR_DLKM_SECURITY_PATCH |
| 3564 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3565 | --prop com.android.build.vendor_dlkm.security_patch:$(VENDOR_DLKM_SECURITY_PATCH) |
| 3566 | endif |
| 3567 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3568 | ifdef ODM_DLKM_SECURITY_PATCH |
| 3569 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3570 | --prop com.android.build.odm_dlkm.security_patch:$(ODM_DLKM_SECURITY_PATCH) |
| 3571 | endif |
| 3572 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3573 | ifdef PVMFW_SECURITY_PATCH |
| 3574 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 3575 | --prop com.android.build.pvmfw.security_patch:$(PVMFW_SECURITY_PATCH) |
| 3576 | endif |
| 3577 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3578 | BOOT_FOOTER_ARGS := BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3579 | VENDOR_BOOT_FOOTER_ARGS := BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3580 | DTBO_FOOTER_ARGS := BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3581 | PVMFW_FOOTER_ARGS := BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3582 | SYSTEM_FOOTER_ARGS := BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS |
| 3583 | VENDOR_FOOTER_ARGS := BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3584 | RECOVERY_FOOTER_ARGS := BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3585 | PRODUCT_FOOTER_ARGS := BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3586 | SYSTEM_EXT_FOOTER_ARGS := BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3587 | ODM_FOOTER_ARGS := BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3588 | VENDOR_DLKM_FOOTER_ARGS := BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3589 | ODM_DLKM_FOOTER_ARGS := BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3590 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3591 | # 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] | 3592 | # $(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] | 3593 | define _check-and-set-avb-chain-args |
| 3594 | $(eval part := $(1)) |
| 3595 | $(eval PART=$(call to-upper,$(part))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3596 | |
| 3597 | $(eval _key_path := BOARD_AVB_$(PART)_KEY_PATH) |
| 3598 | $(eval _signing_algorithm := BOARD_AVB_$(PART)_ALGORITHM) |
| 3599 | $(eval _rollback_index := BOARD_AVB_$(PART)_ROLLBACK_INDEX) |
| 3600 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 3601 | $(if $($(_key_path)),,$(error $(_key_path) is not defined)) |
| 3602 | $(if $($(_signing_algorithm)),,$(error $(_signing_algorithm) is not defined)) |
| 3603 | $(if $($(_rollback_index)),,$(error $(_rollback_index) is not defined)) |
| 3604 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 3605 | |
| 3606 | # Set INTERNAL_AVB_(PART)_SIGNING_ARGS |
| 3607 | $(eval _signing_args := INTERNAL_AVB_$(PART)_SIGNING_ARGS) |
| 3608 | $(eval $(_signing_args) := \ |
| 3609 | --algorithm $($(_signing_algorithm)) --key $($(_key_path))) |
| 3610 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3611 | # The recovery partition in non-A/B devices should be verified separately. Skip adding the chain |
| 3612 | # partition descriptor for recovery partition into vbmeta.img. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 3613 | $(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] | 3614 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3615 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3616 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3617 | # 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] | 3618 | # 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] | 3619 | $(if $(filter $(part),$(part:vbmeta_%=%)),\ |
| 3620 | $(eval _footer_args := $(PART)_FOOTER_ARGS) \ |
| 3621 | $(eval $($(_footer_args)) += --rollback_index $($(_rollback_index)))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3622 | endef |
| 3623 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3624 | # Checks and sets the required build variables for an AVB partition. The partition will be |
| 3625 | # 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] | 3626 | # image descriptor will be included into vbmeta.img, unless it has been already added to any chained |
| 3627 | # VBMeta image. |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 3628 | # Multiple boot images can be generated based on BOARD_KERNEL_BINARIES |
| 3629 | # but vbmeta would capture the image descriptor of only the first boot |
| 3630 | # image specified in BUILT_BOOTIMAGE_TARGET. |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3631 | # $(1): Partition name, e.g. boot or system. |
| 3632 | define check-and-set-avb-args |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3633 | $(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] | 3634 | $(if $(BOARD_AVB_$(call to-upper,$(1))_KEY_PATH),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3635 | $(if $(_in_chained_vbmeta),\ |
| 3636 | $(error Chaining partition "$(1)" in chained VBMeta image is not supported)) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3637 | $(call _check-and-set-avb-chain-args,$(1)),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3638 | $(if $(_in_chained_vbmeta),,\ |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 3639 | $(if $(filter boot,$(1)),\ |
| 3640 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3641 | --include_descriptors_from_image $(firstword $(call images-for-partitions,$(1)))),\ |
| 3642 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3643 | --include_descriptors_from_image $(call images-for-partitions,$(1)))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3644 | endef |
| 3645 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3646 | # Checks and sets build variables for a custom chained partition to include it into vbmeta.img. |
| 3647 | # $(1): the custom partition to enable AVB chain. |
| 3648 | define check-and-set-custom-avb-chain-args |
| 3649 | $(eval part := $(1)) |
| 3650 | $(eval PART=$(call to-upper,$(part))) |
| 3651 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 3652 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 3653 | |
| 3654 | INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3655 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey |
| 3656 | endef |
| 3657 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3658 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3659 | $(eval $(call check-and-set-avb-args,boot)) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3660 | endif |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3661 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3662 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 3663 | $(eval $(call check-and-set-avb-args,vendor_boot)) |
| 3664 | endif |
| 3665 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3666 | $(eval $(call check-and-set-avb-args,system)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3667 | |
| 3668 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3669 | $(eval $(call check-and-set-avb-args,vendor)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3670 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3671 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3672 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3673 | $(eval $(call check-and-set-avb-args,product)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3674 | endif |
| 3675 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3676 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 3677 | $(eval $(call check-and-set-avb-args,system_ext)) |
Tao Bao | cee6d04 | 2018-08-22 23:39:03 -0700 | [diff] [blame] | 3678 | endif |
| 3679 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3680 | ifdef INSTALLED_ODMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3681 | $(eval $(call check-and-set-avb-args,odm)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3682 | endif |
| 3683 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3684 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 3685 | $(eval $(call check-and-set-avb-args,vendor_dlkm)) |
| 3686 | endif |
| 3687 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3688 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 3689 | $(eval $(call check-and-set-avb-args,odm_dlkm)) |
| 3690 | endif |
| 3691 | |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3692 | ifdef INSTALLED_DTBOIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3693 | $(eval $(call check-and-set-avb-args,dtbo)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3694 | endif |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3695 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3696 | ifdef INSTALLED_PVMFWIMAGE_TARGET |
| 3697 | $(eval $(call check-and-set-avb-args,pvmfw)) |
| 3698 | endif |
| 3699 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3700 | ifdef INSTALLED_RECOVERYIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3701 | $(eval $(call check-and-set-avb-args,recovery)) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3702 | endif |
Bowgo Tsai | 53cf999 | 2017-06-13 11:27:06 +0800 | [diff] [blame] | 3703 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3704 | # Not using INSTALLED_VBMETA_SYSTEMIMAGE_TARGET as it won't be set yet. |
| 3705 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 3706 | $(eval $(call check-and-set-avb-args,vbmeta_system)) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3707 | endif |
| 3708 | |
| 3709 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 3710 | $(eval $(call check-and-set-avb-args,vbmeta_vendor)) |
| 3711 | endif |
| 3712 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3713 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 3714 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 3715 | $(eval $(call check-and-set-custom-avb-chain-args,$(partition)))) |
| 3716 | endif |
| 3717 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3718 | # Add kernel cmdline descriptor for kernel to mount system.img as root with |
| 3719 | # dm-verity. This works when system.img is either chained or not-chained: |
| 3720 | # - chained: The --setup_as_rootfs_from_kernel option will add dm-verity kernel |
| 3721 | # cmdline descriptor to system.img |
| 3722 | # - not-chained: The --include_descriptors_from_image option for make_vbmeta_image |
| 3723 | # will include the kernel cmdline descriptor from system.img into vbmeta.img |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3724 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
David Anderson | 8916a2a | 2018-09-18 15:46:59 -0700 | [diff] [blame] | 3725 | ifeq ($(filter system, $(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3726 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += --setup_as_rootfs_from_kernel |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3727 | endif |
David Anderson | 8916a2a | 2018-09-18 15:46:59 -0700 | [diff] [blame] | 3728 | endif |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3729 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3730 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --padding_size 4096 |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3731 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += --padding_size 4096 |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3732 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += --padding_size 4096 |
| 3733 | |
| 3734 | ifeq (eng,$(filter eng, $(TARGET_BUILD_VARIANT))) |
Tao Bao | 240dcb8 | 2018-10-22 13:02:53 -0700 | [diff] [blame] | 3735 | # We only need the flag in top-level vbmeta.img. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3736 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --set_hashtree_disabled_flag |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3737 | endif |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3738 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3739 | ifdef BOARD_AVB_ROLLBACK_INDEX |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3740 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --rollback_index $(BOARD_AVB_ROLLBACK_INDEX) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3741 | endif |
| 3742 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3743 | ifdef BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX |
| 3744 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += \ |
| 3745 | --rollback_index $(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3746 | endif |
| 3747 | |
| 3748 | ifdef BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX |
| 3749 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += \ |
| 3750 | --rollback_index $(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX) |
John Reck | 0588b43 | 2018-05-03 13:20:01 -0700 | [diff] [blame] | 3751 | endif |
| 3752 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3753 | # $(1): the directory to extract public keys to |
| 3754 | define extract-avb-chain-public-keys |
| 3755 | $(if $(BOARD_AVB_BOOT_KEY_PATH),\ |
| 3756 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_BOOT_KEY_PATH) \ |
| 3757 | --output $(1)/boot.avbpubkey) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3758 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),\ |
| 3759 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_BOOT_KEY_PATH) \ |
| 3760 | --output $(1)/vendor_boot.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3761 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 3762 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_KEY_PATH) \ |
| 3763 | --output $(1)/system.avbpubkey) |
| 3764 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 3765 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KEY_PATH) \ |
| 3766 | --output $(1)/vendor.avbpubkey) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3767 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 3768 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PRODUCT_KEY_PATH) \ |
| 3769 | --output $(1)/product.avbpubkey) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3770 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 3771 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_EXT_KEY_PATH) \ |
| 3772 | --output $(1)/system_ext.avbpubkey) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3773 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 3774 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_KEY_PATH) \ |
| 3775 | --output $(1)/odm.avbpubkey) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3776 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 3777 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_DLKM_KEY_PATH) \ |
| 3778 | --output $(1)/vendor_dlkm.avbpubkey) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3779 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 3780 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_DLKM_KEY_PATH) \ |
| 3781 | --output $(1)/odm_dlkm.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3782 | $(if $(BOARD_AVB_DTBO_KEY_PATH),\ |
| 3783 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_DTBO_KEY_PATH) \ |
| 3784 | --output $(1)/dtbo.avbpubkey) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3785 | $(if $(BOARD_AVB_PVMFW_KEY_PATH),\ |
| 3786 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PVMFW_KEY_PATH) \ |
| 3787 | --output $(1)/pvmfw.avbpubkey) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3788 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),\ |
| 3789 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_RECOVERY_KEY_PATH) \ |
| 3790 | --output $(1)/recovery.avbpubkey) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3791 | $(if $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH),\ |
| 3792 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 3793 | --output $(1)/vbmeta_system.avbpubkey) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3794 | $(if $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH),\ |
| 3795 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 3796 | --output $(1)/vbmeta_vendor.avbpubkey) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3797 | $(if $(BOARD_CUSTOMIMAGES_PARTITION_LIST),\ |
| 3798 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 3799 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH) \ |
| 3800 | --output $(1)/$(partition).avbpubkey;)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3801 | endef |
| 3802 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3803 | # Builds a chained VBMeta image. This VBMeta image will contain the descriptors for the partitions |
| 3804 | # 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] | 3805 | # 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] | 3806 | # := system system_ext`, `vbmeta_system.img` will be created that includes the descriptors for |
| 3807 | # `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] | 3808 | # `vbmeta.img` as a chained partition. |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3809 | # $(1): VBMeta image name, such as "vbmeta_system", "vbmeta_vendor" etc. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3810 | # $(2): Output filename. |
| 3811 | define build-chained-vbmeta-image |
| 3812 | $(call pretty,"Target chained vbmeta image: $@") |
| 3813 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 3814 | $(INTERNAL_AVB_$(call to-upper,$(1))_SIGNING_ARGS) \ |
| 3815 | $(BOARD_AVB_MAKE_$(call to-upper,$(1))_IMAGE_ARGS) \ |
| 3816 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(1))), \ |
| 3817 | --include_descriptors_from_image $(call images-for-partitions,$(image))) \ |
| 3818 | --output $@ |
| 3819 | endef |
| 3820 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 3821 | ifdef BUILDING_SYSTEM_IMAGE |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3822 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 3823 | INSTALLED_VBMETA_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_system.img |
| 3824 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3825 | $(AVBTOOL) \ |
| 3826 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_SYSTEM)) \ |
| 3827 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3828 | $(call build-chained-vbmeta-image,vbmeta_system) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3829 | endif |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 3830 | endif # BUILDING_SYSTEM_IMAGE |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3831 | |
| 3832 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 3833 | INSTALLED_VBMETA_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_vendor.img |
| 3834 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3835 | $(AVBTOOL) \ |
| 3836 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_VENDOR)) \ |
| 3837 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3838 | $(call build-chained-vbmeta-image,vbmeta_vendor) |
| 3839 | endif |
| 3840 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3841 | define build-vbmetaimage-target |
| 3842 | $(call pretty,"Target vbmeta image: $(INSTALLED_VBMETAIMAGE_TARGET)") |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3843 | $(hide) mkdir -p $(AVB_CHAIN_KEY_DIR) |
| 3844 | $(call extract-avb-chain-public-keys, $(AVB_CHAIN_KEY_DIR)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3845 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 3846 | $(INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3847 | $(PRIVATE_AVB_VBMETA_SIGNING_ARGS) \ |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3848 | $(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
| 3849 | --output $@ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3850 | $(hide) rm -rf $(AVB_CHAIN_KEY_DIR) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3851 | endef |
| 3852 | |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 3853 | ifdef BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3854 | INSTALLED_VBMETAIMAGE_TARGET := $(BUILT_VBMETAIMAGE_TARGET) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3855 | $(INSTALLED_VBMETAIMAGE_TARGET): PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 3856 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
| 3857 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3858 | $(INSTALLED_VBMETAIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3859 | $(AVBTOOL) \ |
| 3860 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3861 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3862 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 3863 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 3864 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3865 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3866 | $(INSTALLED_ODMIMAGE_TARGET) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3867 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3868 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3869 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 3870 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3871 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3872 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 3873 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) \ |
| 3874 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) \ |
| 3875 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 3876 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 3877 | $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3878 | $(build-vbmetaimage-target) |
| 3879 | |
| 3880 | .PHONY: vbmetaimage-nodeps |
Bowgo Tsai | 6a4eaa5 | 2019-12-09 15:48:09 +0800 | [diff] [blame] | 3881 | vbmetaimage-nodeps: PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 3882 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3883 | vbmetaimage-nodeps: |
| 3884 | $(build-vbmetaimage-target) |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 3885 | endif # BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3886 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3887 | endif # BOARD_AVB_ENABLE |
| 3888 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 3889 | # List of files from all images |
| 3890 | INTERNAL_ALLIMAGES_FILES := \ |
| 3891 | $(FULL_SYSTEMIMAGE_DEPS) \ |
| 3892 | $(INTERNAL_RAMDISK_FILES) \ |
| 3893 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 3894 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 3895 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 3896 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 3897 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 3898 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 3899 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
| 3900 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3901 | # ----------------------------------------------------------------- |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3902 | # Check VINTF of build |
| 3903 | |
Yifan Hong | c08cbf0 | 2020-09-15 19:07:39 +0000 | [diff] [blame] | 3904 | # Note: vendor_dlkm and odm_dlkm does not have VINTF files. |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 3905 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3906 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3907 | intermediates := $(call intermediates-dir-for,PACKAGING,check_vintf_all) |
| 3908 | check_vintf_all_deps := |
| 3909 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3910 | # The build system only writes VINTF metadata to */etc/vintf paths. Legacy paths aren't needed here |
| 3911 | # because they are only used for prebuilt images. |
| 3912 | check_vintf_common_srcs_patterns := \ |
| 3913 | $(TARGET_OUT)/etc/vintf/% \ |
| 3914 | $(TARGET_OUT_VENDOR)/etc/vintf/% \ |
| 3915 | $(TARGET_OUT_ODM)/etc/vintf/% \ |
| 3916 | $(TARGET_OUT_PRODUCT)/etc/vintf/% \ |
| 3917 | $(TARGET_OUT_SYSTEM_EXT)/etc/vintf/% \ |
| 3918 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 3919 | 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] | 3920 | check_vintf_common_srcs_patterns := |
| 3921 | |
| 3922 | check_vintf_has_system := |
| 3923 | check_vintf_has_vendor := |
| 3924 | |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3925 | ifneq (,$(filter EMPTY_ODM_SKU_PLACEHOLDER,$(ODM_MANIFEST_SKUS))) |
| 3926 | $(error EMPTY_ODM_SKU_PLACEHOLDER is an internal variable and cannot be used for ODM_MANIFEST_SKUS) |
| 3927 | endif |
| 3928 | ifneq (,$(filter EMPTY_VENDOR_SKU_PLACEHOLDER,$(DEVICE_MANIFEST_SKUS))) |
| 3929 | $(error EMPTY_VENDOR_SKU_PLACEHOLDER is an internal variable and cannot be used for DEIVCE_MANIFEST_SKUS) |
| 3930 | endif |
| 3931 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3932 | # -- 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] | 3933 | check_vintf_system_deps := $(filter $(TARGET_OUT)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 3934 | ifneq ($(check_vintf_system_deps),) |
| 3935 | check_vintf_has_system := true |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 3936 | |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 3937 | check_vintf_system_log := $(intermediates)/check_vintf_system.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3938 | check_vintf_all_deps += $(check_vintf_system_log) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3939 | $(check_vintf_system_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_system_deps) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3940 | @( $< --check-one --dirmap /system:$(TARGET_OUT) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
| 3941 | check_vintf_system_log := |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 3942 | |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 3943 | vintffm_log := $(intermediates)/vintffm.log |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 3944 | check_vintf_all_deps += $(vintffm_log) |
| 3945 | $(vintffm_log): $(HOST_OUT_EXECUTABLES)/vintffm $(check_vintf_system_deps) |
| 3946 | @( $< --check --dirmap /system:$(TARGET_OUT) \ |
| 3947 | $(VINTF_FRAMEWORK_MANIFEST_FROZEN_DIR) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
| 3948 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3949 | endif # check_vintf_system_deps |
| 3950 | check_vintf_system_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3951 | |
| 3952 | # -- Check vendor manifest / matrix including fragments (excluding other device manifests / matrices) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3953 | check_vintf_vendor_deps := $(filter $(TARGET_OUT_VENDOR)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 3954 | ifneq ($(check_vintf_vendor_deps),) |
| 3955 | check_vintf_has_vendor := true |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 3956 | check_vintf_vendor_log := $(intermediates)/check_vintf_vendor.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3957 | check_vintf_all_deps += $(check_vintf_vendor_log) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3958 | # Check vendor SKU=(empty) case when: |
| 3959 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 3960 | # - 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] | 3961 | $(check_vintf_vendor_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3962 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 3963 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3964 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3965 | $(check_vintf_vendor_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_vendor_deps) |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3966 | $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 3967 | ( $< --check-one --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 3968 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 3969 | > $@ 2>&1 ) || ( cat $@ && exit 1 ); ) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3970 | check_vintf_vendor_log := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3971 | endif # check_vintf_vendor_deps |
| 3972 | check_vintf_vendor_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3973 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3974 | # -- Kernel version and configurations. |
| 3975 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
| 3976 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3977 | BUILT_KERNEL_CONFIGS_FILE := $(intermediates)/kernel_configs.txt |
| 3978 | BUILT_KERNEL_VERSION_FILE := $(intermediates)/kernel_version.txt |
| 3979 | |
| 3980 | my_board_extracted_kernel := |
| 3981 | |
| 3982 | # BOARD_KERNEL_CONFIG_FILE and BOARD_KERNEL_VERSION can be used to override the values extracted |
| 3983 | # from INSTALLED_KERNEL_TARGET. |
| 3984 | ifdef BOARD_KERNEL_CONFIG_FILE |
| 3985 | ifdef BOARD_KERNEL_VERSION |
| 3986 | $(BUILT_KERNEL_CONFIGS_FILE): $(BOARD_KERNEL_CONFIG_FILE) |
| 3987 | cp $< $@ |
| 3988 | $(BUILT_KERNEL_VERSION_FILE): |
| 3989 | echo $(BOARD_KERNEL_VERSION) > $@ |
| 3990 | |
| 3991 | my_board_extracted_kernel := true |
| 3992 | endif # BOARD_KERNEL_VERSION |
| 3993 | endif # BOARD_KERNEL_CONFIG_FILE |
| 3994 | |
| 3995 | ifneq ($(my_board_extracted_kernel),true) |
| 3996 | ifndef INSTALLED_KERNEL_TARGET |
| 3997 | $(warning No INSTALLED_KERNEL_TARGET is defined when PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS \ |
| 3998 | is true. Information about the updated kernel cannot be built into OTA update package. \ |
| 3999 | You can fix this by: (1) setting TARGET_NO_KERNEL to false and installing the built kernel \ |
| 4000 | to $(PRODUCT_OUT)/kernel, so that kernel information will be extracted from the built kernel; \ |
| 4001 | or (2) extracting kernel configuration and defining BOARD_KERNEL_CONFIG_FILE and \ |
| 4002 | BOARD_KERNEL_VERSION manually; or (3) unsetting PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS \ |
| 4003 | manually.) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 4004 | # Clear their values to indicate that these two files does not exist. |
| 4005 | BUILT_KERNEL_CONFIGS_FILE := |
| 4006 | BUILT_KERNEL_VERSION_FILE := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4007 | else |
| 4008 | |
| 4009 | # Tools for decompression that is not in PATH. |
| 4010 | # Check $(EXTRACT_KERNEL) for decompression algorithms supported by the script. |
| 4011 | # Algorithms that are in the script but not in this list will be found in PATH. |
| 4012 | my_decompress_tools := \ |
| 4013 | lz4:$(HOST_OUT_EXECUTABLES)/lz4 \ |
| 4014 | |
| 4015 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 4016 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 4017 | $(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] | 4018 | $(BUILT_KERNEL_CONFIGS_FILE): $(EXTRACT_KERNEL) $(firstword $(INSTALLED_KERNEL_TARGET)) |
| 4019 | $< --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(firstword $(INSTALLED_KERNEL_TARGET)) \ |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4020 | --output-configs $@ \ |
Yifan Hong | b95d02e | 2020-11-13 18:33:01 -0800 | [diff] [blame] | 4021 | --output-release $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4022 | |
| 4023 | my_decompress_tools := |
| 4024 | |
| 4025 | endif # my_board_extracted_kernel |
| 4026 | my_board_extracted_kernel := |
| 4027 | |
| 4028 | endif # INSTALLED_KERNEL_TARGET |
| 4029 | |
Yifan Hong | c0f904e | 2021-03-17 11:25:31 -0700 | [diff] [blame] | 4030 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 4031 | |
| 4032 | # -- Check VINTF compatibility of build. |
| 4033 | # Skip partial builds; only check full builds. Only check if: |
| 4034 | # - PRODUCT_ENFORCE_VINTF_MANIFEST is true |
| 4035 | # - system / vendor VINTF metadata exists |
| 4036 | # - Building product / system_ext / odm images if board has product / system_ext / odm images |
| 4037 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 4038 | ifeq ($(check_vintf_has_system),true) |
| 4039 | ifeq ($(check_vintf_has_vendor),true) |
| 4040 | ifeq ($(filter true,$(BUILDING_ODM_IMAGE)),$(filter true,$(BOARD_USES_ODMIMAGE))) |
| 4041 | ifeq ($(filter true,$(BUILDING_PRODUCT_IMAGE)),$(filter true,$(BOARD_USES_PRODUCTIMAGE))) |
| 4042 | ifeq ($(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),$(filter true,$(BOARD_USES_SYSTEM_EXTIMAGE))) |
| 4043 | |
| 4044 | check_vintf_compatible_log := $(intermediates)/check_vintf_compatible.log |
| 4045 | check_vintf_all_deps += $(check_vintf_compatible_log) |
| 4046 | |
| 4047 | check_vintf_compatible_args := |
| 4048 | check_vintf_compatible_deps := $(check_vintf_common_srcs) |
| 4049 | |
| 4050 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 4051 | ifneq (,$(BUILT_KERNEL_VERSION_FILE)$(BUILT_KERNEL_CONFIGS_FILE)) |
Yifan Hong | 72e78f2 | 2020-11-13 18:30:06 -0800 | [diff] [blame] | 4052 | 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] | 4053 | check_vintf_compatible_deps += $(BUILT_KERNEL_CONFIGS_FILE) $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 4054 | endif # BUILT_KERNEL_VERSION_FILE != "" || BUILT_KERNEL_CONFIGS_FILE != "" |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4055 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 4056 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4057 | check_vintf_compatible_args += \ |
| 4058 | --dirmap /system:$(TARGET_OUT) \ |
| 4059 | --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 4060 | --dirmap /odm:$(TARGET_OUT_ODM) \ |
| 4061 | --dirmap /product:$(TARGET_OUT_PRODUCT) \ |
| 4062 | --dirmap /system_ext:$(TARGET_OUT_SYSTEM_EXT) \ |
| 4063 | |
| 4064 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 4065 | check_vintf_compatible_args += --property ro.product.first_api_level=$(PRODUCT_SHIPPING_API_LEVEL) |
| 4066 | endif # PRODUCT_SHIPPING_API_LEVEL |
| 4067 | |
| 4068 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_ARGS := $(check_vintf_compatible_args) |
| 4069 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_DEPS := $(check_vintf_compatible_deps) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4070 | # Check ODM SKU=(empty) case when: |
| 4071 | # - ODM_MANIFEST_FILES is not empty; OR |
| 4072 | # - 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] | 4073 | $(check_vintf_compatible_log): PRIVATE_ODM_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4074 | $(if $(ODM_MANIFEST_FILES),EMPTY_ODM_SKU_PLACEHOLDER,\ |
| 4075 | $(if $(ODM_MANIFEST_SKUS),,EMPTY_ODM_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4076 | $(ODM_MANIFEST_SKUS) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4077 | # Check vendor SKU=(empty) case when: |
| 4078 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 4079 | # - 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] | 4080 | $(check_vintf_compatible_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4081 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 4082 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4083 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4084 | $(check_vintf_compatible_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_compatible_deps) |
Yifan Hong | 80ab214 | 2021-03-10 18:10:05 -0800 | [diff] [blame] | 4085 | @echo "PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS=$(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS)" > $@ |
| 4086 | @echo -n -e 'Deps: \n ' >> $@ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4087 | @sed 's/ /\n /g' <<< "$(PRIVATE_CHECK_VINTF_DEPS)" >> $@ |
| 4088 | @echo -n -e 'Args: \n ' >> $@ |
| 4089 | @cat <<< "$(PRIVATE_CHECK_VINTF_ARGS)" >> $@ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4090 | $(foreach odm_sku,$(PRIVATE_ODM_SKUS), $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 4091 | echo "For ODM SKU = $(odm_sku), vendor SKU = $(vendor_sku)" >> $@; \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4092 | ( $< --check-compat $(PRIVATE_CHECK_VINTF_ARGS) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4093 | --property ro.boot.product.hardware.sku=$(filter-out EMPTY_ODM_SKU_PLACEHOLDER,$(odm_sku)) \ |
| 4094 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 4095 | >> $@ 2>&1 ) || (cat $@ && exit 1); )) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4096 | |
| 4097 | check_vintf_compatible_log := |
| 4098 | check_vintf_compatible_args := |
| 4099 | check_vintf_compatible_deps := |
| 4100 | |
| 4101 | endif # BUILDING_SYSTEM_EXT_IMAGE equals BOARD_USES_SYSTEM_EXTIMAGE |
| 4102 | endif # BUILDING_PRODUCT_IMAGE equals BOARD_USES_PRODUCTIMAGE |
| 4103 | endif # BUILDING_ODM_IMAGE equals BOARD_USES_ODMIMAGE |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4104 | endif # check_vintf_has_vendor |
| 4105 | endif # check_vintf_has_system |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4106 | endif # PRODUCT_ENFORCE_VINTF_MANIFEST |
| 4107 | |
| 4108 | # Add all logs of VINTF checks to dist builds |
| 4109 | droid_targets: $(check_vintf_all_deps) |
| 4110 | $(call dist-for-goals, droid_targets, $(check_vintf_all_deps)) |
| 4111 | |
| 4112 | # Helper alias to check all VINTF of current build. |
| 4113 | .PHONY: check-vintf-all |
| 4114 | check-vintf-all: $(check_vintf_all_deps) |
| 4115 | $(foreach file,$^,echo "$(file)"; cat "$(file)"; echo;) |
| 4116 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4117 | check_vintf_has_vendor := |
| 4118 | check_vintf_has_system := |
| 4119 | check_vintf_common_srcs := |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4120 | check_vintf_all_deps := |
| 4121 | intermediates := |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4122 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4123 | |
| 4124 | # ----------------------------------------------------------------- |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4125 | # Check image sizes <= size of super partition |
| 4126 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4127 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4128 | |
| 4129 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
Yifan Hong | 37c0c7c | 2018-07-24 17:45:08 -0700 | [diff] [blame] | 4130 | |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4131 | # $(1): misc_info.txt |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4132 | # #(2): optional log file |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 4133 | define check-all-partition-sizes-target |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4134 | mkdir -p $(dir $(1)) |
| 4135 | rm -f $(1) |
| 4136 | $(call dump-super-image-info, $(1)) |
| 4137 | $(foreach partition,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 4138 | echo "$(partition)_image="$(call images-for-partitions,$(partition)) >> $(1);) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4139 | $(CHECK_PARTITION_SIZES) $(if $(2),--logfile $(2),-v) $(1) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 4140 | endef |
| 4141 | |
Yifan Hong | d11953c | 2021-03-11 14:47:48 -0800 | [diff] [blame] | 4142 | 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] | 4143 | droid_targets: $(check_all_partition_sizes_log) |
| 4144 | $(call dist-for-goals, droid_targets, $(check_all_partition_sizes_log)) |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 4145 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4146 | $(check_all_partition_sizes_log): \ |
| 4147 | $(CHECK_PARTITION_SIZES) \ |
| 4148 | $(call images-for-partitions,$(BOARD_SUPER_PARTITION_PARTITION_LIST)) |
| 4149 | $(call check-all-partition-sizes-target, \ |
| 4150 | $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/misc_info.txt, \ |
| 4151 | $@) |
| 4152 | |
| 4153 | .PHONY: check-all-partition-sizes |
| 4154 | check-all-partition-sizes: $(check_all_partition_sizes_log) |
| 4155 | |
| 4156 | .PHONY: check-all-partition-sizes-nodeps |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 4157 | check-all-partition-sizes-nodeps: |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4158 | $(call check-all-partition-sizes-target, \ |
| 4159 | $(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] | 4160 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 4161 | endif # PRODUCT_BUILD_SUPER_PARTITION |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 4162 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4163 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 4164 | |
| 4165 | # ----------------------------------------------------------------- |
Greg Hartman | 2ebfef4 | 2014-11-04 21:17:06 -0800 | [diff] [blame] | 4166 | # bring in the installer image generation defines if necessary |
| 4167 | ifeq ($(TARGET_USE_DISKINSTALLER),true) |
| 4168 | include bootable/diskinstaller/config.mk |
| 4169 | endif |
| 4170 | |
| 4171 | # ----------------------------------------------------------------- |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame] | 4172 | # host tools needed to build dist and OTA packages |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4173 | |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 4174 | ifeq ($(BUILD_OS),darwin) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4175 | build_ota_package := false |
| 4176 | build_otatools_package := false |
| 4177 | else |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4178 | # Set build_ota_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4179 | build_ota_package := true |
| 4180 | ifeq ($(TARGET_SKIP_OTA_PACKAGE),true) |
| 4181 | build_ota_package := false |
| 4182 | endif |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 4183 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4184 | build_ota_package := false |
| 4185 | endif |
| 4186 | ifeq ($(TARGET_PRODUCT),sdk) |
| 4187 | build_ota_package := false |
| 4188 | endif |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4189 | ifneq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 4190 | ifneq ($(filter generic%,$(TARGET_DEVICE)),) |
| 4191 | build_ota_package := false |
| 4192 | endif |
| 4193 | ifeq ($(TARGET_NO_KERNEL),true) |
| 4194 | build_ota_package := false |
| 4195 | endif |
| 4196 | ifeq ($(recovery_fstab),) |
| 4197 | build_ota_package := false |
| 4198 | endif |
| 4199 | endif # PRODUCT_BUILD_GENERIC_OTA_PACKAGE |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4200 | |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 4201 | # Set build_otatools_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4202 | build_otatools_package := true |
| 4203 | ifeq ($(TARGET_SKIP_OTATOOLS_PACKAGE),true) |
| 4204 | build_otatools_package := false |
| 4205 | endif |
Colin Cross | 481cc5a | 2016-02-04 15:09:23 -0800 | [diff] [blame] | 4206 | endif |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 4207 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4208 | ifeq ($(build_otatools_package),true) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4209 | |
| 4210 | INTERNAL_OTATOOLS_MODULES := \ |
changho.shin | 0f12536 | 2019-07-08 10:59:00 +0900 | [diff] [blame] | 4211 | aapt2 \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4212 | add_img_to_target_files \ |
Tianjie Xu | eaed60c | 2020-03-12 00:33:28 -0700 | [diff] [blame] | 4213 | aftltool \ |
Baligh Uddin | ab25b2d | 2020-05-29 19:01:32 +0000 | [diff] [blame] | 4214 | apksigner \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4215 | append2simg \ |
| 4216 | avbtool \ |
| 4217 | blk_alloc_to_base_fs \ |
| 4218 | boot_signer \ |
| 4219 | brillo_update_payload \ |
| 4220 | brotli \ |
| 4221 | bsdiff \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 4222 | build_image \ |
| 4223 | build_super_image \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4224 | build_verity_metadata \ |
| 4225 | build_verity_tree \ |
| 4226 | care_map_generator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4227 | check_ota_package_signature \ |
| 4228 | check_target_files_signatures \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4229 | check_target_files_vintf \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4230 | checkvintf \ |
| 4231 | delta_generator \ |
| 4232 | e2fsck \ |
| 4233 | e2fsdroid \ |
| 4234 | fc_sort \ |
| 4235 | fec \ |
| 4236 | fs_config \ |
| 4237 | generate_verity_key \ |
Daniel Norman | ee33b4e | 2020-12-02 16:18:25 -0800 | [diff] [blame] | 4238 | host_init_verifier \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4239 | img2simg \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4240 | img_from_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4241 | imgdiff \ |
| 4242 | libconscrypt_openjdk_jni \ |
| 4243 | lpmake \ |
Isaac Chen | eec4a7c | 2019-06-25 11:50:58 +0800 | [diff] [blame] | 4244 | lpunpack \ |
Tianjie | 3031c29 | 2020-06-24 11:20:36 -0700 | [diff] [blame] | 4245 | lz4 \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4246 | make_f2fs \ |
Jaegeuk Kim | 8ba4bab | 2020-07-17 20:18:10 -0700 | [diff] [blame] | 4247 | make_f2fs_casefold \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4248 | merge_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4249 | minigzip \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4250 | mk_combined_img \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4251 | mkbootfs \ |
| 4252 | mkbootimg \ |
| 4253 | mke2fs \ |
Baligh Uddin | 6a8234b | 2020-01-29 17:42:59 -0800 | [diff] [blame] | 4254 | mke2fs.conf \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 4255 | mkfs.erofs \ |
| 4256 | mkerofsimage.sh \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4257 | mkf2fsuserimg.sh \ |
| 4258 | mksquashfs \ |
| 4259 | mksquashfsimage.sh \ |
| 4260 | mkuserimg_mke2fs \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 4261 | ota_from_target_files \ |
Bowgo Tsai | 6c37c17 | 2021-02-05 18:01:15 +0800 | [diff] [blame] | 4262 | repack_bootimg \ |
Daniel Norman | 48603ff | 2021-02-22 15:15:24 -0800 | [diff] [blame] | 4263 | secilc \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4264 | sefcontext_compile \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4265 | sgdisk \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4266 | shflags \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4267 | sign_apex \ |
| 4268 | sign_target_files_apks \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4269 | signapk \ |
| 4270 | simg2img \ |
| 4271 | sload_f2fs \ |
Yifan Hong | 125d0b6 | 2020-09-24 17:07:03 -0700 | [diff] [blame] | 4272 | toybox \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4273 | tune2fs \ |
Daniel Mentz | 30652b3 | 2020-01-04 15:18:09 -0800 | [diff] [blame] | 4274 | unpack_bootimg \ |
Tianjie Xu | 4e5591f | 2019-06-11 14:35:59 -0700 | [diff] [blame] | 4275 | update_host_simulator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4276 | validate_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4277 | verity_signer \ |
| 4278 | verity_verifier \ |
| 4279 | zipalign \ |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 4280 | |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 4281 | # Additional tools to unpack and repack the apex file. |
| 4282 | INTERNAL_OTATOOLS_MODULES += \ |
| 4283 | apexer \ |
Nikita Ioffe | 3608148 | 2021-01-20 01:32:28 +0000 | [diff] [blame] | 4284 | apex_compression_tool \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 4285 | deapexer \ |
| 4286 | debugfs_static \ |
| 4287 | merge_zips \ |
| 4288 | resize2fs \ |
| 4289 | soong_zip \ |
| 4290 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4291 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4292 | INTERNAL_OTATOOLS_MODULES += \ |
| 4293 | futility \ |
| 4294 | vboot_signer |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 4295 | endif |
Tao Bao | f8e6fbe | 2016-01-04 09:57:32 -0800 | [diff] [blame] | 4296 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4297 | INTERNAL_OTATOOLS_FILES := \ |
| 4298 | $(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] | 4299 | |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 4300 | .PHONY: otatools |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4301 | otatools: $(INTERNAL_OTATOOLS_FILES) |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 4302 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4303 | # For each module, recursively resolve its host shared library dependencies. Then we have a full |
| 4304 | # list of modules whose installed files need to be packed. |
| 4305 | INTERNAL_OTATOOLS_MODULES_WITH_DEPS := \ |
| 4306 | $(sort $(INTERNAL_OTATOOLS_MODULES) \ |
| 4307 | $(foreach m,$(INTERNAL_OTATOOLS_MODULES),$(call get-all-shared-libs-deps,$(m)))) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4308 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4309 | INTERNAL_OTATOOLS_PACKAGE_FILES := \ |
| 4310 | $(filter $(HOST_OUT)/%,$(call module-installed-files,$(INTERNAL_OTATOOLS_MODULES_WITH_DEPS))) |
| 4311 | |
| 4312 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 4313 | $(sort $(shell find build/make/target/product/security -type f -name "*.x509.pem" -o \ |
| 4314 | -name "*.pk8" -o -name verity_key)) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 4315 | |
| 4316 | ifneq (,$(wildcard device)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4317 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Dan Willemsen | 60c6644 | 2018-05-01 19:07:27 -0700 | [diff] [blame] | 4318 | $(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] | 4319 | -name "*.pem" -o -name "oem*.prop" -o -name "*.avbpubkey")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 4320 | endif |
| 4321 | ifneq (,$(wildcard external/avb)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4322 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 4323 | $(sort $(shell find external/avb/test/data -type f -name "testkey_*.pem" -o \ |
| 4324 | -name "atx_metadata.bin")) |
| 4325 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4326 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4327 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 5232f09 | 2018-02-10 04:03:32 +0000 | [diff] [blame] | 4328 | $(sort $(shell find external/vboot_reference/tests/devkeys -type f)) |
Tao Bao | e8ef8f70 | 2017-05-17 11:41:50 -0700 | [diff] [blame] | 4329 | endif |
| 4330 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4331 | INTERNAL_OTATOOLS_RELEASETOOLS := \ |
| 4332 | $(sort $(shell find build/make/tools/releasetools -name "*.pyc" -prune -o \ |
| 4333 | \( -type f -o -type l \) -print)) |
| 4334 | |
| 4335 | BUILT_OTATOOLS_PACKAGE := $(PRODUCT_OUT)/otatools.zip |
| 4336 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_ZIP_ROOT := $(call intermediates-dir-for,PACKAGING,otatools)/otatools |
| 4337 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_PACKAGE_FILES := $(INTERNAL_OTATOOLS_PACKAGE_FILES) |
| 4338 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_RELEASETOOLS := $(INTERNAL_OTATOOLS_RELEASETOOLS) |
| 4339 | $(BUILT_OTATOOLS_PACKAGE): $(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS) |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 4340 | $(BUILT_OTATOOLS_PACKAGE): $(SOONG_ZIP) $(ZIP2ZIP) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4341 | @echo "Package OTA tools: $@" |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4342 | rm -rf $@ $(PRIVATE_ZIP_ROOT) |
| 4343 | mkdir -p $(dir $@) |
| 4344 | $(call copy-files-with-structure,$(PRIVATE_OTATOOLS_PACKAGE_FILES),$(HOST_OUT)/,$(PRIVATE_ZIP_ROOT)) |
| 4345 | $(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] | 4346 | cp $(SOONG_ZIP) $(ZIP2ZIP) $(MERGE_ZIPS) $(PRIVATE_ZIP_ROOT)/bin/ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 4347 | $(SOONG_ZIP) -o $@ -C $(PRIVATE_ZIP_ROOT) -D $(PRIVATE_ZIP_ROOT) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4348 | |
| 4349 | .PHONY: otatools-package |
| 4350 | otatools-package: $(BUILT_OTATOOLS_PACKAGE) |
| 4351 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 4352 | endif # build_otatools_package |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 4353 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4354 | # ----------------------------------------------------------------- |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4355 | # misc_info.txt |
| 4356 | |
| 4357 | INSTALLED_MISC_INFO_TARGET := $(PRODUCT_OUT)/misc_info.txt |
| 4358 | |
| 4359 | ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),) |
| 4360 | # default to common dir for device vendor |
| 4361 | tool_extensions := $(TARGET_DEVICE_DIR)/../common |
| 4362 | else |
| 4363 | tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) |
| 4364 | endif |
| 4365 | .KATI_READONLY := tool_extensions |
| 4366 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 4367 | # $1: boot image file name |
| 4368 | define misc_boot_size |
| 4369 | $(subst .img,_size,$(1))=$(BOARD_KERNEL$(call to-upper,$(subst boot,,$(subst .img,,$(1))))_BOOTIMAGE_PARTITION_SIZE) |
| 4370 | endef |
| 4371 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4372 | $(INSTALLED_MISC_INFO_TARGET): |
| 4373 | rm -f $@ |
| 4374 | $(call pretty,"Target misc_info.txt: $@") |
| 4375 | $(hide) echo "recovery_api_version=$(RECOVERY_API_VERSION)" >> $@ |
| 4376 | $(hide) echo "fstab_version=$(RECOVERY_FSTAB_VERSION)" >> $@ |
| 4377 | ifdef BOARD_FLASH_BLOCK_SIZE |
| 4378 | $(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $@ |
| 4379 | endif |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 4380 | ifneq ($(strip $(BOARD_BOOTIMAGE_PARTITION_SIZE))$(strip $(BOARD_KERNEL_BINARIES)),) |
| 4381 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),\ |
| 4382 | echo "$(call misc_boot_size,$(notdir $(b)))" >> $@;) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4383 | endif |
| 4384 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 4385 | $(hide) echo "no_boot=true" >> $@ |
Steve Muckle | 9793cf6 | 2020-04-08 18:27:00 -0700 | [diff] [blame] | 4386 | else |
| 4387 | echo "boot_images=$(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(notdir $(b)))" >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4388 | endif |
J. Avila | 98cd4cc | 2020-06-10 20:09:10 +0000 | [diff] [blame] | 4389 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 4390 | echo "lz4_ramdisks=true" >> $@ |
| 4391 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4392 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 4393 | echo "vendor_boot=true" >> $@ |
| 4394 | echo "vendor_boot_size=$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 4395 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4396 | ifeq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 4397 | $(hide) echo "no_recovery=true" >> $@ |
| 4398 | endif |
| 4399 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
| 4400 | $(hide) echo "include_recovery_dtbo=true" >> $@ |
| 4401 | endif |
| 4402 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 4403 | $(hide) echo "include_recovery_acpio=true" >> $@ |
| 4404 | endif |
| 4405 | ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE |
| 4406 | $(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $@ |
| 4407 | endif |
| 4408 | ifdef TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS |
| 4409 | @# TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS can be empty to indicate that nothing but defaults should be used. |
| 4410 | $(hide) echo "recovery_mount_options=$(TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 4411 | else |
| 4412 | $(hide) echo "recovery_mount_options=$(DEFAULT_TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 4413 | endif |
| 4414 | $(hide) echo "tool_extensions=$(tool_extensions)" >> $@ |
| 4415 | $(hide) echo "default_system_dev_certificate=$(DEFAULT_SYSTEM_DEV_CERTIFICATE)" >> $@ |
| 4416 | ifdef PRODUCT_EXTRA_RECOVERY_KEYS |
| 4417 | $(hide) echo "extra_recovery_keys=$(PRODUCT_EXTRA_RECOVERY_KEYS)" >> $@ |
| 4418 | endif |
| 4419 | $(hide) echo 'mkbootimg_args=$(BOARD_MKBOOTIMG_ARGS)' >> $@ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 4420 | $(hide) echo 'recovery_mkbootimg_args=$(BOARD_RECOVERY_MKBOOTIMG_ARGS)' >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4421 | $(hide) echo 'mkbootimg_version_args=$(INTERNAL_MKBOOTIMG_VERSION_ARGS)' >> $@ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 4422 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 4423 | $(hide) echo 'gki_signing_key_path=$(BOARD_GKI_SIGNING_KEY_PATH)' >> $@ |
| 4424 | $(hide) echo 'gki_signing_algorithm=$(BOARD_GKI_SIGNING_ALGORITHM)' >> $@ |
| 4425 | endif |
| 4426 | ifdef BOARD_GKI_SIGNING_SIGNATURE_ARGS |
| 4427 | $(hide) echo 'gki_signing_signature_args=$(BOARD_GKI_SIGNING_SIGNATURE_ARGS)' >> $@ |
| 4428 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4429 | $(hide) echo "multistage_support=1" >> $@ |
| 4430 | $(hide) echo "blockimgdiff_versions=3,4" >> $@ |
| 4431 | ifeq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 4432 | $(hide) echo "build_generic_ota_package=true" >> $@ |
| 4433 | endif |
| 4434 | ifneq ($(OEM_THUMBPRINT_PROPERTIES),) |
| 4435 | # OTA scripts are only interested in fingerprint related properties |
| 4436 | $(hide) echo "oem_fingerprint_properties=$(OEM_THUMBPRINT_PROPERTIES)" >> $@ |
| 4437 | endif |
| 4438 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
| 4439 | # We need to create userdata.img with real data because the instrumented libraries are in userdata.img. |
| 4440 | $(hide) echo "userdata_img_with_data=true" >> $@ |
| 4441 | endif |
| 4442 | ifeq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
| 4443 | $(hide) echo "full_recovery_image=true" >> $@ |
| 4444 | endif |
Bill Peckham | e868aec | 2019-09-17 17:06:47 -0700 | [diff] [blame] | 4445 | ifdef BOARD_USES_VENDORIMAGE |
| 4446 | $(hide) echo "board_uses_vendorimage=true" >> $@ |
| 4447 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4448 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 8218225 | 2020-11-13 11:28:17 +0800 | [diff] [blame] | 4449 | ifeq ($(BUILDING_VBMETA_IMAGE),true) |
| 4450 | $(hide) echo "avb_building_vbmeta_image=true" >> $@ |
| 4451 | endif # BUILDING_VBMETA_IMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4452 | $(hide) echo "avb_enable=true" >> $@ |
| 4453 | $(hide) echo "avb_vbmeta_key_path=$(BOARD_AVB_KEY_PATH)" >> $@ |
| 4454 | $(hide) echo "avb_vbmeta_algorithm=$(BOARD_AVB_ALGORITHM)" >> $@ |
| 4455 | $(hide) echo "avb_vbmeta_args=$(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS)" >> $@ |
| 4456 | $(hide) echo "avb_boot_add_hash_footer_args=$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4457 | ifdef BOARD_AVB_BOOT_KEY_PATH |
| 4458 | $(hide) echo "avb_boot_key_path=$(BOARD_AVB_BOOT_KEY_PATH)" >> $@ |
| 4459 | $(hide) echo "avb_boot_algorithm=$(BOARD_AVB_BOOT_ALGORITHM)" >> $@ |
| 4460 | $(hide) echo "avb_boot_rollback_index_location=$(BOARD_AVB_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4461 | endif # BOARD_AVB_BOOT_KEY_PATH |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4462 | echo "avb_vendor_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4463 | ifdef BOARD_AVB_VENDOR_BOOT_KEY_PATH |
| 4464 | echo "avb_vendor_boot_key_path=$(BOARD_AVB_VENDOR_BOOT_KEY_PATH)" >> $@ |
| 4465 | echo "avb_vendor_boot_algorithm=$(BOARD_AVB_VENDOR_BOOT_ALGORITHM)" >> $@ |
| 4466 | echo "avb_vendor_boot_rollback_index_location=$(BOARD_AVB_VENDOR_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4467 | endif # BOARD_AVB_VENDOR_BOOT_KEY_PATH |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4468 | $(hide) echo "avb_recovery_add_hash_footer_args=$(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4469 | ifdef BOARD_AVB_RECOVERY_KEY_PATH |
| 4470 | $(hide) echo "avb_recovery_key_path=$(BOARD_AVB_RECOVERY_KEY_PATH)" >> $@ |
| 4471 | $(hide) echo "avb_recovery_algorithm=$(BOARD_AVB_RECOVERY_ALGORITHM)" >> $@ |
| 4472 | $(hide) echo "avb_recovery_rollback_index_location=$(BOARD_AVB_RECOVERY_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4473 | endif # BOARD_AVB_RECOVERY_KEY_PATH |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4474 | ifneq (,$(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST))) |
| 4475 | $(hide) echo "avb_custom_images_partition_list=$(BOARD_CUSTOMIMAGES_PARTITION_LIST)" >> $@ |
| 4476 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4477 | echo "avb_$(partition)_key_path=$(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH)" >> $@; \ |
| 4478 | echo "avb_$(partition)_algorithm=$(BOARD_AVB_$(call to-upper,$(partition))_ALGORITHM)" >> $@; \ |
| 4479 | echo "avb_$(partition)_add_hashtree_footer_args=$(BOARD_AVB_$(call to-upper,$(partition))_ADD_HASHTREE_FOOTER_ARGS)" >> $@; \ |
| 4480 | echo "avb_$(partition)_rollback_index_location=$(BOARD_AVB_$(call to-upper,$(partition))_ROLLBACK_INDEX_LOCATION)" >> $@; \ |
| 4481 | echo "avb_$(partition)_partition_size=$(BOARD_AVB_$(call to-upper,$(partition))_PARTITION_SIZE)" >> $@; \ |
| 4482 | echo "avb_$(partition)_image_list=$(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),$(notdir $(image)))" >> $@;) |
| 4483 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4484 | ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) |
| 4485 | $(hide) echo "avb_vbmeta_system=$(BOARD_AVB_VBMETA_SYSTEM)" >> $@ |
| 4486 | $(hide) echo "avb_vbmeta_system_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 4487 | $(hide) echo "avb_vbmeta_system_key_path=$(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH)" >> $@ |
| 4488 | $(hide) echo "avb_vbmeta_system_algorithm=$(BOARD_AVB_VBMETA_SYSTEM_ALGORITHM)" >> $@ |
| 4489 | $(hide) echo "avb_vbmeta_system_rollback_index_location=$(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4490 | endif # BOARD_AVB_VBMETA_SYSTEM |
| 4491 | ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) |
| 4492 | $(hide) echo "avb_vbmeta_vendor=$(BOARD_AVB_VBMETA_VENDOR)" >> $@ |
| 4493 | $(hide) echo "avb_vbmeta_vendor_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 4494 | $(hide) echo "avb_vbmeta_vendor_key_path=$(BOARD_AVB_VBMETA_VENDOR_KEY_PATH)" >> $@ |
| 4495 | $(hide) echo "avb_vbmeta_vendor_algorithm=$(BOARD_AVB_VBMETA_VENDOR_ALGORITHM)" >> $@ |
| 4496 | $(hide) echo "avb_vbmeta_vendor_rollback_index_location=$(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4497 | endif # BOARD_AVB_VBMETA_VENDOR_KEY_PATH |
| 4498 | endif # BOARD_AVB_ENABLE |
| 4499 | ifdef BOARD_BPT_INPUT_FILES |
| 4500 | $(hide) echo "board_bpt_enable=true" >> $@ |
| 4501 | $(hide) echo "board_bpt_make_table_args=$(BOARD_BPT_MAKE_TABLE_ARGS)" >> $@ |
| 4502 | $(hide) echo "board_bpt_input_files=$(BOARD_BPT_INPUT_FILES)" >> $@ |
| 4503 | endif |
| 4504 | ifdef BOARD_BPT_DISK_SIZE |
| 4505 | $(hide) echo "board_bpt_disk_size=$(BOARD_BPT_DISK_SIZE)" >> $@ |
| 4506 | endif |
| 4507 | $(call generate-userimage-prop-dictionary, $@) |
| 4508 | ifeq ($(AB_OTA_UPDATER),true) |
| 4509 | @# Include the build type in META/misc_info.txt so the server can easily differentiate production builds. |
| 4510 | $(hide) echo "build_type=$(TARGET_BUILD_VARIANT)" >> $@ |
| 4511 | $(hide) echo "ab_update=true" >> $@ |
| 4512 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4513 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
| 4514 | $(hide) echo "allow_non_ab=true" >> $@ |
| 4515 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4516 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 4517 | $(hide) echo "has_dtbo=true" >> $@ |
| 4518 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4519 | $(hide) echo "dtbo_size=$(BOARD_DTBOIMG_PARTITION_SIZE)" >> $@ |
| 4520 | $(hide) echo "avb_dtbo_add_hash_footer_args=$(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4521 | ifdef BOARD_AVB_DTBO_KEY_PATH |
| 4522 | $(hide) echo "avb_dtbo_key_path=$(BOARD_AVB_DTBO_KEY_PATH)" >> $@ |
| 4523 | $(hide) echo "avb_dtbo_algorithm=$(BOARD_AVB_DTBO_ALGORITHM)" >> $@ |
| 4524 | $(hide) echo "avb_dtbo_rollback_index_location=$(BOARD_AVB_DTBO_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4525 | endif # BOARD_AVB_DTBO_KEY_PATH |
| 4526 | endif # BOARD_AVB_ENABLE |
| 4527 | endif # BOARD_PREBUILT_DTBOIMAGE |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4528 | ifdef BOARD_PREBUILT_PVMFWIMAGE |
| 4529 | $(hide) echo "has_pvmfw=true" >> $@ |
| 4530 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4531 | $(hide) echo "pvmfw_size=$(BOARD_PVMFWIMG_PARTITION_SIZE)" >> $@ |
| 4532 | $(hide) echo "avb_pvmfw_add_hash_footer_args=$(BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4533 | ifdef BOARD_AVB_PVMFW_KEY_PATH |
| 4534 | $(hide) echo "avb_pvmfw_key_path=$(BOARD_AVB_PVMFW_KEY_PATH)" >> $@ |
| 4535 | $(hide) echo "avb_pvmfw_algorithm=$(BOARD_AVB_PVMFW_ALGORITHM)" >> $@ |
| 4536 | $(hide) echo "avb_pvmfw_rollback_index_location=$(BOARD_AVB_PVMFW_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4537 | endif # BOARD_AVB_PVMFW_KEY_PATH |
| 4538 | endif # BOARD_AVB_ENABLE |
| 4539 | endif # BOARD_PREBUILT_PVMFWIMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4540 | $(call dump-dynamic-partitions-info,$@) |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4541 | @# VINTF checks |
| 4542 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 4543 | $(hide) echo "vintf_enforce=true" >> $@ |
| 4544 | endif |
| 4545 | ifdef ODM_MANIFEST_SKUS |
| 4546 | $(hide) echo "vintf_odm_manifest_skus=$(ODM_MANIFEST_SKUS)" >> $@ |
| 4547 | endif |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4548 | ifdef ODM_MANIFEST_FILES |
| 4549 | $(hide) echo "vintf_include_empty_odm_sku=true" >> $@ |
| 4550 | endif |
| 4551 | ifdef DEVICE_MANIFEST_SKUS |
| 4552 | $(hide) echo "vintf_vendor_manifest_skus=$(DEVICE_MANIFEST_SKUS)" >> $@ |
| 4553 | endif |
| 4554 | ifdef DEVICE_MANIFEST_FILE |
| 4555 | $(hide) echo "vintf_include_empty_vendor_sku=true" >> $@ |
| 4556 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 4557 | ifeq ($(BOARD_BOOTLOADER_IN_UPDATE_PACKAGE),true) |
| 4558 | $(hide) echo "bootloader_in_update_package=true" >> $@ |
| 4559 | endif |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 4560 | ifeq ($(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE),true) |
| 4561 | $(hide) echo "exclude_kernel_from_recovery_image=true" >> $@ |
| 4562 | endif |
Kelvin Zhang | 5a65f69 | 2020-11-03 16:40:18 -0500 | [diff] [blame] | 4563 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
| 4564 | $(hide) echo "partial_ota_update_partitions_list=$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)" >> $@ |
| 4565 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4566 | |
| 4567 | .PHONY: misc_info |
| 4568 | misc_info: $(INSTALLED_MISC_INFO_TARGET) |
| 4569 | |
| 4570 | droidcore: $(INSTALLED_MISC_INFO_TARGET) |
| 4571 | |
| 4572 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4573 | # A zip of the directories that map to the target filesystem. |
| 4574 | # This zip can be used to create an OTA package or filesystem image |
| 4575 | # as a post-build step. |
| 4576 | # |
| 4577 | name := $(TARGET_PRODUCT) |
| 4578 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4579 | name := $(name)_debug |
| 4580 | endif |
| 4581 | name := $(name)-target_files-$(FILE_NAME_TAG) |
| 4582 | |
| 4583 | intermediates := $(call intermediates-dir-for,PACKAGING,target_files) |
| 4584 | BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip |
| 4585 | $(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates) |
| 4586 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4587 | zip_root := $(intermediates)/$(name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4588 | |
| 4589 | # $(1): Directory to copy |
| 4590 | # $(2): Location to copy it to |
| 4591 | # The "ls -A" is to prevent "acp s/* d" from failing if s is empty. |
| 4592 | define package_files-copy-root |
| 4593 | if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \ |
| 4594 | mkdir -p $(2) && \ |
| 4595 | $(ACP) -rd $(strip $(1))/* $(2); \ |
| 4596 | fi |
| 4597 | endef |
| 4598 | |
Tao Bao | a04fca3 | 2015-11-30 12:22:24 -0800 | [diff] [blame] | 4599 | built_ota_tools := |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4600 | |
| 4601 | # We can't build static executables when SANITIZE_TARGET=address |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 4602 | ifeq (,$(filter address, $(SANITIZE_TARGET))) |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4603 | built_ota_tools += \ |
Elliott Hughes | 9b824d5 | 2020-04-17 15:46:55 -0700 | [diff] [blame] | 4604 | $(call intermediates-dir-for,EXECUTABLES,updater)/updater |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4605 | endif |
| 4606 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4607 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools) |
| 4608 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4609 | tool_extension := $(wildcard $(tool_extensions)/releasetools.py) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4610 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_TOOL_EXTENSION := $(tool_extension) |
Doug Zongker | c18736b | 2009-09-30 09:20:32 -0700 | [diff] [blame] | 4611 | |
Sen Jiang | 4438fd9 | 2016-03-07 16:51:01 -0800 | [diff] [blame] | 4612 | ifeq ($(AB_OTA_UPDATER),true) |
Sen Jiang | 4393563 | 2017-12-19 15:24:43 -0800 | [diff] [blame] | 4613 | updater_dep := system/update_engine/update_engine.conf |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4614 | endif |
| 4615 | |
| 4616 | # Build OTA tools if non-A/B is allowed |
| 4617 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Shinichiro Hamaji | ee2d211 | 2016-05-10 16:40:38 +0900 | [diff] [blame] | 4618 | updater_dep := $(built_ota_tools) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4619 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4620 | |
Shinichiro Hamaji | ee2d211 | 2016-05-10 16:40:38 +0900 | [diff] [blame] | 4621 | $(BUILT_TARGET_FILES_PACKAGE): $(updater_dep) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4622 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4623 | # If we are using recovery as boot, output recovery files to BOOT/. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 4624 | # 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] | 4625 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 4626 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := BOOT |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 4627 | else ifeq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
| 4628 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := VENDOR_BOOT |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4629 | else |
| 4630 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := RECOVERY |
| 4631 | endif |
| 4632 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4633 | ifeq ($(AB_OTA_UPDATER),true) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4634 | ifdef OSRELEASED_DIRECTORY |
| 4635 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id |
| 4636 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version |
| 4637 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_ETC)/$(OSRELEASED_DIRECTORY)/system_version |
| 4638 | endif |
Tao Bao | a835f38 | 2019-07-18 15:55:30 -0700 | [diff] [blame] | 4639 | |
| 4640 | # Not checking in board_config.mk, since AB_OTA_PARTITIONS may be updated in Android.mk (e.g. to |
| 4641 | # additionally include radio or bootloader partitions). |
| 4642 | ifeq ($(AB_OTA_PARTITIONS),) |
| 4643 | $(error AB_OTA_PARTITIONS must be defined when using AB_OTA_UPDATER) |
| 4644 | endif |
| 4645 | endif |
| 4646 | |
| 4647 | ifneq ($(AB_OTA_PARTITIONS),) |
| 4648 | ifneq ($(AB_OTA_UPDATER),true) |
| 4649 | $(error AB_OTA_UPDATER must be true when defining AB_OTA_PARTITIONS) |
| 4650 | endif |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4651 | endif |
| 4652 | |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4653 | # Run fs_config while creating the target files package |
| 4654 | # $1: root directory |
| 4655 | # $2: add prefix |
| 4656 | define fs_config |
Luis Hector Chavez | 440da2d | 2018-02-07 09:49:52 -0800 | [diff] [blame] | 4657 | (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] | 4658 | endef |
| 4659 | |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 4660 | define filter-out-missing-vendor |
| 4661 | $(if $(INSTALLED_VENDORIMAGE_TARGET),$(1),$(filter-out vendor,$(1))) |
| 4662 | endef |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 4663 | define filter-out-missing-vendor_dlkm |
| 4664 | $(if $(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(1),$(filter-out vendor_dlkm,$(1))) |
| 4665 | endef |
| 4666 | define filter-out-missing-odm |
| 4667 | $(if $(INSTALLED_ODMIMAGE_TARGET),$(1),$(filter-out odm,$(1))) |
| 4668 | endef |
| 4669 | define filter-out-missing-odm_dlkm |
| 4670 | $(if $(INSTALLED_ODM_DLKMIMAGE_TARGET),$(1),$(filter-out odm_dlkm,$(1))) |
| 4671 | endef |
| 4672 | # Filter out vendor,vendor_dlkm,odm,odm_dlkm from the list for AOSP targets. |
| 4673 | # $(1): list |
| 4674 | define filter-out-missing-partitions |
| 4675 | $(call filter-out-missing-vendor,\ |
| 4676 | $(call filter-out-missing-vendor_dlkm,\ |
| 4677 | $(call filter-out-missing-odm,\ |
| 4678 | $(call filter-out-missing-odm_dlkm,$(1))))) |
| 4679 | endef |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 4680 | |
| 4681 | # Information related to dynamic partitions and virtual A/B. This information |
| 4682 | # is needed for building the super image (see dump-super-image-info) and |
| 4683 | # building OTA packages. |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4684 | # $(1): file |
| 4685 | define dump-dynamic-partitions-info |
| 4686 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)), \ |
| 4687 | echo "use_dynamic_partitions=true" >> $(1)) |
| 4688 | $(if $(filter true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)), \ |
| 4689 | echo "dynamic_partition_retrofit=true" >> $(1)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4690 | echo "lpmake=$(notdir $(LPMAKE))" >> $(1) |
| 4691 | $(if $(filter true,$(PRODUCT_BUILD_SUPER_PARTITION)), $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 4692 | echo "build_super_partition=true" >> $(1))) |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 4693 | $(if $(BUILDING_SUPER_EMPTY_IMAGE), \ |
| 4694 | echo "build_super_empty_partition=true" >> $(1)) |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 4695 | $(if $(filter true,$(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE)), \ |
| 4696 | echo "build_retrofit_dynamic_partitions_ota_package=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4697 | echo "super_metadata_device=$(BOARD_SUPER_PARTITION_METADATA_DEVICE)" >> $(1) |
| 4698 | $(if $(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 4699 | echo "super_block_devices=$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)" >> $(1)) |
| 4700 | $(foreach device,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 4701 | echo "super_$(device)_device_size=$(BOARD_SUPER_PARTITION_$(call to-upper,$(device))_DEVICE_SIZE)" >> $(1);) |
| 4702 | $(if $(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 4703 | 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] | 4704 | $(if $(BOARD_SUPER_PARTITION_GROUPS), |
| 4705 | echo "super_partition_groups=$(BOARD_SUPER_PARTITION_GROUPS)" >> $(1)) |
| 4706 | $(foreach group,$(BOARD_SUPER_PARTITION_GROUPS), \ |
| 4707 | echo "super_$(group)_group_size=$(BOARD_$(call to-upper,$(group))_SIZE)" >> $(1); \ |
| 4708 | $(if $(BOARD_$(call to-upper,$(group))_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 4709 | 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] | 4710 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)), \ |
| 4711 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 4712 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)), \ |
| 4713 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 4714 | $(if $(filter true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)), \ |
| 4715 | echo "super_image_in_update_package=true" >> $(1)) |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4716 | $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 4717 | echo "super_partition_size=$(BOARD_SUPER_PARTITION_SIZE)" >> $(1)) |
| 4718 | $(if $(BOARD_SUPER_PARTITION_ALIGNMENT), \ |
| 4719 | echo "super_partition_alignment=$(BOARD_SUPER_PARTITION_ALIGNMENT)" >> $(1)) |
| 4720 | $(if $(BOARD_SUPER_PARTITION_WARN_LIMIT), \ |
| 4721 | echo "super_partition_warn_limit=$(BOARD_SUPER_PARTITION_WARN_LIMIT)" >> $(1)) |
| 4722 | $(if $(BOARD_SUPER_PARTITION_ERROR_LIMIT), \ |
| 4723 | echo "super_partition_error_limit=$(BOARD_SUPER_PARTITION_ERROR_LIMIT)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 4724 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA)), \ |
| 4725 | echo "virtual_ab=true" >> $(1)) |
Kelvin Zhang | 239a79a | 2021-01-15 13:47:52 -0500 | [diff] [blame] | 4726 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_COMPRESSION)), \ |
| 4727 | echo "virtual_ab_compression=true" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 4728 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA_RETROFIT)), \ |
| 4729 | echo "virtual_ab_retrofit=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4730 | endef |
| 4731 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4732 | # By conditionally including the dependency of the target files package on the |
| 4733 | # full system image deps, we speed up builds that do not build the system |
| 4734 | # image. |
| 4735 | ifdef BUILDING_SYSTEM_IMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4736 | $(BUILT_TARGET_FILES_PACKAGE): $(FULL_SYSTEMIMAGE_DEPS) |
| 4737 | endif |
| 4738 | |
| 4739 | ifdef BUILDING_USERDATA_IMAGE |
| 4740 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_USERDATAIMAGE_FILES) |
| 4741 | endif |
| 4742 | |
| 4743 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 4744 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEMOTHERIMAGE_FILES) |
| 4745 | endif |
| 4746 | |
| 4747 | ifdef BUILDING_VENDOR_BOOT_IMAGE |
| 4748 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_RAMDISK_FILES) |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 4749 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
Colin Cross | e643120 | 2021-02-24 11:44:55 -0800 | [diff] [blame] | 4750 | # The vendor ramdisk may be built from the recovery ramdisk. |
| 4751 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
| 4752 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 4753 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4754 | endif |
| 4755 | |
| 4756 | ifdef BUILDING_RECOVERY_IMAGE |
| 4757 | # 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] | 4758 | # BUILT_TARGET_FILES_PACKAGE dependencies because currently there're cp/rsync/rm |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4759 | # commands in build-recoveryimage-target, which would touch the files under |
| 4760 | # TARGET_RECOVERY_OUT and race with packaging target-files.zip. |
| 4761 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 4762 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTIMAGE_TARGET) |
| 4763 | else |
| 4764 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_RECOVERYIMAGE_TARGET) |
| 4765 | endif |
| 4766 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RECOVERYIMAGE_FILES) |
| 4767 | endif |
| 4768 | |
| 4769 | # Conditionally depend on the image files if the image is being built so the |
| 4770 | # target-files.zip rule doesn't wait on the image creation rule, or the image |
| 4771 | # if it is coming from a prebuilt. |
| 4772 | |
| 4773 | ifdef BUILDING_VENDOR_IMAGE |
| 4774 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDORIMAGE_FILES) |
| 4775 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 4776 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_VENDORIMAGE_TARGET) |
| 4777 | endif |
| 4778 | |
| 4779 | ifdef BUILDING_PRODUCT_IMAGE |
| 4780 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_PRODUCTIMAGE_FILES) |
| 4781 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 4782 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_PRODUCTIMAGE_TARGET) |
| 4783 | endif |
| 4784 | |
| 4785 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 4786 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
| 4787 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 4788 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
| 4789 | endif |
| 4790 | |
| 4791 | ifdef BUILDING_BOOT_IMAGE |
| 4792 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RAMDISK_FILES) |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 4793 | endif |
| 4794 | 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] | 4795 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTIMAGE_TARGET) |
| 4796 | endif |
| 4797 | |
| 4798 | ifdef BUILDING_ODM_IMAGE |
| 4799 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_ODMIMAGE_FILES) |
| 4800 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 4801 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_ODMIMAGE_TARGET) |
| 4802 | endif |
| 4803 | |
| 4804 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 4805 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 4806 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4807 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
| 4808 | endif |
| 4809 | |
| 4810 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 4811 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_ODM_DLKMIMAGE_FILES) |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 4812 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4813 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4814 | endif |
| 4815 | |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4816 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4817 | MK_VBMETA_BOOT_KERNEL_CMDLINE_SH := device/generic/goldfish/tools/mk_vbmeta_boot_params.sh |
| 4818 | $(BUILT_TARGET_FILES_PACKAGE): $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4819 | endif |
| 4820 | |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 4821 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 4822 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTLOADER_MODULE) |
Ram Muthiah | 9fe40ca | 2020-08-31 12:29:09 -0700 | [diff] [blame] | 4823 | droidcore: $(INSTALLED_BOOTLOADER_MODULE) |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 4824 | endif |
| 4825 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4826 | # Depending on the various images guarantees that the underlying |
| 4827 | # directories are up-to-date. |
| 4828 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4829 | $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 4830 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4831 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4832 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4833 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4834 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4835 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 4836 | $(INSTALLED_KERNEL_TARGET) \ |
Enrico Granata | 1605938 | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 4837 | $(INSTALLED_RAMDISK_TARGET) \ |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 4838 | $(INSTALLED_DTBIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4839 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 4840 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 4841 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 4842 | $(BOARD_RECOVERY_ACPIO) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4843 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 4844 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 4845 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4846 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4847 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4848 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4849 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4850 | $(LPMAKE) \ |
| 4851 | $(SELINUX_FC) \ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4852 | $(INSTALLED_MISC_INFO_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4853 | $(APKCERTS_FILE) \ |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 4854 | $(SOONG_APEX_KEYS_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4855 | $(SOONG_ZIP) \ |
| 4856 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4857 | $(ADD_IMG_TO_TARGET_FILES) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 4858 | $(MAKE_RECOVERY_PATCH) \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4859 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 4860 | $(BUILT_KERNEL_VERSION_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4861 | | $(ACP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4862 | @echo "Package target files: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4863 | $(hide) rm -rf $@ $@.list $(zip_root) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4864 | $(hide) mkdir -p $(dir $@) $(zip_root) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 4865 | 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] | 4866 | @# Components of the recovery image |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4867 | $(hide) mkdir -p $(zip_root)/$(PRIVATE_RECOVERY_OUT) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 4868 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 4869 | # recovery ramdisk in vendor_boot. |
| 4870 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4871 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4872 | $(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/$(PRIVATE_RECOVERY_OUT)/RAMDISK) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 4873 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4874 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 4875 | ifneq (,$(filter true,$(BOARD_USES_RECOVERY_AS_BOOT))) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 4876 | cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 4877 | else ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 4878 | cp $(firstword $(INSTALLED_KERNEL_TARGET)) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/kernel |
| 4879 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4880 | endif |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 4881 | 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] | 4882 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4883 | 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] | 4884 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 4885 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 4886 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4887 | cp $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 4888 | else |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4889 | cp $(BOARD_PREBUILT_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 4890 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4891 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 4892 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4893 | cp $(BOARD_RECOVERY_ACPIO) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_acpio |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 4894 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 4895 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4896 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 4897 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 4898 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 4899 | ifdef INTERNAL_KERNEL_CMDLINE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4900 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/cmdline |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 4901 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 4902 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4903 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4904 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4905 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4906 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4907 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4908 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 4909 | endif # not (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4910 | 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] | 4911 | @# Components of the boot image |
| 4912 | $(hide) mkdir -p $(zip_root)/BOOT |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 4913 | $(hide) mkdir -p $(zip_root)/ROOT |
| 4914 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4915 | $(TARGET_ROOT_OUT),$(zip_root)/ROOT) |
Tom Cherry | 3871f0f | 2018-11-06 14:23:44 -0800 | [diff] [blame] | 4916 | @# If we are using recovery as boot, this is already done when processing recovery. |
| 4917 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 4918 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4919 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4920 | $(TARGET_RAMDISK_OUT),$(zip_root)/BOOT/RAMDISK) |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 4921 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4922 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 4923 | $(hide) cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4924 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 4925 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 4926 | echo "$(GENERIC_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 4927 | else ifndef INSTALLED_VENDOR_BOOTIMAGE_TARGET # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 4928 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4929 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4930 | cp $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4931 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 4932 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4933 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/BOOT/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 4934 | endif |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4935 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4936 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4937 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4938 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4939 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4940 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 4941 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4942 | endif # BOARD_USES_RECOVERY_AS_BOOT not true |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 4943 | $(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\ |
| 4944 | mkdir -p $(zip_root)/RADIO; \ |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4945 | cp $(t) $(zip_root)/RADIO/$(notdir $(t));) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4946 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 4947 | mkdir -p $(zip_root)/VENDOR_BOOT |
| 4948 | $(call package_files-copy-root, \ |
| 4949 | $(TARGET_VENDOR_RAMDISK_OUT),$(zip_root)/VENDOR_BOOT/RAMDISK) |
| 4950 | ifdef INSTALLED_DTBIMAGE_TARGET |
| 4951 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_BOOT/dtb |
| 4952 | endif |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 4953 | ifdef INTERNAL_VENDOR_BOOTCONFIG_TARGET |
| 4954 | cp $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) $(zip_root)/VENDOR_BOOT/vendor_bootconfig |
| 4955 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4956 | ifdef BOARD_KERNEL_BASE |
| 4957 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/VENDOR_BOOT/base |
| 4958 | endif |
| 4959 | ifdef BOARD_KERNEL_PAGESIZE |
| 4960 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_BOOT/pagesize |
| 4961 | endif |
| 4962 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/VENDOR_BOOT/vendor_cmdline |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 4963 | ifdef INTERNAL_VENDOR_RAMDISK_FRAGMENTS |
| 4964 | echo "$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)" > "$(zip_root)/VENDOR_BOOT/vendor_ramdisk_fragments" |
| 4965 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 4966 | mkdir -p $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment); \ |
| 4967 | echo "$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)" > "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/mkbootimg_args"; \ |
| 4968 | $(eval prebuilt_ramdisk := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 4969 | $(if $(prebuilt_ramdisk), \ |
| 4970 | cp "$(prebuilt_ramdisk)" "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/prebuilt_ramdisk";, \ |
| 4971 | $(call package_files-copy-root, \ |
| 4972 | $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR), \ |
| 4973 | $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/RAMDISK); \ |
| 4974 | )) |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 4975 | endif # INTERNAL_VENDOR_RAMDISK_FRAGMENTS != "" |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4976 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4977 | ifdef BUILDING_SYSTEM_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4978 | @# Contents of the system image |
| 4979 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4980 | $(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4981 | endif |
| 4982 | ifdef BUILDING_USERDATA_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4983 | @# Contents of the data image |
| 4984 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4985 | $(TARGET_OUT_DATA),$(zip_root)/DATA) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4986 | endif |
| 4987 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 4988 | @# Contents of the vendor image |
| 4989 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4990 | $(TARGET_OUT_VENDOR),$(zip_root)/VENDOR) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 4991 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4992 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4993 | @# Contents of the product image |
| 4994 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4995 | $(TARGET_OUT_PRODUCT),$(zip_root)/PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4996 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4997 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 4998 | @# Contents of the system_ext image |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4999 | $(hide) $(call package_files-copy-root, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5000 | $(TARGET_OUT_SYSTEM_EXT),$(zip_root)/SYSTEM_EXT) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5001 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5002 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5003 | @# Contents of the odm image |
| 5004 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5005 | $(TARGET_OUT_ODM),$(zip_root)/ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5006 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5007 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 5008 | @# Contents of the vendor_dlkm image |
| 5009 | $(hide) $(call package_files-copy-root, \ |
| 5010 | $(TARGET_OUT_VENDOR_DLKM),$(zip_root)/VENDOR_DLKM) |
| 5011 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5012 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 5013 | @# Contents of the odm_dlkm image |
| 5014 | $(hide) $(call package_files-copy-root, \ |
| 5015 | $(TARGET_OUT_ODM_DLKM),$(zip_root)/ODM_DLKM) |
| 5016 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5017 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 5018 | @# Contents of the system_other image |
| 5019 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5020 | $(TARGET_OUT_SYSTEM_OTHER),$(zip_root)/SYSTEM_OTHER) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 5021 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5022 | @# Extra contents of the OTA package |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5023 | $(hide) mkdir -p $(zip_root)/OTA |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5024 | $(hide) cp $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/ |
Enrico Granata | 1605938 | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 5025 | ifdef BUILDING_RAMDISK_IMAGE |
| 5026 | ifeq (true,$(BOARD_IMG_USE_RAMDISK)) |
| 5027 | @# Contents of the ramdisk image |
| 5028 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5029 | $(hide) cp $(INSTALLED_RAMDISK_TARGET) $(zip_root)/IMAGES/ |
| 5030 | endif |
| 5031 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5032 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 5033 | ifneq ($(built_ota_tools),) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5034 | $(hide) mkdir -p $(zip_root)/OTA/bin |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5035 | $(hide) cp $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/ |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5036 | endif |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 5037 | endif |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5038 | @# 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] | 5039 | @# build them. |
| 5040 | $(hide) mkdir -p $(zip_root)/META |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5041 | $(hide) cp $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 5042 | $(hide) cp $(SOONG_APEX_KEYS_FILE) $(zip_root)/META/apexkeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5043 | ifneq ($(tool_extension),) |
| 5044 | $(hide) cp $(PRIVATE_TOOL_EXTENSION) $(zip_root)/META/ |
| 5045 | endif |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 5046 | $(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5047 | $(hide) cp $(SELINUX_FC) $(zip_root)/META/file_contexts.bin |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5048 | $(hide) cp $(INSTALLED_MISC_INFO_TARGET) $(zip_root)/META/misc_info.txt |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5049 | ifneq ($(PRODUCT_SYSTEM_BASE_FS_PATH),) |
| 5050 | $(hide) cp $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 5051 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 5052 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5053 | ifneq ($(PRODUCT_VENDOR_BASE_FS_PATH),) |
| 5054 | $(hide) cp $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 5055 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 5056 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5057 | ifneq ($(PRODUCT_PRODUCT_BASE_FS_PATH),) |
| 5058 | $(hide) cp $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 5059 | $(zip_root)/META/$(notdir $(PRODUCT_PRODUCT_BASE_FS_PATH)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5060 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5061 | ifneq ($(PRODUCT_SYSTEM_EXT_BASE_FS_PATH),) |
| 5062 | $(hide) cp $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 5063 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5064 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5065 | ifneq ($(PRODUCT_ODM_BASE_FS_PATH),) |
| 5066 | $(hide) cp $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 5067 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_BASE_FS_PATH)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5068 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5069 | ifneq ($(PRODUCT_VENDOR_DLKM_BASE_FS_PATH),) |
| 5070 | $(hide) cp $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 5071 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH)) |
| 5072 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5073 | ifneq ($(PRODUCT_ODM_DLKM_BASE_FS_PATH),) |
| 5074 | $(hide) cp $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 5075 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_DLKM_BASE_FS_PATH)) |
| 5076 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5077 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 5078 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 5079 | $(hide) PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 5080 | $(MAKE_RECOVERY_PATCH) $(zip_root) $(zip_root) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 5081 | endif |
Bill Peckham | c0f413f | 2019-11-07 11:27:02 -0800 | [diff] [blame] | 5082 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 5083 | ifeq ($(AB_OTA_UPDATER),true) |
| 5084 | @# 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] | 5085 | $(hide) cp $(TOPDIR)system/update_engine/update_engine.conf $(zip_root)/META/update_engine_config.txt |
Alex Deymo | 49be2b1 | 2015-10-22 18:15:27 -0700 | [diff] [blame] | 5086 | $(hide) for part in $(AB_OTA_PARTITIONS); do \ |
Alex Deymo | 8925d33 | 2015-10-01 17:38:09 -0700 | [diff] [blame] | 5087 | echo "$${part}" >> $(zip_root)/META/ab_partitions.txt; \ |
| 5088 | done |
Sen Jiang | 8f22e2a | 2015-11-12 13:53:25 -0800 | [diff] [blame] | 5089 | $(hide) for conf in $(AB_OTA_POSTINSTALL_CONFIG); do \ |
| 5090 | echo "$${conf}" >> $(zip_root)/META/postinstall_config.txt; \ |
| 5091 | done |
Bertrand SIMONNET | 4af7259 | 2015-10-08 15:32:40 -0700 | [diff] [blame] | 5092 | ifdef OSRELEASED_DIRECTORY |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5093 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id $(zip_root)/META/product_id.txt |
| 5094 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version $(zip_root)/META/product_version.txt |
| 5095 | $(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] | 5096 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 5097 | endif |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 5098 | ifeq ($(BREAKPAD_GENERATE_SYMBOLS),true) |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 5099 | @# If breakpad symbols have been generated, add them to the zip. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 5100 | $(hide) cp -R $(TARGET_OUT_BREAKPAD) $(zip_root)/BREAKPAD |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 5101 | endif |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 5102 | ifdef BOARD_PREBUILT_VENDORIMAGE |
| 5103 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5104 | $(hide) cp $(INSTALLED_VENDORIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5105 | endif |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5106 | ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 5107 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5108 | $(hide) cp $(INSTALLED_PRODUCTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5109 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5110 | ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5111 | $(hide) mkdir -p $(zip_root)/IMAGES |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5112 | $(hide) cp $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5113 | endif |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 5114 | ifneq (,$(INTERNAL_PREBUILT_BOOTIMAGE) $(filter true,$(BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES))) |
| 5115 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 5116 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5117 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 5118 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 5119 | endif # INTERNAL_PREBUILT_BOOTIMAGE != "" || BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES == true |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5120 | ifdef BOARD_PREBUILT_ODMIMAGE |
| 5121 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5122 | $(hide) cp $(INSTALLED_ODMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5123 | endif |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 5124 | ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5125 | $(hide) mkdir -p $(zip_root)/IMAGES |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 5126 | $(hide) cp $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 5127 | endif |
| 5128 | ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 5129 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5130 | $(hide) cp $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5131 | endif |
Yueyao Zhu | 889ee5e | 2017-05-12 17:50:46 -0700 | [diff] [blame] | 5132 | ifdef BOARD_PREBUILT_DTBOIMAGE |
Tao Bao | c633ed0 | 2017-05-30 21:46:33 -0700 | [diff] [blame] | 5133 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5134 | $(hide) cp $(INSTALLED_DTBOIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 5135 | endif # BOARD_PREBUILT_DTBOIMAGE |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5136 | ifdef BOARD_PREBUILT_PVMFWIMAGE |
| 5137 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5138 | $(hide) cp $(INSTALLED_PVMFWIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
| 5139 | endif # BOARD_PREBUILT_PVMFWIMAGE |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5140 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 5141 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 5142 | $(hide) cp $(INSTALLED_BOOTLOADER_MODULE) $(zip_root)/IMAGES/ |
| 5143 | endif |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5144 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 5145 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 5146 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 5147 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),cp $(image) $(zip_root)/PREBUILT_IMAGES/;)) |
| 5148 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Tao Bao | 95a95c3 | 2017-06-16 15:30:23 -0700 | [diff] [blame] | 5149 | @# The radio images in BOARD_PACK_RADIOIMAGES will be additionally copied from RADIO/ into |
| 5150 | @# IMAGES/, which then will be added into <product>-img.zip. Such images must be listed in |
| 5151 | @# INSTALLED_RADIOIMAGE_TARGET. |
| 5152 | $(hide) $(foreach part,$(BOARD_PACK_RADIOIMAGES), \ |
| 5153 | echo $(part) >> $(zip_root)/META/pack_radioimages.txt;) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5154 | @# Run fs_config on all the system, vendor, boot ramdisk, |
| 5155 | @# and recovery ramdisk files in the zip, and save the output |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5156 | ifdef BUILDING_SYSTEM_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5157 | $(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] | 5158 | endif |
| 5159 | ifdef BUILDING_VENDOR_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5160 | $(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.txt |
| 5161 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5162 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5163 | $(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_config.txt |
| 5164 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5165 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 5166 | $(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] | 5167 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5168 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5169 | $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt |
| 5170 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5171 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 5172 | $(hide) $(call fs_config,$(zip_root)/VENDOR_DLKM,vendor_dlkm/) > $(zip_root)/META/vendor_dlkm_filesystem_config.txt |
| 5173 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5174 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 5175 | $(hide) $(call fs_config,$(zip_root)/ODM_DLKM,odm_dlkm/) > $(zip_root)/META/odm_dlkm_filesystem_config.txt |
| 5176 | endif |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 5177 | @# ROOT always contains the files for the root under normal boot. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5178 | $(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] | 5179 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 5180 | @# 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] | 5181 | $(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] | 5182 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5183 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 5184 | $(call fs_config,$(zip_root)/VENDOR_BOOT/RAMDISK,) > $(zip_root)/META/vendor_boot_filesystem_config.txt |
| 5185 | endif |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 5186 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 5187 | @# 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] | 5188 | $(hide) $(call fs_config,$(zip_root)/BOOT/RAMDISK,) > $(zip_root)/META/boot_filesystem_config.txt |
| 5189 | endif |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5190 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 5191 | $(hide) $(call fs_config,$(zip_root)/RECOVERY/RAMDISK,) > $(zip_root)/META/recovery_filesystem_config.txt |
| 5192 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5193 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5194 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_OTHER,system/) > $(zip_root)/META/system_other_filesystem_config.txt |
| 5195 | endif |
Michael Schwartz | 4d9cb56 | 2017-04-04 13:01:18 -0700 | [diff] [blame] | 5196 | @# Metadata for compatibility verification. |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5197 | ifdef BUILT_KERNEL_CONFIGS_FILE |
| 5198 | $(hide) cp $(BUILT_KERNEL_CONFIGS_FILE) $(zip_root)/META/kernel_configs.txt |
| 5199 | endif |
| 5200 | ifdef BUILT_KERNEL_VERSION_FILE |
| 5201 | $(hide) cp $(BUILT_KERNEL_VERSION_FILE) $(zip_root)/META/kernel_version.txt |
| 5202 | endif |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 5203 | rm -rf $(zip_root)/META/dynamic_partitions_info.txt |
| 5204 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 5205 | $(call dump-dynamic-partitions-info, $(zip_root)/META/dynamic_partitions_info.txt) |
| 5206 | endif |
Tao Bao | cbd6d49 | 2019-10-07 22:46:02 -0700 | [diff] [blame] | 5207 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
| 5208 | $(ADD_IMG_TO_TARGET_FILES) -a -v -p $(HOST_OUT) $(zip_root) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5209 | ifeq ($(BUILD_QEMU_IMAGES),true) |
| 5210 | $(hide) AVBTOOL=$(AVBTOOL) $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(zip_root)/IMAGES/vbmeta.img \ |
| 5211 | $(zip_root)/IMAGES/system.img $(zip_root)/IMAGES/VerifiedBootParams.textproto |
| 5212 | endif |
Alex Deymo | 92cfd6f | 2016-01-26 18:47:44 -0800 | [diff] [blame] | 5213 | @# Zip everything up, preserving symlinks and placing META/ files first to |
| 5214 | @# help early validation of the .zip file while uploading it. |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 5215 | $(hide) find $(zip_root)/META | sort >$@.list |
Nan Zhang | cabecd9 | 2017-03-20 18:22:43 -0700 | [diff] [blame] | 5216 | $(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] | 5217 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(zip_root) -r $@.list |
Doug Zongker | 283e2a1 | 2010-03-15 17:52:32 -0700 | [diff] [blame] | 5218 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 5219 | .PHONY: target-files-package |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5220 | target-files-package: $(BUILT_TARGET_FILES_PACKAGE) |
| 5221 | |
Ying Wang | 4709d7c | 2014-04-14 17:25:43 -0700 | [diff] [blame] | 5222 | $(call dist-for-goals, target-files-package, $(BUILT_TARGET_FILES_PACKAGE)) |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 5223 | |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 5224 | # ----------------------------------------------------------------- |
| 5225 | # NDK Sysroot Package |
| 5226 | NDK_SYSROOT_TARGET := $(PRODUCT_OUT)/ndk_sysroot.tar.bz2 |
Dan Willemsen | 14e1026 | 2018-06-17 21:54:21 -0700 | [diff] [blame] | 5227 | $(NDK_SYSROOT_TARGET): $(SOONG_OUT_DIR)/ndk.timestamp |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 5228 | @echo Package NDK sysroot... |
| 5229 | $(hide) tar cjf $@ -C $(SOONG_OUT_DIR) ndk |
| 5230 | |
| 5231 | $(call dist-for-goals,sdk,$(NDK_SYSROOT_TARGET)) |
| 5232 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 5233 | ifeq ($(build_ota_package),true) |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 5234 | # ----------------------------------------------------------------- |
| 5235 | # OTA update package |
| 5236 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5237 | # $(1): output file |
| 5238 | # $(2): additional args |
| 5239 | define build-ota-package-target |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5240 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 5241 | $(OTA_FROM_TARGET_FILES) \ |
| 5242 | --verbose \ |
| 5243 | --extracted_input_target_files $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) \ |
| 5244 | --path $(HOST_OUT) \ |
| 5245 | $(if $(OEM_OTA_CONFIG), --oem_settings $(OEM_OTA_CONFIG)) \ |
| 5246 | $(2) \ |
| 5247 | $(BUILT_TARGET_FILES_PACKAGE) $(1) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5248 | endef |
| 5249 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5250 | product_name := $(TARGET_PRODUCT) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5251 | ifeq ($(TARGET_BUILD_TYPE),debug) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5252 | product_name := $(product_name)_debug |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5253 | endif |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5254 | name := $(product_name)-ota-$(FILE_NAME_TAG) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5255 | |
| 5256 | INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 5257 | INTERNAL_OTA_METADATA := $(PRODUCT_OUT)/ota_metadata |
| 5258 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 5259 | $(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 5260 | $(INTERNAL_OTA_PACKAGE_TARGET): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_OTA_METADATA) |
Yifan Hong | 5c1b199 | 2020-10-08 09:36:29 -0700 | [diff] [blame] | 5261 | $(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] | 5262 | @echo "Package OTA: $@" |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 5263 | $(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] | 5264 | |
| 5265 | .PHONY: otapackage |
| 5266 | otapackage: $(INTERNAL_OTA_PACKAGE_TARGET) |
| 5267 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 5268 | ifeq ($(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE),true) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5269 | name := $(product_name)-ota-retrofit-$(FILE_NAME_TAG) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5270 | |
| 5271 | INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5272 | $(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] | 5273 | $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET): \ |
| 5274 | $(BUILT_TARGET_FILES_PACKAGE) \ |
Yifan Hong | 5c1b199 | 2020-10-08 09:36:29 -0700 | [diff] [blame] | 5275 | $(OTA_FROM_TARGET_FILES) \ |
| 5276 | $(INTERNAL_OTATOOLS_FILES) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5277 | @echo "Package OTA (retrofit dynamic partitions): $@" |
| 5278 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --retrofit_dynamic_partitions) |
| 5279 | |
| 5280 | .PHONY: otardppackage |
| 5281 | |
| 5282 | otapackage otardppackage: $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET) |
| 5283 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 5284 | endif # BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 5285 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 5286 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
| 5287 | name := $(product_name)-partial-ota-$(FILE_NAME_TAG) |
| 5288 | |
| 5289 | INTERNAL_OTA_PARTIAL_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 5290 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
| 5291 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES) |
| 5292 | @echo "Package partial OTA: $@" |
| 5293 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --partial "$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)") |
| 5294 | |
| 5295 | .PHONY: partialotapackage |
| 5296 | partialotapackage: $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET) |
| 5297 | |
| 5298 | endif # BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST |
| 5299 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 5300 | endif # build_ota_package |
Ying Wang | f8824af | 2014-06-03 14:07:27 -0700 | [diff] [blame] | 5301 | |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 5302 | # ----------------------------------------------------------------- |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 5303 | # A zip of the appcompat directory containing logs |
| 5304 | APPCOMPAT_ZIP := $(PRODUCT_OUT)/appcompat.zip |
| 5305 | # 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] | 5306 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 5307 | $(APPCOMPAT_ZIP): $(FULL_SYSTEMIMAGE_DEPS) \ |
| 5308 | $(INTERNAL_RAMDISK_FILES) \ |
| 5309 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 5310 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 5311 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 5312 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 5313 | endif |
| 5314 | $(APPCOMPAT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,appcompat)/filelist |
| 5315 | $(APPCOMPAT_ZIP): $(SOONG_ZIP) |
| 5316 | @echo "appcompat logs: $@" |
| 5317 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 5318 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/appcompat $(dir $(PRIVATE_LIST_FILE)) |
| 5319 | $(hide) find $(PRODUCT_OUT)/appcompat | sort >$(PRIVATE_LIST_FILE) |
| 5320 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/appcompat -l $(PRIVATE_LIST_FILE) |
| 5321 | |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 5322 | # The mac build doesn't build dex2oat, so create the zip file only if the build OS is linux. |
| 5323 | ifeq ($(BUILD_OS),linux) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame^] | 5324 | ifneq ($(DEX2OAT),) |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 5325 | dexpreopt_tools_deps := $(DEXPREOPT_GEN_DEPS) $(DEXPREOPT_GEN) $(AAPT2) |
| 5326 | DEXPREOPT_TOOLS_ZIP := $(PRODUCT_OUT)/dexpreopt_tools.zip |
| 5327 | $(DEXPREOPT_TOOLS_ZIP): $(dexpreopt_tools_deps) |
| 5328 | $(DEXPREOPT_TOOLS_ZIP): PRIVATE_DEXPREOPT_TOOLS_DEPS := $(dexpreopt_tools_deps) |
| 5329 | $(DEXPREOPT_TOOLS_ZIP): $(SOONG_ZIP) |
| 5330 | $(hide) mkdir -p $(dir $@) |
| 5331 | $(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^] | 5332 | endif # DEX2OAT is set |
| 5333 | endif # BUILD_OS == linux |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 5334 | |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 5335 | DEXPREOPT_CONFIG_ZIP := $(PRODUCT_OUT)/dexpreopt_config.zip |
| 5336 | $(DEXPREOPT_CONFIG_ZIP): $(FULL_SYSTEMIMAGE_DEPS) \ |
| 5337 | $(INTERNAL_RAMDISK_FILES) \ |
| 5338 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 5339 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 5340 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 5341 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 5342 | $(DEX_PREOPT_CONFIG_FOR_MAKE) \ |
| 5343 | $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) |
| 5344 | |
| 5345 | $(DEXPREOPT_CONFIG_ZIP): $(SOONG_ZIP) |
| 5346 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 5347 | ifneq (,$(DEX_PREOPT_CONFIG_FOR_MAKE)) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 5348 | $(hide) cp $(DEX_PREOPT_CONFIG_FOR_MAKE) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 5349 | endif |
| 5350 | ifneq (,$(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE)) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 5351 | $(hide) cp $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 5352 | endif |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 5353 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/dexpreopt_config -D $(PRODUCT_OUT)/dexpreopt_config |
| 5354 | |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 5355 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5356 | # A zip of the symbols directory. Keep the full paths to make it |
| 5357 | # more obvious where these files came from. |
| 5358 | # |
| 5359 | name := $(TARGET_PRODUCT) |
| 5360 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5361 | name := $(name)_debug |
| 5362 | endif |
| 5363 | name := $(name)-symbols-$(FILE_NAME_TAG) |
| 5364 | |
| 5365 | SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 5366 | # 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] | 5367 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 5368 | $(SYMBOLS_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Ying Wang | da3b972 | 2014-10-24 11:36:59 -0700 | [diff] [blame] | 5369 | endif |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 5370 | $(SYMBOLS_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,symbols)/filelist |
| 5371 | $(SYMBOLS_ZIP): $(SOONG_ZIP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5372 | @echo "Package symbols: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 5373 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 5374 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_UNSTRIPPED) $(dir $(PRIVATE_LIST_FILE)) |
Jiyong Park | 88e0980 | 2019-03-21 15:19:16 +0900 | [diff] [blame] | 5375 | $(hide) find -L $(TARGET_OUT_UNSTRIPPED) -type f | sort >$(PRIVATE_LIST_FILE) |
Colin Cross | 8d34244 | 2019-05-07 11:47:13 -0700 | [diff] [blame] | 5376 | $(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] | 5377 | # ----------------------------------------------------------------- |
| 5378 | # A zip of the coverage directory. |
| 5379 | # |
Oliver Nguyen | e91ab23 | 2019-04-30 15:14:44 -0700 | [diff] [blame] | 5380 | name := gcov-report-files-all |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 5381 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5382 | name := $(name)_debug |
| 5383 | endif |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 5384 | COVERAGE_ZIP := $(PRODUCT_OUT)/$(name).zip |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 5385 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 5386 | $(COVERAGE_ZIP): $(INTERNAL_ALLIMAGES_FILES) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 5387 | endif |
| 5388 | $(COVERAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,coverage)/filelist |
| 5389 | $(COVERAGE_ZIP): $(SOONG_ZIP) |
| 5390 | @echo "Package coverage: $@" |
| 5391 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 5392 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_COVERAGE) $(dir $(PRIVATE_LIST_FILE)) |
| 5393 | $(hide) find $(TARGET_OUT_COVERAGE) | sort >$(PRIVATE_LIST_FILE) |
| 5394 | $(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] | 5395 | |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 5396 | #------------------------------------------------------------------ |
| 5397 | # Export the LLVM profile data tool and dependencies for Clang coverage processing |
| 5398 | # |
| 5399 | ifeq (true,$(CLANG_COVERAGE)) |
| 5400 | LLVM_PROFDATA := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/bin/llvm-profdata |
| 5401 | LIBCXX := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/lib64/libc++.so.1 |
| 5402 | PROFDATA_ZIP := $(PRODUCT_OUT)/llvm-profdata.zip |
| 5403 | $(PROFDATA_ZIP): $(SOONG_ZIP) |
| 5404 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION) -f $(LLVM_PROFDATA) -f $(LIBCXX) |
| 5405 | |
| 5406 | $(call dist-for-goals,droidcore,$(PROFDATA_ZIP)) |
| 5407 | endif |
| 5408 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5409 | # ----------------------------------------------------------------- |
| 5410 | # A zip of the Android Apps. Not keeping full path so that we don't |
| 5411 | # include product names when distributing |
| 5412 | # |
| 5413 | name := $(TARGET_PRODUCT) |
| 5414 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5415 | name := $(name)_debug |
| 5416 | endif |
| 5417 | name := $(name)-apps-$(FILE_NAME_TAG) |
| 5418 | |
| 5419 | APPS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 5420 | $(APPS_ZIP): $(FULL_SYSTEMIMAGE_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5421 | @echo "Package apps: $@" |
| 5422 | $(hide) rm -rf $@ |
| 5423 | $(hide) mkdir -p $(dir $@) |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 5424 | $(hide) apps_to_zip=`find $(TARGET_OUT_APPS) $(TARGET_OUT_APPS_PRIVILEGED) -mindepth 2 -maxdepth 3 -name "*.apk"`; \ |
| 5425 | if [ -z "$$apps_to_zip" ]; then \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5426 | echo "No apps to zip up. Generating empty apps archive." ; \ |
| 5427 | a=$$(mktemp /tmp/XXXXXXX) && touch $$a && zip $@ $$a && zip -d $@ $$a; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 5428 | else \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5429 | zip -qjX $@ $$apps_to_zip; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 5430 | fi |
Guang Zhu | 0198d6e | 2010-04-23 11:54:37 -0700 | [diff] [blame] | 5431 | |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 5432 | ifeq (true,$(EMMA_INSTRUMENT)) |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 5433 | #------------------------------------------------------------------ |
| 5434 | # An archive of classes for use in generating code-coverage reports |
| 5435 | # These are the uninstrumented versions of any classes that were |
| 5436 | # to be instrumented. |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 5437 | # Any dependencies are set up later in build/make/core/main.mk. |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 5438 | |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 5439 | JACOCO_REPORT_CLASSES_ALL := $(PRODUCT_OUT)/jacoco-report-classes-all.jar |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5440 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco) |
| 5441 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_HOST_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco,HOST) |
| 5442 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_PROGUARD_USAGE_DIR := $(call intermediates-dir-for,PACKAGING,proguard_usage) |
| 5443 | $(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] | 5444 | $(JACOCO_REPORT_CLASSES_ALL) : |
| 5445 | @echo "Collecting uninstrumented classes" |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5446 | mkdir -p $(PRIVATE_TARGET_JACOCO_DIR) $(PRIVATE_HOST_JACOCO_DIR) $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) $(PRIVATE_HOST_PROGUARD_USAGE_DIR) |
| 5447 | $(SOONG_ZIP) -o $@ -L 0 \ |
| 5448 | -C $(PRIVATE_TARGET_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_JACOCO_DIR) \ |
| 5449 | -C $(PRIVATE_HOST_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_HOST_JACOCO_DIR) \ |
| 5450 | -C $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) \ |
| 5451 | -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] | 5452 | |
Jiyong Park | 3c87560 | 2021-01-21 12:46:56 +0900 | [diff] [blame] | 5453 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 5454 | $(JACOCO_REPORT_CLASSES_ALL): $(INTERNAL_ALLIMAGES_FILES) |
| 5455 | endif |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 5456 | endif # EMMA_INSTRUMENT=true |
| 5457 | |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 5458 | |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 5459 | #------------------------------------------------------------------ |
| 5460 | # A zip of Proguard obfuscation dictionary files. |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 5461 | # |
Ying Wang | c62c92c | 2013-08-28 18:38:25 -0700 | [diff] [blame] | 5462 | 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] | 5463 | # 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] | 5464 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 5465 | $(PROGUARD_DICT_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 5466 | endif |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5467 | $(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] | 5468 | $(PROGUARD_DICT_ZIP): $(SOONG_ZIP) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 5469 | @echo "Packaging Proguard obfuscation dictionary files." |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5470 | mkdir -p $(dir $@) $(PRIVATE_PACKAGING_DIR) |
| 5471 | $(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] | 5472 | |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 5473 | #------------------------------------------------------------------ |
| 5474 | # A zip of Proguard usage files. |
| 5475 | # |
| 5476 | PROGUARD_USAGE_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-usage-$(FILE_NAME_TAG).zip |
| 5477 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
| 5478 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 5479 | $(PROGUARD_USAGE_ZIP): \ |
| 5480 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 5481 | $(INSTALLED_RAMDISK_TARGET) \ |
| 5482 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 5483 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 5484 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 5485 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 5486 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 5487 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 5488 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
| 5489 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
| 5490 | $(updater_dep) |
| 5491 | endif |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5492 | $(PROGUARD_USAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard_usage.zip)/filelist |
| 5493 | $(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] | 5494 | $(PROGUARD_USAGE_ZIP): $(MERGE_ZIPS) |
| 5495 | @echo "Packaging Proguard usage files." |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 5496 | mkdir -p $(dir $@) $(PRIVATE_PACKAGING_DIR) $(dir $(PRIVATE_LIST_FILE)) |
| 5497 | find $(PRIVATE_PACKAGING_DIR) -name proguard_usage.zip > $(PRIVATE_LIST_FILE) |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 5498 | $(MERGE_ZIPS) $@ @$(PRIVATE_LIST_FILE) |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 5499 | |
| 5500 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 5501 | |
| 5502 | # Dump variables used by build_super_image.py (for building super.img and super_empty.img). |
| 5503 | # $(1): output file |
| 5504 | define dump-super-image-info |
| 5505 | $(call dump-dynamic-partitions-info,$(1)) |
| 5506 | $(if $(filter true,$(AB_OTA_UPDATER)), \ |
| 5507 | echo "ab_update=true" >> $(1)) |
| 5508 | endef |
| 5509 | |
| 5510 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
| 5511 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5512 | # ----------------------------------------------------------------- |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5513 | # super partition image (dist) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5514 | |
| 5515 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 5516 | |
| 5517 | # BOARD_SUPER_PARTITION_SIZE must be defined to build super image. |
| 5518 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 5519 | |
| 5520 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5521 | |
| 5522 | # For real devices and for dist builds, build super image from target files to an intermediate directory. |
| 5523 | INTERNAL_SUPERIMAGE_DIST_TARGET := $(call intermediates-dir-for,PACKAGING,super.img)/super.img |
| 5524 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): extracted_input_target_files := $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) |
| 5525 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): $(LPMAKE) $(BUILT_TARGET_FILES_PACKAGE) $(BUILD_SUPER_IMAGE) |
| 5526 | $(call pretty,"Target super fs image from target files: $@") |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 5527 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5528 | $(BUILD_SUPER_IMAGE) -v $(extracted_input_target_files) $@ |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5529 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5530 | # Skip packing it in dist package because it is in update package. |
| 5531 | ifneq (true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5532 | $(call dist-for-goals,dist_files,$(INTERNAL_SUPERIMAGE_DIST_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5533 | endif |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5534 | |
| 5535 | .PHONY: superimage_dist |
| 5536 | superimage_dist: $(INTERNAL_SUPERIMAGE_DIST_TARGET) |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5537 | |
| 5538 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5539 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 5540 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5541 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5542 | # ----------------------------------------------------------------- |
| 5543 | # super partition image for development |
| 5544 | |
| 5545 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 5546 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 5547 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
| 5548 | |
| 5549 | # Build super.img by using $(INSTALLED_*IMAGE_TARGET) to $(1) |
| 5550 | # $(1): built image path |
| 5551 | # $(2): misc_info.txt path; its contents should match expectation of build_super_image.py |
| 5552 | define build-superimage-target |
| 5553 | mkdir -p $(dir $(2)) |
| 5554 | rm -rf $(2) |
| 5555 | $(call dump-super-image-info,$(2)) |
| 5556 | $(foreach p,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 5557 | echo "$(p)_image=$(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)" >> $(2);) |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 5558 | $(if $(BUILDING_SYSTEM_OTHER_IMAGE), $(if $(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)), \ |
| 5559 | echo "system_other_image=$(INSTALLED_SYSTEMOTHERIMAGE_TARGET)" >> $(2);)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5560 | mkdir -p $(dir $(1)) |
| 5561 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5562 | $(BUILD_SUPER_IMAGE) -v $(2) $(1) |
| 5563 | endef |
| 5564 | |
| 5565 | INSTALLED_SUPERIMAGE_TARGET := $(PRODUCT_OUT)/super.img |
| 5566 | INSTALLED_SUPERIMAGE_DEPENDENCIES := $(LPMAKE) $(BUILD_SUPER_IMAGE) \ |
| 5567 | $(foreach p, $(BOARD_SUPER_PARTITION_PARTITION_LIST), $(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)) |
| 5568 | |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 5569 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 5570 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
| 5571 | INSTALLED_SUPERIMAGE_DEPENDENCIES += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
| 5572 | endif |
| 5573 | endif |
| 5574 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5575 | # If BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT is set, super.img is built from images in the |
| 5576 | # $(PRODUCT_OUT) directory, and is built to $(PRODUCT_OUT)/super.img. Also, it will |
| 5577 | # be built for non-dist builds. This is useful for devices that uses super.img directly, e.g. |
| 5578 | # virtual devices. |
| 5579 | ifeq (true,$(BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT)) |
| 5580 | $(INSTALLED_SUPERIMAGE_TARGET): $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 5581 | $(call pretty,"Target super fs image for debug: $@") |
| 5582 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 5583 | $(call intermediates-dir-for,PACKAGING,superimage_debug)/misc_info.txt) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5584 | |
| 5585 | droidcore: $(INSTALLED_SUPERIMAGE_TARGET) |
| 5586 | |
| 5587 | # For devices that uses super image directly, the superimage target points to the file in $(PRODUCT_OUT). |
| 5588 | .PHONY: superimage |
| 5589 | superimage: $(INSTALLED_SUPERIMAGE_TARGET) |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 5590 | |
| 5591 | $(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] | 5592 | endif # BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT |
| 5593 | |
| 5594 | # Build $(PRODUCT_OUT)/super.img without dependencies. |
| 5595 | .PHONY: superimage-nodeps supernod |
| 5596 | superimage-nodeps supernod: intermediates := |
| 5597 | superimage-nodeps supernod: | $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 5598 | $(call pretty,"make $(INSTALLED_SUPERIMAGE_TARGET): ignoring dependencies") |
| 5599 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
| 5600 | $(call intermediates-dir-for,PACKAGING,superimage-nodeps)/misc_info.txt) |
| 5601 | |
| 5602 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
| 5603 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 5604 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
| 5605 | |
| 5606 | # ----------------------------------------------------------------- |
| 5607 | # super empty image |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 5608 | ifdef BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5609 | |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 5610 | INSTALLED_SUPERIMAGE_EMPTY_TARGET := $(PRODUCT_OUT)/super_empty.img |
| 5611 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): intermediates := $(call intermediates-dir-for,PACKAGING,super_empty) |
| 5612 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): $(LPMAKE) $(BUILD_SUPER_IMAGE) |
| 5613 | $(call pretty,"Target empty super fs image: $@") |
| 5614 | mkdir -p $(intermediates) |
| 5615 | rm -rf $(intermediates)/misc_info.txt |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5616 | $(call dump-super-image-info,$(intermediates)/misc_info.txt) |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 5617 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5618 | $(BUILD_SUPER_IMAGE) -v $(intermediates)/misc_info.txt $@ |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 5619 | |
| 5620 | $(call dist-for-goals,dist_files,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 5621 | |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 5622 | endif # BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5623 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5624 | |
| 5625 | # ----------------------------------------------------------------- |
| 5626 | # The update package |
| 5627 | |
| 5628 | name := $(TARGET_PRODUCT) |
| 5629 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5630 | name := $(name)_debug |
| 5631 | endif |
| 5632 | name := $(name)-img-$(FILE_NAME_TAG) |
| 5633 | |
| 5634 | INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 5635 | |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 5636 | $(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES) |
| 5637 | $(call pretty,"Package: $@") |
| 5638 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
| 5639 | $(IMG_FROM_TARGET_FILES) \ |
| 5640 | --additional IMAGES/VerifiedBootParams.textproto:VerifiedBootParams.textproto \ |
| 5641 | $(BUILT_TARGET_FILES_PACKAGE) $@ |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5642 | |
| 5643 | .PHONY: updatepackage |
| 5644 | updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET) |
Dan Willemsen | 9ae6495 | 2019-08-05 14:45:11 -0700 | [diff] [blame] | 5645 | $(call dist-for-goals,updatepackage,$(INTERNAL_UPDATE_PACKAGE_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5646 | |
| 5647 | |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5648 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5649 | # dalvik something |
| 5650 | .PHONY: dalvikfiles |
| 5651 | dalvikfiles: $(INTERNAL_DALVIK_MODULES) |
| 5652 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5653 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5654 | MK_QEMU_IMAGE_SH := device/generic/goldfish/tools/mk_qemu_image.sh |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5655 | MK_COMBINE_QEMU_IMAGE := $(HOST_OUT_EXECUTABLES)/mk_combined_img |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5656 | SGDISK_HOST := $(HOST_OUT_EXECUTABLES)/sgdisk |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 5657 | |
| 5658 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
| 5659 | INSTALLED_QEMU_SYSTEMIMAGE := $(PRODUCT_OUT)/system-qemu.img |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5660 | INSTALLED_SYSTEM_QEMU_CONFIG := $(PRODUCT_OUT)/system-qemu-config.txt |
| 5661 | $(INSTALLED_SYSTEM_QEMU_CONFIG): $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_VBMETAIMAGE_TARGET) |
| 5662 | @echo "$(PRODUCT_OUT)/vbmeta.img vbmeta 1" > $@ |
| 5663 | @echo "$(INSTALLED_SUPERIMAGE_TARGET) super 2" >> $@ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5664 | $(INSTALLED_QEMU_SYSTEMIMAGE): $(INSTALLED_VBMETAIMAGE_TARGET) $(MK_COMBINE_QEMU_IMAGE) $(SGDISK_HOST) $(SIMG2IMG) \ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5665 | $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_SYSTEM_QEMU_CONFIG) |
| 5666 | @echo Create system-qemu.img now |
| 5667 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5668 | $(MK_COMBINE_QEMU_IMAGE) -i $(INSTALLED_SYSTEM_QEMU_CONFIG) -o $@) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5669 | |
| 5670 | systemimage: $(INSTALLED_QEMU_SYSTEMIMAGE) |
| 5671 | droidcore: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 5672 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5673 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5674 | INSTALLED_QEMU_VENDORIMAGE := $(PRODUCT_OUT)/vendor-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 5675 | $(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] | 5676 | @echo Create vendor-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5677 | (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] | 5678 | |
| 5679 | vendorimage: $(INSTALLED_QEMU_VENDORIMAGE) |
| 5680 | droidcore: $(INSTALLED_QEMU_VENDORIMAGE) |
| 5681 | endif |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 5682 | |
| 5683 | ifdef INSTALLED_RAMDISK_TARGET |
| 5684 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 5685 | ifdef INTERNAL_VENDOR_RAMDISK_TARGET |
| 5686 | INSTALLED_QEMU_RAMDISKIMAGE := $(PRODUCT_OUT)/ramdisk-qemu.img |
| 5687 | $(INSTALLED_QEMU_RAMDISKIMAGE): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_RAMDISK_TARGET) |
| 5688 | @echo Create ramdisk-qemu.img |
| 5689 | (cat $(INSTALLED_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_TARGET) > $(INSTALLED_QEMU_RAMDISKIMAGE)) |
| 5690 | |
| 5691 | droidcore: $(INSTALLED_QEMU_RAMDISKIMAGE) |
| 5692 | endif |
| 5693 | endif |
| 5694 | endif |
| 5695 | |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5696 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5697 | INSTALLED_QEMU_PRODUCTIMAGE := $(PRODUCT_OUT)/product-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 5698 | $(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] | 5699 | @echo Create product-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5700 | (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] | 5701 | |
| 5702 | productimage: $(INSTALLED_QEMU_PRODUCTIMAGE) |
| 5703 | droidcore: $(INSTALLED_QEMU_PRODUCTIMAGE) |
| 5704 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5705 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 5706 | INSTALLED_QEMU_SYSTEM_EXTIMAGE := $(PRODUCT_OUT)/system_ext-qemu.img |
| 5707 | $(INSTALLED_QEMU_SYSTEM_EXTIMAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) $(SIMG2IMG) |
| 5708 | @echo Create system_ext-qemu.img |
| 5709 | (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] | 5710 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5711 | systemextimage: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
| 5712 | droidcore: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5713 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5714 | ifdef INSTALLED_ODMIMAGE_TARGET |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5715 | INSTALLED_QEMU_ODMIMAGE := $(PRODUCT_OUT)/odm-qemu.img |
| 5716 | $(INSTALLED_QEMU_ODMIMAGE): $(INSTALLED_ODMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 5717 | @echo Create odm-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5718 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODMIMAGE_TARGET)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5719 | |
| 5720 | odmimage: $(INSTALLED_QEMU_ODMIMAGE) |
| 5721 | droidcore: $(INSTALLED_QEMU_ODMIMAGE) |
| 5722 | endif |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5723 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5724 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 5725 | INSTALLED_QEMU_VENDOR_DLKMIMAGE := $(PRODUCT_OUT)/vendor_dlkm-qemu.img |
| 5726 | $(INSTALLED_QEMU_VENDOR_DLKMIMAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 5727 | @echo Create vendor_dlkm-qemu.img |
| 5728 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)) |
| 5729 | |
| 5730 | vendor_dlkmimage: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
| 5731 | droidcore: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
| 5732 | endif |
| 5733 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5734 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 5735 | INSTALLED_QEMU_ODM_DLKMIMAGE := $(PRODUCT_OUT)/odm_dlkm-qemu.img |
| 5736 | $(INSTALLED_QEMU_ODM_DLKMIMAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 5737 | @echo Create odm_dlkm-qemu.img |
| 5738 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODM_DLKMIMAGE_TARGET)) |
| 5739 | |
| 5740 | odm_dlkmimage: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
| 5741 | droidcore: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
| 5742 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5743 | |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5744 | QEMU_VERIFIED_BOOT_PARAMS := $(PRODUCT_OUT)/VerifiedBootParams.textproto |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5745 | $(QEMU_VERIFIED_BOOT_PARAMS): $(INSTALLED_VBMETAIMAGE_TARGET) $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 5746 | $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(AVBTOOL) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5747 | @echo Creating $@ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5748 | (export AVBTOOL=$(AVBTOOL); $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(INSTALLED_VBMETAIMAGE_TARGET) \ |
| 5749 | $(INSTALLED_SYSTEMIMAGE_TARGET) $(QEMU_VERIFIED_BOOT_PARAMS)) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5750 | |
| 5751 | systemimage: $(QEMU_VERIFIED_BOOT_PARAMS) |
| 5752 | droidcore: $(QEMU_VERIFIED_BOOT_PARAMS) |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5753 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5754 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5755 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5756 | # The emulator package |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 5757 | ifeq ($(BUILD_EMULATOR),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5758 | INTERNAL_EMULATOR_PACKAGE_FILES += \ |
| 5759 | $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \ |
Jean-Baptiste Queru | 5ea72ef | 2012-01-06 16:44:06 -0800 | [diff] [blame] | 5760 | prebuilts/qemu-kernel/$(TARGET_ARCH)/kernel-qemu \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5761 | $(INSTALLED_RAMDISK_TARGET) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5762 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 5763 | $(INSTALLED_USERDATAIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5764 | |
| 5765 | name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG) |
| 5766 | |
| 5767 | INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 5768 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 5769 | $(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5770 | @echo "Package: $@" |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 5771 | $(hide) zip -qjX $@ $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5772 | |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 5773 | endif |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 5774 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5775 | |
| 5776 | # ----------------------------------------------------------------- |
| 5777 | # The SDK |
| 5778 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5779 | # The SDK includes host-specific components, so it belongs under HOST_OUT. |
Ying Wang | d7af176 | 2014-06-02 16:16:53 -0700 | [diff] [blame] | 5780 | sdk_dir := $(HOST_OUT)/sdk/$(TARGET_PRODUCT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5781 | |
| 5782 | # Build a name that looks like: |
| 5783 | # |
| 5784 | # linux-x86 --> android-sdk_12345_linux-x86 |
| 5785 | # darwin-x86 --> android-sdk_12345_mac-x86 |
| 5786 | # windows-x86 --> android-sdk_12345_windows |
| 5787 | # |
| 5788 | sdk_name := android-sdk_$(FILE_NAME_TAG) |
| 5789 | ifeq ($(HOST_OS),darwin) |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 5790 | INTERNAL_SDK_HOST_OS_NAME := mac |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5791 | else |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 5792 | INTERNAL_SDK_HOST_OS_NAME := $(HOST_OS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5793 | endif |
| 5794 | ifneq ($(HOST_OS),windows) |
Ying Wang | 2713fce | 2014-06-09 12:31:12 -0700 | [diff] [blame] | 5795 | INTERNAL_SDK_HOST_OS_NAME := $(INTERNAL_SDK_HOST_OS_NAME)-$(SDK_HOST_ARCH) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5796 | endif |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 5797 | sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5798 | |
| 5799 | sdk_dep_file := $(sdk_dir)/sdk_deps.mk |
| 5800 | |
| 5801 | ATREE_FILES := |
| 5802 | -include $(sdk_dep_file) |
| 5803 | |
| 5804 | # if we don't have a real list, then use "everything" |
| 5805 | ifeq ($(strip $(ATREE_FILES)),) |
| 5806 | ATREE_FILES := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5807 | $(ALL_DEFAULT_INSTALLED_MODULES) \ |
| 5808 | $(INSTALLED_RAMDISK_TARGET) \ |
| 5809 | $(ALL_DOCS) \ |
| 5810 | $(ALL_SDK_FILES) |
| 5811 | endif |
| 5812 | |
| 5813 | atree_dir := development/build |
| 5814 | |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 5815 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5816 | sdk_atree_files := \ |
| 5817 | $(atree_dir)/sdk.exclude.atree \ |
Ying Wang | 2713fce | 2014-06-09 12:31:12 -0700 | [diff] [blame] | 5818 | $(atree_dir)/sdk-$(HOST_OS)-$(SDK_HOST_ARCH).atree |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5819 | |
David 'Digit' Turner | 77ec16a | 2011-06-23 12:49:02 +0200 | [diff] [blame] | 5820 | # development/build/sdk-android-<abi>.atree is used to differentiate |
| 5821 | # between architecture models (e.g. ARMv5TE versus ARMv7) when copying |
| 5822 | # files like the kernel image. We use TARGET_CPU_ABI because we don't |
| 5823 | # have a better way to distinguish between CPU models. |
| 5824 | ifneq (,$(strip $(wildcard $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree))) |
| 5825 | sdk_atree_files += $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree |
| 5826 | endif |
| 5827 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5828 | ifneq ($(PRODUCT_SDK_ATREE_FILES),) |
| 5829 | sdk_atree_files += $(PRODUCT_SDK_ATREE_FILES) |
Griff Hazen | 433febb | 2014-02-28 08:45:59 -0800 | [diff] [blame] | 5830 | else |
| 5831 | sdk_atree_files += $(atree_dir)/sdk.atree |
| 5832 | endif |
| 5833 | |
Deepanshu Gupta | 7a864ea | 2014-08-11 15:20:02 -0700 | [diff] [blame] | 5834 | include $(BUILD_SYSTEM)/sdk_font.mk |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 5835 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5836 | deps := \ |
| 5837 | $(target_notice_file_txt) \ |
| 5838 | $(tools_notice_file_txt) \ |
| 5839 | $(OUT_DOCS)/offline-sdk-timestamp \ |
Jerome Gaillard | a0171af | 2019-10-10 19:35:08 +0100 | [diff] [blame] | 5840 | $(SDK_METADATA_FILES) \ |
Ying Wang | 139e332 | 2010-03-31 17:29:04 -0700 | [diff] [blame] | 5841 | $(SYMBOLS_ZIP) \ |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 5842 | $(COVERAGE_ZIP) \ |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 5843 | $(APPCOMPAT_ZIP) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5844 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5845 | $(INSTALLED_QEMU_SYSTEMIMAGE) \ |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 5846 | $(INSTALLED_QEMU_RAMDISKIMAGE) \ |
bohu | 18d1868 | 2017-08-14 14:52:20 -0700 | [diff] [blame] | 5847 | $(INSTALLED_QEMU_VENDORIMAGE) \ |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5848 | $(QEMU_VERIFIED_BOOT_PARAMS) \ |
Doug Zongker | dddd957 | 2009-06-15 21:25:32 -0700 | [diff] [blame] | 5849 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 5850 | $(INSTALLED_RAMDISK_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5851 | $(INSTALLED_SDK_BUILD_PROP_TARGET) \ |
Ying Wang | 139e332 | 2010-03-31 17:29:04 -0700 | [diff] [blame] | 5852 | $(INSTALLED_BUILD_PROP_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5853 | $(ATREE_FILES) \ |
Ying Wang | 0c0a4ce | 2014-02-18 14:29:59 -0800 | [diff] [blame] | 5854 | $(sdk_atree_files) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5855 | $(HOST_OUT_EXECUTABLES)/atree \ |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 5856 | $(HOST_OUT_EXECUTABLES)/line_endings \ |
Deepanshu Gupta | 7a864ea | 2014-08-11 15:20:02 -0700 | [diff] [blame] | 5857 | $(SDK_FONT_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5858 | |
| 5859 | INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip |
| 5860 | $(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name) |
| 5861 | $(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name) |
| 5862 | $(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file) |
| 5863 | $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files) |
| 5864 | |
| 5865 | # Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built. |
| 5866 | # |
| 5867 | #SDK_GNU_ERROR := true |
| 5868 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 5869 | $(INTERNAL_SDK_TARGET): $(deps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5870 | @echo "Package SDK: $@" |
| 5871 | $(hide) rm -rf $(PRIVATE_DIR) $@ |
| 5872 | $(hide) for f in $(target_gnu_MODULES); do \ |
| 5873 | if [ -f $$f ]; then \ |
| 5874 | echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \ |
| 5875 | including GNU target $$f >&2; \ |
| 5876 | FAIL=$(SDK_GNU_ERROR); \ |
| 5877 | fi; \ |
| 5878 | done; \ |
| 5879 | if [ $$FAIL ]; then exit 1; fi |
Deepanshu Gupta | 88a307e | 2014-08-12 10:23:58 -0700 | [diff] [blame] | 5880 | $(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] | 5881 | $(hide) ( \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5882 | ATREE_STRIP="$(HOST_STRIP) -x" \ |
| 5883 | $(HOST_OUT_EXECUTABLES)/atree \ |
| 5884 | $(addprefix -f ,$(PRIVATE_INPUT_FILES)) \ |
| 5885 | -m $(PRIVATE_DEP_FILE) \ |
| 5886 | -I . \ |
| 5887 | -I $(PRODUCT_OUT) \ |
| 5888 | -I $(HOST_OUT) \ |
| 5889 | -I $(TARGET_COMMON_OUT_ROOT) \ |
| 5890 | -v "PLATFORM_NAME=android-$(PLATFORM_VERSION)" \ |
| 5891 | -v "OUT_DIR=$(OUT_DIR)" \ |
| 5892 | -v "HOST_OUT=$(HOST_OUT)" \ |
| 5893 | -v "TARGET_ARCH=$(TARGET_ARCH)" \ |
| 5894 | -v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \ |
| 5895 | -v "DLL_EXTENSION=$(HOST_SHLIB_SUFFIX)" \ |
| 5896 | -v "FONT_OUT=$(SDK_FONT_TEMP)" \ |
| 5897 | -o $(PRIVATE_DIR) && \ |
| 5898 | cp -f $(target_notice_file_txt) \ |
| 5899 | $(PRIVATE_DIR)/system-images/android-$(PLATFORM_VERSION)/$(TARGET_CPU_ABI)/NOTICE.txt && \ |
| 5900 | cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/platform-tools/NOTICE.txt && \ |
| 5901 | HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \ |
| 5902 | development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \ |
| 5903 | chmod -R ug+rwX $(PRIVATE_DIR) && \ |
| 5904 | cd $(dir $@) && zip -rqX $(notdir $@) $(PRIVATE_NAME) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5905 | ) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 ) |
| 5906 | |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 5907 | |
| 5908 | # Is a Windows SDK requested? If so, we need some definitions from here |
| 5909 | # in order to find the Linux SDK used to create the Windows one. |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 5910 | MAIN_SDK_NAME := $(sdk_name) |
| 5911 | MAIN_SDK_DIR := $(sdk_dir) |
| 5912 | MAIN_SDK_ZIP := $(INTERNAL_SDK_TARGET) |
Ying Wang | ff1fe68 | 2015-01-27 12:47:10 -0800 | [diff] [blame] | 5913 | ifneq ($(filter win_sdk winsdk-tools,$(MAKECMDGOALS)),) |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 5914 | include $(TOPDIR)development/build/tools/windows_sdk.mk |
| 5915 | endif |
| 5916 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5917 | # ----------------------------------------------------------------- |
| 5918 | # Findbugs |
| 5919 | INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml |
| 5920 | INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html |
| 5921 | $(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES) |
| 5922 | @echo UnionBugs: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 5923 | $(hide) $(FINDBUGS_DIR)/unionBugs $(ALL_FINDBUGS_FILES) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5924 | > $@ |
| 5925 | $(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET) |
| 5926 | @echo ConvertXmlToText: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 5927 | $(hide) $(FINDBUGS_DIR)/convertXmlToText -html:fancy.xsl \ |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 5928 | $(INTERNAL_FINDBUGS_XML_TARGET) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5929 | |
| 5930 | # ----------------------------------------------------------------- |
| 5931 | # Findbugs |
| 5932 | |
| 5933 | # ----------------------------------------------------------------- |
| 5934 | # These are some additional build tasks that need to be run. |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 5935 | ifneq ($(dont_bother),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5936 | include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk)) |
Claes Elgemark | e22ad67 | 2010-11-12 15:46:00 +0100 | [diff] [blame] | 5937 | -include $(sort $(wildcard vendor/*/build/tasks/*.mk)) |
Andrew Boie | f34a9ba | 2012-04-16 10:03:16 -0700 | [diff] [blame] | 5938 | -include $(sort $(wildcard device/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 5939 | -include $(sort $(wildcard product/*/build/tasks/*.mk)) |
Ying Wang | 66c78e4 | 2014-09-05 17:47:34 -0700 | [diff] [blame] | 5940 | # Also the project-specific tasks |
| 5941 | -include $(sort $(wildcard vendor/*/*/build/tasks/*.mk)) |
| 5942 | -include $(sort $(wildcard device/*/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 5943 | -include $(sort $(wildcard product/*/*/build/tasks/*.mk)) |
Guang Zhu | 8322be7 | 2016-06-20 22:03:24 -0700 | [diff] [blame] | 5944 | # Also add test specifc tasks |
| 5945 | include $(sort $(wildcard platform_testing/build/tasks/*.mk)) |
Keun Soo Yim | 199a710 | 2016-08-31 09:20:51 -0700 | [diff] [blame] | 5946 | include $(sort $(wildcard test/vts/tools/build/tasks/*.mk)) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 5947 | endif |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 5948 | |
Ying Wang | 67132ba | 2015-10-28 16:42:39 -0700 | [diff] [blame] | 5949 | include $(BUILD_SYSTEM)/product-graph.mk |
| 5950 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 5951 | # ----------------------------------------------------------------- |
| 5952 | # Create SDK repository packages. Must be done after tasks/* since |
| 5953 | # we need the addon rules defined. |
| 5954 | ifneq ($(sdk_repo_goal),) |
| 5955 | include $(TOPDIR)development/build/tools/sdk_repo.mk |
| 5956 | endif |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 5957 | |
| 5958 | # ----------------------------------------------------------------- |
Mitch Phillips | 3adbcb3 | 2019-10-17 19:24:46 -0700 | [diff] [blame] | 5959 | # Soong generates the list of all shared libraries that are depended on by fuzz |
| 5960 | # targets. It saves this list as a source:destination pair to |
| 5961 | # FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS, where the source is the path to the |
| 5962 | # build of the unstripped shared library, and the destination is the |
| 5963 | # /data/fuzz/$ARCH/lib (for device) or /fuzz/$ARCH/lib (for host) directory |
| 5964 | # where fuzz target shared libraries are to be "reinstalled". The |
| 5965 | # copy-many-files below generates the rules to copy the unstripped shared |
| 5966 | # libraries to the device or host "reinstallation" directory. These rules are |
| 5967 | # depended on by each module in soong_cc_prebuilt.mk, where the module will have |
| 5968 | # a dependency on each shared library that it needs to be "reinstalled". |
| 5969 | FUZZ_SHARED_DEPS := $(call copy-many-files,$(strip $(FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS))) |
| 5970 | |
| 5971 | # ----------------------------------------------------------------- |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 5972 | # 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] | 5973 | # Note: The packages are created in Soong, and in a perfect world, |
| 5974 | # we'd be able to create the phony rule there. But, if we want to |
| 5975 | # have dist goals for the fuzz target, we need to have the PHONY |
| 5976 | # target defined in make. MakeVarsContext.DistForGoal doesn't take |
| 5977 | # into account that a PHONY rule create by Soong won't be available |
| 5978 | # during make, and such will fail with `writing to readonly |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 5979 | # directory`, because kati will see 'haiku' as being a file, not a |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 5980 | # phony target. |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 5981 | .PHONY: haiku |
| 5982 | haiku: $(SOONG_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_FUZZ_TARGETS) |
| 5983 | $(call dist-for-goals,haiku,$(SOONG_FUZZ_PACKAGING_ARCH_MODULES)) |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 5984 | |
| 5985 | .PHONY: haiku-rust |
| 5986 | haiku-rust: $(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_RUST_FUZZ_TARGETS) |
| 5987 | $(call dist-for-goals,haiku-rust,$(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES)) |