The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # Put some miscellaneous rules here |
| 2 | |
Ying Wang | 3bbfddd | 2014-03-01 15:32:04 -0800 | [diff] [blame] | 3 | # HACK: clear LOCAL_PATH from including last build target before calling |
| 4 | # intermedites-dir-for |
| 5 | LOCAL_PATH := $(BUILD_SYSTEM) |
| 6 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 7 | SYSTEM_NOTICE_DEPS := |
| 8 | VENDOR_NOTICE_DEPS := |
| 9 | UNMOUNTED_NOTICE_DEPS := |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 10 | UNMOUNTED_NOTICE_VENDOR_DEPS := |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 11 | ODM_NOTICE_DEPS := |
| 12 | OEM_NOTICE_DEPS := |
| 13 | PRODUCT_NOTICE_DEPS := |
| 14 | SYSTEM_EXT_NOTICE_DEPS := |
| 15 | VENDOR_DLKM_NOTICE_DEPS := |
| 16 | ODM_DLKM_NOTICE_DEPS := |
| 17 | SYSTEM_DLKM_NOTICE_DEPS := |
| 18 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 19 | # ----------------------------------------------------------------- |
| 20 | # Define rules to copy PRODUCT_COPY_FILES defined by the product. |
Ying Wang | 4b0486b | 2012-09-20 16:35:36 -0700 | [diff] [blame] | 21 | # 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] | 22 | # <dest file> is relative to $(PRODUCT_OUT), so it should look like, |
| 23 | # e.g., "system/etc/file.xml". |
Jean-Baptiste Queru | 518ce57 | 2010-03-01 16:18:59 -0800 | [diff] [blame] | 24 | # 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] | 25 | # src:dest pair is the first one to match the same dest" |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 26 | #$(1): the src:dest pair |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 27 | #$(2): the dest |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 28 | define check-product-copy-files |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 29 | $(if $(filter-out $(TARGET_COPY_OUT_SYSTEM_OTHER)/%,$(2)), \ |
| 30 | $(if $(filter %.apk, $(2)),$(error \ |
Yifan Hong | 5e57a77 | 2020-01-09 16:15:11 -0800 | [diff] [blame] | 31 | Prebuilt apk found in PRODUCT_COPY_FILES: $(1), use BUILD_PREBUILT instead!))) \ |
| 32 | $(if $(filter true,$(BUILD_BROKEN_VINTF_PRODUCT_COPY_FILES)),, \ |
| 33 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM)/etc/vintf/% \ |
| 34 | $(TARGET_COPY_OUT_SYSTEM)/manifest.xml \ |
| 35 | $(TARGET_COPY_OUT_SYSTEM)/compatibility_matrix.xml,$(2)), \ |
| 36 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), use vintf_fragments instead!)) \ |
| 37 | $(if $(filter $(TARGET_COPY_OUT_PRODUCT)/etc/vintf/%,$(2)), \ |
| 38 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 39 | use PRODUCT_MANIFEST_FILES / DEVICE_PRODUCT_COMPATIBILITY_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 40 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM_EXT)/etc/vintf/%,$(2)), \ |
| 41 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 42 | use vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 43 | $(if $(filter $(TARGET_COPY_OUT_VENDOR)/etc/vintf/% \ |
| 44 | $(TARGET_COPY_OUT_VENDOR)/manifest.xml \ |
| 45 | $(TARGET_COPY_OUT_VENDOR)/compatibility_matrix.xml,$(2)), \ |
| 46 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 47 | use DEVICE_MANIFEST_FILE / DEVICE_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 48 | $(if $(filter $(TARGET_COPY_OUT_ODM)/etc/vintf/% \ |
| 49 | $(TARGET_COPY_OUT_ODM)/etc/manifest%,$(2)), \ |
| 50 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 51 | use ODM_MANIFEST_FILES / vintf_fragments instead!)) \ |
| 52 | ) |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 53 | endef |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 54 | |
Yo Chiang | 336883a | 2020-05-14 17:17:29 +0800 | [diff] [blame] | 55 | # Phony target to check PRODUCT_COPY_FILES copy pairs don't contain ELF files |
| 56 | .PHONY: check-elf-prebuilt-product-copy-files |
| 57 | check-elf-prebuilt-product-copy-files: |
| 58 | |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 59 | check_elf_prebuilt_product_copy_files := true |
Yo Chiang | 73d3148 | 2020-04-07 15:59:59 +0800 | [diff] [blame] | 60 | ifneq (,$(filter true,$(BUILD_BROKEN_ELF_PREBUILT_PRODUCT_COPY_FILES))) |
| 61 | check_elf_prebuilt_product_copy_files := |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 62 | endif |
| 63 | check_elf_prebuilt_product_copy_files_hint := \ |
| 64 | found ELF prebuilt in PRODUCT_COPY_FILES, use cc_prebuilt_binary / cc_prebuilt_library_shared instead. |
| 65 | |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 66 | # filter out the duplicate <source file>:<dest file> pairs. |
| 67 | unique_product_copy_files_pairs := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 68 | $(foreach cf,$(PRODUCT_COPY_FILES), \ |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 69 | $(if $(filter $(unique_product_copy_files_pairs),$(cf)),,\ |
| 70 | $(eval unique_product_copy_files_pairs += $(cf)))) |
| 71 | unique_product_copy_files_destinations := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 72 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 73 | $(foreach cf,$(unique_product_copy_files_pairs), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 74 | $(eval _src := $(call word-colon,1,$(cf))) \ |
| 75 | $(eval _dest := $(call word-colon,2,$(cf))) \ |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 76 | $(call check-product-copy-files,$(cf),$(_dest)) \ |
Ying Wang | 193010c | 2011-12-16 11:54:25 -0800 | [diff] [blame] | 77 | $(if $(filter $(unique_product_copy_files_destinations),$(_dest)), \ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 78 | $(eval product_copy_files_ignored += $(cf)), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 79 | $(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \ |
Ying Wang | 3ceecfa | 2012-05-14 14:39:00 -0700 | [diff] [blame] | 80 | $(if $(filter %.xml,$(_dest)),\ |
| 81 | $(eval $(call copy-xml-file-checked,$(_src),$(_fulldest))),\ |
Nicolas Geoffray | a95fbd1 | 2017-09-19 13:10:31 +0100 | [diff] [blame] | 82 | $(if $(and $(filter %.jar,$(_dest)),$(filter $(basename $(notdir $(_dest))),$(PRODUCT_LOADED_BY_PRIVILEGED_MODULES))),\ |
| 83 | $(eval $(call copy-and-uncompress-dexs,$(_src),$(_fulldest))), \ |
Tom Cherry | fc97764 | 2018-06-13 14:51:05 -0700 | [diff] [blame] | 84 | $(if $(filter init%rc,$(notdir $(_dest)))$(filter %/etc/init,$(dir $(_dest))),\ |
| 85 | $(eval $(call copy-init-script-file-checked,$(_src),$(_fulldest))),\ |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 86 | $(if $(and $(filter true,$(check_elf_prebuilt_product_copy_files)), \ |
| 87 | $(filter bin lib lib64,$(subst /,$(space),$(_dest)))), \ |
| 88 | $(eval $(call copy-non-elf-file-checked,$(_src),$(_fulldest),$(check_elf_prebuilt_product_copy_files_hint))), \ |
| 89 | $(eval $(call copy-one-file,$(_src),$(_fulldest))))))) \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 90 | $(eval unique_product_copy_files_destinations += $(_dest)))) |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 91 | |
| 92 | # Dump a list of overriden (and ignored PRODUCT_COPY_FILES entries) |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 93 | pcf_ignored_file := $(PRODUCT_OUT)/product_copy_files_ignored.txt |
| 94 | $(pcf_ignored_file): PRIVATE_IGNORED := $(sort $(product_copy_files_ignored)) |
| 95 | $(pcf_ignored_file): |
| 96 | echo "$(PRIVATE_IGNORED)" | tr " " "\n" >$@ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 97 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 98 | $(call declare-0p-target,$(pcf_ignored_file)) |
| 99 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 100 | $(call dist-for-goals,droidcore-unbundled,$(pcf_ignored_file):logs/$(notdir $(pcf_ignored_file))) |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 101 | |
| 102 | pcf_ignored_file := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 103 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 104 | unique_product_copy_files_pairs := |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 105 | unique_product_copy_files_destinations := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 106 | |
| 107 | # ----------------------------------------------------------------- |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 108 | # Returns the max allowed size for an image suitable for hash verification |
| 109 | # (e.g., boot.img, recovery.img, etc). |
| 110 | # The value 69632 derives from MAX_VBMETA_SIZE + MAX_FOOTER_SIZE in $(AVBTOOL). |
| 111 | # $(1): partition size to flash the image |
| 112 | define get-hash-image-max-size |
| 113 | $(if $(1), \ |
| 114 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 115 | $(eval _hash_meta_size := 69632), \ |
| 116 | $(eval _hash_meta_size := 0)) \ |
| 117 | $(1)-$(_hash_meta_size)) |
| 118 | endef |
| 119 | |
| 120 | # ----------------------------------------------------------------- |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 121 | # Define rules to copy headers defined in copy_headers.mk |
| 122 | # If more than one makefile declared a header, print a warning, |
| 123 | # then copy the last one defined. This matches the previous make |
| 124 | # behavior. |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 125 | has_dup_copy_headers := |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 126 | $(foreach dest,$(ALL_COPIED_HEADERS), \ |
| 127 | $(eval _srcs := $(ALL_COPIED_HEADERS.$(dest).SRC)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 128 | $(eval _src := $(lastword $(_srcs))) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 129 | $(if $(call streq,$(_src),$(_srcs)),, \ |
| 130 | $(warning Duplicate header copy: $(dest)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 131 | $(warning _ Using $(_src)) \ |
| 132 | $(warning __ from $(lastword $(ALL_COPIED_HEADERS.$(dest).MAKEFILE))) \ |
| 133 | $(eval _makefiles := $$(wordlist 1,$(call int_subtract,$(words $(ALL_COPIED_HEADERS.$(dest).MAKEFILE)),1),$$(ALL_COPIED_HEADERS.$$(dest).MAKEFILE))) \ |
| 134 | $(foreach src,$(wordlist 1,$(call int_subtract,$(words $(_srcs)),1),$(_srcs)), \ |
| 135 | $(warning _ Ignoring $(src)) \ |
| 136 | $(warning __ from $(firstword $(_makefiles))) \ |
| 137 | $(eval _makefiles := $$(wordlist 2,9999,$$(_makefiles)))) \ |
| 138 | $(eval has_dup_copy_headers := true)) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 139 | $(eval $(call copy-one-header,$(_src),$(dest)))) |
| 140 | all_copied_headers: $(ALL_COPIED_HEADERS) |
| 141 | |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 142 | ifdef has_dup_copy_headers |
| 143 | has_dup_copy_headers := |
Dan Willemsen | 1d4a56f | 2019-04-18 09:38:25 -0700 | [diff] [blame] | 144 | $(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] | 145 | endif |
| 146 | |
Dan Willemsen | 79a0caf | 2019-12-13 18:55:18 -0800 | [diff] [blame] | 147 | $(file >$(PRODUCT_OUT)/.copied_headers_list,$(TARGET_OUT_HEADERS) $(ALL_COPIED_HEADERS)) |
| 148 | |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 149 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 150 | # docs/index.html |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 151 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 152 | gen := $(OUT_DOCS)/index.html |
| 153 | ALL_DOCS += $(gen) |
| 154 | $(gen): frameworks/base/docs/docs-redirect-index.html |
| 155 | @mkdir -p $(dir $@) |
| 156 | @cp -f $< $@ |
Ying Wang | 3f45b3c | 2012-04-02 18:21:36 -0700 | [diff] [blame] | 157 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 158 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 159 | ndk_doxygen_out := $(OUT_NDK_DOCS) |
| 160 | ndk_headers := $(SOONG_OUT_DIR)/ndk/sysroot/usr/include |
| 161 | ndk_docs_src_dir := frameworks/native/docs |
| 162 | ndk_doxyfile := $(ndk_docs_src_dir)/Doxyfile |
| 163 | ifneq ($(wildcard $(ndk_docs_src_dir)),) |
| 164 | ndk_docs_srcs := $(addprefix $(ndk_docs_src_dir)/,\ |
| 165 | $(call find-files-in-subdirs,$(ndk_docs_src_dir),"*",.)) |
| 166 | $(ndk_doxygen_out)/index.html: $(ndk_docs_srcs) $(SOONG_OUT_DIR)/ndk.timestamp |
| 167 | @mkdir -p $(ndk_doxygen_out) |
| 168 | @echo "Generating NDK docs to $(ndk_doxygen_out)" |
| 169 | @( cat $(ndk_doxyfile); \ |
| 170 | echo "INPUT=$(ndk_headers)"; \ |
| 171 | echo "HTML_OUTPUT=$(ndk_doxygen_out)" \ |
| 172 | ) | doxygen - |
| 173 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 174 | $(call declare-1p-target,$(ndk_doxygen_out)/index.html,) |
| 175 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 176 | # Note: Not a part of the docs target because we don't have doxygen available. |
| 177 | # You can run this target locally if you have doxygen installed. |
| 178 | ndk-docs: $(ndk_doxygen_out)/index.html |
| 179 | .PHONY: ndk-docs |
| 180 | endif |
| 181 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 182 | ifeq ($(HOST_OS),linux) |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 183 | $(call dist-for-goals,sdk,$(API_FINGERPRINT)) |
Spandan Das | 10cd857 | 2023-02-14 21:26:55 +0000 | [diff] [blame] | 184 | $(call dist-for-goals,droidcore,$(API_FINGERPRINT)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 185 | endif |
Dan Willemsen | ad6a154 | 2018-12-14 01:04:19 -0800 | [diff] [blame] | 186 | |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 187 | INSTALLED_RECOVERYIMAGE_TARGET := |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 188 | # Build recovery image if |
| 189 | # BUILDING_RECOVERY_IMAGE && !BOARD_USES_RECOVERY_AS_BOOT && !BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT. |
| 190 | # If BOARD_USES_RECOVERY_AS_BOOT is true, leave empty because INSTALLED_BOOTIMAGE_TARGET is built |
| 191 | # with recovery resources. |
| 192 | # If BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT is true, leave empty to build recovery resources |
| 193 | # but not the final recovery image. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 194 | ifdef BUILDING_RECOVERY_IMAGE |
| 195 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 196 | ifneq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 197 | INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img |
| 198 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 199 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 200 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 201 | |
Jiyong Park | e134686 | 2020-05-18 14:31:30 +0900 | [diff] [blame] | 202 | include $(BUILD_SYSTEM)/sysprop.mk |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 203 | |
| 204 | # ---------------------------------------------------------------- |
| 205 | |
| 206 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 207 | # sdk-build.prop |
| 208 | # |
| 209 | # There are certain things in build.prop that we don't want to |
| 210 | # ship with the sdk; remove them. |
| 211 | |
| 212 | # This must be a list of entire property keys followed by |
| 213 | # "=" characters, without any internal spaces. |
| 214 | sdk_build_prop_remove := \ |
| 215 | ro.build.user= \ |
| 216 | ro.build.host= \ |
| 217 | ro.product.brand= \ |
| 218 | ro.product.manufacturer= \ |
| 219 | ro.product.device= |
| 220 | # TODO: Remove this soon-to-be obsolete property |
| 221 | sdk_build_prop_remove += ro.build.product= |
| 222 | INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop |
| 223 | $(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET) |
| 224 | @echo SDK buildinfo: $@ |
| 225 | @mkdir -p $(dir $@) |
| 226 | $(hide) grep -v "$(subst $(space),\|,$(strip \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 227 | $(sdk_build_prop_remove)))" $< > $@.tmp |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 228 | $(hide) for x in $(strip $(sdk_build_prop_remove)); do \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 229 | echo "$$x"generic >> $@.tmp; done |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 230 | $(hide) mv $@.tmp $@ |
| 231 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 232 | $(call declare-0p-target,$(INSTALLED_SDK_BUILD_PROP_TARGET)) |
| 233 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 234 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 235 | # declare recovery ramdisk files |
| 236 | ifeq ($(BUILDING_RECOVERY_IMAGE),true) |
| 237 | INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP := $(call intermediates-dir-for,PACKAGING,recovery)/ramdisk_files-timestamp |
| 238 | endif |
| 239 | |
| 240 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 241 | # Declare vendor ramdisk fragments |
| 242 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := |
| 243 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 244 | ifeq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 245 | ifneq (,$(filter recovery,$(BOARD_VENDOR_RAMDISK_FRAGMENTS))) |
| 246 | $(error BOARD_VENDOR_RAMDISK_FRAGMENTS must not contain "recovery" if \ |
| 247 | BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT is set) |
| 248 | endif |
| 249 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += recovery |
| 250 | VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 251 | VENDOR_RAMDISK_FRAGMENT.recovery.FILES := $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 252 | BOARD_VENDOR_RAMDISK_FRAGMENT.recovery.MKBOOTIMG_ARGS += --ramdisk_type RECOVERY |
| 253 | .KATI_READONLY := VENDOR_RAMDISK_FRAGMENT.recovery.STAGING_DIR |
| 254 | endif |
| 255 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 256 | # Validation check and assign default --ramdisk_type. |
| 257 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 258 | $(if $(and $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 259 | $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)), \ |
| 260 | $(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))) \ |
| 261 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragment-stage-$(vendor_ramdisk_fragment))) \ |
| 262 | $(eval VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES :=) \ |
| 263 | $(if $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 264 | $(if $(filter --ramdisk_type,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)),, \ |
| 265 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_type DLKM))) \ |
| 266 | ) |
| 267 | |
| 268 | # Create the "kernel module directory" to "vendor ramdisk fragment" inverse mapping. |
| 269 | $(foreach vendor_ramdisk_fragment,$(BOARD_VENDOR_RAMDISK_FRAGMENTS), \ |
| 270 | $(foreach kmd,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).KERNEL_MODULE_DIRS), \ |
| 271 | $(eval kmd_vrf := KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd)) \ |
| 272 | $(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)) \ |
| 273 | $(eval $(kmd_vrf) := $(vendor_ramdisk_fragment)) \ |
| 274 | ) \ |
| 275 | ) |
| 276 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS += $(BOARD_VENDOR_RAMDISK_FRAGMENTS) |
| 277 | |
Yi-Yo Chiang | 378b779 | 2021-04-09 20:09:13 +0800 | [diff] [blame] | 278 | # Strip the list in case of any whitespace. |
| 279 | INTERNAL_VENDOR_RAMDISK_FRAGMENTS := \ |
| 280 | $(strip $(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)) |
| 281 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 282 | # Assign --ramdisk_name for each vendor ramdisk fragment. |
| 283 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
| 284 | $(if $(filter --ramdisk_name,$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)), \ |
| 285 | $(error Must not specify --ramdisk_name for vendor ramdisk fragment: $(vendor_ramdisk_fragment))) \ |
| 286 | $(eval BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS += --ramdisk_name $(vendor_ramdisk_fragment)) \ |
| 287 | $(eval .KATI_READONLY := BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) \ |
| 288 | ) |
| 289 | |
| 290 | # ----------------------------------------------------------------- |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 291 | # kernel modules |
| 292 | |
| 293 | # Depmod requires a well-formed kernel version so 0.0 is used as a placeholder. |
| 294 | DEPMOD_STAGING_SUBDIR :=$= lib/modules/0.0 |
| 295 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 296 | define copy-and-strip-kernel-module |
| 297 | $(2): $(1) |
J. Avila | f758602 | 2020-06-19 20:42:17 +0000 | [diff] [blame] | 298 | $(LLVM_STRIP) -o $(2) --strip-debug $(1) |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 299 | endef |
| 300 | |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 301 | # $(1): modules list |
| 302 | # $(2): output dir |
| 303 | # $(3): mount point |
| 304 | # $(4): staging dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 305 | # $(5): module load list |
| 306 | # $(6): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 307 | # $(7): module archive |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 308 | # $(8): staging dir for stripped modules |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 309 | # $(9): module directory name |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 310 | # $(10): extra modules that might be dependency of modules in this partition, but should not be copied to output dir |
| 311 | # $(11): mount point for extra modules |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 312 | # 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] | 313 | define build-image-kernel-modules |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 314 | $(if $(9), \ |
| 315 | $(eval _dir := $(9)/), \ |
| 316 | $(eval _dir :=)) \ |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 317 | $(foreach module,$(1), \ |
| 318 | $(eval _src := $(module)) \ |
| 319 | $(if $(8), \ |
| 320 | $(eval _src := $(8)/$(notdir $(module))) \ |
| 321 | $(eval $(call copy-and-strip-kernel-module,$(module),$(_src)))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 322 | $(_src):$(2)/lib/modules/$(_dir)$(notdir $(module))) \ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 323 | $(eval $(call build-image-kernel-modules-depmod,$(1),$(3),$(4),$(5),$(6),$(7),$(2),$(9),$(10),$(11))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 324 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.dep:$(2)/lib/modules/$(_dir)modules.dep \ |
| 325 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.alias:$(2)/lib/modules/$(_dir)modules.alias \ |
| 326 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.softdep:$(2)/lib/modules/$(_dir)modules.softdep \ |
| 327 | $(4)/$(DEPMOD_STAGING_SUBDIR)/$(6):$(2)/lib/modules/$(_dir)$(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 328 | endef |
| 329 | |
| 330 | # $(1): modules list |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 331 | # $(2): mount point |
| 332 | # $(3): staging dir |
| 333 | # $(4): module load list |
| 334 | # $(5): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 335 | # $(6): module archive |
| 336 | # $(7): output dir |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 337 | # $(8): module directory name |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 338 | # $(9): extra modules which should not be copied to output dir, but might be dependency of modules in this partition |
| 339 | # $(10): mount point for extra modules |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 340 | # TODO(b/144844424): If a module archive is being used, this step (which |
| 341 | # generates obj/PACKAGING/.../modules.dep) also unzips the module archive into |
| 342 | # the output directory. This should be moved to a module with a |
| 343 | # LOCAL_POST_INSTALL_CMD so that if modules.dep is removed from the output dir, |
| 344 | # the archive modules are restored along with modules.dep. |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 345 | define build-image-kernel-modules-depmod |
Steve Muckle | 0f7bb1b | 2019-07-11 17:42:13 -0700 | [diff] [blame] | 346 | $(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] | 347 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(DEPMOD) |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 348 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULES := $(strip $(1)) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 349 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_EXTRA_MODULES := $(strip $(9)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 350 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MOUNT_POINT := $(2) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 351 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_EXTRA_MOUNT_POINT := $(10) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 352 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_DIR := $(3)/$(DEPMOD_STAGING_SUBDIR)/$(2)/lib/modules/$(8) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 353 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_EXTRA_MODULE_DIR := $(3)/$(DEPMOD_STAGING_SUBDIR)/$(10)/lib/modules/$(8) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 354 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_STAGING_DIR := $(3) |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 355 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_LOAD_MODULES := $(strip $(4)) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 356 | $(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] | 357 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_ARCHIVE := $(6) |
| 358 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_OUTPUT_DIR := $(7) |
| 359 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(1) $(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 360 | @echo depmod $$(PRIVATE_STAGING_DIR) |
| 361 | rm -rf $$(PRIVATE_STAGING_DIR) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 362 | mkdir -p $$(PRIVATE_MODULE_DIR) |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 363 | $(if $(6),\ |
Colin Cross | c27d795 | 2020-07-11 22:33:30 -0700 | [diff] [blame] | 364 | unzip -qoDD -d $$(PRIVATE_MODULE_DIR) $$(PRIVATE_MODULE_ARCHIVE); \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 365 | mkdir -p $$(PRIVATE_OUTPUT_DIR)/lib; \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 366 | 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] | 367 | find $$(PRIVATE_MODULE_DIR) -type f -name *.ko | xargs basename -a > $$(PRIVATE_LOAD_FILE); \ |
| 368 | ) |
| 369 | $(if $(1),\ |
| 370 | cp $$(PRIVATE_MODULES) $$(PRIVATE_MODULE_DIR)/; \ |
| 371 | for MODULE in $$(PRIVATE_LOAD_MODULES); do \ |
| 372 | basename $$$$MODULE >> $$(PRIVATE_LOAD_FILE); \ |
| 373 | done; \ |
| 374 | ) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 375 | # The ln -sf + find -delete sequence is to remove any modules in |
| 376 | # PRIVATE_EXTRA_MODULES which have same basename as MODULES in PRIVATE_MODULES |
| 377 | # Basically, it computes a set difference. When there is a duplicate module |
| 378 | # present in both directories, we want modules in PRIVATE_MODULES to take |
| 379 | # precedence. Since depmod does not provide any guarantee about ordering of |
| 380 | # dependency resolution, we achieve this by maually removing any duplicate |
| 381 | # modules with lower priority. |
| 382 | $(if $(9),\ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 383 | mkdir -p $$(PRIVATE_EXTRA_MODULE_DIR); \ |
Kelvin Zhang | 21b6cad | 2022-12-06 16:03:30 -0800 | [diff] [blame] | 384 | find $$(PRIVATE_EXTRA_MODULE_DIR) -maxdepth 1 -type f -name "*.ko" -delete; \ |
| 385 | cp $$(PRIVATE_EXTRA_MODULES) $$(PRIVATE_EXTRA_MODULE_DIR); \ |
| 386 | ln -sf $$(PRIVATE_MODULE_DIR)/*.ko $$(PRIVATE_EXTRA_MODULE_DIR); \ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 387 | find $$(PRIVATE_EXTRA_MODULE_DIR) -type l -delete; \ |
| 388 | ) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 389 | $(DEPMOD) -b $$(PRIVATE_STAGING_DIR) 0.0 |
| 390 | # Turn paths in modules.dep into absolute paths |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 391 | sed -i.tmp -e 's|\([^: ]*lib/modules/[^: ]*\)|/\1|g' $$(PRIVATE_STAGING_DIR)/$$(DEPMOD_STAGING_SUBDIR)/modules.dep |
| 392 | touch $$(PRIVATE_LOAD_FILE) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 393 | endef |
| 394 | |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 395 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 396 | # $(2): modules list |
| 397 | # $(3): module load list |
| 398 | # $(4): module load list filename |
| 399 | # $(5): output dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 400 | define module-load-list-copy-paths |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 401 | $(eval $(call build-image-module-load-list,$(1),$(2),$(3),$(4))) \ |
| 402 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4):$(5)/lib/modules/$(4) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 403 | endef |
| 404 | |
| 405 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 406 | # $(2): modules list |
| 407 | # $(3): module load list |
| 408 | # $(4): module load list filename |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 409 | define build-image-module-load-list |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 410 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): PRIVATE_LOAD_MODULES := $(3) |
| 411 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): $(2) |
| 412 | @echo load-list $$(@) |
| 413 | @echo '$$(strip $$(notdir $$(PRIVATE_LOAD_MODULES)))' | tr ' ' '\n' > $$(@) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 414 | endef |
| 415 | |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 416 | # $(1): source options file |
| 417 | # $(2): destination pathname |
| 418 | # Returns a build rule that checks the syntax of and installs a kernel modules |
| 419 | # options file. Strip and squeeze any extra space and blank lines. |
| 420 | # For use via $(eval). |
| 421 | define build-image-kernel-modules-options-file |
| 422 | $(2): $(1) |
| 423 | @echo "libmodprobe options $$(@)" |
| 424 | $(hide) mkdir -p "$$(dir $$@)" |
| 425 | $(hide) rm -f "$$@" |
| 426 | $(hide) awk <"$$<" >"$$@" \ |
| 427 | '/^#/ { print; next } \ |
| 428 | NF == 0 { next } \ |
| 429 | NF < 2 || $$$$1 != "options" \ |
| 430 | { print "Invalid options line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 431 | exit_status = 1; next } \ |
| 432 | { $$$$1 = $$$$1; print } \ |
| 433 | END { exit exit_status }' |
| 434 | endef |
| 435 | |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 436 | # $(1): source blocklist file |
| 437 | # $(2): destination pathname |
| 438 | # 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] | 439 | # blocklist file. Strip and squeeze any extra space and blank lines. |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 440 | # For use via $(eval). |
| 441 | define build-image-kernel-modules-blocklist-file |
| 442 | $(2): $(1) |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 443 | @echo "libmodprobe blocklist $$(@)" |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 444 | $(hide) mkdir -p "$$(dir $$@)" |
| 445 | $(hide) rm -f "$$@" |
| 446 | $(hide) awk <"$$<" >"$$@" \ |
| 447 | '/^#/ { print; next } \ |
| 448 | NF == 0 { next } \ |
| 449 | NF != 2 || $$$$1 != "blocklist" \ |
| 450 | { print "Invalid blocklist line " FNR ": " $$$$0 >"/dev/stderr"; \ |
| 451 | exit_status = 1; next } \ |
| 452 | { $$$$1 = $$$$1; print } \ |
| 453 | END { exit exit_status }' |
| 454 | endef |
| 455 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 456 | # $(1): image name |
| 457 | # $(2): build output directory (TARGET_OUT_VENDOR, TARGET_RECOVERY_ROOT_OUT, etc) |
| 458 | # $(3): mount point |
| 459 | # $(4): module load filename |
| 460 | # $(5): stripped staging directory |
| 461 | # $(6): kernel module directory name (top is an out of band value for no directory) |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 462 | # $(7): list of extra modules that might be dependency of modules in this partition |
| 463 | # $(8): mount point for extra modules. e.g. system |
| 464 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 465 | define build-image-kernel-modules-dir |
| 466 | $(if $(filter top,$(6)),\ |
| 467 | $(eval _kver :=)$(eval _sep :=),\ |
| 468 | $(eval _kver := $(6))$(eval _sep :=_))\ |
| 469 | $(if $(5),\ |
| 470 | $(eval _stripped_staging_dir := $(5)$(_sep)$(_kver)),\ |
| 471 | $(eval _stripped_staging_dir :=))\ |
| 472 | $(if $(strip $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver))$(BOARD_$(1)_KERNEL_MODULES_ARCHIVE$(_sep)$(_kver))),\ |
| 473 | $(if $(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver)),,\ |
| 474 | $(eval BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver) := $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver)))) \ |
Kelvin Zhang | b66b11e | 2022-12-05 13:04:42 -0800 | [diff] [blame] | 475 | $(if $(filter false,$(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver))),\ |
| 476 | $(eval BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver) :=),) \ |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 477 | $(eval _files := $(call build-image-kernel-modules,$(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver)),$(2),$(3),$(call intermediates-dir-for,PACKAGING,depmod_$(1)$(_sep)$(_kver)),$(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver)),$(4),$(BOARD_$(1)_KERNEL_MODULES_ARCHIVE$(_sep)$(_kver)),$(_stripped_staging_dir),$(_kver),$(7),$(8))) \ |
| 478 | $(call copy-many-files,$(_files)) \ |
| 479 | $(eval _modules := $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver)) ANDROID-GEN ANDROID-GEN ANDROID-GEN ANDROID-GEN) \ |
| 480 | $(eval KERNEL_MODULE_COPY_FILES += $(join $(addsuffix :,$(_modules)),$(_files)))) \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 481 | $(if $(_kver), \ |
| 482 | $(eval _dir := $(_kver)/), \ |
| 483 | $(eval _dir :=)) \ |
| 484 | $(if $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 485 | $(eval $(call build-image-kernel-modules-options-file, \ |
| 486 | $(BOARD_$(1)_KERNEL_MODULES_OPTIONS_FILE$(_sep)$(_kver)), \ |
| 487 | $(2)/lib/modules/$(_dir)modules.options)) \ |
| 488 | $(2)/lib/modules/$(_dir)modules.options) \ |
Yi-Yo Chiang | c12dd84 | 2021-02-04 23:20:15 +0800 | [diff] [blame] | 489 | $(if $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
| 490 | $(eval $(call build-image-kernel-modules-blocklist-file, \ |
| 491 | $(BOARD_$(1)_KERNEL_MODULES_BLOCKLIST_FILE$(_sep)$(_kver)), \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 492 | $(2)/lib/modules/$(_dir)modules.blocklist)) \ |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 493 | $(eval ALL_KERNEL_MODULES_BLOCKLIST += $(2)/lib/modules/$(_dir)modules.blocklist) \ |
Yi-Yo Chiang | 6c7e02e | 2021-04-04 21:30:48 +0800 | [diff] [blame] | 494 | $(2)/lib/modules/$(_dir)modules.blocklist) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 495 | endef |
| 496 | |
| 497 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 498 | define build-recovery-as-boot-load |
| 499 | $(if $(filter top,$(1)),\ |
| 500 | $(eval _kver :=)$(eval _sep :=),\ |
| 501 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 502 | $(if $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 503 | $(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)))) |
| 504 | endef |
| 505 | |
| 506 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 507 | define build-vendor-ramdisk-recovery-load |
| 508 | $(if $(filter top,$(1)),\ |
| 509 | $(eval _kver :=)$(eval _sep :=),\ |
| 510 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 511 | $(if $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 512 | $(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)))) |
| 513 | endef |
| 514 | |
Mark Salyzyn | 46a9c02 | 2020-06-25 04:35:16 -0700 | [diff] [blame] | 515 | # $(1): kernel module directory name (top is an out of band value for no directory) |
Isaac J. Manjarres | 3a7fe91 | 2023-01-25 17:28:59 -0800 | [diff] [blame] | 516 | define build-vendor-kernel-ramdisk-recovery-load |
| 517 | $(if $(filter top,$(1)),\ |
| 518 | $(eval _kver :=)$(eval _sep :=),\ |
| 519 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 520 | $(if $(BOARD_VENDOR_KERNEL_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 521 | $(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,vendor_kernel_ramdisk_recovery_module_list$(_sep)$(_kver)),$(BOARD_VENDOR_KERNEL_RAMDISK_KERNEL_MODULES$(_sep)$(_kver)),$(BOARD_VENDOR_KERNEL_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),modules.load.recovery,$(TARGET_VENDOR_KERNEL_RAMDISK_OUT)))) |
| 522 | endef |
| 523 | |
| 524 | # $(1): kernel module directory name (top is an out of band value for no directory) |
Mark Salyzyn | 46a9c02 | 2020-06-25 04:35:16 -0700 | [diff] [blame] | 525 | define build-vendor-charger-load |
| 526 | $(if $(filter top,$(1)),\ |
| 527 | $(eval _kver :=)$(eval _sep :=),\ |
| 528 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 529 | $(if $(BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 530 | $(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)))) |
| 531 | endef |
| 532 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 533 | ifneq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 534 | # If there is no vendor boot partition, store vendor ramdisk kernel modules in the |
| 535 | # boot ramdisk. |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 536 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 537 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD) |
| 538 | endif |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 539 | |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 540 | ifeq ($(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD),) |
| 541 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD := $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 542 | endif |
| 543 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 544 | ifneq ($(strip $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES)),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 545 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT), true) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 546 | BOARD_RECOVERY_KERNEL_MODULES += $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 547 | endif |
| 548 | endif |
| 549 | |
Mark-PK Tsai | 8c54396 | 2021-08-23 18:01:51 +0800 | [diff] [blame] | 550 | ifneq ($(BOARD_DO_NOT_STRIP_RECOVERY_MODULES),true) |
| 551 | RECOVERY_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_recovery_stripped) |
| 552 | else |
| 553 | RECOVERY_STRIPPED_MODULE_STAGING_DIR := |
| 554 | endif |
| 555 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 556 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_MODULES),true) |
| 557 | VENDOR_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_stripped) |
| 558 | else |
| 559 | VENDOR_STRIPPED_MODULE_STAGING_DIR := |
| 560 | endif |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 561 | |
Pierre Couillaud | d99da8f | 2020-06-02 13:13:32 -0700 | [diff] [blame] | 562 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_RAMDISK_MODULES),true) |
| 563 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_ramdisk_stripped) |
| 564 | else |
| 565 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 566 | endif |
| 567 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 568 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_KERNEL_RAMDISK_MODULES),true) |
| 569 | VENDOR_KERNEL_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_kernel_ramdisk_stripped) |
| 570 | else |
| 571 | VENDOR_KERNEL_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 572 | endif |
| 573 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 574 | BOARD_KERNEL_MODULE_DIRS += top |
Kelvin Zhang | 395d3df | 2022-12-07 10:36:10 -0800 | [diff] [blame] | 575 | |
| 576 | # Default to not generating modules.dep for kernel modules on system |
| 577 | # side. We should only load these modules if they are depended by vendor |
| 578 | # side modules. |
| 579 | ifeq ($(BOARD_SYSTEM_KERNEL_MODULES_LOAD),) |
| 580 | BOARD_SYSTEM_KERNEL_MODULES_LOAD := false |
| 581 | endif |
| 582 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 583 | $(foreach kmd,$(BOARD_KERNEL_MODULE_DIRS), \ |
Mark-PK Tsai | 8c54396 | 2021-08-23 18:01:51 +0800 | [diff] [blame] | 584 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,RECOVERY,$(TARGET_RECOVERY_ROOT_OUT),,modules.load.recovery,$(RECOVERY_STRIPPED_MODULE_STAGING_DIR),$(kmd))) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 585 | $(eval vendor_ramdisk_fragment := $(KERNEL_MODULE_DIR_VENDOR_RAMDISK_FRAGMENT_$(kmd))) \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 586 | $(if $(vendor_ramdisk_fragment), \ |
| 587 | $(eval output_dir := $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR)) \ |
| 588 | $(eval result_var := VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).FILES) \ |
| 589 | $(eval ### else ###), \ |
| 590 | $(eval output_dir := $(TARGET_VENDOR_RAMDISK_OUT)) \ |
| 591 | $(eval result_var := ALL_DEFAULT_INSTALLED_MODULES)) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 592 | $(eval $(result_var) += $(call build-image-kernel-modules-dir,VENDOR_RAMDISK,$(output_dir),,modules.load,$(VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR),$(kmd))) \ |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 593 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,VENDOR_KERNEL_RAMDISK,$(TARGET_VENDOR_KERNEL_RAMDISK_OUT),,modules.load,$(VENDOR_KERNEL_RAMDISK_STRIPPED_MODULE_STAGING_DIR),$(kmd))) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 594 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-ramdisk-recovery-load,$(kmd))) \ |
Isaac J. Manjarres | 3a7fe91 | 2023-01-25 17:28:59 -0800 | [diff] [blame] | 595 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-kernel-ramdisk-recovery-load,$(kmd))) \ |
Kelvin Zhang | d5f0611 | 2022-12-02 15:19:30 -0800 | [diff] [blame] | 596 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,VENDOR,$(if $(filter true,$(BOARD_USES_VENDOR_DLKMIMAGE)),$(TARGET_OUT_VENDOR_DLKM),$(TARGET_OUT_VENDOR)),vendor,modules.load,$(VENDOR_STRIPPED_MODULE_STAGING_DIR),$(kmd),$(BOARD_SYSTEM_KERNEL_MODULES),system)) \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 597 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-charger-load,$(kmd))) \ |
| 598 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,ODM,$(if $(filter true,$(BOARD_USES_ODM_DLKMIMAGE)),$(TARGET_OUT_ODM_DLKM),$(TARGET_OUT_ODM)),odm,modules.load,,$(kmd))) \ |
Ramji Jiyani | 49b70b6 | 2022-12-01 00:55:10 +0000 | [diff] [blame] | 599 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,SYSTEM,$(if $(filter true,$(BOARD_USES_SYSTEM_DLKMIMAGE)),$(TARGET_OUT_SYSTEM_DLKM),$(TARGET_OUT_SYSTEM)),system,modules.load,,$(kmd))) \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 600 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 601 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-recovery-as-boot-load,$(kmd))),\ |
| 602 | $(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] | 603 | |
Kelvin Zhang | 0dbfd70 | 2023-01-31 10:47:48 -0800 | [diff] [blame] | 604 | ifeq ($(BOARD_SYSTEM_KERNEL_MODULES),) |
| 605 | ifneq ($(BOARD_SYSTEM_DLKM_SRC),) |
| 606 | ifneq ($(wildcard $(BOARD_SYSTEM_DLKM_SRC)/*),) |
Kelvin Zhang | 19961b5 | 2023-02-14 14:30:48 -0800 | [diff] [blame] | 607 | SYSTEM_KERNEL_MODULES := $(shell find $(BOARD_SYSTEM_DLKM_SRC) -type f) |
| 608 | SRC_SYSTEM_KERNEL_MODULES := $(SYSTEM_KERNEL_MODULES) |
| 609 | DST_SYSTEM_KERNEL_MODULES := $(patsubst $(BOARD_SYSTEM_DLKM_SRC)/%,:$(TARGET_OUT_SYSTEM_DLKM)/%,$(SRC_SYSTEM_KERNEL_MODULES)) |
Kelvin Zhang | 0dbfd70 | 2023-01-31 10:47:48 -0800 | [diff] [blame] | 610 | SYSTEM_KERNEL_MODULE_COPY_PAIRS := $(join $(SRC_SYSTEM_KERNEL_MODULES),$(DST_SYSTEM_KERNEL_MODULES)) |
| 611 | ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(SYSTEM_KERNEL_MODULE_COPY_PAIRS)) |
| 612 | endif |
| 613 | endif |
| 614 | endif |
| 615 | |
| 616 | |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 617 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 618 | # Cert-to-package mapping. Used by the post-build signing tools. |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 619 | # Use a macro to add newline to each echo command |
Jiyong Park | 7b96c59 | 2020-05-01 10:29:09 +0900 | [diff] [blame] | 620 | # $1 stem name of the package |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 621 | # $2 certificate |
| 622 | # $3 private key |
| 623 | # $4 compressed |
| 624 | # $5 partition tag |
| 625 | # $6 output file |
Narayan Kamath | 6a4bd69 | 2017-08-14 10:53:50 +0100 | [diff] [blame] | 626 | define _apkcerts_write_line |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 627 | $(hide) echo -n 'name="$(1).apk" certificate="$2" private_key="$3"' >> $6 |
| 628 | $(if $(4), $(hide) echo -n ' compressed="$4"' >> $6) |
| 629 | $(if $(5), $(hide) echo -n ' partition="$5"' >> $6) |
| 630 | $(hide) echo '' >> $6 |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 631 | |
| 632 | endef |
| 633 | |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 634 | # ----------------------------------------------------------------- |
| 635 | # Merge an individual apkcerts output into the final apkcerts.txt output. |
| 636 | # Use a macro to make it compatible with _apkcerts_write_line |
| 637 | # $1 apkcerts file to be merged |
| 638 | # $2 output file |
| 639 | define _apkcerts_merge |
| 640 | $(hide) cat $1 >> $2 |
| 641 | |
| 642 | endef |
| 643 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 644 | name := $(TARGET_PRODUCT) |
| 645 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 646 | name := $(name)_debug |
| 647 | endif |
| 648 | name := $(name)-apkcerts-$(FILE_NAME_TAG) |
| 649 | intermediates := \ |
| 650 | $(call intermediates-dir-for,PACKAGING,apkcerts) |
| 651 | APKCERTS_FILE := $(intermediates)/$(name).txt |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 652 | all_apkcerts_files := $(sort $(foreach p,$(PACKAGES),$(PACKAGES.$(p).APKCERTS_FILE))) |
| 653 | $(APKCERTS_FILE): $(all_apkcerts_files) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 654 | # We don't need to really build all the modules. |
| 655 | # TODO: rebuild APKCERTS_FILE if any app change its cert. |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 656 | $(APKCERTS_FILE): |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 657 | @echo APK certs list: $@ |
| 658 | @mkdir -p $(dir $@) |
| 659 | @rm -f $@ |
Chris Gross | fabf50a | 2019-05-02 12:42:09 -0700 | [diff] [blame] | 660 | $(foreach p,$(sort $(PACKAGES)),\ |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 661 | $(if $(PACKAGES.$(p).APKCERTS_FILE),\ |
| 662 | $(call _apkcerts_merge,$(PACKAGES.$(p).APKCERTS_FILE), $@),\ |
| 663 | $(if $(PACKAGES.$(p).EXTERNAL_KEY),\ |
Jaewoong Jung | 7b634d3 | 2020-10-23 14:02:16 -0700 | [diff] [blame] | 664 | $(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] | 665 | $(call _apkcerts_write_line,$(PACKAGES.$(p).STEM),$(PACKAGES.$(p).CERTIFICATE),$(PACKAGES.$(p).PRIVATE_KEY),$(PACKAGES.$(p).COMPRESSED),$(PACKAGES.$(p).PARTITION),$@)))) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 666 | $(if $(filter true,$(PRODUCT_FSVERITY_GENERATE_METADATA)),\ |
| 667 | $(call _apkcerts_write_line,BuildManifest,$(FSVERITY_APK_KEY_PATH).x509.pem,$(FSVERITY_APK_KEY_PATH).pk8,,system,$@) \ |
| 668 | $(if $(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),\ |
Victor Hsieh | adc94a1 | 2022-09-20 11:46:09 -0700 | [diff] [blame] | 669 | $(call _apkcerts_write_line,BuildManifestSystemExt,$(FSVERITY_APK_KEY_PATH).x509.pem,$(FSVERITY_APK_KEY_PATH).pk8,,system_ext,$@))) |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 670 | # In case value of PACKAGES is empty. |
Ying Wang | f272cd6 | 2011-09-26 12:05:06 -0700 | [diff] [blame] | 671 | $(hide) touch $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 672 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 673 | $(call declare-0p-target,$(APKCERTS_FILE)) |
| 674 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 675 | .PHONY: apkcerts-list |
| 676 | apkcerts-list: $(APKCERTS_FILE) |
| 677 | |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 678 | ifneq (,$(TARGET_BUILD_APPS)) |
| 679 | $(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt) |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 680 | $(call dist-for-goals, apps_only, $(SOONG_APEX_KEYS_FILE):apexkeys.txt) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 681 | endif |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 682 | |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 683 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 684 | # ----------------------------------------------------------------- |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 685 | # build system stats |
| 686 | BUILD_SYSTEM_STATS := $(PRODUCT_OUT)/build_system_stats.txt |
| 687 | $(BUILD_SYSTEM_STATS): |
| 688 | @rm -f $@ |
| 689 | @$(foreach s,$(STATS.MODULE_TYPE),echo "modules_type_make,$(s),$(words $(STATS.MODULE_TYPE.$(s)))" >>$@;) |
| 690 | @$(foreach s,$(STATS.SOONG_MODULE_TYPE),echo "modules_type_soong,$(s),$(STATS.SOONG_MODULE_TYPE.$(s))" >>$@;) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 691 | $(call declare-1p-target,$(BUILD_SYSTEM_STATS),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 692 | $(call dist-for-goals,droidcore-unbundled,$(BUILD_SYSTEM_STATS)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 693 | |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 694 | # ----------------------------------------------------------------- |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 695 | # build /product/etc/security/avb/system_other.avbpubkey if needed |
| 696 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 697 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 698 | INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET := $(TARGET_OUT_PRODUCT_ETC)/security/avb/system_other.avbpubkey |
| 699 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET) |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 700 | endif # BOARD_AVB_ENABLE |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 701 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 702 | |
| 703 | # ----------------------------------------------------------------- |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 704 | # Modules ready to be converted to Soong, ordered by how many |
| 705 | # modules depend on them. |
| 706 | SOONG_CONV := $(sort $(SOONG_CONV)) |
| 707 | SOONG_CONV_DATA := $(call intermediates-dir-for,PACKAGING,soong_conversion)/soong_conv_data |
| 708 | $(SOONG_CONV_DATA): |
| 709 | @rm -f $@ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 710 | @$(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] | 711 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 712 | $(call declare-1p-target,$(SOONG_CONV_DATA),build) |
| 713 | |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 714 | SOONG_TO_CONVERT_SCRIPT := build/make/tools/soong_to_convert.py |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 715 | SOONG_TO_CONVERT := $(PRODUCT_OUT)/soong_to_convert.txt |
| 716 | $(SOONG_TO_CONVERT): $(SOONG_CONV_DATA) $(SOONG_TO_CONVERT_SCRIPT) |
| 717 | @rm -f $@ |
| 718 | $(hide) $(SOONG_TO_CONVERT_SCRIPT) $< >$@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 719 | $(call declare-1p-target,$(SOONG_TO_CONVERT),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 720 | $(call dist-for-goals,droidcore-unbundled,$(SOONG_TO_CONVERT)) |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 721 | |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 722 | $(PRODUCT_OUT)/product_packages.txt: |
| 723 | @rm -f $@ |
| 724 | echo "" > $@ |
| 725 | $(foreach x,$(PRODUCT_PACKAGES),echo $(x) >> $@$(newline)) |
| 726 | |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 727 | MK2BP_CATALOG_SCRIPT := build/make/tools/mk2bp_catalog.py |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 728 | PRODUCT_PACKAGES_TXT := $(PRODUCT_OUT)/product_packages.txt |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 729 | MK2BP_REMAINING_HTML := $(PRODUCT_OUT)/mk2bp_remaining.html |
| 730 | $(MK2BP_REMAINING_HTML): PRIVATE_CODE_SEARCH_BASE_URL := "https://cs.android.com/android/platform/superproject/+/master:" |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 731 | $(MK2BP_REMAINING_HTML): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) $(PRODUCT_PACKAGES_TXT) |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 732 | @rm -f $@ |
| 733 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 734 | --device=$(TARGET_DEVICE) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 735 | --product-packages=$(PRODUCT_PACKAGES_TXT) \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 736 | --title="Remaining Android.mk files for $(TARGET_DEVICE)-$(TARGET_BUILD_VARIANT)" \ |
| 737 | --codesearch=$(PRIVATE_CODE_SEARCH_BASE_URL) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 738 | --out-dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 739 | --mode=html \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 740 | > $@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 741 | $(call declare-1p-target,$(MK2BP_REMAINING_HTML),build) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 742 | $(call dist-for-goals,droidcore-unbundled,$(MK2BP_REMAINING_HTML)) |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 743 | |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 744 | MK2BP_REMAINING_CSV := $(PRODUCT_OUT)/mk2bp_remaining.csv |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 745 | $(MK2BP_REMAINING_CSV): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) $(PRODUCT_PACKAGES_TXT) |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 746 | @rm -f $@ |
| 747 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 748 | --device=$(TARGET_DEVICE) \ |
Yuntao Xu | c21dc3c | 2022-03-17 18:39:36 -0700 | [diff] [blame] | 749 | --product-packages=$(PRODUCT_PACKAGES_TXT) \ |
| 750 | --out-dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 751 | --mode=csv \ |
| 752 | > $@ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 753 | $(call declare-1p-target,$(MK2BP_REMAINING_CSV)) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 754 | $(call dist-for-goals,droidcore-unbundled,$(MK2BP_REMAINING_CSV)) |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 755 | |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 756 | # ----------------------------------------------------------------- |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 757 | # Modules use -Wno-error, or added default -Wall -Werror |
| 758 | WALL_WERROR := $(PRODUCT_OUT)/wall_werror.txt |
| 759 | $(WALL_WERROR): |
| 760 | @rm -f $@ |
| 761 | echo "# Modules using -Wno-error" >> $@ |
| 762 | for m in $(sort $(SOONG_MODULES_USING_WNO_ERROR) $(MODULES_USING_WNO_ERROR)); do echo $$m >> $@; done |
Yi Kong | ee99ddf | 2022-05-19 20:13:55 +0800 | [diff] [blame] | 763 | echo "# Modules that allow warnings" >> $@ |
| 764 | for m in $(sort $(SOONG_MODULES_WARNINGS_ALLOWED) $(MODULES_WARNINGS_ALLOWED)); do echo $$m >> $@; done |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 765 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 766 | $(call declare-0p-target,$(WALL_WERROR)) |
| 767 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 768 | $(call dist-for-goals,droidcore-unbundled,$(WALL_WERROR)) |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 769 | |
| 770 | # ----------------------------------------------------------------- |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 771 | # Modules missing profile files |
| 772 | PGO_PROFILE_MISSING := $(PRODUCT_OUT)/pgo_profile_file_missing.txt |
| 773 | $(PGO_PROFILE_MISSING): |
| 774 | @rm -f $@ |
| 775 | echo "# Modules missing PGO profile files" >> $@ |
| 776 | for m in $(SOONG_MODULES_MISSING_PGO_PROFILE_FILE); do echo $$m >> $@; done |
| 777 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 778 | $(call declare-0p-target,$(PGO_PROFILE_MISSING)) |
| 779 | |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 780 | $(call dist-for-goals,droidcore,$(PGO_PROFILE_MISSING)) |
| 781 | |
Anton Hansson | cd8fa36 | 2020-12-08 20:56:02 +0000 | [diff] [blame] | 782 | CERTIFICATE_VIOLATION_MODULES_FILENAME := $(PRODUCT_OUT)/certificate_violation_modules.txt |
| 783 | $(CERTIFICATE_VIOLATION_MODULES_FILENAME): |
| 784 | rm -f $@ |
| 785 | $(foreach m,$(sort $(CERTIFICATE_VIOLATION_MODULES)), echo $(m) >> $@;) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 786 | $(call declare-0p-target,$(CERTIFICATE_VIOLATION_MODULES_FILENAME)) |
Anton Hansson | cd8fa36 | 2020-12-08 20:56:02 +0000 | [diff] [blame] | 787 | $(call dist-for-goals,droidcore,$(CERTIFICATE_VIOLATION_MODULES_FILENAME)) |
| 788 | |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 789 | # ----------------------------------------------------------------- |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 790 | # 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] | 791 | # for future OTA packages installed by this system. Actual product |
| 792 | # deliverables will be re-signed by hand. We expect this file to |
| 793 | # exist with the suffixes ".x509.pem" and ".pk8". |
Colin Cross | 21122f9 | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 794 | DEFAULT_KEY_CERT_PAIR := $(strip $(DEFAULT_SYSTEM_DEV_CERTIFICATE)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 795 | |
| 796 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 797 | # 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] | 798 | # if they don't do anything. |
| 799 | .PHONY: systemimage |
| 800 | systemimage: |
| 801 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 802 | # ----------------------------------------------------------------- |
| 803 | |
| 804 | .PHONY: event-log-tags |
| 805 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 806 | # Produce an event logs tag file for everything we know about, in order |
| 807 | # to properly allocate numbers. Then produce a file that's filtered |
| 808 | # for what's going to be installed. |
| 809 | |
| 810 | all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt |
| 811 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 812 | event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags |
| 813 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 814 | # Include tags from all packages that we know about |
| 815 | all_event_log_tags_src := \ |
| 816 | $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS))) |
| 817 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 818 | $(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src) |
| 819 | $(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] | 820 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 821 | $(hide) $(MERGETAGS) -o $@ $(PRIVATE_SRC_FILES) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 822 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 823 | $(call declare-0p-target,$(all_event_log_tags_file)) |
| 824 | |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 825 | # Include tags from all packages included in this product, plus all |
| 826 | # tags that are part of the system (ie, not in a vendor/ or device/ |
| 827 | # directory). |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 828 | event_log_tags_src := \ |
| 829 | $(sort $(foreach m,\ |
Yo Chiang | 5e85bfe | 2020-05-13 20:19:05 +0800 | [diff] [blame] | 830 | $(call resolve-bitness-for-modules,TARGET,$(PRODUCT_PACKAGES)) \ |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 831 | $(call module-names-for-tag-list,user), \ |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 832 | $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \ |
| 833 | $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src))) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 834 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 835 | $(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 836 | $(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file) |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 837 | $(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] | 838 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 839 | $(hide) $(MERGETAGS) -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 840 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 841 | $(eval $(call declare-0p-target,$(event_log_tags_file))) |
| 842 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 843 | event-log-tags: $(event_log_tags_file) |
| 844 | |
| 845 | ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file) |
| 846 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 847 | # Initialize INSTALLED_FILES_OUTSIDE_IMAGES with the list of all device files, |
| 848 | # files installed in images will be filtered out later. |
| 849 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out \ |
| 850 | $(PRODUCT_OUT)/apex/% \ |
Colin Cross | 41e93ea | 2022-03-25 17:31:49 -0700 | [diff] [blame] | 851 | $(PRODUCT_OUT)/fake_packages/% \ |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 852 | $(PRODUCT_OUT)/testcases/%, \ |
| 853 | $(filter $(PRODUCT_OUT)/%,$(ALL_DEFAULT_INSTALLED_MODULES))) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 854 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 855 | # ################################################################# |
| 856 | # Targets for boot/OS images |
| 857 | # ################################################################# |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 858 | ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true) |
| 859 | INSTALLED_BOOTLOADER_MODULE := $(PRODUCT_OUT)/bootloader |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 860 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 861 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_BOOTLOADER),$(INSTALLED_BOOTLOADER_MODULE))) |
| 862 | $(call dist-for-goals,dist_files,$(INSTALLED_BOOTLOADER_MODULE)) |
| 863 | endif # BOARD_PREBUILT_BOOTLOADER |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 864 | ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true) |
| 865 | INSTALLED_2NDBOOTLOADER_TARGET := $(PRODUCT_OUT)/2ndbootloader |
| 866 | else |
| 867 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 868 | endif |
| 869 | else |
| 870 | INSTALLED_BOOTLOADER_MODULE := |
| 871 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 872 | endif # TARGET_NO_BOOTLOADER |
| 873 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 874 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 875 | INSTALLED_KERNEL_TARGET := $(foreach k,$(BOARD_KERNEL_BINARIES), \ |
| 876 | $(PRODUCT_OUT)/$(k)) |
| 877 | else |
| 878 | INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel |
| 879 | endif |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 880 | else |
| 881 | INSTALLED_KERNEL_TARGET := |
| 882 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 883 | |
| 884 | # ----------------------------------------------------------------- |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 885 | # the root dir |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 886 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_ROOT_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 887 | INTERNAL_ROOT_FILES := $(filter $(TARGET_ROOT_OUT)/%, \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 888 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 889 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 890 | |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 891 | INSTALLED_FILES_FILE_ROOT := $(PRODUCT_OUT)/installed-files-root.txt |
| 892 | INSTALLED_FILES_JSON_ROOT := $(INSTALLED_FILES_FILE_ROOT:.txt=.json) |
| 893 | $(INSTALLED_FILES_FILE_ROOT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ROOT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 894 | $(INSTALLED_FILES_FILE_ROOT) : $(INTERNAL_ROOT_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 895 | @echo Installed file list: $@ |
SzuWei Lin | c230b0b | 2021-12-30 13:48:01 +0800 | [diff] [blame] | 896 | mkdir -p $(TARGET_ROOT_OUT) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 897 | mkdir -p $(dir $@) |
| 898 | rm -f $@ |
| 899 | $(FILESLIST) $(TARGET_ROOT_OUT) > $(@:.txt=.json) |
| 900 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 901 | |
Bob Badour | e9bdbc5 | 2022-03-10 11:31:07 -0800 | [diff] [blame] | 902 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ROOT)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 903 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ROOT)) |
Bob Badour | e9bdbc5 | 2022-03-10 11:31:07 -0800 | [diff] [blame] | 904 | |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 905 | #------------------------------------------------------------------ |
| 906 | # dtb |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 907 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 908 | INSTALLED_DTBIMAGE_TARGET := $(PRODUCT_OUT)/dtb.img |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 909 | ifdef BOARD_PREBUILT_DTBIMAGE_DIR |
Hridya Valsaraju | c63a744 | 2019-02-07 11:38:18 -0800 | [diff] [blame] | 910 | $(INSTALLED_DTBIMAGE_TARGET) : $(sort $(wildcard $(BOARD_PREBUILT_DTBIMAGE_DIR)/*.dtb)) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 911 | cat $^ > $@ |
| 912 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 913 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 914 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 915 | # ----------------------------------------------------------------- |
| 916 | # the ramdisk |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 917 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_RAMDISK_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 918 | ifdef BUILDING_RAMDISK_IMAGE |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 919 | INTERNAL_RAMDISK_FILES := $(filter $(TARGET_RAMDISK_OUT)/%, \ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 920 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 921 | |
| 922 | INSTALLED_FILES_FILE_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk.txt |
| 923 | INSTALLED_FILES_JSON_RAMDISK := $(INSTALLED_FILES_FILE_RAMDISK:.txt=.json) |
| 924 | $(INSTALLED_FILES_FILE_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RAMDISK) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 925 | $(INSTALLED_FILES_FILE_RAMDISK) : $(INTERNAL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 926 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 927 | mkdir -p $(TARGET_RAMDISK_OUT) |
| 928 | mkdir -p $(dir $@) |
| 929 | rm -f $@ |
| 930 | $(FILESLIST) $(TARGET_RAMDISK_OUT) > $(@:.txt=.json) |
| 931 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 932 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 933 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 934 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_RAMDISK))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 935 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 936 | BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img |
| 937 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 938 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 939 | # -l enables the legacy format used by the Linux kernel |
| 940 | COMPRESSION_COMMAND_DEPS := $(LZ4) |
| 941 | COMPRESSION_COMMAND := $(LZ4) -l -12 --favor-decSpeed |
| 942 | RAMDISK_EXT := .lz4 |
| 943 | else |
| 944 | COMPRESSION_COMMAND_DEPS := $(MINIGZIP) |
| 945 | COMPRESSION_COMMAND := $(MINIGZIP) |
| 946 | RAMDISK_EXT := .gz |
| 947 | endif |
| 948 | |
Vincent Donnefort | 4a5fd83 | 2022-12-22 13:48:55 +0000 | [diff] [blame] | 949 | # This file contains /dev nodes description added to the generic ramdisk |
| 950 | RAMDISK_NODE_LIST := $(PRODUCT_OUT)/ramdisk_node_list |
| 951 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 952 | # We just build this directly to the install location. |
| 953 | INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET) |
Inseob Kim | adcdb2f | 2021-06-11 12:55:10 +0900 | [diff] [blame] | 954 | $(INSTALLED_RAMDISK_TARGET): PRIVATE_DIRS := debug_ramdisk dev metadata mnt proc second_stage_resources sys |
Vincent Donnefort | 4a5fd83 | 2022-12-22 13:48:55 +0000 | [diff] [blame] | 955 | $(INSTALLED_RAMDISK_TARGET): $(MKBOOTFS) $(RAMDISK_NODE_LIST) $(INTERNAL_RAMDISK_FILES) $(INSTALLED_FILES_FILE_RAMDISK) | $(COMPRESSION_COMMAND_DEPS) |
Petri Gynther | 4c063e3 | 2021-03-06 13:26:01 -0800 | [diff] [blame] | 956 | $(call pretty,"Target ramdisk: $@") |
Inseob Kim | adcdb2f | 2021-06-11 12:55:10 +0900 | [diff] [blame] | 957 | $(hide) mkdir -p $(addprefix $(TARGET_RAMDISK_OUT)/,$(PRIVATE_DIRS)) |
| 958 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
| 959 | $(hide) mkdir -p $(addprefix $(TARGET_RAMDISK_OUT)/first_stage_ramdisk/,$(PRIVATE_DIRS)) |
| 960 | endif |
Vincent Donnefort | 4a5fd83 | 2022-12-22 13:48:55 +0000 | [diff] [blame] | 961 | $(hide) $(MKBOOTFS) -n $(RAMDISK_NODE_LIST) -d $(TARGET_OUT) $(TARGET_RAMDISK_OUT) | $(COMPRESSION_COMMAND) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 962 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 963 | $(call declare-1p-container,$(INSTALLED_RAMDISK_TARGET),) |
| 964 | $(call declare-container-license-deps,$(INSTALLED_RAMDISK_TARGET),$(INTERNAL_RAMDISK_FILE),$(PRODUCT_OUT)/:/) |
| 965 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 966 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_RAMDISK_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 967 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 968 | .PHONY: ramdisk-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 969 | ramdisk-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 970 | @echo "make $@: ignoring dependencies" |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 971 | $(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] | 972 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 973 | endif # BUILDING_RAMDISK_IMAGE |
| 974 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 975 | # ----------------------------------------------------------------- |
| 976 | # the boot image, which is a collection of other images. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 977 | |
| 978 | # This is defined here since we may be building recovery as boot |
| 979 | # below and only want to define this once |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 980 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 981 | BUILT_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot,$(BOARD_KERNEL_BINARIES)), $(PRODUCT_OUT)/$(k).img) |
| 982 | else |
| 983 | BUILT_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 984 | endif |
| 985 | |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 986 | INTERNAL_PREBUILT_BOOTIMAGE := |
| 987 | |
| 988 | my_installed_prebuilt_gki_apex := $(strip $(foreach package,$(PRODUCT_PACKAGES),$(if $(ALL_MODULES.$(package).EXTRACTED_BOOT_IMAGE),$(package)))) |
| 989 | ifdef my_installed_prebuilt_gki_apex |
| 990 | ifneq (1,$(words $(my_installed_prebuilt_gki_apex))) # len(my_installed_prebuilt_gki_apex) > 1 |
| 991 | $(error More than one prebuilt GKI APEXes are installed: $(my_installed_prebuilt_gki_apex)) |
| 992 | endif # len(my_installed_prebuilt_gki_apex) > 1 |
| 993 | |
| 994 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 995 | $(error Must not define BOARD_PREBUILT_BOOTIMAGE because a prebuilt GKI APEX is installed: $(my_installed_prebuilt_gki_apex)) |
| 996 | endif # BOARD_PREBUILT_BOOTIMAGE defined |
| 997 | |
| 998 | my_apex_extracted_boot_image := $(ALL_MODULES.$(my_installed_prebuilt_gki_apex).EXTRACTED_BOOT_IMAGE) |
| 999 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 1000 | $(eval $(call copy-one-file,$(my_apex_extracted_boot_image),$(INSTALLED_BOOTIMAGE_TARGET))) |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1001 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",boot) |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1002 | |
| 1003 | INTERNAL_PREBUILT_BOOTIMAGE := $(my_apex_extracted_boot_image) |
| 1004 | |
| 1005 | else # my_installed_prebuilt_gki_apex not defined |
| 1006 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1007 | # $1: boot image target |
| 1008 | # returns the kernel used to make the bootimage |
| 1009 | define bootimage-to-kernel |
| 1010 | $(if $(BOARD_KERNEL_BINARIES),\ |
| 1011 | $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $(1)))),\ |
| 1012 | $(INSTALLED_KERNEL_TARGET)) |
| 1013 | endef |
| 1014 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1015 | ifdef BOARD_BOOTIMAGE_PARTITION_SIZE |
| 1016 | BOARD_KERNEL_BOOTIMAGE_PARTITION_SIZE := $(BOARD_BOOTIMAGE_PARTITION_SIZE) |
| 1017 | endif |
| 1018 | |
| 1019 | # $1: boot image file name |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 1020 | # $2: boot image variant (boot, boot-debug, boot-test-harness) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1021 | define get-bootimage-partition-size |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1022 | $(BOARD_$(call to-upper,$(subst .img,,$(subst $(2),kernel,$(notdir $(1)))))_BOOTIMAGE_PARTITION_SIZE) |
| 1023 | endef |
| 1024 | |
| 1025 | # $1: partition size |
| 1026 | define get-partition-size-argument |
| 1027 | $(if $(1),--partition_size $(1),--dynamic_partition_size) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1028 | endef |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1029 | |
celeste wang | e3d4320 | 2022-08-12 08:36:37 +0000 | [diff] [blame] | 1030 | ifndef BOARD_PREBUILT_BOOTIMAGE |
| 1031 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1032 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1033 | INTERNAL_BOOTIMAGE_ARGS := \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1034 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 1035 | |
Bowgo Tsai | 85578e0 | 2022-04-19 10:50:59 +0800 | [diff] [blame] | 1036 | # TODO(b/229701033): clean up BOARD_BUILD_GKI_BOOT_IMAGE_WITHOUT_RAMDISK. |
| 1037 | ifneq ($(BOARD_BUILD_GKI_BOOT_IMAGE_WITHOUT_RAMDISK),true) |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 1038 | ifneq ($(BUILDING_INIT_BOOT_IMAGE),true) |
| 1039 | INTERNAL_BOOTIMAGE_ARGS += --ramdisk $(INSTALLED_RAMDISK_TARGET) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1040 | endif |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 1041 | endif |
| 1042 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1043 | ifndef BUILDING_VENDOR_BOOT_IMAGE |
| 1044 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1045 | INTERNAL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1046 | endif |
| 1047 | endif |
| 1048 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1049 | INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS)) |
| 1050 | |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 1051 | # kernel cmdline/base/pagesize in boot. |
| 1052 | # - If using GKI, use GENERIC_KERNEL_CMDLINE. Remove kernel base and pagesize because they are |
| 1053 | # device-specific. |
| 1054 | # - If not using GKI: |
| 1055 | # - If building vendor_boot, INTERNAL_KERNEL_CMDLINE, base and pagesize goes in vendor_boot. |
| 1056 | # - Otherwise, put them in boot. |
| 1057 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 1058 | ifdef GENERIC_KERNEL_CMDLINE |
| 1059 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(GENERIC_KERNEL_CMDLINE)" |
| 1060 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 1061 | else ifndef BUILDING_VENDOR_BOOT_IMAGE # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
| 1062 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1063 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1064 | endif |
| 1065 | ifdef BOARD_KERNEL_BASE |
| 1066 | INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1067 | endif |
| 1068 | ifdef BOARD_KERNEL_PAGESIZE |
| 1069 | INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1070 | endif |
| 1071 | endif # BUILDING_VENDOR_BOOT_IMAGE == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 1072 | |
Bowgo Tsai | 662a2c6 | 2022-03-14 17:59:55 +0800 | [diff] [blame] | 1073 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 1074 | # GKI boot images will not set system version & SPL value in the header. |
| 1075 | # They can be set by the device manufacturer in the AVB properties instead. |
| 1076 | INTERNAL_MKBOOTIMG_VERSION_ARGS := |
| 1077 | else |
| 1078 | INTERNAL_MKBOOTIMG_VERSION_ARGS := \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 1079 | --os_version $(PLATFORM_VERSION_LAST_STABLE) \ |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1080 | --os_patch_level $(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | 662a2c6 | 2022-03-14 17:59:55 +0800 | [diff] [blame] | 1081 | endif # BOARD_GKI_SIGNING_KEY_PATH |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 1082 | |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1083 | # $(1): image target to certify |
| 1084 | # $(2): out certificate target |
| 1085 | # $(3): image name |
| 1086 | # $(4): additional AVB arguments |
| 1087 | define generate_generic_boot_image_certificate |
| 1088 | rm -rf "$(2)" |
| 1089 | mkdir -p "$(dir $(2))" |
| 1090 | $(GENERATE_GKI_CERTIFICATE) $(INTERNAL_GKI_CERTIFICATE_ARGS) \ |
| 1091 | --additional_avb_args "$(4)" \ |
| 1092 | --name "$(3)" --output "$(2)" "$(1)" |
| 1093 | endef |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 1094 | |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1095 | INTERNAL_GKI_CERTIFICATE_ARGS := |
| 1096 | INTERNAL_GKI_CERTIFICATE_DEPS := |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1097 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 1098 | ifndef BOARD_GKI_SIGNING_ALGORITHM |
| 1099 | $(error BOARD_GKI_SIGNING_ALGORITHM should be defined with BOARD_GKI_SIGNING_KEY_PATH) |
| 1100 | endif |
| 1101 | |
| 1102 | INTERNAL_GKI_CERTIFICATE_ARGS := \ |
| 1103 | --key "$(BOARD_GKI_SIGNING_KEY_PATH)" \ |
| 1104 | --algorithm "$(BOARD_GKI_SIGNING_ALGORITHM)" \ |
| 1105 | --avbtool "$(AVBTOOL)" |
| 1106 | |
| 1107 | # Quote and pass BOARD_GKI_SIGNING_SIGNATURE_ARGS as a single string argument. |
| 1108 | ifdef BOARD_GKI_SIGNING_SIGNATURE_ARGS |
| 1109 | INTERNAL_GKI_CERTIFICATE_ARGS += --additional_avb_args "$(BOARD_GKI_SIGNING_SIGNATURE_ARGS)" |
| 1110 | endif |
| 1111 | |
| 1112 | INTERNAL_GKI_CERTIFICATE_DEPS := \ |
| 1113 | $(GENERATE_GKI_CERTIFICATE) \ |
| 1114 | $(BOARD_GKI_SIGNING_KEY_PATH) \ |
| 1115 | $(AVBTOOL) |
| 1116 | |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 1117 | endif |
| 1118 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1119 | # Define these only if we are building boot |
| 1120 | ifdef BUILDING_BOOT_IMAGE |
| 1121 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 1122 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1123 | ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true) |
JP Abgrall | 7bb75e4 | 2015-02-11 15:04:59 -0800 | [diff] [blame] | 1124 | $(error TARGET_BOOTIMAGE_USE_EXT2 is not supported anymore) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1125 | endif # TARGET_BOOTIMAGE_USE_EXT2 |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1126 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1127 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET), $(eval $(call add-dependency,$(b),$(call bootimage-to-kernel,$(b))))) |
| 1128 | |
| 1129 | ifeq (true,$(BOARD_AVB_ENABLE)) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1130 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1131 | # $1: boot image target |
| 1132 | define build_boot_board_avb_enabled |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1133 | $(eval kernel := $(call bootimage-to-kernel,$(1))) |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1134 | $(MKBOOTIMG) --kernel $(kernel) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1135 | $(if $(BOARD_GKI_SIGNING_KEY_PATH), \ |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1136 | $(eval boot_signature := $(call intermediates-dir-for,PACKAGING,generic_boot)/$(notdir $(1)).boot_signature) \ |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1137 | $(eval kernel_signature := $(call intermediates-dir-for,PACKAGING,generic_kernel)/$(notdir $(kernel)).boot_signature) \ |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1138 | $(call generate_generic_boot_image_certificate,$(1),$(boot_signature),boot,$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)) $(newline) \ |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1139 | $(call generate_generic_boot_image_certificate,$(kernel),$(kernel_signature),generic_kernel,$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)) $(newline) \ |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1140 | cat $(kernel_signature) >> $(boot_signature) $(newline) \ |
| 1141 | $(call assert-max-image-size,$(boot_signature),16 << 10) $(newline) \ |
| 1142 | truncate -s $$(( 16 << 10 )) $(boot_signature) $(newline) \ |
| 1143 | cat "$(boot_signature)" >> $(1)) |
Yifan Hong | ebe65f8 | 2020-10-15 14:48:07 -0700 | [diff] [blame] | 1144 | $(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] | 1145 | $(AVBTOOL) add_hash_footer \ |
| 1146 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1147 | $(call get-partition-size-argument,$(call get-bootimage-partition-size,$(1),boot)) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1148 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 1149 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1150 | endef |
| 1151 | |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1152 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(AVBTOOL) $(INTERNAL_BOOTIMAGE_FILES) $(BOARD_AVB_BOOT_KEY_PATH) $(INTERNAL_GKI_CERTIFICATE_DEPS) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1153 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1154 | $(call build_boot_board_avb_enabled,$@) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1155 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1156 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",boot) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1157 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES) $(INTERNAL_GKI_CERTIFICATE_DEPS),$(PRODUCT_OUT)/:/) |
| 1158 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1159 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1160 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1161 | .PHONY: bootimage-nodeps |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 1162 | bootimage-nodeps: $(MKBOOTIMG) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) $(INTERNAL_GKI_CERTIFICATE_DEPS) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1163 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1164 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_board_avb_enabled,$(b))) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 1165 | |
hungweichen | b2dd683 | 2022-08-08 09:16:30 +0000 | [diff] [blame] | 1166 | else ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) # BOARD_AVB_ENABLE != true |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1167 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1168 | # $1: boot image target |
| 1169 | define build_boot_supports_vboot |
| 1170 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1).unsigned |
| 1171 | $(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] | 1172 | $(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] | 1173 | endef |
| 1174 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1175 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1176 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1177 | $(call build_boot_supports_vboot,$@) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1178 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1179 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",boot) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1180 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 1181 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1182 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1183 | |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1184 | .PHONY: bootimage-nodeps |
Tao Bao | 4b57741 | 2017-02-22 22:54:39 -0800 | [diff] [blame] | 1185 | bootimage-nodeps: $(MKBOOTIMG) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1186 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1187 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_supports_vboot,$(b))) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 1188 | |
| 1189 | else # PRODUCT_SUPPORTS_VBOOT != true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1190 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1191 | # $1: boot image target |
| 1192 | define build_boot_novboot |
| 1193 | $(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] | 1194 | $(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] | 1195 | endef |
| 1196 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1197 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1198 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1199 | $(call build_boot_novboot,$@) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1200 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1201 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",boot) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1202 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_BOOTIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 1203 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1204 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1205 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1206 | .PHONY: bootimage-nodeps |
| 1207 | bootimage-nodeps: $(MKBOOTIMG) |
| 1208 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1209 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_novboot,$(b))) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 1210 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1211 | endif # BOARD_AVB_ENABLE |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1212 | endif # BUILDING_BOOT_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1213 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1214 | else # TARGET_NO_KERNEL == "true" |
celeste wang | e3d4320 | 2022-08-12 08:36:37 +0000 | [diff] [blame] | 1215 | INSTALLED_BOOTIMAGE_TARGET := |
| 1216 | endif # TARGET_NO_KERNEL |
| 1217 | |
| 1218 | else # BOARD_PREBUILT_BOOTIMAGE defined |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1219 | INTERNAL_PREBUILT_BOOTIMAGE := $(BOARD_PREBUILT_BOOTIMAGE) |
Kiyoung Kim | 62e2231 | 2019-06-20 14:27:45 +0900 | [diff] [blame] | 1220 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1221 | |
| 1222 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1223 | $(INSTALLED_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_BOOTIMAGE) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
| 1224 | cp $(INTERNAL_PREBUILT_BOOTIMAGE) $@ |
| 1225 | $(AVBTOOL) add_hash_footer \ |
| 1226 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1227 | $(call get-partition-size-argument,$(BOARD_BOOTIMAGE_PARTITION_SIZE)) \ |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1228 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 1229 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1230 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1231 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",bool) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1232 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(INTERNAL_PREBUILT_BOOTIMAGE),$(PRODUCT_OUT)/:/) |
| 1233 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1234 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_BOOTIMAGE_TARGET) |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 1235 | else |
| 1236 | $(INSTALLED_BOOTIMAGE_TARGET): $(INTERNAL_PREBUILT_BOOTIMAGE) |
| 1237 | cp $(INTERNAL_PREBUILT_BOOTIMAGE) $@ |
| 1238 | endif # BOARD_AVB_ENABLE |
| 1239 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 1240 | endif # BOARD_PREBUILT_BOOTIMAGE |
celeste wang | e3d4320 | 2022-08-12 08:36:37 +0000 | [diff] [blame] | 1241 | |
Yifan Hong | 0674a6e | 2020-10-22 14:37:01 -0700 | [diff] [blame] | 1242 | endif # my_installed_prebuilt_gki_apex not defined |
| 1243 | |
| 1244 | my_apex_extracted_boot_image := |
| 1245 | my_installed_prebuilt_gki_apex := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1246 | |
| 1247 | # ----------------------------------------------------------------- |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1248 | # init boot image |
| 1249 | ifeq ($(BUILDING_INIT_BOOT_IMAGE),true) |
| 1250 | |
| 1251 | INSTALLED_INIT_BOOT_IMAGE_TARGET := $(PRODUCT_OUT)/init_boot.img |
| 1252 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_RAMDISK_TARGET) |
| 1253 | |
Yi-Yo Chiang | 8b0776d | 2022-06-30 17:33:29 +0800 | [diff] [blame] | 1254 | INTERNAL_INIT_BOOT_IMAGE_ARGS := --ramdisk $(INSTALLED_RAMDISK_TARGET) |
| 1255 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1256 | ifdef BOARD_KERNEL_PAGESIZE |
| 1257 | INTERNAL_INIT_BOOT_IMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1258 | endif |
| 1259 | |
| 1260 | ifeq ($(BOARD_AVB_ENABLE),true) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 1261 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_INIT_BOOT_KEY_PATH) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1262 | $(call pretty,"Target init_boot image: $@") |
Yi-Yo Chiang | 2f7a108 | 2022-02-22 19:13:32 +0800 | [diff] [blame] | 1263 | $(MKBOOTIMG) $(INTERNAL_INIT_BOOT_IMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_INIT_ARGS) --output "$@" |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1264 | $(call assert-max-image-size,$@,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) |
| 1265 | $(AVBTOOL) add_hash_footer \ |
| 1266 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1267 | $(call get-partition-size-argument,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1268 | --partition_name init_boot $(INTERNAL_AVB_INIT_BOOT_SIGNING_ARGS) \ |
| 1269 | $(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1270 | |
| 1271 | $(call declare-1p-container,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 1272 | $(call declare-container-license-deps,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),$(INTERNAL_GENERIC_RAMDISK_BOOT_SIGNATURE),$(PRODUCT_OUT)/:/) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1273 | else |
| 1274 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): |
| 1275 | $(call pretty,"Target init_boot image: $@") |
| 1276 | $(MKBOOTIMG) $(INTERNAL_INIT_BOOT_IMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_INIT_ARGS) --output $@ |
| 1277 | $(call assert-max-image-size,$@,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1278 | |
| 1279 | $(call declare-1p-target,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1280 | endif |
| 1281 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1282 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_INIT_BOOT_IMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1283 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1284 | else # BUILDING_INIT_BOOT_IMAGE is not true |
| 1285 | |
| 1286 | ifdef BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 1287 | INTERNAL_PREBUILT_INIT_BOOT_IMAGE := $(BOARD_PREBUILT_INIT_BOOT_IMAGE) |
| 1288 | INSTALLED_INIT_BOOT_IMAGE_TARGET := $(PRODUCT_OUT)/init_boot.img |
| 1289 | |
| 1290 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1291 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $(AVBTOOL) $(BOARD_AVB_INIT_BOOT_KEY_PATH) |
| 1292 | cp $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $@ |
| 1293 | $(AVBTOOL) add_hash_footer \ |
| 1294 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1295 | $(call get-partition-size-argument,$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)) \ |
Devin Moore | 77ae07d | 2023-02-06 17:25:06 +0000 | [diff] [blame] | 1296 | --partition_name init_boot $(INTERNAL_AVB_INIT_BOOT_SIGNING_ARGS) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1297 | $(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1298 | |
| 1299 | $(call declare-1p-container,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 1300 | $(call declare-container-license-deps,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),$(INTERNAL_PREBUILT_INIT_BOOT_IMAGE),$(PRODUCT_OUT)/:/) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1301 | else |
| 1302 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET): $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) |
| 1303 | cp $(INTERNAL_PREBUILT_INIT_BOOT_IMAGE) $@ |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1304 | |
| 1305 | $(call declare-1p-target,$(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1306 | endif # BOARD_AVB_ENABLE |
| 1307 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 1308 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_INIT_BOOT_IMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1309 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 1310 | else # BOARD_PREBUILT_INIT_BOOT_IMAGE not defined |
| 1311 | INSTALLED_INIT_BOOT_IMAGE_TARGET := |
| 1312 | endif # BOARD_PREBUILT_INIT_BOOT_IMAGE |
| 1313 | |
| 1314 | endif # BUILDING_INIT_BOOT_IMAGE is not true |
Ramji Jiyani | 1065523 | 2022-01-20 06:43:09 +0000 | [diff] [blame] | 1315 | |
| 1316 | # ----------------------------------------------------------------- |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1317 | # vendor boot image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 1318 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_VENDOR_RAMDISK_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1319 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 1320 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1321 | INTERNAL_VENDOR_RAMDISK_FILES := $(filter $(TARGET_VENDOR_RAMDISK_OUT)/%, \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1322 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1323 | |
Petri Gynther | 6a6d621 | 2021-03-06 00:45:53 -0800 | [diff] [blame] | 1324 | 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] | 1325 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1326 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 1327 | # recovery ramdisk in vendor_boot. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1328 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1329 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1330 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 1331 | $(INTERNAL_VENDOR_RAMDISK_TARGET): PRIVATE_ADDITIONAL_DIR := $(TARGET_RECOVERY_ROOT_OUT) |
| 1332 | endif |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 1333 | endif |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1334 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1335 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 1336 | $(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] | 1337 | |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1338 | INSTALLED_VENDOR_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk.img |
| 1339 | $(INSTALLED_VENDOR_RAMDISK_TARGET): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 1340 | @echo "Target vendor ramdisk: $@" |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1341 | $(copy-file-to-target) |
Petri Gynther | 828828b | 2021-03-04 11:04:03 -0800 | [diff] [blame] | 1342 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1343 | $(call declare-1p-container,$(INSTALLED_VENDOR_RAMDISK_TARGET),) |
| 1344 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_RAMDISK_TARGET),$(INTERNAL_VENDOR_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 1345 | |
| 1346 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_RAMDISK_TARGET) |
| 1347 | |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1348 | INSTALLED_FILES_FILE_VENDOR_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk.txt |
| 1349 | INSTALLED_FILES_JSON_VENDOR_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_RAMDISK:.txt=.json) |
| 1350 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_RAMDISK) |
| 1351 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_TARGET) |
| 1352 | $(INSTALLED_FILES_FILE_VENDOR_RAMDISK): $(INTERNAL_VENDOR_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1353 | @echo Installed file list: $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1354 | mkdir -p $(dir $@) |
| 1355 | rm -f $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 1356 | $(FILESLIST) $(TARGET_VENDOR_RAMDISK_OUT) > $(@:.txt=.json) |
| 1357 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Petri Gynther | 6ff5201 | 2020-11-20 11:59:41 -0800 | [diff] [blame] | 1358 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1359 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1360 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_RAMDISK))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1361 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1362 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1363 | ifneq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
| 1364 | # If we have vendor_kernel_boot partition, we migrate dtb image to that image |
| 1365 | # and allow dtb in vendor_boot to be empty. |
| 1366 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1367 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1368 | endif |
| 1369 | ifdef BOARD_KERNEL_BASE |
| 1370 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1371 | endif |
| 1372 | ifdef BOARD_KERNEL_PAGESIZE |
| 1373 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1374 | endif |
| 1375 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1376 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 1377 | endif |
| 1378 | |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1379 | ifdef INTERNAL_BOOTCONFIG |
Yi-Yo Chiang | 9c46136 | 2021-04-04 03:26:18 +0800 | [diff] [blame] | 1380 | INTERNAL_VENDOR_BOOTCONFIG_TARGET := $(PRODUCT_OUT)/vendor-bootconfig.img |
| 1381 | $(INTERNAL_VENDOR_BOOTCONFIG_TARGET): |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1382 | rm -f $@ |
| 1383 | $(foreach param,$(INTERNAL_BOOTCONFIG), \ |
| 1384 | printf "%s\n" $(param) >> $@;) |
| 1385 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_bootconfig $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
| 1386 | endif |
| 1387 | |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1388 | # $(1): Build target name |
| 1389 | # $(2): Staging dir to be compressed |
| 1390 | # $(3): Build dependencies |
| 1391 | define build-vendor-ramdisk-fragment-target |
| 1392 | $(1): $(3) $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 1393 | $(MKBOOTFS) -d $(TARGET_OUT) $(2) | $(COMPRESSION_COMMAND) > $$@ |
| 1394 | endef |
| 1395 | |
| 1396 | # $(1): Ramdisk name |
| 1397 | define build-vendor-ramdisk-fragment |
| 1398 | $(strip \ |
| 1399 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,vendor_ramdisk_fragments)/$(1).cpio$(RAMDISK_EXT)) \ |
| 1400 | $(eval $(call build-vendor-ramdisk-fragment-target,$(build_target),$(VENDOR_RAMDISK_FRAGMENT.$(1).STAGING_DIR),$(VENDOR_RAMDISK_FRAGMENT.$(1).FILES))) \ |
| 1401 | $(build_target) \ |
| 1402 | ) |
| 1403 | endef |
| 1404 | |
| 1405 | # $(1): Ramdisk name |
| 1406 | # $(2): Prebuilt file path |
| 1407 | define build-prebuilt-vendor-ramdisk-fragment |
| 1408 | $(strip \ |
| 1409 | $(eval build_target := $(call intermediates-dir-for,PACKAGING,prebuilt_vendor_ramdisk_fragments)/$(1)) \ |
| 1410 | $(eval $(call copy-one-file,$(2),$(build_target))) \ |
| 1411 | $(build_target) \ |
| 1412 | ) |
| 1413 | endef |
| 1414 | |
| 1415 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS := |
| 1416 | INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS := |
| 1417 | |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1418 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1419 | $(eval prebuilt_vendor_ramdisk_fragment_file := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 1420 | $(if $(prebuilt_vendor_ramdisk_fragment_file), \ |
| 1421 | $(eval vendor_ramdisk_fragment_target := $(call build-prebuilt-vendor-ramdisk-fragment,$(vendor_ramdisk_fragment),$(prebuilt_vendor_ramdisk_fragment_file))) \ |
| 1422 | $(eval ### else ###), \ |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 1423 | $(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] | 1424 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS += $(vendor_ramdisk_fragment_target)) \ |
| 1425 | $(eval INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS += $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS) --vendor_ramdisk_fragment $(vendor_ramdisk_fragment_target)) \ |
| 1426 | ) |
| 1427 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1428 | INSTALLED_VENDOR_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot.img |
| 1429 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET) |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 1430 | $(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] | 1431 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1432 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOTIMAGE_KEY_PATH) |
| 1433 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1434 | $(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] | 1435 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1436 | $(AVBTOOL) add_hash_footer \ |
| 1437 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 1438 | $(call get-partition-size-argument,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1439 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_SIGNING_ARGS) \ |
| 1440 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1441 | else |
| 1442 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): |
| 1443 | $(call pretty,"Target vendor_boot image: $@") |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 1444 | $(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] | 1445 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 1446 | endif |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1447 | |
| 1448 | $(call declare-1p-container,$(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 1449 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DTB_IMAGE_TARGET) $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) $(INTERNAL_VENDOR_BOOTCONDIG_TARGET),$(PRODUCT_OUT)/:/) |
| 1450 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1451 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 1452 | |
| 1453 | # ----------------------------------------------------------------- |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1454 | # vendor kernel boot image |
| 1455 | ifeq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
| 1456 | |
| 1457 | INTERNAL_VENDOR_KERNEL_RAMDISK_FILES := $(filter $(TARGET_VENDOR_KERNEL_RAMDISK_OUT)/%, \ |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1458 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1459 | |
| 1460 | INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_kernel_boot)/vendor_kernel_ramdisk.cpio$(RAMDISK_EXT) |
| 1461 | |
| 1462 | $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_KERNEL_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
| 1463 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_VENDOR_KERNEL_RAMDISK_OUT) | $(COMPRESSION_COMMAND) > $@ |
| 1464 | |
| 1465 | INSTALLED_VENDOR_KERNEL_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_kernel_ramdisk.img |
| 1466 | $(INSTALLED_VENDOR_KERNEL_RAMDISK_TARGET): $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1467 | @echo "Target vendor kernel ramdisk: $@" |
| 1468 | $(copy-file-to-target) |
| 1469 | |
| 1470 | INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-kernel-ramdisk.txt |
| 1471 | INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK:.txt=.json) |
| 1472 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK) |
| 1473 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1474 | $(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK): $(INTERNAL_VENDOR_KERNEL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 1475 | @echo Installed file list: $@ |
| 1476 | mkdir -p $(dir $@) |
| 1477 | rm -f $@ |
| 1478 | $(FILESLIST) $(TARGET_VENDOR_KERNEL_RAMDISK_OUT) > $(@:.txt=.json) |
| 1479 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 1480 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1481 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_KERNEL_RAMDISK)) |
| 1482 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_KERNEL_RAMDISK)) |
| 1483 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1484 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS := --vendor_ramdisk $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1485 | INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_kernel_boot.img |
| 1486 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) |
| 1487 | |
| 1488 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1489 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1490 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(INSTALLED_DTBIMAGE_TARGET) |
| 1491 | endif |
| 1492 | ifdef BOARD_KERNEL_PAGESIZE |
| 1493 | INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1494 | endif |
| 1495 | |
| 1496 | |
| 1497 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1498 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_KERNEL_BOOTIMAGE_KEY_PATH) |
| 1499 | $(call pretty,"Target vendor_kernel_boot image: $@") |
| 1500 | $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_boot $@ |
| 1501 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) |
| 1502 | $(AVBTOOL) add_hash_footer \ |
| 1503 | --image $@ \ |
| 1504 | $(call get-partition-size-argument,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) \ |
| 1505 | --partition_name vendor_kernel_boot $(INTERNAL_AVB_VENDOR_KERNEL_BOOT_SIGNING_ARGS) \ |
| 1506 | $(BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS) |
| 1507 | else |
| 1508 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET): |
| 1509 | $(call pretty,"Target vendor_kernel_boot image: $@") |
| 1510 | $(MKBOOTIMG) $(INTERNAL_VENDOR_KERNEL_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_boot $@ |
| 1511 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)) |
| 1512 | endif |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1513 | $(call declare-1p-container,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) |
| 1514 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1515 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),\ |
| 1516 | $(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET),\ |
| 1517 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET):) |
| 1518 | else |
| 1519 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_KERNEL_RAMDISK_TARGET),$(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET):) |
| 1520 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 1521 | endif # BUILDING_VENDOR_KERNEL_BOOT_IMAGE |
| 1522 | |
| 1523 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1524 | # NOTICE files |
| 1525 | # |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 1526 | # We are required to publish the licenses for all code under BSD, GPL and |
| 1527 | # Apache licenses (and possibly other more exotic ones as well). We err on the |
| 1528 | # side of caution, so the licenses for other third-party code are included here |
| 1529 | # too. |
| 1530 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1531 | # This needs to be before the systemimage rules, because it adds to |
| 1532 | # ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files |
| 1533 | # go into the systemimage. |
| 1534 | |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 1535 | .PHONY: notice_files |
| 1536 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1537 | # Convert license metadata into xml notice file. |
| 1538 | # $(1) - Output target notice filename |
| 1539 | # $(2) - Product name |
| 1540 | # $(3) - File title |
| 1541 | # $(4) - License metadata file roots |
| 1542 | # $(5) - Prefixes to strip |
| 1543 | # |
| 1544 | define xml-notice-rule |
| 1545 | $(1): PRIVATE_PRODUCT := $(2) |
| 1546 | $(1): PRIVATE_MESSAGE := $(3) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1547 | $(1): PRIVATE_DEPS := $(call corresponding-license-metadata,$(4)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1548 | $(1): $(call corresponding-license-metadata,$(4)) $(XMLNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 1549 | OUT_DIR=$(OUT_DIR) $(XMLNOTICE) -o $$@ -product=$$(PRIVATE_PRODUCT) -title=$$(PRIVATE_MESSAGE) $(foreach prefix, $(5), -strip_prefix=$(prefix)) $$(PRIVATE_DEPS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1550 | |
| 1551 | notice_files: $(1) |
| 1552 | endef |
| 1553 | |
| 1554 | # Convert license metadata into text notice file. |
| 1555 | # $(1) - Output target notice filename |
| 1556 | # $(2) - Product name |
| 1557 | # $(3) - File title |
| 1558 | # $(4) - License metadata file roots |
| 1559 | # $(5) - Prefixes to strip |
| 1560 | # |
| 1561 | define text-notice-rule |
| 1562 | $(1): PRIVATE_PRODUCT := $(2) |
| 1563 | $(1): PRIVATE_MESSAGE := $(3) |
| 1564 | $(1): $(call corresponding-license-metadata,$(4)) $(TEXTNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | c778e4c | 2022-03-22 13:05:19 -0700 | [diff] [blame] | 1565 | OUT_DIR=$(OUT_DIR) $(TEXTNOTICE) -o $$@ -product=$$(PRIVATE_PRODUCT) -title=$$(PRIVATE_MESSAGE) $(foreach prefix, $(5), -strip_prefix=$(prefix)) $(call corresponding-license-metadata,$(4)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1566 | |
| 1567 | notice_files: $(1) |
| 1568 | endef |
| 1569 | |
| 1570 | # Conversion license metadata into html notice file. |
| 1571 | # $(1) - Output target notice filename |
| 1572 | # $(2) - Product name |
| 1573 | # $(3) - File title |
| 1574 | # $(4) - License metadata file roots |
| 1575 | # $(5) - Prefixes to strip |
| 1576 | # |
| 1577 | define html-notice-rule |
| 1578 | $(1): PRIVATE_PRODUCT := $(2) |
| 1579 | $(1): PRIVATE_MESSAGE := $(3) |
| 1580 | $(1): $(call corresponding-license-metadata,$(4)) $(HTMLNOTICE) $(BUILD_SYSTEM)/Makefile |
Bob Badour | c778e4c | 2022-03-22 13:05:19 -0700 | [diff] [blame] | 1581 | OUT_DIR=$(OUT_DIR) $(HTMLNOTICE) -o $$@ -product=$$(PRIVATE_PRODUCT) -title=$$(PRIVATE_MESSAGE) $(foreach prefix, $(5), -strip_prefix=$(prefix)) $(call corresponding-license-metadata,$(4)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1582 | |
| 1583 | notice_files: $(1) |
| 1584 | endef |
| 1585 | |
Bob Badour | 6259a09 | 2022-03-23 23:28:40 -0700 | [diff] [blame] | 1586 | $(KATI_obsolete_var combine-notice-files, To create notice files use xml-notice-rule, html-notice-rule, or text-notice-rule.) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1587 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1588 | # Notice file logic isn't relevant for TARGET_BUILD_APPS |
| 1589 | ifndef TARGET_BUILD_APPS |
| 1590 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1591 | # TODO These intermediate NOTICE.txt/NOTICE.html files should go into |
| 1592 | # TARGET_OUT_NOTICE_FILES now that the notice files are gathered from |
| 1593 | # the src subdirectory. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1594 | kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1595 | |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1596 | # Some targets get included under $(PRODUCT_OUT) for debug symbols or other |
| 1597 | # reasons--not to be flashed onto any device. Targets under these directories |
| 1598 | # need no associated notice file on the device UI. |
| 1599 | exclude_target_dirs := apex |
| 1600 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 1601 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1602 | ifneq ($(PRODUCT_NOTICE_SPLIT),true) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1603 | #target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1604 | target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz |
| 1605 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.html.gz |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 1606 | |
| 1607 | $(call declare-0p-target,$(target_notice_file_html_gz)) |
| 1608 | $(call declare-0p-target,$(installed_notice_html_or_xml_gz)) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1609 | else |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1610 | # target_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1611 | target_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml.gz |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1612 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.xml.gz |
| 1613 | |
| 1614 | target_vendor_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.txt |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1615 | target_vendor_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml.gz |
| 1616 | installed_vendor_notice_xml_gz := $(TARGET_OUT_VENDOR)/etc/NOTICE.xml.gz |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1617 | |
| 1618 | target_product_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.txt |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1619 | target_product_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml.gz |
| 1620 | installed_product_notice_xml_gz := $(TARGET_OUT_PRODUCT)/etc/NOTICE.xml.gz |
Dario Freni | cbca113 | 2018-08-28 18:04:03 +0100 | [diff] [blame] | 1621 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1622 | target_system_ext_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.txt |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1623 | target_system_ext_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml.gz |
| 1624 | 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] | 1625 | |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1626 | target_odm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.txt |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1627 | target_odm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml.gz |
| 1628 | installed_odm_notice_xml_gz := $(TARGET_OUT_ODM)/etc/NOTICE.xml.gz |
| 1629 | |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1630 | target_vendor_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.txt |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1631 | target_vendor_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.xml.gz |
| 1632 | installed_vendor_dlkm_notice_xml_gz := $(TARGET_OUT_VENDOR_DLKM)/etc/NOTICE.xml.gz |
| 1633 | |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1634 | target_odm_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.txt |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1635 | target_odm_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.xml.gz |
| 1636 | installed_odm_dlkm_notice_xml_gz := $(TARGET_OUT_ODM_DLKM)/etc/NOTICE.xml.gz |
| 1637 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1638 | target_system_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_DLKM.txt |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1639 | target_system_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_DLKM.xml.gz |
| 1640 | installed_system_dlkm_notice_xml_gz := $(TARGET_OUT_SYSTEM_DLKM)/etc/NOTICE.xml.gz |
| 1641 | |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 1642 | ALL_INSTALLED_NOTICE_FILES := \ |
| 1643 | $(installed_notice_html_or_xml_gz) \ |
| 1644 | $(installed_vendor_notice_xml_gz) \ |
| 1645 | $(installed_product_notice_xml_gz) \ |
| 1646 | $(installed_system_ext_notice_xml_gz) \ |
| 1647 | $(installed_odm_notice_xml_gz) \ |
| 1648 | $(installed_vendor_dlkm_notice_xml_gz) \ |
| 1649 | $(installed_odm_dlkm_notice_xml_gz) \ |
| 1650 | $(installed_system_dlkm_notice_xml_gz) \ |
| 1651 | |
| 1652 | # $1 installed file path, e.g. out/target/product/vsoc_x86_64/system_ext/etc/NOTICE.xml.gz |
| 1653 | define is-notice-file |
| 1654 | $(if $(findstring $1,$(ALL_INSTALLED_NOTICE_FILES)),Y) |
| 1655 | endef |
| 1656 | |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1657 | # Notice files are copied to TARGET_OUT_NOTICE_FILES as a side-effect of their module |
| 1658 | # being built. A notice xml file must depend on all modules that could potentially |
| 1659 | # install a license file relevant to it. |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1660 | license_modules := $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1661 | # Only files copied to a system image need system image notices. |
| 1662 | license_modules := $(filter $(PRODUCT_OUT)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1663 | # Phonys/fakes don't have notice files (though their deps might) |
| 1664 | license_modules := $(filter-out $(TARGET_OUT_FAKE)/%,$(license_modules)) |
Jooyung Han | 4416b00 | 2019-05-29 18:28:22 +0900 | [diff] [blame] | 1665 | # testcases are not relevant to the system image. |
| 1666 | license_modules := $(filter-out $(TARGET_OUT_TESTCASES)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1667 | # 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] | 1668 | license_modules_system := $(filter $(TARGET_OUT)/%,$(license_modules)) |
Jeongik Cha | 9917520 | 2020-06-17 17:10:19 +0900 | [diff] [blame] | 1669 | # system_other is relevant to system partition. |
| 1670 | license_modules_system += $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1671 | license_modules_vendor := $(filter $(TARGET_OUT_VENDOR)/%,$(license_modules)) |
| 1672 | license_modules_product := $(filter $(TARGET_OUT_PRODUCT)/%,$(license_modules)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1673 | license_modules_system_ext := $(filter $(TARGET_OUT_SYSTEM_EXT)/%,$(license_modules)) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1674 | license_modules_odm := $(filter $(TARGET_OUT_ODM)/%,$(license_modules)) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1675 | license_modules_vendor_dlkm := $(filter $(TARGET_OUT_VENDOR_DLKM)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1676 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_ODM_DLKM)/%,$(license_modules)) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1677 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_SYSTEM_DLKM)/%,$(license_modules)) |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1678 | license_modules_agg := $(license_modules_system) \ |
| 1679 | $(license_modules_vendor) \ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1680 | $(license_modules_product) \ |
| 1681 | $(license_modules_system_ext) \ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1682 | $(license_modules_odm) \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1683 | $(license_modules_vendor_dlkm) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1684 | $(license_modules_odm_dlkm) \ |
| 1685 | $(license_modules_system_dlkm) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1686 | # targets used for debug symbols only and do not get copied to the device |
| 1687 | license_modules_symbols_only := $(filter $(PRODUCT_OUT)/apex/%,$(license_modules)) |
| 1688 | |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1689 | license_modules_rest := $(filter-out $(license_modules_agg),$(license_modules)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1690 | license_modules_rest := $(filter-out $(license_modules_symbols_only),$(license_modules_rest)) |
| 1691 | |
| 1692 | # Identify the other targets we expect to have notices for: |
| 1693 | # targets copied to the device but are not readable by the UI (e.g. must boot |
| 1694 | # into a different partition to read or don't have an associated /etc |
| 1695 | # directory) must have their notices built somewhere readable. |
| 1696 | license_modules_rehomed := $(filter-out $(PRODUCT_OUT)/%/%,$(license_modules_rest)) # files in root have no /etc |
| 1697 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/recovery/%,$(license_modules_rest)) |
| 1698 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/root/%,$(license_modules_rest)) |
| 1699 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/data/%,$(license_modules_rest)) |
| 1700 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/ramdisk/%,$(license_modules_rest)) |
| 1701 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/debug_ramdisk/%,$(license_modules_rest)) |
Petri Gynther | dc24d88 | 2021-03-02 23:54:08 -0800 | [diff] [blame] | 1702 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/vendor_ramdisk/%,$(license_modules_rest)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1703 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist/%,$(license_modules_rest)) |
| 1704 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist.img,$(license_modules_rest)) |
| 1705 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/system_other/%,$(license_modules_rest)) |
| 1706 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/kernel%,$(license_modules_rest)) |
| 1707 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.img,$(license_modules_rest)) |
| 1708 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.bin,$(license_modules_rest)) |
| 1709 | |
| 1710 | # after removing targets in system images, targets reported in system images, and |
| 1711 | # targets used for debug symbols that do not need notices, nothing must remain. |
| 1712 | license_modules_rest := $(filter-out $(license_modules_rehomed),$(license_modules_rest)) |
| 1713 | $(call maybe-print-list-and-error, $(license_modules_rest), \ |
| 1714 | "Targets added under $(PRODUCT_OUT)/ unaccounted for notice handling.") |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1715 | |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1716 | # If we are building in a configuration that includes a prebuilt vendor.img, we can't |
| 1717 | # update its notice file, so include those notices in the system partition instead |
| 1718 | ifdef BOARD_PREBUILT_VENDORIMAGE |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1719 | license_modules_system += $(license_modules_rehomed) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1720 | system_xml_directories := xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm |
| 1721 | 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] | 1722 | else |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1723 | license_modules_vendor += $(license_modules_rehomed) |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1724 | system_xml_directories := xml_system |
| 1725 | 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] | 1726 | endif |
| 1727 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1728 | endif # PRODUCT_NOTICE_SPLIT |
| 1729 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1730 | 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] | 1731 | |
Bob Badour | 56e0de5 | 2022-08-02 17:46:48 +0000 | [diff] [blame] | 1732 | need_vendor_notice:=false |
| 1733 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 1734 | need_vendor_notice:=true |
| 1735 | endif |
| 1736 | |
| 1737 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 1738 | need_vendor_notice:=true |
| 1739 | endif |
| 1740 | |
| 1741 | ifdef BUILDING_VENDOR_IMAGE |
| 1742 | need_vendor_notice:=true |
| 1743 | endif |
| 1744 | |
| 1745 | ifeq (true,$(need_vendor_notice)) |
| 1746 | ifneq (,$(installed_vendor_notice_xml_gz)) |
| 1747 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_notice_xml_gz) |
| 1748 | endif |
| 1749 | endif |
| 1750 | |
| 1751 | need_vendor_notice:= |
| 1752 | |
| 1753 | ifdef BUILDING_ODM_IMAGE |
| 1754 | ifneq (,$(installed_odm_notice_xml_gz)) |
| 1755 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_notice_xml_gz) |
| 1756 | endif |
| 1757 | endif |
| 1758 | |
| 1759 | ifdef BUILDING_PRODUCT_IMAGE |
| 1760 | ifneq (,$(installed_product_notice_xml_gz)) |
| 1761 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_product_notice_xml_gz) |
| 1762 | endif |
| 1763 | endif |
| 1764 | |
| 1765 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 1766 | ifneq (,$(installed_system_ext_notice_xml_gz)) |
| 1767 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_ext_notice_xml_gz) |
| 1768 | endif |
| 1769 | endif |
| 1770 | |
| 1771 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 1772 | ifneq (,$(installed_vendor_dlkm_notice_xml_gz) |
| 1773 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_dlkm_notice_xml_gz) |
| 1774 | endif |
| 1775 | endif |
| 1776 | |
| 1777 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 1778 | ifneq (,$(installed_odm_dlkm_notice_xml_gz)) |
| 1779 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_dlkm_notice_xml_gz) |
| 1780 | endif |
| 1781 | endif |
| 1782 | |
| 1783 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 1784 | ifneq (,$(installed_system_dlkm_notice_xml_gz)) |
| 1785 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_dlkm_notice_xml_gz) |
| 1786 | endif |
| 1787 | endif |
| 1788 | |
Ying Wang | 62c81f8 | 2013-08-22 20:02:03 -0700 | [diff] [blame] | 1789 | endif # TARGET_BUILD_APPS |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1790 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1791 | # Presently none of the prebuilts etc. comply with policy to have a license text. Fake one here. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 1792 | $(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] | 1793 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1794 | ifneq (,$(strip $(INSTALLED_KERNEL_TARGET))) |
| 1795 | $(call declare-license-metadata,$(INSTALLED_KERNEL_TARGET),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
| 1796 | endif |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 1797 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 1798 | # No matter where it gets copied from, a copied linux kernel is licensed under "GPL 2.0 only" |
| 1799 | $(eval $(call declare-copy-files-license-metadata,,:kernel,SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,kernel)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1800 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1801 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1802 | # ################################################################# |
| 1803 | # Targets for user images |
| 1804 | # ################################################################# |
| 1805 | |
JP Abgrall | 6ea5bd6 | 2014-10-22 20:01:22 -0700 | [diff] [blame] | 1806 | # These options tell the recovery updater/installer how to mount the partitions writebale. |
| 1807 | # <fstype>=<fstype_opts>[|<fstype_opts>]... |
| 1808 | # fstype_opts := <opt>[,<opt>]... |
| 1809 | # opt := <name>[=<value>] |
JP Abgrall | 775b1ab | 2014-10-23 16:27:03 -0700 | [diff] [blame] | 1810 | # The following worked on Nexus devices with Kernel 3.1, 3.4, 3.10 |
| 1811 | 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] | 1812 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1813 | INTERNAL_USERIMAGES_DEPS := \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1814 | $(BUILD_IMAGE) \ |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1815 | $(MKE2FS_CONF) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1816 | $(MKEXTUSERIMG) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1817 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 1818 | $(call declare-1p-target,$(MKE2FS_CONF),system/extras) |
| 1819 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1820 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
| 1821 | INTERNAL_USERIMAGES_DEPS += $(MKF2FSUSERIMG) |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 1822 | endif |
| 1823 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1824 | ifneq ($(filter \ |
| 1825 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1826 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1827 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1828 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1829 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1830 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1831 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1832 | $(BOARD_SYSTEM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1833 | ,erofs),) |
David Anderson | 94ad5bb | 2022-03-04 10:57:58 -0800 | [diff] [blame] | 1834 | INTERNAL_USERIMAGES_DEPS += $(MKEROFS) |
David Anderson | f54665f | 2022-03-04 14:42:18 -0800 | [diff] [blame] | 1835 | ifeq ($(BOARD_EROFS_USE_LEGACY_COMPRESSION),true) |
| 1836 | BOARD_EROFS_COMPRESSOR ?= "lz4" |
| 1837 | else |
Kelvin Zhang | 37d4929 | 2021-12-01 14:21:24 -0800 | [diff] [blame] | 1838 | BOARD_EROFS_COMPRESSOR ?= "lz4hc,9" |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1839 | endif |
David Anderson | f54665f | 2022-03-04 14:42:18 -0800 | [diff] [blame] | 1840 | endif |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 1841 | |
| 1842 | ifneq ($(filter \ |
| 1843 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1844 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1845 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1846 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1847 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1848 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1849 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1850 | $(BOARD_SYSTEM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1851 | ,squashfs),) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1852 | INTERNAL_USERIMAGES_DEPS += $(MKSQUASHFSUSERIMG) |
| 1853 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1854 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1855 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1856 | INTERNAL_USERIMAGES_DEPS += $(AVBTOOL) |
| 1857 | endif |
| 1858 | |
| 1859 | # Get a colon-separated list of search paths. |
| 1860 | INTERNAL_USERIMAGES_BINARY_PATHS := $(subst $(space),:,$(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))) |
| 1861 | |
Jooyung Han | b27c2e8 | 2020-09-23 19:15:20 +0900 | [diff] [blame] | 1862 | # Collects file_contexts files from modules to be installed |
| 1863 | $(call merge-fc-files, \ |
| 1864 | $(sort $(foreach m,$(product_MODULES),$(ALL_MODULES.$(m).FILE_CONTEXTS))),\ |
| 1865 | $(call intermediates-dir-for,ETC,file_contexts.bin)/file_contexts.modules.tmp) |
| 1866 | |
Alex Klyubin | 092c902 | 2017-03-13 13:28:34 -0700 | [diff] [blame] | 1867 | 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] | 1868 | |
Ying Wang | fdbd9cb | 2012-11-21 10:47:00 -0800 | [diff] [blame] | 1869 | INTERNAL_USERIMAGES_DEPS += $(SELINUX_FC) |
| 1870 | |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1871 | # $(1) the partition name (eg system) |
| 1872 | # $(2) the image prop file |
| 1873 | define add-common-flags-to-image-props |
| 1874 | $(eval _var := $(call to-upper,$(1))) |
| 1875 | $(hide) echo "$(1)_selinux_fc=$(SELINUX_FC)" >> $(2) |
| 1876 | $(hide) echo "building_$(1)_image=$(BUILDING_$(_var)_IMAGE)" >> $(2) |
| 1877 | endef |
| 1878 | |
| 1879 | # $(1) the partition name (eg system) |
| 1880 | # $(2) the image prop file |
| 1881 | define add-common-ro-flags-to-image-props |
| 1882 | $(eval _var := $(call to-upper,$(1))) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 1883 | $(if $(BOARD_$(_var)IMAGE_EROFS_COMPRESSOR),$(hide) echo "$(1)_erofs_compressor=$(BOARD_$(_var)IMAGE_EROFS_COMPRESSOR)" >> $(2)) |
Dmitrii Merkurev | 8ab6603 | 2022-05-17 23:10:37 +0000 | [diff] [blame] | 1884 | $(if $(BOARD_$(_var)IMAGE_EROFS_COMPRESS_HINTS),$(hide) echo "$(1)_erofs_compress_hints=$(BOARD_$(_var)IMAGE_EROFS_COMPRESS_HINTS)" >> $(2)) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 1885 | $(if $(BOARD_$(_var)IMAGE_EROFS_PCLUSTER_SIZE),$(hide) echo "$(1)_erofs_pcluster_size=$(BOARD_$(_var)IMAGE_EROFS_PCLUSTER_SIZE)" >> $(2)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1886 | $(if $(BOARD_$(_var)IMAGE_EXTFS_INODE_COUNT),$(hide) echo "$(1)_extfs_inode_count=$(BOARD_$(_var)IMAGE_EXTFS_INODE_COUNT)" >> $(2)) |
| 1887 | $(if $(BOARD_$(_var)IMAGE_EXTFS_RSV_PCT),$(hide) echo "$(1)_extfs_rsv_pct=$(BOARD_$(_var)IMAGE_EXTFS_RSV_PCT)" >> $(2)) |
| 1888 | $(if $(BOARD_$(_var)IMAGE_F2FS_SLOAD_COMPRESS_FLAGS),$(hide) echo "$(1)_f2fs_sldc_flags=$(BOARD_$(_var)IMAGE_F2FS_SLOAD_COMPRESS_FLAGS)" >> $(2)) |
| 1889 | $(if $(BOARD_$(_var)IMAGE_FILE_SYSTEM_COMPRESS),$(hide) echo "$(1)_f2fs_compress=$(BOARD_$(_var)IMAGE_FILE_SYSTEM_COMPRESS)" >> $(2)) |
| 1890 | $(if $(BOARD_$(_var)IMAGE_FILE_SYSTEM_TYPE),$(hide) echo "$(1)_fs_type=$(BOARD_$(_var)IMAGE_FILE_SYSTEM_TYPE)" >> $(2)) |
| 1891 | $(if $(BOARD_$(_var)IMAGE_JOURNAL_SIZE),$(hide) echo "$(1)_journal_size=$(BOARD_$(_var)IMAGE_JOURNAL_SIZE)" >> $(2)) |
| 1892 | $(if $(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "$(1)_reserved_size=$(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE)" >> $(2)) |
| 1893 | $(if $(BOARD_$(_var)IMAGE_PARTITION_SIZE),$(hide) echo "$(1)_size=$(BOARD_$(_var)IMAGE_PARTITION_SIZE)" >> $(2)) |
| 1894 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "$(1)_squashfs_block_size=$(BOARD_$(_var)IMAGE_SQUASHFS_BLOCK_SIZE)" >> $(2)) |
| 1895 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "$(1)_squashfs_compressor=$(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR)" >> $(2)) |
| 1896 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "$(1)_squashfs_compressor_opt=$(BOARD_$(_var)IMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(2)) |
| 1897 | $(if $(BOARD_$(_var)IMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "$(1)_squashfs_disable_4k_align=$(BOARD_$(_var)IMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(2)) |
| 1898 | $(if $(PRODUCT_$(_var)_BASE_FS_PATH),$(hide) echo "$(1)_base_fs_file=$(PRODUCT_$(_var)_BASE_FS_PATH)" >> $(2)) |
| 1899 | $(eval _size := $(BOARD_$(_var)IMAGE_PARTITION_SIZE)) |
| 1900 | $(eval _reserved := $(BOARD_$(_var)IMAGE_PARTITION_RESERVED_SIZE)) |
| 1901 | $(eval _headroom := $(PRODUCT_$(_var)_HEADROOM)) |
David Anderson | 5f4aa6c | 2021-09-23 17:03:14 -0700 | [diff] [blame] | 1902 | $(if $(or $(_size), $(_reserved), $(_headroom)),, |
| 1903 | $(hide) echo "$(1)_disable_sparse=true" >> $(2)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1904 | $(call add-common-flags-to-image-props,$(1),$(2)) |
David Anderson | 9e95a02 | 2021-08-31 21:32:45 -0700 | [diff] [blame] | 1905 | endef |
| 1906 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1907 | # $(1): the path of the output dictionary file |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1908 | # $(2): a subset of "system vendor cache userdata product system_ext oem odm vendor_dlkm odm_dlkm system_dlkm" |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1909 | # $(3): additional "key=value" pairs to append to the dictionary file. |
| 1910 | define generate-image-prop-dictionary |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1911 | $(if $(filter $(2),system),\ |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 1912 | $(if $(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE),$(hide) echo "system_other_size=$(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1913 | $(if $(PRODUCT_SYSTEM_HEADROOM),$(hide) echo "system_headroom=$(PRODUCT_SYSTEM_HEADROOM)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1914 | $(call add-common-ro-flags-to-image-props,system,$(1)) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1915 | ) |
| 1916 | $(if $(filter $(2),system_other),\ |
| 1917 | $(hide) echo "building_system_other_image=$(BUILDING_SYSTEM_OTHER_IMAGE)" >> $(1) |
David Anderson | 9e95a02 | 2021-08-31 21:32:45 -0700 | [diff] [blame] | 1918 | $(if $(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE),, |
| 1919 | $(hide) echo "system_other_disable_sparse=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1920 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1921 | $(if $(filter $(2),userdata),\ |
| 1922 | $(if $(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "userdata_fs_type=$(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1923 | $(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] | 1924 | $(if $(PRODUCT_FS_CASEFOLD),$(hide) echo "needs_casefold=$(PRODUCT_FS_CASEFOLD)" >> $(1)) |
| 1925 | $(if $(PRODUCT_QUOTA_PROJID),$(hide) echo "needs_projid=$(PRODUCT_QUOTA_PROJID)" >> $(1)) |
Jaegeuk Kim | 55c16dd | 2020-10-12 19:50:05 -0700 | [diff] [blame] | 1926 | $(if $(PRODUCT_FS_COMPRESSION),$(hide) echo "needs_compress=$(PRODUCT_FS_COMPRESSION)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1927 | $(call add-common-flags-to-image-props,userdata,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1928 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1929 | $(if $(filter $(2),cache),\ |
| 1930 | $(if $(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "cache_fs_type=$(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1931 | $(if $(BOARD_CACHEIMAGE_PARTITION_SIZE),$(hide) echo "cache_size=$(BOARD_CACHEIMAGE_PARTITION_SIZE)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1932 | $(call add-common-flags-to-image-props,cache,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1933 | ) |
| 1934 | $(if $(filter $(2),vendor),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1935 | $(call add-common-ro-flags-to-image-props,vendor,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1936 | ) |
| 1937 | $(if $(filter $(2),product),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1938 | $(call add-common-ro-flags-to-image-props,product,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1939 | ) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1940 | $(if $(filter $(2),system_ext),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1941 | $(call add-common-ro-flags-to-image-props,system_ext,$(1)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 1942 | ) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1943 | $(if $(filter $(2),odm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1944 | $(call add-common-ro-flags-to-image-props,odm,$(1)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1945 | ) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1946 | $(if $(filter $(2),vendor_dlkm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1947 | $(call add-common-ro-flags-to-image-props,vendor_dlkm,$(1)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1948 | ) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1949 | $(if $(filter $(2),odm_dlkm),\ |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1950 | $(call add-common-ro-flags-to-image-props,odm_dlkm,$(1)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1951 | ) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1952 | $(if $(filter $(2),system_dlkm),\ |
| 1953 | $(call add-common-ro-flags-to-image-props,system_dlkm,$(1)) |
| 1954 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1955 | $(if $(filter $(2),oem),\ |
| 1956 | $(if $(BOARD_OEMIMAGE_PARTITION_SIZE),$(hide) echo "oem_size=$(BOARD_OEMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1957 | $(if $(BOARD_OEMIMAGE_JOURNAL_SIZE),$(hide) echo "oem_journal_size=$(BOARD_OEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1958 | $(if $(BOARD_OEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "oem_extfs_inode_count=$(BOARD_OEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1959 | $(if $(BOARD_OEMIMAGE_EXTFS_RSV_PCT),$(hide) echo "oem_extfs_rsv_pct=$(BOARD_OEMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
David Anderson | 707e6f5 | 2021-09-21 22:24:43 -0700 | [diff] [blame] | 1960 | $(call add-common-flags-to-image-props,oem,$(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1961 | ) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1962 | $(hide) echo "ext_mkuserimg=$(notdir $(MKEXTUSERIMG))" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1963 | |
Cole Faust | 8fc7bef | 2022-06-15 16:10:49 -0700 | [diff] [blame] | 1964 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT2)),$(hide) echo "fs_type=ext2" >> $(1), |
| 1965 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT3)),$(hide) echo "fs_type=ext3" >> $(1), |
| 1966 | $(if $(filter true,$(TARGET_USERIMAGES_USE_EXT4)),$(hide) echo "fs_type=ext4" >> $(1)))) |
| 1967 | |
| 1968 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)),,$(hide) echo "extfs_sparse_flag=-s" >> $(1)) |
| 1969 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EROFS_DISABLED)),,$(hide) echo "erofs_sparse_flag=-s" >> $(1)) |
| 1970 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_SQUASHFS_DISABLED)),,$(hide) echo "squashfs_sparse_flag=-s" >> $(1)) |
| 1971 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)),,$(hide) echo "f2fs_sparse_flag=-S" >> $(1)) |
David Anderson | 40a821f | 2021-09-22 18:02:01 -0700 | [diff] [blame] | 1972 | $(if $(BOARD_EROFS_COMPRESSOR),$(hide) echo "erofs_default_compressor=$(BOARD_EROFS_COMPRESSOR)" >> $(1)) |
Dmitrii Merkurev | 8ab6603 | 2022-05-17 23:10:37 +0000 | [diff] [blame] | 1973 | $(if $(BOARD_EROFS_COMPRESS_HINTS),$(hide) echo "erofs_default_compress_hints=$(BOARD_EROFS_COMPRESS_HINTS)" >> $(1)) |
David Anderson | 64b351b | 2021-10-13 00:20:43 -0700 | [diff] [blame] | 1974 | $(if $(BOARD_EROFS_PCLUSTER_SIZE),$(hide) echo "erofs_pcluster_size=$(BOARD_EROFS_PCLUSTER_SIZE)" >> $(1)) |
| 1975 | $(if $(BOARD_EROFS_SHARE_DUP_BLOCKS),$(hide) echo "erofs_share_dup_blocks=$(BOARD_EROFS_SHARE_DUP_BLOCKS)" >> $(1)) |
David Anderson | f54665f | 2022-03-04 14:42:18 -0800 | [diff] [blame] | 1976 | $(if $(BOARD_EROFS_USE_LEGACY_COMPRESSION),$(hide) echo "erofs_use_legacy_compression=$(BOARD_EROFS_USE_LEGACY_COMPRESSION)" >> $(1)) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1977 | $(if $(BOARD_EXT4_SHARE_DUP_BLOCKS),$(hide) echo "ext4_share_dup_blocks=$(BOARD_EXT4_SHARE_DUP_BLOCKS)" >> $(1)) |
| 1978 | $(if $(BOARD_FLASH_LOGICAL_BLOCK_SIZE), $(hide) echo "flash_logical_block_size=$(BOARD_FLASH_LOGICAL_BLOCK_SIZE)" >> $(1)) |
| 1979 | $(if $(BOARD_FLASH_ERASE_BLOCK_SIZE), $(hide) echo "flash_erase_block_size=$(BOARD_FLASH_ERASE_BLOCK_SIZE)" >> $(1)) |
Bowgo Tsai | 6ceeb1a | 2017-10-11 16:21:48 +0800 | [diff] [blame] | 1980 | $(if $(filter eng, $(TARGET_BUILD_VARIANT)),$(hide) echo "verity_disable=true" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1981 | $(if $(PRODUCT_SYSTEM_VERITY_PARTITION),$(hide) echo "system_verity_block_device=$(PRODUCT_SYSTEM_VERITY_PARTITION)" >> $(1)) |
| 1982 | $(if $(PRODUCT_VENDOR_VERITY_PARTITION),$(hide) echo "vendor_verity_block_device=$(PRODUCT_VENDOR_VERITY_PARTITION)" >> $(1)) |
| 1983 | $(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] | 1984 | $(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] | 1985 | $(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] | 1986 | $(if $(PRODUCT_ODM_DLKM_VERITY_PARTITION),$(hide) echo "odm_dlkm_verity_block_device=$(PRODUCT_ODM_DLKM_VERITY_PARTITION)" >> $(1)) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 1987 | $(if $(PRODUCT_SYSTEM_DLKM_VERITY_PARTITION),$(hide) echo "system_dlkm_verity_block_device=$(PRODUCT_SYSTEM_DLKM_VERITY_PARTITION)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1988 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot=$(PRODUCT_SUPPORTS_VBOOT)" >> $(1)) |
| 1989 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_key=$(PRODUCT_VBOOT_SIGNING_KEY)" >> $(1)) |
| 1990 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_subkey=$(PRODUCT_VBOOT_SIGNING_SUBKEY)" >> $(1)) |
| 1991 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "futility=$(notdir $(FUTILITY))" >> $(1)) |
| 1992 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_signer_cmd=$(VBOOT_SIGNER)" >> $(1)) |
Tao Bao | 3cba374 | 2017-05-16 16:27:25 -0700 | [diff] [blame] | 1993 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_avbtool=$(notdir $(AVBTOOL))" >> $(1)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1994 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1995 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1996 | $(if $(BOARD_AVB_ENABLE),\ |
| 1997 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 1998 | $(hide) echo "avb_system_key_path=$(BOARD_AVB_SYSTEM_KEY_PATH)" >> $(1) |
| 1999 | $(hide) echo "avb_system_algorithm=$(BOARD_AVB_SYSTEM_ALGORITHM)" >> $(1) |
| 2000 | $(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] | 2001 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2002 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2003 | $(if $(BOARD_AVB_ENABLE),\ |
| 2004 | $(if $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH),\ |
| 2005 | $(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] | 2006 | $(hide) echo "avb_system_other_algorithm=$(BOARD_AVB_SYSTEM_OTHER_ALGORITHM)" >> $(1))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 2007 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2008 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2009 | $(if $(BOARD_AVB_ENABLE),\ |
| 2010 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 2011 | $(hide) echo "avb_vendor_key_path=$(BOARD_AVB_VENDOR_KEY_PATH)" >> $(1) |
| 2012 | $(hide) echo "avb_vendor_algorithm=$(BOARD_AVB_VENDOR_ALGORITHM)" >> $(1) |
| 2013 | $(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] | 2014 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2015 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_add_hashtree_footer_args=$(BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2016 | $(if $(BOARD_AVB_ENABLE),\ |
| 2017 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 2018 | $(hide) echo "avb_product_key_path=$(BOARD_AVB_PRODUCT_KEY_PATH)" >> $(1) |
| 2019 | $(hide) echo "avb_product_algorithm=$(BOARD_AVB_PRODUCT_ALGORITHM)" >> $(1) |
| 2020 | $(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] | 2021 | $(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] | 2022 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2023 | $(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] | 2024 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2025 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 2026 | $(hide) echo "avb_system_ext_key_path=$(BOARD_AVB_SYSTEM_EXT_KEY_PATH)" >> $(1) |
| 2027 | $(hide) echo "avb_system_ext_algorithm=$(BOARD_AVB_SYSTEM_EXT_ALGORITHM)" >> $(1) |
| 2028 | $(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] | 2029 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2030 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_add_hashtree_footer_args=$(BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2031 | $(if $(BOARD_AVB_ENABLE),\ |
| 2032 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 2033 | $(hide) echo "avb_odm_key_path=$(BOARD_AVB_ODM_KEY_PATH)" >> $(1) |
| 2034 | $(hide) echo "avb_odm_algorithm=$(BOARD_AVB_ODM_ALGORITHM)" >> $(1) |
| 2035 | $(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] | 2036 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2037 | $(if $(BOARD_AVB_ENABLE),\ |
| 2038 | $(hide) echo "avb_vendor_dlkm_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2039 | $(if $(BOARD_AVB_ENABLE),\ |
| 2040 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 2041 | $(hide) echo "avb_vendor_dlkm_key_path=$(BOARD_AVB_VENDOR_DLKM_KEY_PATH)" >> $(1) |
| 2042 | $(hide) echo "avb_vendor_dlkm_algorithm=$(BOARD_AVB_VENDOR_DLKM_ALGORITHM)" >> $(1) |
| 2043 | $(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] | 2044 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2045 | $(if $(BOARD_AVB_ENABLE),\ |
| 2046 | $(hide) echo "avb_odm_dlkm_add_hashtree_footer_args=$(BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2047 | $(if $(BOARD_AVB_ENABLE),\ |
| 2048 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 2049 | $(hide) echo "avb_odm_dlkm_key_path=$(BOARD_AVB_ODM_DLKM_KEY_PATH)" >> $(1) |
| 2050 | $(hide) echo "avb_odm_dlkm_algorithm=$(BOARD_AVB_ODM_DLKM_ALGORITHM)" >> $(1) |
| 2051 | $(hide) echo "avb_odm_dlkm_rollback_index_location=$(BOARD_AVB_ODM_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2052 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 2053 | $(if $(BOARD_AVB_ENABLE),\ |
| 2054 | $(hide) echo "avb_system_dlkm_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 2055 | $(if $(BOARD_AVB_ENABLE),\ |
| 2056 | $(if $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH),\ |
| 2057 | $(hide) echo "avb_system_dlkm_key_path=$(BOARD_AVB_SYSTEM_DLKM_KEY_PATH)" >> $(1) |
| 2058 | $(hide) echo "avb_system_dlkm_algorithm=$(BOARD_AVB_SYSTEM_DLKM_ALGORITHM)" >> $(1) |
| 2059 | $(hide) echo "avb_system_dlkm_rollback_index_location=$(BOARD_SYSTEM_SYSTEM_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2060 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
| 2061 | $(hide) echo "recovery_as_boot=true" >> $(1)) |
Bowgo Tsai | 85578e0 | 2022-04-19 10:50:59 +0800 | [diff] [blame] | 2062 | $(if $(filter true,$(BOARD_BUILD_GKI_BOOT_IMAGE_WITHOUT_RAMDISK)),\ |
| 2063 | $(hide) echo "gki_boot_image_without_ramdisk=true" >> $(1)) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 2064 | $(hide) echo "root_dir=$(TARGET_ROOT_OUT)" >> $(1) |
Tamas Petz | 89418f0 | 2020-02-03 15:40:15 +0100 | [diff] [blame] | 2065 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITION_SIZE)),\ |
| 2066 | $(hide) echo "use_dynamic_partition_size=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2067 | $(if $(3),$(hide) $(foreach kv,$(3),echo "$(kv)" >> $(1);)) |
| 2068 | endef |
| 2069 | |
| 2070 | # $(1): the path of the output dictionary file |
| 2071 | # $(2): additional "key=value" pairs to append to the dictionary file. |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2072 | PROP_DICTIONARY_IMAGES := oem |
| 2073 | ifdef BUILDING_CACHE_IMAGE |
| 2074 | PROP_DICTIONARY_IMAGES += cache |
| 2075 | endif |
| 2076 | ifdef BUILDING_SYSTEM_IMAGE |
| 2077 | PROP_DICTIONARY_IMAGES += system |
| 2078 | endif |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 2079 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 2080 | PROP_DICTIONARY_IMAGES += system_other |
| 2081 | endif |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2082 | ifdef BUILDING_USERDATA_IMAGE |
| 2083 | PROP_DICTIONARY_IMAGES += userdata |
| 2084 | endif |
| 2085 | ifdef BUILDING_VENDOR_IMAGE |
| 2086 | PROP_DICTIONARY_IMAGES += vendor |
| 2087 | endif |
| 2088 | ifdef BUILDING_PRODUCT_IMAGE |
| 2089 | PROP_DICTIONARY_IMAGES += product |
| 2090 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2091 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 2092 | PROP_DICTIONARY_IMAGES += system_ext |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2093 | endif |
| 2094 | ifdef BUILDING_ODM_IMAGE |
| 2095 | PROP_DICTIONARY_IMAGES += odm |
| 2096 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2097 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 2098 | PROP_DICTIONARY_IMAGES += vendor_dlkm |
| 2099 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2100 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 2101 | PROP_DICTIONARY_IMAGES += odm_dlkm |
| 2102 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 2103 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 2104 | PROP_DICTIONARY_IMAGES += system_dlkm |
| 2105 | endif |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2106 | define generate-userimage-prop-dictionary |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 2107 | $(call generate-image-prop-dictionary,$(1),$(PROP_DICTIONARY_IMAGES),$(2)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2108 | endef |
| 2109 | |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 2110 | # $(1): the path of the input dictionary file, where each line has the format key=value |
| 2111 | # $(2): the key to look up |
| 2112 | define read-image-prop-dictionary |
| 2113 | $$(grep '$(2)=' $(1) | cut -f2- -d'=') |
| 2114 | endef |
| 2115 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2116 | # ----------------------------------------------------------------- |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2117 | # Recovery image |
Doug Zongker | 8cebf1f | 2009-07-07 17:14:25 -0700 | [diff] [blame] | 2118 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2119 | # Recovery image exists if we are building recovery, or building recovery as boot. |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2120 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_RECOVERY_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2121 | ifdef BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2122 | |
Ying Wang | 3752614 | 2015-03-10 12:02:57 -0700 | [diff] [blame] | 2123 | INTERNAL_RECOVERYIMAGE_FILES := $(filter $(TARGET_RECOVERY_OUT)/%, \ |
| 2124 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2125 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2126 | INSTALLED_FILES_FILE_RECOVERY := $(PRODUCT_OUT)/installed-files-recovery.txt |
| 2127 | INSTALLED_FILES_JSON_RECOVERY := $(INSTALLED_FILES_FILE_RECOVERY:.txt=.json) |
| 2128 | |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 2129 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2130 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 2131 | endif |
| 2132 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2133 | # TODO(b/30414428): Can't depend on INTERNAL_RECOVERYIMAGE_FILES alone like other |
| 2134 | # INSTALLED_FILES_FILE_* rules. Because currently there're cp/rsync/rm commands in |
| 2135 | # build-recoveryimage-target, which would touch the files under TARGET_RECOVERY_OUT and race with |
| 2136 | # the call to FILELIST. |
Colin Cross | 359f421 | 2020-12-02 15:14:04 -0800 | [diff] [blame] | 2137 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2138 | |
| 2139 | $(INSTALLED_FILES_FILE_RECOVERY): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RECOVERY) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2140 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERYIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2141 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 2142 | mkdir -p $(dir $@) |
| 2143 | rm -f $@ |
| 2144 | $(FILESLIST) $(TARGET_RECOVERY_ROOT_OUT) > $(@:.txt=.json) |
| 2145 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 2146 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2147 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_RECOVERY))) |
| 2148 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_RECOVERY))) |
| 2149 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2150 | recovery_sepolicy := \ |
| 2151 | $(TARGET_RECOVERY_ROOT_OUT)/sepolicy \ |
Jeff Vander Stoep | 4ff042c | 2017-06-13 08:30:46 -0700 | [diff] [blame] | 2152 | $(TARGET_RECOVERY_ROOT_OUT)/plat_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2153 | $(TARGET_RECOVERY_ROOT_OUT)/plat_service_contexts \ |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2154 | $(TARGET_RECOVERY_ROOT_OUT)/plat_property_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 2155 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2156 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_service_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 2157 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_property_contexts \ |
| 2158 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2159 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_service_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2160 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_property_contexts \ |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 2161 | $(TARGET_RECOVERY_ROOT_OUT)/odm_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2162 | $(TARGET_RECOVERY_ROOT_OUT)/odm_property_contexts \ |
| 2163 | $(TARGET_RECOVERY_ROOT_OUT)/product_file_contexts \ |
Yifan Hong | 276b8c0 | 2021-11-13 00:23:44 -0800 | [diff] [blame] | 2164 | $(TARGET_RECOVERY_ROOT_OUT)/product_service_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 2165 | $(TARGET_RECOVERY_ROOT_OUT)/product_property_contexts |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 2166 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 2167 | # Passed into rsync from non-recovery root to recovery root, to avoid overwriting recovery-specific |
| 2168 | # SELinux files |
| 2169 | IGNORE_RECOVERY_SEPOLICY := $(patsubst $(TARGET_RECOVERY_OUT)/%,--exclude=/%,$(recovery_sepolicy)) |
| 2170 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 2171 | # if building multiple boot images from multiple kernels, use the first kernel listed |
| 2172 | # for the recovery image |
| 2173 | recovery_kernel := $(firstword $(INSTALLED_KERNEL_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2174 | recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2175 | recovery_resources_common := bootable/recovery/res |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2176 | |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 2177 | # Set recovery_density to a density bucket based on TARGET_SCREEN_DENSITY, PRODUCT_AAPT_PREF_CONFIG, |
| 2178 | # or mdpi, in order of preference. We support both specific buckets (e.g. xdpi) and numbers, |
| 2179 | # which get remapped to a bucket. |
| 2180 | recovery_density := $(or $(TARGET_SCREEN_DENSITY),$(PRODUCT_AAPT_PREF_CONFIG),mdpi) |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 2181 | ifeq (,$(filter xxxhdpi xxhdpi xhdpi hdpi mdpi,$(recovery_density))) |
| 2182 | recovery_density_value := $(patsubst %dpi,%,$(recovery_density)) |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 2183 | # 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] | 2184 | # ------160------240------320----------480------------640------ |
| 2185 | # mdpi hdpi xhdpi xxhdpi xxxhdpi |
| 2186 | recovery_density := $(strip \ |
| 2187 | $(or $(if $(filter $(shell echo $$(($(recovery_density_value) >= 560))),1),xxxhdpi),\ |
| 2188 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 400))),1),xxhdpi),\ |
| 2189 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 280))),1),xhdpi),\ |
| 2190 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 200))),1),hdpi,mdpi))) |
Doug Zongker | 8eaeea9 | 2014-05-12 15:32:20 -0700 | [diff] [blame] | 2191 | endif |
| 2192 | |
| 2193 | ifneq (,$(wildcard $(recovery_resources_common)-$(recovery_density))) |
| 2194 | recovery_resources_common := $(recovery_resources_common)-$(recovery_density) |
| 2195 | else |
Doug Zongker | 25d55f8 | 2014-04-04 13:51:15 -0700 | [diff] [blame] | 2196 | recovery_resources_common := $(recovery_resources_common)-xhdpi |
| 2197 | endif |
| 2198 | |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 2199 | # Select the 18x32 font on high-density devices (xhdpi and up); and the 12x22 font on other devices. |
| 2200 | # Note that the font selected here can be overridden for a particular device by putting a font.png |
| 2201 | # in its private recovery resources. |
| 2202 | ifneq (,$(filter xxxhdpi xxhdpi xhdpi,$(recovery_density))) |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2203 | recovery_font := bootable/recovery/fonts/18x32.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2204 | else |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2205 | recovery_font := bootable/recovery/fonts/12x22.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 2206 | endif |
| 2207 | |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2208 | |
| 2209 | # We will only generate the recovery background text images if the variable |
| 2210 | # TARGET_RECOVERY_UI_SCREEN_WIDTH is defined. For devices with xxxhdpi and xxhdpi, we set the |
| 2211 | # variable to the commonly used values here, if it hasn't been intialized elsewhere. While for |
| 2212 | # devices with lower density, they must have TARGET_RECOVERY_UI_SCREEN_WIDTH defined in their |
| 2213 | # BoardConfig in order to use this feature. |
| 2214 | ifeq ($(recovery_density),xxxhdpi) |
| 2215 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1440 |
| 2216 | else ifeq ($(recovery_density),xxhdpi) |
| 2217 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1080 |
| 2218 | endif |
| 2219 | |
| 2220 | ifneq ($(TARGET_RECOVERY_UI_SCREEN_WIDTH),) |
| 2221 | # Subtracts the margin width and menu indent from the screen width; it's safe to be conservative. |
| 2222 | ifeq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),) |
| 2223 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - 10)) |
| 2224 | else |
| 2225 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - $(TARGET_RECOVERY_UI_MARGIN_WIDTH) - 10)) |
| 2226 | endif |
| 2227 | |
| 2228 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2229 | 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] | 2230 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/installing_security_text.png |
| 2231 | RECOVERY_ERASING_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/erasing_text.png |
| 2232 | RECOVERY_ERROR_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/error_text.png |
| 2233 | RECOVERY_NO_COMMAND_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/no_command_text.png |
| 2234 | |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2235 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/cancel_wipe_data_text.png |
| 2236 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/factory_data_reset_text.png |
| 2237 | RECOVERY_TRY_AGAIN_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/try_again_text.png |
| 2238 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_confirmation_text.png |
| 2239 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_menu_header_text.png |
| 2240 | |
| 2241 | generated_recovery_text_files := \ |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2242 | $(RECOVERY_INSTALLING_TEXT_FILE) \ |
| 2243 | $(RECOVERY_INSTALLING_SECURITY_TEXT_FILE) \ |
| 2244 | $(RECOVERY_ERASING_TEXT_FILE) \ |
| 2245 | $(RECOVERY_ERROR_TEXT_FILE) \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2246 | $(RECOVERY_NO_COMMAND_TEXT_FILE) \ |
| 2247 | $(RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE) \ |
| 2248 | $(RECOVERY_FACTORY_DATA_RESET_TEXT_FILE) \ |
| 2249 | $(RECOVERY_TRY_AGAIN_TEXT_FILE) \ |
| 2250 | $(RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE) \ |
| 2251 | $(RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2252 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 2253 | resource_dir := bootable/recovery/tools/recovery_l10n/res/ |
| 2254 | resource_dir_deps := $(sort $(shell find $(resource_dir) -name *.xml -not -name .*)) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2255 | image_generator_jar := $(HOST_OUT_JAVA_LIBRARIES)/RecoveryImageGenerator.jar |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2256 | zopflipng := $(HOST_OUT_EXECUTABLES)/zopflipng |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2257 | $(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] | 2258 | $(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] | 2259 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RESOURCE_DIR := $(resource_dir) |
| 2260 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_IMAGE_GENERATOR_JAR := $(image_generator_jar) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2261 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_ZOPFLIPNG := $(zopflipng) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2262 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_IMAGE_WIDTH := $(recovery_image_width) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2263 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_BACKGROUND_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2264 | recovery_installing \ |
| 2265 | recovery_installing_security \ |
| 2266 | recovery_erasing \ |
| 2267 | recovery_error \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2268 | recovery_no_command |
| 2269 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_WIPE_DATA_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2270 | recovery_cancel_wipe_data \ |
| 2271 | recovery_factory_data_reset \ |
| 2272 | recovery_try_again \ |
| 2273 | recovery_wipe_data_menu_header \ |
| 2274 | recovery_wipe_data_confirmation |
| 2275 | $(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] | 2276 | $(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] | 2277 | # Prepares the font directory. |
| 2278 | @rm -rf $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
| 2279 | @mkdir -p $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2280 | $(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] | 2281 | @rm -rf $(dir $@) |
| 2282 | @mkdir -p $(dir $@) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2283 | $(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] | 2284 | $(eval output_file := $(dir $@)/$(patsubst recovery_%,%_text.png,$(text_name))) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2285 | $(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] | 2286 | java -jar $(PRIVATE_IMAGE_GENERATOR_JAR) \ |
| 2287 | --image_width $(PRIVATE_RECOVERY_IMAGE_WIDTH) \ |
| 2288 | --text_name $(text_name) \ |
| 2289 | --font_dir $(PRIVATE_RECOVERY_FONT_FILES_DIR) \ |
| 2290 | --resource_dir $(PRIVATE_RESOURCE_DIR) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 2291 | --output_file $(output_file) $(center_alignment) && \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2292 | $(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] | 2293 | else |
| 2294 | RECOVERY_INSTALLING_TEXT_FILE := |
| 2295 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := |
| 2296 | RECOVERY_ERASING_TEXT_FILE := |
| 2297 | RECOVERY_ERROR_TEXT_FILE := |
| 2298 | RECOVERY_NO_COMMAND_TEXT_FILE := |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2299 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := |
| 2300 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := |
| 2301 | RECOVERY_TRY_AGAIN_TEXT_FILE := |
| 2302 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := |
| 2303 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2304 | endif # TARGET_RECOVERY_UI_SCREEN_WIDTH |
| 2305 | |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2306 | ifndef TARGET_PRIVATE_RES_DIRS |
| 2307 | TARGET_PRIVATE_RES_DIRS := $(wildcard $(TARGET_DEVICE_DIR)/recovery/res) |
| 2308 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2309 | recovery_resource_deps := $(shell find $(recovery_resources_common) \ |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 2310 | $(TARGET_PRIVATE_RES_DIRS) -type f) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 2311 | recovery_resource_deps += $(generated_recovery_text_files) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 2312 | |
| 2313 | |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2314 | ifdef TARGET_RECOVERY_FSTAB |
| 2315 | recovery_fstab := $(TARGET_RECOVERY_FSTAB) |
Cole Faust | 64c2ddb | 2022-01-07 12:44:31 -0800 | [diff] [blame] | 2316 | else ifdef TARGET_RECOVERY_FSTAB_GENRULE |
| 2317 | # Specifies a soong genrule module that generates an fstab. |
| 2318 | recovery_fstab := $(call intermediates-dir-for,ETC,$(TARGET_RECOVERY_FSTAB_GENRULE))/$(TARGET_RECOVERY_FSTAB_GENRULE) |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2319 | else |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 2320 | recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab)) |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 2321 | endif |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2322 | ifdef TARGET_RECOVERY_WIPE |
| 2323 | recovery_wipe := $(TARGET_RECOVERY_WIPE) |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2324 | else |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 2325 | recovery_wipe := |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 2326 | endif |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2327 | |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2328 | # Traditionally with non-A/B OTA we have: |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2329 | # boot.img + recovery-from-boot.p + recovery-resource.dat = recovery.img. |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2330 | # recovery-resource.dat is needed only if we carry an imgdiff patch of the boot and recovery images |
| 2331 | # 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] | 2332 | # |
| 2333 | # We no longer need that if one of the following conditions holds: |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2334 | # 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] | 2335 | # (BOARD_USES_FULL_RECOVERY_IMAGE = true); |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2336 | # b) We build a single image that contains boot and recovery both - no recovery image to install |
| 2337 | # (BOARD_USES_RECOVERY_AS_BOOT = true); |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2338 | # c) We include the recovery DTBO image within recovery - not needing the resource file as we |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2339 | # do bsdiff because boot and recovery will contain different number of entries |
| 2340 | # (BOARD_INCLUDE_RECOVERY_DTBO = true). |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2341 | # d) We include the recovery ACPIO image within recovery - not needing the resource file as we |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2342 | # do bsdiff because boot and recovery will contain different number of entries |
| 2343 | # (BOARD_INCLUDE_RECOVERY_ACPIO = true). |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2344 | # e) We build a single image that contains vendor_boot and recovery both - no recovery image to |
Yifan Hong | ef7a971 | 2020-10-20 13:17:42 -0700 | [diff] [blame] | 2345 | # install |
| 2346 | # (BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT = true). |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 2347 | |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 2348 | ifeq (,$(filter true, $(BOARD_USES_FULL_RECOVERY_IMAGE) $(BOARD_USES_RECOVERY_AS_BOOT) \ |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2349 | $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO) \ |
Yifan Hong | ef7a971 | 2020-10-20 13:17:42 -0700 | [diff] [blame] | 2350 | $(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT))) |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2351 | # 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] | 2352 | RECOVERY_RESOURCE_ZIP := $(TARGET_OUT_VENDOR)/etc/recovery-resource.dat |
| 2353 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_RESOURCE_ZIP) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2354 | else |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2355 | RECOVERY_RESOURCE_ZIP := |
| 2356 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2357 | |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2358 | INSTALLED_RECOVERY_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/prop.default |
| 2359 | |
| 2360 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): PRIVATE_RECOVERY_UI_PROPERTIES := \ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2361 | TARGET_RECOVERY_UI_ANIMATION_FPS:animation_fps \ |
| 2362 | TARGET_RECOVERY_UI_MARGIN_HEIGHT:margin_height \ |
| 2363 | TARGET_RECOVERY_UI_MARGIN_WIDTH:margin_width \ |
| 2364 | TARGET_RECOVERY_UI_MENU_UNUSABLE_ROWS:menu_unusable_rows \ |
| 2365 | TARGET_RECOVERY_UI_PROGRESS_BAR_BASELINE:progress_bar_baseline \ |
| 2366 | TARGET_RECOVERY_UI_TOUCH_LOW_THRESHOLD:touch_low_threshold \ |
| 2367 | TARGET_RECOVERY_UI_TOUCH_HIGH_THRESHOLD:touch_high_threshold \ |
| 2368 | TARGET_RECOVERY_UI_VR_STEREO_OFFSET:vr_stereo_offset |
| 2369 | |
| 2370 | # Parses the given list of build variables and writes their values as build properties if defined. |
| 2371 | # For example, if a target defines `TARGET_RECOVERY_UI_MARGIN_HEIGHT := 100`, |
| 2372 | # `ro.recovery.ui.margin_height=100` will be appended to the given output file. |
| 2373 | # $(1): Map from the build variable names to property names |
| 2374 | # $(2): Output file |
| 2375 | define append-recovery-ui-properties |
| 2376 | echo "#" >> $(2) |
| 2377 | echo "# RECOVERY UI BUILD PROPERTIES" >> $(2) |
| 2378 | echo "#" >> $(2) |
| 2379 | $(foreach prop,$(1), \ |
| 2380 | $(eval _varname := $(call word-colon,1,$(prop))) \ |
| 2381 | $(eval _propname := $(call word-colon,2,$(prop))) \ |
| 2382 | $(eval _value := $($(_varname))) \ |
| 2383 | $(if $(_value), \ |
| 2384 | echo ro.recovery.ui.$(_propname)=$(_value) >> $(2) &&)) true |
| 2385 | endef |
| 2386 | |
| 2387 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): \ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2388 | $(INSTALLED_BUILD_PROP_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2389 | $(INSTALLED_VENDOR_BUILD_PROP_TARGET) \ |
| 2390 | $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2391 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2392 | $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) |
Tao Bao | 1edaca1 | 2018-09-18 10:22:54 -0700 | [diff] [blame] | 2393 | @echo "Target recovery buildinfo: $@" |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2394 | $(hide) mkdir -p $(dir $@) |
| 2395 | $(hide) rm -f $@ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 2396 | $(hide) cat $(INSTALLED_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2397 | $(hide) cat $(INSTALLED_VENDOR_BUILD_PROP_TARGET) >> $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2398 | $(hide) cat $(INSTALLED_ODM_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2399 | $(hide) cat $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) >> $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2400 | $(hide) cat $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 2401 | $(call append-recovery-ui-properties,$(PRIVATE_RECOVERY_UI_PROPERTIES),$@) |
| 2402 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2403 | $(call declare-1p-target,$(INSTALLED_RECOVERY_BUILD_PROP_TARGET),build) |
| 2404 | $(call declare-license-deps,$(INSTALLED_RECOVERY_BUILD_PROP_TARGET),\ |
| 2405 | $(INSTALLED_BUILD_PROP_TARGET) $(INSTALLED_VENDOR_BUILD_PROP_TARGET) $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 2406 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET)) |
| 2407 | |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2408 | # Only install boot/etc/build.prop to recovery image on recovery_as_boot. |
| 2409 | # On device with dedicated recovery partition, the file should come from the boot |
| 2410 | # ramdisk. |
| 2411 | ifeq (true,$(BOARD_USES_RECOVERY_AS_BOOT)) |
| 2412 | INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/$(RAMDISK_BUILD_PROP_REL_PATH) |
| 2413 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET): $(INSTALLED_RAMDISK_BUILD_PROP_TARGET) |
| 2414 | $(copy-file-to-target) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2415 | |
| 2416 | $(call declare-1p-target,$(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET),build) |
| 2417 | $(call declare-license-deps,$(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET),$(INSTALLED_RAMDISK_BUILD_PROP_TARGET)) |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2418 | endif |
| 2419 | |
Yifan Hong | c56931c | 2020-10-28 16:35:19 -0700 | [diff] [blame] | 2420 | INTERNAL_RECOVERYIMAGE_ARGS := --ramdisk $(recovery_ramdisk) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2421 | |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 2422 | 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] | 2423 | INTERNAL_RECOVERYIMAGE_ARGS += $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2424 | # Assumes this has already been stripped |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2425 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 2426 | ifdef INTERNAL_KERNEL_CMDLINE |
| 2427 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 2428 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 2429 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2430 | ifdef BOARD_KERNEL_BASE |
| 2431 | INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 2432 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 2433 | ifdef BOARD_KERNEL_PAGESIZE |
| 2434 | INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 2435 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2436 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2437 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2438 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2439 | else |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 2440 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_DTBOIMAGE) |
| 2441 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 2442 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2443 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 2444 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_acpio $(BOARD_RECOVERY_ACPIO) |
| 2445 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2446 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 2447 | INTERNAL_RECOVERYIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 2448 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 2449 | endif # (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2450 | ifndef BOARD_RECOVERY_MKBOOTIMG_ARGS |
| 2451 | BOARD_RECOVERY_MKBOOTIMG_ARGS := $(BOARD_MKBOOTIMG_ARGS) |
| 2452 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2453 | |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2454 | $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP): $(MKBOOTFS) $(COMPRESSION_COMMAND_DEPS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2455 | $(INTERNAL_ROOT_FILES) \ |
| 2456 | $(INSTALLED_RAMDISK_TARGET) \ |
| 2457 | $(INTERNAL_RECOVERYIMAGE_FILES) \ |
| 2458 | $(recovery_sepolicy) \ |
| 2459 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 2460 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET) \ |
Yifan Hong | 33fd5d4 | 2020-09-24 18:18:26 -0700 | [diff] [blame] | 2461 | $(INSTALLED_RECOVERY_RAMDISK_BUILD_PROP_TARGET) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2462 | $(recovery_resource_deps) \ |
| 2463 | $(recovery_fstab) |
| 2464 | # Making recovery image |
| 2465 | mkdir -p $(TARGET_RECOVERY_OUT) |
| 2466 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sdcard $(TARGET_RECOVERY_ROOT_OUT)/tmp |
| 2467 | # Copying baseline ramdisk... |
| 2468 | # Use rsync because "cp -Rf" fails to overwrite broken symlinks on Mac. |
| 2469 | rsync -a --exclude=sdcard $(IGNORE_RECOVERY_SEPOLICY) $(IGNORE_CACHE_LINK) $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT) |
| 2470 | # Modifying ramdisk contents... |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 2471 | ln -sf /system/bin/init $(TARGET_RECOVERY_ROOT_OUT)/init |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2472 | # Removes $(TARGET_RECOVERY_ROOT_OUT)/init*.rc EXCEPT init.recovery*.rc. |
| 2473 | find $(TARGET_RECOVERY_ROOT_OUT) -maxdepth 1 -name 'init*.rc' -type f -not -name "init.recovery.*.rc" | xargs rm -f |
| 2474 | cp $(TARGET_ROOT_OUT)/init.recovery.*.rc $(TARGET_RECOVERY_ROOT_OUT)/ 2> /dev/null || true # Ignore error when the src file doesn't exist. |
| 2475 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2476 | rm -rf $(TARGET_RECOVERY_ROOT_OUT)/res/* |
| 2477 | cp -rf $(recovery_resources_common)/* $(TARGET_RECOVERY_ROOT_OUT)/res |
| 2478 | $(foreach recovery_text_file,$(generated_recovery_text_files), \ |
| 2479 | cp -rf $(recovery_text_file) $(TARGET_RECOVERY_ROOT_OUT)/res/images/ &&) true |
| 2480 | cp -f $(recovery_font) $(TARGET_RECOVERY_ROOT_OUT)/res/images/font.png |
| 2481 | $(foreach item,$(TARGET_PRIVATE_RES_DIRS), \ |
| 2482 | cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/$(newline)) |
| 2483 | $(foreach item,$(recovery_fstab), \ |
| 2484 | cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.fstab) |
| 2485 | $(if $(strip $(recovery_wipe)), \ |
| 2486 | cp -f $(recovery_wipe) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.wipe) |
| 2487 | ln -sf prop.default $(TARGET_RECOVERY_ROOT_OUT)/default.prop |
| 2488 | $(BOARD_RECOVERY_IMAGE_PREPARE) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 2489 | $(hide) touch $@ |
| 2490 | |
| 2491 | $(recovery_ramdisk): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2492 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RECOVERY_ROOT_OUT) | $(COMPRESSION_COMMAND) > $(recovery_ramdisk) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2493 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2494 | # $(1): output file |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2495 | # $(2): optional kernel file |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2496 | define build-recoveryimage-target |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2497 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2498 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 2499 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_RECOVERY_MKBOOTIMG_ARGS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2500 | --output $(1).unsigned, \ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2501 | $(MKBOOTIMG) $(if $(strip $(2)),--kernel $(strip $(2))) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2502 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2503 | $(BOARD_RECOVERY_MKBOOTIMG_ARGS) --output $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2504 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
| 2505 | $(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] | 2506 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2507 | $(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] | 2508 | $(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] | 2509 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 2510 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 2511 | $(AVBTOOL) add_hash_footer --image $(1) $(call get-partition-size-argument,$(call get-bootimage-partition-size,$(1),boot)) --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS),\ |
| 2512 | $(AVBTOOL) add_hash_footer --image $(1) $(call get-partition-size-argument,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)) --partition_name recovery $(INTERNAL_AVB_RECOVERY_SIGNING_ARGS) $(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS))) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2513 | endef |
| 2514 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2515 | recoveryimage-deps := $(MKBOOTIMG) $(recovery_ramdisk) $(recovery_kernel) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 2516 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2517 | recoveryimage-deps += $(VBOOT_SIGNER) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 2518 | endif |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2519 | ifeq (true,$(BOARD_AVB_ENABLE)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2520 | recoveryimage-deps += $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 2521 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2522 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2523 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 2524 | recoveryimage-deps += $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 2525 | else |
| 2526 | recoveryimage-deps += $(BOARD_PREBUILT_DTBOIMAGE) |
| 2527 | endif |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 2528 | endif |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2529 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2530 | recoveryimage-deps += $(BOARD_RECOVERY_ACPIO) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2531 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2532 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2533 | recoveryimage-deps += $(INSTALLED_DTBIMAGE_TARGET) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 2534 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2535 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2536 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 2537 | $(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] | 2538 | $(INSTALLED_BOOTIMAGE_TARGET): $(recoveryimage-deps) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2539 | $(call pretty,"Target boot image from recovery: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2540 | $(call build-recoveryimage-target, $@, $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $@)))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2541 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 2542 | $(call declare-container-license-metadata,$(INSTALLED_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",bool) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2543 | $(call declare-container-license-deps,$(INSTALLED_BOOTIMAGE_TARGET),$(recoveryimage-deps),$(PRODUCT_OUT)/:/) |
| 2544 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2545 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_BOOTIMAGE_TARGET) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 2546 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2547 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 2548 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(recoveryimage-deps) |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2549 | $(call build-recoveryimage-target, $@, \ |
| 2550 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2551 | |
Tao Bao | 4594d0e | 2015-12-22 09:47:46 -0800 | [diff] [blame] | 2552 | ifdef RECOVERY_RESOURCE_ZIP |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2553 | $(RECOVERY_RESOURCE_ZIP): $(INSTALLED_RECOVERYIMAGE_TARGET) | $(ZIPTIME) |
Doug Zongker | 1a09726 | 2012-09-04 14:45:11 -0700 | [diff] [blame] | 2554 | $(hide) mkdir -p $(dir $@) |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 2555 | $(hide) find $(TARGET_RECOVERY_ROOT_OUT)/res -type f | sort | zip -0qrjX $@ -@ |
| 2556 | $(remove-timestamps-from-package) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2557 | endif |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2558 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2559 | |
| 2560 | $(call declare-1p-container,$(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 2561 | $(call declare-container-license-deps,$(INSTALLED_RECOVERYIMAGE_TARGET),$(recoveryimage-deps),$(PRODUCT_OUT)/:/) |
| 2562 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2563 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_RECOVERYIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2564 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2565 | .PHONY: recoveryimage-nodeps |
| 2566 | recoveryimage-nodeps: |
| 2567 | @echo "make $@: ignoring dependencies" |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 2568 | $(call build-recoveryimage-target, $(INSTALLED_RECOVERYIMAGE_TARGET), \ |
| 2569 | $(if $(filter true, $(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)),, $(recovery_kernel))) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2570 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2571 | else # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2572 | RECOVERY_RESOURCE_ZIP := |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2573 | endif # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2574 | |
| 2575 | .PHONY: recoveryimage |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2576 | recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET) $(RECOVERY_RESOURCE_ZIP) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2577 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2578 | ifneq ($(BOARD_NAND_PAGE_SIZE),) |
| 2579 | $(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] | 2580 | endif |
| 2581 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2582 | ifneq ($(BOARD_NAND_SPARE_SIZE),) |
| 2583 | $(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] | 2584 | endif |
| 2585 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2586 | |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2587 | # ----------------------------------------------------------------- |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2588 | # Build debug ramdisk and debug boot image. |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2589 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_DEBUG_RAMDISK_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2590 | ifneq ($(BUILDING_DEBUG_BOOT_IMAGE)$(BUILDING_DEBUG_VENDOR_BOOT_IMAGE),) |
| 2591 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2592 | INTERNAL_DEBUG_RAMDISK_FILES := $(filter $(TARGET_DEBUG_RAMDISK_OUT)/%, \ |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2593 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2594 | |
| 2595 | # Directories to be picked into the debug ramdisk. |
| 2596 | # As these directories are all merged into one single cpio archive, the order |
| 2597 | # matters. If there are multiple files with the same pathname, then the last one |
| 2598 | # wins. |
| 2599 | # |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2600 | # ramdisk-debug.img will merge the content from either ramdisk.img or |
| 2601 | # ramdisk-recovery.img, depending on whether BOARD_USES_RECOVERY_AS_BOOT |
| 2602 | # is set or not. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2603 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2604 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS := $(TARGET_RECOVERY_ROOT_OUT) |
| 2605 | INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET := $(recovery_ramdisk) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2606 | else # BOARD_USES_RECOVERY_AS_BOOT == true |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2607 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS := $(TARGET_RAMDISK_OUT) |
| 2608 | INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET := $(INSTALLED_RAMDISK_TARGET) |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2609 | endif # BOARD_USES_RECOVERY_AS_BOOT != true |
| 2610 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2611 | INTERNAL_DEBUG_RAMDISK_SRC_DIRS += $(TARGET_DEBUG_RAMDISK_OUT) |
| 2612 | INTERNAL_DEBUG_RAMDISK_SRC_DEPS := $(INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET) $(INTERNAL_DEBUG_RAMDISK_FILES) |
| 2613 | |
| 2614 | # INSTALLED_FILES_FILE_DEBUG_RAMDISK would ensure TARGET_DEBUG_RAMDISK_OUT is created. |
| 2615 | INSTALLED_FILES_FILE_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk-debug.txt |
| 2616 | INSTALLED_FILES_JSON_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK:.txt=.json) |
| 2617 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_DEBUG_RAMDISK) |
| 2618 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(INTERNAL_DEBUG_RAMDISK_SRC_DEPS) |
| 2619 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): $(FILESLIST) $(FILESLIST_UTIL) |
| 2620 | @echo "Installed file list: $@" |
| 2621 | $(hide) rm -f $@ |
| 2622 | $(hide) mkdir -p $(dir $@) $(TARGET_DEBUG_RAMDISK_OUT) |
| 2623 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
| 2624 | $(FILESLIST) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) > $(@:.txt=.json) |
| 2625 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2626 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2627 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_DEBUG_RAMDISK))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2628 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_DEBUG_RAMDISK))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2629 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2630 | ifdef BUILDING_DEBUG_BOOT_IMAGE |
| 2631 | |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2632 | # ----------------------------------------------------------------- |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2633 | # the debug ramdisk, which is the original ramdisk plus additional |
| 2634 | # files: force_debuggable, adb_debug.prop and userdebug sepolicy. |
| 2635 | # When /force_debuggable is present, /init will load userdebug sepolicy |
| 2636 | # and property files to allow adb root, if the device is unlocked. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2637 | INSTALLED_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-debug.img |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2638 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2639 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2640 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2641 | @echo "Target debug ramdisk: $@" |
| 2642 | $(hide) rm -f $@ |
| 2643 | $(hide) mkdir -p $(dir $@) |
| 2644 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2645 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2646 | $(call declare-1p-container,$(INSTALLED_DEBUG_RAMDISK_TARGET),) |
| 2647 | $(call declare-container-license-deps,$(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2648 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2649 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2650 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2651 | .PHONY: ramdisk_debug-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2652 | ramdisk_debug-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2653 | @echo "make $@: ignoring dependencies" |
| 2654 | $(hide) rm -f $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2655 | $(hide) mkdir -p $(dir $(INSTALLED_DEBUG_RAMDISK_TARGET)) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) |
| 2656 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2657 | |
| 2658 | # ----------------------------------------------------------------- |
| 2659 | # the boot-debug.img, which is the kernel plus ramdisk-debug.img |
| 2660 | # |
| 2661 | # Note: it's intentional to skip signing for boot-debug.img, because it |
| 2662 | # can only be used if the device is unlocked with verification error. |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2663 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2664 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-debug,$(BOARD_KERNEL_BINARIES)), \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2665 | $(PRODUCT_OUT)/$(k).img) |
| 2666 | else |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2667 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-debug.img |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2668 | endif |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2669 | |
| 2670 | # Replace ramdisk.img in $(MKBOOTIMG) ARGS with ramdisk-debug.img to build boot-debug.img |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2671 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2672 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2673 | INTERNAL_DEBUG_BOOTIMAGE_ARGS := $(subst $(INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET),$(INSTALLED_DEBUG_RAMDISK_TARGET),$(INTERNAL_RECOVERYIMAGE_ARGS)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2674 | else |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2675 | INTERNAL_DEBUG_BOOTIMAGE_ARGS := $(subst $(INTERNAL_DEBUG_RAMDISK_SRC_RAMDISK_TARGET),$(INSTALLED_DEBUG_RAMDISK_TARGET),$(INTERNAL_BOOTIMAGE_ARGS)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2676 | endif |
| 2677 | |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2678 | # If boot.img is chained but boot-debug.img is not signed, libavb in bootloader |
| 2679 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2680 | # Using a test key to sign boot-debug.img to continue booting with the mismatched |
| 2681 | # public key, if the device is unlocked. |
| 2682 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2683 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2684 | endif |
| 2685 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2686 | BOARD_AVB_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2687 | INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2688 | # $(1): the bootimage to sign |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2689 | # $(2): boot image variant (boot, boot-debug, boot-test-harness) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2690 | define test-key-sign-bootimage |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2691 | $(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] | 2692 | $(AVBTOOL) add_hash_footer \ |
| 2693 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 2694 | $(call get-partition-size-argument,$(call get-bootimage-partition-size,$(1),$(2)))\ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2695 | --partition_name boot $(INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS) \ |
| 2696 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2697 | $(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] | 2698 | endef |
| 2699 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2700 | # $(1): output file |
| 2701 | define build-debug-bootimage-target |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2702 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-debug,kernel,$(notdir $(1)))) \ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 2703 | $(INTERNAL_DEBUG_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2704 | $(BOARD_MKBOOTIMG_ARGS) --output $1 |
Yi-Yo Chiang | ffb366e | 2021-10-14 16:56:00 +0800 | [diff] [blame] | 2705 | $(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] | 2706 | endef |
| 2707 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2708 | # Depends on original boot.img and ramdisk-debug.img, to build the new boot-debug.img |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2709 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_BOOTIMAGE_TARGET) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2710 | $(call pretty,"Target boot debug image: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2711 | $(call build-debug-bootimage-target, $@) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2712 | |
Bob Badour | a60beee | 2022-09-07 15:34:12 -0700 | [diff] [blame] | 2713 | $(call declare-container-license-metadata,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),SPDX-license-identifier-GPL-2.0-only SPDX-license-identifier-Apache-2.0,restricted notice,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING build/soong/licenses/LICENSE,"Boot Image",boot) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2714 | $(call declare-container-license-deps,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(INSTALLED_BOOTIMAGE_TARGET),$(PRODUCT_OUT)/:/) |
| 2715 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2716 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2717 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2718 | .PHONY: bootimage_debug-nodeps |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2719 | bootimage_debug-nodeps: $(MKBOOTIMG) $(AVBTOOL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2720 | echo "make $@: ignoring dependencies" |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2721 | $(foreach b,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(call build-debug-bootimage-target,$b)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2722 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2723 | endif # BUILDING_DEBUG_BOOT_IMAGE |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2724 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2725 | # ----------------------------------------------------------------- |
| 2726 | # vendor debug ramdisk |
| 2727 | # Combines vendor ramdisk files and debug ramdisk files to build the vendor debug ramdisk. |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2728 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2729 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2730 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2731 | INTERNAL_VENDOR_DEBUG_RAMDISK_FILES := $(filter $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/%, \ |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2732 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2733 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2734 | # The debug vendor ramdisk combines vendor ramdisk and debug ramdisk. |
| 2735 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS := $(TARGET_VENDOR_RAMDISK_OUT) |
| 2736 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS := $(INTERNAL_VENDOR_RAMDISK_TARGET) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2737 | |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 2738 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 2739 | # recovery ramdisk in vendor_boot. |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2740 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2741 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
| 2742 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS += $(TARGET_RECOVERY_ROOT_OUT) |
| 2743 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS += $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 2744 | endif # BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT != true |
| 2745 | endif # BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT == true |
Bowgo Tsai | ceaa411 | 2021-01-19 13:55:42 +0800 | [diff] [blame] | 2746 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2747 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS += $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) $(TARGET_DEBUG_RAMDISK_OUT) |
| 2748 | INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS += $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) |
| 2749 | |
| 2750 | # INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK would ensure TARGET_VENDOR_DEBUG_RAMDISK_OUT is created. |
| 2751 | INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk-debug.txt |
| 2752 | INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK:.txt=.json) |
| 2753 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK) |
| 2754 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DEPS) |
| 2755 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(FILESLIST) $(FILESLIST_UTIL) |
| 2756 | @echo "Installed file list: $@" |
| 2757 | $(hide) rm -f $@ |
| 2758 | $(hide) mkdir -p $(dir $@) $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) |
| 2759 | $(FILESLIST) $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) > $(@:.txt=.json) |
| 2760 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2761 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 2762 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK)) |
| 2763 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2764 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2765 | INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-debug)/vendor_ramdisk-debug.cpio$(RAMDISK_EXT) |
| 2766 | |
Bowgo Tsai | 610286a | 2021-04-23 11:31:32 +0800 | [diff] [blame] | 2767 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2768 | $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2769 | $(hide) rm -f $@ |
| 2770 | $(hide) mkdir -p $(dir $@) |
| 2771 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2772 | |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2773 | INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-debug.img |
| 2774 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): $(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET) |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 2775 | @echo "Target debug vendor ramdisk: $@" |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2776 | $(copy-file-to-target) |
Petri Gynther | d7946d1 | 2021-03-10 12:38:15 -0800 | [diff] [blame] | 2777 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2778 | $(call declare-1p-container,$(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET),) |
| 2779 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET),$(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2780 | |
| 2781 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET) |
| 2782 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2783 | # ----------------------------------------------------------------- |
| 2784 | # vendor_boot-debug.img. |
| 2785 | INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-debug.img |
| 2786 | |
| 2787 | # The util to sign vendor_boot-debug.img with a test key. |
| 2788 | BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2789 | INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2790 | # $(1): the vendor bootimage to sign |
| 2791 | define test-key-sign-vendor-bootimage |
| 2792 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE))) |
| 2793 | $(AVBTOOL) add_hash_footer \ |
| 2794 | --image $(1) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 2795 | $(call get-partition-size-argument,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) \ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2796 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS) \ |
| 2797 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 2798 | $(call assert-max-image-size,$(1),$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2799 | endef |
| 2800 | |
| 2801 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 2802 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2803 | endif |
| 2804 | |
| 2805 | # 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] | 2806 | $(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] | 2807 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2808 | $(call pretty,"Target vendor_boot debug image: $@") |
Bowgo Tsai | 7ac9603 | 2021-01-20 16:29:49 +0800 | [diff] [blame] | 2809 | $(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] | 2810 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2811 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 2812 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2813 | $(call declare-1p-container,$(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET),) |
| 2814 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_DEBUG_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2815 | |
| 2816 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET) |
| 2817 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2818 | endif # BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2819 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2820 | # Appends a few test harness specific properties into the adb_debug.prop. |
| 2821 | ADDITIONAL_TEST_HARNESS_PROPERTIES := ro.audio.silent=1 |
| 2822 | ADDITIONAL_TEST_HARNESS_PROPERTIES += ro.test_harness=1 |
| 2823 | |
| 2824 | INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET := $(strip $(filter $(TARGET_DEBUG_RAMDISK_OUT)/adb_debug.prop,$(INTERNAL_DEBUG_RAMDISK_FILES))) |
| 2825 | INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET := $(TARGET_TEST_HARNESS_RAMDISK_OUT)/adb_debug.prop |
| 2826 | $(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET): $(INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET) |
| 2827 | $(hide) rm -f $@ |
| 2828 | $(hide) mkdir -p $(dir $@) |
| 2829 | ifdef INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET |
| 2830 | $(hide) cp $(INTERNAL_DEBUG_RAMDISK_ADB_DEBUG_PROP_TARGET) $@ |
| 2831 | endif |
| 2832 | $(hide) echo "" >> $@ |
| 2833 | $(hide) echo "#" >> $@ |
| 2834 | $(hide) echo "# ADDITIONAL TEST HARNESS PROPERTIES" >> $@ |
| 2835 | $(hide) echo "#" >> $@ |
| 2836 | $(hide) $(foreach line,$(ADDITIONAL_TEST_HARNESS_PROPERTIES), \ |
| 2837 | echo "$(line)" >> $@;) |
| 2838 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 2839 | $(call declare-1p-target,$(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET)) |
| 2840 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 2841 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_TEST_HARNESS_RAMDISK_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2842 | INTERNAL_TEST_HARNESS_RAMDISK_FILES := $(filter $(TARGET_TEST_HARNESS_RAMDISK_OUT)/%, \ |
| 2843 | $(INTERNAL_TEST_HARNESS_RAMDISK_ADB_DEBUG_PROP_TARGET) \ |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2844 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2845 | |
| 2846 | # The order is important here. The test harness ramdisk staging directory has to |
| 2847 | # come last so that it can override the adb_debug.prop in the debug ramdisk |
| 2848 | # staging directory. |
| 2849 | INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS := $(INTERNAL_DEBUG_RAMDISK_SRC_DIRS) $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
| 2850 | INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) $(INTERNAL_TEST_HARNESS_RAMDISK_FILES) |
| 2851 | |
| 2852 | ifdef BUILDING_DEBUG_BOOT_IMAGE |
| 2853 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2854 | # ----------------------------------------------------------------- |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2855 | # The test harness ramdisk, which is based off debug_ramdisk, plus a |
| 2856 | # few additional test-harness-specific properties in adb_debug.prop. |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2857 | INSTALLED_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-test-harness.img |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2858 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2859 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS) |
| 2860 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
| 2861 | @echo "Target test harness ramdisk: $@" |
| 2862 | $(hide) rm -f $@ |
| 2863 | $(hide) mkdir -p $(dir $@) |
| 2864 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2865 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2866 | $(call declare-1p-container,$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),) |
| 2867 | $(call declare-container-license-deps,$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DEPS),$(PRODUCT_OUT)/:/) |
| 2868 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2869 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2870 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2871 | .PHONY: ramdisk_test_harness-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2872 | ramdisk_test_harness-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2873 | @echo "make $@: ignoring dependencies" |
| 2874 | $(hide) rm -f $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
| 2875 | $(hide) mkdir -p $(dir $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET)) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) |
| 2876 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_TEST_HARNESS_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2877 | |
| 2878 | # ----------------------------------------------------------------- |
| 2879 | # the boot-test-harness.img, which is the kernel plus ramdisk-test-harness.img |
| 2880 | # |
| 2881 | # Note: it's intentional to skip signing for boot-test-harness.img, because it |
| 2882 | # can only be used if the device is unlocked with verification error. |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2883 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 2884 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-test-harness,$(BOARD_KERNEL_BINARIES)), \ |
| 2885 | $(PRODUCT_OUT)/$(k).img) |
| 2886 | else |
| 2887 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-test-harness.img |
| 2888 | endif |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2889 | |
| 2890 | # Replace ramdisk-debug.img in $(MKBOOTIMG) ARGS with ramdisk-test-harness.img to build boot-test-harness.img |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2891 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2892 | INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS := $(subst $(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_DEBUG_BOOTIMAGE_ARGS)) |
| 2893 | |
| 2894 | # If boot.img is chained but boot-test-harness.img is not signed, libavb in bootloader |
| 2895 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2896 | # Using a test key to sign boot-test-harness.img to continue booting with the mismatched |
| 2897 | # public key, if the device is unlocked. |
| 2898 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
| 2899 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2900 | endif |
| 2901 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2902 | # $(1): output file |
| 2903 | define build-boot-test-harness-target |
| 2904 | $(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] | 2905 | $(INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) \ |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2906 | $(BOARD_MKBOOTIMG_ARGS) --output $@ |
Bowgo Tsai | f85e68f | 2021-03-04 14:41:16 +0800 | [diff] [blame] | 2907 | $(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] | 2908 | endef |
| 2909 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2910 | # Build the new boot-test-harness.img, based on boot-debug.img and ramdisk-test-harness.img. |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2911 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2912 | $(call pretty,"Target boot test harness image: $@") |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2913 | $(call build-boot-test-harness-target,$@) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2914 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2915 | $(call declare-1p-container,$(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET),) |
| 2916 | $(call declare-container-license-deps,$(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET),$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(PRODUCT_OUT)/:/) |
| 2917 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 2918 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2919 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2920 | .PHONY: bootimage_test_harness-nodeps |
Yi-Yo Chiang | cd6de3d | 2021-12-29 21:44:39 +0800 | [diff] [blame] | 2921 | bootimage_test_harness-nodeps: $(MKBOOTIMG) $(AVBTOOL) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2922 | echo "make $@: ignoring dependencies" |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2923 | $(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] | 2924 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2925 | endif # BUILDING_DEBUG_BOOT_IMAGE |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2926 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2927 | # ----------------------------------------------------------------- |
| 2928 | # vendor test harness ramdisk, which is a vendor ramdisk combined with |
| 2929 | # a test harness ramdisk. |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2930 | ifdef BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2931 | |
| 2932 | INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor_boot-test-harness)/vendor_ramdisk-test-harness.cpio$(RAMDISK_EXT) |
| 2933 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2934 | # The order is important here. The test harness ramdisk staging directory has to |
| 2935 | # come last so that it can override the adb_debug.prop in the debug ramdisk |
| 2936 | # staging directory. |
| 2937 | INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DIRS := $(INTERNAL_DEBUG_VENDOR_RAMDISK_SRC_DIRS) $(TARGET_TEST_HARNESS_RAMDISK_OUT) |
| 2938 | INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DEPS := $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK) $(INTERNAL_TEST_HARNESS_RAMDISK_FILES) |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2939 | |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2940 | $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DEPS) |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2941 | $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Yi-Yo Chiang | 9942f4e | 2021-10-01 21:33:42 +0800 | [diff] [blame] | 2942 | $(hide) rm -f $@ |
| 2943 | $(hide) mkdir -p $(dir $@) |
| 2944 | $(MKBOOTFS) -d $(TARGET_OUT) $(INTERNAL_TEST_HARNESS_VENDOR_RAMDISK_SRC_DIRS) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2945 | |
Yi-Yo Chiang | 870ea16 | 2021-10-01 18:01:44 +0800 | [diff] [blame] | 2946 | INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor_ramdisk-test-harness.img |
| 2947 | $(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET): $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 2948 | @echo "Target test harness vendor ramdisk: $@" |
| 2949 | $(copy-file-to-target) |
| 2950 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2951 | $(call declare-1p-container,$(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET),) |
| 2952 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2953 | |
| 2954 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 2955 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2956 | # ----------------------------------------------------------------- |
| 2957 | # vendor_boot-test-harness.img. |
| 2958 | INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-test-harness.img |
| 2959 | |
| 2960 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 2961 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2962 | endif |
| 2963 | |
| 2964 | # Depends on vendor_boot.img and vendor_ramdisk-test-harness.cpio$(RAMDISK_EXT) to build the new vendor_boot-test-harness.img |
| 2965 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) |
| 2966 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) |
| 2967 | $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
| 2968 | $(call pretty,"Target vendor_boot test harness image: $@") |
| 2969 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_ARGS) --vendor_boot $@ |
| 2970 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2971 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 2972 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 2973 | $(call declare-1p-container,$(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET),) |
| 2974 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET),$(INTERNAL_VENDOR_TEST_HARNESS_RAMDISK_TARGET),$(PRODUCT_OUT)/:/) |
| 2975 | |
| 2976 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDOR_TEST_HARNESS_BOOTIMAGE_TARGET) |
| 2977 | |
Yi-Yo Chiang | 4d7c613 | 2021-09-29 19:41:11 +0800 | [diff] [blame] | 2978 | endif # BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2979 | |
Yi-Yo Chiang | 6c51a43 | 2021-10-01 18:11:26 +0800 | [diff] [blame] | 2980 | endif # BUILDING_DEBUG_BOOT_IMAGE || BUILDING_DEBUG_VENDOR_BOOT_IMAGE |
| 2981 | |
Bowgo Tsai | 87f6001 | 2021-07-29 23:35:33 +0800 | [diff] [blame] | 2982 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2983 | # Creates a compatibility symlink between two partitions, e.g. /system/vendor to /vendor |
| 2984 | # $1: from location (e.g $(TARGET_OUT)/vendor) |
| 2985 | # $2: destination location (e.g. /vendor) |
| 2986 | # $3: partition image name (e.g. vendor.img) |
| 2987 | define create-partition-compat-symlink |
| 2988 | $(eval \ |
| 2989 | $1: |
| 2990 | @echo Symlink $(patsubst $(PRODUCT_OUT)/%,%,$1) to $2 |
| 2991 | mkdir -p $(dir $1) |
| 2992 | if [ -d $1 ] && [ ! -h $1 ]; then \ |
| 2993 | echo 'Non-symlink $1 detected!' 1>&2; \ |
| 2994 | echo 'You cannot install files to $1 while building a separate $3!' 1>&2; \ |
| 2995 | exit 1; \ |
| 2996 | fi |
| 2997 | ln -sfn $2 $1 |
Jingwen Chen | 7d7f945 | 2020-09-22 13:47:13 +0000 | [diff] [blame] | 2998 | $1: .KATI_SYMLINK_OUTPUTS := $1 |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2999 | ) |
| 3000 | $1 |
| 3001 | endef |
| 3002 | |
| 3003 | |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3004 | # FSVerity metadata generation |
| 3005 | # Generate fsverity metadata files (.fsv_meta) and build manifest |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3006 | # (<partition>/etc/security/fsverity/BuildManifest<suffix>.apk) BEFORE filtering systemimage, |
| 3007 | # vendorimage, odmimage, productimage files below. |
| 3008 | ifeq ($(PRODUCT_FSVERITY_GENERATE_METADATA),true) |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3009 | |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3010 | fsverity-metadata-targets-patterns := \ |
Victor Hsieh | fb3ef8a | 2022-01-07 14:05:42 -0800 | [diff] [blame] | 3011 | $(TARGET_OUT)/framework/% \ |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3012 | $(TARGET_OUT)/etc/boot-image.prof \ |
| 3013 | $(TARGET_OUT)/etc/dirty-image-objects \ |
Nicolas Geoffray | 13f2821 | 2022-03-18 17:28:14 +0000 | [diff] [blame] | 3014 | $(TARGET_OUT)/etc/preloaded-classes \ |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3015 | $(TARGET_OUT)/etc/classpaths/%.pb \ |
| 3016 | |
| 3017 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3018 | fsverity-metadata-targets-patterns += $(TARGET_OUT_SYSTEM_EXT)/framework/% |
| 3019 | endif |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3020 | |
| 3021 | # Generate fsv_meta |
| 3022 | fsverity-metadata-targets := $(sort $(filter \ |
| 3023 | $(fsverity-metadata-targets-patterns), \ |
Colin Cross | a1de5df | 2022-03-21 14:31:31 -0700 | [diff] [blame] | 3024 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3025 | |
| 3026 | define fsverity-generate-metadata |
Bob Badour | 2cd3536 | 2022-12-01 17:58:57 -0800 | [diff] [blame] | 3027 | $(call declare-0p-target,$(1).fsv_meta) |
| 3028 | |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3029 | $(1).fsv_meta: PRIVATE_SRC := $(1) |
| 3030 | $(1).fsv_meta: PRIVATE_FSVERITY := $(HOST_OUT_EXECUTABLES)/fsverity |
| 3031 | $(1).fsv_meta: $(HOST_OUT_EXECUTABLES)/fsverity_metadata_generator $(HOST_OUT_EXECUTABLES)/fsverity $(1) |
| 3032 | $$< --fsverity-path $$(PRIVATE_FSVERITY) --signature none \ |
| 3033 | --hash-alg sha256 --output $$@ $$(PRIVATE_SRC) |
| 3034 | endef |
| 3035 | |
| 3036 | $(foreach f,$(fsverity-metadata-targets),$(eval $(call fsverity-generate-metadata,$(f)))) |
| 3037 | ALL_DEFAULT_INSTALLED_MODULES += $(addsuffix .fsv_meta,$(fsverity-metadata-targets)) |
| 3038 | |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3039 | FSVERITY_APK_KEY_PATH := $(DEFAULT_SYSTEM_DEV_CERTIFICATE) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3040 | FSVERITY_APK_MANIFEST_TEMPLATE_PATH := system/security/fsverity/AndroidManifest.xml |
| 3041 | |
| 3042 | # Generate and install BuildManifest<suffix>.apk for the given partition |
| 3043 | # $(1): path of the output APK |
| 3044 | # $(2): partition name |
| 3045 | define fsverity-generate-and-install-manifest-apk |
| 3046 | fsverity-metadata-targets-$(2) := $(filter $(PRODUCT_OUT)/$(2)/%,\ |
| 3047 | $(fsverity-metadata-targets)) |
| 3048 | $(1): PRIVATE_FSVERITY := $(HOST_OUT_EXECUTABLES)/fsverity |
| 3049 | $(1): PRIVATE_AAPT2 := $(HOST_OUT_EXECUTABLES)/aapt2 |
| 3050 | $(1): PRIVATE_MIN_SDK_VERSION := $(DEFAULT_APP_TARGET_SDK) |
| 3051 | $(1): PRIVATE_VERSION_CODE := $(PLATFORM_SDK_VERSION) |
| 3052 | $(1): PRIVATE_VERSION_NAME := $(APPS_DEFAULT_VERSION_NAME) |
| 3053 | $(1): PRIVATE_APKSIGNER := $(HOST_OUT_EXECUTABLES)/apksigner |
| 3054 | $(1): PRIVATE_MANIFEST := $(FSVERITY_APK_MANIFEST_TEMPLATE_PATH) |
| 3055 | $(1): PRIVATE_FRAMEWORK_RES := $(call intermediates-dir-for,APPS,framework-res,,COMMON)/package-export.apk |
| 3056 | $(1): PRIVATE_KEY := $(FSVERITY_APK_KEY_PATH) |
| 3057 | $(1): PRIVATE_INPUTS := $$(fsverity-metadata-targets-$(2)) |
| 3058 | $(1): PRIVATE_ASSETS := $(call intermediates-dir-for,ETC,build_manifest-$(2))/assets |
| 3059 | $(1): $(HOST_OUT_EXECUTABLES)/fsverity_manifest_generator \ |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3060 | $(HOST_OUT_EXECUTABLES)/fsverity $(HOST_OUT_EXECUTABLES)/aapt2 \ |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3061 | $(HOST_OUT_EXECUTABLES)/apksigner $(FSVERITY_APK_MANIFEST_TEMPLATE_PATH) \ |
Victor Hsieh | be1029a | 2022-01-07 10:42:23 -0800 | [diff] [blame] | 3062 | $(FSVERITY_APK_KEY_PATH).x509.pem $(FSVERITY_APK_KEY_PATH).pk8 \ |
Jiyong Park | efbb6ff | 2022-01-10 17:14:30 +0900 | [diff] [blame] | 3063 | $(call intermediates-dir-for,APPS,framework-res,,COMMON)/package-export.apk \ |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3064 | $$(fsverity-metadata-targets-$(2)) |
| 3065 | rm -rf $$(PRIVATE_ASSETS) |
| 3066 | mkdir -p $$(PRIVATE_ASSETS) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3067 | $$< --fsverity-path $$(PRIVATE_FSVERITY) \ |
| 3068 | --base-dir $$(PRODUCT_OUT) \ |
| 3069 | --output $$(PRIVATE_ASSETS)/build_manifest.pb \ |
| 3070 | $$(PRIVATE_INPUTS) |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3071 | $$(PRIVATE_AAPT2) link -o $$@ \ |
| 3072 | -A $$(PRIVATE_ASSETS) \ |
| 3073 | -I $$(PRIVATE_FRAMEWORK_RES) \ |
| 3074 | --min-sdk-version $$(PRIVATE_MIN_SDK_VERSION) \ |
| 3075 | --version-code $$(PRIVATE_VERSION_CODE) \ |
| 3076 | --version-name $$(PRIVATE_VERSION_NAME) \ |
| 3077 | --manifest $$(PRIVATE_MANIFEST) \ |
| 3078 | --rename-manifest-package com.android.security.fsverity_metadata.$(2) |
| 3079 | $$(PRIVATE_APKSIGNER) sign --in $$@ \ |
| 3080 | --cert $$(PRIVATE_KEY).x509.pem \ |
| 3081 | --key $$(PRIVATE_KEY).pk8 |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3082 | |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3083 | $(1).idsig: $(1) |
| 3084 | |
| 3085 | ALL_DEFAULT_INSTALLED_MODULES += $(1) $(1).idsig |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3086 | |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3087 | endef # fsverity-generate-and-install-manifest-apk |
| 3088 | |
| 3089 | $(eval $(call fsverity-generate-and-install-manifest-apk, \ |
| 3090 | $(TARGET_OUT)/etc/security/fsverity/BuildManifest.apk,system)) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3091 | ALL_FSVERITY_BUILD_MANIFEST_APK += $(TARGET_OUT)/etc/security/fsverity/BuildManifest.apk $(TARGET_OUT)/etc/security/fsverity/BuildManifest.apk.idsig |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3092 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3093 | $(eval $(call fsverity-generate-and-install-manifest-apk, \ |
| 3094 | $(TARGET_OUT_SYSTEM_EXT)/etc/security/fsverity/BuildManifestSystemExt.apk,system_ext)) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3095 | ALL_FSVERITY_BUILD_MANIFEST_APK += $(TARGET_OUT_SYSTEM_EXT)/etc/security/fsverity/BuildManifestSystemExt.apk $(TARGET_OUT_SYSTEM_EXT)/etc/security/fsverity/BuildManifestSystemExt.apk.idsig |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3096 | endif |
Victor Hsieh | 89415a8 | 2022-09-09 14:16:33 -0700 | [diff] [blame] | 3097 | |
| 3098 | endif # PRODUCT_FSVERITY_GENERATE_METADATA |
| 3099 | |
| 3100 | |
| 3101 | # ----------------------------------------------------------------- |
| 3102 | # system image |
Inseob Kim | 135c1f1 | 2022-01-06 17:22:07 +0900 | [diff] [blame] | 3103 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3104 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 37a1986 | 2018-10-31 16:31:46 -0700 | [diff] [blame] | 3105 | INTERNAL_SYSTEMIMAGE_FILES := $(sort $(filter $(TARGET_OUT)/%, \ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3106 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 3107 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3108 | # Create symlink /system/vendor to /vendor if necessary. |
| 3109 | ifdef BOARD_USES_VENDORIMAGE |
| 3110 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/vendor,/vendor,vendor.img) |
| 3111 | endif |
| 3112 | |
| 3113 | # Create symlink /system/product to /product if necessary. |
| 3114 | ifdef BOARD_USES_PRODUCTIMAGE |
| 3115 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/product,/product,product.img) |
| 3116 | endif |
| 3117 | |
| 3118 | # Create symlink /system/system_ext to /system_ext if necessary. |
| 3119 | ifdef BOARD_USES_SYSTEM_EXTIMAGE |
| 3120 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/system_ext,/system_ext,system_ext.img) |
| 3121 | endif |
| 3122 | |
Ramji Jiyani | f9ce357 | 2021-12-01 00:03:11 +0000 | [diff] [blame] | 3123 | # ----------------------------------------------------------------- |
| 3124 | # system_dlkm partition image |
| 3125 | |
| 3126 | # Create symlinks for system_dlkm on devices with a system_dlkm partition: |
| 3127 | # /system/lib/modules -> /system_dlkm/lib/modules |
| 3128 | # |
| 3129 | # On devices with a system_dlkm partition, |
| 3130 | # - /system/lib/modules is a symlink to a directory that stores system DLKMs. |
| 3131 | # - The system_dlkm partition is mounted at /system_dlkm at runtime. |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3132 | ifdef BOARD_USES_SYSTEM_DLKMIMAGE |
Ramji Jiyani | f9ce357 | 2021-12-01 00:03:11 +0000 | [diff] [blame] | 3133 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/lib/modules,/system_dlkm/lib/modules,system_dlkm.img) |
| 3134 | endif |
| 3135 | |
Ying Wang | 82cceba | 2012-08-13 15:03:00 -0700 | [diff] [blame] | 3136 | FULL_SYSTEMIMAGE_DEPS := $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3137 | |
| 3138 | # ASAN libraries in the system image - add dependency. |
| 3139 | ASAN_IN_SYSTEM_INSTALLED := $(TARGET_OUT)/asan.tar.bz2 |
Evgenii Stepanov | 8841a7f | 2018-07-27 11:54:32 -0700 | [diff] [blame] | 3140 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3141 | ifeq (true,$(SANITIZE_TARGET_SYSTEM)) |
| 3142 | FULL_SYSTEMIMAGE_DEPS += $(ASAN_IN_SYSTEM_INSTALLED) |
| 3143 | endif |
| 3144 | endif |
| 3145 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 3146 | FULL_SYSTEMIMAGE_DEPS += $(INTERNAL_ROOT_FILES) $(INSTALLED_FILES_FILE_ROOT) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 3147 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3148 | # ----------------------------------------------------------------- |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3149 | ifdef BUILDING_SYSTEM_IMAGE |
| 3150 | |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3151 | # Install system linker configuration |
| 3152 | # Collect all available stub libraries installed in system and install with predefined linker configuration |
Kiyoung Kim | 0c07959 | 2022-12-01 10:15:10 +0900 | [diff] [blame] | 3153 | # Also append LLNDK libraries in the APEX as required libs |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3154 | SYSTEM_LINKER_CONFIG := $(TARGET_OUT)/etc/linker.config.pb |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3155 | SYSTEM_LINKER_CONFIG_SOURCE := $(call intermediates-dir-for,ETC,system_linker_config)/system_linker_config |
| 3156 | $(SYSTEM_LINKER_CONFIG): PRIVATE_SYSTEM_LINKER_CONFIG_SOURCE := $(SYSTEM_LINKER_CONFIG_SOURCE) |
Jooyung Han | 49bf691 | 2023-03-09 16:36:37 +0900 | [diff] [blame] | 3157 | $(SYSTEM_LINKER_CONFIG): $(INTERNAL_SYSTEMIMAGE_FILES) $(SYSTEM_LINKER_CONFIG_SOURCE) | conv_linker_config |
| 3158 | @echo Creating linker config: $@ |
| 3159 | @mkdir -p $(dir $@) |
| 3160 | @rm -f $@ |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3161 | $(HOST_OUT_EXECUTABLES)/conv_linker_config systemprovide --source $(PRIVATE_SYSTEM_LINKER_CONFIG_SOURCE) \ |
Jooyung Han | 49bf691 | 2023-03-09 16:36:37 +0900 | [diff] [blame] | 3162 | --output $@ --value "$(STUB_LIBRARIES)" --system "$(TARGET_OUT)" |
Kiyoung Kim | 0c07959 | 2022-12-01 10:15:10 +0900 | [diff] [blame] | 3163 | $(HOST_OUT_EXECUTABLES)/conv_linker_config append --source $@ --output $@ --key requireLibs \ |
Jooyung Han | 49bf691 | 2023-03-09 16:36:37 +0900 | [diff] [blame] | 3164 | --value "$(foreach lib,$(LLNDK_MOVED_TO_APEX_LIBRARIES), $(lib).so)" |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3165 | |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3166 | $(call declare-1p-target,$(SYSTEM_LINKER_CONFIG),) |
Colin Cross | d4a054f | 2022-03-15 15:07:07 -0700 | [diff] [blame] | 3167 | $(call declare-license-deps,$(SYSTEM_LINKER_CONFIG),$(INTERNAL_SYSTEMIMAGE_FILES) $(SYSTEM_LINKER_CONFIG_SOURCE)) |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3168 | |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3169 | FULL_SYSTEMIMAGE_DEPS += $(SYSTEM_LINKER_CONFIG) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3170 | ALL_DEFAULT_INSTALLED_MODULES += $(SYSTEM_LINKER_CONFIG) |
Kiyoung Kim | 36481e0 | 2020-11-16 10:50:05 +0900 | [diff] [blame] | 3171 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3172 | # installed file list |
| 3173 | # Depending on anything that $(BUILT_SYSTEMIMAGE) depends on. |
| 3174 | # We put installed-files.txt ahead of image itself in the dependency graph |
| 3175 | # so that we can get the size stat even if the build fails due to too large |
| 3176 | # system image. |
| 3177 | INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3178 | INSTALLED_FILES_JSON := $(INSTALLED_FILES_FILE:.txt=.json) |
| 3179 | $(INSTALLED_FILES_FILE): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3180 | $(INSTALLED_FILES_FILE): $(FULL_SYSTEMIMAGE_DEPS) $(FILESLIST) $(FILESLIST_UTIL) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3181 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3182 | mkdir -p $(dir $@) |
| 3183 | rm -f $@ |
| 3184 | $(FILESLIST) $(TARGET_OUT) > $(@:.txt=.json) |
| 3185 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3186 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3187 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3188 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3189 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3190 | .PHONY: installed-file-list |
| 3191 | installed-file-list: $(INSTALLED_FILES_FILE) |
Ying Wang | 534fcd7 | 2013-03-01 16:45:35 -0800 | [diff] [blame] | 3192 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3193 | systemimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3194 | $(call intermediates-dir-for,PACKAGING,systemimage) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 3195 | BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img |
| 3196 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3197 | # $(1): output file |
| 3198 | define build-systemimage-target |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3199 | @echo "Target system fs image: $(1)" |
| 3200 | @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] | 3201 | $(call generate-image-prop-dictionary, $(systemimage_intermediates)/system_image_info.txt,system, \ |
Geremy Condra | 5b5f495 | 2014-05-05 22:19:37 -0700 | [diff] [blame] | 3202 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3203 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3204 | $(BUILD_IMAGE) \ |
| 3205 | $(TARGET_OUT) $(systemimage_intermediates)/system_image_info.txt $(1) $(TARGET_OUT) \ |
| 3206 | || ( mkdir -p $${DIST_DIR}; \ |
| 3207 | cp $(INSTALLED_FILES_FILE) $${DIST_DIR}/installed-files-rescued.txt; \ |
| 3208 | exit 1 ) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3209 | endef |
| 3210 | |
Dan Willemsen | 6b72c73 | 2019-06-12 21:33:38 +0000 | [diff] [blame] | 3211 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3212 | $(BUILT_SYSTEMIMAGE): $(BOARD_AVB_SYSTEM_KEY_PATH) |
| 3213 | endif |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3214 | $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3215 | $(call build-systemimage-target,$@) |
| 3216 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3217 | $(call declare-1p-container,$(BUILT_SYSTEMIMAGE),system/extras) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3218 | $(call declare-container-license-deps,$(BUILT_SYSTEMIMAGE),$(FULL_SYSTEMIMAGE_DEPS),$(PRODUCT_OUT)/:/) |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3219 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3220 | INSTALLED_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/system.img |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 3221 | SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3222 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3223 | # INSTALLED_SYSTEMIMAGE_TARGET used to be named INSTALLED_SYSTEMIMAGE. Create an alias for backward |
| 3224 | # compatibility, in case device-specific Makefiles still refer to the old name. |
| 3225 | INSTALLED_SYSTEMIMAGE := $(INSTALLED_SYSTEMIMAGE_TARGET) |
| 3226 | |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3227 | # The system partition needs room for the recovery image as well. We |
| 3228 | # now store the recovery image as a binary patch using the boot image |
| 3229 | # as the source (since they are very similar). Generate the patch so |
| 3230 | # we can see how big it's going to be, and include that in the system |
| 3231 | # image size check calculation. |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3232 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
Sriram Raman | 1e96ac8 | 2009-07-24 13:52:32 -0700 | [diff] [blame] | 3233 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 3234 | ifneq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 3235 | ifneq (,$(filter true,$(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO))) |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 3236 | diff_tool := $(HOST_OUT_EXECUTABLES)/bsdiff |
| 3237 | else |
| 3238 | diff_tool := $(HOST_OUT_EXECUTABLES)/imgdiff |
| 3239 | endif |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3240 | intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch) |
| 3241 | RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 3242 | $(RECOVERY_FROM_BOOT_PATCH): PRIVATE_DIFF_TOOL := $(diff_tool) |
| 3243 | $(RECOVERY_FROM_BOOT_PATCH): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3244 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 3245 | $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3246 | $(diff_tool) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3247 | @echo "Construct recovery from boot" |
| 3248 | mkdir -p $(dir $@) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 3249 | $(PRIVATE_DIFF_TOOL) $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) $(INSTALLED_RECOVERYIMAGE_TARGET) $@ |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 3250 | else # $(BOARD_USES_FULL_RECOVERY_IMAGE) == true |
| 3251 | RECOVERY_FROM_BOOT_PATCH := $(INSTALLED_RECOVERYIMAGE_TARGET) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3252 | endif # BOARD_USES_FULL_RECOVERY_IMAGE |
| 3253 | endif # INSTALLED_RECOVERYIMAGE_TARGET |
| 3254 | endif # INSTALLED_BOOTIMAGE_TARGET |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 3255 | |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3256 | $(INSTALLED_SYSTEMIMAGE_TARGET): $(BUILT_SYSTEMIMAGE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3257 | @echo "Install system fs image: $@" |
| 3258 | $(copy-file-to-target) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3259 | $(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] | 3260 | |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3261 | $(call declare-1p-container,$(INSTALLED_SYSTEMIMAGE_TARGET),) |
| 3262 | $(call declare-container-license-deps,$(INSTALLED_SYSTEMIMAGE_TARGET),$(BUILT_SYSTEMIMAGE),$(BUILT_SYSTEMIMAGE):/) |
| 3263 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3264 | systemimage: $(INSTALLED_SYSTEMIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3265 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3266 | SYSTEM_NOTICE_DEPS += $(INSTALLED_SYSTEMIMAGE_TARGET) |
Bob Badour | 879cfa8 | 2021-04-15 10:41:38 -0700 | [diff] [blame] | 3267 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3268 | .PHONY: systemimage-nodeps snod |
| 3269 | systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \ |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 3270 | | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3271 | @echo "make $@: ignoring dependencies" |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3272 | $(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE_TARGET)) |
Yifan Hong | 8c3dce0 | 2019-04-09 17:03:57 +0000 | [diff] [blame] | 3273 | $(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] | 3274 | ifeq (true,$(WITH_DEXPREOPT)) |
Dan Willemsen | 395358e | 2020-03-04 23:50:53 +0000 | [diff] [blame] | 3275 | $(warning Warning: with dexpreopt enabled, you may need a full rebuild.) |
Ying Wang | acf01ec | 2012-02-24 11:05:48 -0800 | [diff] [blame] | 3276 | endif |
| 3277 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3278 | endif # BUILDING_SYSTEM_IMAGE |
| 3279 | |
Anton Hansson | 30e061b | 2018-11-12 13:36:46 +0000 | [diff] [blame] | 3280 | .PHONY: sync syncsys |
| 3281 | sync syncsys: $(INTERNAL_SYSTEMIMAGE_FILES) |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 3282 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 3283 | # ----------------------------------------------------------------- |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3284 | # Old PDK fusion targets |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 3285 | .PHONY: platform |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3286 | platform: |
| 3287 | echo "Warning: 'platform' is obsolete" |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 3288 | |
| 3289 | .PHONY: platform-java |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3290 | platform-java: |
| 3291 | echo "Warning: 'platform-java' is obsolete" |
Colin Cross | 53c8f97 | 2018-09-28 16:19:42 -0700 | [diff] [blame] | 3292 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 3293 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3294 | # data partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3295 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_DATA)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3296 | INTERNAL_USERDATAIMAGE_FILES := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3297 | $(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3298 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3299 | ifdef BUILDING_USERDATA_IMAGE |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3300 | userdataimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3301 | $(call intermediates-dir-for,PACKAGING,userdata) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 3302 | BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img |
| 3303 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3304 | define build-userdataimage-target |
| 3305 | $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)") |
| 3306 | @mkdir -p $(TARGET_OUT_DATA) |
| 3307 | @mkdir -p $(userdataimage_intermediates) && rm -rf $(userdataimage_intermediates)/userdata_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3308 | $(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] | 3309 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3310 | $(BUILD_IMAGE) \ |
| 3311 | $(TARGET_OUT_DATA) $(userdataimage_intermediates)/userdata_image_info.txt \ |
| 3312 | $(INSTALLED_USERDATAIMAGE_TARGET) $(TARGET_OUT) |
| 3313 | $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 3314 | endef |
| 3315 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 3316 | # We just build this directly to the install location. |
| 3317 | INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3318 | INSTALLED_USERDATAIMAGE_TARGET_DEPS := \ |
| 3319 | $(INTERNAL_USERIMAGES_DEPS) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3320 | $(INTERNAL_USERDATAIMAGE_FILES) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3321 | $(INSTALLED_USERDATAIMAGE_TARGET): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3322 | $(build-userdataimage-target) |
| 3323 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3324 | $(call declare-1p-container,$(INSTALLED_USERDATAIMAGE_TARGET),) |
| 3325 | $(call declare-container-license-deps,$(INSTALLED_USERDATAIMAGE_TARGET),$(INSTALLED_USERDATAIMAGE_TARGET_DEPS),$(PRODUCT_OUT)/:/) |
| 3326 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3327 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_USERDATAIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3328 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3329 | .PHONY: userdataimage-nodeps |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 3330 | userdataimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3331 | $(build-userdataimage-target) |
| 3332 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3333 | endif # BUILDING_USERDATA_IMAGE |
Ying Wang | e215ed5 | 2012-10-15 14:36:22 -0700 | [diff] [blame] | 3334 | |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3335 | # ASAN libraries in the system image - build rule. |
| 3336 | ASAN_OUT_DIRS_FOR_SYSTEM_INSTALL := $(sort $(patsubst $(PRODUCT_OUT)/%,%,\ |
| 3337 | $(TARGET_OUT_SHARED_LIBRARIES) \ |
| 3338 | $(2ND_TARGET_OUT_SHARED_LIBRARIES) \ |
| 3339 | $(TARGET_OUT_VENDOR_SHARED_LIBRARIES) \ |
| 3340 | $(2ND_TARGET_OUT_VENDOR_SHARED_LIBRARIES))) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 3341 | # Extra options: Enforce the system user for the files to avoid having to change ownership. |
| 3342 | ASAN_SYSTEM_INSTALL_OPTIONS := --owner=1000 --group=1000 |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 3343 | # Note: experimentally, it seems not worth it to try to get "best" compression. We don't save |
| 3344 | # enough space. |
| 3345 | $(ASAN_IN_SYSTEM_INSTALLED): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 3346 | 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] | 3347 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3348 | # ----------------------------------------------------------------- |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3349 | # partition table image |
| 3350 | ifdef BOARD_BPT_INPUT_FILES |
| 3351 | |
| 3352 | BUILT_BPTIMAGE_TARGET := $(PRODUCT_OUT)/partition-table.img |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 3353 | BUILT_BPTJSON_TARGET := $(PRODUCT_OUT)/partition-table.bpt |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3354 | |
| 3355 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS := \ |
| 3356 | --output_gpt $(BUILT_BPTIMAGE_TARGET) \ |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 3357 | --output_json $(BUILT_BPTJSON_TARGET) \ |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3358 | $(foreach file, $(BOARD_BPT_INPUT_FILES), --input $(file)) |
| 3359 | |
| 3360 | ifdef BOARD_BPT_DISK_SIZE |
| 3361 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS += --disk_size $(BOARD_BPT_DISK_SIZE) |
| 3362 | endif |
| 3363 | |
| 3364 | define build-bptimage-target |
| 3365 | $(call pretty,"Target partition table image: $(INSTALLED_BPTIMAGE_TARGET)") |
| 3366 | $(hide) $(BPTTOOL) make_table $(INTERNAL_BVBTOOL_MAKE_TABLE_ARGS) $(BOARD_BPT_MAKE_TABLE_ARGS) |
| 3367 | endef |
| 3368 | |
| 3369 | INSTALLED_BPTIMAGE_TARGET := $(BUILT_BPTIMAGE_TARGET) |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 3370 | $(BUILT_BPTJSON_TARGET): $(INSTALLED_BPTIMAGE_TARGET) |
| 3371 | $(hide) touch -c $(BUILT_BPTJSON_TARGET) |
| 3372 | |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3373 | $(INSTALLED_BPTIMAGE_TARGET): $(BPTTOOL) $(BOARD_BPT_INPUT_FILES) |
| 3374 | $(build-bptimage-target) |
| 3375 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3376 | $(call declare-1p-container,$(INSTALLED_BPTIMAGE_TARGET),) |
| 3377 | $(call declare-container-license-deps,$(INSTALLED_BPTIMAGE_TARGET),$(BOARD_BPT_INPUT_FILES),$(PRODUCT_OUT)/:/) |
| 3378 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3379 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_BPTIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3380 | |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 3381 | .PHONY: bptimage-nodeps |
| 3382 | bptimage-nodeps: |
| 3383 | $(build-bptimage-target) |
| 3384 | |
| 3385 | endif # BOARD_BPT_INPUT_FILES |
| 3386 | |
| 3387 | # ----------------------------------------------------------------- |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3388 | # cache partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3389 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_CACHE)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3390 | ifdef BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3391 | INTERNAL_CACHEIMAGE_FILES := \ |
| 3392 | $(filter $(TARGET_OUT_CACHE)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
| 3393 | |
| 3394 | cacheimage_intermediates := \ |
| 3395 | $(call intermediates-dir-for,PACKAGING,cache) |
| 3396 | BUILT_CACHEIMAGE_TARGET := $(PRODUCT_OUT)/cache.img |
| 3397 | |
| 3398 | define build-cacheimage-target |
| 3399 | $(call pretty,"Target cache fs image: $(INSTALLED_CACHEIMAGE_TARGET)") |
| 3400 | @mkdir -p $(TARGET_OUT_CACHE) |
| 3401 | @mkdir -p $(cacheimage_intermediates) && rm -rf $(cacheimage_intermediates)/cache_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3402 | $(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] | 3403 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3404 | $(BUILD_IMAGE) \ |
| 3405 | $(TARGET_OUT_CACHE) $(cacheimage_intermediates)/cache_image_info.txt \ |
| 3406 | $(INSTALLED_CACHEIMAGE_TARGET) $(TARGET_OUT) |
| 3407 | $(call assert-max-image-size,$(INSTALLED_CACHEIMAGE_TARGET),$(BOARD_CACHEIMAGE_PARTITION_SIZE)) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3408 | endef |
| 3409 | |
| 3410 | # We just build this directly to the install location. |
| 3411 | INSTALLED_CACHEIMAGE_TARGET := $(BUILT_CACHEIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3412 | $(INSTALLED_CACHEIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3413 | $(build-cacheimage-target) |
| 3414 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3415 | $(call declare-1p-container,$(INSTALLED_CACHEIMAGE_TARGET),) |
| 3416 | $(call declare-container-license-deps,$(INSTALLED_CACHEIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 3417 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 3418 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_CACHEIMAGE_TARGET) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3419 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3420 | .PHONY: cacheimage-nodeps |
| 3421 | cacheimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 3422 | $(build-cacheimage-target) |
| 3423 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3424 | else # BUILDING_CACHE_IMAGE |
Patrick Tjin | f3b0dc2 | 2016-05-13 15:26:09 -0700 | [diff] [blame] | 3425 | # we need to ignore the broken cache link when doing the rsync |
| 3426 | IGNORE_CACHE_LINK := --exclude=cache |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3427 | endif # BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3428 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 3429 | # ----------------------------------------------------------------- |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3430 | # system_other partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3431 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_SYSTEM_OTHER)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3432 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3433 | ifeq ($(BOARD_USES_SYSTEM_OTHER_ODEX),true) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3434 | # Marker file to identify that odex files are installed |
| 3435 | INSTALLED_SYSTEM_OTHER_ODEX_MARKER := $(TARGET_OUT_SYSTEM_OTHER)/system-other-odex-marker |
| 3436 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER) |
| 3437 | $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER): |
| 3438 | $(hide) touch $@ |
Bob Badour | 2f66fd1 | 2022-03-09 17:30:24 -0800 | [diff] [blame] | 3439 | |
| 3440 | $(call declare-0p-target,$(INSTALLED_SYSTEM_OTHER_ODEX_MARKER)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3441 | endif |
| 3442 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3443 | INTERNAL_SYSTEMOTHERIMAGE_FILES := \ |
| 3444 | $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3445 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3446 | |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 3447 | # system_other dex files are installed as a side-effect of installing system image files |
| 3448 | INTERNAL_SYSTEMOTHERIMAGE_FILES += $(INTERNAL_SYSTEMIMAGE_FILES) |
| 3449 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3450 | INSTALLED_FILES_FILE_SYSTEMOTHER := $(PRODUCT_OUT)/installed-files-system-other.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3451 | INSTALLED_FILES_JSON_SYSTEMOTHER := $(INSTALLED_FILES_FILE_SYSTEMOTHER:.txt=.json) |
| 3452 | $(INSTALLED_FILES_FILE_SYSTEMOTHER): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEMOTHER) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3453 | $(INSTALLED_FILES_FILE_SYSTEMOTHER) : $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3454 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3455 | mkdir -p $(dir $@) |
| 3456 | rm -f $@ |
| 3457 | $(FILESLIST) $(TARGET_OUT_SYSTEM_OTHER) > $(@:.txt=.json) |
| 3458 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3459 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3460 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEMOTHER))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3461 | $(eval $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEMOTHER))) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3462 | |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 3463 | # Determines partition size for system_other.img. |
| 3464 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 3465 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)),) |
| 3466 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE := $(BOARD_SUPER_PARTITION_SYSTEM_DEVICE_SIZE) |
| 3467 | endif |
| 3468 | endif |
| 3469 | |
| 3470 | ifndef INTERNAL_SYSTEM_OTHER_PARTITION_SIZE |
| 3471 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE:= $(BOARD_SYSTEMIMAGE_PARTITION_SIZE) |
| 3472 | endif |
| 3473 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3474 | systemotherimage_intermediates := \ |
| 3475 | $(call intermediates-dir-for,PACKAGING,system_other) |
| 3476 | BUILT_SYSTEMOTHERIMAGE_TARGET := $(PRODUCT_OUT)/system_other.img |
| 3477 | |
| 3478 | # Note that we assert the size is SYSTEMIMAGE_PARTITION_SIZE since this is the 'b' system image. |
| 3479 | define build-systemotherimage-target |
| 3480 | $(call pretty,"Target system_other fs image: $(INSTALLED_SYSTEMOTHERIMAGE_TARGET)") |
| 3481 | @mkdir -p $(TARGET_OUT_SYSTEM_OTHER) |
| 3482 | @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] | 3483 | $(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] | 3484 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3485 | $(BUILD_IMAGE) \ |
| 3486 | $(TARGET_OUT_SYSTEM_OTHER) $(systemotherimage_intermediates)/system_other_image_info.txt \ |
| 3487 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) $(TARGET_OUT) |
| 3488 | $(call assert-max-image-size,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3489 | endef |
| 3490 | |
| 3491 | # We just build this directly to the install location. |
| 3492 | INSTALLED_SYSTEMOTHERIMAGE_TARGET := $(BUILT_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3493 | ifneq (true,$(SANITIZE_LITE)) |
| 3494 | # 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] | 3495 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEMOTHER) |
| 3496 | $(build-systemotherimage-target) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3497 | |
| 3498 | $(call declare-1p-container,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),) |
| 3499 | $(call declare-container-license-deps,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES),$(PRODUCT_OUT)/:/) |
| 3500 | |
| 3501 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 3502 | endif |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3503 | |
| 3504 | .PHONY: systemotherimage-nodeps |
| 3505 | systemotherimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 3506 | $(build-systemotherimage-target) |
| 3507 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3508 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 3509 | |
| 3510 | |
| 3511 | # ----------------------------------------------------------------- |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3512 | # vendor partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3513 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_VENDOR)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3514 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3515 | INTERNAL_VENDORIMAGE_FILES := \ |
Ying Wang | cff3862 | 2014-07-16 17:46:35 -0700 | [diff] [blame] | 3516 | $(filter $(TARGET_OUT_VENDOR)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3517 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3518 | |
Ying Wang | 8da19e3 | 2015-09-15 14:22:12 -0700 | [diff] [blame] | 3519 | |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 3520 | # Create symlink /vendor/odm to /odm if necessary. |
| 3521 | ifdef BOARD_USES_ODMIMAGE |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3522 | 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] | 3523 | endif |
| 3524 | |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 3525 | # Create symlinks for vendor_dlkm on devices with a vendor_dlkm partition: |
| 3526 | # /vendor/lib/modules -> /vendor_dlkm/lib/modules |
| 3527 | # |
| 3528 | # On devices with a vendor_dlkm partition, |
| 3529 | # - /vendor/lib/modules is a symlink to a directory that stores vendor DLKMs. |
| 3530 | # - /vendor_dlkm/{etc,...} store other vendor_dlkm files directly. The vendor_dlkm partition is |
| 3531 | # mounted at /vendor_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3532 | # are hidden. |
| 3533 | # On devices without a vendor_dlkm partition, |
| 3534 | # - /vendor/lib/modules stores vendor DLKMs directly. |
| 3535 | # - /vendor_dlkm/{etc,...} are symlinks to directories that store other vendor_dlkm files. |
| 3536 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3537 | # The vendor DLKMs and other vendor_dlkm files must not be accessed using other paths because they |
| 3538 | # are not guaranteed to exist on all devices. |
| 3539 | ifdef BOARD_USES_VENDOR_DLKMIMAGE |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3540 | 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] | 3541 | endif |
| 3542 | |
Jooyung Han | 8c11903 | 2023-03-04 08:32:34 +0900 | [diff] [blame] | 3543 | # Install vendor/etc/linker.config.pb with PRODUCT_VENDOR_LINKER_CONFIG_FRAGMENTS and STUB_LIBRARIES |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3544 | vendor_linker_config_file := $(TARGET_OUT_VENDOR)/etc/linker.config.pb |
| 3545 | $(vendor_linker_config_file): private_linker_config_fragments := $(PRODUCT_VENDOR_LINKER_CONFIG_FRAGMENTS) |
Jooyung Han | 63975d7 | 2023-03-07 18:25:02 +0900 | [diff] [blame] | 3546 | $(vendor_linker_config_file): $(INTERNAL_VENDORIMAGE_FILES) $(PRODUCT_VENDOR_LINKER_CONFIG_FRAGMENTS) | $(HOST_OUT_EXECUTABLES)/conv_linker_config |
Jooyung Han | 49bf691 | 2023-03-09 16:36:37 +0900 | [diff] [blame] | 3547 | @echo Creating linker config: $@ |
| 3548 | @mkdir -p $(dir $@) |
| 3549 | @rm -f $@ |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3550 | $(HOST_OUT_EXECUTABLES)/conv_linker_config proto \ |
| 3551 | --source $(call normalize-path-list,$(private_linker_config_fragments)) \ |
| 3552 | --output $@ |
Jooyung Han | 8c11903 | 2023-03-04 08:32:34 +0900 | [diff] [blame] | 3553 | $(HOST_OUT_EXECUTABLES)/conv_linker_config systemprovide --source $@ \ |
| 3554 | --output $@ --value "$(STUB_LIBRARIES)" --system "$(TARGET_OUT_VENDOR)" |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3555 | $(call define declare-0p-target,$(vendor_linker_config_file),) |
| 3556 | INTERNAL_VENDORIMAGE_FILES += $(vendor_linker_config_file) |
Wei Li | 4993336 | 2023-01-04 17:13:47 -0800 | [diff] [blame] | 3557 | ALL_DEFAULT_INSTALLED_MODULES += $(vendor_linker_config_file) |
Jooyung Han | da2d4a2 | 2023-01-09 16:26:23 +0900 | [diff] [blame] | 3558 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3559 | INSTALLED_FILES_FILE_VENDOR := $(PRODUCT_OUT)/installed-files-vendor.txt |
| 3560 | INSTALLED_FILES_JSON_VENDOR := $(INSTALLED_FILES_FILE_VENDOR:.txt=.json) |
| 3561 | $(INSTALLED_FILES_FILE_VENDOR): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR) |
| 3562 | $(INSTALLED_FILES_FILE_VENDOR) : $(INTERNAL_VENDORIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3563 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3564 | mkdir -p $(dir $@) |
| 3565 | rm -f $@ |
| 3566 | $(FILESLIST) $(TARGET_OUT_VENDOR) > $(@:.txt=.json) |
| 3567 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | 3d5e2c2 | 2020-07-15 17:01:14 -0700 | [diff] [blame] | 3568 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3569 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR)) |
| 3570 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3571 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3572 | vendorimage_intermediates := \ |
| 3573 | $(call intermediates-dir-for,PACKAGING,vendor) |
| 3574 | BUILT_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3575 | define build-vendorimage-target |
| 3576 | $(call pretty,"Target vendor fs image: $(INSTALLED_VENDORIMAGE_TARGET)") |
| 3577 | @mkdir -p $(TARGET_OUT_VENDOR) |
| 3578 | @mkdir -p $(vendorimage_intermediates) && rm -rf $(vendorimage_intermediates)/vendor_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3579 | $(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] | 3580 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3581 | $(BUILD_IMAGE) \ |
| 3582 | $(TARGET_OUT_VENDOR) $(vendorimage_intermediates)/vendor_image_info.txt \ |
| 3583 | $(INSTALLED_VENDORIMAGE_TARGET) $(TARGET_OUT) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3584 | $(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] | 3585 | endef |
| 3586 | |
| 3587 | # We just build this directly to the install location. |
| 3588 | INSTALLED_VENDORIMAGE_TARGET := $(BUILT_VENDORIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3589 | $(INSTALLED_VENDORIMAGE_TARGET): \ |
| 3590 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3591 | $(INTERNAL_VENDORIMAGE_FILES) \ |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 3592 | $(INSTALLED_FILES_FILE_VENDOR) \ |
| 3593 | $(RECOVERY_FROM_BOOT_PATCH) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3594 | $(build-vendorimage-target) |
| 3595 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3596 | VENDOR_NOTICE_DEPS += $(INSTALLED_VENDORIMAGE_TARGET) |
| 3597 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3598 | $(call declare-container-license-metadata,$(INSTALLED_VENDORIMAGE_TARGET),legacy_proprietary,proprietary,,"Vendor Image",vendor) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3599 | $(call declare-container-license-deps,$(INSTALLED_VENDORIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_VENDORIMAGE_FILES) $(RECOVERY_FROM_BOOT_PATH),$(PRODUCT_OUT)/:/) |
| 3600 | |
Steven Moreland | a2e734d | 2017-03-07 12:10:09 -0800 | [diff] [blame] | 3601 | .PHONY: vendorimage-nodeps vnod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3602 | vendorimage-nodeps vnod: | $(INTERNAL_USERIMAGES_DEPS) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3603 | $(build-vendorimage-target) |
| 3604 | |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 3605 | sync: $(INTERNAL_VENDORIMAGE_FILES) |
| 3606 | |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 3607 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 3608 | INSTALLED_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
| 3609 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDORIMAGE),$(INSTALLED_VENDORIMAGE_TARGET))) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3610 | $(if $(strip $(ALL_TARGETS.$(INSTALLED_VENDORIMAGE_TARGET).META_LIC)),,\ |
| 3611 | $(if $(strip $(ALL_TARGETS.$(BOARD_PREBUILT_VENDORIMAGE).META_LIC)),\ |
Bob Badour | ba33724 | 2022-05-27 19:40:41 -0700 | [diff] [blame] | 3612 | $(call declare-copy-target-license-metadata,$(INSTALLED_VENDORIMAGE_TARGET),$(BOARD_PREBUILT_VENDORIMAGE)),\ |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3613 | $(call declare-license-metadata,$(INSTALLED_VENDORIMAGE_TARGET),legacy_proprietary,proprietary,,"Vendor Image",vendor))) |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 3614 | endif |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 3615 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 3616 | # ----------------------------------------------------------------- |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3617 | # product partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3618 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_PRODUCT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3619 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3620 | INTERNAL_PRODUCTIMAGE_FILES := \ |
| 3621 | $(filter $(TARGET_OUT_PRODUCT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3622 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3623 | |
| 3624 | INSTALLED_FILES_FILE_PRODUCT := $(PRODUCT_OUT)/installed-files-product.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 3625 | INSTALLED_FILES_JSON_PRODUCT := $(INSTALLED_FILES_FILE_PRODUCT:.txt=.json) |
| 3626 | $(INSTALLED_FILES_FILE_PRODUCT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_PRODUCT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3627 | $(INSTALLED_FILES_FILE_PRODUCT) : $(INTERNAL_PRODUCTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3628 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3629 | mkdir -p $(dir $@) |
| 3630 | rm -f $@ |
| 3631 | $(FILESLIST) $(TARGET_OUT_PRODUCT) > $(@:.txt=.json) |
| 3632 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3633 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3634 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_PRODUCT)) |
| 3635 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_PRODUCT)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3636 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3637 | productimage_intermediates := \ |
| 3638 | $(call intermediates-dir-for,PACKAGING,product) |
| 3639 | BUILT_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3640 | define build-productimage-target |
| 3641 | $(call pretty,"Target product fs image: $(INSTALLED_PRODUCTIMAGE_TARGET)") |
| 3642 | @mkdir -p $(TARGET_OUT_PRODUCT) |
| 3643 | @mkdir -p $(productimage_intermediates) && rm -rf $(productimage_intermediates)/product_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 3644 | $(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] | 3645 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3646 | $(BUILD_IMAGE) \ |
| 3647 | $(TARGET_OUT_PRODUCT) $(productimage_intermediates)/product_image_info.txt \ |
| 3648 | $(INSTALLED_PRODUCTIMAGE_TARGET) $(TARGET_OUT) |
| 3649 | $(call assert-max-image-size,$(INSTALLED_PRODUCTIMAGE_TARGET),$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3650 | endef |
| 3651 | |
| 3652 | # We just build this directly to the install location. |
| 3653 | INSTALLED_PRODUCTIMAGE_TARGET := $(BUILT_PRODUCTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3654 | $(INSTALLED_PRODUCTIMAGE_TARGET): \ |
| 3655 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3656 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 3657 | $(INSTALLED_FILES_FILE_PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3658 | $(build-productimage-target) |
| 3659 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3660 | PRODUCT_NOTICE_DEPS += $(INSTALLED_PRODUCTIMAGE_TARGET) |
| 3661 | |
| 3662 | $(call declare-1p-container,$(INSTALLED_PRODUCTIMAGE_TARGET),) |
| 3663 | $(call declare-container-license-deps,$(INSTALLED_PRODUCTIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_PRODUCTIMAGE_FILES) $(INSTALLED_FILES_FILE_PRODUCT),$(PRODUCT_OUT)/:/) |
| 3664 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3665 | .PHONY: productimage-nodeps pnod |
| 3666 | productimage-nodeps pnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3667 | $(build-productimage-target) |
| 3668 | |
| 3669 | sync: $(INTERNAL_PRODUCTIMAGE_FILES) |
| 3670 | |
| 3671 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 3672 | INSTALLED_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 3673 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_PRODUCTIMAGE),$(INSTALLED_PRODUCTIMAGE_TARGET))) |
| 3674 | endif |
| 3675 | |
| 3676 | # ----------------------------------------------------------------- |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3677 | # system_ext partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3678 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_SYSTEM_EXT)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3679 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 3680 | INTERNAL_SYSTEM_EXTIMAGE_FILES := \ |
| 3681 | $(filter $(TARGET_OUT_SYSTEM_EXT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3682 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3683 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3684 | INSTALLED_FILES_FILE_SYSTEM_EXT := $(PRODUCT_OUT)/installed-files-system_ext.txt |
| 3685 | INSTALLED_FILES_JSON_SYSTEM_EXT := $(INSTALLED_FILES_FILE_SYSTEM_EXT:.txt=.json) |
| 3686 | $(INSTALLED_FILES_FILE_SYSTEM_EXT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_EXT) |
| 3687 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) : $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3688 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3689 | mkdir -p $(dir $@) |
| 3690 | rm -f $@ |
| 3691 | $(FILESLIST) $(TARGET_OUT_SYSTEM_EXT) > $(@:.txt=.json) |
| 3692 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3693 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3694 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEM_EXT)) |
| 3695 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEM_EXT)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3696 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3697 | system_extimage_intermediates := \ |
| 3698 | $(call intermediates-dir-for,PACKAGING,system_ext) |
| 3699 | BUILT_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3700 | define build-system_extimage-target |
| 3701 | $(call pretty,"Target system_ext fs image: $(INSTALLED_SYSTEM_EXTIMAGE_TARGET)") |
| 3702 | @mkdir -p $(TARGET_OUT_SYSTEM_EXT) |
| 3703 | @mkdir -p $(system_extimage_intermediates) && rm -rf $(system_extimage_intermediates)/system_ext_image_info.txt |
| 3704 | $(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] | 3705 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3706 | $(BUILD_IMAGE) \ |
| 3707 | $(TARGET_OUT_SYSTEM_EXT) \ |
| 3708 | $(system_extimage_intermediates)/system_ext_image_info.txt \ |
| 3709 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 3710 | $(TARGET_OUT) |
| 3711 | $(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] | 3712 | endef |
| 3713 | |
| 3714 | # We just build this directly to the install location. |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3715 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(BUILT_SYSTEM_EXTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3716 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET): \ |
| 3717 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3718 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 3719 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3720 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3721 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3722 | SYSTEM_EXT_NOTICE_DEPS += $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
| 3723 | |
| 3724 | $(call declare-1p-container,$(INSTALLED_SYSTEM_EXTIMAGE_TARGET),) |
| 3725 | $(call declare-container-license-deps,$(INSTALLED_SYSTEM_EXTIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEM_EXT),$(PRODUCT_OUT)/:/) |
| 3726 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3727 | .PHONY: systemextimage-nodeps senod |
| 3728 | systemextimage-nodeps senod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3729 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3730 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3731 | sync: $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 3732 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3733 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 3734 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 3735 | $(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] | 3736 | endif |
| 3737 | |
| 3738 | # ----------------------------------------------------------------- |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3739 | # odm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3740 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_ODM)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 3741 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3742 | INTERNAL_ODMIMAGE_FILES := \ |
| 3743 | $(filter $(TARGET_OUT_ODM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3744 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3745 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 3746 | # Create symlinks for odm_dlkm on devices with a odm_dlkm partition: |
| 3747 | # /odm/lib/modules -> /odm_dlkm/lib/modules |
| 3748 | # |
| 3749 | # On devices with a odm_dlkm partition, |
| 3750 | # - /odm/lib/modules is a symlink to a directory that stores odm DLKMs. |
| 3751 | # - /odm_dlkm/{etc,...} store other odm_dlkm files directly. The odm_dlkm partition is |
| 3752 | # mounted at /odm_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 3753 | # are hidden. |
| 3754 | # On devices without a odm_dlkm partition, |
| 3755 | # - /odm/lib/modules stores odm DLKMs directly. |
| 3756 | # - /odm_dlkm/{etc,...} are symlinks to directories that store other odm_dlkm files. |
| 3757 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 3758 | # The odm DLKMs and other odm_dlkm files must not be accessed using other paths because they |
| 3759 | # are not guaranteed to exist on all devices. |
| 3760 | ifdef BOARD_USES_ODM_DLKMIMAGE |
| 3761 | INTERNAL_ODMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT_ODM)/lib/modules,/odm_dlkm/lib/modules,odm_dlkm.img) |
| 3762 | endif |
| 3763 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3764 | INSTALLED_FILES_FILE_ODM := $(PRODUCT_OUT)/installed-files-odm.txt |
| 3765 | INSTALLED_FILES_JSON_ODM := $(INSTALLED_FILES_FILE_ODM:.txt=.json) |
| 3766 | $(INSTALLED_FILES_FILE_ODM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 3767 | $(INSTALLED_FILES_FILE_ODM) : $(INTERNAL_ODMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3768 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3769 | mkdir -p $(dir $@) |
| 3770 | rm -f $@ |
| 3771 | $(FILESLIST) $(TARGET_OUT_ODM) > $(@:.txt=.json) |
| 3772 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3773 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3774 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ODM)) |
| 3775 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ODM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3776 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3777 | odmimage_intermediates := \ |
| 3778 | $(call intermediates-dir-for,PACKAGING,odm) |
| 3779 | BUILT_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3780 | define build-odmimage-target |
| 3781 | $(call pretty,"Target odm fs image: $(INSTALLED_ODMIMAGE_TARGET)") |
| 3782 | @mkdir -p $(TARGET_OUT_ODM) |
| 3783 | @mkdir -p $(odmimage_intermediates) && rm -rf $(odmimage_intermediates)/odm_image_info.txt |
David Anderson | 17063cf | 2021-08-27 16:43:09 -0700 | [diff] [blame] | 3784 | $(call generate-image-prop-dictionary, $(odmimage_intermediates)/odm_image_info.txt, odm, \ |
| 3785 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 3786 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3787 | $(BUILD_IMAGE) \ |
| 3788 | $(TARGET_OUT_ODM) $(odmimage_intermediates)/odm_image_info.txt \ |
| 3789 | $(INSTALLED_ODMIMAGE_TARGET) $(TARGET_OUT) |
| 3790 | $(call assert-max-image-size,$(INSTALLED_ODMIMAGE_TARGET),$(BOARD_ODMIMAGE_PARTITION_SIZE)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3791 | endef |
| 3792 | |
| 3793 | # We just build this directly to the install location. |
| 3794 | INSTALLED_ODMIMAGE_TARGET := $(BUILT_ODMIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3795 | $(INSTALLED_ODMIMAGE_TARGET): \ |
| 3796 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3797 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 3798 | $(INSTALLED_FILES_FILE_ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3799 | $(build-odmimage-target) |
| 3800 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3801 | ODM_NOTICE_DEPS += $(INSTALLED_ODMIMAGE_TARGET) |
| 3802 | |
| 3803 | $(call declare-1p-container,$(INSTALLED_ODMIMAGE_TARGET),) |
| 3804 | $(call declare-container-license-deps,$(INSTALLED_ODMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_ODMIMAGE_FILES) $(INSTALLED_FILES_FILE_ODM),$(PRODUCT_OUT)/:/) |
| 3805 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3806 | .PHONY: odmimage-nodeps onod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 3807 | odmimage-nodeps onod: | $(INTERNAL_USERIMAGES_DEPS) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3808 | $(build-odmimage-target) |
| 3809 | |
| 3810 | sync: $(INTERNAL_ODMIMAGE_FILES) |
| 3811 | |
| 3812 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 3813 | INSTALLED_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 3814 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODMIMAGE),$(INSTALLED_ODMIMAGE_TARGET))) |
| 3815 | endif |
| 3816 | |
| 3817 | # ----------------------------------------------------------------- |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3818 | # vendor_dlkm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3819 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_VENDOR_DLKM)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3820 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 3821 | INTERNAL_VENDOR_DLKMIMAGE_FILES := \ |
| 3822 | $(filter $(TARGET_OUT_VENDOR_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3823 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3824 | |
| 3825 | INSTALLED_FILES_FILE_VENDOR_DLKM := $(PRODUCT_OUT)/installed-files-vendor_dlkm.txt |
| 3826 | INSTALLED_FILES_JSON_VENDOR_DLKM := $(INSTALLED_FILES_FILE_VENDOR_DLKM:.txt=.json) |
| 3827 | $(INSTALLED_FILES_FILE_VENDOR_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DLKM) |
| 3828 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) : $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3829 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3830 | mkdir -p $(dir $@) |
| 3831 | rm -f $@ |
| 3832 | $(FILESLIST) $(TARGET_OUT_VENDOR_DLKM) > $(@:.txt=.json) |
| 3833 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3834 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3835 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_VENDOR_DLKM)) |
| 3836 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_VENDOR_DLKM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3837 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3838 | vendor_dlkmimage_intermediates := \ |
| 3839 | $(call intermediates-dir-for,PACKAGING,vendor_dlkm) |
| 3840 | BUILT_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 3841 | define build-vendor_dlkmimage-target |
| 3842 | $(call pretty,"Target vendor_dlkm fs image: $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)") |
| 3843 | @mkdir -p $(TARGET_OUT_VENDOR_DLKM) |
| 3844 | @mkdir -p $(vendor_dlkmimage_intermediates) && rm -rf $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt |
David Anderson | 17063cf | 2021-08-27 16:43:09 -0700 | [diff] [blame] | 3845 | $(call generate-image-prop-dictionary, $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt, \ |
| 3846 | vendor_dlkm, skip_fsck=true) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3847 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3848 | $(BUILD_IMAGE) \ |
| 3849 | $(TARGET_OUT_VENDOR_DLKM) $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt \ |
| 3850 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3851 | $(call assert-max-image-size,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE)) |
| 3852 | endef |
| 3853 | |
| 3854 | # We just build this directly to the install location. |
| 3855 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(BUILT_VENDOR_DLKMIMAGE_TARGET) |
| 3856 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET): \ |
| 3857 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3858 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 3859 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) |
| 3860 | $(build-vendor_dlkmimage-target) |
| 3861 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3862 | VENDOR_DLKM_NOTICE_DEPS += $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
| 3863 | |
| 3864 | $(call declare-1p-container,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),) |
| 3865 | $(call declare-container-license-deps,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_VENDOR_DLKM),$(PRODUCT_OUT)/:/) |
| 3866 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3867 | .PHONY: vendor_dlkmimage-nodeps vdnod |
| 3868 | vendor_dlkmimage-nodeps vdnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3869 | $(build-vendor_dlkmimage-target) |
| 3870 | |
| 3871 | sync: $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
| 3872 | |
| 3873 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
| 3874 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 3875 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDOR_DLKMIMAGE),$(INSTALLED_VENDOR_DLKMIMAGE_TARGET))) |
| 3876 | endif |
| 3877 | |
| 3878 | # ----------------------------------------------------------------- |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3879 | # odm_dlkm partition image |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3880 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_ODM_DLKM)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3881 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 3882 | INTERNAL_ODM_DLKMIMAGE_FILES := \ |
| 3883 | $(filter $(TARGET_OUT_ODM_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 3884 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3885 | |
| 3886 | INSTALLED_FILES_FILE_ODM_DLKM := $(PRODUCT_OUT)/installed-files-odm_dlkm.txt |
| 3887 | INSTALLED_FILES_JSON_ODM_DLKM := $(INSTALLED_FILES_FILE_ODM_DLKM:.txt=.json) |
| 3888 | $(INSTALLED_FILES_FILE_ODM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM_DLKM) |
| 3889 | $(INSTALLED_FILES_FILE_ODM_DLKM) : $(INTERNAL_ODM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3890 | @echo Installed file list: $@ |
Petri Gynther | 728e0bd | 2021-03-06 13:29:28 -0800 | [diff] [blame] | 3891 | mkdir -p $(dir $@) |
| 3892 | rm -f $@ |
| 3893 | $(FILESLIST) $(TARGET_OUT_ODM_DLKM) > $(@:.txt=.json) |
| 3894 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3895 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3896 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_ODM_DLKM)) |
| 3897 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_ODM_DLKM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3898 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3899 | odm_dlkmimage_intermediates := \ |
| 3900 | $(call intermediates-dir-for,PACKAGING,odm_dlkm) |
| 3901 | BUILT_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 3902 | define build-odm_dlkmimage-target |
| 3903 | $(call pretty,"Target odm_dlkm fs image: $(INSTALLED_ODM_DLKMIMAGE_TARGET)") |
| 3904 | @mkdir -p $(TARGET_OUT_ODM_DLKM) |
| 3905 | @mkdir -p $(odm_dlkmimage_intermediates) && rm -rf $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt |
David Anderson | 17063cf | 2021-08-27 16:43:09 -0700 | [diff] [blame] | 3906 | $(call generate-image-prop-dictionary, $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt, \ |
| 3907 | odm_dlkm, skip_fsck=true) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3908 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3909 | $(BUILD_IMAGE) \ |
| 3910 | $(TARGET_OUT_ODM_DLKM) $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt \ |
| 3911 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3912 | $(call assert-max-image-size,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE)) |
| 3913 | endef |
| 3914 | |
| 3915 | # We just build this directly to the install location. |
| 3916 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(BUILT_ODM_DLKMIMAGE_TARGET) |
| 3917 | $(INSTALLED_ODM_DLKMIMAGE_TARGET): \ |
| 3918 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3919 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
| 3920 | $(INSTALLED_FILES_FILE_ODM_DLKM) |
| 3921 | $(build-odm_dlkmimage-target) |
| 3922 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3923 | ODM_DLKM_NOTICE_DEPS += $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
| 3924 | |
| 3925 | $(call declare-1p-container,$(INSTALLED_ODM_DLKMIMAGE_TARGET),) |
| 3926 | $(call declare-container-license-deps,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_ODM_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_ODM_DLKM),$(PRODUCT_OUT)/:/) |
| 3927 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3928 | .PHONY: odm_dlkmimage-nodeps odnod |
| 3929 | odm_dlkmimage-nodeps odnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3930 | $(build-odm_dlkmimage-target) |
| 3931 | |
| 3932 | sync: $(INTERNAL_ODM_DLKMIMAGE_FILES) |
| 3933 | |
| 3934 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 3935 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 3936 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODM_DLKMIMAGE),$(INSTALLED_ODM_DLKMIMAGE_TARGET))) |
| 3937 | endif |
| 3938 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3939 | # ----------------------------------------------------------------- |
| 3940 | # system_dlkm partition image |
| 3941 | |
Colin Cross | 79a76ec | 2022-03-21 15:06:11 -0700 | [diff] [blame] | 3942 | INSTALLED_FILES_OUTSIDE_IMAGES := $(filter-out $(TARGET_OUT_SYSTEM_DLKM)/%, $(INSTALLED_FILES_OUTSIDE_IMAGES)) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3943 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 3944 | |
| 3945 | INTERNAL_SYSTEM_DLKMIMAGE_FILES := \ |
| 3946 | $(filter $(TARGET_OUT_SYSTEM_DLKM)/%,\ |
| 3947 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 3948 | |
| 3949 | INSTALLED_FILES_FILE_SYSTEM_DLKM := $(PRODUCT_OUT)/installed-files-system_dlkm.txt |
| 3950 | INSTALLED_FILES_JSON_SYSTEM_DLKM := $(INSTALLED_FILES_FILE_SYSTEM_DLKM:.txt=.json) |
| 3951 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_DLKM) |
| 3952 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM): $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 3953 | @echo Installed file list: $@ |
| 3954 | mkdir -p $(dir $@) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3955 | rm -f $@ |
| 3956 | $(FILESLIST) $(TARGET_OUT_SYSTEM_DLKM) > $(@:.txt=.json) |
| 3957 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 3958 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 3959 | $(call declare-0p-target,$(INSTALLED_FILES_FILE_SYSTEM_DLKM)) |
| 3960 | $(call declare-0p-target,$(INSTALLED_FILES_JSON_SYSTEM_DLKM)) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 3961 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3962 | system_dlkmimage_intermediates := \ |
| 3963 | $(call intermediates-dir-for,PACKAGING,system_dlkm) |
| 3964 | BUILT_SYSTEM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/system_dlkm.img |
| 3965 | define build-system_dlkmimage-target |
| 3966 | $(call pretty,"Target system_dlkm fs image: $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET)") |
| 3967 | @mkdir -p $(TARGET_OUT_SYSTEM_DLKM) |
| 3968 | @mkdir -p $(system_dlkmimage_intermediates) && rm -rf $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt |
| 3969 | $(call generate-image-prop-dictionary, $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt, \ |
| 3970 | system_dlkm, skip_fsck=true) |
| 3971 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3972 | $(BUILD_IMAGE) \ |
| 3973 | $(TARGET_OUT_SYSTEM_DLKM) $(system_dlkmimage_intermediates)/system_dlkm_image_info.txt \ |
| 3974 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3975 | $(call assert-max-image-size,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(BOARD_SYSTEM_DLKMIMAGE_PARTITION_SIZE)) |
| 3976 | endef |
| 3977 | |
| 3978 | # We just build this directly to the install location. |
| 3979 | INSTALLED_SYSTEM_DLKMIMAGE_TARGET := $(BUILT_SYSTEM_DLKMIMAGE_TARGET) |
| 3980 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET): \ |
| 3981 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3982 | $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) \ |
| 3983 | $(INSTALLED_FILES_FILE_SYSTEM_DLKM) |
| 3984 | $(build-system_dlkmimage-target) |
| 3985 | |
Bob Badour | 56e0de5 | 2022-08-02 17:46:48 +0000 | [diff] [blame] | 3986 | SYSTEM_DLKM_NOTICE_DEPS += $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) |
| 3987 | |
| 3988 | $(call declare-1p-container,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),) |
| 3989 | $(call declare-container-license-deps,$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEM_DLKM),$(PRODUCT_OUT)/:/) |
| 3990 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 3991 | .PHONY: system_dlkmimage-nodeps sdnod |
| 3992 | system_dlkmimage-nodeps sdnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3993 | $(build-system_dlkmimage-target) |
| 3994 | |
| 3995 | sync: $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) |
| 3996 | |
| 3997 | else ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
| 3998 | INSTALLED_SYSTEM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/system_dlkm.img |
| 3999 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_SYSTEM_DLKMIMAGE),$(INSTALLED_SYSTEM_DLKMIMAGE_TARGET))) |
| 4000 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4001 | |
| 4002 | # ----------------------------------------------------------------- |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4003 | # dtbo image |
| 4004 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 4005 | INSTALLED_DTBOIMAGE_TARGET := $(PRODUCT_OUT)/dtbo.img |
| 4006 | |
| 4007 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4008 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) $(AVBTOOL) $(BOARD_AVB_DTBO_KEY_PATH) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4009 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 4010 | $(AVBTOOL) add_hash_footer \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4011 | --image $@ \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 4012 | $(call get-partition-size-argument,$(BOARD_DTBOIMG_PARTITION_SIZE)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4013 | --partition_name dtbo $(INTERNAL_AVB_DTBO_SIGNING_ARGS) \ |
| 4014 | $(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4015 | |
| 4016 | $(call declare-1p-container,$(INSTALLED_DTBOIMAGE_TARGET),) |
| 4017 | $(call declare-container-license-deps,$(INSTALLED_DTBOIMAGE_TARGET),$(BOARD_PREBUILT_DTBOIMAGE),$(PRODUCT_OUT)/:/) |
| 4018 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 4019 | UNMOUNTED_NOTICE_VENDOR_DEPS+= $(INSTALLED_DTBOIMAGE_TARGET) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4020 | else |
| 4021 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) |
| 4022 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 4023 | endif |
| 4024 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4025 | endif # BOARD_PREBUILT_DTBOIMAGE |
| 4026 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4027 | # ----------------------------------------------------------------- |
| 4028 | # Protected VM firmware image |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 4029 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Pierre-Clément Tosi | adbf4da | 2022-09-09 15:57:58 +0100 | [diff] [blame] | 4030 | |
| 4031 | .PHONY: pvmfwimage |
| 4032 | pvmfwimage: $(INSTALLED_PVMFWIMAGE_TARGET) |
| 4033 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4034 | INSTALLED_PVMFWIMAGE_TARGET := $(PRODUCT_OUT)/pvmfw.img |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 4035 | INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET := $(PRODUCT_OUT)/pvmfw_embedded.avbpubkey |
Pierre-Clément Tosi | 03975ed | 2022-10-02 12:11:06 +0100 | [diff] [blame] | 4036 | INSTALLED_PVMFW_BINARY_TARGET := $(call module-installed-files,pvmfw_bin) |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4037 | INTERNAL_PVMFWIMAGE_FILES := $(call module-target-built-files,pvmfw_img) |
Pierre-Clément Tosi | 615f081 | 2022-10-26 16:05:16 +0100 | [diff] [blame] | 4038 | INTERNAL_PVMFW_EMBEDDED_AVBKEY := $(call module-target-built-files,pvmfw_embedded_key) |
Jiyong Park | e219f00 | 2022-12-16 14:30:03 +0900 | [diff] [blame] | 4039 | INTERNAL_PVMFW_SYMBOL := $(TARGET_OUT_EXECUTABLES_UNSTRIPPED)/pvmfw |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4040 | |
| 4041 | $(call declare-1p-container,$(INSTALLED_PVMFWIMAGE_TARGET),) |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4042 | $(call declare-container-license-deps,$(INSTALLED_PVMFWIMAGE_TARGET),$(INTERNAL_PVMFWIMAGE_FILES),$(PRODUCT_OUT)/:/) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4043 | |
Justin Yun | dd15ec1 | 2022-09-23 10:47:21 +0900 | [diff] [blame] | 4044 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_PVMFWIMAGE_TARGET) |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4045 | |
Jiyong Park | e219f00 | 2022-12-16 14:30:03 +0900 | [diff] [blame] | 4046 | # Place the unstripped pvmfw image to the symbols directory |
| 4047 | $(INTERNAL_PVMFWIMAGE_FILES): |$(INTERNAL_PVMFW_SYMBOL) |
| 4048 | |
Pierre-Clément Tosi | d000004 | 2022-09-08 13:26:08 +0100 | [diff] [blame] | 4049 | $(eval $(call copy-one-file,$(INTERNAL_PVMFWIMAGE_FILES),$(INSTALLED_PVMFWIMAGE_TARGET))) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4050 | |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 4051 | $(INSTALLED_PVMFWIMAGE_TARGET): $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) |
| 4052 | |
| 4053 | $(eval $(call copy-one-file,$(INTERNAL_PVMFW_EMBEDDED_AVBKEY),$(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET))) |
| 4054 | |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 4055 | endif # BOARD_USES_PVMFWIMAGE |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4056 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4057 | # Returns a list of image targets corresponding to the given list of partitions. For example, it |
| 4058 | # returns "$(INSTALLED_PRODUCTIMAGE_TARGET)" for "product", or "$(INSTALLED_SYSTEMIMAGE_TARGET) |
| 4059 | # $(INSTALLED_VENDORIMAGE_TARGET)" for "system vendor". |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4060 | # (1): list of partitions like "system", "vendor" or "system product system_ext". |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4061 | define images-for-partitions |
Bowgo Tsai | 4f62aa0 | 2022-01-04 14:21:39 +0800 | [diff] [blame] | 4062 | $(strip $(foreach item,$(1),\ |
| 4063 | $(if $(filter $(item),system_other),$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),\ |
| 4064 | $(if $(filter $(item),init_boot),$(INSTALLED_INIT_BOOT_IMAGE_TARGET),\ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4065 | $(INSTALLED_$(call to-upper,$(item))IMAGE_TARGET))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4066 | endef |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4067 | |
| 4068 | # ----------------------------------------------------------------- |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4069 | # custom images |
| 4070 | INSTALLED_CUSTOMIMAGES_TARGET := |
| 4071 | |
| 4072 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 4073 | INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS := |
| 4074 | |
| 4075 | # Sign custom image. |
| 4076 | # $(1): the prebuilt custom image. |
| 4077 | # $(2): the mount point of the prebuilt custom image. |
| 4078 | # $(3): the signed custom image target. |
| 4079 | define sign_custom_image |
| 4080 | $(3): $(1) $(INTERNAL_USERIMAGES_DEPS) |
| 4081 | @echo Target custom image: $(3) |
| 4082 | mkdir -p $(dir $(3)) |
| 4083 | cp $(1) $(3) |
| 4084 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4085 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$$$PATH \ |
| 4086 | $(AVBTOOL) add_hashtree_footer \ |
| 4087 | --image $(3) \ |
| 4088 | --key $(BOARD_AVB_$(call to-upper,$(2))_KEY_PATH) \ |
| 4089 | --algorithm $(BOARD_AVB_$(call to-upper,$(2))_ALGORITHM) \ |
Peter Collingbourne | 730200e | 2022-02-16 13:32:53 -0800 | [diff] [blame] | 4090 | $(call get-partition-size-argument,$(BOARD_AVB_$(call to-upper,$(2))_PARTITION_SIZE)) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4091 | --partition_name $(2) \ |
| 4092 | $(INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS) \ |
| 4093 | $(BOARD_AVB_$(call to-upper,$(2))_ADD_HASHTREE_FOOTER_ARGS) |
| 4094 | endif |
| 4095 | INSTALLED_CUSTOMIMAGES_TARGET += $(3) |
| 4096 | endef |
| 4097 | |
| 4098 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4099 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST), \ |
| 4100 | $(eval $(call sign_custom_image,$(image),$(partition),$(PRODUCT_OUT)/$(notdir $(image)))))) |
| 4101 | endif |
| 4102 | |
| 4103 | # ----------------------------------------------------------------- |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4104 | # vbmeta image |
| 4105 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4106 | |
| 4107 | BUILT_VBMETAIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta.img |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4108 | AVB_CHAIN_KEY_DIR := $(TARGET_OUT_INTERMEDIATES)/avb_chain_keys |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4109 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4110 | ifdef BOARD_AVB_KEY_PATH |
| 4111 | $(if $(BOARD_AVB_ALGORITHM),,$(error BOARD_AVB_ALGORITHM is not defined)) |
| 4112 | else |
| 4113 | # If key path isn't specified, use the 4096-bit test key. |
| 4114 | BOARD_AVB_ALGORITHM := SHA256_RSA4096 |
| 4115 | BOARD_AVB_KEY_PATH := external/avb/test/data/testkey_rsa4096.pem |
| 4116 | endif |
| 4117 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 4118 | # AVB signing for system_other.img. |
| 4119 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 4120 | ifdef BOARD_AVB_SYSTEM_OTHER_KEY_PATH |
| 4121 | $(if $(BOARD_AVB_SYSTEM_OTHER_ALGORITHM),,$(error BOARD_AVB_SYSTEM_OTHER_ALGORITHM is not defined)) |
| 4122 | else |
| 4123 | # If key path isn't specified, use the same key as BOARD_AVB_KEY_PATH. |
| 4124 | BOARD_AVB_SYSTEM_OTHER_KEY_PATH := $(BOARD_AVB_KEY_PATH) |
| 4125 | BOARD_AVB_SYSTEM_OTHER_ALGORITHM := $(BOARD_AVB_ALGORITHM) |
| 4126 | endif |
| 4127 | |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 4128 | $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET): $(AVBTOOL) $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) |
| 4129 | @echo Extracting system_other avb key: $@ |
| 4130 | @rm -f $@ |
| 4131 | @mkdir -p $(dir $@) |
| 4132 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) --output $@ |
Bowgo Tsai | 45db7ce | 2019-01-30 14:53:57 +0800 | [diff] [blame] | 4133 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4134 | $(eval $(call declare-0p-target,$(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET),)) |
| 4135 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 4136 | ifndef BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX |
| 4137 | BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX := $(PLATFORM_SECURITY_PATCH_TIMESTAMP) |
| 4138 | endif |
| 4139 | |
| 4140 | BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS += --rollback_index $(BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX) |
| 4141 | endif # end of AVB for BUILDING_SYSTEM_OTHER_IMAGE |
| 4142 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4143 | INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES := \ |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4144 | $(BOARD_AVB_VBMETA_SYSTEM) \ |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4145 | $(BOARD_AVB_VBMETA_VENDOR) \ |
| 4146 | $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),$(BOARD_AVB_VBMETA_$(call to-upper,$(partition)))) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4147 | |
| 4148 | # Not allowing the same partition to appear in multiple groups. |
| 4149 | 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] | 4150 | $(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] | 4151 | endif |
| 4152 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4153 | # When building a standalone recovery image for non-A/B devices, recovery image must be self-signed |
| 4154 | # to be verified independently, and cannot be chained into vbmeta.img. See the link below for |
| 4155 | # details. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4156 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4157 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 4158 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),,\ |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4159 | $(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] | 4160 | See https://android.googlesource.com/platform/external/avb/+/master/README.md#booting-into-recovery)) |
| 4161 | endif |
| 4162 | endif |
| 4163 | |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4164 | # Appends os version as a AVB property descriptor. |
| 4165 | SYSTEM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4166 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4167 | --prop com.android.build.system.os_version:$(SYSTEM_OS_VERSION) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4168 | |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4169 | PRODUCT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4170 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4171 | --prop com.android.build.product.os_version:$(PRODUCT_OS_VERSION) |
| 4172 | |
| 4173 | SYSTEM_EXT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4174 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4175 | --prop com.android.build.system_ext.os_version:$(SYSTEM_EXT_OS_VERSION) |
| 4176 | |
| 4177 | INIT_BOOT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4178 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4179 | --prop com.android.build.init_boot.os_version:$(INIT_BOOT_OS_VERSION) |
| 4180 | |
| 4181 | BOOT_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4182 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4183 | --prop com.android.build.boot.os_version:$(BOOT_OS_VERSION) |
| 4184 | |
| 4185 | VENDOR_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4186 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4187 | --prop com.android.build.vendor.os_version:$(VENDOR_OS_VERSION) |
| 4188 | |
| 4189 | ODM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4190 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4191 | --prop com.android.build.odm.os_version:$(ODM_OS_VERSION) |
| 4192 | |
| 4193 | VENDOR_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4194 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4195 | --prop com.android.build.vendor_dlkm.os_version:$(VENDOR_DLKM_OS_VERSION) |
| 4196 | |
| 4197 | ODM_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4198 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4199 | --prop com.android.build.odm_dlkm.os_version:$(ODM_DLKM_OS_VERSION) |
| 4200 | |
| 4201 | SYSTEM_DLKM_OS_VERSION ?= $(PLATFORM_VERSION_LAST_STABLE) |
| 4202 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4203 | --prop com.android.build.system_dlkm.os_version:$(SYSTEM_DLKM_OS_VERSION) |
| 4204 | |
| 4205 | # Appends fingerprint and security patch level as a AVB property descriptor. |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4206 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4207 | --prop com.android.build.system.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4208 | --prop com.android.build.system.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 4209 | |
| 4210 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4211 | --prop com.android.build.product.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4212 | --prop com.android.build.product.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 4213 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4214 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4215 | --prop com.android.build.system_ext.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4216 | --prop com.android.build.system_ext.security_patch:$(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4217 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4218 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Bowgo Tsai | 8c7f820 | 2022-02-22 14:47:45 +0800 | [diff] [blame] | 4219 | --prop com.android.build.boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4220 | |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4221 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4222 | --prop com.android.build.init_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4223 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4224 | BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4225 | --prop com.android.build.vendor_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 4226 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4227 | BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4228 | --prop com.android.build.vendor_kernel_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 4229 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4230 | BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS += \ |
| 4231 | --prop com.android.build.recovery.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4232 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4233 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4234 | --prop com.android.build.vendor.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4235 | |
| 4236 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4237 | --prop com.android.build.odm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4238 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4239 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4240 | --prop com.android.build.vendor_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4241 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4242 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4243 | --prop com.android.build.odm_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4244 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4245 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
Bowgo Tsai | b0f4363 | 2022-03-30 11:32:32 +0800 | [diff] [blame] | 4246 | --prop com.android.build.system_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4247 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 4248 | BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS += \ |
| 4249 | --prop com.android.build.dtbo.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4250 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4251 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 4252 | --prop com.android.build.pvmfw.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 4253 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 4254 | # The following vendor- and odm-specific images needs explicit SPL set per board. |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4255 | # TODO(b/210875415) Is this security_patch property used? Should it be removed from |
| 4256 | # boot.img when there is no platform ramdisk included in it? |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4257 | ifdef BOOT_SECURITY_PATCH |
| 4258 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4259 | --prop com.android.build.boot.security_patch:$(BOOT_SECURITY_PATCH) |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 4260 | endif |
| 4261 | |
| 4262 | ifdef INIT_BOOT_SECURITY_PATCH |
| 4263 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4264 | --prop com.android.build.init_boot.security_patch:$(INIT_BOOT_SECURITY_PATCH) |
| 4265 | else ifdef BOOT_SECURITY_PATCH |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4266 | BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 4267 | --prop com.android.build.init_boot.security_patch:$(BOOT_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 4268 | endif |
| 4269 | |
| 4270 | ifdef VENDOR_SECURITY_PATCH |
| 4271 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4272 | --prop com.android.build.vendor.security_patch:$(VENDOR_SECURITY_PATCH) |
| 4273 | endif |
| 4274 | |
| 4275 | ifdef ODM_SECURITY_PATCH |
| 4276 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4277 | --prop com.android.build.odm.security_patch:$(ODM_SECURITY_PATCH) |
| 4278 | endif |
| 4279 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4280 | ifdef VENDOR_DLKM_SECURITY_PATCH |
| 4281 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4282 | --prop com.android.build.vendor_dlkm.security_patch:$(VENDOR_DLKM_SECURITY_PATCH) |
| 4283 | endif |
| 4284 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4285 | ifdef ODM_DLKM_SECURITY_PATCH |
| 4286 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4287 | --prop com.android.build.odm_dlkm.security_patch:$(ODM_DLKM_SECURITY_PATCH) |
| 4288 | endif |
| 4289 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4290 | ifdef SYSTEM_DLKM_SECURITY_PATCH |
| 4291 | BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 4292 | --prop com.android.build.system_dlkm.security_patch:$(SYSTEM_DLKM_SECURITY_PATCH) |
| 4293 | endif |
| 4294 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4295 | ifdef PVMFW_SECURITY_PATCH |
| 4296 | BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS += \ |
| 4297 | --prop com.android.build.pvmfw.security_patch:$(PVMFW_SECURITY_PATCH) |
| 4298 | endif |
| 4299 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4300 | BOOT_FOOTER_ARGS := BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4301 | INIT_BOOT_FOOTER_ARGS := BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4302 | VENDOR_BOOT_FOOTER_ARGS := BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4303 | VENDOR_KERNEL_BOOT_FOOTER_ARGS := BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4304 | DTBO_FOOTER_ARGS := BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4305 | PVMFW_FOOTER_ARGS := BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4306 | SYSTEM_FOOTER_ARGS := BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS |
| 4307 | VENDOR_FOOTER_ARGS := BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4308 | RECOVERY_FOOTER_ARGS := BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4309 | PRODUCT_FOOTER_ARGS := BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4310 | SYSTEM_EXT_FOOTER_ARGS := BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4311 | ODM_FOOTER_ARGS := BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4312 | VENDOR_DLKM_FOOTER_ARGS := BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4313 | ODM_DLKM_FOOTER_ARGS := BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4314 | SYSTEM_DLKM_FOOTER_ARGS := BOARD_AVB_SYSTEM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4315 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4316 | # 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] | 4317 | # $(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] | 4318 | define _check-and-set-avb-chain-args |
| 4319 | $(eval part := $(1)) |
| 4320 | $(eval PART=$(call to-upper,$(part))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4321 | |
| 4322 | $(eval _key_path := BOARD_AVB_$(PART)_KEY_PATH) |
| 4323 | $(eval _signing_algorithm := BOARD_AVB_$(PART)_ALGORITHM) |
| 4324 | $(eval _rollback_index := BOARD_AVB_$(PART)_ROLLBACK_INDEX) |
| 4325 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 4326 | $(if $($(_key_path)),,$(error $(_key_path) is not defined)) |
| 4327 | $(if $($(_signing_algorithm)),,$(error $(_signing_algorithm) is not defined)) |
| 4328 | $(if $($(_rollback_index)),,$(error $(_rollback_index) is not defined)) |
| 4329 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 4330 | |
| 4331 | # Set INTERNAL_AVB_(PART)_SIGNING_ARGS |
| 4332 | $(eval _signing_args := INTERNAL_AVB_$(PART)_SIGNING_ARGS) |
| 4333 | $(eval $(_signing_args) := \ |
| 4334 | --algorithm $($(_signing_algorithm)) --key $($(_key_path))) |
| 4335 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 4336 | # The recovery partition in non-A/B devices should be verified separately. Skip adding the chain |
| 4337 | # partition descriptor for recovery partition into vbmeta.img. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4338 | $(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] | 4339 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4340 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4341 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4342 | # 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] | 4343 | # 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] | 4344 | $(if $(filter $(part),$(part:vbmeta_%=%)),\ |
| 4345 | $(eval _footer_args := $(PART)_FOOTER_ARGS) \ |
| 4346 | $(eval $($(_footer_args)) += --rollback_index $($(_rollback_index)))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4347 | endef |
| 4348 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4349 | # Checks and sets the required build variables for an AVB partition. The partition will be |
| 4350 | # 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] | 4351 | # image descriptor will be included into vbmeta.img, unless it has been already added to any chained |
| 4352 | # VBMeta image. |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 4353 | # Multiple boot images can be generated based on BOARD_KERNEL_BINARIES |
| 4354 | # but vbmeta would capture the image descriptor of only the first boot |
| 4355 | # image specified in BUILT_BOOTIMAGE_TARGET. |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4356 | # $(1): Partition name, e.g. boot or system. |
| 4357 | define check-and-set-avb-args |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4358 | $(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] | 4359 | $(if $(BOARD_AVB_$(call to-upper,$(1))_KEY_PATH),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4360 | $(if $(_in_chained_vbmeta),\ |
| 4361 | $(error Chaining partition "$(1)" in chained VBMeta image is not supported)) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4362 | $(call _check-and-set-avb-chain-args,$(1)),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4363 | $(if $(_in_chained_vbmeta),,\ |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 4364 | $(if $(filter boot,$(1)),\ |
| 4365 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4366 | --include_descriptors_from_image $(firstword $(call images-for-partitions,$(1)))),\ |
| 4367 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4368 | --include_descriptors_from_image $(call images-for-partitions,$(1)))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4369 | endef |
| 4370 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4371 | # Checks and sets build variables for a custom chained partition to include it into vbmeta.img. |
| 4372 | # $(1): the custom partition to enable AVB chain. |
| 4373 | define check-and-set-custom-avb-chain-args |
| 4374 | $(eval part := $(1)) |
| 4375 | $(eval PART=$(call to-upper,$(part))) |
| 4376 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 4377 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 4378 | |
| 4379 | INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 4380 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey |
| 4381 | endef |
| 4382 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 4383 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4384 | $(eval $(call check-and-set-avb-args,boot)) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 4385 | endif |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4386 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4387 | ifdef INSTALLED_INIT_BOOT_IMAGE_TARGET |
| 4388 | $(eval $(call check-and-set-avb-args,init_boot)) |
| 4389 | endif |
| 4390 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4391 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 4392 | $(eval $(call check-and-set-avb-args,vendor_boot)) |
| 4393 | endif |
| 4394 | |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4395 | ifdef INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET |
| 4396 | $(eval $(call check-and-set-avb-args,vendor_kernel_boot)) |
| 4397 | endif |
| 4398 | |
Bowgo Tsai | e691aef | 2022-01-04 14:33:43 +0800 | [diff] [blame] | 4399 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4400 | $(eval $(call check-and-set-avb-args,system)) |
Bowgo Tsai | e691aef | 2022-01-04 14:33:43 +0800 | [diff] [blame] | 4401 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4402 | |
| 4403 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4404 | $(eval $(call check-and-set-avb-args,vendor)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4405 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4406 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4407 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4408 | $(eval $(call check-and-set-avb-args,product)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4409 | endif |
| 4410 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4411 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 4412 | $(eval $(call check-and-set-avb-args,system_ext)) |
Tao Bao | cee6d04 | 2018-08-22 23:39:03 -0700 | [diff] [blame] | 4413 | endif |
| 4414 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4415 | ifdef INSTALLED_ODMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4416 | $(eval $(call check-and-set-avb-args,odm)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4417 | endif |
| 4418 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4419 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 4420 | $(eval $(call check-and-set-avb-args,vendor_dlkm)) |
| 4421 | endif |
| 4422 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4423 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 4424 | $(eval $(call check-and-set-avb-args,odm_dlkm)) |
| 4425 | endif |
| 4426 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4427 | ifdef INSTALLED_SYSTEM_DLKMIMAGE_TARGET |
| 4428 | $(eval $(call check-and-set-avb-args,system_dlkm)) |
| 4429 | endif |
| 4430 | |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4431 | ifdef INSTALLED_DTBOIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4432 | $(eval $(call check-and-set-avb-args,dtbo)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4433 | endif |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 4434 | |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4435 | ifdef INSTALLED_PVMFWIMAGE_TARGET |
| 4436 | $(eval $(call check-and-set-avb-args,pvmfw)) |
| 4437 | endif |
| 4438 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4439 | ifdef INSTALLED_RECOVERYIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4440 | $(eval $(call check-and-set-avb-args,recovery)) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4441 | endif |
Bowgo Tsai | 53cf999 | 2017-06-13 11:27:06 +0800 | [diff] [blame] | 4442 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4443 | # Not using INSTALLED_VBMETA_SYSTEMIMAGE_TARGET as it won't be set yet. |
| 4444 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 4445 | $(eval $(call check-and-set-avb-args,vbmeta_system)) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4446 | endif |
| 4447 | |
| 4448 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 4449 | $(eval $(call check-and-set-avb-args,vbmeta_vendor)) |
| 4450 | endif |
| 4451 | |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4452 | ifdef BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
| 4453 | $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),$(eval $(call check-and-set-avb-args,vbmeta_$(partition)))) |
| 4454 | $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),$(eval BOARD_AVB_MAKE_VBMETA_$(call to-upper,$(partition))_IMAGE_ARGS += --padding_size 4096)) |
| 4455 | endif |
| 4456 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4457 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 4458 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4459 | $(eval $(call check-and-set-custom-avb-chain-args,$(partition)))) |
| 4460 | endif |
| 4461 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4462 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --padding_size 4096 |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4463 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += --padding_size 4096 |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4464 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += --padding_size 4096 |
| 4465 | |
| 4466 | ifeq (eng,$(filter eng, $(TARGET_BUILD_VARIANT))) |
Tao Bao | 240dcb8 | 2018-10-22 13:02:53 -0700 | [diff] [blame] | 4467 | # We only need the flag in top-level vbmeta.img. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4468 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --set_hashtree_disabled_flag |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4469 | endif |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4470 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4471 | ifdef BOARD_AVB_ROLLBACK_INDEX |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4472 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --rollback_index $(BOARD_AVB_ROLLBACK_INDEX) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4473 | endif |
| 4474 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4475 | ifdef BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX |
| 4476 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += \ |
| 4477 | --rollback_index $(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4478 | endif |
| 4479 | |
| 4480 | ifdef BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX |
| 4481 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += \ |
| 4482 | --rollback_index $(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX) |
John Reck | 0588b43 | 2018-05-03 13:20:01 -0700 | [diff] [blame] | 4483 | endif |
| 4484 | |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4485 | ifdef BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
| 4486 | $(foreach partition,$(call to-upper,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)), \ |
| 4487 | $(if $(BOARD_AVB_VBMETA_$(partition)_ROLLBACK_INDEX),$(eval \ |
| 4488 | BOARD_AVB_MAKE_VBMETA_$(partition)_IMAGE_ARGS += \ |
| 4489 | --rollback_index $(BOARD_AVB_VBMETA_$(partition)_ROLLBACK_INDEX)))) |
| 4490 | endif |
| 4491 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4492 | # $(1): the directory to extract public keys to |
| 4493 | define extract-avb-chain-public-keys |
| 4494 | $(if $(BOARD_AVB_BOOT_KEY_PATH),\ |
| 4495 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_BOOT_KEY_PATH) \ |
| 4496 | --output $(1)/boot.avbpubkey) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4497 | $(if $(BOARD_AVB_INIT_BOOT_KEY_PATH),\ |
| 4498 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_INIT_BOOT_KEY_PATH) \ |
| 4499 | --output $(1)/init_boot.avbpubkey) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4500 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),\ |
| 4501 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_BOOT_KEY_PATH) \ |
| 4502 | --output $(1)/vendor_boot.avbpubkey) |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4503 | $(if $(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH),\ |
| 4504 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH) \ |
| 4505 | --output $(1)/vendor_kernel_boot.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4506 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 4507 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_KEY_PATH) \ |
| 4508 | --output $(1)/system.avbpubkey) |
| 4509 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 4510 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KEY_PATH) \ |
| 4511 | --output $(1)/vendor.avbpubkey) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4512 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 4513 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PRODUCT_KEY_PATH) \ |
| 4514 | --output $(1)/product.avbpubkey) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4515 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 4516 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_EXT_KEY_PATH) \ |
| 4517 | --output $(1)/system_ext.avbpubkey) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4518 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 4519 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_KEY_PATH) \ |
| 4520 | --output $(1)/odm.avbpubkey) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4521 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 4522 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_DLKM_KEY_PATH) \ |
| 4523 | --output $(1)/vendor_dlkm.avbpubkey) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4524 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 4525 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_DLKM_KEY_PATH) \ |
| 4526 | --output $(1)/odm_dlkm.avbpubkey) |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4527 | $(if $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH),\ |
| 4528 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_DLKM_KEY_PATH) \ |
| 4529 | --output $(1)/system_dlkm.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4530 | $(if $(BOARD_AVB_DTBO_KEY_PATH),\ |
| 4531 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_DTBO_KEY_PATH) \ |
| 4532 | --output $(1)/dtbo.avbpubkey) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4533 | $(if $(BOARD_AVB_PVMFW_KEY_PATH),\ |
| 4534 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PVMFW_KEY_PATH) \ |
| 4535 | --output $(1)/pvmfw.avbpubkey) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4536 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),\ |
| 4537 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_RECOVERY_KEY_PATH) \ |
| 4538 | --output $(1)/recovery.avbpubkey) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4539 | $(if $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH),\ |
| 4540 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 4541 | --output $(1)/vbmeta_system.avbpubkey) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4542 | $(if $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH),\ |
| 4543 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 4544 | --output $(1)/vbmeta_vendor.avbpubkey) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4545 | $(if $(BOARD_CUSTOMIMAGES_PARTITION_LIST),\ |
| 4546 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4547 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH) \ |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4548 | --output $(1)/$(partition).avbpubkey;)) \ |
| 4549 | $(if $(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),\ |
| 4550 | $(hide) $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS), \ |
| 4551 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_KEY_PATH) \ |
| 4552 | --output $(1)/vbmeta_$(partition).avbpubkey;)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4553 | endef |
| 4554 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4555 | # Builds a chained VBMeta image. This VBMeta image will contain the descriptors for the partitions |
| 4556 | # 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] | 4557 | # 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] | 4558 | # := system system_ext`, `vbmeta_system.img` will be created that includes the descriptors for |
| 4559 | # `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] | 4560 | # `vbmeta.img` as a chained partition. |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4561 | # $(1): VBMeta image name, such as "vbmeta_system", "vbmeta_vendor" etc. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4562 | # $(2): Output filename. |
| 4563 | define build-chained-vbmeta-image |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4564 | $(call pretty,"Target chained vbmeta image: $@") |
| 4565 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 4566 | $(INTERNAL_AVB_$(call to-upper,$(1))_SIGNING_ARGS) \ |
| 4567 | $(BOARD_AVB_MAKE_$(call to-upper,$(1))_IMAGE_ARGS) \ |
| 4568 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(1))), \ |
| 4569 | --include_descriptors_from_image $(call images-for-partitions,$(image))) \ |
| 4570 | --output $@ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4571 | endef |
| 4572 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4573 | ifdef BUILDING_SYSTEM_IMAGE |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4574 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 4575 | INSTALLED_VBMETA_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_system.img |
| 4576 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4577 | $(AVBTOOL) \ |
| 4578 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_SYSTEM)) \ |
| 4579 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 4580 | $(call build-chained-vbmeta-image,vbmeta_system) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4581 | |
| 4582 | $(call declare-1p-container,$(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET),) |
| 4583 | |
| 4584 | SYSTEM_NOTICE_DEPS += $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4585 | endif |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4586 | endif # BUILDING_SYSTEM_IMAGE |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4587 | |
| 4588 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 4589 | INSTALLED_VBMETA_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_vendor.img |
| 4590 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4591 | $(AVBTOOL) \ |
| 4592 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_VENDOR)) \ |
| 4593 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4594 | $(call build-chained-vbmeta-image,vbmeta_vendor) |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4595 | |
| 4596 | $(call declare-1p-container,$(INSTALLED_VBMETA_VENDORIMAGE_TARGET),) |
| 4597 | |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 4598 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) |
| 4599 | endif |
| 4600 | |
| 4601 | ifdef BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
| 4602 | define declare-custom-vbmeta-target |
| 4603 | INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_$(call to-lower,$(1)).img |
| 4604 | $$(INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET): \ |
| 4605 | $(AVBTOOL) \ |
| 4606 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_$(call to-upper,$(1)))) \ |
| 4607 | $(BOARD_AVB_VBMETA_$(call to-upper,$(1))_KEY_PATH) |
| 4608 | $$(call build-chained-vbmeta-image,vbmeta_$(call to-lower,$(1))) |
| 4609 | |
| 4610 | $(call declare-1p-container,$(INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET),) |
| 4611 | |
| 4612 | UNMOUNTED_NOTICE_VENDOR_DEPS += $(INSTALLED_VBMETA_$(call to-upper,$(1))IMAGE_TARGET) |
| 4613 | endef |
| 4614 | |
| 4615 | $(foreach partition,\ |
| 4616 | $(call to-upper,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)),\ |
| 4617 | $(eval $(call declare-custom-vbmeta-target,$(partition)))) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 4618 | endif |
| 4619 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4620 | define build-vbmetaimage-target |
| 4621 | $(call pretty,"Target vbmeta image: $(INSTALLED_VBMETAIMAGE_TARGET)") |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4622 | $(hide) mkdir -p $(AVB_CHAIN_KEY_DIR) |
| 4623 | $(call extract-avb-chain-public-keys, $(AVB_CHAIN_KEY_DIR)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4624 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 4625 | $(INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4626 | $(PRIVATE_AVB_VBMETA_SIGNING_ARGS) \ |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4627 | $(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
| 4628 | --output $@ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4629 | $(hide) rm -rf $(AVB_CHAIN_KEY_DIR) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4630 | endef |
| 4631 | |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 4632 | ifdef BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4633 | INSTALLED_VBMETAIMAGE_TARGET := $(BUILT_VBMETAIMAGE_TARGET) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 4634 | $(INSTALLED_VBMETAIMAGE_TARGET): PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 4635 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
| 4636 | |
Kelvin Zhang | 0841b90 | 2023-01-23 11:12:26 -0800 | [diff] [blame] | 4637 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 4638 | $(INSTALLED_VBMETAIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4639 | $(AVBTOOL) \ |
| 4640 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 4641 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4642 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) \ |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 4643 | $(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4644 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 4645 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 4646 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4647 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4648 | $(INSTALLED_ODMIMAGE_TARGET) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4649 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4650 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4651 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4652 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 4653 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4654 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4655 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 4656 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) \ |
| 4657 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) \ |
Kelvin Zhang | 0841b90 | 2023-01-23 11:12:26 -0800 | [diff] [blame] | 4658 | $(foreach partition,$(call to-upper,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)),$(INSTALLED_VBMETA_$(partition)IMAGE_TARGET)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4659 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 4660 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
Kelvin Zhang | 0841b90 | 2023-01-23 11:12:26 -0800 | [diff] [blame] | 4661 | $(foreach partition,$(call to-upper,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)),$(BOARD_AVB_VBMETA_$(partition)_KEY_PATH)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4662 | $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4663 | $(build-vbmetaimage-target) |
| 4664 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 4665 | $(call declare-1p-container,$(INSTALLED_VBMETAIMAGE_TARGET),) |
| 4666 | |
| 4667 | UNMOUNTED_NOTICE_DEPS += $(INSTALLED_VBMETAIMAGE_TARGET) |
| 4668 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4669 | .PHONY: vbmetaimage-nodeps |
Bowgo Tsai | 6a4eaa5 | 2019-12-09 15:48:09 +0800 | [diff] [blame] | 4670 | vbmetaimage-nodeps: PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 4671 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4672 | vbmetaimage-nodeps: |
| 4673 | $(build-vbmetaimage-target) |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 4674 | endif # BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4675 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4676 | endif # BOARD_AVB_ENABLE |
| 4677 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4678 | # List of files from all images |
| 4679 | INTERNAL_ALLIMAGES_FILES := \ |
| 4680 | $(FULL_SYSTEMIMAGE_DEPS) \ |
| 4681 | $(INTERNAL_RAMDISK_FILES) \ |
| 4682 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 4683 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 4684 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 4685 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 4686 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 4687 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 4688 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4689 | $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) \ |
Jiyong Park | e219f00 | 2022-12-16 14:30:03 +0900 | [diff] [blame] | 4690 | $(INTERNAL_PVMFWIMAGE_FILES) \ |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4691 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 4692 | # ----------------------------------------------------------------- |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4693 | # Check VINTF of build |
| 4694 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 4695 | # Note: vendor_dlkm, odm_dlkm, and system_dlkm does not have VINTF files. |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4696 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4697 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4698 | intermediates := $(call intermediates-dir-for,PACKAGING,check_vintf_all) |
| 4699 | check_vintf_all_deps := |
| 4700 | |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4701 | APEX_OUT := $(PRODUCT_OUT)/apex |
| 4702 | # ----------------------------------------------------------------- |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4703 | # Create apex-info-file.xml |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4704 | |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4705 | apex_dirs := \ |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4706 | $(TARGET_OUT)/apex/% \ |
| 4707 | $(TARGET_OUT_SYSTEM_EXT)/apex/% \ |
| 4708 | $(TARGET_OUT_VENDOR)/apex/% \ |
| 4709 | $(TARGET_OUT_ODM)/apex/% \ |
| 4710 | $(TARGET_OUT_PRODUCT)/apex/% \ |
| 4711 | |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4712 | apex_files := $(sort $(filter $(apex_dirs), $(INTERNAL_ALLIMAGES_FILES))) |
| 4713 | APEX_INFO_FILE := $(APEX_OUT)/apex-info-list.xml |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4714 | |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4715 | # dump_apex_info scans $(PRODUCT_OUT)/apex and writes apex-info-list.xml there. |
| 4716 | # This relies on the fact that rules for .apex files install the contents in $(PRODUCT_OUT)/apex. |
| 4717 | $(APEX_INFO_FILE): $(HOST_OUT_EXECUTABLES)/dump_apex_info $(apex_files) |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4718 | @echo "Creating apex-info-file in $(PRODUCT_OUT) " |
Jooyung Han | 8af44a9 | 2022-11-24 18:36:47 +0900 | [diff] [blame] | 4719 | $< --root_dir $(PRODUCT_OUT) |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4720 | |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4721 | apex_files := |
| 4722 | apex_dirs := |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4723 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4724 | # The build system only writes VINTF metadata to */etc/vintf paths. Legacy paths aren't needed here |
| 4725 | # because they are only used for prebuilt images. |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4726 | # APEX files in /vendor/apex can have VINTF fragments as well. |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4727 | check_vintf_common_srcs_patterns := \ |
| 4728 | $(TARGET_OUT)/etc/vintf/% \ |
| 4729 | $(TARGET_OUT_VENDOR)/etc/vintf/% \ |
| 4730 | $(TARGET_OUT_ODM)/etc/vintf/% \ |
| 4731 | $(TARGET_OUT_PRODUCT)/etc/vintf/% \ |
| 4732 | $(TARGET_OUT_SYSTEM_EXT)/etc/vintf/% \ |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4733 | $(TARGET_OUT_VENDOR)/apex/% \ |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4734 | |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 4735 | 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] | 4736 | check_vintf_common_srcs_patterns := |
| 4737 | |
| 4738 | check_vintf_has_system := |
| 4739 | check_vintf_has_vendor := |
| 4740 | |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4741 | ifneq (,$(filter EMPTY_ODM_SKU_PLACEHOLDER,$(ODM_MANIFEST_SKUS))) |
| 4742 | $(error EMPTY_ODM_SKU_PLACEHOLDER is an internal variable and cannot be used for ODM_MANIFEST_SKUS) |
| 4743 | endif |
| 4744 | ifneq (,$(filter EMPTY_VENDOR_SKU_PLACEHOLDER,$(DEVICE_MANIFEST_SKUS))) |
| 4745 | $(error EMPTY_VENDOR_SKU_PLACEHOLDER is an internal variable and cannot be used for DEIVCE_MANIFEST_SKUS) |
| 4746 | endif |
| 4747 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4748 | # -- 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] | 4749 | check_vintf_system_deps := $(filter $(TARGET_OUT)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 4750 | ifneq ($(check_vintf_system_deps),) |
| 4751 | check_vintf_has_system := true |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4752 | |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 4753 | check_vintf_system_log := $(intermediates)/check_vintf_system.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4754 | check_vintf_all_deps += $(check_vintf_system_log) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4755 | $(check_vintf_system_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_system_deps) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4756 | @( $< --check-one --dirmap /system:$(TARGET_OUT) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 4757 | $(call declare-1p-target,$(check_vintf_system_log)) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4758 | check_vintf_system_log := |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4759 | |
Devin Moore | 62d0a73 | 2022-10-13 16:50:50 +0000 | [diff] [blame] | 4760 | # -- Check framework manifest against frozen manifests for GSI targets. They need to be compatible. |
| 4761 | ifneq (true, $(BUILDING_VENDOR_IMAGE)) |
| 4762 | vintffm_log := $(intermediates)/vintffm.log |
| 4763 | endif |
Yifan Hong | 7a157b0 | 2020-10-20 17:08:11 +0000 | [diff] [blame] | 4764 | check_vintf_all_deps += $(vintffm_log) |
| 4765 | $(vintffm_log): $(HOST_OUT_EXECUTABLES)/vintffm $(check_vintf_system_deps) |
| 4766 | @( $< --check --dirmap /system:$(TARGET_OUT) \ |
| 4767 | $(VINTF_FRAMEWORK_MANIFEST_FROZEN_DIR) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
| 4768 | |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 4769 | $(call declare-1p-target,$(vintffm_log)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4770 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4771 | endif # check_vintf_system_deps |
| 4772 | check_vintf_system_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4773 | |
| 4774 | # -- Check vendor manifest / matrix including fragments (excluding other device manifests / matrices) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4775 | check_vintf_vendor_deps := $(filter $(TARGET_OUT_VENDOR)/etc/vintf/%, $(check_vintf_common_srcs)) |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4776 | check_vintf_vendor_deps += $(filter $(TARGET_OUT_VENDOR)/apex/%, $(check_vintf_common_srcs)) |
| 4777 | ifneq ($(strip $(check_vintf_vendor_deps)),) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4778 | check_vintf_has_vendor := true |
Yifan Hong | fd150d3 | 2021-03-09 12:19:11 -0800 | [diff] [blame] | 4779 | check_vintf_vendor_log := $(intermediates)/check_vintf_vendor.log |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4780 | check_vintf_all_deps += $(check_vintf_vendor_log) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4781 | # Check vendor SKU=(empty) case when: |
| 4782 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 4783 | # - 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] | 4784 | $(check_vintf_vendor_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4785 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 4786 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4787 | $(DEVICE_MANIFEST_SKUS) |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4788 | $(check_vintf_vendor_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_vendor_deps) $(APEX_INFO_FILE) |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4789 | $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4790 | ( $< --check-one --dirmap /vendor:$(TARGET_OUT_VENDOR) --dirmap /apex:$(APEX_OUT) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4791 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 4792 | > $@ 2>&1 ) || ( cat $@ && exit 1 ); ) |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 4793 | $(call declare-1p-target,$(check_vintf_vendor_log)) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4794 | check_vintf_vendor_log := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4795 | endif # check_vintf_vendor_deps |
| 4796 | check_vintf_vendor_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4797 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4798 | # -- Kernel version and configurations. |
| 4799 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
| 4800 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4801 | BUILT_KERNEL_CONFIGS_FILE := $(intermediates)/kernel_configs.txt |
| 4802 | BUILT_KERNEL_VERSION_FILE := $(intermediates)/kernel_version.txt |
| 4803 | |
| 4804 | my_board_extracted_kernel := |
| 4805 | |
| 4806 | # BOARD_KERNEL_CONFIG_FILE and BOARD_KERNEL_VERSION can be used to override the values extracted |
| 4807 | # from INSTALLED_KERNEL_TARGET. |
| 4808 | ifdef BOARD_KERNEL_CONFIG_FILE |
| 4809 | ifdef BOARD_KERNEL_VERSION |
| 4810 | $(BUILT_KERNEL_CONFIGS_FILE): $(BOARD_KERNEL_CONFIG_FILE) |
| 4811 | cp $< $@ |
| 4812 | $(BUILT_KERNEL_VERSION_FILE): |
| 4813 | echo $(BOARD_KERNEL_VERSION) > $@ |
| 4814 | |
Bob Badour | 7cc4e33 | 2023-03-01 10:16:04 -0800 | [diff] [blame] | 4815 | $(call declare-license-metadata,$(BUILT_KERNEL_CONFIGS_FILE),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
| 4816 | $(call declare-license-metadata,$(BUILT_KERNEL_VERSION_FILE),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4817 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4818 | my_board_extracted_kernel := true |
| 4819 | endif # BOARD_KERNEL_VERSION |
| 4820 | endif # BOARD_KERNEL_CONFIG_FILE |
| 4821 | |
| 4822 | ifneq ($(my_board_extracted_kernel),true) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4823 | # Tools for decompression that is not in PATH. |
| 4824 | # Check $(EXTRACT_KERNEL) for decompression algorithms supported by the script. |
| 4825 | # Algorithms that are in the script but not in this list will be found in PATH. |
| 4826 | my_decompress_tools := \ |
| 4827 | lz4:$(HOST_OUT_EXECUTABLES)/lz4 \ |
| 4828 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4829 | endif # my_board_extracted_kernel |
| 4830 | |
| 4831 | ifneq ($(my_board_extracted_kernel),true) |
| 4832 | ifdef INSTALLED_KERNEL_TARGET |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4833 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 4834 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 4835 | $(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] | 4836 | $(BUILT_KERNEL_CONFIGS_FILE): $(EXTRACT_KERNEL) $(firstword $(INSTALLED_KERNEL_TARGET)) |
| 4837 | $< --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(firstword $(INSTALLED_KERNEL_TARGET)) \ |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4838 | --output-configs $@ \ |
Yifan Hong | b95d02e | 2020-11-13 18:33:01 -0800 | [diff] [blame] | 4839 | --output-release $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4840 | |
Bob Badour | 7cc4e33 | 2023-03-01 10:16:04 -0800 | [diff] [blame] | 4841 | $(call declare-license-metadata,$(BUILT_KERNEL_CONFIGS_FILE),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4842 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4843 | my_board_extracted_kernel := true |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4844 | endif # INSTALLED_KERNEL_TARGET |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4845 | endif # my_board_extracted_kernel |
| 4846 | |
| 4847 | ifneq ($(my_board_extracted_kernel),true) |
| 4848 | ifdef INSTALLED_BOOTIMAGE_TARGET |
| 4849 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 4850 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 4851 | $(BUILT_KERNEL_CONFIGS_FILE): $(foreach pair,$(my_decompress_tools),$(call word-colon,2,$(pair))) |
| 4852 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_UNPACKED_BOOTIMG := $(intermediates)/unpacked_bootimage |
| 4853 | $(BUILT_KERNEL_CONFIGS_FILE): \ |
| 4854 | $(HOST_OUT_EXECUTABLES)/unpack_bootimg \ |
| 4855 | $(EXTRACT_KERNEL) \ |
| 4856 | $(INSTALLED_BOOTIMAGE_TARGET) |
| 4857 | $(HOST_OUT_EXECUTABLES)/unpack_bootimg --boot_img $(INSTALLED_BOOTIMAGE_TARGET) --out $(PRIVATE_UNPACKED_BOOTIMG) |
| 4858 | $(EXTRACT_KERNEL) --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(PRIVATE_UNPACKED_BOOTIMG)/kernel \ |
| 4859 | --output-configs $@ \ |
| 4860 | --output-release $(BUILT_KERNEL_VERSION_FILE) |
| 4861 | |
Bob Badour | 7cc4e33 | 2023-03-01 10:16:04 -0800 | [diff] [blame] | 4862 | $(call declare-license-metadata,$(BUILT_KERNEL_CONFIGS_FILE),SPDX-license-identifier-GPL-2.0-only,restricted,$(BUILD_SYSTEM)/LINUX_KERNEL_COPYING,"Kernel",kernel) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4863 | |
Yifan Hong | b162777 | 2021-07-14 15:01:50 -0700 | [diff] [blame] | 4864 | my_board_extracted_kernel := true |
| 4865 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 4866 | endif # my_board_extracted_kernel |
| 4867 | |
| 4868 | ifneq ($(my_board_extracted_kernel),true) |
| 4869 | $(warning Neither INSTALLED_KERNEL_TARGET nor INSTALLED_BOOTIMAGE_TARGET is defined when \ |
| 4870 | PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS is true. Information about the updated kernel \ |
| 4871 | cannot be built into OTA update package. You can fix this by: \ |
| 4872 | (1) setting TARGET_NO_KERNEL to false and installing the built kernel to $(PRODUCT_OUT)/kernel,\ |
| 4873 | so that kernel information will be extracted from the built kernel; or \ |
| 4874 | (2) Add a prebuilt boot image and specify it in BOARD_PREBUILT_BOOTIMAGE; or \ |
| 4875 | (3) extracting kernel configuration and defining BOARD_KERNEL_CONFIG_FILE and \ |
| 4876 | BOARD_KERNEL_VERSION manually; or \ |
| 4877 | (4) unsetting PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS manually.) |
| 4878 | # Clear their values to indicate that these two files does not exist. |
| 4879 | BUILT_KERNEL_CONFIGS_FILE := |
| 4880 | BUILT_KERNEL_VERSION_FILE := |
| 4881 | endif |
| 4882 | |
| 4883 | my_decompress_tools := |
| 4884 | my_board_extracted_kernel := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 4885 | |
Yifan Hong | c0f904e | 2021-03-17 11:25:31 -0700 | [diff] [blame] | 4886 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 4887 | |
| 4888 | # -- Check VINTF compatibility of build. |
| 4889 | # Skip partial builds; only check full builds. Only check if: |
| 4890 | # - PRODUCT_ENFORCE_VINTF_MANIFEST is true |
| 4891 | # - system / vendor VINTF metadata exists |
| 4892 | # - Building product / system_ext / odm images if board has product / system_ext / odm images |
| 4893 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 4894 | ifeq ($(check_vintf_has_system),true) |
| 4895 | ifeq ($(check_vintf_has_vendor),true) |
| 4896 | ifeq ($(filter true,$(BUILDING_ODM_IMAGE)),$(filter true,$(BOARD_USES_ODMIMAGE))) |
| 4897 | ifeq ($(filter true,$(BUILDING_PRODUCT_IMAGE)),$(filter true,$(BOARD_USES_PRODUCTIMAGE))) |
| 4898 | ifeq ($(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),$(filter true,$(BOARD_USES_SYSTEM_EXTIMAGE))) |
| 4899 | |
| 4900 | check_vintf_compatible_log := $(intermediates)/check_vintf_compatible.log |
| 4901 | check_vintf_all_deps += $(check_vintf_compatible_log) |
| 4902 | |
| 4903 | check_vintf_compatible_args := |
Jooyung Han | c9cc48b | 2022-12-16 14:49:43 +0900 | [diff] [blame] | 4904 | check_vintf_compatible_deps := $(check_vintf_common_srcs) $(APEX_INFO_FILE) |
Yifan Hong | c0f904e | 2021-03-17 11:25:31 -0700 | [diff] [blame] | 4905 | |
| 4906 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 4907 | ifneq (,$(BUILT_KERNEL_VERSION_FILE)$(BUILT_KERNEL_CONFIGS_FILE)) |
Yifan Hong | 72e78f2 | 2020-11-13 18:30:06 -0800 | [diff] [blame] | 4908 | 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] | 4909 | check_vintf_compatible_deps += $(BUILT_KERNEL_CONFIGS_FILE) $(BUILT_KERNEL_VERSION_FILE) |
Yifan Hong | 3e061bd | 2021-04-02 16:12:05 -0700 | [diff] [blame] | 4910 | endif # BUILT_KERNEL_VERSION_FILE != "" || BUILT_KERNEL_CONFIGS_FILE != "" |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4911 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 4912 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4913 | check_vintf_compatible_args += \ |
| 4914 | --dirmap /system:$(TARGET_OUT) \ |
| 4915 | --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 4916 | --dirmap /odm:$(TARGET_OUT_ODM) \ |
| 4917 | --dirmap /product:$(TARGET_OUT_PRODUCT) \ |
| 4918 | --dirmap /system_ext:$(TARGET_OUT_SYSTEM_EXT) \ |
Rob Seymour | 3f1c957 | 2022-07-28 21:56:28 +0000 | [diff] [blame] | 4919 | --dirmap /apex:$(APEX_OUT) \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4920 | |
| 4921 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 4922 | check_vintf_compatible_args += --property ro.product.first_api_level=$(PRODUCT_SHIPPING_API_LEVEL) |
| 4923 | endif # PRODUCT_SHIPPING_API_LEVEL |
| 4924 | |
| 4925 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_ARGS := $(check_vintf_compatible_args) |
| 4926 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_DEPS := $(check_vintf_compatible_deps) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4927 | # Check ODM SKU=(empty) case when: |
| 4928 | # - ODM_MANIFEST_FILES is not empty; OR |
| 4929 | # - 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] | 4930 | $(check_vintf_compatible_log): PRIVATE_ODM_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4931 | $(if $(ODM_MANIFEST_FILES),EMPTY_ODM_SKU_PLACEHOLDER,\ |
| 4932 | $(if $(ODM_MANIFEST_SKUS),,EMPTY_ODM_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4933 | $(ODM_MANIFEST_SKUS) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4934 | # Check vendor SKU=(empty) case when: |
| 4935 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 4936 | # - 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] | 4937 | $(check_vintf_compatible_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 4938 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 4939 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4940 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4941 | $(check_vintf_compatible_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_compatible_deps) |
Yifan Hong | 80ab214 | 2021-03-10 18:10:05 -0800 | [diff] [blame] | 4942 | @echo "PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS=$(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS)" > $@ |
| 4943 | @echo -n -e 'Deps: \n ' >> $@ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4944 | @sed 's/ /\n /g' <<< "$(PRIVATE_CHECK_VINTF_DEPS)" >> $@ |
| 4945 | @echo -n -e 'Args: \n ' >> $@ |
| 4946 | @cat <<< "$(PRIVATE_CHECK_VINTF_ARGS)" >> $@ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4947 | $(foreach odm_sku,$(PRIVATE_ODM_SKUS), $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 4948 | echo "For ODM SKU = $(odm_sku), vendor SKU = $(vendor_sku)" >> $@; \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4949 | ( $< --check-compat $(PRIVATE_CHECK_VINTF_ARGS) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4950 | --property ro.boot.product.hardware.sku=$(filter-out EMPTY_ODM_SKU_PLACEHOLDER,$(odm_sku)) \ |
| 4951 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 4952 | >> $@ 2>&1 ) || (cat $@ && exit 1); )) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4953 | |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 4954 | $(call declare-1p-target,$(check_vintf_compatible_log)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 4955 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4956 | check_vintf_compatible_log := |
| 4957 | check_vintf_compatible_args := |
| 4958 | check_vintf_compatible_deps := |
| 4959 | |
| 4960 | endif # BUILDING_SYSTEM_EXT_IMAGE equals BOARD_USES_SYSTEM_EXTIMAGE |
| 4961 | endif # BUILDING_PRODUCT_IMAGE equals BOARD_USES_PRODUCTIMAGE |
| 4962 | endif # BUILDING_ODM_IMAGE equals BOARD_USES_ODMIMAGE |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4963 | endif # check_vintf_has_vendor |
| 4964 | endif # check_vintf_has_system |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4965 | endif # PRODUCT_ENFORCE_VINTF_MANIFEST |
| 4966 | |
| 4967 | # Add all logs of VINTF checks to dist builds |
| 4968 | droid_targets: $(check_vintf_all_deps) |
| 4969 | $(call dist-for-goals, droid_targets, $(check_vintf_all_deps)) |
| 4970 | |
| 4971 | # Helper alias to check all VINTF of current build. |
| 4972 | .PHONY: check-vintf-all |
| 4973 | check-vintf-all: $(check_vintf_all_deps) |
| 4974 | $(foreach file,$^,echo "$(file)"; cat "$(file)"; echo;) |
| 4975 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 4976 | check_vintf_has_vendor := |
| 4977 | check_vintf_has_system := |
| 4978 | check_vintf_common_srcs := |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4979 | check_vintf_all_deps := |
| 4980 | intermediates := |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4981 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 4982 | |
| 4983 | # ----------------------------------------------------------------- |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4984 | # Check image sizes <= size of super partition |
| 4985 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4986 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4987 | |
| 4988 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
Yifan Hong | 37c0c7c | 2018-07-24 17:45:08 -0700 | [diff] [blame] | 4989 | |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 4990 | PARTITIONS_AND_OTHER_IN_SUPER := $(BOARD_SUPER_PARTITION_PARTITION_LIST) |
| 4991 | |
| 4992 | # Add the system other image to the misc_info. Because factory ota may install system_other to the super partition. |
| 4993 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 4994 | PARTITIONS_AND_OTHER_IN_SUPER += system_other |
| 4995 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 4996 | |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4997 | # $(1): misc_info.txt |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 4998 | # #(2): optional log file |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 4999 | define check-all-partition-sizes-target |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5000 | mkdir -p $(dir $(1)) |
| 5001 | rm -f $(1) |
| 5002 | $(call dump-super-image-info, $(1)) |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 5003 | $(foreach partition,$(PARTITIONS_AND_OTHER_IN_SUPER), \ |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5004 | echo "$(partition)_image="$(call images-for-partitions,$(partition)) >> $(1);) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5005 | $(CHECK_PARTITION_SIZES) $(if $(2),--logfile $(2),-v) $(1) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 5006 | endef |
| 5007 | |
Yifan Hong | d11953c | 2021-03-11 14:47:48 -0800 | [diff] [blame] | 5008 | 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] | 5009 | droid_targets: $(check_all_partition_sizes_log) |
| 5010 | $(call dist-for-goals, droid_targets, $(check_all_partition_sizes_log)) |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 5011 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5012 | $(check_all_partition_sizes_log): \ |
| 5013 | $(CHECK_PARTITION_SIZES) \ |
Tianjie | 16bcac1 | 2021-05-13 15:44:43 -0700 | [diff] [blame] | 5014 | $(call images-for-partitions,$(PARTITIONS_AND_OTHER_IN_SUPER)) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5015 | $(call check-all-partition-sizes-target, \ |
| 5016 | $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/misc_info.txt, \ |
| 5017 | $@) |
| 5018 | |
Bob Badour | df0f55e | 2023-03-01 10:34:34 -0800 | [diff] [blame] | 5019 | $(call declare-1p-target,$(check_all_partition_sizes_log)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5020 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 5021 | .PHONY: check-all-partition-sizes |
| 5022 | check-all-partition-sizes: $(check_all_partition_sizes_log) |
| 5023 | |
| 5024 | .PHONY: check-all-partition-sizes-nodeps |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 5025 | check-all-partition-sizes-nodeps: |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5026 | $(call check-all-partition-sizes-target, \ |
| 5027 | $(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] | 5028 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 5029 | endif # PRODUCT_BUILD_SUPER_PARTITION |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 5030 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 5031 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 5032 | |
| 5033 | # ----------------------------------------------------------------- |
Greg Hartman | 2ebfef4 | 2014-11-04 21:17:06 -0800 | [diff] [blame] | 5034 | # bring in the installer image generation defines if necessary |
| 5035 | ifeq ($(TARGET_USE_DISKINSTALLER),true) |
| 5036 | include bootable/diskinstaller/config.mk |
| 5037 | endif |
| 5038 | |
| 5039 | # ----------------------------------------------------------------- |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame] | 5040 | # host tools needed to build dist and OTA packages |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5041 | |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 5042 | ifeq ($(BUILD_OS),darwin) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5043 | build_ota_package := false |
| 5044 | build_otatools_package := false |
| 5045 | else |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5046 | # Set build_ota_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5047 | build_ota_package := true |
| 5048 | ifeq ($(TARGET_SKIP_OTA_PACKAGE),true) |
| 5049 | build_ota_package := false |
| 5050 | endif |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 5051 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5052 | build_ota_package := false |
| 5053 | endif |
| 5054 | ifeq ($(TARGET_PRODUCT),sdk) |
| 5055 | build_ota_package := false |
| 5056 | endif |
Yifan Hong | f32f65c | 2021-07-14 14:19:12 -0700 | [diff] [blame] | 5057 | # A target without a kernel may be one of the following: |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 5058 | # - A generic target. In this case, the OTA package usually isn't built. |
| 5059 | # PRODUCT_BUILD_GENERIC_OTA_PACKAGE may be set to true to force OTA package |
| 5060 | # generation. |
| 5061 | # - A real device target, with TARGET_NO_KERNEL set to true and |
| 5062 | # BOARD_PREBUILT_BOOTIMAGE set. In this case, it is valid to generate |
| 5063 | # an OTA package. |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5064 | ifneq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 5065 | ifneq ($(filter generic%,$(TARGET_DEVICE)),) |
| 5066 | build_ota_package := false |
| 5067 | endif |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 5068 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 5069 | ifeq ($(TARGET_NO_KERNEL),true) |
| 5070 | build_ota_package := false |
| 5071 | endif |
Yifan Hong | 8c1e526 | 2021-07-19 16:35:05 +0000 | [diff] [blame] | 5072 | endif # INSTALLED_BOOTIMAGE_TARGET == "" |
Yifan Hong | bf77787 | 2021-07-19 16:28:49 +0000 | [diff] [blame] | 5073 | ifeq ($(recovery_fstab),) |
| 5074 | build_ota_package := false |
| 5075 | endif |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5076 | endif # PRODUCT_BUILD_GENERIC_OTA_PACKAGE |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5077 | |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 5078 | # Set build_otatools_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5079 | build_otatools_package := true |
| 5080 | ifeq ($(TARGET_SKIP_OTATOOLS_PACKAGE),true) |
| 5081 | build_otatools_package := false |
| 5082 | endif |
Colin Cross | 481cc5a | 2016-02-04 15:09:23 -0800 | [diff] [blame] | 5083 | endif |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 5084 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5085 | ifeq ($(build_otatools_package),true) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5086 | |
| 5087 | INTERNAL_OTATOOLS_MODULES := \ |
changho.shin | 0f12536 | 2019-07-08 10:59:00 +0900 | [diff] [blame] | 5088 | aapt2 \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5089 | add_img_to_target_files \ |
Baligh Uddin | ab25b2d | 2020-05-29 19:01:32 +0000 | [diff] [blame] | 5090 | apksigner \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5091 | append2simg \ |
| 5092 | avbtool \ |
| 5093 | blk_alloc_to_base_fs \ |
| 5094 | boot_signer \ |
| 5095 | brillo_update_payload \ |
| 5096 | brotli \ |
| 5097 | bsdiff \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 5098 | build_image \ |
| 5099 | build_super_image \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5100 | build_verity_metadata \ |
| 5101 | build_verity_tree \ |
| 5102 | care_map_generator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5103 | check_ota_package_signature \ |
| 5104 | check_target_files_signatures \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5105 | check_target_files_vintf \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5106 | checkvintf \ |
| 5107 | delta_generator \ |
| 5108 | e2fsck \ |
| 5109 | e2fsdroid \ |
| 5110 | fc_sort \ |
| 5111 | fec \ |
Woody Lin | e416419 | 2022-03-21 18:29:41 +0800 | [diff] [blame] | 5112 | fsck.erofs \ |
Jaegeuk Kim | 01da65f | 2021-06-08 18:24:46 -0700 | [diff] [blame] | 5113 | fsck.f2fs \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5114 | fs_config \ |
Yi-Yo Chiang | 44fb361 | 2022-01-08 22:19:20 +0800 | [diff] [blame] | 5115 | generate_gki_certificate \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5116 | generate_verity_key \ |
Daniel Norman | ee33b4e | 2020-12-02 16:18:25 -0800 | [diff] [blame] | 5117 | host_init_verifier \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5118 | img2simg \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5119 | img_from_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5120 | imgdiff \ |
Shikha Panwar | d3bef47 | 2023-01-13 08:09:29 +0000 | [diff] [blame] | 5121 | initrd_bootconfig \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5122 | libconscrypt_openjdk_jni \ |
| 5123 | lpmake \ |
Isaac Chen | eec4a7c | 2019-06-25 11:50:58 +0800 | [diff] [blame] | 5124 | lpunpack \ |
Tianjie | 3031c29 | 2020-06-24 11:20:36 -0700 | [diff] [blame] | 5125 | lz4 \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5126 | make_f2fs \ |
Jaegeuk Kim | 8ba4bab | 2020-07-17 20:18:10 -0700 | [diff] [blame] | 5127 | make_f2fs_casefold \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5128 | merge_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5129 | minigzip \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5130 | mk_combined_img \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5131 | mkbootfs \ |
| 5132 | mkbootimg \ |
| 5133 | mke2fs \ |
Baligh Uddin | 6a8234b | 2020-01-29 17:42:59 -0800 | [diff] [blame] | 5134 | mke2fs.conf \ |
Gao Xiang | 961041a | 2020-06-17 13:59:16 +0800 | [diff] [blame] | 5135 | mkfs.erofs \ |
Cole Faust | b000208 | 2022-09-05 18:34:56 -0700 | [diff] [blame] | 5136 | mkf2fsuserimg \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5137 | mksquashfs \ |
Cole Faust | b000208 | 2022-09-05 18:34:56 -0700 | [diff] [blame] | 5138 | mksquashfsimage \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5139 | mkuserimg_mke2fs \ |
Kelvin Zhang | 83eb9f7 | 2022-03-15 11:12:50 -0700 | [diff] [blame] | 5140 | ota_extractor \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 5141 | ota_from_target_files \ |
Bowgo Tsai | 6c37c17 | 2021-02-05 18:01:15 +0800 | [diff] [blame] | 5142 | repack_bootimg \ |
Daniel Norman | 48603ff | 2021-02-22 15:15:24 -0800 | [diff] [blame] | 5143 | secilc \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5144 | sefcontext_compile \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5145 | sgdisk \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5146 | shflags \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5147 | sign_apex \ |
| 5148 | sign_target_files_apks \ |
Jooyung Han | 8caba5e | 2021-10-27 03:58:09 +0900 | [diff] [blame] | 5149 | sign_virt_apex \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5150 | signapk \ |
| 5151 | simg2img \ |
| 5152 | sload_f2fs \ |
Yifan Hong | 125d0b6 | 2020-09-24 17:07:03 -0700 | [diff] [blame] | 5153 | toybox \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5154 | tune2fs \ |
Daniel Mentz | 30652b3 | 2020-01-04 15:18:09 -0800 | [diff] [blame] | 5155 | unpack_bootimg \ |
Tianjie Xu | 4e5591f | 2019-06-11 14:35:59 -0700 | [diff] [blame] | 5156 | update_host_simulator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5157 | validate_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5158 | verity_signer \ |
| 5159 | verity_verifier \ |
| 5160 | zipalign \ |
Kelvin Zhang | b673bbf | 2021-08-20 10:09:20 -0700 | [diff] [blame] | 5161 | zucchini \ |
Kelvin Zhang | 6d366d3 | 2023-02-21 12:42:23 -0800 | [diff] [blame] | 5162 | zip2zip \ |
| 5163 | |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 5164 | |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5165 | # Additional tools to unpack and repack the apex file. |
| 5166 | INTERNAL_OTATOOLS_MODULES += \ |
| 5167 | apexer \ |
Nikita Ioffe | 3608148 | 2021-01-20 01:32:28 +0000 | [diff] [blame] | 5168 | apex_compression_tool \ |
Baligh Uddin | 9170e89 | 2023-01-19 18:20:55 +0000 | [diff] [blame] | 5169 | blkid_static \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5170 | deapexer \ |
| 5171 | debugfs_static \ |
Baligh Uddin | 67ab689 | 2022-10-17 17:17:42 +0000 | [diff] [blame] | 5172 | dump_apex_info \ |
Dennis Shen | 888539c | 2022-11-07 18:53:10 +0000 | [diff] [blame] | 5173 | fsck.erofs \ |
Dennis Shen | 03ef64b | 2023-03-08 15:39:28 +0000 | [diff] [blame] | 5174 | make_erofs \ |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 5175 | merge_zips \ |
| 5176 | resize2fs \ |
| 5177 | soong_zip \ |
| 5178 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5179 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5180 | INTERNAL_OTATOOLS_MODULES += \ |
Aaron Kling | e380321 | 2022-10-20 21:24:23 -0500 | [diff] [blame] | 5181 | futility-host \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5182 | vboot_signer |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 5183 | endif |
Tao Bao | f8e6fbe | 2016-01-04 09:57:32 -0800 | [diff] [blame] | 5184 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5185 | INTERNAL_OTATOOLS_FILES := \ |
| 5186 | $(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] | 5187 | |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 5188 | .PHONY: otatools |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5189 | otatools: $(INTERNAL_OTATOOLS_FILES) |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 5190 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5191 | # For each module, recursively resolve its host shared library dependencies. Then we have a full |
| 5192 | # list of modules whose installed files need to be packed. |
| 5193 | INTERNAL_OTATOOLS_MODULES_WITH_DEPS := \ |
| 5194 | $(sort $(INTERNAL_OTATOOLS_MODULES) \ |
| 5195 | $(foreach m,$(INTERNAL_OTATOOLS_MODULES),$(call get-all-shared-libs-deps,$(m)))) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5196 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5197 | INTERNAL_OTATOOLS_PACKAGE_FILES := \ |
| 5198 | $(filter $(HOST_OUT)/%,$(call module-installed-files,$(INTERNAL_OTATOOLS_MODULES_WITH_DEPS))) |
| 5199 | |
| 5200 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 5201 | $(sort $(shell find build/make/target/product/security -type f -name "*.x509.pem" -o \ |
hungweichen | f1f5dd3 | 2022-08-17 08:01:50 +0000 | [diff] [blame] | 5202 | -name "*.pk8")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5203 | |
Hongguang | 07babe0 | 2022-10-31 17:21:22 -0700 | [diff] [blame] | 5204 | ifneq (,$(wildcard packages/modules)) |
Hongguang | 547812d | 2022-10-31 10:20:14 -0700 | [diff] [blame] | 5205 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 5206 | $(sort $(shell find packages/modules -type f -name "*.x509.pem" -o -name "*.pk8" -o -name \ |
| 5207 | "key.pem")) |
Hongguang | 07babe0 | 2022-10-31 17:21:22 -0700 | [diff] [blame] | 5208 | endif |
Hongguang | 547812d | 2022-10-31 10:20:14 -0700 | [diff] [blame] | 5209 | |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5210 | ifneq (,$(wildcard device)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5211 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Dan Willemsen | 60c6644 | 2018-05-01 19:07:27 -0700 | [diff] [blame] | 5212 | $(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] | 5213 | -name "*.pem" -o -name "oem*.prop" -o -name "*.avbpubkey")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5214 | endif |
| 5215 | ifneq (,$(wildcard external/avb)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5216 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 5217 | $(sort $(shell find external/avb/test/data -type f -name "testkey_*.pem" -o \ |
| 5218 | -name "atx_metadata.bin")) |
| 5219 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5220 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5221 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 5232f09 | 2018-02-10 04:03:32 +0000 | [diff] [blame] | 5222 | $(sort $(shell find external/vboot_reference/tests/devkeys -type f)) |
Tao Bao | e8ef8f70 | 2017-05-17 11:41:50 -0700 | [diff] [blame] | 5223 | endif |
| 5224 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5225 | INTERNAL_OTATOOLS_RELEASETOOLS := \ |
Kelvin Zhang | ed714e0 | 2022-09-22 12:42:24 -0700 | [diff] [blame] | 5226 | $(shell find build/make/tools/releasetools -name "*.pyc" -prune -o \ |
| 5227 | \( -type f -o -type l \) -print | sort) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5228 | |
| 5229 | BUILT_OTATOOLS_PACKAGE := $(PRODUCT_OUT)/otatools.zip |
| 5230 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_ZIP_ROOT := $(call intermediates-dir-for,PACKAGING,otatools)/otatools |
| 5231 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_PACKAGE_FILES := $(INTERNAL_OTATOOLS_PACKAGE_FILES) |
| 5232 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_RELEASETOOLS := $(INTERNAL_OTATOOLS_RELEASETOOLS) |
| 5233 | $(BUILT_OTATOOLS_PACKAGE): $(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS) |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 5234 | $(BUILT_OTATOOLS_PACKAGE): $(SOONG_ZIP) $(ZIP2ZIP) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5235 | @echo "Package OTA tools: $@" |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5236 | rm -rf $@ $(PRIVATE_ZIP_ROOT) |
| 5237 | mkdir -p $(dir $@) |
| 5238 | $(call copy-files-with-structure,$(PRIVATE_OTATOOLS_PACKAGE_FILES),$(HOST_OUT)/,$(PRIVATE_ZIP_ROOT)) |
| 5239 | $(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] | 5240 | cp $(SOONG_ZIP) $(ZIP2ZIP) $(MERGE_ZIPS) $(PRIVATE_ZIP_ROOT)/bin/ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 5241 | $(SOONG_ZIP) -o $@ -C $(PRIVATE_ZIP_ROOT) -D $(PRIVATE_ZIP_ROOT) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5242 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5243 | $(call declare-1p-container,$(BUILT_OTATOOLS_PACKAGE),build) |
| 5244 | $(call declare-container-license-deps,$(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS),$(BUILT_OTATOOLS_PACKAGE):) |
| 5245 | |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5246 | .PHONY: otatools-package |
| 5247 | otatools-package: $(BUILT_OTATOOLS_PACKAGE) |
| 5248 | |
Dennis Shen | 5acfb9c | 2023-03-30 12:27:31 +0000 | [diff] [blame^] | 5249 | $(call dist-for-goals, otatools-package, \ |
| 5250 | $(BUILT_OTATOOLS_PACKAGE) \ |
| 5251 | ) |
| 5252 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 5253 | endif # build_otatools_package |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 5254 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5255 | # ----------------------------------------------------------------- |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5256 | # misc_info.txt |
| 5257 | |
| 5258 | INSTALLED_MISC_INFO_TARGET := $(PRODUCT_OUT)/misc_info.txt |
| 5259 | |
| 5260 | ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),) |
| 5261 | # default to common dir for device vendor |
| 5262 | tool_extensions := $(TARGET_DEVICE_DIR)/../common |
| 5263 | else |
| 5264 | tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) |
| 5265 | endif |
| 5266 | .KATI_READONLY := tool_extensions |
| 5267 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 5268 | # $1: boot image file name |
| 5269 | define misc_boot_size |
| 5270 | $(subst .img,_size,$(1))=$(BOARD_KERNEL$(call to-upper,$(subst boot,,$(subst .img,,$(1))))_BOOTIMAGE_PARTITION_SIZE) |
| 5271 | endef |
| 5272 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5273 | $(INSTALLED_MISC_INFO_TARGET): |
| 5274 | rm -f $@ |
| 5275 | $(call pretty,"Target misc_info.txt: $@") |
| 5276 | $(hide) echo "recovery_api_version=$(RECOVERY_API_VERSION)" >> $@ |
| 5277 | $(hide) echo "fstab_version=$(RECOVERY_FSTAB_VERSION)" >> $@ |
| 5278 | ifdef BOARD_FLASH_BLOCK_SIZE |
| 5279 | $(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $@ |
| 5280 | endif |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 5281 | ifneq ($(strip $(BOARD_BOOTIMAGE_PARTITION_SIZE))$(strip $(BOARD_KERNEL_BINARIES)),) |
| 5282 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),\ |
| 5283 | echo "$(call misc_boot_size,$(notdir $(b)))" >> $@;) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5284 | endif |
| 5285 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 5286 | $(hide) echo "no_boot=true" >> $@ |
Steve Muckle | 9793cf6 | 2020-04-08 18:27:00 -0700 | [diff] [blame] | 5287 | else |
| 5288 | echo "boot_images=$(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(notdir $(b)))" >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5289 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5290 | ifneq ($(INSTALLED_INIT_BOOT_IMAGE_TARGET),) |
| 5291 | $(hide) echo "init_boot=true" >> $@ |
| 5292 | $(hide) echo "init_boot_size=$(BOARD_INIT_BOOT_IMAGE_PARTITION_SIZE)" >> $@ |
| 5293 | endif |
J. Avila | 98cd4cc | 2020-06-10 20:09:10 +0000 | [diff] [blame] | 5294 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 5295 | echo "lz4_ramdisks=true" >> $@ |
| 5296 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5297 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 5298 | echo "vendor_boot=true" >> $@ |
| 5299 | echo "vendor_boot_size=$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 5300 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5301 | ifneq ($(INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET),) |
| 5302 | echo "vendor_kernel_boot=true" >> $@ |
| 5303 | echo "vendor_kernel_boot_size=$(BOARD_VENDOR_KERNEL_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 5304 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5305 | ifeq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 5306 | $(hide) echo "no_recovery=true" >> $@ |
| 5307 | endif |
| 5308 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
| 5309 | $(hide) echo "include_recovery_dtbo=true" >> $@ |
| 5310 | endif |
| 5311 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 5312 | $(hide) echo "include_recovery_acpio=true" >> $@ |
| 5313 | endif |
| 5314 | ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE |
| 5315 | $(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $@ |
| 5316 | endif |
| 5317 | ifdef TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS |
| 5318 | @# TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS can be empty to indicate that nothing but defaults should be used. |
| 5319 | $(hide) echo "recovery_mount_options=$(TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 5320 | else |
| 5321 | $(hide) echo "recovery_mount_options=$(DEFAULT_TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 5322 | endif |
| 5323 | $(hide) echo "tool_extensions=$(tool_extensions)" >> $@ |
| 5324 | $(hide) echo "default_system_dev_certificate=$(DEFAULT_SYSTEM_DEV_CERTIFICATE)" >> $@ |
Jacky Liu | beb0b69 | 2021-12-29 16:29:05 +0800 | [diff] [blame] | 5325 | ifdef PRODUCT_EXTRA_OTA_KEYS |
| 5326 | $(hide) echo "extra_ota_keys=$(PRODUCT_EXTRA_OTA_KEYS)" >> $@ |
| 5327 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5328 | ifdef PRODUCT_EXTRA_RECOVERY_KEYS |
| 5329 | $(hide) echo "extra_recovery_keys=$(PRODUCT_EXTRA_RECOVERY_KEYS)" >> $@ |
| 5330 | endif |
| 5331 | $(hide) echo 'mkbootimg_args=$(BOARD_MKBOOTIMG_ARGS)' >> $@ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 5332 | $(hide) echo 'recovery_mkbootimg_args=$(BOARD_RECOVERY_MKBOOTIMG_ARGS)' >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5333 | $(hide) echo 'mkbootimg_version_args=$(INTERNAL_MKBOOTIMG_VERSION_ARGS)' >> $@ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5334 | $(hide) echo 'mkbootimg_init_args=$(BOARD_MKBOOTIMG_INIT_ARGS)' >> $@ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 5335 | ifdef BOARD_GKI_SIGNING_KEY_PATH |
| 5336 | $(hide) echo 'gki_signing_key_path=$(BOARD_GKI_SIGNING_KEY_PATH)' >> $@ |
| 5337 | $(hide) echo 'gki_signing_algorithm=$(BOARD_GKI_SIGNING_ALGORITHM)' >> $@ |
Bowgo Tsai | 27c39b0 | 2021-03-12 21:40:32 +0800 | [diff] [blame] | 5338 | $(hide) echo 'gki_signing_signature_args=$(BOARD_GKI_SIGNING_SIGNATURE_ARGS)' >> $@ |
| 5339 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5340 | $(hide) echo "multistage_support=1" >> $@ |
| 5341 | $(hide) echo "blockimgdiff_versions=3,4" >> $@ |
| 5342 | ifeq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 5343 | $(hide) echo "build_generic_ota_package=true" >> $@ |
| 5344 | endif |
| 5345 | ifneq ($(OEM_THUMBPRINT_PROPERTIES),) |
| 5346 | # OTA scripts are only interested in fingerprint related properties |
| 5347 | $(hide) echo "oem_fingerprint_properties=$(OEM_THUMBPRINT_PROPERTIES)" >> $@ |
| 5348 | endif |
| 5349 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
| 5350 | # We need to create userdata.img with real data because the instrumented libraries are in userdata.img. |
| 5351 | $(hide) echo "userdata_img_with_data=true" >> $@ |
| 5352 | endif |
| 5353 | ifeq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
| 5354 | $(hide) echo "full_recovery_image=true" >> $@ |
| 5355 | endif |
Bill Peckham | e868aec | 2019-09-17 17:06:47 -0700 | [diff] [blame] | 5356 | ifdef BOARD_USES_VENDORIMAGE |
| 5357 | $(hide) echo "board_uses_vendorimage=true" >> $@ |
| 5358 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5359 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 8218225 | 2020-11-13 11:28:17 +0800 | [diff] [blame] | 5360 | ifeq ($(BUILDING_VBMETA_IMAGE),true) |
| 5361 | $(hide) echo "avb_building_vbmeta_image=true" >> $@ |
| 5362 | endif # BUILDING_VBMETA_IMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5363 | $(hide) echo "avb_enable=true" >> $@ |
| 5364 | $(hide) echo "avb_vbmeta_key_path=$(BOARD_AVB_KEY_PATH)" >> $@ |
| 5365 | $(hide) echo "avb_vbmeta_algorithm=$(BOARD_AVB_ALGORITHM)" >> $@ |
| 5366 | $(hide) echo "avb_vbmeta_args=$(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS)" >> $@ |
| 5367 | $(hide) echo "avb_boot_add_hash_footer_args=$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5368 | ifdef BOARD_AVB_BOOT_KEY_PATH |
| 5369 | $(hide) echo "avb_boot_key_path=$(BOARD_AVB_BOOT_KEY_PATH)" >> $@ |
| 5370 | $(hide) echo "avb_boot_algorithm=$(BOARD_AVB_BOOT_ALGORITHM)" >> $@ |
| 5371 | $(hide) echo "avb_boot_rollback_index_location=$(BOARD_AVB_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5372 | endif # BOARD_AVB_BOOT_KEY_PATH |
Yi-Yo Chiang | 33f973f | 2022-01-08 22:11:17 +0800 | [diff] [blame] | 5373 | $(hide) echo "avb_init_boot_add_hash_footer_args=$(BOARD_AVB_INIT_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5374 | ifdef BOARD_AVB_INIT_BOOT_KEY_PATH |
| 5375 | $(hide) echo "avb_init_boot_key_path=$(BOARD_AVB_INIT_BOOT_KEY_PATH)" >> $@ |
| 5376 | $(hide) echo "avb_init_boot_algorithm=$(BOARD_AVB_INIT_BOOT_ALGORITHM)" >> $@ |
| 5377 | $(hide) echo "avb_init_boot_rollback_index_location=$(BOARD_AVB_INIT_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5378 | endif # BOARD_AVB_INIT_BOOT_KEY_PATH |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5379 | echo "avb_vendor_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5380 | ifdef BOARD_AVB_VENDOR_BOOT_KEY_PATH |
| 5381 | echo "avb_vendor_boot_key_path=$(BOARD_AVB_VENDOR_BOOT_KEY_PATH)" >> $@ |
| 5382 | echo "avb_vendor_boot_algorithm=$(BOARD_AVB_VENDOR_BOOT_ALGORITHM)" >> $@ |
| 5383 | echo "avb_vendor_boot_rollback_index_location=$(BOARD_AVB_VENDOR_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5384 | endif # BOARD_AVB_VENDOR_BOOT_KEY_PATH |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5385 | echo "avb_vendor_kernel_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5386 | ifdef BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH |
| 5387 | echo "avb_vendor_kernel_boot_key_path=$(BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH)" >> $@ |
| 5388 | echo "avb_vendor_kernel_boot_algorithm=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ALGORITHM)" >> $@ |
| 5389 | echo "avb_vendor_kernel_boot_rollback_index_location=$(BOARD_AVB_VENDOR_KERNEL_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5390 | endif # BOARD_AVB_VENDOR_KERNEL_BOOT_KEY_PATH |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5391 | $(hide) echo "avb_recovery_add_hash_footer_args=$(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5392 | ifdef BOARD_AVB_RECOVERY_KEY_PATH |
| 5393 | $(hide) echo "avb_recovery_key_path=$(BOARD_AVB_RECOVERY_KEY_PATH)" >> $@ |
| 5394 | $(hide) echo "avb_recovery_algorithm=$(BOARD_AVB_RECOVERY_ALGORITHM)" >> $@ |
| 5395 | $(hide) echo "avb_recovery_rollback_index_location=$(BOARD_AVB_RECOVERY_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5396 | endif # BOARD_AVB_RECOVERY_KEY_PATH |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5397 | ifneq (,$(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST))) |
| 5398 | $(hide) echo "avb_custom_images_partition_list=$(BOARD_CUSTOMIMAGES_PARTITION_LIST)" >> $@ |
| 5399 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 5400 | echo "avb_$(partition)_key_path=$(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH)" >> $@; \ |
| 5401 | echo "avb_$(partition)_algorithm=$(BOARD_AVB_$(call to-upper,$(partition))_ALGORITHM)" >> $@; \ |
| 5402 | echo "avb_$(partition)_add_hashtree_footer_args=$(BOARD_AVB_$(call to-upper,$(partition))_ADD_HASHTREE_FOOTER_ARGS)" >> $@; \ |
| 5403 | echo "avb_$(partition)_rollback_index_location=$(BOARD_AVB_$(call to-upper,$(partition))_ROLLBACK_INDEX_LOCATION)" >> $@; \ |
| 5404 | echo "avb_$(partition)_partition_size=$(BOARD_AVB_$(call to-upper,$(partition))_PARTITION_SIZE)" >> $@; \ |
| 5405 | echo "avb_$(partition)_image_list=$(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),$(notdir $(image)))" >> $@;) |
| 5406 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5407 | ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) |
| 5408 | $(hide) echo "avb_vbmeta_system=$(BOARD_AVB_VBMETA_SYSTEM)" >> $@ |
| 5409 | $(hide) echo "avb_vbmeta_system_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 5410 | $(hide) echo "avb_vbmeta_system_key_path=$(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH)" >> $@ |
| 5411 | $(hide) echo "avb_vbmeta_system_algorithm=$(BOARD_AVB_VBMETA_SYSTEM_ALGORITHM)" >> $@ |
| 5412 | $(hide) echo "avb_vbmeta_system_rollback_index_location=$(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5413 | endif # BOARD_AVB_VBMETA_SYSTEM |
| 5414 | ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) |
| 5415 | $(hide) echo "avb_vbmeta_vendor=$(BOARD_AVB_VBMETA_VENDOR)" >> $@ |
Bowgo Tsai | c85a201 | 2022-06-07 11:36:35 +0800 | [diff] [blame] | 5416 | $(hide) echo "avb_vbmeta_vendor_args=$(BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS)" >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5417 | $(hide) echo "avb_vbmeta_vendor_key_path=$(BOARD_AVB_VBMETA_VENDOR_KEY_PATH)" >> $@ |
| 5418 | $(hide) echo "avb_vbmeta_vendor_algorithm=$(BOARD_AVB_VBMETA_VENDOR_ALGORITHM)" >> $@ |
| 5419 | $(hide) echo "avb_vbmeta_vendor_rollback_index_location=$(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5420 | endif # BOARD_AVB_VBMETA_VENDOR_KEY_PATH |
Kelvin Zhang | b81b4e3 | 2023-01-10 10:37:56 -0800 | [diff] [blame] | 5421 | ifneq (,$(strip $(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS))) |
| 5422 | $(hide) echo "avb_custom_vbmeta_images_partition_list=$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS)" >> $@ |
| 5423 | $(hide) $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS),\ |
| 5424 | echo "avb_vbmeta_$(partition)=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition)))" >> $@ ;\ |
| 5425 | echo "avb_vbmeta_$(partition)_args=$(BOARD_AVB_MAKE_VBMETA_$(call to-upper,$(partition))_IMAGE_ARGS)" >> $@ ;\ |
| 5426 | echo "avb_vbmeta_$(partition)_key_path=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_KEY_PATH)" >> $@ ;\ |
| 5427 | echo "avb_vbmeta_$(partition)_algorithm=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_ALGORITHM)" >> $@ ;\ |
| 5428 | echo "avb_vbmeta_$(partition)_rollback_index_location=$(BOARD_AVB_VBMETA_$(call to-upper,$(partition))_ROLLBACK_INDEX_LOCATION)" >> $@ ;) |
| 5429 | endif # BOARD_AVB_VBMETA_CUSTOM_PARTITIONS |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5430 | endif # BOARD_AVB_ENABLE |
| 5431 | ifdef BOARD_BPT_INPUT_FILES |
| 5432 | $(hide) echo "board_bpt_enable=true" >> $@ |
| 5433 | $(hide) echo "board_bpt_make_table_args=$(BOARD_BPT_MAKE_TABLE_ARGS)" >> $@ |
| 5434 | $(hide) echo "board_bpt_input_files=$(BOARD_BPT_INPUT_FILES)" >> $@ |
| 5435 | endif |
| 5436 | ifdef BOARD_BPT_DISK_SIZE |
| 5437 | $(hide) echo "board_bpt_disk_size=$(BOARD_BPT_DISK_SIZE)" >> $@ |
| 5438 | endif |
| 5439 | $(call generate-userimage-prop-dictionary, $@) |
| 5440 | ifeq ($(AB_OTA_UPDATER),true) |
| 5441 | @# Include the build type in META/misc_info.txt so the server can easily differentiate production builds. |
| 5442 | $(hide) echo "build_type=$(TARGET_BUILD_VARIANT)" >> $@ |
| 5443 | $(hide) echo "ab_update=true" >> $@ |
| 5444 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5445 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
| 5446 | $(hide) echo "allow_non_ab=true" >> $@ |
| 5447 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5448 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 5449 | $(hide) echo "has_dtbo=true" >> $@ |
| 5450 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 5451 | $(hide) echo "dtbo_size=$(BOARD_DTBOIMG_PARTITION_SIZE)" >> $@ |
| 5452 | $(hide) echo "avb_dtbo_add_hash_footer_args=$(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5453 | ifdef BOARD_AVB_DTBO_KEY_PATH |
| 5454 | $(hide) echo "avb_dtbo_key_path=$(BOARD_AVB_DTBO_KEY_PATH)" >> $@ |
| 5455 | $(hide) echo "avb_dtbo_algorithm=$(BOARD_AVB_DTBO_ALGORITHM)" >> $@ |
| 5456 | $(hide) echo "avb_dtbo_rollback_index_location=$(BOARD_AVB_DTBO_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5457 | endif # BOARD_AVB_DTBO_KEY_PATH |
| 5458 | endif # BOARD_AVB_ENABLE |
| 5459 | endif # BOARD_PREBUILT_DTBOIMAGE |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 5460 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5461 | $(hide) echo "has_pvmfw=true" >> $@ |
| 5462 | ifeq ($(BOARD_AVB_ENABLE),true) |
Pierre-Clément Tosi | 592a3ca | 2021-10-04 11:34:11 +0200 | [diff] [blame] | 5463 | $(hide) echo "pvmfw_size=$(BOARD_PVMFWIMAGE_PARTITION_SIZE)" >> $@ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5464 | $(hide) echo "avb_pvmfw_add_hash_footer_args=$(BOARD_AVB_PVMFW_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 5465 | ifdef BOARD_AVB_PVMFW_KEY_PATH |
| 5466 | $(hide) echo "avb_pvmfw_key_path=$(BOARD_AVB_PVMFW_KEY_PATH)" >> $@ |
| 5467 | $(hide) echo "avb_pvmfw_algorithm=$(BOARD_AVB_PVMFW_ALGORITHM)" >> $@ |
| 5468 | $(hide) echo "avb_pvmfw_rollback_index_location=$(BOARD_AVB_PVMFW_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 5469 | endif # BOARD_AVB_PVMFW_KEY_PATH |
| 5470 | endif # BOARD_AVB_ENABLE |
Pierre-Clément Tosi | 88648d3 | 2021-09-24 15:41:13 +0200 | [diff] [blame] | 5471 | endif # BOARD_USES_PVMFWIMAGE |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5472 | $(call dump-dynamic-partitions-info,$@) |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5473 | @# VINTF checks |
| 5474 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 5475 | $(hide) echo "vintf_enforce=true" >> $@ |
| 5476 | endif |
| 5477 | ifdef ODM_MANIFEST_SKUS |
| 5478 | $(hide) echo "vintf_odm_manifest_skus=$(ODM_MANIFEST_SKUS)" >> $@ |
| 5479 | endif |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 5480 | ifdef ODM_MANIFEST_FILES |
| 5481 | $(hide) echo "vintf_include_empty_odm_sku=true" >> $@ |
| 5482 | endif |
| 5483 | ifdef DEVICE_MANIFEST_SKUS |
| 5484 | $(hide) echo "vintf_vendor_manifest_skus=$(DEVICE_MANIFEST_SKUS)" >> $@ |
| 5485 | endif |
| 5486 | ifdef DEVICE_MANIFEST_FILE |
| 5487 | $(hide) echo "vintf_include_empty_vendor_sku=true" >> $@ |
| 5488 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5489 | ifeq ($(BOARD_BOOTLOADER_IN_UPDATE_PACKAGE),true) |
| 5490 | $(hide) echo "bootloader_in_update_package=true" >> $@ |
| 5491 | endif |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 5492 | ifeq ($(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE),true) |
| 5493 | $(hide) echo "exclude_kernel_from_recovery_image=true" >> $@ |
| 5494 | endif |
Kelvin Zhang | 5a65f69 | 2020-11-03 16:40:18 -0500 | [diff] [blame] | 5495 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
| 5496 | $(hide) echo "partial_ota_update_partitions_list=$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)" >> $@ |
| 5497 | endif |
Jose Galmes | 9c8f6eb | 2021-07-21 09:34:08 -0700 | [diff] [blame] | 5498 | ifeq ($(BUILDING_WITH_VSDK),true) |
| 5499 | $(hide) echo "building_with_vsdk=true" >> $@ |
| 5500 | endif |
| 5501 | ifeq ($(TARGET_FLATTEN_APEX),false) |
| 5502 | $(hide) echo "target_flatten_apex=false" >> $@ |
| 5503 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5504 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 5505 | $(call declare-0p-target,$(INSTALLED_MISC_INFO_TARGET)) |
| 5506 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5507 | .PHONY: misc_info |
| 5508 | misc_info: $(INSTALLED_MISC_INFO_TARGET) |
| 5509 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5510 | droidcore-unbundled: $(INSTALLED_MISC_INFO_TARGET) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5511 | |
| 5512 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5513 | # A zip of the directories that map to the target filesystem. |
| 5514 | # This zip can be used to create an OTA package or filesystem image |
| 5515 | # as a post-build step. |
| 5516 | # |
| 5517 | name := $(TARGET_PRODUCT) |
| 5518 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5519 | name := $(name)_debug |
| 5520 | endif |
| 5521 | name := $(name)-target_files-$(FILE_NAME_TAG) |
| 5522 | |
| 5523 | intermediates := $(call intermediates-dir-for,PACKAGING,target_files) |
| 5524 | BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip |
| 5525 | $(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates) |
| 5526 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5527 | zip_root := $(intermediates)/$(name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5528 | |
| 5529 | # $(1): Directory to copy |
| 5530 | # $(2): Location to copy it to |
| 5531 | # The "ls -A" is to prevent "acp s/* d" from failing if s is empty. |
| 5532 | define package_files-copy-root |
| 5533 | if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \ |
| 5534 | mkdir -p $(2) && \ |
| 5535 | $(ACP) -rd $(strip $(1))/* $(2); \ |
| 5536 | fi |
| 5537 | endef |
| 5538 | |
Tao Bao | a04fca3 | 2015-11-30 12:22:24 -0800 | [diff] [blame] | 5539 | built_ota_tools := |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 5540 | |
| 5541 | # We can't build static executables when SANITIZE_TARGET=address |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 5542 | ifeq (,$(filter address, $(SANITIZE_TARGET))) |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 5543 | built_ota_tools += \ |
Elliott Hughes | 9b824d5 | 2020-04-17 15:46:55 -0700 | [diff] [blame] | 5544 | $(call intermediates-dir-for,EXECUTABLES,updater)/updater |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 5545 | endif |
| 5546 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5547 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools) |
| 5548 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5549 | tool_extension := $(wildcard $(tool_extensions)/releasetools.py) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5550 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_TOOL_EXTENSION := $(tool_extension) |
Doug Zongker | c18736b | 2009-09-30 09:20:32 -0700 | [diff] [blame] | 5551 | |
HÃ¥kan Kvist | 8cabc71 | 2022-05-02 07:43:34 +0200 | [diff] [blame] | 5552 | updater_dep := |
Sen Jiang | 4438fd9 | 2016-03-07 16:51:01 -0800 | [diff] [blame] | 5553 | ifeq ($(AB_OTA_UPDATER),true) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 5554 | updater_dep += system/update_engine/update_engine.conf |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5555 | $(call declare-1p-target,system/update_engine/update_engine.conf,system/update_engine) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 5556 | updater_dep += external/zucchini/version_info.h |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 5557 | $(call declare-license-metadata,external/zucchini/version_info.h,legacy_notice,notice,external/zucchini/LICENSE,external/zucchini) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 5558 | updater_dep += $(HOST_OUT_SHARED_LIBRARIES)/liblz4.so |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5559 | endif |
| 5560 | |
| 5561 | # Build OTA tools if non-A/B is allowed |
| 5562 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 5563 | updater_dep += $(built_ota_tools) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5564 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 5565 | |
Shinichiro Hamaji | ee2d211 | 2016-05-10 16:40:38 +0900 | [diff] [blame] | 5566 | $(BUILT_TARGET_FILES_PACKAGE): $(updater_dep) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 5567 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5568 | # If we are using recovery as boot, output recovery files to BOOT/. |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 5569 | # 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] | 5570 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 5571 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := BOOT |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 5572 | else ifeq ($(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT),true) |
| 5573 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := VENDOR_BOOT |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5574 | else |
| 5575 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := RECOVERY |
| 5576 | endif |
| 5577 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5578 | ifeq ($(AB_OTA_UPDATER),true) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5579 | ifdef OSRELEASED_DIRECTORY |
| 5580 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id |
| 5581 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version |
| 5582 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_ETC)/$(OSRELEASED_DIRECTORY)/system_version |
| 5583 | endif |
Tao Bao | a835f38 | 2019-07-18 15:55:30 -0700 | [diff] [blame] | 5584 | |
| 5585 | # Not checking in board_config.mk, since AB_OTA_PARTITIONS may be updated in Android.mk (e.g. to |
| 5586 | # additionally include radio or bootloader partitions). |
| 5587 | ifeq ($(AB_OTA_PARTITIONS),) |
| 5588 | $(error AB_OTA_PARTITIONS must be defined when using AB_OTA_UPDATER) |
| 5589 | endif |
| 5590 | endif |
| 5591 | |
| 5592 | ifneq ($(AB_OTA_PARTITIONS),) |
| 5593 | ifneq ($(AB_OTA_UPDATER),true) |
| 5594 | $(error AB_OTA_UPDATER must be true when defining AB_OTA_PARTITIONS) |
| 5595 | endif |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5596 | endif |
| 5597 | |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 5598 | # Run fs_config while creating the target files package |
| 5599 | # $1: root directory |
| 5600 | # $2: add prefix |
| 5601 | define fs_config |
Luis Hector Chavez | 440da2d | 2018-02-07 09:49:52 -0800 | [diff] [blame] | 5602 | (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] | 5603 | endef |
| 5604 | |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 5605 | define filter-out-missing-vendor |
| 5606 | $(if $(INSTALLED_VENDORIMAGE_TARGET),$(1),$(filter-out vendor,$(1))) |
| 5607 | endef |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5608 | define filter-out-missing-vendor_dlkm |
| 5609 | $(if $(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(1),$(filter-out vendor_dlkm,$(1))) |
| 5610 | endef |
| 5611 | define filter-out-missing-odm |
| 5612 | $(if $(INSTALLED_ODMIMAGE_TARGET),$(1),$(filter-out odm,$(1))) |
| 5613 | endef |
| 5614 | define filter-out-missing-odm_dlkm |
| 5615 | $(if $(INSTALLED_ODM_DLKMIMAGE_TARGET),$(1),$(filter-out odm_dlkm,$(1))) |
| 5616 | endef |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5617 | define filter-out-missing-system_dlkm |
| 5618 | $(if $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET),$(1),$(filter-out system_dlkm,$(1))) |
| 5619 | endef |
| 5620 | # Filter out vendor,vendor_dlkm,odm,odm_dlkm,system_dlkm from the list for AOSP targets. |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5621 | # $(1): list |
| 5622 | define filter-out-missing-partitions |
| 5623 | $(call filter-out-missing-vendor,\ |
| 5624 | $(call filter-out-missing-vendor_dlkm,\ |
| 5625 | $(call filter-out-missing-odm,\ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5626 | $(call filter-out-missing-odm_dlkm,\ |
| 5627 | $(call filter-out-missing-system_dlkm,$(1)))))) |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5628 | endef |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 5629 | |
| 5630 | # Information related to dynamic partitions and virtual A/B. This information |
| 5631 | # is needed for building the super image (see dump-super-image-info) and |
| 5632 | # building OTA packages. |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5633 | # $(1): file |
| 5634 | define dump-dynamic-partitions-info |
| 5635 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)), \ |
| 5636 | echo "use_dynamic_partitions=true" >> $(1)) |
| 5637 | $(if $(filter true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)), \ |
| 5638 | echo "dynamic_partition_retrofit=true" >> $(1)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 5639 | echo "lpmake=$(notdir $(LPMAKE))" >> $(1) |
| 5640 | $(if $(filter true,$(PRODUCT_BUILD_SUPER_PARTITION)), $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 5641 | echo "build_super_partition=true" >> $(1))) |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 5642 | $(if $(BUILDING_SUPER_EMPTY_IMAGE), \ |
| 5643 | echo "build_super_empty_partition=true" >> $(1)) |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 5644 | $(if $(filter true,$(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE)), \ |
| 5645 | echo "build_retrofit_dynamic_partitions_ota_package=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5646 | echo "super_metadata_device=$(BOARD_SUPER_PARTITION_METADATA_DEVICE)" >> $(1) |
| 5647 | $(if $(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 5648 | echo "super_block_devices=$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)" >> $(1)) |
| 5649 | $(foreach device,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 5650 | echo "super_$(device)_device_size=$(BOARD_SUPER_PARTITION_$(call to-upper,$(device))_DEVICE_SIZE)" >> $(1);) |
| 5651 | $(if $(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5652 | 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] | 5653 | $(if $(BOARD_SUPER_PARTITION_GROUPS), |
| 5654 | echo "super_partition_groups=$(BOARD_SUPER_PARTITION_GROUPS)" >> $(1)) |
| 5655 | $(foreach group,$(BOARD_SUPER_PARTITION_GROUPS), \ |
| 5656 | echo "super_$(group)_group_size=$(BOARD_$(call to-upper,$(group))_SIZE)" >> $(1); \ |
| 5657 | $(if $(BOARD_$(call to-upper,$(group))_PARTITION_LIST), \ |
Petri Gynther | 09865a4 | 2021-03-10 18:23:39 -0800 | [diff] [blame] | 5658 | 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] | 5659 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)), \ |
| 5660 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 5661 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)), \ |
| 5662 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5663 | $(if $(filter true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)), \ |
| 5664 | echo "super_image_in_update_package=true" >> $(1)) |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 5665 | $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 5666 | echo "super_partition_size=$(BOARD_SUPER_PARTITION_SIZE)" >> $(1)) |
| 5667 | $(if $(BOARD_SUPER_PARTITION_ALIGNMENT), \ |
| 5668 | echo "super_partition_alignment=$(BOARD_SUPER_PARTITION_ALIGNMENT)" >> $(1)) |
| 5669 | $(if $(BOARD_SUPER_PARTITION_WARN_LIMIT), \ |
| 5670 | echo "super_partition_warn_limit=$(BOARD_SUPER_PARTITION_WARN_LIMIT)" >> $(1)) |
| 5671 | $(if $(BOARD_SUPER_PARTITION_ERROR_LIMIT), \ |
| 5672 | echo "super_partition_error_limit=$(BOARD_SUPER_PARTITION_ERROR_LIMIT)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 5673 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA)), \ |
| 5674 | echo "virtual_ab=true" >> $(1)) |
Kelvin Zhang | 239a79a | 2021-01-15 13:47:52 -0500 | [diff] [blame] | 5675 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_COMPRESSION)), \ |
| 5676 | echo "virtual_ab_compression=true" >> $(1)) |
Kelvin Zhang | fa91e98 | 2022-02-09 11:19:16 -0800 | [diff] [blame] | 5677 | # This value controls the compression algorithm used for VABC |
| 5678 | # valid options are defined in system/core/fs_mgr/libsnapshot/cow_writer.cpp |
| 5679 | # e.g. "none", "gz", "brotli" |
| 5680 | $(if $(PRODUCT_VIRTUAL_AB_COMPRESSION_METHOD), \ |
| 5681 | echo "virtual_ab_compression_method=$(PRODUCT_VIRTUAL_AB_COMPRESSION_METHOD)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 5682 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA_RETROFIT)), \ |
| 5683 | echo "virtual_ab_retrofit=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5684 | endef |
| 5685 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 5686 | # By conditionally including the dependency of the target files package on the |
| 5687 | # full system image deps, we speed up builds that do not build the system |
| 5688 | # image. |
| 5689 | ifdef BUILDING_SYSTEM_IMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5690 | $(BUILT_TARGET_FILES_PACKAGE): $(FULL_SYSTEMIMAGE_DEPS) |
Yi-Yo Chiang | 9b25841 | 2022-01-04 00:05:11 +0800 | [diff] [blame] | 5691 | else |
| 5692 | # releasetools may need the system build.prop even when building a |
| 5693 | # system-image-less product. |
| 5694 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BUILD_PROP_TARGET) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5695 | endif |
| 5696 | |
| 5697 | ifdef BUILDING_USERDATA_IMAGE |
| 5698 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_USERDATAIMAGE_FILES) |
| 5699 | endif |
| 5700 | |
| 5701 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 5702 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEMOTHERIMAGE_FILES) |
| 5703 | endif |
| 5704 | |
| 5705 | ifdef BUILDING_VENDOR_BOOT_IMAGE |
| 5706 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_RAMDISK_FILES) |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 5707 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_RAMDISK_FRAGMENT_TARGETS) |
Devin Moore | 55af506 | 2021-06-09 10:44:44 -0700 | [diff] [blame] | 5708 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) |
Colin Cross | e643120 | 2021-02-24 11:44:55 -0800 | [diff] [blame] | 5709 | # The vendor ramdisk may be built from the recovery ramdisk. |
| 5710 | ifeq (true,$(BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT)) |
| 5711 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RECOVERY_RAMDISK_FILES_TIMESTAMP) |
| 5712 | endif |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5713 | endif |
| 5714 | |
| 5715 | ifdef BUILDING_RECOVERY_IMAGE |
| 5716 | # 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] | 5717 | # BUILT_TARGET_FILES_PACKAGE dependencies because currently there're cp/rsync/rm |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5718 | # commands in build-recoveryimage-target, which would touch the files under |
| 5719 | # TARGET_RECOVERY_OUT and race with packaging target-files.zip. |
| 5720 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 5721 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTIMAGE_TARGET) |
| 5722 | else |
| 5723 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_RECOVERYIMAGE_TARGET) |
| 5724 | endif |
| 5725 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RECOVERYIMAGE_FILES) |
| 5726 | endif |
| 5727 | |
| 5728 | # Conditionally depend on the image files if the image is being built so the |
| 5729 | # target-files.zip rule doesn't wait on the image creation rule, or the image |
| 5730 | # if it is coming from a prebuilt. |
| 5731 | |
| 5732 | ifdef BUILDING_VENDOR_IMAGE |
| 5733 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDORIMAGE_FILES) |
| 5734 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 5735 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_VENDORIMAGE_TARGET) |
| 5736 | endif |
| 5737 | |
| 5738 | ifdef BUILDING_PRODUCT_IMAGE |
| 5739 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_PRODUCTIMAGE_FILES) |
| 5740 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 5741 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_PRODUCTIMAGE_TARGET) |
| 5742 | endif |
| 5743 | |
| 5744 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 5745 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
| 5746 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 5747 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
| 5748 | endif |
| 5749 | |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5750 | ifneq (,$(BUILDING_BOOT_IMAGE)$(BUILDING_INIT_BOOT_IMAGE)) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5751 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RAMDISK_FILES) |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 5752 | endif # BUILDING_BOOT_IMAGE != "" || BUILDING_INIT_BOOT_IMAGE != "" |
| 5753 | |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 5754 | 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] | 5755 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTIMAGE_TARGET) |
| 5756 | endif |
| 5757 | |
| 5758 | ifdef BUILDING_ODM_IMAGE |
| 5759 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_ODMIMAGE_FILES) |
| 5760 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 5761 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_ODMIMAGE_TARGET) |
| 5762 | endif |
| 5763 | |
| 5764 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 5765 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 5766 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5767 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
| 5768 | endif |
| 5769 | |
| 5770 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 5771 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_ODM_DLKMIMAGE_FILES) |
Petri Gynther | 689e11a | 2021-03-10 20:53:23 -0800 | [diff] [blame] | 5772 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5773 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 5774 | endif |
| 5775 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5776 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 5777 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEM_DLKMIMAGE_FILES) |
| 5778 | else ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
| 5779 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) |
| 5780 | endif |
| 5781 | |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5782 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 5783 | MK_VBMETA_BOOT_KERNEL_CMDLINE_SH := device/generic/goldfish/tools/mk_vbmeta_boot_params.sh |
| 5784 | $(BUILT_TARGET_FILES_PACKAGE): $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5785 | endif |
| 5786 | |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5787 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 5788 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTLOADER_MODULE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 5789 | droidcore-unbundled: $(INSTALLED_BOOTLOADER_MODULE) |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 5790 | endif |
| 5791 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5792 | # Depending on the various images guarantees that the underlying |
| 5793 | # directories are up-to-date. |
| 5794 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5795 | $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 5796 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5797 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5798 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 5799 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
Pierre-Clément Tosi | 03975ed | 2022-10-02 12:11:06 +0100 | [diff] [blame] | 5800 | $(INSTALLED_PVMFW_BINARY_TARGET) \ |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 5801 | $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 5802 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5803 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 5804 | $(INSTALLED_KERNEL_TARGET) \ |
Enrico Granata | b582e0f | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 5805 | $(INSTALLED_RAMDISK_TARGET) \ |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 5806 | $(INSTALLED_DTBIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5807 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 5808 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 5809 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 5810 | $(BOARD_RECOVERY_ACPIO) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5811 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 5812 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 5813 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5814 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5815 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5816 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5817 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 5818 | $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5819 | $(LPMAKE) \ |
| 5820 | $(SELINUX_FC) \ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 5821 | $(INSTALLED_MISC_INFO_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5822 | $(APKCERTS_FILE) \ |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 5823 | $(SOONG_APEX_KEYS_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5824 | $(SOONG_ZIP) \ |
| 5825 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 5826 | $(ADD_IMG_TO_TARGET_FILES) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 5827 | $(MAKE_RECOVERY_PATCH) \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 5828 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 5829 | $(BUILT_KERNEL_VERSION_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5830 | | $(ACP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5831 | @echo "Package target files: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 5832 | $(hide) rm -rf $@ $@.list $(zip_root) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5833 | $(hide) mkdir -p $(dir $@) $(zip_root) |
Yifan Hong | 881df39 | 2020-10-09 14:29:39 -0700 | [diff] [blame] | 5834 | 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] | 5835 | @# Components of the recovery image |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5836 | $(hide) mkdir -p $(zip_root)/$(PRIVATE_RECOVERY_OUT) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 5837 | # Exclude recovery files in the default vendor ramdisk if including a standalone |
| 5838 | # recovery ramdisk in vendor_boot. |
| 5839 | ifneq (true,$(BOARD_INCLUDE_RECOVERY_RAMDISK_IN_VENDOR_BOOT)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5840 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5841 | $(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/$(PRIVATE_RECOVERY_OUT)/RAMDISK) |
Yi-Yo Chiang | 12f9244 | 2021-04-04 16:12:25 +0800 | [diff] [blame] | 5842 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5843 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 5844 | ifneq (,$(filter true,$(BOARD_USES_RECOVERY_AS_BOOT))) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 5845 | cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/ |
Yifan Hong | 63c5ca1 | 2020-10-08 11:54:02 -0700 | [diff] [blame] | 5846 | else ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 5847 | cp $(firstword $(INSTALLED_KERNEL_TARGET)) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/kernel |
| 5848 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5849 | endif |
Yifan Hong | 7886016 | 2020-10-28 14:15:21 -0700 | [diff] [blame] | 5850 | 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] | 5851 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5852 | 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] | 5853 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 5854 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 5855 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5856 | cp $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 5857 | else |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5858 | cp $(BOARD_PREBUILT_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 5859 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5860 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 5861 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5862 | cp $(BOARD_RECOVERY_ACPIO) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_acpio |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 5863 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 5864 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5865 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 5866 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5867 | ifneq (true,$(BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE)) |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 5868 | ifdef INTERNAL_KERNEL_CMDLINE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5869 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/cmdline |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5870 | endif # INTERNAL_KERNEL_CMDLINE != "" |
| 5871 | endif # BOARD_EXCLUDE_KERNEL_FROM_RECOVERY_IMAGE != true |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5872 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5873 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5874 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5875 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5876 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5877 | endif |
Yifan Hong | 3941a87 | 2020-10-28 16:33:06 -0700 | [diff] [blame] | 5878 | endif # not (BUILDING_VENDOR_BOOT_IMAGE and BOARD_USES_RECOVERY_AS_BOOT) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 5879 | 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] | 5880 | @# Components of the boot image |
| 5881 | $(hide) mkdir -p $(zip_root)/BOOT |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 5882 | $(hide) mkdir -p $(zip_root)/ROOT |
| 5883 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5884 | $(TARGET_ROOT_OUT),$(zip_root)/ROOT) |
Tom Cherry | 3871f0f | 2018-11-06 14:23:44 -0800 | [diff] [blame] | 5885 | @# If we are using recovery as boot, this is already done when processing recovery. |
| 5886 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5887 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5888 | $(TARGET_RAMDISK_OUT),$(zip_root)/BOOT/RAMDISK) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5889 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 5890 | $(hide) cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5891 | endif |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 5892 | ifeq (true,$(BOARD_USES_GENERIC_KERNEL_IMAGE)) |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5893 | echo "$(GENERIC_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
Yifan Hong | 46aff09 | 2020-10-28 13:50:47 -0700 | [diff] [blame] | 5894 | else ifndef INSTALLED_VENDOR_BOOTIMAGE_TARGET # && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5895 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5896 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5897 | cp $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5898 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 5899 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5900 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/BOOT/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 5901 | endif |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5902 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5903 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 5904 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5905 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5906 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 5907 | endif |
Yifan Hong | aad34e5 | 2020-10-12 11:08:30 -0700 | [diff] [blame] | 5908 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET == "" && BOARD_USES_GENERIC_KERNEL_IMAGE != true |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5909 | endif # BOARD_USES_RECOVERY_AS_BOOT not true |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 5910 | $(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\ |
| 5911 | mkdir -p $(zip_root)/RADIO; \ |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 5912 | cp $(t) $(zip_root)/RADIO/$(notdir $(t));) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5913 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 5914 | mkdir -p $(zip_root)/VENDOR_BOOT |
| 5915 | $(call package_files-copy-root, \ |
| 5916 | $(TARGET_VENDOR_RAMDISK_OUT),$(zip_root)/VENDOR_BOOT/RAMDISK) |
| 5917 | ifdef INSTALLED_DTBIMAGE_TARGET |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5918 | ifneq ($(BUILDING_VENDOR_KERNEL_BOOT_IMAGE),true) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5919 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_BOOT/dtb |
| 5920 | endif |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5921 | endif # end of INSTALLED_DTBIMAGE_TARGET |
Devin Moore | 5050901 | 2021-01-13 10:45:04 -0800 | [diff] [blame] | 5922 | ifdef INTERNAL_VENDOR_BOOTCONFIG_TARGET |
| 5923 | cp $(INTERNAL_VENDOR_BOOTCONFIG_TARGET) $(zip_root)/VENDOR_BOOT/vendor_bootconfig |
| 5924 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5925 | ifdef BOARD_KERNEL_BASE |
| 5926 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/VENDOR_BOOT/base |
| 5927 | endif |
| 5928 | ifdef BOARD_KERNEL_PAGESIZE |
| 5929 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_BOOT/pagesize |
| 5930 | endif |
| 5931 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/VENDOR_BOOT/vendor_cmdline |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 5932 | ifdef INTERNAL_VENDOR_RAMDISK_FRAGMENTS |
| 5933 | echo "$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS)" > "$(zip_root)/VENDOR_BOOT/vendor_ramdisk_fragments" |
| 5934 | $(foreach vendor_ramdisk_fragment,$(INTERNAL_VENDOR_RAMDISK_FRAGMENTS), \ |
Yo Chiang | d21e7dc | 2020-12-10 18:42:47 +0800 | [diff] [blame] | 5935 | mkdir -p $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment); \ |
| 5936 | echo "$(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).MKBOOTIMG_ARGS)" > "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/mkbootimg_args"; \ |
| 5937 | $(eval prebuilt_ramdisk := $(BOARD_VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).PREBUILT)) \ |
| 5938 | $(if $(prebuilt_ramdisk), \ |
| 5939 | cp "$(prebuilt_ramdisk)" "$(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/prebuilt_ramdisk";, \ |
| 5940 | $(call package_files-copy-root, \ |
| 5941 | $(VENDOR_RAMDISK_FRAGMENT.$(vendor_ramdisk_fragment).STAGING_DIR), \ |
| 5942 | $(zip_root)/VENDOR_BOOT/RAMDISK_FRAGMENTS/$(vendor_ramdisk_fragment)/RAMDISK); \ |
| 5943 | )) |
Yi-Yo Chiang | 1519d43 | 2021-04-04 16:03:10 +0800 | [diff] [blame] | 5944 | endif # INTERNAL_VENDOR_RAMDISK_FRAGMENTS != "" |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 5945 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Lucas Wei | f57333f | 2022-02-24 10:30:15 +0800 | [diff] [blame] | 5946 | ifdef INSTALLED_VENDOR_KERNEL_BOOTIMAGE_TARGET |
| 5947 | mkdir -p $(zip_root)/VENDOR_KERNEL_BOOT |
| 5948 | $(call package_files-copy-root, \ |
| 5949 | $(TARGET_VENDOR_KERNEL_RAMDISK_OUT),$(zip_root)/VENDOR_KERNEL_BOOT/RAMDISK) |
| 5950 | ifdef INSTALLED_DTBIMAGE_TARGET |
| 5951 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_KERNEL_BOOT/dtb |
| 5952 | endif |
| 5953 | ifdef BOARD_KERNEL_PAGESIZE |
| 5954 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_KERNEL_BOOT/pagesize |
| 5955 | endif |
| 5956 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5957 | ifdef BUILDING_SYSTEM_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5958 | @# Contents of the system image |
| 5959 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5960 | $(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM) |
Yi-Yo Chiang | 9b25841 | 2022-01-04 00:05:11 +0800 | [diff] [blame] | 5961 | else ifdef INSTALLED_BUILD_PROP_TARGET |
| 5962 | @# Copy the system build.prop even if not building a system image |
| 5963 | @# because add_img_to_target_files may need it to build other partition |
| 5964 | @# images. |
| 5965 | $(hide) mkdir -p "$(zip_root)/SYSTEM" |
| 5966 | $(hide) cp "$(INSTALLED_BUILD_PROP_TARGET)" "$(patsubst $(TARGET_OUT)/%,$(zip_root)/SYSTEM/%,$(INSTALLED_BUILD_PROP_TARGET))" |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5967 | endif |
| 5968 | ifdef BUILDING_USERDATA_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5969 | @# Contents of the data image |
| 5970 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5971 | $(TARGET_OUT_DATA),$(zip_root)/DATA) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5972 | endif |
| 5973 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 5974 | @# Contents of the vendor image |
| 5975 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5976 | $(TARGET_OUT_VENDOR),$(zip_root)/VENDOR) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 5977 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5978 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5979 | @# Contents of the product image |
| 5980 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5981 | $(TARGET_OUT_PRODUCT),$(zip_root)/PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5982 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5983 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 5984 | @# Contents of the system_ext image |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5985 | $(hide) $(call package_files-copy-root, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5986 | $(TARGET_OUT_SYSTEM_EXT),$(zip_root)/SYSTEM_EXT) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5987 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 5988 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5989 | @# Contents of the odm image |
| 5990 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5991 | $(TARGET_OUT_ODM),$(zip_root)/ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5992 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5993 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 5994 | @# Contents of the vendor_dlkm image |
| 5995 | $(hide) $(call package_files-copy-root, \ |
| 5996 | $(TARGET_OUT_VENDOR_DLKM),$(zip_root)/VENDOR_DLKM) |
| 5997 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5998 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 5999 | @# Contents of the odm_dlkm image |
| 6000 | $(hide) $(call package_files-copy-root, \ |
| 6001 | $(TARGET_OUT_ODM_DLKM),$(zip_root)/ODM_DLKM) |
| 6002 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6003 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 6004 | @# Contents of the system_dlkm image |
| 6005 | $(hide) $(call package_files-copy-root, \ |
| 6006 | $(TARGET_OUT_SYSTEM_DLKM),$(zip_root)/SYSTEM_DLKM) |
| 6007 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6008 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 6009 | @# Contents of the system_other image |
| 6010 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6011 | $(TARGET_OUT_SYSTEM_OTHER),$(zip_root)/SYSTEM_OTHER) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 6012 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6013 | @# Extra contents of the OTA package |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6014 | $(hide) mkdir -p $(zip_root)/OTA |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6015 | $(hide) cp $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/ |
Enrico Granata | b582e0f | 2020-10-14 15:17:20 -0600 | [diff] [blame] | 6016 | ifdef BUILDING_RAMDISK_IMAGE |
| 6017 | ifeq (true,$(BOARD_IMG_USE_RAMDISK)) |
| 6018 | @# Contents of the ramdisk image |
| 6019 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6020 | $(hide) cp $(INSTALLED_RAMDISK_TARGET) $(zip_root)/IMAGES/ |
| 6021 | endif |
| 6022 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 6023 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 6024 | ifneq ($(built_ota_tools),) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6025 | $(hide) mkdir -p $(zip_root)/OTA/bin |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6026 | $(hide) cp $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/ |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 6027 | endif |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 6028 | endif |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6029 | @# 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] | 6030 | @# build them. |
| 6031 | $(hide) mkdir -p $(zip_root)/META |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6032 | $(hide) cp $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 6033 | $(hide) cp $(SOONG_APEX_KEYS_FILE) $(zip_root)/META/apexkeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6034 | ifneq ($(tool_extension),) |
| 6035 | $(hide) cp $(PRIVATE_TOOL_EXTENSION) $(zip_root)/META/ |
| 6036 | endif |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 6037 | $(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6038 | $(hide) cp $(SELINUX_FC) $(zip_root)/META/file_contexts.bin |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 6039 | $(hide) cp $(INSTALLED_MISC_INFO_TARGET) $(zip_root)/META/misc_info.txt |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6040 | ifneq ($(PRODUCT_SYSTEM_BASE_FS_PATH),) |
| 6041 | $(hide) cp $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 6042 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 6043 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6044 | ifneq ($(PRODUCT_VENDOR_BASE_FS_PATH),) |
| 6045 | $(hide) cp $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 6046 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 6047 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6048 | ifneq ($(PRODUCT_PRODUCT_BASE_FS_PATH),) |
| 6049 | $(hide) cp $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 6050 | $(zip_root)/META/$(notdir $(PRODUCT_PRODUCT_BASE_FS_PATH)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6051 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6052 | ifneq ($(PRODUCT_SYSTEM_EXT_BASE_FS_PATH),) |
| 6053 | $(hide) cp $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 6054 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6055 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6056 | ifneq ($(PRODUCT_ODM_BASE_FS_PATH),) |
| 6057 | $(hide) cp $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 6058 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_BASE_FS_PATH)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6059 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6060 | ifneq ($(PRODUCT_VENDOR_DLKM_BASE_FS_PATH),) |
| 6061 | $(hide) cp $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 6062 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH)) |
| 6063 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6064 | ifneq ($(PRODUCT_ODM_DLKM_BASE_FS_PATH),) |
| 6065 | $(hide) cp $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 6066 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_DLKM_BASE_FS_PATH)) |
| 6067 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6068 | ifneq ($(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH),) |
| 6069 | $(hide) cp $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
| 6070 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH)) |
| 6071 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 6072 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 6073 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 6074 | $(hide) PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 6075 | $(MAKE_RECOVERY_PATCH) $(zip_root) $(zip_root) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 6076 | endif |
Bill Peckham | c0f413f | 2019-11-07 11:27:02 -0800 | [diff] [blame] | 6077 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 6078 | ifeq ($(AB_OTA_UPDATER),true) |
| 6079 | @# 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] | 6080 | $(hide) cp $(TOPDIR)system/update_engine/update_engine.conf $(zip_root)/META/update_engine_config.txt |
Kelvin Zhang | c06f062 | 2021-11-30 12:38:39 -0800 | [diff] [blame] | 6081 | $(hide) cp $(TOPDIR)external/zucchini/version_info.h $(zip_root)/META/zucchini_config.txt |
Kelvin Zhang | 6877e81 | 2022-01-06 11:12:04 -0800 | [diff] [blame] | 6082 | $(hide) cp $(HOST_OUT_SHARED_LIBRARIES)/liblz4.so $(zip_root)/META/liblz4.so |
Cole Faust | 9009999 | 2022-02-17 11:35:27 -0800 | [diff] [blame] | 6083 | $(hide) for part in $(sort $(AB_OTA_PARTITIONS)); do \ |
Alex Deymo | 8925d33 | 2015-10-01 17:38:09 -0700 | [diff] [blame] | 6084 | echo "$${part}" >> $(zip_root)/META/ab_partitions.txt; \ |
| 6085 | done |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 6086 | $(hide) for conf in $(strip $(AB_OTA_POSTINSTALL_CONFIG)); do \ |
Sen Jiang | 8f22e2a | 2015-11-12 13:53:25 -0800 | [diff] [blame] | 6087 | echo "$${conf}" >> $(zip_root)/META/postinstall_config.txt; \ |
| 6088 | done |
Bertrand SIMONNET | 4af7259 | 2015-10-08 15:32:40 -0700 | [diff] [blame] | 6089 | ifdef OSRELEASED_DIRECTORY |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 6090 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id $(zip_root)/META/product_id.txt |
| 6091 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version $(zip_root)/META/product_version.txt |
| 6092 | $(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] | 6093 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 6094 | endif |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 6095 | ifeq ($(BREAKPAD_GENERATE_SYMBOLS),true) |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 6096 | @# If breakpad symbols have been generated, add them to the zip. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 6097 | $(hide) cp -R $(TARGET_OUT_BREAKPAD) $(zip_root)/BREAKPAD |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 6098 | endif |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 6099 | ifdef BOARD_PREBUILT_VENDORIMAGE |
| 6100 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6101 | $(hide) cp $(INSTALLED_VENDORIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6102 | endif |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6103 | ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 6104 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6105 | $(hide) cp $(INSTALLED_PRODUCTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6106 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6107 | ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6108 | $(hide) mkdir -p $(zip_root)/IMAGES |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6109 | $(hide) cp $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6110 | endif |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6111 | ifdef BOARD_PREBUILT_INIT_BOOT_IMAGE |
Devin Moore | cda41f0 | 2022-01-05 00:08:39 +0000 | [diff] [blame] | 6112 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6113 | $(hide) cp $(INSTALLED_INIT_BOOT_IMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6114 | endif |
Ramji Jiyani | 034e777 | 2022-01-24 04:00:29 +0000 | [diff] [blame] | 6115 | |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 6116 | ifndef BOARD_PREBUILT_BOOTIMAGE |
Yi-Yo Chiang | 8193900 | 2022-01-08 23:46:40 +0800 | [diff] [blame] | 6117 | ifneq (,$(strip $(INTERNAL_PREBUILT_BOOTIMAGE) $(filter true,$(BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES)))) |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 6118 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 6119 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6120 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | 49968aa | 2020-11-09 11:52:52 -0800 | [diff] [blame] | 6121 | endif # INSTALLED_BOOTIMAGE_TARGET |
| 6122 | endif # INTERNAL_PREBUILT_BOOTIMAGE != "" || BOARD_COPY_BOOT_IMAGE_TO_TARGET_FILES == true |
Bowgo Tsai | b23656d | 2021-05-20 00:14:42 +0800 | [diff] [blame] | 6123 | else # BOARD_PREBUILT_BOOTIMAGE is defined |
| 6124 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6125 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
| 6126 | endif # BOARD_PREBUILT_BOOTIMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6127 | ifdef BOARD_PREBUILT_ODMIMAGE |
| 6128 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6129 | $(hide) cp $(INSTALLED_ODMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6130 | endif |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 6131 | ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6132 | $(hide) mkdir -p $(zip_root)/IMAGES |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 6133 | $(hide) cp $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6134 | endif |
| 6135 | ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 6136 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6137 | $(hide) cp $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6138 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6139 | ifdef BOARD_PREBUILT_SYSTEM_DLKMIMAGE |
| 6140 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6141 | $(hide) cp $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 6142 | endif |
Yueyao Zhu | 889ee5e | 2017-05-12 17:50:46 -0700 | [diff] [blame] | 6143 | ifdef BOARD_PREBUILT_DTBOIMAGE |
Tao Bao | c633ed0 | 2017-05-30 21:46:33 -0700 | [diff] [blame] | 6144 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6145 | $(hide) cp $(INSTALLED_DTBOIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 6146 | endif # BOARD_PREBUILT_DTBOIMAGE |
Pierre-Clément Tosi | 4bbb8dd | 2022-01-31 20:25:52 +0100 | [diff] [blame] | 6147 | ifeq ($(BOARD_USES_PVMFWIMAGE),true) |
Andrew Scull | 9b103e4 | 2020-11-29 14:04:28 +0000 | [diff] [blame] | 6148 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6149 | $(hide) cp $(INSTALLED_PVMFWIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Andrew Scull | bbc930b | 2022-02-17 22:34:27 +0000 | [diff] [blame] | 6150 | $(hide) cp $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Pierre-Clément Tosi | 03975ed | 2022-10-02 12:11:06 +0100 | [diff] [blame] | 6151 | $(hide) mkdir -p $(zip_root)/PVMFW |
| 6152 | $(hide) cp $(INSTALLED_PVMFW_BINARY_TARGET) $(zip_root)/PVMFW/ |
Pierre-Clément Tosi | d8248af | 2021-10-07 12:18:17 +0200 | [diff] [blame] | 6153 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 6154 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 6155 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 6156 | $(hide) cp $(INSTALLED_BOOTLOADER_MODULE) $(zip_root)/IMAGES/ |
| 6157 | endif |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 6158 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 6159 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 6160 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 6161 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),cp $(image) $(zip_root)/PREBUILT_IMAGES/;)) |
| 6162 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Tao Bao | 95a95c3 | 2017-06-16 15:30:23 -0700 | [diff] [blame] | 6163 | @# The radio images in BOARD_PACK_RADIOIMAGES will be additionally copied from RADIO/ into |
| 6164 | @# IMAGES/, which then will be added into <product>-img.zip. Such images must be listed in |
| 6165 | @# INSTALLED_RADIOIMAGE_TARGET. |
| 6166 | $(hide) $(foreach part,$(BOARD_PACK_RADIOIMAGES), \ |
| 6167 | echo $(part) >> $(zip_root)/META/pack_radioimages.txt;) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6168 | @# Run fs_config on all the system, vendor, boot ramdisk, |
| 6169 | @# and recovery ramdisk files in the zip, and save the output |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6170 | ifdef BUILDING_SYSTEM_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6171 | $(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] | 6172 | endif |
| 6173 | ifdef BUILDING_VENDOR_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6174 | $(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.txt |
| 6175 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6176 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6177 | $(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_config.txt |
| 6178 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6179 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 6180 | $(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] | 6181 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6182 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6183 | $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt |
| 6184 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6185 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 6186 | $(hide) $(call fs_config,$(zip_root)/VENDOR_DLKM,vendor_dlkm/) > $(zip_root)/META/vendor_dlkm_filesystem_config.txt |
| 6187 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6188 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 6189 | $(hide) $(call fs_config,$(zip_root)/ODM_DLKM,odm_dlkm/) > $(zip_root)/META/odm_dlkm_filesystem_config.txt |
| 6190 | endif |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6191 | ifdef BUILDING_SYSTEM_DLKM_IMAGE |
| 6192 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_DLKM,system_dlkm/) > $(zip_root)/META/system_dlkm_filesystem_config.txt |
| 6193 | endif |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 6194 | @# ROOT always contains the files for the root under normal boot. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6195 | $(hide) $(call fs_config,$(zip_root)/ROOT,) > $(zip_root)/META/root_filesystem_config.txt |
Yi-Yo Chiang | 06c6273 | 2022-10-07 21:18:45 +0800 | [diff] [blame] | 6196 | @# BOOT/RAMDISK contains the first stage and recovery ramdisk. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6197 | $(hide) $(call fs_config,$(zip_root)/BOOT/RAMDISK,) > $(zip_root)/META/boot_filesystem_config.txt |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6198 | ifdef BUILDING_INIT_BOOT_IMAGE |
| 6199 | $(hide) $(call package_files-copy-root, $(TARGET_RAMDISK_OUT),$(zip_root)/INIT_BOOT/RAMDISK) |
| 6200 | $(hide) $(call fs_config,$(zip_root)/INIT_BOOT/RAMDISK,) > $(zip_root)/META/init_boot_filesystem_config.txt |
Vincent Donnefort | 6e861e9 | 2023-02-17 10:12:57 +0000 | [diff] [blame] | 6201 | $(hide) cp $(RAMDISK_NODE_LIST) $(zip_root)/META/ramdisk_node_list |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6202 | ifdef BOARD_KERNEL_PAGESIZE |
| 6203 | $(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/INIT_BOOT/pagesize |
| 6204 | endif # BOARD_KERNEL_PAGESIZE |
| 6205 | endif # BUILDING_INIT_BOOT_IMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 6206 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 6207 | $(call fs_config,$(zip_root)/VENDOR_BOOT/RAMDISK,) > $(zip_root)/META/vendor_boot_filesystem_config.txt |
| 6208 | endif |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6209 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 6210 | $(hide) $(call fs_config,$(zip_root)/RECOVERY/RAMDISK,) > $(zip_root)/META/recovery_filesystem_config.txt |
| 6211 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 6212 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 6213 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_OTHER,system/) > $(zip_root)/META/system_other_filesystem_config.txt |
| 6214 | endif |
Michael Schwartz | 4d9cb56 | 2017-04-04 13:01:18 -0700 | [diff] [blame] | 6215 | @# Metadata for compatibility verification. |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 6216 | ifdef BUILT_KERNEL_CONFIGS_FILE |
| 6217 | $(hide) cp $(BUILT_KERNEL_CONFIGS_FILE) $(zip_root)/META/kernel_configs.txt |
| 6218 | endif |
| 6219 | ifdef BUILT_KERNEL_VERSION_FILE |
| 6220 | $(hide) cp $(BUILT_KERNEL_VERSION_FILE) $(zip_root)/META/kernel_version.txt |
| 6221 | endif |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 6222 | rm -rf $(zip_root)/META/dynamic_partitions_info.txt |
| 6223 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 6224 | $(call dump-dynamic-partitions-info, $(zip_root)/META/dynamic_partitions_info.txt) |
| 6225 | endif |
Tao Bao | cbd6d49 | 2019-10-07 22:46:02 -0700 | [diff] [blame] | 6226 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
| 6227 | $(ADD_IMG_TO_TARGET_FILES) -a -v -p $(HOST_OUT) $(zip_root) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6228 | ifeq ($(BUILD_QEMU_IMAGES),true) |
| 6229 | $(hide) AVBTOOL=$(AVBTOOL) $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(zip_root)/IMAGES/vbmeta.img \ |
| 6230 | $(zip_root)/IMAGES/system.img $(zip_root)/IMAGES/VerifiedBootParams.textproto |
| 6231 | endif |
Alex Deymo | 92cfd6f | 2016-01-26 18:47:44 -0800 | [diff] [blame] | 6232 | @# Zip everything up, preserving symlinks and placing META/ files first to |
| 6233 | @# help early validation of the .zip file while uploading it. |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 6234 | $(hide) find $(zip_root)/META | sort >$@.list |
Nan Zhang | cabecd9 | 2017-03-20 18:22:43 -0700 | [diff] [blame] | 6235 | $(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] | 6236 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(zip_root) -r $@.list |
Doug Zongker | 283e2a1 | 2010-03-15 17:52:32 -0700 | [diff] [blame] | 6237 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 6238 | .PHONY: target-files-package |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6239 | target-files-package: $(BUILT_TARGET_FILES_PACKAGE) |
| 6240 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6241 | $(call declare-1p-container,$(BUILT_TARGET_FILES_PACKAGE),) |
| 6242 | $(call declare-container-license-deps,$(BUILT_TARGET_FILES_PACKAGE), $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 6243 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 6244 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
| 6245 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
| 6246 | $(INSTALLED_PVMFWIMAGE_TARGET) \ |
| 6247 | $(INSTALLED_PVMFW_EMBEDDED_AVBKEY_TARGET) \ |
| 6248 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
| 6249 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 6250 | $(INSTALLED_KERNEL_TARGET) \ |
| 6251 | $(INSTALLED_RAMDISK_TARGET) \ |
| 6252 | $(INSTALLED_DTBIMAGE_TARGET) \ |
| 6253 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 6254 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
| 6255 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
| 6256 | $(BOARD_RECOVERY_ACPIO) \ |
| 6257 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 6258 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 6259 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 6260 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 6261 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 6262 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 6263 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 6264 | $(PRODUCT_SYSTEM_DLKM_BASE_FS_PATH) \ |
| 6265 | $(LPMAKE) \ |
| 6266 | $(SELINUX_FC) \ |
| 6267 | $(INSTALLED_MISC_INFO_TARGET) \ |
| 6268 | $(APKCERTS_FILE) \ |
| 6269 | $(SOONG_APEX_KEYS_FILE) \ |
| 6270 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
| 6271 | $(ADD_IMG_TO_TARGET_FILES) \ |
| 6272 | $(MAKE_RECOVERY_PATCH) \ |
| 6273 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 6274 | $(BUILT_KERNEL_VERSION_FILE),$(BUILT_TARGET_FILES_PACKAGE):) |
| 6275 | |
Ying Wang | 4709d7c | 2014-04-14 17:25:43 -0700 | [diff] [blame] | 6276 | $(call dist-for-goals, target-files-package, $(BUILT_TARGET_FILES_PACKAGE)) |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 6277 | |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 6278 | # ----------------------------------------------------------------- |
| 6279 | # NDK Sysroot Package |
| 6280 | NDK_SYSROOT_TARGET := $(PRODUCT_OUT)/ndk_sysroot.tar.bz2 |
Colin Cross | ec65b76 | 2022-10-20 14:03:47 -0700 | [diff] [blame] | 6281 | .PHONY: ndk_sysroot |
| 6282 | ndk_sysroot: $(NDK_SYSROOT_TARGET) |
Dan Willemsen | 14e1026 | 2018-06-17 21:54:21 -0700 | [diff] [blame] | 6283 | $(NDK_SYSROOT_TARGET): $(SOONG_OUT_DIR)/ndk.timestamp |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 6284 | @echo Package NDK sysroot... |
| 6285 | $(hide) tar cjf $@ -C $(SOONG_OUT_DIR) ndk |
| 6286 | |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 6287 | ifeq ($(HOST_OS),linux) |
Colin Cross | ec65b76 | 2022-10-20 14:03:47 -0700 | [diff] [blame] | 6288 | $(call dist-for-goals,sdk ndk_sysroot,$(NDK_SYSROOT_TARGET)) |
Dan Willemsen | 616e7fd | 2021-09-16 14:50:08 -0700 | [diff] [blame] | 6289 | endif |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 6290 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 6291 | ifeq ($(build_ota_package),true) |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 6292 | # ----------------------------------------------------------------- |
| 6293 | # OTA update package |
| 6294 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6295 | # $(1): output file |
| 6296 | # $(2): additional args |
| 6297 | define build-ota-package-target |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6298 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 6299 | $(OTA_FROM_TARGET_FILES) \ |
| 6300 | --verbose \ |
| 6301 | --extracted_input_target_files $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) \ |
| 6302 | --path $(HOST_OUT) \ |
| 6303 | $(if $(OEM_OTA_CONFIG), --oem_settings $(OEM_OTA_CONFIG)) \ |
| 6304 | $(2) \ |
| 6305 | $(BUILT_TARGET_FILES_PACKAGE) $(1) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6306 | endef |
| 6307 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6308 | product_name := $(TARGET_PRODUCT) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6309 | ifeq ($(TARGET_BUILD_TYPE),debug) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6310 | product_name := $(product_name)_debug |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6311 | endif |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6312 | name := $(product_name)-ota-$(FILE_NAME_TAG) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6313 | |
| 6314 | INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 6315 | INTERNAL_OTA_METADATA := $(PRODUCT_OUT)/ota_metadata |
| 6316 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6317 | $(call declare-0p-target,$(INTERNAL_OTA_METADATA)) |
| 6318 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6319 | $(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 6320 | $(INTERNAL_OTA_PACKAGE_TARGET): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_OTA_METADATA) |
Yifan Hong | 5c1b199 | 2020-10-08 09:36:29 -0700 | [diff] [blame] | 6321 | $(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] | 6322 | @echo "Package OTA: $@" |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 6323 | $(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] | 6324 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6325 | $(call declare-1p-container,$(INTERNAL_OTA_PACKAGE_TARGET),) |
| 6326 | $(call declare-container-license-deps,$(INTERNAL_OTA_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES),$(PRODUCT_OUT)/:/) |
| 6327 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 6328 | .PHONY: otapackage |
| 6329 | otapackage: $(INTERNAL_OTA_PACKAGE_TARGET) |
| 6330 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 6331 | ifeq ($(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE),true) |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6332 | name := $(product_name)-ota-retrofit-$(FILE_NAME_TAG) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6333 | |
| 6334 | INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6335 | $(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] | 6336 | $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET): \ |
| 6337 | $(BUILT_TARGET_FILES_PACKAGE) \ |
Yifan Hong | 5c1b199 | 2020-10-08 09:36:29 -0700 | [diff] [blame] | 6338 | $(OTA_FROM_TARGET_FILES) \ |
| 6339 | $(INTERNAL_OTATOOLS_FILES) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6340 | @echo "Package OTA (retrofit dynamic partitions): $@" |
| 6341 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --retrofit_dynamic_partitions) |
| 6342 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6343 | $(call declare-1p-container,$(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET),) |
| 6344 | $(call declare-container-license-deps,$(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES),$(PRODUCT_OUT)/:/) |
| 6345 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6346 | .PHONY: otardppackage |
| 6347 | |
| 6348 | otapackage otardppackage: $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET) |
| 6349 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 6350 | endif # BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 6351 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6352 | ifneq ($(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST),) |
| 6353 | name := $(product_name)-partial-ota-$(FILE_NAME_TAG) |
| 6354 | |
| 6355 | INTERNAL_OTA_PARTIAL_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 6356 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
| 6357 | $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES) |
| 6358 | @echo "Package partial OTA: $@" |
| 6359 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --partial "$(BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST)") |
| 6360 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6361 | $(call declare-1p-container,$(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET),) |
| 6362 | $(call declare-container-license-deps,$(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) $(INTERNAL_OTATOOLS_FILES),$(PRODUCT_OUT)/:/) |
| 6363 | |
| 6364 | |
Tianjie | 6bd3b1a | 2020-10-16 18:53:47 -0700 | [diff] [blame] | 6365 | .PHONY: partialotapackage |
| 6366 | partialotapackage: $(INTERNAL_OTA_PARTIAL_PACKAGE_TARGET) |
| 6367 | |
| 6368 | endif # BOARD_PARTIAL_OTA_UPDATE_PARTITIONS_LIST |
| 6369 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 6370 | endif # build_ota_package |
Ying Wang | f8824af | 2014-06-03 14:07:27 -0700 | [diff] [blame] | 6371 | |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 6372 | # ----------------------------------------------------------------- |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 6373 | # A zip of the appcompat directory containing logs |
| 6374 | APPCOMPAT_ZIP := $(PRODUCT_OUT)/appcompat.zip |
| 6375 | # 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] | 6376 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 6377 | $(APPCOMPAT_ZIP): $(FULL_SYSTEMIMAGE_DEPS) \ |
| 6378 | $(INTERNAL_RAMDISK_FILES) \ |
| 6379 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 6380 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 6381 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 6382 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 6383 | endif |
| 6384 | $(APPCOMPAT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,appcompat)/filelist |
| 6385 | $(APPCOMPAT_ZIP): $(SOONG_ZIP) |
| 6386 | @echo "appcompat logs: $@" |
| 6387 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 6388 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/appcompat $(dir $(PRIVATE_LIST_FILE)) |
| 6389 | $(hide) find $(PRODUCT_OUT)/appcompat | sort >$(PRIVATE_LIST_FILE) |
| 6390 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/appcompat -l $(PRIVATE_LIST_FILE) |
| 6391 | |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 6392 | # The mac build doesn't build dex2oat, so create the zip file only if the build OS is linux. |
| 6393 | ifeq ($(BUILD_OS),linux) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame] | 6394 | ifneq ($(DEX2OAT),) |
Saeid Farivar Asanjan | 0b4f8d5 | 2022-08-08 20:23:45 +0000 | [diff] [blame] | 6395 | dexpreopt_tools_deps := $(DEXPREOPT_GEN_DEPS) $(DEXPREOPT_GEN) |
Eric Miao | 1d0fd2c | 2021-11-08 19:34:50 +0000 | [diff] [blame] | 6396 | dexpreopt_tools_deps += $(HOST_OUT_EXECUTABLES)/dexdump |
| 6397 | dexpreopt_tools_deps += $(HOST_OUT_EXECUTABLES)/oatdump |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 6398 | DEXPREOPT_TOOLS_ZIP := $(PRODUCT_OUT)/dexpreopt_tools.zip |
| 6399 | $(DEXPREOPT_TOOLS_ZIP): $(dexpreopt_tools_deps) |
| 6400 | $(DEXPREOPT_TOOLS_ZIP): PRIVATE_DEXPREOPT_TOOLS_DEPS := $(dexpreopt_tools_deps) |
| 6401 | $(DEXPREOPT_TOOLS_ZIP): $(SOONG_ZIP) |
| 6402 | $(hide) mkdir -p $(dir $@) |
| 6403 | $(hide) $(SOONG_ZIP) -d -o $@ -j $(addprefix -f ,$(PRIVATE_DEXPREOPT_TOOLS_DEPS)) -f $$(realpath $(DEX2OAT)) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6404 | $(call declare-1p-target,$(DEXPREOPT_TOOLS_ZIP),) |
Jeongik Cha | 62519de | 2021-05-13 13:29:39 +0900 | [diff] [blame] | 6405 | endif # DEX2OAT is set |
| 6406 | endif # BUILD_OS == linux |
Jeongik Cha | 2522c36 | 2021-04-27 23:52:15 +0900 | [diff] [blame] | 6407 | |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6408 | DEXPREOPT_CONFIG_ZIP := $(PRODUCT_OUT)/dexpreopt_config.zip |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6409 | |
| 6410 | $(DEXPREOPT_CONFIG_ZIP): $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6411 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 6412 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 6413 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 6414 | |
| 6415 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6416 | $(DEXPREOPT_CONFIG_ZIP): $(DEX_PREOPT_CONFIG_FOR_MAKE) \ |
| 6417 | $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) \ |
| 6418 | |
| 6419 | endif |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6420 | |
| 6421 | $(DEXPREOPT_CONFIG_ZIP): $(SOONG_ZIP) |
| 6422 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6423 | |
| 6424 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 6425 | ifneq (,$(DEX_PREOPT_CONFIG_FOR_MAKE)) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6426 | $(hide) cp $(DEX_PREOPT_CONFIG_FOR_MAKE) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 6427 | endif |
| 6428 | ifneq (,$(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE)) |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6429 | $(hide) cp $(DEX_PREOPT_SOONG_CONFIG_FOR_MAKE) $(PRODUCT_OUT)/dexpreopt_config |
Jeongik Cha | 35bf6b0 | 2021-04-23 19:09:04 +0900 | [diff] [blame] | 6430 | endif |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6431 | endif #!TARGET_BUILD_UNBUNDLED |
Jeongik Cha | a8056d6 | 2021-04-07 23:57:16 +0900 | [diff] [blame] | 6432 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/dexpreopt_config -D $(PRODUCT_OUT)/dexpreopt_config |
| 6433 | |
Jeongik Cha | b26bf58 | 2021-06-08 11:31:31 +0900 | [diff] [blame] | 6434 | .PHONY: dexpreopt_config_zip |
| 6435 | dexpreopt_config_zip: $(DEXPREOPT_CONFIG_ZIP) |
| 6436 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6437 | $(call declare-1p-target,$(DEXPREOPT_CONFIG_ZIP),) |
| 6438 | |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 6439 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6440 | # A zip of the symbols directory. Keep the full paths to make it |
| 6441 | # more obvious where these files came from. |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6442 | # Also produces a textproto containing mappings from elf IDs to symbols |
| 6443 | # filename, which will allow finding the appropriate symbols to deobfuscate |
| 6444 | # a stack trace frame. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6445 | # |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6446 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6447 | name := $(TARGET_PRODUCT) |
| 6448 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6449 | name := $(name)_debug |
| 6450 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6451 | |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6452 | # The path to the zip file containing binaries with symbols. |
| 6453 | SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name)-symbols-$(FILE_NAME_TAG).zip |
| 6454 | # The path to a file containing mappings from elf IDs to filenames. |
| 6455 | SYMBOLS_MAPPING := $(PRODUCT_OUT)/$(name)-symbols-mapping-$(FILE_NAME_TAG).textproto |
| 6456 | .KATI_READONLY := SYMBOLS_ZIP SYMBOLS_MAPPING |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 6457 | # 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] | 6458 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 6459 | $(SYMBOLS_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Ying Wang | da3b972 | 2014-10-24 11:36:59 -0700 | [diff] [blame] | 6460 | endif |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 6461 | $(SYMBOLS_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,symbols)/filelist |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6462 | $(SYMBOLS_ZIP): PRIVATE_MAPPING_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,elf_symbol_mapping) |
| 6463 | $(SYMBOLS_ZIP): $(SOONG_ZIP) $(SYMBOLS_MAP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6464 | @echo "Package symbols: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 6465 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6466 | $(hide) mkdir -p $(TARGET_OUT_UNSTRIPPED) $(dir $(PRIVATE_LIST_FILE)) $(PRIVATE_MAPPING_PACKAGING_DIR) |
| 6467 | # Find all of the files in the symbols directory and zip them into the symbols zip. |
Jiyong Park | 88e0980 | 2019-03-21 15:19:16 +0900 | [diff] [blame] | 6468 | $(hide) find -L $(TARGET_OUT_UNSTRIPPED) -type f | sort >$(PRIVATE_LIST_FILE) |
Colin Cross | 8d34244 | 2019-05-07 11:47:13 -0700 | [diff] [blame] | 6469 | $(hide) $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(OUT_DIR)/.. -l $(PRIVATE_LIST_FILE) |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6470 | # Find all of the files in the symbols mapping directory and merge them into the symbols mapping textproto. |
| 6471 | $(hide) find -L $(PRIVATE_MAPPING_PACKAGING_DIR) -type f | sort >$(PRIVATE_LIST_FILE) |
| 6472 | $(hide) $(SYMBOLS_MAP) -merge $(SYMBOLS_MAPPING) -ignore_missing_files @$(PRIVATE_LIST_FILE) |
| 6473 | $(SYMBOLS_ZIP): .KATI_IMPLICIT_OUTPUTS := $(SYMBOLS_MAPPING) |
| 6474 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6475 | $(call declare-1p-container,$(SYMBOLS_ZIP),) |
| 6476 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6477 | $(call declare-container-license-deps,$(SYMBOLS_ZIP),$(INTERNAL_ALLIMAGES_FILES) $(updater_dep),$(PRODUCT_OUT)/:/) |
| 6478 | endif |
| 6479 | |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6480 | # ----------------------------------------------------------------- |
| 6481 | # A zip of the coverage directory. |
| 6482 | # |
Oliver Nguyen | e91ab23 | 2019-04-30 15:14:44 -0700 | [diff] [blame] | 6483 | name := gcov-report-files-all |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6484 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6485 | name := $(name)_debug |
| 6486 | endif |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6487 | COVERAGE_ZIP := $(PRODUCT_OUT)/$(name).zip |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 6488 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 6489 | $(COVERAGE_ZIP): $(INTERNAL_ALLIMAGES_FILES) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 6490 | endif |
| 6491 | $(COVERAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,coverage)/filelist |
| 6492 | $(COVERAGE_ZIP): $(SOONG_ZIP) |
| 6493 | @echo "Package coverage: $@" |
| 6494 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 6495 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_COVERAGE) $(dir $(PRIVATE_LIST_FILE)) |
| 6496 | $(hide) find $(TARGET_OUT_COVERAGE) | sort >$(PRIVATE_LIST_FILE) |
| 6497 | $(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] | 6498 | |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 6499 | $(call declare-1p-container,$(COVERAGE_ZIP),) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6500 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 6501 | $(call declare-container-license-deps,$(COVERAGE_ZIP),$(INTERNAL_ALLIMAGE_FILES),$(PRODUCT_OUT)/:/) |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6502 | endif |
Bob Badour | f252972 | 2022-03-18 11:34:03 -0700 | [diff] [blame] | 6503 | |
| 6504 | SYSTEM_NOTICE_DEPS += $(COVERAGE_ZIP) |
| 6505 | |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 6506 | #------------------------------------------------------------------ |
| 6507 | # Export the LLVM profile data tool and dependencies for Clang coverage processing |
| 6508 | # |
| 6509 | ifeq (true,$(CLANG_COVERAGE)) |
| 6510 | LLVM_PROFDATA := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/bin/llvm-profdata |
Pirama Arumuga Nainar | 4e3d633 | 2022-03-08 22:28:33 -0800 | [diff] [blame] | 6511 | LLVM_COV := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/bin/llvm-cov |
Qing Shen | d058fc3 | 2022-09-30 00:27:58 +0000 | [diff] [blame] | 6512 | LIBCXX := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/lib/x86_64-unknown-linux-gnu/libc++.so.1 |
Pirama Arumuga Nainar | 4e3d633 | 2022-03-08 22:28:33 -0800 | [diff] [blame] | 6513 | # Use llvm-profdata.zip for backwards compatibility with tradefed code. |
| 6514 | LLVM_COVERAGE_TOOLS_ZIP := $(PRODUCT_OUT)/llvm-profdata.zip |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 6515 | |
Pirama Arumuga Nainar | 4e3d633 | 2022-03-08 22:28:33 -0800 | [diff] [blame] | 6516 | $(LLVM_COVERAGE_TOOLS_ZIP): $(SOONG_ZIP) |
| 6517 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION) -f $(LLVM_PROFDATA) -f $(LIBCXX) -f $(LLVM_COV) |
| 6518 | |
| 6519 | $(call dist-for-goals,droidcore-unbundled apps_only,$(LLVM_COVERAGE_TOOLS_ZIP)) |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 6520 | endif |
| 6521 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6522 | # ----------------------------------------------------------------- |
| 6523 | # A zip of the Android Apps. Not keeping full path so that we don't |
| 6524 | # include product names when distributing |
| 6525 | # |
| 6526 | name := $(TARGET_PRODUCT) |
| 6527 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6528 | name := $(name)_debug |
| 6529 | endif |
| 6530 | name := $(name)-apps-$(FILE_NAME_TAG) |
| 6531 | |
| 6532 | APPS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 6533 | $(APPS_ZIP): $(FULL_SYSTEMIMAGE_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6534 | @echo "Package apps: $@" |
| 6535 | $(hide) rm -rf $@ |
| 6536 | $(hide) mkdir -p $(dir $@) |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 6537 | $(hide) apps_to_zip=`find $(TARGET_OUT_APPS) $(TARGET_OUT_APPS_PRIVILEGED) -mindepth 2 -maxdepth 3 -name "*.apk"`; \ |
| 6538 | if [ -z "$$apps_to_zip" ]; then \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6539 | echo "No apps to zip up. Generating empty apps archive." ; \ |
| 6540 | a=$$(mktemp /tmp/XXXXXXX) && touch $$a && zip $@ $$a && zip -d $@ $$a; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 6541 | else \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 6542 | zip -qjX $@ $$apps_to_zip; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 6543 | fi |
Guang Zhu | 0198d6e | 2010-04-23 11:54:37 -0700 | [diff] [blame] | 6544 | |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 6545 | ifeq (true,$(EMMA_INSTRUMENT)) |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 6546 | #------------------------------------------------------------------ |
| 6547 | # An archive of classes for use in generating code-coverage reports |
| 6548 | # These are the uninstrumented versions of any classes that were |
| 6549 | # to be instrumented. |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 6550 | # Any dependencies are set up later in build/make/core/main.mk. |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 6551 | |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 6552 | JACOCO_REPORT_CLASSES_ALL := $(PRODUCT_OUT)/jacoco-report-classes-all.jar |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6553 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco) |
| 6554 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_HOST_JACOCO_DIR := $(call intermediates-dir-for,PACKAGING,jacoco,HOST) |
| 6555 | $(JACOCO_REPORT_CLASSES_ALL): PRIVATE_TARGET_PROGUARD_USAGE_DIR := $(call intermediates-dir-for,PACKAGING,proguard_usage) |
| 6556 | $(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] | 6557 | $(JACOCO_REPORT_CLASSES_ALL) : |
| 6558 | @echo "Collecting uninstrumented classes" |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6559 | mkdir -p $(PRIVATE_TARGET_JACOCO_DIR) $(PRIVATE_HOST_JACOCO_DIR) $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) $(PRIVATE_HOST_PROGUARD_USAGE_DIR) |
| 6560 | $(SOONG_ZIP) -o $@ -L 0 \ |
| 6561 | -C $(PRIVATE_TARGET_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_JACOCO_DIR) \ |
| 6562 | -C $(PRIVATE_HOST_JACOCO_DIR) -P out/target/common/obj -D $(PRIVATE_HOST_JACOCO_DIR) \ |
| 6563 | -C $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) -P out/target/common/obj -D $(PRIVATE_TARGET_PROGUARD_USAGE_DIR) \ |
| 6564 | -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] | 6565 | |
Jiyong Park | 3c87560 | 2021-01-21 12:46:56 +0900 | [diff] [blame] | 6566 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6567 | $(JACOCO_REPORT_CLASSES_ALL): $(INTERNAL_ALLIMAGES_FILES) |
| 6568 | endif |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 6569 | endif # EMMA_INSTRUMENT=true |
| 6570 | |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 6571 | |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6572 | #------------------------------------------------------------------ |
| 6573 | # A zip of Proguard obfuscation dictionary files. |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6574 | # Also produces a textproto containing mappings from the hashes of the |
| 6575 | # dictionary contents (which are also stored in the dex files on the |
| 6576 | # devices) to the filename of the proguard dictionary, which will allow |
| 6577 | # finding the appropriate dictionary to deobfuscate a stack trace frame. |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6578 | # |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6579 | |
| 6580 | # The path to the zip file containing proguard dictionaries. |
Ying Wang | c62c92c | 2013-08-28 18:38:25 -0700 | [diff] [blame] | 6581 | PROGUARD_DICT_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict-$(FILE_NAME_TAG).zip |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6582 | # The path to the zip file containing mappings from dictionary hashes to filenames. |
| 6583 | PROGUARD_DICT_MAPPING := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict-mapping-$(FILE_NAME_TAG).textproto |
| 6584 | .KATI_READONLY := PROGUARD_DICT_ZIP PROGUARD_DICT_MAPPING |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 6585 | # 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] | 6586 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Jiyong Park | f66f0ec | 2021-01-14 11:19:54 +0900 | [diff] [blame] | 6587 | $(PROGUARD_DICT_ZIP): $(INTERNAL_ALLIMAGES_FILES) $(updater_dep) |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 6588 | endif |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6589 | $(PROGUARD_DICT_ZIP): PRIVATE_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,proguard_dictionary) |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6590 | $(PROGUARD_DICT_ZIP): PRIVATE_MAPPING_PACKAGING_DIR := $(call intermediates-dir-for,PACKAGING,proguard_dictionary_mapping) |
| 6591 | $(PROGUARD_DICT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard_dictionary_filelist)/filelist |
| 6592 | $(PROGUARD_DICT_ZIP): $(SOONG_ZIP) $(SYMBOLS_MAP) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6593 | @echo "Packaging Proguard obfuscation dictionary files." |
Colin Cross | ac7febc | 2022-04-06 01:11:20 +0000 | [diff] [blame] | 6594 | rm -rf $@ $(PRIVATE_LIST_FILE) |
| 6595 | mkdir -p $(PRIVATE_PACKAGING_DIR) $(PRIVATE_MAPPING_PACKAGING_DIR) $(dir $(PRIVATE_LIST_FILE)) |
| 6596 | # Zip all of the files in the proguard dictionary directory. |
| 6597 | $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(PRIVATE_PACKAGING_DIR) -D $(PRIVATE_PACKAGING_DIR) |
| 6598 | # Find all of the files in the proguard dictionary mapping directory and merge them into the mapping textproto. |
| 6599 | # Strip the PRIVATE_PACKAGING_DIR off the filenames to match soong_zip's -C argument. |
| 6600 | $(hide) find -L $(PRIVATE_MAPPING_PACKAGING_DIR) -type f | sort >$(PRIVATE_LIST_FILE) |
| 6601 | $(SYMBOLS_MAP) -merge $(PROGUARD_DICT_MAPPING) -strip_prefix $(PRIVATE_PACKAGING_DIR)/ -ignore_missing_files @$(PRIVATE_LIST_FILE) |
| 6602 | $(PROGUARD_DICT_ZIP): .KATI_IMPLICIT_OUTPUTS := $(PROGUARD_DICT_MAPPING) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 6603 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6604 | $(call declare-1p-container,$(PROGUARD_DICT_ZIP),) |
| 6605 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6606 | $(call declare-container-license-deps,$(PROGUARD_DICT_ZIP),$(INTERNAL_ALLIMAGES_FILES) $(updater_dep),$(PRODUCT_OUT)/:/) |
| 6607 | endif |
| 6608 | |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6609 | #------------------------------------------------------------------ |
| 6610 | # A zip of Proguard usage files. |
| 6611 | # |
| 6612 | PROGUARD_USAGE_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-usage-$(FILE_NAME_TAG).zip |
| 6613 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
| 6614 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6615 | $(PROGUARD_USAGE_ZIP): \ |
| 6616 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6617 | $(INSTALLED_RAMDISK_TARGET) \ |
| 6618 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Devin Moore | 380d9e4 | 2021-11-04 19:01:19 +0000 | [diff] [blame] | 6619 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6620 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 6621 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 6622 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 6623 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 6624 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 6625 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
| 6626 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6627 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6628 | $(updater_dep) |
| 6629 | endif |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6630 | $(PROGUARD_USAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard_usage.zip)/filelist |
| 6631 | $(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] | 6632 | $(PROGUARD_USAGE_ZIP): $(MERGE_ZIPS) |
| 6633 | @echo "Packaging Proguard usage files." |
Colin Cross | 330b1fe | 2021-04-06 18:04:06 -0700 | [diff] [blame] | 6634 | mkdir -p $(dir $@) $(PRIVATE_PACKAGING_DIR) $(dir $(PRIVATE_LIST_FILE)) |
| 6635 | find $(PRIVATE_PACKAGING_DIR) -name proguard_usage.zip > $(PRIVATE_LIST_FILE) |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 6636 | $(MERGE_ZIPS) $@ @$(PRIVATE_LIST_FILE) |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 6637 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6638 | $(call declare-1p-container,$(PROGUARD_USAGE_ZIP),) |
| 6639 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 6640 | $(call declare-container-license-deps,$(PROGUARD_USAGE_ZIP),$(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6641 | $(INSTALLED_RAMDISK_TARGET) \ |
| 6642 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 6643 | $(INSTALLED_INIT_BOOT_IMAGE_TARGET) \ |
| 6644 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 6645 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 6646 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 6647 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 6648 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 6649 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
| 6650 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
| 6651 | $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) \ |
| 6652 | $(updater_dep),$(PROGUARD_USAGE_ZIP):/) |
| 6653 | endif |
| 6654 | |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 6655 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 6656 | |
| 6657 | # Dump variables used by build_super_image.py (for building super.img and super_empty.img). |
| 6658 | # $(1): output file |
| 6659 | define dump-super-image-info |
| 6660 | $(call dump-dynamic-partitions-info,$(1)) |
| 6661 | $(if $(filter true,$(AB_OTA_UPDATER)), \ |
| 6662 | echo "ab_update=true" >> $(1)) |
| 6663 | endef |
| 6664 | |
| 6665 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
| 6666 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6667 | # ----------------------------------------------------------------- |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6668 | # super partition image (dist) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6669 | |
| 6670 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 6671 | |
| 6672 | # BOARD_SUPER_PARTITION_SIZE must be defined to build super image. |
| 6673 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 6674 | |
| 6675 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6676 | |
| 6677 | # For real devices and for dist builds, build super image from target files to an intermediate directory. |
| 6678 | INTERNAL_SUPERIMAGE_DIST_TARGET := $(call intermediates-dir-for,PACKAGING,super.img)/super.img |
| 6679 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): extracted_input_target_files := $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) |
| 6680 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): $(LPMAKE) $(BUILT_TARGET_FILES_PACKAGE) $(BUILD_SUPER_IMAGE) |
| 6681 | $(call pretty,"Target super fs image from target files: $@") |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 6682 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 6683 | $(BUILD_SUPER_IMAGE) -v $(extracted_input_target_files) $@ |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 6684 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6685 | # Skip packing it in dist package because it is in update package. |
| 6686 | ifneq (true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6687 | $(call dist-for-goals,dist_files,$(INTERNAL_SUPERIMAGE_DIST_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6688 | endif |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6689 | |
| 6690 | .PHONY: superimage_dist |
| 6691 | superimage_dist: $(INTERNAL_SUPERIMAGE_DIST_TARGET) |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 6692 | |
| 6693 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6694 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 6695 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6696 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6697 | # ----------------------------------------------------------------- |
| 6698 | # super partition image for development |
| 6699 | |
| 6700 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 6701 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 6702 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
| 6703 | |
| 6704 | # Build super.img by using $(INSTALLED_*IMAGE_TARGET) to $(1) |
| 6705 | # $(1): built image path |
| 6706 | # $(2): misc_info.txt path; its contents should match expectation of build_super_image.py |
| 6707 | define build-superimage-target |
| 6708 | mkdir -p $(dir $(2)) |
| 6709 | rm -rf $(2) |
| 6710 | $(call dump-super-image-info,$(2)) |
| 6711 | $(foreach p,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 6712 | echo "$(p)_image=$(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)" >> $(2);) |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 6713 | $(if $(BUILDING_SYSTEM_OTHER_IMAGE), $(if $(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)), \ |
| 6714 | echo "system_other_image=$(INSTALLED_SYSTEMOTHERIMAGE_TARGET)" >> $(2);)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6715 | mkdir -p $(dir $(1)) |
| 6716 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 6717 | $(BUILD_SUPER_IMAGE) -v $(2) $(1) |
| 6718 | endef |
| 6719 | |
| 6720 | INSTALLED_SUPERIMAGE_TARGET := $(PRODUCT_OUT)/super.img |
| 6721 | INSTALLED_SUPERIMAGE_DEPENDENCIES := $(LPMAKE) $(BUILD_SUPER_IMAGE) \ |
| 6722 | $(foreach p, $(BOARD_SUPER_PARTITION_PARTITION_LIST), $(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)) |
| 6723 | |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 6724 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 6725 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
| 6726 | INSTALLED_SUPERIMAGE_DEPENDENCIES += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
| 6727 | endif |
| 6728 | endif |
| 6729 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6730 | $(INSTALLED_SUPERIMAGE_TARGET): $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 6731 | $(call pretty,"Target super fs image for debug: $@") |
| 6732 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 6733 | $(call intermediates-dir-for,PACKAGING,superimage_debug)/misc_info.txt) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6734 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 6735 | # For devices that uses super image directly, the superimage target points to the file in $(PRODUCT_OUT). |
| 6736 | .PHONY: superimage |
| 6737 | superimage: $(INSTALLED_SUPERIMAGE_TARGET) |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 6738 | |
Peter Collingbourne | 683c493 | 2022-07-06 15:49:20 -0700 | [diff] [blame] | 6739 | # If BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT is set, super.img is built from images in the |
| 6740 | # $(PRODUCT_OUT) directory, and is built to $(PRODUCT_OUT)/super.img. Also, it will |
| 6741 | # be built for non-dist builds. This is useful for devices that uses super.img directly, e.g. |
| 6742 | # virtual devices. |
| 6743 | ifeq (true,$(BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT)) |
| 6744 | droidcore-unbundled: $(INSTALLED_SUPERIMAGE_TARGET) |
| 6745 | |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 6746 | $(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] | 6747 | endif # BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT |
| 6748 | |
| 6749 | # Build $(PRODUCT_OUT)/super.img without dependencies. |
| 6750 | .PHONY: superimage-nodeps supernod |
| 6751 | superimage-nodeps supernod: intermediates := |
| 6752 | superimage-nodeps supernod: | $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 6753 | $(call pretty,"make $(INSTALLED_SUPERIMAGE_TARGET): ignoring dependencies") |
| 6754 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
| 6755 | $(call intermediates-dir-for,PACKAGING,superimage-nodeps)/misc_info.txt) |
| 6756 | |
| 6757 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
| 6758 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 6759 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
| 6760 | |
| 6761 | # ----------------------------------------------------------------- |
| 6762 | # super empty image |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 6763 | ifdef BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6764 | |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 6765 | INSTALLED_SUPERIMAGE_EMPTY_TARGET := $(PRODUCT_OUT)/super_empty.img |
| 6766 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): intermediates := $(call intermediates-dir-for,PACKAGING,super_empty) |
| 6767 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): $(LPMAKE) $(BUILD_SUPER_IMAGE) |
| 6768 | $(call pretty,"Target empty super fs image: $@") |
| 6769 | mkdir -p $(intermediates) |
| 6770 | rm -rf $(intermediates)/misc_info.txt |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 6771 | $(call dump-super-image-info,$(intermediates)/misc_info.txt) |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 6772 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 6773 | $(BUILD_SUPER_IMAGE) -v $(intermediates)/misc_info.txt $@ |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 6774 | |
| 6775 | $(call dist-for-goals,dist_files,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 6776 | |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 6777 | $(call declare-0p-target,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 6778 | |
Yo Chiang | e86bab4 | 2021-03-25 10:12:28 +0000 | [diff] [blame] | 6779 | endif # BUILDING_SUPER_EMPTY_IMAGE |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6780 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6781 | |
| 6782 | # ----------------------------------------------------------------- |
| 6783 | # The update package |
| 6784 | |
| 6785 | name := $(TARGET_PRODUCT) |
| 6786 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 6787 | name := $(name)_debug |
| 6788 | endif |
| 6789 | name := $(name)-img-$(FILE_NAME_TAG) |
| 6790 | |
| 6791 | INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 6792 | |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 6793 | $(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES) |
| 6794 | $(call pretty,"Package: $@") |
| 6795 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
| 6796 | $(IMG_FROM_TARGET_FILES) \ |
| 6797 | --additional IMAGES/VerifiedBootParams.textproto:VerifiedBootParams.textproto \ |
| 6798 | $(BUILT_TARGET_FILES_PACKAGE) $@ |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6799 | |
Bob Badour | 5acd436 | 2022-04-12 18:31:35 -0700 | [diff] [blame] | 6800 | $(call declare-1p-container,$(INTERNAL_UPDATE_PACKAGE_TARGET),) |
| 6801 | $(call declare-container-license-deps,$(INTERNAL_UPDATE_PACKAGE_TARGET),$(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES),$(PRODUCT_OUT)/:/) |
| 6802 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6803 | .PHONY: updatepackage |
| 6804 | updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET) |
Dan Willemsen | 9ae6495 | 2019-08-05 14:45:11 -0700 | [diff] [blame] | 6805 | $(call dist-for-goals,updatepackage,$(INTERNAL_UPDATE_PACKAGE_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 6806 | |
| 6807 | |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 6808 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6809 | # dalvik something |
| 6810 | .PHONY: dalvikfiles |
| 6811 | dalvikfiles: $(INTERNAL_DALVIK_MODULES) |
| 6812 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6813 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6814 | MK_QEMU_IMAGE_SH := device/generic/goldfish/tools/mk_qemu_image.sh |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6815 | MK_COMBINE_QEMU_IMAGE := $(HOST_OUT_EXECUTABLES)/mk_combined_img |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6816 | SGDISK_HOST := $(HOST_OUT_EXECUTABLES)/sgdisk |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 6817 | |
| 6818 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
| 6819 | INSTALLED_QEMU_SYSTEMIMAGE := $(PRODUCT_OUT)/system-qemu.img |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6820 | INSTALLED_SYSTEM_QEMU_CONFIG := $(PRODUCT_OUT)/system-qemu-config.txt |
| 6821 | $(INSTALLED_SYSTEM_QEMU_CONFIG): $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_VBMETAIMAGE_TARGET) |
| 6822 | @echo "$(PRODUCT_OUT)/vbmeta.img vbmeta 1" > $@ |
| 6823 | @echo "$(INSTALLED_SUPERIMAGE_TARGET) super 2" >> $@ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6824 | $(INSTALLED_QEMU_SYSTEMIMAGE): $(INSTALLED_VBMETAIMAGE_TARGET) $(MK_COMBINE_QEMU_IMAGE) $(SGDISK_HOST) $(SIMG2IMG) \ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6825 | $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_SYSTEM_QEMU_CONFIG) |
| 6826 | @echo Create system-qemu.img now |
| 6827 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 6828 | $(MK_COMBINE_QEMU_IMAGE) -i $(INSTALLED_SYSTEM_QEMU_CONFIG) -o $@) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6829 | |
| 6830 | systemimage: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6831 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 6832 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 6833 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6834 | INSTALLED_QEMU_VENDORIMAGE := $(PRODUCT_OUT)/vendor-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 6835 | $(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] | 6836 | @echo Create vendor-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 6837 | (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] | 6838 | |
| 6839 | vendorimage: $(INSTALLED_QEMU_VENDORIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6840 | droidcore-unbundled: $(INSTALLED_QEMU_VENDORIMAGE) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6841 | endif |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 6842 | |
| 6843 | ifdef INSTALLED_RAMDISK_TARGET |
| 6844 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 6845 | ifdef INTERNAL_VENDOR_RAMDISK_TARGET |
| 6846 | INSTALLED_QEMU_RAMDISKIMAGE := $(PRODUCT_OUT)/ramdisk-qemu.img |
| 6847 | $(INSTALLED_QEMU_RAMDISKIMAGE): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_RAMDISK_TARGET) |
| 6848 | @echo Create ramdisk-qemu.img |
| 6849 | (cat $(INSTALLED_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_TARGET) > $(INSTALLED_QEMU_RAMDISKIMAGE)) |
| 6850 | |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6851 | droidcore-unbundled: $(INSTALLED_QEMU_RAMDISKIMAGE) |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 6852 | endif |
| 6853 | endif |
| 6854 | endif |
| 6855 | |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 6856 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6857 | INSTALLED_QEMU_PRODUCTIMAGE := $(PRODUCT_OUT)/product-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 6858 | $(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] | 6859 | @echo Create product-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 6860 | (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] | 6861 | |
| 6862 | productimage: $(INSTALLED_QEMU_PRODUCTIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6863 | droidcore-unbundled: $(INSTALLED_QEMU_PRODUCTIMAGE) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 6864 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6865 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 6866 | INSTALLED_QEMU_SYSTEM_EXTIMAGE := $(PRODUCT_OUT)/system_ext-qemu.img |
| 6867 | $(INSTALLED_QEMU_SYSTEM_EXTIMAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) $(SIMG2IMG) |
| 6868 | @echo Create system_ext-qemu.img |
| 6869 | (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] | 6870 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 6871 | systemextimage: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6872 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 6873 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 6874 | ifdef INSTALLED_ODMIMAGE_TARGET |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6875 | INSTALLED_QEMU_ODMIMAGE := $(PRODUCT_OUT)/odm-qemu.img |
| 6876 | $(INSTALLED_QEMU_ODMIMAGE): $(INSTALLED_ODMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 6877 | @echo Create odm-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 6878 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODMIMAGE_TARGET)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6879 | |
| 6880 | odmimage: $(INSTALLED_QEMU_ODMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6881 | droidcore-unbundled: $(INSTALLED_QEMU_ODMIMAGE) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 6882 | endif |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6883 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6884 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 6885 | INSTALLED_QEMU_VENDOR_DLKMIMAGE := $(PRODUCT_OUT)/vendor_dlkm-qemu.img |
| 6886 | $(INSTALLED_QEMU_VENDOR_DLKMIMAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 6887 | @echo Create vendor_dlkm-qemu.img |
| 6888 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)) |
| 6889 | |
| 6890 | vendor_dlkmimage: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6891 | droidcore-unbundled: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6892 | endif |
| 6893 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6894 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 6895 | INSTALLED_QEMU_ODM_DLKMIMAGE := $(PRODUCT_OUT)/odm_dlkm-qemu.img |
| 6896 | $(INSTALLED_QEMU_ODM_DLKMIMAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 6897 | @echo Create odm_dlkm-qemu.img |
| 6898 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODM_DLKMIMAGE_TARGET)) |
| 6899 | |
| 6900 | odm_dlkmimage: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6901 | droidcore-unbundled: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 6902 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 6903 | |
Ramji Jiyani | 13a4137 | 2022-01-27 07:05:08 +0000 | [diff] [blame] | 6904 | ifdef INSTALLED_SYSTEM_DLKMIMAGE_TARGET |
| 6905 | INSTALLED_QEMU_SYSTEM_DLKMIMAGE := $(PRODUCT_OUT)/system_dlkm-qemu.img |
| 6906 | $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE): $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 6907 | @echo Create system_dlkm-qemu.img |
| 6908 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_SYSTEM_DLKMIMAGE_TARGET)) |
| 6909 | |
| 6910 | system_dlkmimage: $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE) |
| 6911 | droidcore-unbundled: $(INSTALLED_QEMU_SYSTEM_DLKMIMAGE) |
| 6912 | endif |
| 6913 | |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6914 | QEMU_VERIFIED_BOOT_PARAMS := $(PRODUCT_OUT)/VerifiedBootParams.textproto |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6915 | $(QEMU_VERIFIED_BOOT_PARAMS): $(INSTALLED_VBMETAIMAGE_TARGET) $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6916 | $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(AVBTOOL) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6917 | @echo Creating $@ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6918 | (export AVBTOOL=$(AVBTOOL); $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(INSTALLED_VBMETAIMAGE_TARGET) \ |
| 6919 | $(INSTALLED_SYSTEMIMAGE_TARGET) $(QEMU_VERIFIED_BOOT_PARAMS)) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 6920 | |
| 6921 | systemimage: $(QEMU_VERIFIED_BOOT_PARAMS) |
Bill Peckham | 315b98a | 2021-06-15 19:35:06 -0700 | [diff] [blame] | 6922 | droidcore-unbundled: $(QEMU_VERIFIED_BOOT_PARAMS) |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 6923 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 6924 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6925 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6926 | # The emulator package |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 6927 | ifeq ($(BUILD_EMULATOR),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6928 | INTERNAL_EMULATOR_PACKAGE_FILES += \ |
| 6929 | $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6930 | $(INSTALLED_RAMDISK_TARGET) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 6931 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 6932 | $(INSTALLED_USERDATAIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6933 | |
| 6934 | name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG) |
| 6935 | |
| 6936 | INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 6937 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 6938 | $(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6939 | @echo "Package: $@" |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 6940 | $(hide) zip -qjX $@ $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6941 | |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 6942 | endif |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 6943 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6944 | |
| 6945 | # ----------------------------------------------------------------- |
| 6946 | # The SDK |
| 6947 | |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6948 | ifneq ($(filter sdk,$(MAKECMDGOALS)),) |
| 6949 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6950 | # The SDK includes host-specific components, so it belongs under HOST_OUT. |
Ying Wang | d7af176 | 2014-06-02 16:16:53 -0700 | [diff] [blame] | 6951 | sdk_dir := $(HOST_OUT)/sdk/$(TARGET_PRODUCT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6952 | |
| 6953 | # Build a name that looks like: |
| 6954 | # |
| 6955 | # linux-x86 --> android-sdk_12345_linux-x86 |
| 6956 | # darwin-x86 --> android-sdk_12345_mac-x86 |
| 6957 | # windows-x86 --> android-sdk_12345_windows |
| 6958 | # |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6959 | ifneq ($(HOST_OS),linux) |
| 6960 | $(error Building the monolithic SDK is only supported on Linux) |
| 6961 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6962 | sdk_name := android-sdk_$(FILE_NAME_TAG) |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 6963 | INTERNAL_SDK_HOST_OS_NAME := linux-$(SDK_HOST_ARCH) |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 6964 | sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6965 | |
| 6966 | sdk_dep_file := $(sdk_dir)/sdk_deps.mk |
| 6967 | |
| 6968 | ATREE_FILES := |
| 6969 | -include $(sdk_dep_file) |
| 6970 | |
| 6971 | # if we don't have a real list, then use "everything" |
| 6972 | ifeq ($(strip $(ATREE_FILES)),) |
| 6973 | ATREE_FILES := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6974 | $(ALL_DOCS) \ |
| 6975 | $(ALL_SDK_FILES) |
| 6976 | endif |
| 6977 | |
| 6978 | atree_dir := development/build |
| 6979 | |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 6980 | |
Dan Willemsen | 53c98f7 | 2021-10-16 16:49:06 -0700 | [diff] [blame] | 6981 | sdk_atree_files := $(atree_dir)/sdk.exclude.atree |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6982 | |
David 'Digit' Turner | 77ec16a | 2011-06-23 12:49:02 +0200 | [diff] [blame] | 6983 | # development/build/sdk-android-<abi>.atree is used to differentiate |
| 6984 | # between architecture models (e.g. ARMv5TE versus ARMv7) when copying |
| 6985 | # files like the kernel image. We use TARGET_CPU_ABI because we don't |
| 6986 | # have a better way to distinguish between CPU models. |
| 6987 | ifneq (,$(strip $(wildcard $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree))) |
| 6988 | sdk_atree_files += $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree |
| 6989 | endif |
| 6990 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 6991 | ifneq ($(PRODUCT_SDK_ATREE_FILES),) |
| 6992 | sdk_atree_files += $(PRODUCT_SDK_ATREE_FILES) |
Griff Hazen | 433febb | 2014-02-28 08:45:59 -0800 | [diff] [blame] | 6993 | else |
| 6994 | sdk_atree_files += $(atree_dir)/sdk.atree |
| 6995 | endif |
| 6996 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6997 | deps := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6998 | $(OUT_DOCS)/offline-sdk-timestamp \ |
Jerome Gaillard | a0171af | 2019-10-10 19:35:08 +0100 | [diff] [blame] | 6999 | $(SDK_METADATA_FILES) \ |
Anton Hansson | 55a8f02 | 2022-05-12 08:45:29 +0000 | [diff] [blame] | 7000 | $(INSTALLED_SDK_BUILD_PROP_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7001 | $(ATREE_FILES) \ |
Ying Wang | 0c0a4ce | 2014-02-18 14:29:59 -0800 | [diff] [blame] | 7002 | $(sdk_atree_files) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7003 | $(HOST_OUT_EXECUTABLES)/atree \ |
Jerome Gaillard | cf713d4 | 2019-10-23 11:43:26 +0100 | [diff] [blame] | 7004 | $(HOST_OUT_EXECUTABLES)/line_endings |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7005 | |
Anton Hansson | 874dbe7 | 2022-10-26 15:00:55 +0000 | [diff] [blame] | 7006 | # The name of the subdir within the platforms dir of the sdk. One of: |
| 7007 | # - android-<SDK_INT> (stable base dessert SDKs) |
| 7008 | # - android-<CODENAME> (stable extension SDKs) |
| 7009 | # - android-<SDK_INT>-ext<EXT_INT> (codename SDKs) |
| 7010 | sdk_platform_dir_name := $(strip \ |
| 7011 | $(if $(filter REL,$(PLATFORM_VERSION_CODENAME)), \ |
| 7012 | $(if $(filter $(PLATFORM_SDK_EXTENSION_VERSION),$(PLATFORM_BASE_SDK_EXTENSION_VERSION)), \ |
| 7013 | android-$(PLATFORM_SDK_VERSION), \ |
| 7014 | android-$(PLATFORM_SDK_VERSION)-ext$(PLATFORM_SDK_EXTENSION_VERSION) \ |
| 7015 | ), \ |
| 7016 | android-$(PLATFORM_VERSION_CODENAME) \ |
| 7017 | ) \ |
| 7018 | ) |
| 7019 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7020 | INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip |
| 7021 | $(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name) |
| 7022 | $(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name) |
| 7023 | $(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file) |
| 7024 | $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files) |
Anton Hansson | 874dbe7 | 2022-10-26 15:00:55 +0000 | [diff] [blame] | 7025 | $(INTERNAL_SDK_TARGET): PRIVATE_PLATFORM_NAME := $(sdk_platform_dir_name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7026 | # Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built. |
| 7027 | # |
| 7028 | #SDK_GNU_ERROR := true |
| 7029 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 7030 | $(INTERNAL_SDK_TARGET): $(deps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7031 | @echo "Package SDK: $@" |
| 7032 | $(hide) rm -rf $(PRIVATE_DIR) $@ |
Sasha Smundak | 0e4a5ad | 2021-05-13 13:37:53 -0700 | [diff] [blame] | 7033 | $(hide) for f in $(strip $(target_gnu_MODULES)); do \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7034 | if [ -f $$f ]; then \ |
| 7035 | echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \ |
| 7036 | including GNU target $$f >&2; \ |
| 7037 | FAIL=$(SDK_GNU_ERROR); \ |
| 7038 | fi; \ |
| 7039 | done; \ |
| 7040 | if [ $$FAIL ]; then exit 1; fi |
| 7041 | $(hide) ( \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7042 | ATREE_STRIP="$(HOST_STRIP) -x" \ |
| 7043 | $(HOST_OUT_EXECUTABLES)/atree \ |
| 7044 | $(addprefix -f ,$(PRIVATE_INPUT_FILES)) \ |
| 7045 | -m $(PRIVATE_DEP_FILE) \ |
| 7046 | -I . \ |
| 7047 | -I $(PRODUCT_OUT) \ |
| 7048 | -I $(HOST_OUT) \ |
| 7049 | -I $(TARGET_COMMON_OUT_ROOT) \ |
Anton Hansson | 874dbe7 | 2022-10-26 15:00:55 +0000 | [diff] [blame] | 7050 | -v "PLATFORM_NAME=$(PRIVATE_PLATFORM_NAME)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7051 | -v "OUT_DIR=$(OUT_DIR)" \ |
| 7052 | -v "HOST_OUT=$(HOST_OUT)" \ |
| 7053 | -v "TARGET_ARCH=$(TARGET_ARCH)" \ |
| 7054 | -v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \ |
| 7055 | -v "DLL_EXTENSION=$(HOST_SHLIB_SUFFIX)" \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7056 | -o $(PRIVATE_DIR) && \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 7057 | HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \ |
| 7058 | development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \ |
| 7059 | chmod -R ug+rwX $(PRIVATE_DIR) && \ |
| 7060 | cd $(dir $@) && zip -rqX $(notdir $@) $(PRIVATE_NAME) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7061 | ) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 ) |
| 7062 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 7063 | MAIN_SDK_DIR := $(sdk_dir) |
| 7064 | MAIN_SDK_ZIP := $(INTERNAL_SDK_TARGET) |
Dan Willemsen | 39b81cd | 2021-09-16 14:23:07 -0700 | [diff] [blame] | 7065 | |
| 7066 | endif # sdk in MAKECMDGOALS |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 7067 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7068 | # ----------------------------------------------------------------- |
| 7069 | # Findbugs |
| 7070 | INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml |
| 7071 | INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html |
| 7072 | $(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES) |
| 7073 | @echo UnionBugs: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 7074 | $(hide) $(FINDBUGS_DIR)/unionBugs $(ALL_FINDBUGS_FILES) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7075 | > $@ |
| 7076 | $(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET) |
| 7077 | @echo ConvertXmlToText: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 7078 | $(hide) $(FINDBUGS_DIR)/convertXmlToText -html:fancy.xsl \ |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 7079 | $(INTERNAL_FINDBUGS_XML_TARGET) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7080 | |
| 7081 | # ----------------------------------------------------------------- |
| 7082 | # Findbugs |
| 7083 | |
| 7084 | # ----------------------------------------------------------------- |
| 7085 | # These are some additional build tasks that need to be run. |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 7086 | ifneq ($(dont_bother),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7087 | include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk)) |
Claes Elgemark | e22ad67 | 2010-11-12 15:46:00 +0100 | [diff] [blame] | 7088 | -include $(sort $(wildcard vendor/*/build/tasks/*.mk)) |
Andrew Boie | f34a9ba | 2012-04-16 10:03:16 -0700 | [diff] [blame] | 7089 | -include $(sort $(wildcard device/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 7090 | -include $(sort $(wildcard product/*/build/tasks/*.mk)) |
Ying Wang | 66c78e4 | 2014-09-05 17:47:34 -0700 | [diff] [blame] | 7091 | # Also the project-specific tasks |
| 7092 | -include $(sort $(wildcard vendor/*/*/build/tasks/*.mk)) |
| 7093 | -include $(sort $(wildcard device/*/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 7094 | -include $(sort $(wildcard product/*/*/build/tasks/*.mk)) |
Guang Zhu | 8322be7 | 2016-06-20 22:03:24 -0700 | [diff] [blame] | 7095 | # Also add test specifc tasks |
| 7096 | include $(sort $(wildcard platform_testing/build/tasks/*.mk)) |
Keun Soo Yim | 199a710 | 2016-08-31 09:20:51 -0700 | [diff] [blame] | 7097 | include $(sort $(wildcard test/vts/tools/build/tasks/*.mk)) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 7098 | endif |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 7099 | |
Ying Wang | 67132ba | 2015-10-28 16:42:39 -0700 | [diff] [blame] | 7100 | include $(BUILD_SYSTEM)/product-graph.mk |
| 7101 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 7102 | # ----------------------------------------------------------------- |
| 7103 | # Create SDK repository packages. Must be done after tasks/* since |
| 7104 | # we need the addon rules defined. |
| 7105 | ifneq ($(sdk_repo_goal),) |
| 7106 | include $(TOPDIR)development/build/tools/sdk_repo.mk |
| 7107 | endif |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 7108 | |
| 7109 | # ----------------------------------------------------------------- |
Mitch Phillips | 3adbcb3 | 2019-10-17 19:24:46 -0700 | [diff] [blame] | 7110 | # Soong generates the list of all shared libraries that are depended on by fuzz |
| 7111 | # targets. It saves this list as a source:destination pair to |
| 7112 | # FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS, where the source is the path to the |
| 7113 | # build of the unstripped shared library, and the destination is the |
| 7114 | # /data/fuzz/$ARCH/lib (for device) or /fuzz/$ARCH/lib (for host) directory |
| 7115 | # where fuzz target shared libraries are to be "reinstalled". The |
| 7116 | # copy-many-files below generates the rules to copy the unstripped shared |
| 7117 | # libraries to the device or host "reinstallation" directory. These rules are |
| 7118 | # depended on by each module in soong_cc_prebuilt.mk, where the module will have |
| 7119 | # a dependency on each shared library that it needs to be "reinstalled". |
| 7120 | FUZZ_SHARED_DEPS := $(call copy-many-files,$(strip $(FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS))) |
| 7121 | |
| 7122 | # ----------------------------------------------------------------- |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 7123 | # 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] | 7124 | # Note: The packages are created in Soong, and in a perfect world, |
| 7125 | # we'd be able to create the phony rule there. But, if we want to |
| 7126 | # have dist goals for the fuzz target, we need to have the PHONY |
| 7127 | # target defined in make. MakeVarsContext.DistForGoal doesn't take |
| 7128 | # into account that a PHONY rule create by Soong won't be available |
| 7129 | # during make, and such will fail with `writing to readonly |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 7130 | # directory`, because kati will see 'haiku' as being a file, not a |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 7131 | # phony target. |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 7132 | .PHONY: haiku |
| 7133 | haiku: $(SOONG_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_FUZZ_TARGETS) |
| 7134 | $(call dist-for-goals,haiku,$(SOONG_FUZZ_PACKAGING_ARCH_MODULES)) |
Mark | f7ffdac | 2022-10-04 20:09:44 +0000 | [diff] [blame] | 7135 | $(call dist-for-goals,haiku,$(PRODUCT_OUT)/module-info.json) |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 7136 | |
Muhammad Haseeb Ahmad | e3a8940 | 2022-10-13 21:19:06 +0000 | [diff] [blame] | 7137 | .PHONY: haiku-java-device |
| 7138 | haiku-java-device: $(SOONG_JAVA_FUZZ_DEVICE_PACKAGING_ARCH_MODULES) $(ALL_JAVA_FUZZ_DEVICE_TARGETS) |
| 7139 | $(call dist-for-goals,haiku-java-device,$(SOONG_JAVA_FUZZ_DEVICE_PACKAGING_ARCH_MODULES)) |
| 7140 | $(call dist-for-goals,haiku-java-device,$(PRODUCT_OUT)/module-info.json) |
| 7141 | |
| 7142 | .PHONY: haiku-java-host |
| 7143 | haiku-java-host: $(SOONG_JAVA_FUZZ_HOST_PACKAGING_ARCH_MODULES) $(ALL_JAVA_FUZZ_HOST_TARGETS) |
| 7144 | $(call dist-for-goals,haiku-java-host,$(SOONG_JAVA_FUZZ_HOST_PACKAGING_ARCH_MODULES)) |
| 7145 | $(call dist-for-goals,haiku-java-host,$(PRODUCT_OUT)/module-info.json) |
Muhammad Haseeb Ahmad | cced136 | 2022-01-13 03:17:39 +0000 | [diff] [blame] | 7146 | |
hamzeh | 5dfe7a2 | 2021-04-29 12:44:16 -0700 | [diff] [blame] | 7147 | .PHONY: haiku-rust |
| 7148 | haiku-rust: $(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_RUST_FUZZ_TARGETS) |
| 7149 | $(call dist-for-goals,haiku-rust,$(SOONG_RUST_FUZZ_PACKAGING_ARCH_MODULES)) |
Mark | f7ffdac | 2022-10-04 20:09:44 +0000 | [diff] [blame] | 7150 | $(call dist-for-goals,haiku-rust,$(PRODUCT_OUT)/module-info.json) |
Jerome Gaillard | cf713d4 | 2019-10-23 11:43:26 +0100 | [diff] [blame] | 7151 | |
| 7152 | # ----------------------------------------------------------------- |
| 7153 | # Extract platform fonts used in Layoutlib |
| 7154 | include $(BUILD_SYSTEM)/layoutlib_fonts.mk |
Bob Badour | ebdefc0 | 2022-02-12 15:39:22 -0800 | [diff] [blame] | 7155 | |
| 7156 | |
| 7157 | # ----------------------------------------------------------------- |
| 7158 | # OS Licensing |
| 7159 | |
| 7160 | include $(BUILD_SYSTEM)/os_licensing.mk |
| 7161 | |
| 7162 | # When appending new code to this file, please insert above OS Licensing |