The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # Put some miscellaneous rules here |
| 2 | |
Ying Wang | 3bbfddd | 2014-03-01 15:32:04 -0800 | [diff] [blame] | 3 | # HACK: clear LOCAL_PATH from including last build target before calling |
| 4 | # intermedites-dir-for |
| 5 | LOCAL_PATH := $(BUILD_SYSTEM) |
| 6 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 7 | # ----------------------------------------------------------------- |
| 8 | # Define rules to copy PRODUCT_COPY_FILES defined by the product. |
Ying Wang | 4b0486b | 2012-09-20 16:35:36 -0700 | [diff] [blame] | 9 | # PRODUCT_COPY_FILES contains words like <source file>:<dest file>[:<owner>]. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 10 | # <dest file> is relative to $(PRODUCT_OUT), so it should look like, |
| 11 | # e.g., "system/etc/file.xml". |
Jean-Baptiste Queru | 518ce57 | 2010-03-01 16:18:59 -0800 | [diff] [blame] | 12 | # The filter part means "only eval the copy-one-file rule if this |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 13 | # src:dest pair is the first one to match the same dest" |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 14 | #$(1): the src:dest pair |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 15 | #$(2): the dest |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 16 | define check-product-copy-files |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 17 | $(if $(filter-out $(TARGET_COPY_OUT_SYSTEM_OTHER)/%,$(2)), \ |
| 18 | $(if $(filter %.apk, $(2)),$(error \ |
Yifan Hong | 5e57a77 | 2020-01-09 16:15:11 -0800 | [diff] [blame] | 19 | Prebuilt apk found in PRODUCT_COPY_FILES: $(1), use BUILD_PREBUILT instead!))) \ |
| 20 | $(if $(filter true,$(BUILD_BROKEN_VINTF_PRODUCT_COPY_FILES)),, \ |
| 21 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM)/etc/vintf/% \ |
| 22 | $(TARGET_COPY_OUT_SYSTEM)/manifest.xml \ |
| 23 | $(TARGET_COPY_OUT_SYSTEM)/compatibility_matrix.xml,$(2)), \ |
| 24 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), use vintf_fragments instead!)) \ |
| 25 | $(if $(filter $(TARGET_COPY_OUT_PRODUCT)/etc/vintf/%,$(2)), \ |
| 26 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 27 | use PRODUCT_MANIFEST_FILES / DEVICE_PRODUCT_COMPATIBILITY_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 28 | $(if $(filter $(TARGET_COPY_OUT_SYSTEM_EXT)/etc/vintf/%,$(2)), \ |
| 29 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 30 | use vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 31 | $(if $(filter $(TARGET_COPY_OUT_VENDOR)/etc/vintf/% \ |
| 32 | $(TARGET_COPY_OUT_VENDOR)/manifest.xml \ |
| 33 | $(TARGET_COPY_OUT_VENDOR)/compatibility_matrix.xml,$(2)), \ |
| 34 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 35 | use DEVICE_MANIFEST_FILE / DEVICE_MATRIX_FILE / vintf_compatibility_matrix / vintf_fragments instead!)) \ |
| 36 | $(if $(filter $(TARGET_COPY_OUT_ODM)/etc/vintf/% \ |
| 37 | $(TARGET_COPY_OUT_ODM)/etc/manifest%,$(2)), \ |
| 38 | $(error VINTF metadata found in PRODUCT_COPY_FILES: $(1), \ |
| 39 | use ODM_MANIFEST_FILES / vintf_fragments instead!)) \ |
| 40 | ) |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 41 | endef |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 42 | |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 43 | check_elf_prebuilt_product_copy_files := true |
Yo Chiang | 73d3148 | 2020-04-07 15:59:59 +0800 | [diff] [blame] | 44 | ifneq (,$(filter true,$(BUILD_BROKEN_ELF_PREBUILT_PRODUCT_COPY_FILES))) |
| 45 | check_elf_prebuilt_product_copy_files := |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 46 | endif |
| 47 | check_elf_prebuilt_product_copy_files_hint := \ |
| 48 | found ELF prebuilt in PRODUCT_COPY_FILES, use cc_prebuilt_binary / cc_prebuilt_library_shared instead. |
| 49 | |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 50 | # filter out the duplicate <source file>:<dest file> pairs. |
| 51 | unique_product_copy_files_pairs := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 52 | $(foreach cf,$(PRODUCT_COPY_FILES), \ |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 53 | $(if $(filter $(unique_product_copy_files_pairs),$(cf)),,\ |
| 54 | $(eval unique_product_copy_files_pairs += $(cf)))) |
| 55 | unique_product_copy_files_destinations := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 56 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 57 | $(foreach cf,$(unique_product_copy_files_pairs), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 58 | $(eval _src := $(call word-colon,1,$(cf))) \ |
| 59 | $(eval _dest := $(call word-colon,2,$(cf))) \ |
Dan Willemsen | 7d957c9 | 2018-04-30 16:01:33 -0700 | [diff] [blame] | 60 | $(call check-product-copy-files,$(cf),$(_dest)) \ |
Ying Wang | 193010c | 2011-12-16 11:54:25 -0800 | [diff] [blame] | 61 | $(if $(filter $(unique_product_copy_files_destinations),$(_dest)), \ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 62 | $(eval product_copy_files_ignored += $(cf)), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 63 | $(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \ |
Ying Wang | 3ceecfa | 2012-05-14 14:39:00 -0700 | [diff] [blame] | 64 | $(if $(filter %.xml,$(_dest)),\ |
| 65 | $(eval $(call copy-xml-file-checked,$(_src),$(_fulldest))),\ |
Nicolas Geoffray | a95fbd1 | 2017-09-19 13:10:31 +0100 | [diff] [blame] | 66 | $(if $(and $(filter %.jar,$(_dest)),$(filter $(basename $(notdir $(_dest))),$(PRODUCT_LOADED_BY_PRIVILEGED_MODULES))),\ |
| 67 | $(eval $(call copy-and-uncompress-dexs,$(_src),$(_fulldest))), \ |
Tom Cherry | fc97764 | 2018-06-13 14:51:05 -0700 | [diff] [blame] | 68 | $(if $(filter init%rc,$(notdir $(_dest)))$(filter %/etc/init,$(dir $(_dest))),\ |
| 69 | $(eval $(call copy-init-script-file-checked,$(_src),$(_fulldest))),\ |
Yo Chiang | 0b49c03 | 2020-03-17 17:49:49 +0800 | [diff] [blame] | 70 | $(if $(and $(filter true,$(check_elf_prebuilt_product_copy_files)), \ |
| 71 | $(filter bin lib lib64,$(subst /,$(space),$(_dest)))), \ |
| 72 | $(eval $(call copy-non-elf-file-checked,$(_src),$(_fulldest),$(check_elf_prebuilt_product_copy_files_hint))), \ |
| 73 | $(eval $(call copy-one-file,$(_src),$(_fulldest))))))) \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 74 | $(eval unique_product_copy_files_destinations += $(_dest)))) |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 75 | |
| 76 | # Dump a list of overriden (and ignored PRODUCT_COPY_FILES entries) |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 77 | pcf_ignored_file := $(PRODUCT_OUT)/product_copy_files_ignored.txt |
| 78 | $(pcf_ignored_file): PRIVATE_IGNORED := $(sort $(product_copy_files_ignored)) |
| 79 | $(pcf_ignored_file): |
| 80 | echo "$(PRIVATE_IGNORED)" | tr " " "\n" >$@ |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 81 | |
Dan Willemsen | 7537fd0 | 2018-10-16 23:15:08 -0700 | [diff] [blame] | 82 | $(call dist-for-goals,droidcore,$(pcf_ignored_file):logs/$(notdir $(pcf_ignored_file))) |
| 83 | |
| 84 | pcf_ignored_file := |
Dan Willemsen | 403b98a | 2017-11-15 11:13:23 -0800 | [diff] [blame] | 85 | product_copy_files_ignored := |
Ying Wang | 619fccf | 2012-09-05 18:08:29 -0700 | [diff] [blame] | 86 | unique_product_copy_files_pairs := |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 87 | unique_product_copy_files_destinations := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 88 | |
| 89 | # ----------------------------------------------------------------- |
Bowgo Tsai | 03b9c8e | 2017-11-17 15:22:37 +0800 | [diff] [blame] | 90 | # Returns the max allowed size for an image suitable for hash verification |
| 91 | # (e.g., boot.img, recovery.img, etc). |
| 92 | # The value 69632 derives from MAX_VBMETA_SIZE + MAX_FOOTER_SIZE in $(AVBTOOL). |
| 93 | # $(1): partition size to flash the image |
| 94 | define get-hash-image-max-size |
| 95 | $(if $(1), \ |
| 96 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 97 | $(eval _hash_meta_size := 69632), \ |
| 98 | $(eval _hash_meta_size := 0)) \ |
| 99 | $(1)-$(_hash_meta_size)) |
| 100 | endef |
| 101 | |
| 102 | # ----------------------------------------------------------------- |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 103 | # Define rules to copy headers defined in copy_headers.mk |
| 104 | # If more than one makefile declared a header, print a warning, |
| 105 | # then copy the last one defined. This matches the previous make |
| 106 | # behavior. |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 107 | has_dup_copy_headers := |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 108 | $(foreach dest,$(ALL_COPIED_HEADERS), \ |
| 109 | $(eval _srcs := $(ALL_COPIED_HEADERS.$(dest).SRC)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 110 | $(eval _src := $(lastword $(_srcs))) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 111 | $(if $(call streq,$(_src),$(_srcs)),, \ |
| 112 | $(warning Duplicate header copy: $(dest)) \ |
Dan Willemsen | f4249d1 | 2019-02-07 17:34:57 -0800 | [diff] [blame] | 113 | $(warning _ Using $(_src)) \ |
| 114 | $(warning __ from $(lastword $(ALL_COPIED_HEADERS.$(dest).MAKEFILE))) \ |
| 115 | $(eval _makefiles := $$(wordlist 1,$(call int_subtract,$(words $(ALL_COPIED_HEADERS.$(dest).MAKEFILE)),1),$$(ALL_COPIED_HEADERS.$$(dest).MAKEFILE))) \ |
| 116 | $(foreach src,$(wordlist 1,$(call int_subtract,$(words $(_srcs)),1),$(_srcs)), \ |
| 117 | $(warning _ Ignoring $(src)) \ |
| 118 | $(warning __ from $(firstword $(_makefiles))) \ |
| 119 | $(eval _makefiles := $$(wordlist 2,9999,$$(_makefiles)))) \ |
| 120 | $(eval has_dup_copy_headers := true)) \ |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 121 | $(eval $(call copy-one-header,$(_src),$(dest)))) |
| 122 | all_copied_headers: $(ALL_COPIED_HEADERS) |
| 123 | |
Dan Willemsen | 7f9bd56 | 2018-08-15 14:28:01 -0700 | [diff] [blame] | 124 | ifdef has_dup_copy_headers |
| 125 | has_dup_copy_headers := |
Dan Willemsen | 1d4a56f | 2019-04-18 09:38:25 -0700 | [diff] [blame] | 126 | $(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] | 127 | endif |
| 128 | |
Dan Willemsen | 79a0caf | 2019-12-13 18:55:18 -0800 | [diff] [blame] | 129 | $(file >$(PRODUCT_OUT)/.copied_headers_list,$(TARGET_OUT_HEADERS) $(ALL_COPIED_HEADERS)) |
| 130 | |
Dan Willemsen | 6f60f02 | 2016-02-23 13:40:07 -0800 | [diff] [blame] | 131 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 132 | # docs/index.html |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 133 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 134 | gen := $(OUT_DOCS)/index.html |
| 135 | ALL_DOCS += $(gen) |
| 136 | $(gen): frameworks/base/docs/docs-redirect-index.html |
| 137 | @mkdir -p $(dir $@) |
| 138 | @cp -f $< $@ |
Ying Wang | 3f45b3c | 2012-04-02 18:21:36 -0700 | [diff] [blame] | 139 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 140 | |
Dan Albert | 303e603 | 2017-10-04 10:20:20 -0700 | [diff] [blame] | 141 | ndk_doxygen_out := $(OUT_NDK_DOCS) |
| 142 | ndk_headers := $(SOONG_OUT_DIR)/ndk/sysroot/usr/include |
| 143 | ndk_docs_src_dir := frameworks/native/docs |
| 144 | ndk_doxyfile := $(ndk_docs_src_dir)/Doxyfile |
| 145 | ifneq ($(wildcard $(ndk_docs_src_dir)),) |
| 146 | ndk_docs_srcs := $(addprefix $(ndk_docs_src_dir)/,\ |
| 147 | $(call find-files-in-subdirs,$(ndk_docs_src_dir),"*",.)) |
| 148 | $(ndk_doxygen_out)/index.html: $(ndk_docs_srcs) $(SOONG_OUT_DIR)/ndk.timestamp |
| 149 | @mkdir -p $(ndk_doxygen_out) |
| 150 | @echo "Generating NDK docs to $(ndk_doxygen_out)" |
| 151 | @( cat $(ndk_doxyfile); \ |
| 152 | echo "INPUT=$(ndk_headers)"; \ |
| 153 | echo "HTML_OUTPUT=$(ndk_doxygen_out)" \ |
| 154 | ) | doxygen - |
| 155 | |
| 156 | # Note: Not a part of the docs target because we don't have doxygen available. |
| 157 | # You can run this target locally if you have doxygen installed. |
| 158 | ndk-docs: $(ndk_doxygen_out)/index.html |
| 159 | .PHONY: ndk-docs |
| 160 | endif |
| 161 | |
Colin Cross | d60401a | 2019-04-18 14:46:48 -0700 | [diff] [blame] | 162 | $(call dist-for-goals,sdk,$(API_FINGERPRINT)) |
Dan Willemsen | ad6a154 | 2018-12-14 01:04:19 -0800 | [diff] [blame] | 163 | |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 164 | INSTALLED_RECOVERYIMAGE_TARGET := |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 165 | ifdef BUILDING_RECOVERY_IMAGE |
| 166 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 167 | INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img |
| 168 | endif |
Andres Morales | b8876e1 | 2015-05-06 20:44:22 -0700 | [diff] [blame] | 169 | endif |
| 170 | |
Jiyong Park | e134686 | 2020-05-18 14:31:30 +0900 | [diff] [blame] | 171 | include $(BUILD_SYSTEM)/sysprop.mk |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 172 | |
| 173 | # ---------------------------------------------------------------- |
| 174 | |
| 175 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 176 | # sdk-build.prop |
| 177 | # |
| 178 | # There are certain things in build.prop that we don't want to |
| 179 | # ship with the sdk; remove them. |
| 180 | |
| 181 | # This must be a list of entire property keys followed by |
| 182 | # "=" characters, without any internal spaces. |
| 183 | sdk_build_prop_remove := \ |
| 184 | ro.build.user= \ |
| 185 | ro.build.host= \ |
| 186 | ro.product.brand= \ |
| 187 | ro.product.manufacturer= \ |
| 188 | ro.product.device= |
| 189 | # TODO: Remove this soon-to-be obsolete property |
| 190 | sdk_build_prop_remove += ro.build.product= |
| 191 | INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop |
| 192 | $(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET) |
| 193 | @echo SDK buildinfo: $@ |
| 194 | @mkdir -p $(dir $@) |
| 195 | $(hide) grep -v "$(subst $(space),\|,$(strip \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 196 | $(sdk_build_prop_remove)))" $< > $@.tmp |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 197 | $(hide) for x in $(sdk_build_prop_remove); do \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 198 | echo "$$x"generic >> $@.tmp; done |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 199 | $(hide) mv $@.tmp $@ |
| 200 | |
| 201 | # ----------------------------------------------------------------- |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 202 | # kernel modules |
| 203 | |
| 204 | # Depmod requires a well-formed kernel version so 0.0 is used as a placeholder. |
| 205 | DEPMOD_STAGING_SUBDIR :=$= lib/modules/0.0 |
| 206 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 207 | define copy-and-strip-kernel-module |
| 208 | $(2): $(1) |
J. Avila | f758602 | 2020-06-19 20:42:17 +0000 | [diff] [blame] | 209 | $(LLVM_STRIP) -o $(2) --strip-debug $(1) |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 210 | endef |
| 211 | |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 212 | # $(1): modules list |
| 213 | # $(2): output dir |
| 214 | # $(3): mount point |
| 215 | # $(4): staging dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 216 | # $(5): module load list |
| 217 | # $(6): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 218 | # $(7): module archive |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 219 | # $(8): staging dir for stripped modules |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 220 | # $(9): module directory name |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 221 | # Returns the a list of src:dest pairs to install the modules using copy-many-files. |
| 222 | define build-image-kernel-modules |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 223 | $(if $(9), \ |
| 224 | $(eval _dir := $(9)/), \ |
| 225 | $(eval _dir :=)) \ |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 226 | $(foreach module,$(1), \ |
| 227 | $(eval _src := $(module)) \ |
| 228 | $(if $(8), \ |
| 229 | $(eval _src := $(8)/$(notdir $(module))) \ |
| 230 | $(eval $(call copy-and-strip-kernel-module,$(module),$(_src)))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 231 | $(_src):$(2)/lib/modules/$(_dir)$(notdir $(module))) \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 232 | $(eval $(call build-image-kernel-modules-depmod,$(1),$(3),$(4),$(5),$(6),$(7),$(2),$(9))) \ |
Steve Muckle | 950d723 | 2020-06-05 11:31:22 -0700 | [diff] [blame] | 233 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.dep:$(2)/lib/modules/$(_dir)modules.dep \ |
| 234 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.alias:$(2)/lib/modules/$(_dir)modules.alias \ |
| 235 | $(4)/$(DEPMOD_STAGING_SUBDIR)/modules.softdep:$(2)/lib/modules/$(_dir)modules.softdep \ |
| 236 | $(4)/$(DEPMOD_STAGING_SUBDIR)/$(6):$(2)/lib/modules/$(_dir)$(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 237 | endef |
| 238 | |
| 239 | # $(1): modules list |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 240 | # $(2): mount point |
| 241 | # $(3): staging dir |
| 242 | # $(4): module load list |
| 243 | # $(5): module load list filename |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 244 | # $(6): module archive |
| 245 | # $(7): output dir |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 246 | # $(8): module directory name |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 247 | # TODO(b/144844424): If a module archive is being used, this step (which |
| 248 | # generates obj/PACKAGING/.../modules.dep) also unzips the module archive into |
| 249 | # the output directory. This should be moved to a module with a |
| 250 | # LOCAL_POST_INSTALL_CMD so that if modules.dep is removed from the output dir, |
| 251 | # the archive modules are restored along with modules.dep. |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 252 | define build-image-kernel-modules-depmod |
Steve Muckle | 0f7bb1b | 2019-07-11 17:42:13 -0700 | [diff] [blame] | 253 | $(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] | 254 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(DEPMOD) |
| 255 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULES := $(1) |
| 256 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MOUNT_POINT := $(2) |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 257 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_DIR := $(3)/$(DEPMOD_STAGING_SUBDIR)/$(2)/lib/modules/$(8) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 258 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_STAGING_DIR := $(3) |
| 259 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_LOAD_MODULES := $(4) |
| 260 | $(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] | 261 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_MODULE_ARCHIVE := $(6) |
| 262 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: PRIVATE_OUTPUT_DIR := $(7) |
| 263 | $(3)/$(DEPMOD_STAGING_SUBDIR)/modules.dep: $(1) $(6) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 264 | @echo depmod $$(PRIVATE_STAGING_DIR) |
| 265 | rm -rf $$(PRIVATE_STAGING_DIR) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 266 | mkdir -p $$(PRIVATE_MODULE_DIR) |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 267 | $(if $(6),\ |
Colin Cross | c27d795 | 2020-07-11 22:33:30 -0700 | [diff] [blame] | 268 | unzip -qoDD -d $$(PRIVATE_MODULE_DIR) $$(PRIVATE_MODULE_ARCHIVE); \ |
Steve Muckle | 810a0ba | 2019-11-13 13:29:02 -0800 | [diff] [blame] | 269 | mkdir -p $$(PRIVATE_OUTPUT_DIR)/lib; \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 270 | 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] | 271 | find $$(PRIVATE_MODULE_DIR) -type f -name *.ko | xargs basename -a > $$(PRIVATE_LOAD_FILE); \ |
| 272 | ) |
| 273 | $(if $(1),\ |
| 274 | cp $$(PRIVATE_MODULES) $$(PRIVATE_MODULE_DIR)/; \ |
| 275 | for MODULE in $$(PRIVATE_LOAD_MODULES); do \ |
| 276 | basename $$$$MODULE >> $$(PRIVATE_LOAD_FILE); \ |
| 277 | done; \ |
| 278 | ) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 279 | $(DEPMOD) -b $$(PRIVATE_STAGING_DIR) 0.0 |
| 280 | # Turn paths in modules.dep into absolute paths |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 281 | sed -i.tmp -e 's|\([^: ]*lib/modules/[^: ]*\)|/\1|g' $$(PRIVATE_STAGING_DIR)/$$(DEPMOD_STAGING_SUBDIR)/modules.dep |
| 282 | touch $$(PRIVATE_LOAD_FILE) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 283 | endef |
| 284 | |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 285 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 286 | # $(2): modules list |
| 287 | # $(3): module load list |
| 288 | # $(4): module load list filename |
| 289 | # $(5): output dir |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 290 | define module-load-list-copy-paths |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 291 | $(eval $(call build-image-module-load-list,$(1),$(2),$(3),$(4))) \ |
| 292 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4):$(5)/lib/modules/$(4) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 293 | endef |
| 294 | |
| 295 | # $(1): staging dir |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 296 | # $(2): modules list |
| 297 | # $(3): module load list |
| 298 | # $(4): module load list filename |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 299 | define build-image-module-load-list |
Mark Salyzyn | 4e20965 | 2020-05-15 09:10:29 -0700 | [diff] [blame] | 300 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): PRIVATE_LOAD_MODULES := $(3) |
| 301 | $(1)/$(DEPMOD_STAGING_SUBDIR)/$(4): $(2) |
| 302 | @echo load-list $$(@) |
| 303 | @echo '$$(strip $$(notdir $$(PRIVATE_LOAD_MODULES)))' | tr ' ' '\n' > $$(@) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 304 | endef |
| 305 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 306 | # $(1): image name |
| 307 | # $(2): build output directory (TARGET_OUT_VENDOR, TARGET_RECOVERY_ROOT_OUT, etc) |
| 308 | # $(3): mount point |
| 309 | # $(4): module load filename |
| 310 | # $(5): stripped staging directory |
| 311 | # $(6): kernel module directory name (top is an out of band value for no directory) |
| 312 | define build-image-kernel-modules-dir |
| 313 | $(if $(filter top,$(6)),\ |
| 314 | $(eval _kver :=)$(eval _sep :=),\ |
| 315 | $(eval _kver := $(6))$(eval _sep :=_))\ |
| 316 | $(if $(5),\ |
| 317 | $(eval _stripped_staging_dir := $(5)$(_sep)$(_kver)),\ |
| 318 | $(eval _stripped_staging_dir :=))\ |
| 319 | $(if $(strip $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver))$(BOARD_$(1)_KERNEL_MODULES_ARCHIVE$(_sep)$(_kver))),\ |
| 320 | $(if $(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver)),,\ |
| 321 | $(eval BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver) := $(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver)))) \ |
| 322 | $(call copy-many-files,$(call build-image-kernel-modules,$(BOARD_$(1)_KERNEL_MODULES$(_sep)$(_kver)),$(2),$(3),$(call intermediates-dir-for,PACKAGING,depmod_$(1)$(_sep)$(_kver)),$(BOARD_$(1)_KERNEL_MODULES_LOAD$(_sep)$(_kver)),$(4),$(BOARD_$(1)_KERNEL_MODULES_ARCHIVE$(_sep)$(_kver)),$(_stripped_staging_dir),$(_kver)))) |
| 323 | endef |
| 324 | |
| 325 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 326 | define build-recovery-as-boot-load |
| 327 | $(if $(filter top,$(1)),\ |
| 328 | $(eval _kver :=)$(eval _sep :=),\ |
| 329 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 330 | $(if $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 331 | $(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)))) |
| 332 | endef |
| 333 | |
| 334 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 335 | define build-vendor-ramdisk-recovery-load |
| 336 | $(if $(filter top,$(1)),\ |
| 337 | $(eval _kver :=)$(eval _sep :=),\ |
| 338 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 339 | $(if $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 340 | $(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)))) |
| 341 | endef |
| 342 | |
Mark Salyzyn | 46a9c02 | 2020-06-25 04:35:16 -0700 | [diff] [blame] | 343 | # $(1): kernel module directory name (top is an out of band value for no directory) |
| 344 | define build-vendor-charger-load |
| 345 | $(if $(filter top,$(1)),\ |
| 346 | $(eval _kver :=)$(eval _sep :=),\ |
| 347 | $(eval _kver := $(1))$(eval _sep :=_))\ |
| 348 | $(if $(BOARD_VENDOR_CHARGER_KERNEL_MODULES_LOAD$(_sep)$(_kver)),\ |
| 349 | $(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)))) |
| 350 | endef |
| 351 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 352 | ifneq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 353 | # If there is no vendor boot partition, store vendor ramdisk kernel modules in the |
| 354 | # boot ramdisk. |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 355 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 356 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD += $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD) |
| 357 | endif |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 358 | |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 359 | ifeq ($(BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD),) |
| 360 | BOARD_GENERIC_RAMDISK_KERNEL_MODULES_LOAD := $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 361 | endif |
| 362 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 363 | ifneq ($(strip $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES)),) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 364 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT), true) |
Steve Muckle | 69280d2 | 2019-07-11 12:23:38 -0700 | [diff] [blame] | 365 | BOARD_RECOVERY_KERNEL_MODULES += $(BOARD_GENERIC_RAMDISK_KERNEL_MODULES) |
Steve Muckle | 474e4d0 | 2019-06-19 12:56:48 -0700 | [diff] [blame] | 366 | endif |
| 367 | endif |
| 368 | |
J. Avila | a2ceec6 | 2020-05-12 23:40:02 +0000 | [diff] [blame] | 369 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_MODULES),true) |
| 370 | VENDOR_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_stripped) |
| 371 | else |
| 372 | VENDOR_STRIPPED_MODULE_STAGING_DIR := |
| 373 | endif |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 374 | |
Pierre Couillaud | d99da8f | 2020-06-02 13:13:32 -0700 | [diff] [blame] | 375 | ifneq ($(BOARD_DO_NOT_STRIP_VENDOR_RAMDISK_MODULES),true) |
| 376 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := $(call intermediates-dir-for,PACKAGING,depmod_vendor_ramdisk_stripped) |
| 377 | else |
| 378 | VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR := |
| 379 | endif |
| 380 | |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 381 | BOARD_KERNEL_MODULE_DIRS += top |
| 382 | $(foreach dir,$(BOARD_KERNEL_MODULE_DIRS), \ |
| 383 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,RECOVERY,$(TARGET_RECOVERY_ROOT_OUT),,modules.load.recovery,,$(dir))) \ |
Pierre Couillaud | d99da8f | 2020-06-02 13:13:32 -0700 | [diff] [blame] | 384 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,VENDOR_RAMDISK,$(TARGET_VENDOR_RAMDISK_OUT),,modules.load,$(VENDOR_RAMDISK_STRIPPED_MODULE_STAGING_DIR),$(dir))) \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 385 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-ramdisk-recovery-load,$(dir))) \ |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 386 | $(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),$(dir))) \ |
Mark Salyzyn | 46a9c02 | 2020-06-25 04:35:16 -0700 | [diff] [blame] | 387 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-vendor-charger-load,$(dir))) \ |
Yifan Hong | 3d5e2c2 | 2020-07-15 17:01:14 -0700 | [diff] [blame] | 388 | $(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,,$(dir))) \ |
Steve Muckle | 2335d76 | 2020-05-28 18:39:38 -0700 | [diff] [blame] | 389 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
| 390 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-recovery-as-boot-load,$(dir))),\ |
| 391 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(call build-image-kernel-modules-dir,GENERIC_RAMDISK,$(TARGET_RAMDISK_OUT),,modules.load,,$(dir))))) |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 392 | |
| 393 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 394 | # Cert-to-package mapping. Used by the post-build signing tools. |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 395 | # Use a macro to add newline to each echo command |
Jiyong Park | 7b96c59 | 2020-05-01 10:29:09 +0900 | [diff] [blame] | 396 | # $1 stem name of the package |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 397 | # $2 certificate |
| 398 | # $3 private key |
| 399 | # $4 compressed |
| 400 | # $5 partition tag |
| 401 | # $6 output file |
Narayan Kamath | 6a4bd69 | 2017-08-14 10:53:50 +0100 | [diff] [blame] | 402 | define _apkcerts_write_line |
Bill Peckham | 19c3feb | 2020-03-20 18:31:43 -0700 | [diff] [blame] | 403 | $(hide) echo -n 'name="$(1).apk" certificate="$2" private_key="$3"' >> $6 |
| 404 | $(if $(4), $(hide) echo -n ' compressed="$4"' >> $6) |
| 405 | $(if $(5), $(hide) echo -n ' partition="$5"' >> $6) |
| 406 | $(hide) echo '' >> $6 |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 407 | |
| 408 | endef |
| 409 | |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 410 | # ----------------------------------------------------------------- |
| 411 | # Merge an individual apkcerts output into the final apkcerts.txt output. |
| 412 | # Use a macro to make it compatible with _apkcerts_write_line |
| 413 | # $1 apkcerts file to be merged |
| 414 | # $2 output file |
| 415 | define _apkcerts_merge |
| 416 | $(hide) cat $1 >> $2 |
| 417 | |
| 418 | endef |
| 419 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 420 | name := $(TARGET_PRODUCT) |
| 421 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 422 | name := $(name)_debug |
| 423 | endif |
| 424 | name := $(name)-apkcerts-$(FILE_NAME_TAG) |
| 425 | intermediates := \ |
| 426 | $(call intermediates-dir-for,PACKAGING,apkcerts) |
| 427 | APKCERTS_FILE := $(intermediates)/$(name).txt |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 428 | all_apkcerts_files := $(sort $(foreach p,$(PACKAGES),$(PACKAGES.$(p).APKCERTS_FILE))) |
| 429 | $(APKCERTS_FILE): $(all_apkcerts_files) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 430 | # We don't need to really build all the modules. |
| 431 | # TODO: rebuild APKCERTS_FILE if any app change its cert. |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 432 | $(APKCERTS_FILE): |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 433 | @echo APK certs list: $@ |
| 434 | @mkdir -p $(dir $@) |
| 435 | @rm -f $@ |
Chris Gross | fabf50a | 2019-05-02 12:42:09 -0700 | [diff] [blame] | 436 | $(foreach p,$(sort $(PACKAGES)),\ |
Jaewoong Jung | 704b454 | 2020-06-29 19:37:53 -0700 | [diff] [blame] | 437 | $(if $(PACKAGES.$(p).APKCERTS_FILE),\ |
| 438 | $(call _apkcerts_merge,$(PACKAGES.$(p).APKCERTS_FILE), $@),\ |
| 439 | $(if $(PACKAGES.$(p).EXTERNAL_KEY),\ |
| 440 | $(call _apkcerts_write_line,$(PACKAGES.$(p).STEM),"EXTERNAL","",$(PACKAGES.$(p).COMPRESSED),$(PACKAGES.$(p).PARTITION),$@),\ |
| 441 | $(call _apkcerts_write_line,$(PACKAGES.$(p).STEM),$(PACKAGES.$(p).CERTIFICATE),$(PACKAGES.$(p).PRIVATE_KEY),$(PACKAGES.$(p).COMPRESSED),$(PACKAGES.$(p).PARTITION),$@)))) |
Ying Wang | d9a88d5 | 2012-10-26 09:21:28 -0700 | [diff] [blame] | 442 | # In case value of PACKAGES is empty. |
Ying Wang | f272cd6 | 2011-09-26 12:05:06 -0700 | [diff] [blame] | 443 | $(hide) touch $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 444 | |
| 445 | .PHONY: apkcerts-list |
| 446 | apkcerts-list: $(APKCERTS_FILE) |
| 447 | |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 448 | ifneq (,$(TARGET_BUILD_APPS)) |
| 449 | $(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt) |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 450 | $(call dist-for-goals, apps_only, $(SOONG_APEX_KEYS_FILE):apexkeys.txt) |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 451 | endif |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 452 | |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 453 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 454 | # ----------------------------------------------------------------- |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 455 | # build system stats |
| 456 | BUILD_SYSTEM_STATS := $(PRODUCT_OUT)/build_system_stats.txt |
| 457 | $(BUILD_SYSTEM_STATS): |
| 458 | @rm -f $@ |
| 459 | @$(foreach s,$(STATS.MODULE_TYPE),echo "modules_type_make,$(s),$(words $(STATS.MODULE_TYPE.$(s)))" >>$@;) |
| 460 | @$(foreach s,$(STATS.SOONG_MODULE_TYPE),echo "modules_type_soong,$(s),$(STATS.SOONG_MODULE_TYPE.$(s))" >>$@;) |
| 461 | $(call dist-for-goals,droidcore,$(BUILD_SYSTEM_STATS)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 462 | |
Dan Willemsen | 3bf15e7 | 2016-07-25 16:03:53 -0700 | [diff] [blame] | 463 | # ----------------------------------------------------------------- |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 464 | # build /product/etc/security/avb/system_other.avbpubkey if needed |
| 465 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 466 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 467 | INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET := $(TARGET_OUT_PRODUCT_ETC)/security/avb/system_other.avbpubkey |
| 468 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET) |
Bowgo Tsai | 8802b71 | 2019-03-21 14:24:31 +0800 | [diff] [blame] | 469 | endif # BOARD_AVB_ENABLE |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 470 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
| 471 | |
| 472 | # ----------------------------------------------------------------- |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 473 | # Modules ready to be converted to Soong, ordered by how many |
| 474 | # modules depend on them. |
| 475 | SOONG_CONV := $(sort $(SOONG_CONV)) |
| 476 | SOONG_CONV_DATA := $(call intermediates-dir-for,PACKAGING,soong_conversion)/soong_conv_data |
| 477 | $(SOONG_CONV_DATA): |
| 478 | @rm -f $@ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 479 | @$(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] | 480 | |
Colin Cross | fdea893 | 2017-12-06 14:38:40 -0800 | [diff] [blame] | 481 | SOONG_TO_CONVERT_SCRIPT := build/make/tools/soong_to_convert.py |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 482 | SOONG_TO_CONVERT := $(PRODUCT_OUT)/soong_to_convert.txt |
| 483 | $(SOONG_TO_CONVERT): $(SOONG_CONV_DATA) $(SOONG_TO_CONVERT_SCRIPT) |
| 484 | @rm -f $@ |
| 485 | $(hide) $(SOONG_TO_CONVERT_SCRIPT) $< >$@ |
| 486 | $(call dist-for-goals,droidcore,$(SOONG_TO_CONVERT)) |
| 487 | |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 488 | MK2BP_CATALOG_SCRIPT := build/make/tools/mk2bp_catalog.py |
| 489 | MK2BP_REMAINING_HTML := $(PRODUCT_OUT)/mk2bp_remaining.html |
| 490 | $(MK2BP_REMAINING_HTML): PRIVATE_CODE_SEARCH_BASE_URL := "https://cs.android.com/android/platform/superproject/+/master:" |
| 491 | $(MK2BP_REMAINING_HTML): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) |
| 492 | @rm -f $@ |
| 493 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 494 | --device=$(TARGET_DEVICE) \ |
| 495 | --title="Remaining Android.mk files for $(TARGET_DEVICE)-$(TARGET_BUILD_VARIANT)" \ |
| 496 | --codesearch=$(PRIVATE_CODE_SEARCH_BASE_URL) \ |
| 497 | --out_dir="$(OUT_DIR)" \ |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 498 | --mode=html \ |
Joe Onorato | 02fb89a | 2020-06-27 00:10:23 -0700 | [diff] [blame] | 499 | > $@ |
| 500 | $(call dist-for-goals,droidcore,$(MK2BP_REMAINING_HTML)) |
| 501 | |
Joe Onorato | 3198607 | 2020-08-10 09:58:49 -0700 | [diff] [blame] | 502 | MK2BP_REMAINING_CSV := $(PRODUCT_OUT)/mk2bp_remaining.csv |
| 503 | $(MK2BP_REMAINING_CSV): $(SOONG_CONV_DATA) $(MK2BP_CATALOG_SCRIPT) |
| 504 | @rm -f $@ |
| 505 | $(hide) $(MK2BP_CATALOG_SCRIPT) \ |
| 506 | --device=$(TARGET_DEVICE) \ |
| 507 | --out_dir="$(OUT_DIR)" \ |
| 508 | --mode=csv \ |
| 509 | > $@ |
| 510 | $(call dist-for-goals,droidcore,$(MK2BP_REMAINING_CSV)) |
| 511 | |
Dan Willemsen | fc92fb2 | 2016-08-26 13:27:13 -0700 | [diff] [blame] | 512 | # ----------------------------------------------------------------- |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 513 | # Modules use -Wno-error, or added default -Wall -Werror |
| 514 | WALL_WERROR := $(PRODUCT_OUT)/wall_werror.txt |
| 515 | $(WALL_WERROR): |
| 516 | @rm -f $@ |
| 517 | echo "# Modules using -Wno-error" >> $@ |
| 518 | for m in $(sort $(SOONG_MODULES_USING_WNO_ERROR) $(MODULES_USING_WNO_ERROR)); do echo $$m >> $@; done |
Chih-Hung Hsieh | 1876acd | 2017-11-06 10:47:24 -0800 | [diff] [blame] | 519 | echo "# Modules added default -Wall" >> $@ |
| 520 | for m in $(sort $(SOONG_MODULES_ADDED_WALL) $(MODULES_ADDED_WALL)); do echo $$m >> $@; done |
| 521 | |
| 522 | $(call dist-for-goals,droidcore,$(WALL_WERROR)) |
| 523 | |
| 524 | # ----------------------------------------------------------------- |
Jesse Pai | d004692 | 2019-09-13 17:02:32 -0700 | [diff] [blame] | 525 | # C/C++ flag information for modules |
| 526 | $(call dist-for-goals,droidcore,$(SOONG_MODULES_CFLAG_ARTIFACTS)) |
| 527 | |
| 528 | # ----------------------------------------------------------------- |
Pirama Arumuga Nainar | ae95956 | 2018-01-29 09:22:24 -0800 | [diff] [blame] | 529 | # Modules missing profile files |
| 530 | PGO_PROFILE_MISSING := $(PRODUCT_OUT)/pgo_profile_file_missing.txt |
| 531 | $(PGO_PROFILE_MISSING): |
| 532 | @rm -f $@ |
| 533 | echo "# Modules missing PGO profile files" >> $@ |
| 534 | for m in $(SOONG_MODULES_MISSING_PGO_PROFILE_FILE); do echo $$m >> $@; done |
| 535 | |
| 536 | $(call dist-for-goals,droidcore,$(PGO_PROFILE_MISSING)) |
| 537 | |
| 538 | # ----------------------------------------------------------------- |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 539 | # 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] | 540 | # for future OTA packages installed by this system. Actual product |
| 541 | # deliverables will be re-signed by hand. We expect this file to |
| 542 | # exist with the suffixes ".x509.pem" and ".pk8". |
Colin Cross | 21122f9 | 2018-09-14 21:51:11 -0700 | [diff] [blame] | 543 | DEFAULT_KEY_CERT_PAIR := $(strip $(DEFAULT_SYSTEM_DEV_CERTIFICATE)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 544 | |
| 545 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 546 | # 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] | 547 | # if they don't do anything. |
| 548 | .PHONY: systemimage |
| 549 | systemimage: |
| 550 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 551 | # ----------------------------------------------------------------- |
| 552 | |
| 553 | .PHONY: event-log-tags |
| 554 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 555 | # Produce an event logs tag file for everything we know about, in order |
| 556 | # to properly allocate numbers. Then produce a file that's filtered |
| 557 | # for what's going to be installed. |
| 558 | |
| 559 | all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt |
| 560 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 561 | event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags |
| 562 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 563 | # Include tags from all packages that we know about |
| 564 | all_event_log_tags_src := \ |
| 565 | $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS))) |
| 566 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 567 | $(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src) |
| 568 | $(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] | 569 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 570 | $(hide) $(MERGETAGS) -o $@ $(PRIVATE_SRC_FILES) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 571 | |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 572 | # Include tags from all packages included in this product, plus all |
| 573 | # tags that are part of the system (ie, not in a vendor/ or device/ |
| 574 | # directory). |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 575 | event_log_tags_src := \ |
| 576 | $(sort $(foreach m,\ |
Yo Chiang | 5e85bfe | 2020-05-13 20:19:05 +0800 | [diff] [blame] | 577 | $(call resolve-bitness-for-modules,TARGET,$(PRODUCT_PACKAGES)) \ |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 578 | $(call module-names-for-tag-list,user), \ |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 579 | $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \ |
| 580 | $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src))) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 581 | |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 582 | $(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 583 | $(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file) |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 584 | $(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] | 585 | $(hide) mkdir -p $(dir $@) |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 586 | $(hide) $(MERGETAGS) -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 587 | |
| 588 | event-log-tags: $(event_log_tags_file) |
| 589 | |
| 590 | ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file) |
| 591 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 592 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 593 | # ################################################################# |
| 594 | # Targets for boot/OS images |
| 595 | # ################################################################# |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 596 | ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true) |
| 597 | INSTALLED_BOOTLOADER_MODULE := $(PRODUCT_OUT)/bootloader |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 598 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 599 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_BOOTLOADER),$(INSTALLED_BOOTLOADER_MODULE))) |
| 600 | $(call dist-for-goals,dist_files,$(INSTALLED_BOOTLOADER_MODULE)) |
| 601 | endif # BOARD_PREBUILT_BOOTLOADER |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 602 | ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true) |
| 603 | INSTALLED_2NDBOOTLOADER_TARGET := $(PRODUCT_OUT)/2ndbootloader |
| 604 | else |
| 605 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 606 | endif |
| 607 | else |
| 608 | INSTALLED_BOOTLOADER_MODULE := |
| 609 | INSTALLED_2NDBOOTLOADER_TARGET := |
| 610 | endif # TARGET_NO_BOOTLOADER |
| 611 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 612 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 613 | INSTALLED_KERNEL_TARGET := $(foreach k,$(BOARD_KERNEL_BINARIES), \ |
| 614 | $(PRODUCT_OUT)/$(k)) |
| 615 | else |
| 616 | INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel |
| 617 | endif |
Ying Wang | c634974 | 2014-01-13 16:14:20 -0800 | [diff] [blame] | 618 | else |
| 619 | INSTALLED_KERNEL_TARGET := |
| 620 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 621 | |
| 622 | # ----------------------------------------------------------------- |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 623 | # the root dir |
| 624 | INTERNAL_ROOT_FILES := $(filter $(TARGET_ROOT_OUT)/%, \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 625 | $(ALL_GENERATED_SOURCES) \ |
| 626 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 627 | |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 628 | INSTALLED_FILES_FILE_ROOT := $(PRODUCT_OUT)/installed-files-root.txt |
| 629 | INSTALLED_FILES_JSON_ROOT := $(INSTALLED_FILES_FILE_ROOT:.txt=.json) |
| 630 | $(INSTALLED_FILES_FILE_ROOT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ROOT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 631 | $(INSTALLED_FILES_FILE_ROOT) : $(INTERNAL_ROOT_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 632 | @echo Installed file list: $@ |
| 633 | @mkdir -p $(dir $@) |
| 634 | @rm -f $@ |
| 635 | $(hide) $(FILESLIST) $(TARGET_ROOT_OUT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 636 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 637 | |
| 638 | $(call dist-for-goals, sdk win_sdk sdk_addon, $(INSTALLED_FILES_FILE_ROOT)) |
| 639 | |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 640 | #------------------------------------------------------------------ |
| 641 | # dtb |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 642 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 643 | INSTALLED_DTBIMAGE_TARGET := $(PRODUCT_OUT)/dtb.img |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 644 | ifdef BOARD_PREBUILT_DTBIMAGE_DIR |
Hridya Valsaraju | c63a744 | 2019-02-07 11:38:18 -0800 | [diff] [blame] | 645 | $(INSTALLED_DTBIMAGE_TARGET) : $(sort $(wildcard $(BOARD_PREBUILT_DTBIMAGE_DIR)/*.dtb)) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 646 | cat $^ > $@ |
| 647 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 648 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 649 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 650 | # ----------------------------------------------------------------- |
| 651 | # the ramdisk |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 652 | ifdef BUILDING_RAMDISK_IMAGE |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 653 | INTERNAL_RAMDISK_FILES := $(filter $(TARGET_RAMDISK_OUT)/%, \ |
| 654 | $(ALL_GENERATED_SOURCES) \ |
| 655 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 656 | |
| 657 | INSTALLED_FILES_FILE_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk.txt |
| 658 | INSTALLED_FILES_JSON_RAMDISK := $(INSTALLED_FILES_FILE_RAMDISK:.txt=.json) |
| 659 | $(INSTALLED_FILES_FILE_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RAMDISK) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 660 | $(INSTALLED_FILES_FILE_RAMDISK) : $(INTERNAL_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 661 | @echo Installed file list: $@ |
SzuWei Lin | 29770fa | 2019-03-28 11:46:48 +0800 | [diff] [blame] | 662 | @mkdir -p $(TARGET_RAMDISK_OUT) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 663 | @mkdir -p $(dir $@) |
| 664 | @rm -f $@ |
| 665 | $(hide) $(FILESLIST) $(TARGET_RAMDISK_OUT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 666 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 667 | |
| 668 | $(call dist-for-goals, sdk win_sdk sdk_addon, $(INSTALLED_FILES_FILE_RAMDISK)) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 669 | BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img |
| 670 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 671 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 672 | # -l enables the legacy format used by the Linux kernel |
| 673 | COMPRESSION_COMMAND_DEPS := $(LZ4) |
| 674 | COMPRESSION_COMMAND := $(LZ4) -l -12 --favor-decSpeed |
| 675 | RAMDISK_EXT := .lz4 |
| 676 | else |
| 677 | COMPRESSION_COMMAND_DEPS := $(MINIGZIP) |
| 678 | COMPRESSION_COMMAND := $(MINIGZIP) |
| 679 | RAMDISK_EXT := .gz |
| 680 | endif |
| 681 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 682 | # We just build this directly to the install location. |
| 683 | INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 684 | $(INSTALLED_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_RAMDISK_FILES) $(INSTALLED_FILES_FILE_RAMDISK) | $(COMPRESSION_COMMAND_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 685 | $(call pretty,"Target ram disk: $@") |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 686 | $(hide) $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RAMDISK_OUT) | $(COMPRESSION_COMMAND) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 687 | |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 688 | .PHONY: ramdisk-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 689 | ramdisk-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 690 | @echo "make $@: ignoring dependencies" |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 691 | $(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] | 692 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 693 | endif # BUILDING_RAMDISK_IMAGE |
| 694 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 695 | # ----------------------------------------------------------------- |
| 696 | # the boot image, which is a collection of other images. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 697 | |
| 698 | # This is defined here since we may be building recovery as boot |
| 699 | # below and only want to define this once |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 700 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 701 | BUILT_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot,$(BOARD_KERNEL_BINARIES)), $(PRODUCT_OUT)/$(k).img) |
| 702 | else |
| 703 | BUILT_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 704 | endif |
| 705 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 706 | # $1: boot image target |
| 707 | # returns the kernel used to make the bootimage |
| 708 | define bootimage-to-kernel |
| 709 | $(if $(BOARD_KERNEL_BINARIES),\ |
| 710 | $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $(1)))),\ |
| 711 | $(INSTALLED_KERNEL_TARGET)) |
| 712 | endef |
| 713 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 714 | ifdef BOARD_BOOTIMAGE_PARTITION_SIZE |
| 715 | BOARD_KERNEL_BOOTIMAGE_PARTITION_SIZE := $(BOARD_BOOTIMAGE_PARTITION_SIZE) |
| 716 | endif |
| 717 | |
| 718 | # $1: boot image file name |
| 719 | # $2: boot image variant (boot, boot-debug) |
| 720 | define get-bootimage-partition-size |
| 721 | $(BOARD_$(call to-upper,$(subst .img,,$(subst $(2),kernel,$(notdir $(1)))))_BOOTIMAGE_PARTITION_SIZE) |
| 722 | endef |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 723 | |
| 724 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 725 | INTERNAL_BOOTIMAGE_ARGS := \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 726 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) |
Rom Lemarchand | f9c9266 | 2015-04-08 15:11:47 -0700 | [diff] [blame] | 727 | |
| 728 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 729 | INTERNAL_BOOTIMAGE_ARGS += --ramdisk $(INSTALLED_RAMDISK_TARGET) |
| 730 | endif |
| 731 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 732 | ifndef BUILDING_VENDOR_BOOT_IMAGE |
| 733 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 734 | INTERNAL_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 735 | endif |
| 736 | endif |
| 737 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 738 | INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS)) |
| 739 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 740 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 741 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 742 | VERITY_KEYID := veritykeyid=id:`openssl x509 -in $(PRODUCT_VERITY_SIGNING_KEY).x509.pem -text \ |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 743 | | grep keyid | sed 's/://g' | tr -d '[:space:]' | tr '[:upper:]' '[:lower:]' | sed 's/keyid//g'` |
| 744 | endif |
| 745 | endif |
| 746 | |
Anton Hansson | 72e36f0 | 2019-02-26 17:36:30 +0000 | [diff] [blame] | 747 | INTERNAL_KERNEL_CMDLINE := $(strip $(INTERNAL_KERNEL_CMDLINE) buildvariant=$(TARGET_BUILD_VARIANT) $(VERITY_KEYID)) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 748 | |
| 749 | ifndef BUILDING_VENDOR_BOOT_IMAGE |
| 750 | ifdef BOARD_KERNEL_BASE |
| 751 | INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 752 | endif |
| 753 | ifdef BOARD_KERNEL_PAGESIZE |
| 754 | INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 755 | endif |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 756 | ifdef INTERNAL_KERNEL_CMDLINE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 757 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 758 | endif |
| 759 | else |
| 760 | # building vendor boot image, dtb/base/pagesize go there |
| 761 | ifdef GENERIC_KERNEL_CMDLINE |
| 762 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(GENERIC_KERNEL_CMDLINE)" |
| 763 | endif |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 764 | endif |
Badhri Jagan Sridharan | f380da3 | 2016-05-27 09:49:49 -0700 | [diff] [blame] | 765 | |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 766 | INTERNAL_MKBOOTIMG_VERSION_ARGS := \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 767 | --os_version $(PLATFORM_VERSION_LAST_STABLE) \ |
Sami Tolvanen | 3303d90 | 2016-03-15 16:49:30 +0000 | [diff] [blame] | 768 | --os_patch_level $(PLATFORM_SECURITY_PATCH) |
| 769 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 770 | # Define these only if we are building boot |
| 771 | ifdef BUILDING_BOOT_IMAGE |
| 772 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
| 773 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 774 | ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true) |
JP Abgrall | 7bb75e4 | 2015-02-11 15:04:59 -0800 | [diff] [blame] | 775 | $(error TARGET_BOOTIMAGE_USE_EXT2 is not supported anymore) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 776 | endif # TARGET_BOOTIMAGE_USE_EXT2 |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 777 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 778 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET), $(eval $(call add-dependency,$(b),$(call bootimage-to-kernel,$(b))))) |
| 779 | |
| 780 | ifeq (true,$(BOARD_AVB_ENABLE)) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 781 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 782 | # $1: boot image target |
| 783 | define build_boot_board_avb_enabled |
| 784 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
| 785 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_BOOTIMAGE_PARTITION_SIZE))) |
| 786 | $(AVBTOOL) add_hash_footer \ |
| 787 | --image $(1) \ |
| 788 | --partition_size $(BOARD_BOOTIMAGE_PARTITION_SIZE) \ |
| 789 | --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) \ |
| 790 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
| 791 | endef |
| 792 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 793 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(AVBTOOL) $(INTERNAL_BOOTIMAGE_FILES) $(BOARD_AVB_BOOT_KEY_PATH) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 794 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 795 | $(call build_boot_board_avb_enabled,$@) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 796 | |
| 797 | .PHONY: bootimage-nodeps |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 798 | bootimage-nodeps: $(MKBOOTIMG) $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 799 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 800 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_board_avb_enabled,$(b))) |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 801 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 802 | else ifeq (true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)) # BOARD_AVB_ENABLE != true |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 803 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 804 | # $1: boot image target |
| 805 | define build_boot_supports_boot_signer |
| 806 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
| 807 | $(BOOT_SIGNER) /boot $@ $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $(1) |
| 808 | $(call assert-max-image-size,$(1),$(BOARD_BOOTIMAGE_PARTITION_SIZE)) |
| 809 | endef |
| 810 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 811 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(BOOT_SIGNER) |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 812 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 813 | $(call build_boot_supports_boot_signer,$@) |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 814 | |
| 815 | .PHONY: bootimage-nodeps |
| 816 | bootimage-nodeps: $(MKBOOTIMG) $(BOOT_SIGNER) |
| 817 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 818 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_supports_boot_signer,$(b))) |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 819 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 820 | else ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) # PRODUCT_SUPPORTS_BOOT_SIGNER != true |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 821 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 822 | # $1: boot image target |
| 823 | define build_boot_supports_vboot |
| 824 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1).unsigned |
| 825 | $(VBOOT_SIGNER) $(FUTILITY) $(1).unsigned $(PRODUCT_VBOOT_SIGNING_KEY).vbpubk $(PRODUCT_VBOOT_SIGNING_KEY).vbprivk $(PRODUCT_VBOOT_SIGNING_SUBKEY).vbprivk $(1).keyblock $(1) |
| 826 | $(call assert-max-image-size,$(1),$(BOARD_BOOTIMAGE_PARTITION_SIZE)) |
| 827 | endef |
| 828 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 829 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 830 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 831 | $(call build_boot_supports_vboot,$@) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 832 | |
| 833 | .PHONY: bootimage-nodeps |
Tao Bao | 4b57741 | 2017-02-22 22:54:39 -0800 | [diff] [blame] | 834 | bootimage-nodeps: $(MKBOOTIMG) $(VBOOT_SIGNER) $(FUTILITY) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 835 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 836 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_supports_vboot,$(b))) |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 837 | |
| 838 | else # PRODUCT_SUPPORTS_VBOOT != true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 839 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 840 | # $1: boot image target |
| 841 | define build_boot_novboot |
| 842 | $(MKBOOTIMG) --kernel $(call bootimage-to-kernel,$(1)) $(INTERNAL_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $(1) |
| 843 | $(call assert-max-image-size,$1,$(BOARD_BOOTIMAGE_PARTITION_SIZE)) |
| 844 | endef |
| 845 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 846 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 847 | $(call pretty,"Target boot image: $@") |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 848 | $(call build_boot_novboot,$@) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 849 | |
| 850 | .PHONY: bootimage-nodeps |
| 851 | bootimage-nodeps: $(MKBOOTIMG) |
| 852 | @echo "make $@: ignoring dependencies" |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 853 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(call build_boot_novboot,$(b))) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 854 | |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 855 | endif # BOARD_AVB_ENABLE |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 856 | endif # BUILDING_BOOT_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 857 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 858 | else # TARGET_NO_KERNEL == "true" |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 859 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 860 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 861 | # Remove when b/63676296 is resolved. |
| 862 | $(error Prebuilt bootimage is only supported for AB targets) |
| 863 | endif |
Kiyoung Kim | 62e2231 | 2019-06-20 14:27:45 +0900 | [diff] [blame] | 864 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 865 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_BOOTIMAGE),$(INSTALLED_BOOTIMAGE_TARGET))) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 866 | else # BOARD_PREBUILT_BOOTIMAGE not defined |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 867 | INSTALLED_BOOTIMAGE_TARGET := |
| 868 | endif # BOARD_PREBUILT_BOOTIMAGE |
| 869 | endif # TARGET_NO_KERNEL |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 870 | |
| 871 | # ----------------------------------------------------------------- |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 872 | # vendor boot image |
| 873 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 874 | |
| 875 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
| 876 | $(error vboot 1.0 does not support vendor_boot partition) |
| 877 | endif |
| 878 | |
| 879 | INTERNAL_VENDOR_RAMDISK_FILES := $(filter $(TARGET_VENDOR_RAMDISK_OUT)/%, \ |
| 880 | $(ALL_GENERATED_SOURCES) \ |
| 881 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 882 | |
Steve Muckle | 414dbe1 | 2020-06-18 21:38:35 -0700 | [diff] [blame] | 883 | INTERNAL_VENDOR_RAMDISK_TARGET := $(call intermediates-dir-for,PACKAGING,vendor-boot)/vendor-ramdisk.cpio$(RAMDISK_EXT) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 884 | $(INTERNAL_VENDOR_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
| 885 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_VENDOR_RAMDISK_OUT) | $(COMPRESSION_COMMAND) > $@ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 886 | |
| 887 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 888 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 889 | endif |
| 890 | ifdef BOARD_KERNEL_BASE |
| 891 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 892 | endif |
| 893 | ifdef BOARD_KERNEL_PAGESIZE |
| 894 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 895 | endif |
| 896 | ifdef INTERNAL_KERNEL_CMDLINE |
| 897 | INTERNAL_VENDOR_BOOTIMAGE_ARGS += --vendor_cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
| 898 | endif |
| 899 | |
| 900 | INSTALLED_VENDOR_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot.img |
| 901 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DTBIMAGE_TARGET) |
| 902 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 903 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOTIMAGE_KEY_PATH) |
| 904 | $(call pretty,"Target vendor_boot image: $@") |
cfig | 125efba | 2020-05-11 15:00:35 +0800 | [diff] [blame] | 905 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_RAMDISK_TARGET) --vendor_boot $@ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 906 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 907 | $(AVBTOOL) add_hash_footer \ |
| 908 | --image $@ \ |
| 909 | --partition_size $(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE) \ |
| 910 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_SIGNING_ARGS) \ |
| 911 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 912 | else |
| 913 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET): |
| 914 | $(call pretty,"Target vendor_boot image: $@") |
cfig | 125efba | 2020-05-11 15:00:35 +0800 | [diff] [blame] | 915 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INTERNAL_VENDOR_RAMDISK_TARGET) --vendor_boot $@ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 916 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 917 | endif |
| 918 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 919 | |
| 920 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 921 | # NOTICE files |
| 922 | # |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 923 | # We are required to publish the licenses for all code under BSD, GPL and |
| 924 | # Apache licenses (and possibly other more exotic ones as well). We err on the |
| 925 | # side of caution, so the licenses for other third-party code are included here |
| 926 | # too. |
| 927 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 928 | # This needs to be before the systemimage rules, because it adds to |
| 929 | # ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files |
| 930 | # go into the systemimage. |
| 931 | |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 932 | .PHONY: notice_files |
| 933 | |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 934 | # Create the rule to combine the files into text and html/xml forms |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 935 | # $(1) - xml_excluded_system_product_odm_vendor_dlkm_odm_dlkm| |
| 936 | # xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm| |
| 937 | # xml_product|xml_odm|xml_system_ext|xml_system|xml_vendor_dlkm| |
| 938 | # xml_odm_dlkm|html |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 939 | # $(2) - Plain text output file |
| 940 | # $(3) - HTML/XML output file |
| 941 | # $(4) - File title |
Jaewoong Jung | e6f57e0 | 2019-06-16 21:48:42 -0700 | [diff] [blame] | 942 | # $(5) - Directory to use. Notice files are all $(5)/src. Other |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 943 | # directories in there will be used for scratch |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 944 | # $(6) - Dependencies for the output files |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 945 | # $(7) - Directories to exclude |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 946 | # |
| 947 | # The algorithm here is that we go collect a hash for each of the notice |
| 948 | # files and write the names of the files that match that hash. Then |
| 949 | # to generate the real files, we go print out all of the files and their |
| 950 | # hashes. |
| 951 | # |
| 952 | # These rules are fairly complex, so they depend on this makefile so if |
| 953 | # it changes, they'll run again. |
| 954 | # |
| 955 | # TODO: We could clean this up so that we just record the locations of the |
| 956 | # original notice files instead of making rules to copy them somwehere. |
| 957 | # Then we could traverse that without quite as much bash drama. |
| 958 | define combine-notice-files |
Dan Willemsen | f4cbafa | 2020-04-28 15:57:32 -0700 | [diff] [blame] | 959 | $(2): PRIVATE_MESSAGE := $(4) |
| 960 | $(2): PRIVATE_DIR := $(5) |
| 961 | $(2): .KATI_IMPLICIT_OUTPUTS := $(3) |
| 962 | $(2): $(6) $(BUILD_SYSTEM)/Makefile build/make/tools/generate-notice-files.py |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 963 | build/make/tools/generate-notice-files.py --text-output $(2) $(foreach xdir, $(7), -e $(xdir) )\ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 964 | $(if $(filter $(1),xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm),-e vendor -e product -e system_ext -e odm -e vendor_dlkm -e odm_dlkm --xml-output, \ |
| 965 | $(if $(filter $(1),xml_excluded_system_product_odm_vendor_dlkm_odm_dlkm),-e system -e product -e system_ext -e odm -e vendor_dlkm -e odm_dlkm --xml-output, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 966 | $(if $(filter $(1),xml_product),-i product --xml-output, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 967 | $(if $(filter $(1),xml_system_ext),-i system_ext --xml-output, \ |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 968 | $(if $(filter $(1),xml_system),-i system --xml-output, \ |
| 969 | $(if $(filter $(1),xml_odm),-i odm --xml-output, \ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 970 | $(if $(filter $(1),xml_vendor_dlkm),-i vendor_dlkm --xml-output, \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 971 | $(if $(filter $(1),xml_odm_dlkm),-i odm_dlkm --xml-output, \ |
| 972 | --html-output)))))))) $(3) \ |
Bob Badour | 5e9e1fb | 2020-07-17 20:47:42 -0700 | [diff] [blame] | 973 | -t $$(PRIVATE_MESSAGE) $$(foreach dir,$$(sort $$(PRIVATE_DIR)), -s $$(dir)/src) |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 974 | notice_files: $(2) $(3) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 975 | endef |
| 976 | |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 977 | # Notice file logic isn't relevant for TARGET_BUILD_APPS |
| 978 | ifndef TARGET_BUILD_APPS |
| 979 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 980 | # TODO These intermediate NOTICE.txt/NOTICE.html files should go into |
| 981 | # TARGET_OUT_NOTICE_FILES now that the notice files are gathered from |
| 982 | # the src subdirectory. |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 983 | target_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE.txt |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 984 | tools_notice_file_txt := $(HOST_OUT_INTERMEDIATES)/NOTICE.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 985 | tools_notice_file_html := $(HOST_OUT_INTERMEDIATES)/NOTICE.html |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 986 | kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt |
| 987 | winpthreads_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/winpthreads.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 988 | |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 989 | # Some targets get included under $(PRODUCT_OUT) for debug symbols or other |
| 990 | # reasons--not to be flashed onto any device. Targets under these directories |
| 991 | # need no associated notice file on the device UI. |
| 992 | exclude_target_dirs := apex |
| 993 | |
Steven Moreland | ae69e57 | 2017-12-15 14:49:55 -0800 | [diff] [blame] | 994 | # TODO(b/69865032): Make PRODUCT_NOTICE_SPLIT the default behavior. |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 995 | ifneq ($(PRODUCT_NOTICE_SPLIT),true) |
| 996 | target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html |
| 997 | target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz |
| 998 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.html.gz |
| 999 | $(eval $(call combine-notice-files, html, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1000 | $(target_notice_file_txt), \ |
| 1001 | $(target_notice_file_html), \ |
| 1002 | "Notices for files contained in the filesystem images in this directory:", \ |
| 1003 | $(TARGET_OUT_NOTICE_FILES), \ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1004 | $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1005 | $(exclude_target_dirs))) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1006 | $(target_notice_file_html_gz): $(target_notice_file_html) | $(MINIGZIP) |
| 1007 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1008 | $(installed_notice_html_or_xml_gz): $(target_notice_file_html_gz) |
| 1009 | $(copy-file-to-target) |
| 1010 | else |
| 1011 | target_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml |
| 1012 | target_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.xml.gz |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1013 | installed_notice_html_or_xml_gz := $(TARGET_OUT)/etc/NOTICE.xml.gz |
| 1014 | |
| 1015 | target_vendor_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.txt |
| 1016 | target_vendor_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml |
| 1017 | target_vendor_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR.xml.gz |
| 1018 | installed_vendor_notice_xml_gz := $(TARGET_OUT_VENDOR)/etc/NOTICE.xml.gz |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1019 | |
| 1020 | target_product_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.txt |
| 1021 | target_product_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml |
| 1022 | target_product_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_PRODUCT.xml.gz |
| 1023 | installed_product_notice_xml_gz := $(TARGET_OUT_PRODUCT)/etc/NOTICE.xml.gz |
Dario Freni | cbca113 | 2018-08-28 18:04:03 +0100 | [diff] [blame] | 1024 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1025 | target_system_ext_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.txt |
| 1026 | target_system_ext_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml |
| 1027 | target_system_ext_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_SYSTEM_EXT.xml.gz |
| 1028 | 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] | 1029 | |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1030 | target_odm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.txt |
| 1031 | target_odm_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml |
| 1032 | target_odm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM.xml.gz |
| 1033 | installed_odm_notice_xml_gz := $(TARGET_OUT_ODM)/etc/NOTICE.xml.gz |
| 1034 | |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1035 | target_vendor_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.txt |
| 1036 | target_vendor_dlkm_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.xml |
| 1037 | target_vendor_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_VENDOR_DLKM.xml.gz |
| 1038 | installed_vendor_dlkm_notice_xml_gz := $(TARGET_OUT_VENDOR_DLKM)/etc/NOTICE.xml.gz |
| 1039 | |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1040 | target_odm_dlkm_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.txt |
| 1041 | target_odm_dlkm_notice_file_xml := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.xml |
| 1042 | target_odm_dlkm_notice_file_xml_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE_ODM_DLKM.xml.gz |
| 1043 | installed_odm_dlkm_notice_xml_gz := $(TARGET_OUT_ODM_DLKM)/etc/NOTICE.xml.gz |
| 1044 | |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1045 | # Notice files are copied to TARGET_OUT_NOTICE_FILES as a side-effect of their module |
| 1046 | # being built. A notice xml file must depend on all modules that could potentially |
| 1047 | # install a license file relevant to it. |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 1048 | license_modules := $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1049 | # Only files copied to a system image need system image notices. |
| 1050 | license_modules := $(filter $(PRODUCT_OUT)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1051 | # Phonys/fakes don't have notice files (though their deps might) |
| 1052 | license_modules := $(filter-out $(TARGET_OUT_FAKE)/%,$(license_modules)) |
Jooyung Han | 4416b00 | 2019-05-29 18:28:22 +0900 | [diff] [blame] | 1053 | # testcases are not relevant to the system image. |
| 1054 | license_modules := $(filter-out $(TARGET_OUT_TESTCASES)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1055 | # 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] | 1056 | license_modules_system := $(filter $(TARGET_OUT)/%,$(license_modules)) |
Jeongik Cha | 9917520 | 2020-06-17 17:10:19 +0900 | [diff] [blame] | 1057 | # system_other is relevant to system partition. |
| 1058 | license_modules_system += $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,$(license_modules)) |
Anton Hansson | 6ad6f6c | 2018-11-12 23:33:47 +0000 | [diff] [blame] | 1059 | license_modules_vendor := $(filter $(TARGET_OUT_VENDOR)/%,$(license_modules)) |
| 1060 | license_modules_product := $(filter $(TARGET_OUT_PRODUCT)/%,$(license_modules)) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1061 | license_modules_system_ext := $(filter $(TARGET_OUT_SYSTEM_EXT)/%,$(license_modules)) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1062 | license_modules_odm := $(filter $(TARGET_OUT_ODM)/%,$(license_modules)) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1063 | license_modules_vendor_dlkm := $(filter $(TARGET_OUT_VENDOR_DLKM)/%,$(license_modules)) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1064 | license_modules_odm_dlkm := $(filter $(TARGET_OUT_ODM_DLKM)/%,$(license_modules)) |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1065 | license_modules_agg := $(license_modules_system) \ |
| 1066 | $(license_modules_vendor) \ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1067 | $(license_modules_product) \ |
| 1068 | $(license_modules_system_ext) \ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1069 | $(license_modules_odm) \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1070 | $(license_modules_vendor_dlkm) \ |
| 1071 | $(license_modules_odm_dlkm) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1072 | # targets used for debug symbols only and do not get copied to the device |
| 1073 | license_modules_symbols_only := $(filter $(PRODUCT_OUT)/apex/%,$(license_modules)) |
| 1074 | |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1075 | license_modules_rest := $(filter-out $(license_modules_agg),$(license_modules)) |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1076 | license_modules_rest := $(filter-out $(license_modules_symbols_only),$(license_modules_rest)) |
| 1077 | |
| 1078 | # Identify the other targets we expect to have notices for: |
| 1079 | # targets copied to the device but are not readable by the UI (e.g. must boot |
| 1080 | # into a different partition to read or don't have an associated /etc |
| 1081 | # directory) must have their notices built somewhere readable. |
| 1082 | license_modules_rehomed := $(filter-out $(PRODUCT_OUT)/%/%,$(license_modules_rest)) # files in root have no /etc |
| 1083 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/recovery/%,$(license_modules_rest)) |
| 1084 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/root/%,$(license_modules_rest)) |
| 1085 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/data/%,$(license_modules_rest)) |
| 1086 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/ramdisk/%,$(license_modules_rest)) |
| 1087 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/debug_ramdisk/%,$(license_modules_rest)) |
| 1088 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/vendor-ramdisk/%,$(license_modules_rest)) |
| 1089 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist/%,$(license_modules_rest)) |
| 1090 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/persist.img,$(license_modules_rest)) |
| 1091 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/system_other/%,$(license_modules_rest)) |
| 1092 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/kernel%,$(license_modules_rest)) |
| 1093 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.img,$(license_modules_rest)) |
| 1094 | license_modules_rehomed += $(filter $(PRODUCT_OUT)/%.bin,$(license_modules_rest)) |
| 1095 | |
| 1096 | # after removing targets in system images, targets reported in system images, and |
| 1097 | # targets used for debug symbols that do not need notices, nothing must remain. |
| 1098 | license_modules_rest := $(filter-out $(license_modules_rehomed),$(license_modules_rest)) |
| 1099 | $(call maybe-print-list-and-error, $(license_modules_rest), \ |
| 1100 | "Targets added under $(PRODUCT_OUT)/ unaccounted for notice handling.") |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1101 | |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1102 | # If we are building in a configuration that includes a prebuilt vendor.img, we can't |
| 1103 | # update its notice file, so include those notices in the system partition instead |
| 1104 | ifdef BOARD_PREBUILT_VENDORIMAGE |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1105 | license_modules_system += $(license_modules_rehomed) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1106 | system_xml_directories := xml_excluded_vendor_product_odm_vendor_dlkm_odm_dlkm |
| 1107 | 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] | 1108 | else |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1109 | license_modules_vendor += $(license_modules_rehomed) |
Chris Gross | e5d4a9e | 2019-07-30 15:46:35 -0700 | [diff] [blame] | 1110 | system_xml_directories := xml_system |
| 1111 | 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] | 1112 | endif |
| 1113 | |
| 1114 | $(eval $(call combine-notice-files, $(system_xml_directories), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1115 | $(target_notice_file_txt), \ |
| 1116 | $(target_notice_file_xml), \ |
Chris Gross | aad39b3 | 2019-06-13 09:43:26 -0700 | [diff] [blame] | 1117 | $(system_notice_file_message), \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1118 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1119 | $(license_modules_system), \ |
| 1120 | $(exclude_target_dirs))) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1121 | $(eval $(call combine-notice-files, xml_excluded_system_product_odm_vendor_dlkm_odm_dlkm, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1122 | $(target_vendor_notice_file_txt), \ |
| 1123 | $(target_vendor_notice_file_xml), \ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1124 | "Notices for files contained in all filesystem images except system/system_ext/product/odm/vendor_dlkm/odm_dlkm in this directory:", \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1125 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1126 | $(license_modules_vendor), \ |
| 1127 | $(exclude_target_dirs))) |
Dario Freni | adc972d | 2018-07-09 18:38:38 +0100 | [diff] [blame] | 1128 | $(eval $(call combine-notice-files, xml_product, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1129 | $(target_product_notice_file_txt), \ |
| 1130 | $(target_product_notice_file_xml), \ |
| 1131 | "Notices for files contained in the product filesystem image in this directory:", \ |
| 1132 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1133 | $(license_modules_product), \ |
| 1134 | $(exclude_target_dirs))) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1135 | $(eval $(call combine-notice-files, xml_system_ext, \ |
| 1136 | $(target_system_ext_notice_file_txt), \ |
| 1137 | $(target_system_ext_notice_file_xml), \ |
| 1138 | "Notices for files contained in the system_ext filesystem image in this directory:", \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1139 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1140 | $(license_modules_system_ext), \ |
| 1141 | $(exclude_target_dirs))) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1142 | $(eval $(call combine-notice-files, xml_odm, \ |
| 1143 | $(target_odm_notice_file_txt), \ |
| 1144 | $(target_odm_notice_file_xml), \ |
| 1145 | "Notices for files contained in the odm filesystem image in this directory:", \ |
| 1146 | $(TARGET_OUT_NOTICE_FILES), \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1147 | $(license_modules_odm), \ |
| 1148 | $(exclude_target_dirs))) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1149 | $(eval $(call combine-notice-files, xml_vendor_dlkm, \ |
| 1150 | $(target_vendor_dlkm_notice_file_txt), \ |
| 1151 | $(target_vendor_dlkm_notice_file_xml), \ |
| 1152 | "Notices for files contained in the vendor_dlkm filesystem image in this directory:", \ |
| 1153 | $(TARGET_OUT_NOTICE_FILES), \ |
| 1154 | $(license_modules_vendor_dlkm), \ |
| 1155 | $(exclude_target_dirs))) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1156 | $(eval $(call combine-notice-files, xml_odm_dlkm, \ |
| 1157 | $(target_odm_dlkm_notice_file_txt), \ |
| 1158 | $(target_odm_dlkm_notice_file_xml), \ |
| 1159 | "Notices for files contained in the odm_dlkm filesystem image in this directory:", \ |
| 1160 | $(TARGET_OUT_NOTICE_FILES), \ |
| 1161 | $(license_modules_odm_dlkm), \ |
| 1162 | $(exclude_target_dirs))) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1163 | |
| 1164 | $(target_notice_file_xml_gz): $(target_notice_file_xml) | $(MINIGZIP) |
| 1165 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1166 | $(target_vendor_notice_file_xml_gz): $(target_vendor_notice_file_xml) | $(MINIGZIP) |
| 1167 | $(hide) $(MINIGZIP) -9 < $< > $@ |
| 1168 | $(target_product_notice_file_xml_gz): $(target_product_notice_file_xml) | $(MINIGZIP) |
| 1169 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1170 | $(target_system_ext_notice_file_xml_gz): $(target_system_ext_notice_file_xml) | $(MINIGZIP) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1171 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1172 | $(target_odm_notice_file_xml_gz): $(target_odm_notice_file_xml) | $(MINIGZIP) |
| 1173 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1174 | $(target_vendor_dlkm_notice_file_xml_gz): $(target_vendor_dlkm_notice_file_xml) | $(MINIGZIP) |
| 1175 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1176 | $(target_odm_dlkm_notice_file_xml_gz): $(target_odm_dlkm_notice_file_xml) | $(MINIGZIP) |
| 1177 | $(hide) $(MINIGZIP) -9 < $< > $@ |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1178 | $(installed_notice_html_or_xml_gz): $(target_notice_file_xml_gz) |
| 1179 | $(copy-file-to-target) |
| 1180 | $(installed_vendor_notice_xml_gz): $(target_vendor_notice_file_xml_gz) |
| 1181 | $(copy-file-to-target) |
| 1182 | $(installed_product_notice_xml_gz): $(target_product_notice_file_xml_gz) |
| 1183 | $(copy-file-to-target) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1184 | $(installed_system_ext_notice_xml_gz): $(target_system_ext_notice_file_xml_gz) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1185 | $(copy-file-to-target) |
Chris Gross | 15d9655 | 2019-07-16 14:38:43 -0700 | [diff] [blame] | 1186 | $(installed_odm_notice_xml_gz): $(target_odm_notice_file_xml_gz) |
| 1187 | $(copy-file-to-target) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1188 | $(installed_vendor_dlkm_notice_xml_gz): $(target_vendor_dlkm_notice_file_xml_gz) |
| 1189 | $(copy-file-to-target) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1190 | $(installed_odm_dlkm_notice_xml_gz): $(target_odm_dlkm_notice_file_xml_gz) |
| 1191 | $(copy-file-to-target) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1192 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1193 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_or_xml_gz) |
| 1194 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_notice_xml_gz) |
| 1195 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_product_notice_xml_gz) |
| 1196 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_system_ext_notice_xml_gz) |
| 1197 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_notice_xml_gz) |
Yifan Hong | 3d3f030 | 2020-05-11 18:35:11 -0700 | [diff] [blame] | 1198 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_vendor_dlkm_notice_xml_gz) |
Yifan Hong | c83f9e9 | 2020-07-15 16:57:47 -0700 | [diff] [blame] | 1199 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_odm_dlkm_notice_xml_gz) |
Anton Hansson | bfbaa98 | 2018-11-12 23:29:13 +0000 | [diff] [blame] | 1200 | endif # PRODUCT_NOTICE_SPLIT |
| 1201 | |
Dan Willemsen | 5c3fc2a | 2019-07-29 23:45:19 -0700 | [diff] [blame] | 1202 | 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] | 1203 | |
Jaekyun Seok | 3b7560b | 2017-04-19 15:26:47 +0900 | [diff] [blame] | 1204 | $(eval $(call combine-notice-files, html, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1205 | $(tools_notice_file_txt), \ |
| 1206 | $(tools_notice_file_html), \ |
| 1207 | "Notices for files contained in the tools directory:", \ |
| 1208 | $(HOST_OUT_NOTICE_FILES), \ |
| 1209 | $(ALL_DEFAULT_INSTALLED_MODULES) \ |
Bob Badour | 4b25c90 | 2020-01-28 13:23:39 -0800 | [diff] [blame] | 1210 | $(winpthreads_notice_file), \ |
| 1211 | $(exclude_target_dirs))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1212 | |
Ying Wang | 62c81f8 | 2013-08-22 20:02:03 -0700 | [diff] [blame] | 1213 | endif # TARGET_BUILD_APPS |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1214 | |
| 1215 | # The kernel isn't really a module, so to get its module file in there, we |
| 1216 | # make the target NOTICE files depend on this particular file too, which will |
| 1217 | # then be in the right directory for the find in combine-notice-files to work. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 1218 | $(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] | 1219 | |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 1220 | $(eval $(call copy-one-file,$(BUILD_SYSTEM)/WINPTHREADS_COPYING,$(winpthreads_notice_file))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1221 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1222 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1223 | # ################################################################# |
| 1224 | # Targets for user images |
| 1225 | # ################################################################# |
| 1226 | |
Ying Wang | 933abf1 | 2010-06-16 14:31:34 -0700 | [diff] [blame] | 1227 | INTERNAL_USERIMAGES_EXT_VARIANT := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1228 | ifeq ($(TARGET_USERIMAGES_USE_EXT2),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1229 | INTERNAL_USERIMAGES_EXT_VARIANT := ext2 |
| 1230 | else |
| 1231 | ifeq ($(TARGET_USERIMAGES_USE_EXT3),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1232 | INTERNAL_USERIMAGES_EXT_VARIANT := ext3 |
| 1233 | else |
| 1234 | ifeq ($(TARGET_USERIMAGES_USE_EXT4),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 1235 | INTERNAL_USERIMAGES_EXT_VARIANT := ext4 |
| 1236 | endif |
| 1237 | endif |
| 1238 | endif |
| 1239 | |
JP Abgrall | 6ea5bd6 | 2014-10-22 20:01:22 -0700 | [diff] [blame] | 1240 | # These options tell the recovery updater/installer how to mount the partitions writebale. |
| 1241 | # <fstype>=<fstype_opts>[|<fstype_opts>]... |
| 1242 | # fstype_opts := <opt>[,<opt>]... |
| 1243 | # opt := <name>[=<value>] |
JP Abgrall | 775b1ab | 2014-10-23 16:27:03 -0700 | [diff] [blame] | 1244 | # The following worked on Nexus devices with Kernel 3.1, 3.4, 3.10 |
| 1245 | 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] | 1246 | |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 1247 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)) |
| 1248 | INTERNAL_USERIMAGES_SPARSE_EXT_FLAG := -s |
| 1249 | endif |
Todd Poynor | b2a555e | 2015-12-15 18:00:14 -0800 | [diff] [blame] | 1250 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_SQUASHFS_DISABLED)) |
| 1251 | INTERNAL_USERIMAGES_SPARSE_SQUASHFS_FLAG := -s |
| 1252 | endif |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 1253 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)) |
| 1254 | INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG := -S |
| 1255 | endif |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1256 | |
| 1257 | INTERNAL_USERIMAGES_DEPS := \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1258 | $(BUILD_IMAGE) \ |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1259 | $(MKE2FS_CONF) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 1260 | $(MKEXTUSERIMG) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1261 | |
| 1262 | ifeq ($(TARGET_USERIMAGES_USE_F2FS),true) |
| 1263 | INTERNAL_USERIMAGES_DEPS += $(MKF2FSUSERIMG) |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 1264 | endif |
| 1265 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1266 | ifneq ($(filter \ |
| 1267 | $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1268 | $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE) \ |
| 1269 | $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1270 | $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE) \ |
| 1271 | $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE) \ |
| 1272 | $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1273 | $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1274 | ,squashfs),) |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1275 | INTERNAL_USERIMAGES_DEPS += $(MKSQUASHFSUSERIMG) |
| 1276 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1277 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1278 | ifeq (true,$(PRODUCT_SUPPORTS_VERITY)) |
Tao Bao | b4ec6d7 | 2018-03-15 23:21:28 -0700 | [diff] [blame] | 1279 | INTERNAL_USERIMAGES_DEPS += $(BUILD_VERITY_METADATA) $(BUILD_VERITY_TREE) $(APPEND2SIMG) $(VERITY_SIGNER) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1280 | ifeq (true,$(PRODUCT_SUPPORTS_VERITY_FEC)) |
Sami Tolvanen | f99b531 | 2015-05-20 07:30:57 +0100 | [diff] [blame] | 1281 | INTERNAL_USERIMAGES_DEPS += $(FEC) |
| 1282 | endif |
Geremy Condra | fd6f751 | 2013-06-16 17:26:08 -0700 | [diff] [blame] | 1283 | endif |
| 1284 | |
Tao Bao | dba635a | 2019-06-24 10:39:54 -0700 | [diff] [blame] | 1285 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 1286 | INTERNAL_USERIMAGES_DEPS += $(AVBTOOL) |
| 1287 | endif |
| 1288 | |
| 1289 | # Get a colon-separated list of search paths. |
| 1290 | INTERNAL_USERIMAGES_BINARY_PATHS := $(subst $(space),:,$(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))) |
| 1291 | |
Jooyung Han | b27c2e8 | 2020-09-23 19:15:20 +0900 | [diff] [blame] | 1292 | # Collects file_contexts files from modules to be installed |
| 1293 | $(call merge-fc-files, \ |
| 1294 | $(sort $(foreach m,$(product_MODULES),$(ALL_MODULES.$(m).FILE_CONTEXTS))),\ |
| 1295 | $(call intermediates-dir-for,ETC,file_contexts.bin)/file_contexts.modules.tmp) |
| 1296 | |
Alex Klyubin | 092c902 | 2017-03-13 13:28:34 -0700 | [diff] [blame] | 1297 | 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] | 1298 | |
Ying Wang | fdbd9cb | 2012-11-21 10:47:00 -0800 | [diff] [blame] | 1299 | INTERNAL_USERIMAGES_DEPS += $(SELINUX_FC) |
| 1300 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 1301 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1302 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1303 | ifeq ($(PRODUCT_SUPPORTS_VERITY),true) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1304 | $(error vboot 1.0 doesn't support logical partition) |
| 1305 | endif |
| 1306 | |
Yifan Hong | c5c0124 | 2018-11-09 10:27:23 -0800 | [diff] [blame] | 1307 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1308 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1309 | # $(1): the path of the output dictionary file |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1310 | # $(2): a subset of "system vendor cache userdata product system_ext oem odm vendor_dlkm odm_dlkm" |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1311 | # $(3): additional "key=value" pairs to append to the dictionary file. |
| 1312 | define generate-image-prop-dictionary |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1313 | $(if $(filter $(2),system),\ |
| 1314 | $(if $(BOARD_SYSTEMIMAGE_PARTITION_SIZE),$(hide) echo "system_size=$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)" >> $(1)) |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 1315 | $(if $(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE),$(hide) echo "system_other_size=$(INTERNAL_SYSTEM_OTHER_PARTITION_SIZE)" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1316 | $(if $(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "system_fs_type=$(BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1317 | $(if $(BOARD_SYSTEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "system_extfs_inode_count=$(BOARD_SYSTEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1318 | $(if $(BOARD_SYSTEMIMAGE_EXTFS_RSV_PCT),$(hide) echo "system_extfs_rsv_pct=$(BOARD_SYSTEMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1319 | $(if $(BOARD_SYSTEMIMAGE_JOURNAL_SIZE),$(hide) echo "system_journal_size=$(BOARD_SYSTEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1320 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "system_squashfs_compressor=$(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1321 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "system_squashfs_compressor_opt=$(BOARD_SYSTEMIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1322 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "system_squashfs_block_size=$(BOARD_SYSTEMIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1323 | $(if $(BOARD_SYSTEMIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "system_squashfs_disable_4k_align=$(BOARD_SYSTEMIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1324 | $(if $(PRODUCT_SYSTEM_BASE_FS_PATH),$(hide) echo "system_base_fs_file=$(PRODUCT_SYSTEM_BASE_FS_PATH)" >> $(1)) |
| 1325 | $(if $(PRODUCT_SYSTEM_HEADROOM),$(hide) echo "system_headroom=$(PRODUCT_SYSTEM_HEADROOM)" >> $(1)) |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1326 | $(if $(BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "system_reserved_size=$(BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1327 | $(hide) echo "system_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1328 | $(hide) echo "building_system_image=$(BUILDING_SYSTEM_IMAGE)" >> $(1) |
| 1329 | ) |
| 1330 | $(if $(filter $(2),system_other),\ |
| 1331 | $(hide) echo "building_system_other_image=$(BUILDING_SYSTEM_OTHER_IMAGE)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1332 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1333 | $(if $(filter $(2),userdata),\ |
| 1334 | $(if $(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "userdata_fs_type=$(BOARD_USERDATAIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1335 | $(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] | 1336 | $(if $(PRODUCT_FS_CASEFOLD),$(hide) echo "needs_casefold=$(PRODUCT_FS_CASEFOLD)" >> $(1)) |
| 1337 | $(if $(PRODUCT_QUOTA_PROJID),$(hide) echo "needs_projid=$(PRODUCT_QUOTA_PROJID)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1338 | $(hide) echo "userdata_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1339 | $(hide) echo "building_userdata_image=$(BUILDING_USERDATA_IMAGE)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1340 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1341 | $(if $(filter $(2),cache),\ |
| 1342 | $(if $(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "cache_fs_type=$(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1343 | $(if $(BOARD_CACHEIMAGE_PARTITION_SIZE),$(hide) echo "cache_size=$(BOARD_CACHEIMAGE_PARTITION_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1344 | $(hide) echo "cache_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1345 | $(hide) echo "building_cache_image=$(BUILDING_CACHE_IMAGE)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1346 | ) |
| 1347 | $(if $(filter $(2),vendor),\ |
| 1348 | $(if $(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "vendor_fs_type=$(BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1349 | $(if $(BOARD_VENDORIMAGE_EXTFS_INODE_COUNT),$(hide) echo "vendor_extfs_inode_count=$(BOARD_VENDORIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1350 | $(if $(BOARD_VENDORIMAGE_EXTFS_RSV_PCT),$(hide) echo "vendor_extfs_rsv_pct=$(BOARD_VENDORIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1351 | $(if $(BOARD_VENDORIMAGE_PARTITION_SIZE),$(hide) echo "vendor_size=$(BOARD_VENDORIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1352 | $(if $(BOARD_VENDORIMAGE_JOURNAL_SIZE),$(hide) echo "vendor_journal_size=$(BOARD_VENDORIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1353 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "vendor_squashfs_compressor=$(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1354 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "vendor_squashfs_compressor_opt=$(BOARD_VENDORIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1355 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "vendor_squashfs_block_size=$(BOARD_VENDORIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1356 | $(if $(BOARD_VENDORIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "vendor_squashfs_disable_4k_align=$(BOARD_VENDORIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1357 | $(if $(PRODUCT_VENDOR_BASE_FS_PATH),$(hide) echo "vendor_base_fs_file=$(PRODUCT_VENDOR_BASE_FS_PATH)" >> $(1)) |
Yifan Hong | 749062d | 2018-06-19 16:23:16 -0700 | [diff] [blame] | 1358 | $(if $(BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "vendor_reserved_size=$(BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1359 | $(hide) echo "vendor_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1360 | $(hide) echo "building_vendor_image=$(BUILDING_VENDOR_IMAGE)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1361 | ) |
| 1362 | $(if $(filter $(2),product),\ |
| 1363 | $(if $(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "product_fs_type=$(BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1364 | $(if $(BOARD_PRODUCTIMAGE_EXTFS_INODE_COUNT),$(hide) echo "product_extfs_inode_count=$(BOARD_PRODUCTIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1365 | $(if $(BOARD_PRODUCTIMAGE_EXTFS_RSV_PCT),$(hide) echo "product_extfs_rsv_pct=$(BOARD_PRODUCTIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1366 | $(if $(BOARD_PRODUCTIMAGE_PARTITION_SIZE),$(hide) echo "product_size=$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1367 | $(if $(BOARD_PRODUCTIMAGE_JOURNAL_SIZE),$(hide) echo "product_journal_size=$(BOARD_PRODUCTIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1368 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "product_squashfs_compressor=$(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1369 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "product_squashfs_compressor_opt=$(BOARD_PRODUCTIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1370 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "product_squashfs_block_size=$(BOARD_PRODUCTIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1371 | $(if $(BOARD_PRODUCTIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "product_squashfs_disable_4k_align=$(BOARD_PRODUCTIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1372 | $(if $(PRODUCT_PRODUCT_BASE_FS_PATH),$(hide) echo "product_base_fs_file=$(PRODUCT_PRODUCT_BASE_FS_PATH)" >> $(1)) |
Yifan Hong | 56a6c3b | 2018-07-20 15:19:34 -0700 | [diff] [blame] | 1373 | $(if $(BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "product_reserved_size=$(BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1374 | $(hide) echo "product_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1375 | $(hide) echo "building_product_image=$(BUILDING_PRODUCT_IMAGE)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1376 | ) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1377 | $(if $(filter $(2),system_ext),\ |
| 1378 | $(if $(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "system_ext_fs_type=$(BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1379 | $(if $(BOARD_SYSTEM_EXTIMAGE_EXTFS_INODE_COUNT),$(hide) echo "system_ext_extfs_inode_count=$(BOARD_SYSTEM_EXTIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1380 | $(if $(BOARD_SYSTEM_EXTIMAGE_EXTFS_RSV_PCT),$(hide) echo "system_ext_extfs_rsv_pct=$(BOARD_SYSTEM_EXTIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1381 | $(if $(BOARD_SYSTEM_EXTIMAGE_PARTITION_SIZE),$(hide) echo "system_ext_size=$(BOARD_SYSTEM_EXTIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1382 | $(if $(BOARD_SYSTEM_EXTIMAGE_JOURNAL_SIZE),$(hide) echo "system_ext_journal_size=$(BOARD_SYSTEM_EXTIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1383 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "system_ext_squashfs_compressor=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1384 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "system_ext_squashfs_compressor_opt=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1385 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "system_ext_squashfs_block_size=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1386 | $(if $(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "system_ext_squashfs_disable_4k_align=$(BOARD_SYSTEM_EXTIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
| 1387 | $(if $(BOARD_SYSTEM_EXTIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "system_ext_reserved_size=$(BOARD_SYSTEM_EXTIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
| 1388 | $(hide) echo "system_ext_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1389 | $(hide) echo "building_system_ext_image=$(BUILDING_SYSTEM_EXT_IMAGE)" >> $(1) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 1390 | ) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1391 | $(if $(filter $(2),odm),\ |
| 1392 | $(if $(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "odm_fs_type=$(BOARD_ODMIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1393 | $(if $(BOARD_ODMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "odm_extfs_inode_count=$(BOARD_ODMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1394 | $(if $(BOARD_ODMIMAGE_EXTFS_RSV_PCT),$(hide) echo "odm_extfs_rsv_pct=$(BOARD_ODMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1395 | $(if $(BOARD_ODMIMAGE_PARTITION_SIZE),$(hide) echo "odm_size=$(BOARD_ODMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1396 | $(if $(BOARD_ODMIMAGE_JOURNAL_SIZE),$(hide) echo "odm_journal_size=$(BOARD_ODMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1397 | $(if $(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "odm_squashfs_compressor=$(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1398 | $(if $(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "odm_squashfs_compressor_opt=$(BOARD_ODMIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1399 | $(if $(BOARD_ODMIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "odm_squashfs_block_size=$(BOARD_ODMIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1400 | $(if $(BOARD_ODMIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "odm_squashfs_disable_4k_align=$(BOARD_ODMIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1401 | $(if $(PRODUCT_ODM_BASE_FS_PATH),$(hide) echo "odm_base_fs_file=$(PRODUCT_ODM_BASE_FS_PATH)" >> $(1)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1402 | $(if $(BOARD_ODMIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "odm_reserved_size=$(BOARD_ODMIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1403 | $(hide) echo "odm_selinux_fc=$(SELINUX_FC)" >> $(1) |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1404 | $(hide) echo "building_odm_image=$(BUILDING_ODM_IMAGE)" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1405 | ) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1406 | $(if $(filter $(2),vendor_dlkm),\ |
| 1407 | $(if $(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "vendor_dlkm_fs_type=$(BOARD_VENDOR_DLKMIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1408 | $(if $(BOARD_VENDOR_DLKMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "vendor_dlkm_extfs_inode_count=$(BOARD_VENDOR_DLKMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1409 | $(if $(BOARD_VENDOR_DLKMIMAGE_EXTFS_RSV_PCT),$(hide) echo "vendor_dlkm_extfs_rsv_pct=$(BOARD_VENDOR_DLKMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1410 | $(if $(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE),$(hide) echo "vendor_dlkm_size=$(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1411 | $(if $(BOARD_VENDOR_DLKMIMAGE_JOURNAL_SIZE),$(hide) echo "vendor_dlkm_journal_size=$(BOARD_VENDOR_DLKMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1412 | $(if $(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "vendor_dlkm_squashfs_compressor=$(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1413 | $(if $(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "vendor_dlkm_squashfs_compressor_opt=$(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1414 | $(if $(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "vendor_dlkm_squashfs_block_size=$(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1415 | $(if $(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "vendor_dlkm_squashfs_disable_4k_align=$(BOARD_VENDOR_DLKMIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
| 1416 | $(if $(BOARD_VENDOR_DLKMIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "vendor_dlkm_reserved_size=$(BOARD_VENDOR_DLKMIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
| 1417 | $(hide) echo "vendor_dlkm_selinux_fc=$(SELINUX_FC)" >> $(1) |
| 1418 | $(hide) echo "building_vendor_dlkm_image=$(BUILDING_VENDOR_DLKM_IMAGE)" >> $(1) |
| 1419 | ) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1420 | $(if $(filter $(2),odm_dlkm),\ |
| 1421 | $(if $(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "odm_dlkm_fs_type=$(BOARD_ODM_DLKMIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 1422 | $(if $(BOARD_ODM_DLKMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "odm_dlkm_extfs_inode_count=$(BOARD_ODM_DLKMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1423 | $(if $(BOARD_ODM_DLKMIMAGE_EXTFS_RSV_PCT),$(hide) echo "odm_dlkm_extfs_rsv_pct=$(BOARD_ODM_DLKMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
| 1424 | $(if $(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE),$(hide) echo "odm_dlkm_size=$(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1425 | $(if $(BOARD_ODM_DLKMIMAGE_JOURNAL_SIZE),$(hide) echo "odm_dlkm_journal_size=$(BOARD_ODM_DLKMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1426 | $(if $(BOARD_ODM_DLKMIMAGE_SQUASHFS_COMPRESSOR),$(hide) echo "odm_dlkm_squashfs_compressor=$(BOARD_ODM_DLKMIMAGE_SQUASHFS_COMPRESSOR)" >> $(1)) |
| 1427 | $(if $(BOARD_ODM_DLKMIMAGE_SQUASHFS_COMPRESSOR_OPT),$(hide) echo "odm_dlkm_squashfs_compressor_opt=$(BOARD_ODM_DLKMIMAGE_SQUASHFS_COMPRESSOR_OPT)" >> $(1)) |
| 1428 | $(if $(BOARD_ODM_DLKMIMAGE_SQUASHFS_BLOCK_SIZE),$(hide) echo "odm_dlkm_squashfs_block_size=$(BOARD_ODM_DLKMIMAGE_SQUASHFS_BLOCK_SIZE)" >> $(1)) |
| 1429 | $(if $(BOARD_ODM_DLKMIMAGE_SQUASHFS_DISABLE_4K_ALIGN),$(hide) echo "odm_dlkm_squashfs_disable_4k_align=$(BOARD_ODM_DLKMIMAGE_SQUASHFS_DISABLE_4K_ALIGN)" >> $(1)) |
| 1430 | $(if $(BOARD_ODM_DLKMIMAGE_PARTITION_RESERVED_SIZE),$(hide) echo "odm_dlkm_reserved_size=$(BOARD_ODM_DLKMIMAGE_PARTITION_RESERVED_SIZE)" >> $(1)) |
| 1431 | $(hide) echo "odm_dlkm_selinux_fc=$(SELINUX_FC)" >> $(1) |
| 1432 | $(hide) echo "building_odm_dlkm_image=$(BUILDING_ODM_DLKM_IMAGE)" >> $(1) |
| 1433 | ) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1434 | $(if $(filter $(2),oem),\ |
| 1435 | $(if $(BOARD_OEMIMAGE_PARTITION_SIZE),$(hide) echo "oem_size=$(BOARD_OEMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 1436 | $(if $(BOARD_OEMIMAGE_JOURNAL_SIZE),$(hide) echo "oem_journal_size=$(BOARD_OEMIMAGE_JOURNAL_SIZE)" >> $(1)) |
| 1437 | $(if $(BOARD_OEMIMAGE_EXTFS_INODE_COUNT),$(hide) echo "oem_extfs_inode_count=$(BOARD_OEMIMAGE_EXTFS_INODE_COUNT)" >> $(1)) |
| 1438 | $(if $(BOARD_OEMIMAGE_EXTFS_RSV_PCT),$(hide) echo "oem_extfs_rsv_pct=$(BOARD_OEMIMAGE_EXTFS_RSV_PCT)" >> $(1)) |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1439 | $(hide) echo "oem_selinux_fc=$(SELINUX_FC)" >> $(1) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1440 | ) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1441 | $(hide) echo "ext_mkuserimg=$(notdir $(MKEXTUSERIMG))" >> $(1) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1442 | |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1443 | $(if $(INTERNAL_USERIMAGES_EXT_VARIANT),$(hide) echo "fs_type=$(INTERNAL_USERIMAGES_EXT_VARIANT)" >> $(1)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1444 | $(if $(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG),$(hide) echo "extfs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG)" >> $(1)) |
Todd Poynor | b2a555e | 2015-12-15 18:00:14 -0800 | [diff] [blame] | 1445 | $(if $(INTERNAL_USERIMAGES_SPARSE_SQUASHFS_FLAG),$(hide) echo "squashfs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_SQUASHFS_FLAG)" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 1446 | $(if $(INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG),$(hide) echo "f2fs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_F2FS_FLAG)" >> $(1)) |
Tao Bao | 3602eca | 2018-07-10 10:53:55 -0700 | [diff] [blame] | 1447 | $(if $(BOARD_EXT4_SHARE_DUP_BLOCKS),$(hide) echo "ext4_share_dup_blocks=$(BOARD_EXT4_SHARE_DUP_BLOCKS)" >> $(1)) |
| 1448 | $(if $(BOARD_FLASH_LOGICAL_BLOCK_SIZE), $(hide) echo "flash_logical_block_size=$(BOARD_FLASH_LOGICAL_BLOCK_SIZE)" >> $(1)) |
| 1449 | $(if $(BOARD_FLASH_ERASE_BLOCK_SIZE), $(hide) echo "flash_erase_block_size=$(BOARD_FLASH_ERASE_BLOCK_SIZE)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1450 | $(if $(PRODUCT_SUPPORTS_BOOT_SIGNER),$(hide) echo "boot_signer=$(PRODUCT_SUPPORTS_BOOT_SIGNER)" >> $(1)) |
| 1451 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity=$(PRODUCT_SUPPORTS_VERITY)" >> $(1)) |
| 1452 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity_key=$(PRODUCT_VERITY_SIGNING_KEY)" >> $(1)) |
| 1453 | $(if $(PRODUCT_SUPPORTS_VERITY),$(hide) echo "verity_signer_cmd=$(notdir $(VERITY_SIGNER))" >> $(1)) |
| 1454 | $(if $(PRODUCT_SUPPORTS_VERITY_FEC),$(hide) echo "verity_fec=$(PRODUCT_SUPPORTS_VERITY_FEC)" >> $(1)) |
Bowgo Tsai | 6ceeb1a | 2017-10-11 16:21:48 +0800 | [diff] [blame] | 1455 | $(if $(filter eng, $(TARGET_BUILD_VARIANT)),$(hide) echo "verity_disable=true" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1456 | $(if $(PRODUCT_SYSTEM_VERITY_PARTITION),$(hide) echo "system_verity_block_device=$(PRODUCT_SYSTEM_VERITY_PARTITION)" >> $(1)) |
| 1457 | $(if $(PRODUCT_VENDOR_VERITY_PARTITION),$(hide) echo "vendor_verity_block_device=$(PRODUCT_VENDOR_VERITY_PARTITION)" >> $(1)) |
| 1458 | $(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] | 1459 | $(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] | 1460 | $(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] | 1461 | $(if $(PRODUCT_ODM_DLKM_VERITY_PARTITION),$(hide) echo "odm_dlkm_verity_block_device=$(PRODUCT_ODM_DLKM_VERITY_PARTITION)" >> $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1462 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot=$(PRODUCT_SUPPORTS_VBOOT)" >> $(1)) |
| 1463 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_key=$(PRODUCT_VBOOT_SIGNING_KEY)" >> $(1)) |
| 1464 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_subkey=$(PRODUCT_VBOOT_SIGNING_SUBKEY)" >> $(1)) |
| 1465 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "futility=$(notdir $(FUTILITY))" >> $(1)) |
| 1466 | $(if $(PRODUCT_SUPPORTS_VBOOT),$(hide) echo "vboot_signer_cmd=$(VBOOT_SIGNER)" >> $(1)) |
Tao Bao | 3cba374 | 2017-05-16 16:27:25 -0700 | [diff] [blame] | 1467 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_avbtool=$(notdir $(AVBTOOL))" >> $(1)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1468 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1469 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1470 | $(if $(BOARD_AVB_ENABLE),\ |
| 1471 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 1472 | $(hide) echo "avb_system_key_path=$(BOARD_AVB_SYSTEM_KEY_PATH)" >> $(1) |
| 1473 | $(hide) echo "avb_system_algorithm=$(BOARD_AVB_SYSTEM_ALGORITHM)" >> $(1) |
| 1474 | $(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] | 1475 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1476 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_system_other_add_hashtree_footer_args=$(BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1477 | $(if $(BOARD_AVB_ENABLE),\ |
| 1478 | $(if $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH),\ |
| 1479 | $(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] | 1480 | $(hide) echo "avb_system_other_algorithm=$(BOARD_AVB_SYSTEM_OTHER_ALGORITHM)" >> $(1))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 1481 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1482 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1483 | $(if $(BOARD_AVB_ENABLE),\ |
| 1484 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 1485 | $(hide) echo "avb_vendor_key_path=$(BOARD_AVB_VENDOR_KEY_PATH)" >> $(1) |
| 1486 | $(hide) echo "avb_vendor_algorithm=$(BOARD_AVB_VENDOR_ALGORITHM)" >> $(1) |
| 1487 | $(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] | 1488 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1489 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_product_add_hashtree_footer_args=$(BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1490 | $(if $(BOARD_AVB_ENABLE),\ |
| 1491 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 1492 | $(hide) echo "avb_product_key_path=$(BOARD_AVB_PRODUCT_KEY_PATH)" >> $(1) |
| 1493 | $(hide) echo "avb_product_algorithm=$(BOARD_AVB_PRODUCT_ALGORITHM)" >> $(1) |
| 1494 | $(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] | 1495 | $(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] | 1496 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1497 | $(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] | 1498 | $(if $(BOARD_AVB_ENABLE),\ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1499 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 1500 | $(hide) echo "avb_system_ext_key_path=$(BOARD_AVB_SYSTEM_EXT_KEY_PATH)" >> $(1) |
| 1501 | $(hide) echo "avb_system_ext_algorithm=$(BOARD_AVB_SYSTEM_EXT_ALGORITHM)" >> $(1) |
| 1502 | $(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] | 1503 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1504 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_add_hashtree_footer_args=$(BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1505 | $(if $(BOARD_AVB_ENABLE),\ |
| 1506 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 1507 | $(hide) echo "avb_odm_key_path=$(BOARD_AVB_ODM_KEY_PATH)" >> $(1) |
| 1508 | $(hide) echo "avb_odm_algorithm=$(BOARD_AVB_ODM_ALGORITHM)" >> $(1) |
| 1509 | $(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] | 1510 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_vendor_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1511 | $(if $(BOARD_AVB_ENABLE),\ |
| 1512 | $(hide) echo "avb_vendor_dlkm_add_hashtree_footer_args=$(BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1513 | $(if $(BOARD_AVB_ENABLE),\ |
| 1514 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 1515 | $(hide) echo "avb_vendor_dlkm_key_path=$(BOARD_AVB_VENDOR_DLKM_KEY_PATH)" >> $(1) |
| 1516 | $(hide) echo "avb_vendor_dlkm_algorithm=$(BOARD_AVB_VENDOR_DLKM_ALGORITHM)" >> $(1) |
| 1517 | $(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] | 1518 | $(if $(BOARD_AVB_ENABLE),$(hide) echo "avb_odm_dlkm_hashtree_enable=$(BOARD_AVB_ENABLE)" >> $(1)) |
| 1519 | $(if $(BOARD_AVB_ENABLE),\ |
| 1520 | $(hide) echo "avb_odm_dlkm_add_hashtree_footer_args=$(BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS)" >> $(1)) |
| 1521 | $(if $(BOARD_AVB_ENABLE),\ |
| 1522 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 1523 | $(hide) echo "avb_odm_dlkm_key_path=$(BOARD_AVB_ODM_DLKM_KEY_PATH)" >> $(1) |
| 1524 | $(hide) echo "avb_odm_dlkm_algorithm=$(BOARD_AVB_ODM_DLKM_ALGORITHM)" >> $(1) |
| 1525 | $(hide) echo "avb_odm_dlkm_rollback_index_location=$(BOARD_AVB_ODM_DLKM_ROLLBACK_INDEX_LOCATION)" >> $(1))) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 1526 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
| 1527 | $(hide) echo "recovery_as_boot=true" >> $(1)) |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 1528 | $(if $(filter true,$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)),\ |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 1529 | $(hide) echo "system_root_image=true" >> $(1)) |
| 1530 | $(hide) echo "root_dir=$(TARGET_ROOT_OUT)" >> $(1) |
Tamas Petz | 89418f0 | 2020-02-03 15:40:15 +0100 | [diff] [blame] | 1531 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITION_SIZE)),\ |
| 1532 | $(hide) echo "use_dynamic_partition_size=true" >> $(1)) |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1533 | $(if $(3),$(hide) $(foreach kv,$(3),echo "$(kv)" >> $(1);)) |
| 1534 | endef |
| 1535 | |
| 1536 | # $(1): the path of the output dictionary file |
| 1537 | # $(2): additional "key=value" pairs to append to the dictionary file. |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1538 | PROP_DICTIONARY_IMAGES := oem |
| 1539 | ifdef BUILDING_CACHE_IMAGE |
| 1540 | PROP_DICTIONARY_IMAGES += cache |
| 1541 | endif |
| 1542 | ifdef BUILDING_SYSTEM_IMAGE |
| 1543 | PROP_DICTIONARY_IMAGES += system |
| 1544 | endif |
Chris Gross | 203191b | 2020-05-30 02:39:12 +0000 | [diff] [blame] | 1545 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 1546 | PROP_DICTIONARY_IMAGES += system_other |
| 1547 | endif |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1548 | ifdef BUILDING_USERDATA_IMAGE |
| 1549 | PROP_DICTIONARY_IMAGES += userdata |
| 1550 | endif |
| 1551 | ifdef BUILDING_VENDOR_IMAGE |
| 1552 | PROP_DICTIONARY_IMAGES += vendor |
| 1553 | endif |
| 1554 | ifdef BUILDING_PRODUCT_IMAGE |
| 1555 | PROP_DICTIONARY_IMAGES += product |
| 1556 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1557 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 1558 | PROP_DICTIONARY_IMAGES += system_ext |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1559 | endif |
| 1560 | ifdef BUILDING_ODM_IMAGE |
| 1561 | PROP_DICTIONARY_IMAGES += odm |
| 1562 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 1563 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 1564 | PROP_DICTIONARY_IMAGES += vendor_dlkm |
| 1565 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 1566 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 1567 | PROP_DICTIONARY_IMAGES += odm_dlkm |
| 1568 | endif |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 1569 | define generate-userimage-prop-dictionary |
Daniel Norman | 72c626f | 2019-05-13 15:58:14 -0700 | [diff] [blame] | 1570 | $(call generate-image-prop-dictionary,$(1),$(PROP_DICTIONARY_IMAGES),$(2)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1571 | endef |
| 1572 | |
Yifan Hong | bbcba1e | 2018-06-18 16:32:35 -0700 | [diff] [blame] | 1573 | # $(1): the path of the input dictionary file, where each line has the format key=value |
| 1574 | # $(2): the key to look up |
| 1575 | define read-image-prop-dictionary |
| 1576 | $$(grep '$(2)=' $(1) | cut -f2- -d'=') |
| 1577 | endef |
| 1578 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1579 | # ----------------------------------------------------------------- |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1580 | # Recovery image |
Doug Zongker | 8cebf1f | 2009-07-07 17:14:25 -0700 | [diff] [blame] | 1581 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 1582 | # Recovery image exists if we are building recovery, or building recovery as boot. |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1583 | ifdef BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1584 | |
Ying Wang | 3752614 | 2015-03-10 12:02:57 -0700 | [diff] [blame] | 1585 | INTERNAL_RECOVERYIMAGE_FILES := $(filter $(TARGET_RECOVERY_OUT)/%, \ |
| 1586 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 1587 | |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1588 | INSTALLED_FILES_FILE_RECOVERY := $(PRODUCT_OUT)/installed-files-recovery.txt |
| 1589 | INSTALLED_FILES_JSON_RECOVERY := $(INSTALLED_FILES_FILE_RECOVERY:.txt=.json) |
| 1590 | |
| 1591 | # TODO(b/30414428): Can't depend on INTERNAL_RECOVERYIMAGE_FILES alone like other |
| 1592 | # INSTALLED_FILES_FILE_* rules. Because currently there're cp/rsync/rm commands in |
| 1593 | # build-recoveryimage-target, which would touch the files under TARGET_RECOVERY_OUT and race with |
| 1594 | # the call to FILELIST. |
| 1595 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 1596 | INSTALLED_BOOTIMAGE_TARGET := $(BUILT_BOOTIMAGE_TARGET) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1597 | $(INSTALLED_FILES_FILE_RECOVERY): $(INSTALLED_BOOTIMAGE_TARGET) |
| 1598 | else |
| 1599 | $(INSTALLED_FILES_FILE_RECOVERY): $(INSTALLED_RECOVERYIMAGE_TARGET) |
| 1600 | endif |
| 1601 | |
| 1602 | $(INSTALLED_FILES_FILE_RECOVERY): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_RECOVERY) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1603 | $(INSTALLED_FILES_FILE_RECOVERY): $(INTERNAL_RECOVERYIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1604 | @echo Installed file list: $@ |
| 1605 | @mkdir -p $(dir $@) |
| 1606 | @rm -f $@ |
| 1607 | $(hide) $(FILESLIST) $(TARGET_RECOVERY_ROOT_OUT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 1608 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Tao Bao | 10fc949 | 2018-08-14 12:17:48 -0700 | [diff] [blame] | 1609 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1610 | recovery_sepolicy := \ |
| 1611 | $(TARGET_RECOVERY_ROOT_OUT)/sepolicy \ |
Jeff Vander Stoep | 4ff042c | 2017-06-13 08:30:46 -0700 | [diff] [blame] | 1612 | $(TARGET_RECOVERY_ROOT_OUT)/plat_file_contexts \ |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1613 | $(TARGET_RECOVERY_ROOT_OUT)/plat_property_contexts \ |
Bowgo Tsai | 07365df | 2019-09-28 09:04:51 +0800 | [diff] [blame] | 1614 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_file_contexts \ |
| 1615 | $(TARGET_RECOVERY_ROOT_OUT)/system_ext_property_contexts \ |
| 1616 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 1617 | $(TARGET_RECOVERY_ROOT_OUT)/vendor_property_contexts \ |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 1618 | $(TARGET_RECOVERY_ROOT_OUT)/odm_file_contexts \ |
Tri Vo | 62d51b6 | 2019-02-19 11:23:12 -0800 | [diff] [blame] | 1619 | $(TARGET_RECOVERY_ROOT_OUT)/odm_property_contexts \ |
| 1620 | $(TARGET_RECOVERY_ROOT_OUT)/product_file_contexts \ |
| 1621 | $(TARGET_RECOVERY_ROOT_OUT)/product_property_contexts |
Bowgo Tsai | 9967125 | 2017-11-30 22:15:17 +0800 | [diff] [blame] | 1622 | |
Alex Klyubin | 2a7171a | 2017-03-10 12:53:02 -0800 | [diff] [blame] | 1623 | # Passed into rsync from non-recovery root to recovery root, to avoid overwriting recovery-specific |
| 1624 | # SELinux files |
| 1625 | IGNORE_RECOVERY_SEPOLICY := $(patsubst $(TARGET_RECOVERY_OUT)/%,--exclude=/%,$(recovery_sepolicy)) |
| 1626 | |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 1627 | # if building multiple boot images from multiple kernels, use the first kernel listed |
| 1628 | # for the recovery image |
| 1629 | recovery_kernel := $(firstword $(INSTALLED_KERNEL_TARGET)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1630 | recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1631 | recovery_resources_common := bootable/recovery/res |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 1632 | |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 1633 | # Set recovery_density to a density bucket based on TARGET_SCREEN_DENSITY, PRODUCT_AAPT_PREF_CONFIG, |
| 1634 | # or mdpi, in order of preference. We support both specific buckets (e.g. xdpi) and numbers, |
| 1635 | # which get remapped to a bucket. |
| 1636 | recovery_density := $(or $(TARGET_SCREEN_DENSITY),$(PRODUCT_AAPT_PREF_CONFIG),mdpi) |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 1637 | ifeq (,$(filter xxxhdpi xxhdpi xhdpi hdpi mdpi,$(recovery_density))) |
| 1638 | recovery_density_value := $(patsubst %dpi,%,$(recovery_density)) |
Anton Hansson | 45a40da | 2019-01-18 14:06:34 +0000 | [diff] [blame] | 1639 | # 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] | 1640 | # ------160------240------320----------480------------640------ |
| 1641 | # mdpi hdpi xhdpi xxhdpi xxxhdpi |
| 1642 | recovery_density := $(strip \ |
| 1643 | $(or $(if $(filter $(shell echo $$(($(recovery_density_value) >= 560))),1),xxxhdpi),\ |
| 1644 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 400))),1),xxhdpi),\ |
| 1645 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 280))),1),xhdpi),\ |
| 1646 | $(if $(filter $(shell echo $$(($(recovery_density_value) >= 200))),1),hdpi,mdpi))) |
Doug Zongker | 8eaeea9 | 2014-05-12 15:32:20 -0700 | [diff] [blame] | 1647 | endif |
| 1648 | |
| 1649 | ifneq (,$(wildcard $(recovery_resources_common)-$(recovery_density))) |
| 1650 | recovery_resources_common := $(recovery_resources_common)-$(recovery_density) |
| 1651 | else |
Doug Zongker | 25d55f8 | 2014-04-04 13:51:15 -0700 | [diff] [blame] | 1652 | recovery_resources_common := $(recovery_resources_common)-xhdpi |
| 1653 | endif |
| 1654 | |
Tao Bao | e1e829e | 2018-08-29 20:36:00 -0700 | [diff] [blame] | 1655 | # Select the 18x32 font on high-density devices (xhdpi and up); and the 12x22 font on other devices. |
| 1656 | # Note that the font selected here can be overridden for a particular device by putting a font.png |
| 1657 | # in its private recovery resources. |
| 1658 | ifneq (,$(filter xxxhdpi xxhdpi xhdpi,$(recovery_density))) |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1659 | recovery_font := bootable/recovery/fonts/18x32.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 1660 | else |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1661 | recovery_font := bootable/recovery/fonts/12x22.png |
Doug Zongker | e129732 | 2013-03-06 15:04:31 -0800 | [diff] [blame] | 1662 | endif |
| 1663 | |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1664 | |
| 1665 | # We will only generate the recovery background text images if the variable |
| 1666 | # TARGET_RECOVERY_UI_SCREEN_WIDTH is defined. For devices with xxxhdpi and xxhdpi, we set the |
| 1667 | # variable to the commonly used values here, if it hasn't been intialized elsewhere. While for |
| 1668 | # devices with lower density, they must have TARGET_RECOVERY_UI_SCREEN_WIDTH defined in their |
| 1669 | # BoardConfig in order to use this feature. |
| 1670 | ifeq ($(recovery_density),xxxhdpi) |
| 1671 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1440 |
| 1672 | else ifeq ($(recovery_density),xxhdpi) |
| 1673 | TARGET_RECOVERY_UI_SCREEN_WIDTH ?= 1080 |
| 1674 | endif |
| 1675 | |
| 1676 | ifneq ($(TARGET_RECOVERY_UI_SCREEN_WIDTH),) |
| 1677 | # Subtracts the margin width and menu indent from the screen width; it's safe to be conservative. |
| 1678 | ifeq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),) |
| 1679 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - 10)) |
| 1680 | else |
| 1681 | recovery_image_width := $$(($(TARGET_RECOVERY_UI_SCREEN_WIDTH) - $(TARGET_RECOVERY_UI_MARGIN_WIDTH) - 10)) |
| 1682 | endif |
| 1683 | |
| 1684 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1685 | 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] | 1686 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/installing_security_text.png |
| 1687 | RECOVERY_ERASING_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/erasing_text.png |
| 1688 | RECOVERY_ERROR_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/error_text.png |
| 1689 | RECOVERY_NO_COMMAND_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/no_command_text.png |
| 1690 | |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1691 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/cancel_wipe_data_text.png |
| 1692 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/factory_data_reset_text.png |
| 1693 | RECOVERY_TRY_AGAIN_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/try_again_text.png |
| 1694 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_confirmation_text.png |
| 1695 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := $(dir $(RECOVERY_INSTALLING_TEXT_FILE))/wipe_data_menu_header_text.png |
| 1696 | |
| 1697 | generated_recovery_text_files := \ |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1698 | $(RECOVERY_INSTALLING_TEXT_FILE) \ |
| 1699 | $(RECOVERY_INSTALLING_SECURITY_TEXT_FILE) \ |
| 1700 | $(RECOVERY_ERASING_TEXT_FILE) \ |
| 1701 | $(RECOVERY_ERROR_TEXT_FILE) \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1702 | $(RECOVERY_NO_COMMAND_TEXT_FILE) \ |
| 1703 | $(RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE) \ |
| 1704 | $(RECOVERY_FACTORY_DATA_RESET_TEXT_FILE) \ |
| 1705 | $(RECOVERY_TRY_AGAIN_TEXT_FILE) \ |
| 1706 | $(RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE) \ |
| 1707 | $(RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1708 | |
Dan Willemsen | 9767223 | 2020-05-27 00:09:16 -0700 | [diff] [blame] | 1709 | resource_dir := bootable/recovery/tools/recovery_l10n/res/ |
| 1710 | resource_dir_deps := $(sort $(shell find $(resource_dir) -name *.xml -not -name .*)) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1711 | image_generator_jar := $(HOST_OUT_JAVA_LIBRARIES)/RecoveryImageGenerator.jar |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1712 | zopflipng := $(HOST_OUT_EXECUTABLES)/zopflipng |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1713 | $(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] | 1714 | $(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] | 1715 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RESOURCE_DIR := $(resource_dir) |
| 1716 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_IMAGE_GENERATOR_JAR := $(image_generator_jar) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1717 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_ZOPFLIPNG := $(zopflipng) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1718 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_IMAGE_WIDTH := $(recovery_image_width) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 1719 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_BACKGROUND_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1720 | recovery_installing \ |
| 1721 | recovery_installing_security \ |
| 1722 | recovery_erasing \ |
| 1723 | recovery_error \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 1724 | recovery_no_command |
| 1725 | $(RECOVERY_INSTALLING_TEXT_FILE): PRIVATE_RECOVERY_WIPE_DATA_TEXT_LIST := \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1726 | recovery_cancel_wipe_data \ |
| 1727 | recovery_factory_data_reset \ |
| 1728 | recovery_try_again \ |
| 1729 | recovery_wipe_data_menu_header \ |
| 1730 | recovery_wipe_data_confirmation |
| 1731 | $(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] | 1732 | $(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] | 1733 | # Prepares the font directory. |
| 1734 | @rm -rf $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
| 1735 | @mkdir -p $(PRIVATE_RECOVERY_FONT_FILES_DIR) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1736 | $(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] | 1737 | @rm -rf $(dir $@) |
| 1738 | @mkdir -p $(dir $@) |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 1739 | $(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] | 1740 | $(eval output_file := $(dir $@)/$(patsubst recovery_%,%_text.png,$(text_name))) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 1741 | $(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] | 1742 | java -jar $(PRIVATE_IMAGE_GENERATOR_JAR) \ |
| 1743 | --image_width $(PRIVATE_RECOVERY_IMAGE_WIDTH) \ |
| 1744 | --text_name $(text_name) \ |
| 1745 | --font_dir $(PRIVATE_RECOVERY_FONT_FILES_DIR) \ |
| 1746 | --resource_dir $(PRIVATE_RESOURCE_DIR) \ |
xunchang | dbe55e1 | 2018-12-19 17:15:14 -0800 | [diff] [blame] | 1747 | --output_file $(output_file) $(center_alignment) && \ |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1748 | $(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] | 1749 | else |
| 1750 | RECOVERY_INSTALLING_TEXT_FILE := |
| 1751 | RECOVERY_INSTALLING_SECURITY_TEXT_FILE := |
| 1752 | RECOVERY_ERASING_TEXT_FILE := |
| 1753 | RECOVERY_ERROR_TEXT_FILE := |
| 1754 | RECOVERY_NO_COMMAND_TEXT_FILE := |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1755 | RECOVERY_CANCEL_WIPE_DATA_TEXT_FILE := |
| 1756 | RECOVERY_FACTORY_DATA_RESET_TEXT_FILE := |
| 1757 | RECOVERY_TRY_AGAIN_TEXT_FILE := |
| 1758 | RECOVERY_WIPE_DATA_CONFIRMATION_TEXT_FILE := |
| 1759 | RECOVERY_WIPE_DATA_MENU_HEADER_TEXT_FILE := |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1760 | endif # TARGET_RECOVERY_UI_SCREEN_WIDTH |
| 1761 | |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 1762 | ifndef TARGET_PRIVATE_RES_DIRS |
| 1763 | TARGET_PRIVATE_RES_DIRS := $(wildcard $(TARGET_DEVICE_DIR)/recovery/res) |
| 1764 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1765 | recovery_resource_deps := $(shell find $(recovery_resources_common) \ |
Ying Wang | 9a17568 | 2015-08-06 11:47:47 -0700 | [diff] [blame] | 1766 | $(TARGET_PRIVATE_RES_DIRS) -type f) |
xunchang | cc57d31 | 2018-12-07 12:12:17 -0800 | [diff] [blame] | 1767 | recovery_resource_deps += $(generated_recovery_text_files) |
Tianjie Xu | 81c88ad | 2018-11-07 11:36:19 -0800 | [diff] [blame] | 1768 | |
| 1769 | |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 1770 | ifdef TARGET_RECOVERY_FSTAB |
| 1771 | recovery_fstab := $(TARGET_RECOVERY_FSTAB) |
| 1772 | else |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 1773 | recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab)) |
Andrew Boie | fa61ff0 | 2012-09-28 09:33:45 -0700 | [diff] [blame] | 1774 | endif |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 1775 | ifdef TARGET_RECOVERY_WIPE |
| 1776 | recovery_wipe := $(TARGET_RECOVERY_WIPE) |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 1777 | else |
Tao Bao | c3c1753 | 2016-06-10 10:11:54 -0700 | [diff] [blame] | 1778 | recovery_wipe := |
Tao Bao | 3051f4f | 2016-05-31 23:56:23 -0700 | [diff] [blame] | 1779 | endif |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 1780 | |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 1781 | # Traditionally with non-A/B OTA we have: |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 1782 | # boot.img + recovery-from-boot.p + recovery-resource.dat = recovery.img. |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 1783 | # recovery-resource.dat is needed only if we carry an imgdiff patch of the boot and recovery images |
| 1784 | # 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] | 1785 | # |
| 1786 | # We no longer need that if one of the following conditions holds: |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 1787 | # 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] | 1788 | # (BOARD_USES_FULL_RECOVERY_IMAGE = true); |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 1789 | # b) We build a single image that contains boot and recovery both - no recovery image to install |
| 1790 | # (BOARD_USES_RECOVERY_AS_BOOT = true); |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 1791 | # c) We mount the system image as / and therefore do not have a ramdisk in boot.img |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 1792 | # (BOARD_BUILD_SYSTEM_ROOT_IMAGE = true). |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 1793 | # d) We include the recovery DTBO image within recovery - not needing the resource file as we |
| 1794 | # do bsdiff because boot and recovery will contain different number of entries |
| 1795 | # (BOARD_INCLUDE_RECOVERY_DTBO = true). |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 1796 | # e) We include the recovery ACPIO image within recovery - not needing the resource file as we |
| 1797 | # do bsdiff because boot and recovery will contain different number of entries |
| 1798 | # (BOARD_INCLUDE_RECOVERY_ACPIO = true). |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 1799 | |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 1800 | ifeq (,$(filter true, $(BOARD_USES_FULL_RECOVERY_IMAGE) $(BOARD_USES_RECOVERY_AS_BOOT) \ |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 1801 | $(BOARD_BUILD_SYSTEM_ROOT_IMAGE) $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO))) |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 1802 | # 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] | 1803 | RECOVERY_RESOURCE_ZIP := $(TARGET_OUT_VENDOR)/etc/recovery-resource.dat |
| 1804 | ALL_DEFAULT_INSTALLED_MODULES += $(RECOVERY_RESOURCE_ZIP) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 1805 | else |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 1806 | RECOVERY_RESOURCE_ZIP := |
| 1807 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1808 | |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 1809 | INSTALLED_RECOVERY_BUILD_PROP_TARGET := $(TARGET_RECOVERY_ROOT_OUT)/prop.default |
| 1810 | |
| 1811 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): PRIVATE_RECOVERY_UI_PROPERTIES := \ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 1812 | TARGET_RECOVERY_UI_ANIMATION_FPS:animation_fps \ |
| 1813 | TARGET_RECOVERY_UI_MARGIN_HEIGHT:margin_height \ |
| 1814 | TARGET_RECOVERY_UI_MARGIN_WIDTH:margin_width \ |
| 1815 | TARGET_RECOVERY_UI_MENU_UNUSABLE_ROWS:menu_unusable_rows \ |
| 1816 | TARGET_RECOVERY_UI_PROGRESS_BAR_BASELINE:progress_bar_baseline \ |
| 1817 | TARGET_RECOVERY_UI_TOUCH_LOW_THRESHOLD:touch_low_threshold \ |
| 1818 | TARGET_RECOVERY_UI_TOUCH_HIGH_THRESHOLD:touch_high_threshold \ |
| 1819 | TARGET_RECOVERY_UI_VR_STEREO_OFFSET:vr_stereo_offset |
| 1820 | |
| 1821 | # Parses the given list of build variables and writes their values as build properties if defined. |
| 1822 | # For example, if a target defines `TARGET_RECOVERY_UI_MARGIN_HEIGHT := 100`, |
| 1823 | # `ro.recovery.ui.margin_height=100` will be appended to the given output file. |
| 1824 | # $(1): Map from the build variable names to property names |
| 1825 | # $(2): Output file |
| 1826 | define append-recovery-ui-properties |
| 1827 | echo "#" >> $(2) |
| 1828 | echo "# RECOVERY UI BUILD PROPERTIES" >> $(2) |
| 1829 | echo "#" >> $(2) |
| 1830 | $(foreach prop,$(1), \ |
| 1831 | $(eval _varname := $(call word-colon,1,$(prop))) \ |
| 1832 | $(eval _propname := $(call word-colon,2,$(prop))) \ |
| 1833 | $(eval _value := $($(_varname))) \ |
| 1834 | $(if $(_value), \ |
| 1835 | echo ro.recovery.ui.$(_propname)=$(_value) >> $(2) &&)) true |
| 1836 | endef |
| 1837 | |
| 1838 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET): \ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 1839 | $(INSTALLED_BUILD_PROP_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 1840 | $(INSTALLED_VENDOR_BUILD_PROP_TARGET) \ |
| 1841 | $(INSTALLED_ODM_BUILD_PROP_TARGET) \ |
| 1842 | $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1843 | $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) |
Tao Bao | 1edaca1 | 2018-09-18 10:22:54 -0700 | [diff] [blame] | 1844 | @echo "Target recovery buildinfo: $@" |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 1845 | $(hide) mkdir -p $(dir $@) |
| 1846 | $(hide) rm -f $@ |
Jiyong Park | bb26c6f | 2020-05-26 03:18:36 +0900 | [diff] [blame] | 1847 | $(hide) cat $(INSTALLED_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 1848 | $(hide) cat $(INSTALLED_VENDOR_BUILD_PROP_TARGET) >> $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 1849 | $(hide) cat $(INSTALLED_ODM_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 1850 | $(hide) cat $(INSTALLED_PRODUCT_BUILD_PROP_TARGET) >> $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 1851 | $(hide) cat $(INSTALLED_SYSTEM_EXT_BUILD_PROP_TARGET) >> $@ |
Tao Bao | 139c727 | 2018-07-31 13:26:54 -0700 | [diff] [blame] | 1852 | $(call append-recovery-ui-properties,$(PRIVATE_RECOVERY_UI_PROPERTIES),$@) |
| 1853 | |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 1854 | ifeq (truetrue,$(strip $(BUILDING_VENDOR_BOOT_IMAGE))$(strip $(AB_OTA_UPDATER))) |
Steve Muckle | 1034627 | 2020-04-07 16:39:10 -0700 | [diff] [blame] | 1855 | INTERNAL_RECOVERYIMAGE_ARGS := --ramdisk $(recovery_ramdisk) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1856 | ifdef GENERIC_KERNEL_CMDLINE |
| 1857 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(GENERIC_KERNEL_CMDLINE)" |
| 1858 | endif |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 1859 | else # not (BUILDING_VENDOR_BOOT_IMAGE and AB_OTA_UPDATER) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1860 | INTERNAL_RECOVERYIMAGE_ARGS := \ |
| 1861 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1862 | --ramdisk $(recovery_ramdisk) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1863 | # Assumes this has already been stripped |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 1864 | ifdef INTERNAL_KERNEL_CMDLINE |
| 1865 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(INTERNAL_KERNEL_CMDLINE)" |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1866 | endif |
| 1867 | ifdef BOARD_KERNEL_BASE |
| 1868 | INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 1869 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 1870 | ifdef BOARD_KERNEL_PAGESIZE |
| 1871 | INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 1872 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 1873 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 1874 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 1875 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 1876 | else |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 1877 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_dtbo $(BOARD_PREBUILT_DTBOIMAGE) |
| 1878 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1879 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 1880 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 1881 | INTERNAL_RECOVERYIMAGE_ARGS += --recovery_acpio $(BOARD_RECOVERY_ACPIO) |
| 1882 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1883 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
| 1884 | INTERNAL_RECOVERYIMAGE_ARGS += --dtb $(INSTALLED_DTBIMAGE_TARGET) |
| 1885 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 1886 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET not defined |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 1887 | ifndef BOARD_RECOVERY_MKBOOTIMG_ARGS |
| 1888 | BOARD_RECOVERY_MKBOOTIMG_ARGS := $(BOARD_MKBOOTIMG_ARGS) |
| 1889 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1890 | |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1891 | $(recovery_ramdisk): $(MKBOOTFS) $(COMPRESSION_COMMAND_DEPS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1892 | $(INTERNAL_ROOT_FILES) \ |
| 1893 | $(INSTALLED_RAMDISK_TARGET) \ |
| 1894 | $(INTERNAL_RECOVERYIMAGE_FILES) \ |
| 1895 | $(recovery_sepolicy) \ |
| 1896 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 1897 | $(INSTALLED_RECOVERY_BUILD_PROP_TARGET) \ |
| 1898 | $(recovery_resource_deps) \ |
| 1899 | $(recovery_fstab) |
| 1900 | # Making recovery image |
| 1901 | mkdir -p $(TARGET_RECOVERY_OUT) |
| 1902 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sdcard $(TARGET_RECOVERY_ROOT_OUT)/tmp |
| 1903 | # Copying baseline ramdisk... |
| 1904 | # Use rsync because "cp -Rf" fails to overwrite broken symlinks on Mac. |
| 1905 | rsync -a --exclude=sdcard $(IGNORE_RECOVERY_SEPOLICY) $(IGNORE_CACHE_LINK) $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT) |
| 1906 | # Modifying ramdisk contents... |
| 1907 | $(if $(filter true,$(BOARD_BUILD_SYSTEM_ROOT_IMAGE)),, \ |
| 1908 | ln -sf /system/bin/init $(TARGET_RECOVERY_ROOT_OUT)/init) |
| 1909 | # Removes $(TARGET_RECOVERY_ROOT_OUT)/init*.rc EXCEPT init.recovery*.rc. |
| 1910 | find $(TARGET_RECOVERY_ROOT_OUT) -maxdepth 1 -name 'init*.rc' -type f -not -name "init.recovery.*.rc" | xargs rm -f |
| 1911 | cp $(TARGET_ROOT_OUT)/init.recovery.*.rc $(TARGET_RECOVERY_ROOT_OUT)/ 2> /dev/null || true # Ignore error when the src file doesn't exist. |
| 1912 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/res |
| 1913 | rm -rf $(TARGET_RECOVERY_ROOT_OUT)/res/* |
| 1914 | cp -rf $(recovery_resources_common)/* $(TARGET_RECOVERY_ROOT_OUT)/res |
| 1915 | $(foreach recovery_text_file,$(generated_recovery_text_files), \ |
| 1916 | cp -rf $(recovery_text_file) $(TARGET_RECOVERY_ROOT_OUT)/res/images/ &&) true |
| 1917 | cp -f $(recovery_font) $(TARGET_RECOVERY_ROOT_OUT)/res/images/font.png |
| 1918 | $(foreach item,$(TARGET_PRIVATE_RES_DIRS), \ |
| 1919 | cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/$(newline)) |
| 1920 | $(foreach item,$(recovery_fstab), \ |
| 1921 | cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.fstab) |
| 1922 | $(if $(strip $(recovery_wipe)), \ |
| 1923 | cp -f $(recovery_wipe) $(TARGET_RECOVERY_ROOT_OUT)/system/etc/recovery.wipe) |
| 1924 | ln -sf prop.default $(TARGET_RECOVERY_ROOT_OUT)/default.prop |
| 1925 | $(BOARD_RECOVERY_IMAGE_PREPARE) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 1926 | $(MKBOOTFS) -d $(TARGET_OUT) $(TARGET_RECOVERY_ROOT_OUT) | $(COMPRESSION_COMMAND) > $(recovery_ramdisk) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1927 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 1928 | # $(1): output file |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1929 | # $(2): kernel file |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 1930 | define build-recoveryimage-target |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1931 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
Steve Muckle | 1034627 | 2020-04-07 16:39:10 -0700 | [diff] [blame] | 1932 | $(MKBOOTIMG) --kernel $(2) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 1933 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_RECOVERY_MKBOOTIMG_ARGS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1934 | --output $(1).unsigned, \ |
Steve Muckle | 1034627 | 2020-04-07 16:39:10 -0700 | [diff] [blame] | 1935 | $(MKBOOTIMG) --kernel $(2) $(INTERNAL_RECOVERYIMAGE_ARGS) \ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 1936 | $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_RECOVERY_MKBOOTIMG_ARGS) \ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1937 | --output $(1)) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1938 | $(if $(filter true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)),\ |
Nick Desaulniers | d491fcf | 2016-08-08 10:51:10 -0700 | [diff] [blame] | 1939 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)),\ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1940 | $(BOOT_SIGNER) /boot $(1) $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $(1),\ |
| 1941 | $(BOOT_SIGNER) /recovery $(1) $(PRODUCT_VERITY_SIGNING_KEY).pk8 $(PRODUCT_VERITY_SIGNING_KEY).x509.pem $(1)\ |
Nick Desaulniers | d491fcf | 2016-08-08 10:51:10 -0700 | [diff] [blame] | 1942 | )\ |
| 1943 | ) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1944 | $(if $(filter true,$(PRODUCT_SUPPORTS_VBOOT)), \ |
| 1945 | $(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] | 1946 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1947 | $(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] | 1948 | $(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] | 1949 | $(if $(filter true,$(BOARD_AVB_ENABLE)), \ |
| 1950 | $(if $(filter true,$(BOARD_USES_RECOVERY_AS_BOOT)), \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 1951 | $(AVBTOOL) add_hash_footer --image $(1) --partition_size $(call get-bootimage-partition-size,$(1),boot) --partition_name boot $(INTERNAL_AVB_BOOT_SIGNING_ARGS) $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS),\ |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1952 | $(AVBTOOL) add_hash_footer --image $(1) --partition_size $(BOARD_RECOVERYIMAGE_PARTITION_SIZE) --partition_name recovery $(INTERNAL_AVB_RECOVERY_SIGNING_ARGS) $(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS))) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 1953 | endef |
| 1954 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 1955 | recoveryimage-deps := $(MKBOOTIMG) $(recovery_ramdisk) $(recovery_kernel) |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1956 | ifeq (true,$(PRODUCT_SUPPORTS_BOOT_SIGNER)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 1957 | recoveryimage-deps += $(BOOT_SIGNER) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 1958 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 1959 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 1960 | recoveryimage-deps += $(VBOOT_SIGNER) |
Ying Wang | bd07ad0 | 2016-03-10 12:57:33 -0800 | [diff] [blame] | 1961 | endif |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 1962 | ifeq (true,$(BOARD_AVB_ENABLE)) |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 1963 | recoveryimage-deps += $(AVBTOOL) $(BOARD_AVB_BOOT_KEY_PATH) |
Thierry Strudel | d7bd1f2 | 2017-05-04 13:58:04 -0700 | [diff] [blame] | 1964 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 1965 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 1966 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
| 1967 | recoveryimage-deps += $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) |
| 1968 | else |
| 1969 | recoveryimage-deps += $(BOARD_PREBUILT_DTBOIMAGE) |
| 1970 | endif |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 1971 | endif |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 1972 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 1973 | recoveryimage-deps += $(BOARD_RECOVERY_ACPIO) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 1974 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1975 | ifdef BOARD_INCLUDE_DTB_IN_BOOTIMG |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 1976 | recoveryimage-deps += $(INSTALLED_DTBIMAGE_TARGET) |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 1977 | endif |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 1978 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 1979 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Yifan Hong | 3e0b5d0 | 2020-09-29 21:18:20 -0700 | [diff] [blame] | 1980 | $(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] | 1981 | $(INSTALLED_BOOTIMAGE_TARGET): $(recoveryimage-deps) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 1982 | $(call pretty,"Target boot image from recovery: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1983 | $(call build-recoveryimage-target, $@, $(PRODUCT_OUT)/$(subst .img,,$(subst boot,kernel,$(notdir $@)))) |
Tao Bao | f4866c7 | 2018-08-22 14:35:09 -0700 | [diff] [blame] | 1984 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 1985 | |
Dan Willemsen | d120ac6 | 2020-06-12 02:39:34 +0000 | [diff] [blame] | 1986 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(recoveryimage-deps) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 1987 | $(call build-recoveryimage-target, $@, $(recovery_kernel)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1988 | |
Tao Bao | 4594d0e | 2015-12-22 09:47:46 -0800 | [diff] [blame] | 1989 | ifdef RECOVERY_RESOURCE_ZIP |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 1990 | $(RECOVERY_RESOURCE_ZIP): $(INSTALLED_RECOVERYIMAGE_TARGET) | $(ZIPTIME) |
Doug Zongker | 1a09726 | 2012-09-04 14:45:11 -0700 | [diff] [blame] | 1991 | $(hide) mkdir -p $(dir $@) |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 1992 | $(hide) find $(TARGET_RECOVERY_ROOT_OUT)/res -type f | sort | zip -0qrjX $@ -@ |
| 1993 | $(remove-timestamps-from-package) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 1994 | endif |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 1995 | |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 1996 | .PHONY: recoveryimage-nodeps |
| 1997 | recoveryimage-nodeps: |
| 1998 | @echo "make $@: ignoring dependencies" |
Steve Muckle | a21b44a | 2020-08-09 14:54:42 -0700 | [diff] [blame] | 1999 | $(call build-recoveryimage-target, $(INSTALLED_RECOVERYIMAGE_TARGET), $(recovery_kernel)) |
Ying Wang | 747b9f1 | 2015-01-30 14:05:22 -0800 | [diff] [blame] | 2000 | |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2001 | else # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2002 | RECOVERY_RESOURCE_ZIP := |
Chris Gross | a784ef1 | 2019-04-22 11:09:57 -0700 | [diff] [blame] | 2003 | endif # BUILDING_RECOVERY_IMAGE |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2004 | |
| 2005 | .PHONY: recoveryimage |
Doug Zongker | 5658887 | 2012-08-20 15:38:58 -0700 | [diff] [blame] | 2006 | recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET) $(RECOVERY_RESOURCE_ZIP) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2007 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2008 | ifneq ($(BOARD_NAND_PAGE_SIZE),) |
| 2009 | $(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] | 2010 | endif |
| 2011 | |
Jiyong Park | 03eb061 | 2017-10-04 21:22:41 +0900 | [diff] [blame] | 2012 | ifneq ($(BOARD_NAND_SPARE_SIZE),) |
| 2013 | $(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] | 2014 | endif |
| 2015 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2016 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 2017 | # ----------------------------------------------------------------- |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2018 | # the debug ramdisk, which is the original ramdisk plus additional |
| 2019 | # files: force_debuggable, adb_debug.prop and userdebug sepolicy. |
| 2020 | # When /force_debuggable is present, /init will load userdebug sepolicy |
| 2021 | # and property files to allow adb root, if the device is unlocked. |
| 2022 | |
| 2023 | ifdef BUILDING_RAMDISK_IMAGE |
| 2024 | BUILT_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-debug.img |
| 2025 | INSTALLED_DEBUG_RAMDISK_TARGET := $(BUILT_DEBUG_RAMDISK_TARGET) |
| 2026 | |
| 2027 | INTERNAL_DEBUG_RAMDISK_FILES := $(filter $(TARGET_DEBUG_RAMDISK_OUT)/%, \ |
| 2028 | $(ALL_GENERATED_SOURCES) \ |
| 2029 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2030 | |
| 2031 | # Note: TARGET_DEBUG_RAMDISK_OUT will be $(PRODUCT_OUT)/debug_ramdisk/first_stage_ramdisk, |
| 2032 | # if BOARD_USES_RECOVERY_AS_BOOT is true. Otherwise, it will be $(PRODUCT_OUT)/debug_ramdisk. |
| 2033 | # But the root dir of the ramdisk to build is always $(PRODUCT_OUT)/debug_ramdisk. |
| 2034 | my_debug_ramdisk_root_dir := $(PRODUCT_OUT)/debug_ramdisk |
| 2035 | |
| 2036 | INSTALLED_FILES_FILE_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-ramdisk-debug.txt |
| 2037 | INSTALLED_FILES_JSON_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_DEBUG_RAMDISK:.txt=.json) |
| 2038 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_DEBUG_RAMDISK) |
| 2039 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK): DEBUG_RAMDISK_ROOT_DIR := $(my_debug_ramdisk_root_dir) |
| 2040 | |
| 2041 | # Cannot just depend on INTERNAL_DEBUG_RAMDISK_FILES like other INSTALLED_FILES_FILE_* rules. |
| 2042 | # Because ramdisk-debug.img will rsync from either ramdisk.img or ramdisk-recovery.img. |
| 2043 | # Need to depend on the built ramdisk-debug.img, to get a complete list of the installed files. |
| 2044 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) : $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2045 | $(INSTALLED_FILES_FILE_DEBUG_RAMDISK) : $(INTERNAL_DEBUG_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2046 | echo Installed file list: $@ |
| 2047 | mkdir -p $(dir $@) |
| 2048 | rm -f $@ |
| 2049 | $(FILESLIST) $(DEBUG_RAMDISK_ROOT_DIR) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2050 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2051 | |
| 2052 | # ramdisk-debug.img will rsync the content from either ramdisk.img or ramdisk-recovery.img, |
| 2053 | # depending on whether BOARD_USES_RECOVERY_AS_BOOT is set or not. |
| 2054 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2055 | my_debug_ramdisk_sync_dir := $(TARGET_RECOVERY_ROOT_OUT) |
| 2056 | else |
| 2057 | my_debug_ramdisk_sync_dir := $(TARGET_RAMDISK_OUT) |
| 2058 | endif # BOARD_USES_RECOVERY_AS_BOOT |
| 2059 | |
| 2060 | $(INSTALLED_DEBUG_RAMDISK_TARGET): DEBUG_RAMDISK_SYNC_DIR := $(my_debug_ramdisk_sync_dir) |
| 2061 | $(INSTALLED_DEBUG_RAMDISK_TARGET): DEBUG_RAMDISK_ROOT_DIR := $(my_debug_ramdisk_root_dir) |
Bowgo Tsai | c3e8cc9 | 2019-04-24 12:35:50 +0800 | [diff] [blame] | 2062 | |
| 2063 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2064 | # ramdisk-recovery.img isn't a make target, need to depend on boot.img if it's for recovery. |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2065 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_BOOTIMAGE_TARGET) |
Bowgo Tsai | c3e8cc9 | 2019-04-24 12:35:50 +0800 | [diff] [blame] | 2066 | else |
| 2067 | # Depends on ramdisk.img, note that some target has ramdisk.img but no boot.img, e.g., emulator. |
| 2068 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(INSTALLED_RAMDISK_TARGET) |
| 2069 | endif # BOARD_USES_RECOVERY_AS_BOOT |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2070 | $(INSTALLED_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_DEBUG_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2071 | $(call pretty,"Target debug ram disk: $@") |
| 2072 | mkdir -p $(TARGET_DEBUG_RAMDISK_OUT) |
| 2073 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
Bowgo Tsai | 1578e23 | 2019-04-24 15:33:03 +0800 | [diff] [blame] | 2074 | rsync -a $(DEBUG_RAMDISK_SYNC_DIR)/ $(DEBUG_RAMDISK_ROOT_DIR) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2075 | $(MKBOOTFS) -d $(TARGET_OUT) $(DEBUG_RAMDISK_ROOT_DIR) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2076 | |
| 2077 | .PHONY: ramdisk_debug-nodeps |
| 2078 | ramdisk_debug-nodeps: DEBUG_RAMDISK_SYNC_DIR := $(my_debug_ramdisk_sync_dir) |
| 2079 | ramdisk_debug-nodeps: DEBUG_RAMDISK_ROOT_DIR := $(my_debug_ramdisk_root_dir) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2080 | ramdisk_debug-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2081 | echo "make $@: ignoring dependencies" |
| 2082 | mkdir -p $(TARGET_DEBUG_RAMDISK_OUT) |
| 2083 | touch $(TARGET_DEBUG_RAMDISK_OUT)/force_debuggable |
Bowgo Tsai | 1578e23 | 2019-04-24 15:33:03 +0800 | [diff] [blame] | 2084 | rsync -a $(DEBUG_RAMDISK_SYNC_DIR)/ $(DEBUG_RAMDISK_ROOT_DIR) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2085 | $(MKBOOTFS) -d $(TARGET_OUT) $(DEBUG_RAMDISK_ROOT_DIR) | $(COMPRESSION_COMMAND) > $(INSTALLED_DEBUG_RAMDISK_TARGET) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2086 | |
| 2087 | my_debug_ramdisk_sync_dir := |
| 2088 | my_debug_ramdisk_root_dir := |
| 2089 | |
| 2090 | endif # BUILDING_RAMDISK_IMAGE |
| 2091 | |
| 2092 | # ----------------------------------------------------------------- |
| 2093 | # the boot-debug.img, which is the kernel plus ramdisk-debug.img |
| 2094 | # |
| 2095 | # Note: it's intentional to skip signing for boot-debug.img, because it |
| 2096 | # can only be used if the device is unlocked with verification error. |
Daniel Norman | 42879ff | 2020-10-06 11:09:56 -0700 | [diff] [blame^] | 2097 | ifdef BUILDING_BOOT_IMAGE |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2098 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2099 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 2100 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-debug,$(BOARD_KERNEL_BINARIES)), \ |
| 2101 | $(PRODUCT_OUT)/$(k).img) |
| 2102 | else |
| 2103 | INSTALLED_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-debug.img |
| 2104 | endif |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2105 | |
| 2106 | # Replace ramdisk.img in $(MKBOOTIMG) ARGS with ramdisk-debug.img to build boot-debug.img |
| 2107 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 2108 | INTERNAL_DEBUG_BOOTIMAGE_ARGS := $(subst $(recovery_ramdisk),$(INSTALLED_DEBUG_RAMDISK_TARGET), $(INTERNAL_RECOVERYIMAGE_ARGS)) |
| 2109 | else |
| 2110 | INTERNAL_DEBUG_BOOTIMAGE_ARGS := $(subst $(INSTALLED_RAMDISK_TARGET),$(INSTALLED_DEBUG_RAMDISK_TARGET), $(INTERNAL_BOOTIMAGE_ARGS)) |
| 2111 | endif |
| 2112 | |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2113 | # If boot.img is chained but boot-debug.img is not signed, libavb in bootloader |
| 2114 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2115 | # Using a test key to sign boot-debug.img to continue booting with the mismatched |
| 2116 | # public key, if the device is unlocked. |
| 2117 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2118 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
Bowgo Tsai | 26b0a26 | 2019-05-03 16:38:34 +0800 | [diff] [blame] | 2119 | endif |
| 2120 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2121 | BOARD_AVB_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2122 | INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2123 | # $(1): the bootimage to sign |
| 2124 | define test-key-sign-bootimage |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2125 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(call get-bootimage-partition-size,$(1),boot-debug))) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2126 | $(AVBTOOL) add_hash_footer \ |
| 2127 | --image $(1) \ |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2128 | --partition_size $(call get-bootimage-partition-size,$(1),boot-debug)\ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2129 | --partition_name boot $(INTERNAL_AVB_BOOT_TEST_SIGNING_ARGS) \ |
| 2130 | $(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS) |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 2131 | $(call assert-max-image-size,$(1),$(call get-bootimage-partition-size,$(1),boot-debug)) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2132 | endef |
| 2133 | |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2134 | # $(1): output file |
| 2135 | define build-debug-bootimage-target |
| 2136 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-debug,kernel,$(notdir $(1)))) \ |
| 2137 | $(INTERNAL_DEBUG_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $1 |
| 2138 | $(if $(BOARD_AVB_BOOT_KEY_PATH),$(call test-key-sign-bootimage,$1)) |
| 2139 | endef |
| 2140 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2141 | # Depends on original boot.img and ramdisk-debug.img, to build the new boot-debug.img |
| 2142 | $(INSTALLED_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_DEBUG_RAMDISK_TARGET) |
| 2143 | $(call pretty,"Target boot debug image: $@") |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2144 | $(call build-debug-bootimage-target, $@) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2145 | |
| 2146 | .PHONY: bootimage_debug-nodeps |
| 2147 | bootimage_debug-nodeps: $(MKBOOTIMG) |
| 2148 | echo "make $@: ignoring dependencies" |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 2149 | $(foreach b,$(INSTALLED_DEBUG_BOOTIMAGE_TARGET),$(call build-debug-bootimage-target,$b)) |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2150 | |
| 2151 | endif # TARGET_NO_KERNEL |
Daniel Norman | 42879ff | 2020-10-06 11:09:56 -0700 | [diff] [blame^] | 2152 | endif # BUILDING_BOOT_IMAGE |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2153 | |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2154 | ifeq ($(BUILDING_VENDOR_BOOT_IMAGE),true) |
| 2155 | ifeq ($(BUILDING_RAMDISK_IMAGE),true) |
| 2156 | # ----------------------------------------------------------------- |
| 2157 | # vendor debug ramdisk |
| 2158 | # Combines vendor ramdisk files and debug ramdisk files to build the vendor debug ramdisk. |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2159 | INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET := $(PRODUCT_OUT)/vendor-ramdisk-debug.cpio$(RAMDISK_EXT) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2160 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): DEBUG_RAMDISK_FILES := $(INTERNAL_DEBUG_RAMDISK_FILES) |
| 2161 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): VENDOR_RAMDISK_DIR := $(TARGET_VENDOR_RAMDISK_OUT) |
| 2162 | |
| 2163 | INTERNAL_VENDOR_DEBUG_RAMDISK_FILES := $(filter $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/%, \ |
| 2164 | $(ALL_GENERATED_SOURCES) \ |
| 2165 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2166 | |
| 2167 | # Note: TARGET_VENDOR_DEBUG_RAMDISK_OUT will be $(PRODUCT_OUT)/vendor_debug_ramdisk/first_stage_ramdisk, |
| 2168 | # if BOARD_USES_RECOVERY_AS_BOOT is true. Otherwise, it will be $(PRODUCT_OUT)/vendor_debug_ramdisk. |
| 2169 | # But the path of $(VENDOR_DEBUG_RAMDISK_DIR) to build the vendor debug ramdisk, is always |
| 2170 | # $(PRODUCT_OUT)/vendor_debug_ramdisk. |
| 2171 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): VENDOR_DEBUG_RAMDISK_DIR := $(PRODUCT_OUT)/vendor_debug_ramdisk |
| 2172 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_DEBUG_RAMDISK_TARGET) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2173 | $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2174 | $(call pretty,"Target vendor debug ram disk: $@") |
| 2175 | mkdir -p $(TARGET_VENDOR_DEBUG_RAMDISK_OUT) |
| 2176 | touch $(TARGET_VENDOR_DEBUG_RAMDISK_OUT)/force_debuggable |
| 2177 | $(foreach debug_file,$(DEBUG_RAMDISK_FILES), \ |
| 2178 | cp -f $(debug_file) $(subst $(PRODUCT_OUT)/debug_ramdisk,$(PRODUCT_OUT)/vendor_debug_ramdisk,$(debug_file)) &&) true |
| 2179 | rsync -a $(VENDOR_RAMDISK_DIR)/ $(VENDOR_DEBUG_RAMDISK_DIR) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2180 | $(MKBOOTFS) -d $(TARGET_OUT) $(VENDOR_DEBUG_RAMDISK_DIR) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2181 | |
| 2182 | INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK := $(PRODUCT_OUT)/installed-files-vendor-ramdisk-debug.txt |
| 2183 | INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK := $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK:.txt=.json) |
| 2184 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DEBUG_RAMDISK) |
| 2185 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): VENDOR_DEBUG_RAMDISK_DIR := $(PRODUCT_OUT)/vendor_debug_ramdisk |
| 2186 | |
| 2187 | # The vendor debug ramdisk will rsync from $(TARGET_VENDOR_RAMDISK_OUT) and $(INTERNAL_DEBUG_RAMDISK_FILES), |
| 2188 | # so we have to wait for the vendor debug ramdisk to be built before generating the installed file list. |
| 2189 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET) |
| 2190 | $(INSTALLED_FILES_FILE_VENDOR_DEBUG_RAMDISK): $(INTERNAL_VENDOR_DEBUG_RAMDISK_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 2191 | echo Installed file list: $@ |
| 2192 | mkdir -p $(dir $@) |
| 2193 | rm -f $@ |
| 2194 | $(FILESLIST) $(VENDOR_DEBUG_RAMDISK_DIR) > $(@:.txt=.json) |
| 2195 | $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2196 | |
| 2197 | # ----------------------------------------------------------------- |
| 2198 | # vendor_boot-debug.img. |
| 2199 | INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/vendor_boot-debug.img |
| 2200 | |
| 2201 | # The util to sign vendor_boot-debug.img with a test key. |
| 2202 | BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH := external/avb/test/data/testkey_rsa2048.pem |
| 2203 | INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS := --algorithm SHA256_RSA2048 --key $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2204 | # $(1): the vendor bootimage to sign |
| 2205 | define test-key-sign-vendor-bootimage |
| 2206 | $(call assert-max-image-size,$(1),$(call get-hash-image-max-size,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE))) |
| 2207 | $(AVBTOOL) add_hash_footer \ |
| 2208 | --image $(1) \ |
| 2209 | --partition_size $(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE) \ |
| 2210 | --partition_name vendor_boot $(INTERNAL_AVB_VENDOR_BOOT_TEST_SIGNING_ARGS) \ |
| 2211 | $(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS) |
| 2212 | $(call assert-max-image-size,$(1),$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2213 | endef |
| 2214 | |
| 2215 | ifneq ($(BOARD_AVB_VENDOR_BOOT_KEY_PATH),) |
| 2216 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_VENDOR_BOOT_TEST_KEY_PATH) |
| 2217 | endif |
| 2218 | |
| 2219 | # Depends on vendor_boot.img and vendor-ramdisk-debug.cpio.gz to build the new vendor_boot-debug.img |
| 2220 | $(INSTALLED_VENDOR_DEBUG_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET) |
| 2221 | $(call pretty,"Target vendor_boot debug image: $@") |
cfig | 125efba | 2020-05-11 15:00:35 +0800 | [diff] [blame] | 2222 | $(MKBOOTIMG) $(INTERNAL_VENDOR_BOOTIMAGE_ARGS) $(BOARD_MKBOOTIMG_ARGS) --vendor_ramdisk $(INSTALLED_VENDOR_DEBUG_RAMDISK_TARGET) --vendor_boot $@ |
Bowgo Tsai | 6a68367 | 2020-02-14 19:00:15 +0800 | [diff] [blame] | 2223 | $(call assert-max-image-size,$@,$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)) |
| 2224 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),$(call test-key-sign-vendor-bootimage,$@)) |
| 2225 | |
| 2226 | endif # BUILDING_RAMDISK_IMAGE |
| 2227 | endif # BUILDING_VENDOR_BOOT_IMAGE |
| 2228 | |
Bowgo Tsai | 0013f55 | 2019-03-20 17:59:52 +0800 | [diff] [blame] | 2229 | # ----------------------------------------------------------------- |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2230 | # The test harness ramdisk, which is based off debug_ramdisk, plus a |
| 2231 | # few additional test-harness-specific properties in adb_debug.prop. |
| 2232 | |
| 2233 | ifdef BUILDING_RAMDISK_IMAGE |
| 2234 | BUILT_TEST_HARNESS_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk-test-harness.img |
| 2235 | INSTALLED_TEST_HARNESS_RAMDISK_TARGET := $(BUILT_TEST_HARNESS_RAMDISK_TARGET) |
| 2236 | |
| 2237 | # rsync the content from ramdisk-debug.img to ramdisk-test-harness.img, then |
| 2238 | # appends a few test harness specific properties into the adb_debug.prop. |
| 2239 | TEST_HARNESS_RAMDISK_SYNC_DIR := $(PRODUCT_OUT)/debug_ramdisk |
| 2240 | TEST_HARNESS_RAMDISK_ROOT_DIR := $(PRODUCT_OUT)/test_harness_ramdisk |
| 2241 | |
| 2242 | # The following TARGET_TEST_HARNESS_RAMDISK_OUT will be $(PRODUCT_OUT)/test_harness_ramdisk/first_stage_ramdisk, |
| 2243 | # if BOARD_USES_RECOVERY_AS_BOOT is true. Otherwise, it will be $(PRODUCT_OUT)/test_harness_ramdisk. |
| 2244 | TEST_HARNESS_PROP_TARGET := $(TARGET_TEST_HARNESS_RAMDISK_OUT)/adb_debug.prop |
| 2245 | ADDITIONAL_TEST_HARNESS_PROPERTIES := ro.audio.silent=1 |
| 2246 | ADDITIONAL_TEST_HARNESS_PROPERTIES += ro.test_harness=1 |
| 2247 | |
| 2248 | # $(1): a list of key=value pairs for additional property assignments |
| 2249 | # $(2): the target .prop file to append the properties from $(1) |
| 2250 | define append-test-harness-props |
| 2251 | echo "#" >> $(2); \ |
| 2252 | echo "# ADDITIONAL TEST HARNESS_PROPERTIES" >> $(2); \ |
| 2253 | echo "#" >> $(2); |
| 2254 | $(foreach line,$(1), echo "$(line)" >> $(2);) |
| 2255 | endef |
| 2256 | |
| 2257 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(INSTALLED_DEBUG_RAMDISK_TARGET) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2258 | $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_TEST_HARNESS_RAMDISK_FILES) | $(COMPRESSION_COMMAND_DEPS) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2259 | $(call pretty,"Target test harness ram disk: $@") |
| 2260 | rsync -a $(TEST_HARNESS_RAMDISK_SYNC_DIR)/ $(TEST_HARNESS_RAMDISK_ROOT_DIR) |
| 2261 | $(call append-test-harness-props,$(ADDITIONAL_TEST_HARNESS_PROPERTIES),$(TEST_HARNESS_PROP_TARGET)) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2262 | $(MKBOOTFS) -d $(TARGET_OUT) $(TEST_HARNESS_RAMDISK_ROOT_DIR) | $(COMPRESSION_COMMAND) > $@ |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2263 | |
| 2264 | .PHONY: ramdisk_test_harness-nodeps |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2265 | ramdisk_test_harness-nodeps: $(MKBOOTFS) | $(COMPRESSION_COMMAND_DEPS) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2266 | echo "make $@: ignoring dependencies" |
| 2267 | rsync -a $(TEST_HARNESS_RAMDISK_SYNC_DIR)/ $(TEST_HARNESS_RAMDISK_ROOT_DIR) |
| 2268 | $(call append-test-harness-props,$(ADDITIONAL_TEST_HARNESS_PROPERTIES),$(TEST_HARNESS_PROP_TARGET)) |
J. Avila | 3f6560e | 2020-05-11 20:20:03 +0000 | [diff] [blame] | 2269 | $(MKBOOTFS) -d $(TARGET_OUT) $(TEST_HARNESS_RAMDISK_ROOT_DIR) | $(COMPRESSION_COMMAND) > $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2270 | |
| 2271 | endif # BUILDING_RAMDISK_IMAGE |
| 2272 | |
| 2273 | # ----------------------------------------------------------------- |
| 2274 | # the boot-test-harness.img, which is the kernel plus ramdisk-test-harness.img |
| 2275 | # |
| 2276 | # Note: it's intentional to skip signing for boot-test-harness.img, because it |
| 2277 | # can only be used if the device is unlocked with verification error. |
| 2278 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
| 2279 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2280 | ifneq ($(strip $(BOARD_KERNEL_BINARIES)),) |
| 2281 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(foreach k,$(subst kernel,boot-test-harness,$(BOARD_KERNEL_BINARIES)), \ |
| 2282 | $(PRODUCT_OUT)/$(k).img) |
| 2283 | else |
| 2284 | INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot-test-harness.img |
| 2285 | endif |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2286 | |
| 2287 | # Replace ramdisk-debug.img in $(MKBOOTIMG) ARGS with ramdisk-test-harness.img to build boot-test-harness.img |
| 2288 | INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS := $(subst $(INSTALLED_DEBUG_RAMDISK_TARGET),$(INSTALLED_TEST_HARNESS_RAMDISK_TARGET),$(INTERNAL_DEBUG_BOOTIMAGE_ARGS)) |
| 2289 | |
| 2290 | # If boot.img is chained but boot-test-harness.img is not signed, libavb in bootloader |
| 2291 | # will fail to find valid AVB metadata from the end of /boot, thus stop booting. |
| 2292 | # Using a test key to sign boot-test-harness.img to continue booting with the mismatched |
| 2293 | # public key, if the device is unlocked. |
| 2294 | ifneq ($(BOARD_AVB_BOOT_KEY_PATH),) |
| 2295 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(AVBTOOL) $(BOARD_AVB_BOOT_TEST_KEY_PATH) |
| 2296 | endif |
| 2297 | |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2298 | # $(1): output file |
| 2299 | define build-boot-test-harness-target |
| 2300 | $(MKBOOTIMG) --kernel $(PRODUCT_OUT)/$(subst .img,,$(subst boot-test-harness,kernel,$(notdir $(1)))) \ |
| 2301 | $(INTERNAL_TEST_HARNESS_BOOTIMAGE_ARGS) $(INTERNAL_MKBOOTIMG_VERSION_ARGS) $(BOARD_MKBOOTIMG_ARGS) --output $@ |
| 2302 | $(if $(BOARD_AVB_BOOT_KEY_PATH),$(call test-key-sign-bootimage,$@)) |
| 2303 | endef |
| 2304 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2305 | # Build the new boot-test-harness.img, based on boot-debug.img and ramdisk-test-harness.img. |
| 2306 | $(INSTALLED_TEST_HARNESS_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INSTALLED_DEBUG_BOOTIMAGE_TARGET) $(INSTALLED_TEST_HARNESS_RAMDISK_TARGET) |
| 2307 | $(call pretty,"Target boot test harness image: $@") |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2308 | $(call build-boot-test-harness-target,$@) |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2309 | |
| 2310 | .PHONY: bootimage_test_harness-nodeps |
| 2311 | bootimage_test_harness-nodeps: $(MKBOOTIMG) |
| 2312 | echo "make $@: ignoring dependencies" |
Steve Muckle | 4866bd6 | 2020-04-02 11:31:08 -0700 | [diff] [blame] | 2313 | $(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] | 2314 | |
| 2315 | endif # TARGET_NO_KERNEL |
| 2316 | endif # BOARD_BUILD_SYSTEM_ROOT_IMAGE is not true |
| 2317 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2318 | # Creates a compatibility symlink between two partitions, e.g. /system/vendor to /vendor |
| 2319 | # $1: from location (e.g $(TARGET_OUT)/vendor) |
| 2320 | # $2: destination location (e.g. /vendor) |
| 2321 | # $3: partition image name (e.g. vendor.img) |
| 2322 | define create-partition-compat-symlink |
| 2323 | $(eval \ |
| 2324 | $1: |
| 2325 | @echo Symlink $(patsubst $(PRODUCT_OUT)/%,%,$1) to $2 |
| 2326 | mkdir -p $(dir $1) |
| 2327 | if [ -d $1 ] && [ ! -h $1 ]; then \ |
| 2328 | echo 'Non-symlink $1 detected!' 1>&2; \ |
| 2329 | echo 'You cannot install files to $1 while building a separate $3!' 1>&2; \ |
| 2330 | exit 1; \ |
| 2331 | fi |
| 2332 | ln -sfn $2 $1 |
| 2333 | ) |
| 2334 | $1 |
| 2335 | endef |
| 2336 | |
| 2337 | |
Bowgo Tsai | 5c40c71 | 2019-10-08 10:22:19 +0800 | [diff] [blame] | 2338 | # ----------------------------------------------------------------- |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 2339 | # system image |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2340 | |
Dan Willemsen | 37a1986 | 2018-10-31 16:31:46 -0700 | [diff] [blame] | 2341 | INTERNAL_SYSTEMIMAGE_FILES := $(sort $(filter $(TARGET_OUT)/%, \ |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 2342 | $(ALL_GENERATED_SOURCES) \ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2343 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 2344 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2345 | # Create symlink /system/vendor to /vendor if necessary. |
| 2346 | ifdef BOARD_USES_VENDORIMAGE |
| 2347 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/vendor,/vendor,vendor.img) |
| 2348 | endif |
| 2349 | |
| 2350 | # Create symlink /system/product to /product if necessary. |
| 2351 | ifdef BOARD_USES_PRODUCTIMAGE |
| 2352 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/product,/product,product.img) |
| 2353 | endif |
| 2354 | |
| 2355 | # Create symlink /system/system_ext to /system_ext if necessary. |
| 2356 | ifdef BOARD_USES_SYSTEM_EXTIMAGE |
| 2357 | INTERNAL_SYSTEMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT)/system_ext,/system_ext,system_ext.img) |
| 2358 | endif |
| 2359 | |
Ying Wang | 82cceba | 2012-08-13 15:03:00 -0700 | [diff] [blame] | 2360 | FULL_SYSTEMIMAGE_DEPS := $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2361 | |
| 2362 | # ASAN libraries in the system image - add dependency. |
| 2363 | ASAN_IN_SYSTEM_INSTALLED := $(TARGET_OUT)/asan.tar.bz2 |
Evgenii Stepanov | 8841a7f | 2018-07-27 11:54:32 -0700 | [diff] [blame] | 2364 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2365 | ifeq (true,$(SANITIZE_TARGET_SYSTEM)) |
| 2366 | FULL_SYSTEMIMAGE_DEPS += $(ASAN_IN_SYSTEM_INSTALLED) |
| 2367 | endif |
| 2368 | endif |
| 2369 | |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 2370 | FULL_SYSTEMIMAGE_DEPS += $(INTERNAL_ROOT_FILES) $(INSTALLED_FILES_FILE_ROOT) |
Luis Hector Chavez | ff48993 | 2018-07-03 15:41:40 -0700 | [diff] [blame] | 2371 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2372 | # ----------------------------------------------------------------- |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2373 | ifdef BUILDING_SYSTEM_IMAGE |
| 2374 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2375 | # installed file list |
| 2376 | # Depending on anything that $(BUILT_SYSTEMIMAGE) depends on. |
| 2377 | # We put installed-files.txt ahead of image itself in the dependency graph |
| 2378 | # so that we can get the size stat even if the build fails due to too large |
| 2379 | # system image. |
| 2380 | INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 2381 | INSTALLED_FILES_JSON := $(INSTALLED_FILES_FILE:.txt=.json) |
| 2382 | $(INSTALLED_FILES_FILE): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2383 | $(INSTALLED_FILES_FILE): $(FULL_SYSTEMIMAGE_DEPS) $(FILESLIST) $(FILESLIST_UTIL) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2384 | @echo Installed file list: $@ |
| 2385 | @mkdir -p $(dir $@) |
| 2386 | @rm -f $@ |
Makoto Onuki | 9fe97e2 | 2017-03-16 09:41:19 -0700 | [diff] [blame] | 2387 | $(hide) $(FILESLIST) $(TARGET_OUT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2388 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2389 | |
| 2390 | .PHONY: installed-file-list |
| 2391 | installed-file-list: $(INSTALLED_FILES_FILE) |
Ying Wang | 534fcd7 | 2013-03-01 16:45:35 -0800 | [diff] [blame] | 2392 | |
| 2393 | $(call dist-for-goals, sdk win_sdk sdk_addon, $(INSTALLED_FILES_FILE)) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2394 | |
| 2395 | systemimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2396 | $(call intermediates-dir-for,PACKAGING,systemimage) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 2397 | BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img |
| 2398 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2399 | # $(1): output file |
| 2400 | define build-systemimage-target |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2401 | @echo "Target system fs image: $(1)" |
| 2402 | @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] | 2403 | $(call generate-image-prop-dictionary, $(systemimage_intermediates)/system_image_info.txt,system, \ |
Geremy Condra | 5b5f495 | 2014-05-05 22:19:37 -0700 | [diff] [blame] | 2404 | skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 2405 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2406 | $(BUILD_IMAGE) \ |
| 2407 | $(TARGET_OUT) $(systemimage_intermediates)/system_image_info.txt $(1) $(TARGET_OUT) \ |
| 2408 | || ( mkdir -p $${DIST_DIR}; \ |
| 2409 | cp $(INSTALLED_FILES_FILE) $${DIST_DIR}/installed-files-rescued.txt; \ |
| 2410 | exit 1 ) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2411 | endef |
| 2412 | |
Dan Willemsen | 6b72c73 | 2019-06-12 21:33:38 +0000 | [diff] [blame] | 2413 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 2414 | $(BUILT_SYSTEMIMAGE): $(BOARD_AVB_SYSTEM_KEY_PATH) |
| 2415 | endif |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2416 | $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2417 | $(call build-systemimage-target,$@) |
| 2418 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2419 | INSTALLED_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/system.img |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 2420 | SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2421 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2422 | # INSTALLED_SYSTEMIMAGE_TARGET used to be named INSTALLED_SYSTEMIMAGE. Create an alias for backward |
| 2423 | # compatibility, in case device-specific Makefiles still refer to the old name. |
| 2424 | INSTALLED_SYSTEMIMAGE := $(INSTALLED_SYSTEMIMAGE_TARGET) |
| 2425 | |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2426 | # The system partition needs room for the recovery image as well. We |
| 2427 | # now store the recovery image as a binary patch using the boot image |
| 2428 | # as the source (since they are very similar). Generate the patch so |
| 2429 | # we can see how big it's going to be, and include that in the system |
| 2430 | # image size check calculation. |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 2431 | ifneq ($(INSTALLED_BOOTIMAGE_TARGET),) |
Sriram Raman | 1e96ac8 | 2009-07-24 13:52:32 -0700 | [diff] [blame] | 2432 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2433 | ifneq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 2434 | ifneq (,$(filter true, $(BOARD_BUILD_SYSTEM_ROOT_IMAGE) $(BOARD_INCLUDE_RECOVERY_DTBO) $(BOARD_INCLUDE_RECOVERY_ACPIO))) |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2435 | diff_tool := $(HOST_OUT_EXECUTABLES)/bsdiff |
| 2436 | else |
| 2437 | diff_tool := $(HOST_OUT_EXECUTABLES)/imgdiff |
| 2438 | endif |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2439 | intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch) |
| 2440 | RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p |
Tao Bao | 6d5d623 | 2018-03-09 17:04:42 -0800 | [diff] [blame] | 2441 | $(RECOVERY_FROM_BOOT_PATCH): PRIVATE_DIFF_TOOL := $(diff_tool) |
| 2442 | $(RECOVERY_FROM_BOOT_PATCH): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2443 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 2444 | $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 2445 | $(diff_tool) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2446 | @echo "Construct recovery from boot" |
| 2447 | mkdir -p $(dir $@) |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 2448 | $(PRIVATE_DIFF_TOOL) $(firstword $(INSTALLED_BOOTIMAGE_TARGET)) $(INSTALLED_RECOVERYIMAGE_TARGET) $@ |
Tao Bao | 8beab69 | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 2449 | else # $(BOARD_USES_FULL_RECOVERY_IMAGE) == true |
| 2450 | RECOVERY_FROM_BOOT_PATCH := $(INSTALLED_RECOVERYIMAGE_TARGET) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 2451 | endif # BOARD_USES_FULL_RECOVERY_IMAGE |
| 2452 | endif # INSTALLED_RECOVERYIMAGE_TARGET |
| 2453 | endif # INSTALLED_BOOTIMAGE_TARGET |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 2454 | |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 2455 | $(INSTALLED_SYSTEMIMAGE_TARGET): $(BUILT_SYSTEMIMAGE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2456 | @echo "Install system fs image: $@" |
| 2457 | $(copy-file-to-target) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 2458 | $(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] | 2459 | |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2460 | systemimage: $(INSTALLED_SYSTEMIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2461 | |
| 2462 | .PHONY: systemimage-nodeps snod |
| 2463 | systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \ |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 2464 | | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2465 | @echo "make $@: ignoring dependencies" |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 2466 | $(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE_TARGET)) |
Yifan Hong | 8c3dce0 | 2019-04-09 17:03:57 +0000 | [diff] [blame] | 2467 | $(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] | 2468 | ifeq (true,$(WITH_DEXPREOPT)) |
Dan Willemsen | 395358e | 2020-03-04 23:50:53 +0000 | [diff] [blame] | 2469 | $(warning Warning: with dexpreopt enabled, you may need a full rebuild.) |
Ying Wang | acf01ec | 2012-02-24 11:05:48 -0800 | [diff] [blame] | 2470 | endif |
| 2471 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2472 | endif # BUILDING_SYSTEM_IMAGE |
| 2473 | |
Anton Hansson | 30e061b | 2018-11-12 13:36:46 +0000 | [diff] [blame] | 2474 | .PHONY: sync syncsys |
| 2475 | sync syncsys: $(INTERNAL_SYSTEMIMAGE_FILES) |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 2476 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2477 | # ----------------------------------------------------------------- |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2478 | # Old PDK fusion targets |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 2479 | .PHONY: platform |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2480 | platform: |
| 2481 | echo "Warning: 'platform' is obsolete" |
Keun young Park | 816b9fd | 2012-05-16 10:32:41 -0700 | [diff] [blame] | 2482 | |
| 2483 | .PHONY: platform-java |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2484 | platform-java: |
| 2485 | echo "Warning: 'platform-java' is obsolete" |
Colin Cross | 53c8f97 | 2018-09-28 16:19:42 -0700 | [diff] [blame] | 2486 | |
Ying Wang | 3a61eeb | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 2487 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2488 | # data partition image |
| 2489 | INTERNAL_USERDATAIMAGE_FILES := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2490 | $(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2491 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2492 | ifdef BUILDING_USERDATA_IMAGE |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2493 | userdataimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2494 | $(call intermediates-dir-for,PACKAGING,userdata) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 2495 | BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img |
| 2496 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2497 | define build-userdataimage-target |
| 2498 | $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)") |
| 2499 | @mkdir -p $(TARGET_OUT_DATA) |
| 2500 | @mkdir -p $(userdataimage_intermediates) && rm -rf $(userdataimage_intermediates)/userdata_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2501 | $(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] | 2502 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2503 | $(BUILD_IMAGE) \ |
| 2504 | $(TARGET_OUT_DATA) $(userdataimage_intermediates)/userdata_image_info.txt \ |
| 2505 | $(INSTALLED_USERDATAIMAGE_TARGET) $(TARGET_OUT) |
| 2506 | $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 2507 | endef |
| 2508 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 2509 | # We just build this directly to the install location. |
| 2510 | INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2511 | INSTALLED_USERDATAIMAGE_TARGET_DEPS := \ |
| 2512 | $(INTERNAL_USERIMAGES_DEPS) \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2513 | $(INTERNAL_USERDATAIMAGE_FILES) |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2514 | $(INSTALLED_USERDATAIMAGE_TARGET): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2515 | $(build-userdataimage-target) |
| 2516 | |
| 2517 | .PHONY: userdataimage-nodeps |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 2518 | userdataimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2519 | $(build-userdataimage-target) |
| 2520 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2521 | endif # BUILDING_USERDATA_IMAGE |
Ying Wang | e215ed5 | 2012-10-15 14:36:22 -0700 | [diff] [blame] | 2522 | |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2523 | # ASAN libraries in the system image - build rule. |
| 2524 | ASAN_OUT_DIRS_FOR_SYSTEM_INSTALL := $(sort $(patsubst $(PRODUCT_OUT)/%,%,\ |
| 2525 | $(TARGET_OUT_SHARED_LIBRARIES) \ |
| 2526 | $(2ND_TARGET_OUT_SHARED_LIBRARIES) \ |
| 2527 | $(TARGET_OUT_VENDOR_SHARED_LIBRARIES) \ |
| 2528 | $(2ND_TARGET_OUT_VENDOR_SHARED_LIBRARIES))) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 2529 | # Extra options: Enforce the system user for the files to avoid having to change ownership. |
| 2530 | ASAN_SYSTEM_INSTALL_OPTIONS := --owner=1000 --group=1000 |
Andreas Gampe | 039b5c7 | 2017-03-24 16:06:31 -0700 | [diff] [blame] | 2531 | # Note: experimentally, it seems not worth it to try to get "best" compression. We don't save |
| 2532 | # enough space. |
| 2533 | $(ASAN_IN_SYSTEM_INSTALLED): $(INSTALLED_USERDATAIMAGE_TARGET_DEPS) |
Andreas Gampe | 2c498a3 | 2017-03-30 16:54:23 -0700 | [diff] [blame] | 2534 | 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] | 2535 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 2536 | # ----------------------------------------------------------------- |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2537 | # partition table image |
| 2538 | ifdef BOARD_BPT_INPUT_FILES |
| 2539 | |
| 2540 | BUILT_BPTIMAGE_TARGET := $(PRODUCT_OUT)/partition-table.img |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 2541 | BUILT_BPTJSON_TARGET := $(PRODUCT_OUT)/partition-table.bpt |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2542 | |
| 2543 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS := \ |
| 2544 | --output_gpt $(BUILT_BPTIMAGE_TARGET) \ |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 2545 | --output_json $(BUILT_BPTJSON_TARGET) \ |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2546 | $(foreach file, $(BOARD_BPT_INPUT_FILES), --input $(file)) |
| 2547 | |
| 2548 | ifdef BOARD_BPT_DISK_SIZE |
| 2549 | INTERNAL_BVBTOOL_MAKE_TABLE_ARGS += --disk_size $(BOARD_BPT_DISK_SIZE) |
| 2550 | endif |
| 2551 | |
| 2552 | define build-bptimage-target |
| 2553 | $(call pretty,"Target partition table image: $(INSTALLED_BPTIMAGE_TARGET)") |
| 2554 | $(hide) $(BPTTOOL) make_table $(INTERNAL_BVBTOOL_MAKE_TABLE_ARGS) $(BOARD_BPT_MAKE_TABLE_ARGS) |
| 2555 | endef |
| 2556 | |
| 2557 | INSTALLED_BPTIMAGE_TARGET := $(BUILT_BPTIMAGE_TARGET) |
Casey Dahlin | 04d15dd | 2016-08-19 10:59:57 -0700 | [diff] [blame] | 2558 | $(BUILT_BPTJSON_TARGET): $(INSTALLED_BPTIMAGE_TARGET) |
| 2559 | $(hide) touch -c $(BUILT_BPTJSON_TARGET) |
| 2560 | |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 2561 | $(INSTALLED_BPTIMAGE_TARGET): $(BPTTOOL) $(BOARD_BPT_INPUT_FILES) |
| 2562 | $(build-bptimage-target) |
| 2563 | |
| 2564 | .PHONY: bptimage-nodeps |
| 2565 | bptimage-nodeps: |
| 2566 | $(build-bptimage-target) |
| 2567 | |
| 2568 | endif # BOARD_BPT_INPUT_FILES |
| 2569 | |
| 2570 | # ----------------------------------------------------------------- |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2571 | # cache partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2572 | ifdef BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2573 | INTERNAL_CACHEIMAGE_FILES := \ |
| 2574 | $(filter $(TARGET_OUT_CACHE)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
| 2575 | |
| 2576 | cacheimage_intermediates := \ |
| 2577 | $(call intermediates-dir-for,PACKAGING,cache) |
| 2578 | BUILT_CACHEIMAGE_TARGET := $(PRODUCT_OUT)/cache.img |
| 2579 | |
| 2580 | define build-cacheimage-target |
| 2581 | $(call pretty,"Target cache fs image: $(INSTALLED_CACHEIMAGE_TARGET)") |
| 2582 | @mkdir -p $(TARGET_OUT_CACHE) |
| 2583 | @mkdir -p $(cacheimage_intermediates) && rm -rf $(cacheimage_intermediates)/cache_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2584 | $(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] | 2585 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2586 | $(BUILD_IMAGE) \ |
| 2587 | $(TARGET_OUT_CACHE) $(cacheimage_intermediates)/cache_image_info.txt \ |
| 2588 | $(INSTALLED_CACHEIMAGE_TARGET) $(TARGET_OUT) |
| 2589 | $(call assert-max-image-size,$(INSTALLED_CACHEIMAGE_TARGET),$(BOARD_CACHEIMAGE_PARTITION_SIZE)) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2590 | endef |
| 2591 | |
| 2592 | # We just build this directly to the install location. |
| 2593 | INSTALLED_CACHEIMAGE_TARGET := $(BUILT_CACHEIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2594 | $(INSTALLED_CACHEIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2595 | $(build-cacheimage-target) |
| 2596 | |
| 2597 | .PHONY: cacheimage-nodeps |
| 2598 | cacheimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 2599 | $(build-cacheimage-target) |
| 2600 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2601 | else # BUILDING_CACHE_IMAGE |
Patrick Tjin | f3b0dc2 | 2016-05-13 15:26:09 -0700 | [diff] [blame] | 2602 | # we need to ignore the broken cache link when doing the rsync |
| 2603 | IGNORE_CACHE_LINK := --exclude=cache |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2604 | endif # BUILDING_CACHE_IMAGE |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2605 | |
David Zeuthen | 0eb1097 | 2016-09-28 17:55:27 -0400 | [diff] [blame] | 2606 | # ----------------------------------------------------------------- |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2607 | # system_other partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2608 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2609 | ifeq ($(BOARD_USES_SYSTEM_OTHER_ODEX),true) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2610 | # Marker file to identify that odex files are installed |
| 2611 | INSTALLED_SYSTEM_OTHER_ODEX_MARKER := $(TARGET_OUT_SYSTEM_OTHER)/system-other-odex-marker |
| 2612 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER) |
| 2613 | $(INSTALLED_SYSTEM_OTHER_ODEX_MARKER): |
| 2614 | $(hide) touch $@ |
| 2615 | endif |
| 2616 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2617 | INTERNAL_SYSTEMOTHERIMAGE_FILES := \ |
| 2618 | $(filter $(TARGET_OUT_SYSTEM_OTHER)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2619 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2620 | |
Colin Cross | 6db5b0e | 2018-11-16 21:26:33 -0800 | [diff] [blame] | 2621 | # system_other dex files are installed as a side-effect of installing system image files |
| 2622 | INTERNAL_SYSTEMOTHERIMAGE_FILES += $(INTERNAL_SYSTEMIMAGE_FILES) |
| 2623 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2624 | INSTALLED_FILES_FILE_SYSTEMOTHER := $(PRODUCT_OUT)/installed-files-system-other.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 2625 | INSTALLED_FILES_JSON_SYSTEMOTHER := $(INSTALLED_FILES_FILE_SYSTEMOTHER:.txt=.json) |
| 2626 | $(INSTALLED_FILES_FILE_SYSTEMOTHER): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEMOTHER) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2627 | $(INSTALLED_FILES_FILE_SYSTEMOTHER) : $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2628 | @echo Installed file list: $@ |
| 2629 | @mkdir -p $(dir $@) |
| 2630 | @rm -f $@ |
Makoto Onuki | 9fe97e2 | 2017-03-16 09:41:19 -0700 | [diff] [blame] | 2631 | $(hide) $(FILESLIST) $(TARGET_OUT_SYSTEM_OTHER) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2632 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2633 | |
Bowgo Tsai | 867ab66 | 2019-01-29 13:30:18 +0800 | [diff] [blame] | 2634 | # Determines partition size for system_other.img. |
| 2635 | ifeq ($(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS),true) |
| 2636 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)),) |
| 2637 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE := $(BOARD_SUPER_PARTITION_SYSTEM_DEVICE_SIZE) |
| 2638 | endif |
| 2639 | endif |
| 2640 | |
| 2641 | ifndef INTERNAL_SYSTEM_OTHER_PARTITION_SIZE |
| 2642 | INTERNAL_SYSTEM_OTHER_PARTITION_SIZE:= $(BOARD_SYSTEMIMAGE_PARTITION_SIZE) |
| 2643 | endif |
| 2644 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2645 | systemotherimage_intermediates := \ |
| 2646 | $(call intermediates-dir-for,PACKAGING,system_other) |
| 2647 | BUILT_SYSTEMOTHERIMAGE_TARGET := $(PRODUCT_OUT)/system_other.img |
| 2648 | |
| 2649 | # Note that we assert the size is SYSTEMIMAGE_PARTITION_SIZE since this is the 'b' system image. |
| 2650 | define build-systemotherimage-target |
| 2651 | $(call pretty,"Target system_other fs image: $(INSTALLED_SYSTEMOTHERIMAGE_TARGET)") |
| 2652 | @mkdir -p $(TARGET_OUT_SYSTEM_OTHER) |
| 2653 | @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] | 2654 | $(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] | 2655 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2656 | $(BUILD_IMAGE) \ |
| 2657 | $(TARGET_OUT_SYSTEM_OTHER) $(systemotherimage_intermediates)/system_other_image_info.txt \ |
| 2658 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) $(TARGET_OUT) |
| 2659 | $(call assert-max-image-size,$(INSTALLED_SYSTEMOTHERIMAGE_TARGET),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2660 | endef |
| 2661 | |
| 2662 | # We just build this directly to the install location. |
| 2663 | INSTALLED_SYSTEMOTHERIMAGE_TARGET := $(BUILT_SYSTEMOTHERIMAGE_TARGET) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 2664 | ifneq (true,$(SANITIZE_LITE)) |
| 2665 | # 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] | 2666 | $(INSTALLED_SYSTEMOTHERIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_SYSTEMOTHERIMAGE_FILES) $(INSTALLED_FILES_FILE_SYSTEMOTHER) |
| 2667 | $(build-systemotherimage-target) |
Andreas Gampe | 4ed21d1 | 2017-06-16 10:24:54 -0700 | [diff] [blame] | 2668 | endif |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2669 | |
| 2670 | .PHONY: systemotherimage-nodeps |
| 2671 | systemotherimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 2672 | $(build-systemotherimage-target) |
| 2673 | |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2674 | endif # BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 2675 | |
| 2676 | |
| 2677 | # ----------------------------------------------------------------- |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 2678 | # vendor partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2679 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 2680 | INTERNAL_VENDORIMAGE_FILES := \ |
Ying Wang | cff3862 | 2014-07-16 17:46:35 -0700 | [diff] [blame] | 2681 | $(filter $(TARGET_OUT_VENDOR)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2682 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 2683 | |
Ying Wang | 8da19e3 | 2015-09-15 14:22:12 -0700 | [diff] [blame] | 2684 | |
Bill Peckham | 1f9b8f0 | 2019-07-03 15:58:48 -0700 | [diff] [blame] | 2685 | # Create symlink /vendor/odm to /odm if necessary. |
| 2686 | ifdef BOARD_USES_ODMIMAGE |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2687 | 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] | 2688 | endif |
| 2689 | |
Yifan Hong | e51dff2 | 2020-06-23 17:26:57 -0700 | [diff] [blame] | 2690 | # Create symlinks for vendor_dlkm on devices with a vendor_dlkm partition: |
| 2691 | # /vendor/lib/modules -> /vendor_dlkm/lib/modules |
| 2692 | # |
| 2693 | # On devices with a vendor_dlkm partition, |
| 2694 | # - /vendor/lib/modules is a symlink to a directory that stores vendor DLKMs. |
| 2695 | # - /vendor_dlkm/{etc,...} store other vendor_dlkm files directly. The vendor_dlkm partition is |
| 2696 | # mounted at /vendor_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 2697 | # are hidden. |
| 2698 | # On devices without a vendor_dlkm partition, |
| 2699 | # - /vendor/lib/modules stores vendor DLKMs directly. |
| 2700 | # - /vendor_dlkm/{etc,...} are symlinks to directories that store other vendor_dlkm files. |
| 2701 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 2702 | # The vendor DLKMs and other vendor_dlkm files must not be accessed using other paths because they |
| 2703 | # are not guaranteed to exist on all devices. |
| 2704 | ifdef BOARD_USES_VENDOR_DLKMIMAGE |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2705 | 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] | 2706 | endif |
| 2707 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2708 | INSTALLED_FILES_FILE_VENDOR := $(PRODUCT_OUT)/installed-files-vendor.txt |
| 2709 | INSTALLED_FILES_JSON_VENDOR := $(INSTALLED_FILES_FILE_VENDOR:.txt=.json) |
| 2710 | $(INSTALLED_FILES_FILE_VENDOR): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR) |
| 2711 | $(INSTALLED_FILES_FILE_VENDOR) : $(INTERNAL_VENDORIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 2712 | @echo Installed file list: $@ |
| 2713 | @mkdir -p $(dir $@) |
| 2714 | @rm -f $@ |
| 2715 | $(hide) $(FILESLIST) $(TARGET_OUT_VENDOR) > $(@:.txt=.json) |
| 2716 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Yifan Hong | 3d5e2c2 | 2020-07-15 17:01:14 -0700 | [diff] [blame] | 2717 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 2718 | vendorimage_intermediates := \ |
| 2719 | $(call intermediates-dir-for,PACKAGING,vendor) |
| 2720 | BUILT_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 2721 | define build-vendorimage-target |
| 2722 | $(call pretty,"Target vendor fs image: $(INSTALLED_VENDORIMAGE_TARGET)") |
| 2723 | @mkdir -p $(TARGET_OUT_VENDOR) |
| 2724 | @mkdir -p $(vendorimage_intermediates) && rm -rf $(vendorimage_intermediates)/vendor_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2725 | $(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] | 2726 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2727 | $(BUILD_IMAGE) \ |
| 2728 | $(TARGET_OUT_VENDOR) $(vendorimage_intermediates)/vendor_image_info.txt \ |
| 2729 | $(INSTALLED_VENDORIMAGE_TARGET) $(TARGET_OUT) |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 2730 | $(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] | 2731 | endef |
| 2732 | |
| 2733 | # We just build this directly to the install location. |
| 2734 | INSTALLED_VENDORIMAGE_TARGET := $(BUILT_VENDORIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2735 | $(INSTALLED_VENDORIMAGE_TARGET): \ |
| 2736 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 2737 | $(INTERNAL_VENDORIMAGE_FILES) \ |
Yifan Hong | 9a3cad9 | 2020-04-27 19:06:59 -0700 | [diff] [blame] | 2738 | $(INSTALLED_FILES_FILE_VENDOR) \ |
| 2739 | $(RECOVERY_FROM_BOOT_PATCH) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 2740 | $(build-vendorimage-target) |
| 2741 | |
Steven Moreland | a2e734d | 2017-03-07 12:10:09 -0800 | [diff] [blame] | 2742 | .PHONY: vendorimage-nodeps vnod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 2743 | vendorimage-nodeps vnod: | $(INTERNAL_USERIMAGES_DEPS) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 2744 | $(build-vendorimage-target) |
| 2745 | |
Colin Cross | 91a5227 | 2017-06-20 16:57:52 -0700 | [diff] [blame] | 2746 | sync: $(INTERNAL_VENDORIMAGE_FILES) |
| 2747 | |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 2748 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 2749 | INSTALLED_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vendor.img |
| 2750 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDORIMAGE),$(INSTALLED_VENDORIMAGE_TARGET))) |
| 2751 | endif |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 2752 | |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 2753 | # ----------------------------------------------------------------- |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2754 | # product partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2755 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2756 | INTERNAL_PRODUCTIMAGE_FILES := \ |
| 2757 | $(filter $(TARGET_OUT_PRODUCT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2758 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2759 | |
| 2760 | INSTALLED_FILES_FILE_PRODUCT := $(PRODUCT_OUT)/installed-files-product.txt |
Colin Cross | 23dded0 | 2018-06-13 14:04:22 -0700 | [diff] [blame] | 2761 | INSTALLED_FILES_JSON_PRODUCT := $(INSTALLED_FILES_FILE_PRODUCT:.txt=.json) |
| 2762 | $(INSTALLED_FILES_FILE_PRODUCT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_PRODUCT) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2763 | $(INSTALLED_FILES_FILE_PRODUCT) : $(INTERNAL_PRODUCTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2764 | @echo Installed file list: $@ |
| 2765 | @mkdir -p $(dir $@) |
| 2766 | @rm -f $@ |
| 2767 | $(hide) $(FILESLIST) $(TARGET_OUT_PRODUCT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2768 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2769 | |
| 2770 | productimage_intermediates := \ |
| 2771 | $(call intermediates-dir-for,PACKAGING,product) |
| 2772 | BUILT_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 2773 | define build-productimage-target |
| 2774 | $(call pretty,"Target product fs image: $(INSTALLED_PRODUCTIMAGE_TARGET)") |
| 2775 | @mkdir -p $(TARGET_OUT_PRODUCT) |
| 2776 | @mkdir -p $(productimage_intermediates) && rm -rf $(productimage_intermediates)/product_image_info.txt |
Yifan Hong | 760d3c0 | 2018-05-30 11:16:46 -0700 | [diff] [blame] | 2777 | $(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] | 2778 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2779 | $(BUILD_IMAGE) \ |
| 2780 | $(TARGET_OUT_PRODUCT) $(productimage_intermediates)/product_image_info.txt \ |
| 2781 | $(INSTALLED_PRODUCTIMAGE_TARGET) $(TARGET_OUT) |
| 2782 | $(call assert-max-image-size,$(INSTALLED_PRODUCTIMAGE_TARGET),$(BOARD_PRODUCTIMAGE_PARTITION_SIZE)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2783 | endef |
| 2784 | |
| 2785 | # We just build this directly to the install location. |
| 2786 | INSTALLED_PRODUCTIMAGE_TARGET := $(BUILT_PRODUCTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2787 | $(INSTALLED_PRODUCTIMAGE_TARGET): \ |
| 2788 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 2789 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 2790 | $(INSTALLED_FILES_FILE_PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 2791 | $(build-productimage-target) |
| 2792 | |
| 2793 | .PHONY: productimage-nodeps pnod |
| 2794 | productimage-nodeps pnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 2795 | $(build-productimage-target) |
| 2796 | |
| 2797 | sync: $(INTERNAL_PRODUCTIMAGE_FILES) |
| 2798 | |
| 2799 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 2800 | INSTALLED_PRODUCTIMAGE_TARGET := $(PRODUCT_OUT)/product.img |
| 2801 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_PRODUCTIMAGE),$(INSTALLED_PRODUCTIMAGE_TARGET))) |
| 2802 | endif |
| 2803 | |
| 2804 | # ----------------------------------------------------------------- |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2805 | # system_ext partition image |
| 2806 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 2807 | INTERNAL_SYSTEM_EXTIMAGE_FILES := \ |
| 2808 | $(filter $(TARGET_OUT_SYSTEM_EXT)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2809 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2810 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2811 | INSTALLED_FILES_FILE_SYSTEM_EXT := $(PRODUCT_OUT)/installed-files-system_ext.txt |
| 2812 | INSTALLED_FILES_JSON_SYSTEM_EXT := $(INSTALLED_FILES_FILE_SYSTEM_EXT:.txt=.json) |
| 2813 | $(INSTALLED_FILES_FILE_SYSTEM_EXT): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_SYSTEM_EXT) |
| 2814 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) : $(INTERNAL_SYSTEM_EXTIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2815 | @echo Installed file list: $@ |
| 2816 | @mkdir -p $(dir $@) |
| 2817 | @rm -f $@ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2818 | $(hide) $(FILESLIST) $(TARGET_OUT_SYSTEM_EXT) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2819 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2820 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2821 | system_extimage_intermediates := \ |
| 2822 | $(call intermediates-dir-for,PACKAGING,system_ext) |
| 2823 | BUILT_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 2824 | define build-system_extimage-target |
| 2825 | $(call pretty,"Target system_ext fs image: $(INSTALLED_SYSTEM_EXTIMAGE_TARGET)") |
| 2826 | @mkdir -p $(TARGET_OUT_SYSTEM_EXT) |
| 2827 | @mkdir -p $(system_extimage_intermediates) && rm -rf $(system_extimage_intermediates)/system_ext_image_info.txt |
| 2828 | $(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] | 2829 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2830 | $(BUILD_IMAGE) \ |
| 2831 | $(TARGET_OUT_SYSTEM_EXT) \ |
| 2832 | $(system_extimage_intermediates)/system_ext_image_info.txt \ |
| 2833 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 2834 | $(TARGET_OUT) |
| 2835 | $(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] | 2836 | endef |
| 2837 | |
| 2838 | # We just build this directly to the install location. |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2839 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(BUILT_SYSTEM_EXTIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2840 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET): \ |
| 2841 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 2842 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 2843 | $(INSTALLED_FILES_FILE_SYSTEM_EXT) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2844 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2845 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2846 | .PHONY: systemextimage-nodeps senod |
| 2847 | systemextimage-nodeps senod: | $(INTERNAL_USERIMAGES_DEPS) |
| 2848 | $(build-system_extimage-target) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2849 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2850 | sync: $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 2851 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 2852 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 2853 | INSTALLED_SYSTEM_EXTIMAGE_TARGET := $(PRODUCT_OUT)/system_ext.img |
| 2854 | $(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] | 2855 | endif |
| 2856 | |
| 2857 | # ----------------------------------------------------------------- |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2858 | # odm partition image |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 2859 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2860 | INTERNAL_ODMIMAGE_FILES := \ |
| 2861 | $(filter $(TARGET_OUT_ODM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2862 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2863 | |
Colin Cross | bd38214 | 2020-08-26 15:08:57 -0700 | [diff] [blame] | 2864 | # Create symlinks for odm_dlkm on devices with a odm_dlkm partition: |
| 2865 | # /odm/lib/modules -> /odm_dlkm/lib/modules |
| 2866 | # |
| 2867 | # On devices with a odm_dlkm partition, |
| 2868 | # - /odm/lib/modules is a symlink to a directory that stores odm DLKMs. |
| 2869 | # - /odm_dlkm/{etc,...} store other odm_dlkm files directly. The odm_dlkm partition is |
| 2870 | # mounted at /odm_dlkm at runtime and the symlinks created in system/core/rootdir/Android.mk |
| 2871 | # are hidden. |
| 2872 | # On devices without a odm_dlkm partition, |
| 2873 | # - /odm/lib/modules stores odm DLKMs directly. |
| 2874 | # - /odm_dlkm/{etc,...} are symlinks to directories that store other odm_dlkm files. |
| 2875 | # See system/core/rootdir/Android.mk for a list of created symlinks. |
| 2876 | # The odm DLKMs and other odm_dlkm files must not be accessed using other paths because they |
| 2877 | # are not guaranteed to exist on all devices. |
| 2878 | ifdef BOARD_USES_ODM_DLKMIMAGE |
| 2879 | INTERNAL_ODMIMAGE_FILES += $(call create-partition-compat-symlink,$(TARGET_OUT_ODM)/lib/modules,/odm_dlkm/lib/modules,odm_dlkm.img) |
| 2880 | endif |
| 2881 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2882 | INSTALLED_FILES_FILE_ODM := $(PRODUCT_OUT)/installed-files-odm.txt |
| 2883 | INSTALLED_FILES_JSON_ODM := $(INSTALLED_FILES_FILE_ODM:.txt=.json) |
| 2884 | $(INSTALLED_FILES_FILE_ODM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2885 | $(INSTALLED_FILES_FILE_ODM) : $(INTERNAL_ODMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2886 | @echo Installed file list: $@ |
| 2887 | @mkdir -p $(dir $@) |
| 2888 | @rm -f $@ |
| 2889 | $(hide) $(FILESLIST) $(TARGET_OUT_ODM) > $(@:.txt=.json) |
Dan Willemsen | c84e4cb | 2019-06-10 16:39:45 -0700 | [diff] [blame] | 2890 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2891 | |
| 2892 | odmimage_intermediates := \ |
| 2893 | $(call intermediates-dir-for,PACKAGING,odm) |
| 2894 | BUILT_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 2895 | define build-odmimage-target |
| 2896 | $(call pretty,"Target odm fs image: $(INSTALLED_ODMIMAGE_TARGET)") |
| 2897 | @mkdir -p $(TARGET_OUT_ODM) |
| 2898 | @mkdir -p $(odmimage_intermediates) && rm -rf $(odmimage_intermediates)/odm_image_info.txt |
| 2899 | $(call generate-userimage-prop-dictionary, $(odmimage_intermediates)/odm_image_info.txt, skip_fsck=true) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 2900 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2901 | $(BUILD_IMAGE) \ |
| 2902 | $(TARGET_OUT_ODM) $(odmimage_intermediates)/odm_image_info.txt \ |
| 2903 | $(INSTALLED_ODMIMAGE_TARGET) $(TARGET_OUT) |
| 2904 | $(call assert-max-image-size,$(INSTALLED_ODMIMAGE_TARGET),$(BOARD_ODMIMAGE_PARTITION_SIZE)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2905 | endef |
| 2906 | |
| 2907 | # We just build this directly to the install location. |
| 2908 | INSTALLED_ODMIMAGE_TARGET := $(BUILT_ODMIMAGE_TARGET) |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 2909 | $(INSTALLED_ODMIMAGE_TARGET): \ |
| 2910 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 2911 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 2912 | $(INSTALLED_FILES_FILE_ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2913 | $(build-odmimage-target) |
| 2914 | |
| 2915 | .PHONY: odmimage-nodeps onod |
Colin Cross | 4f60e36 | 2019-06-05 11:53:43 -0700 | [diff] [blame] | 2916 | odmimage-nodeps onod: | $(INTERNAL_USERIMAGES_DEPS) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 2917 | $(build-odmimage-target) |
| 2918 | |
| 2919 | sync: $(INTERNAL_ODMIMAGE_FILES) |
| 2920 | |
| 2921 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 2922 | INSTALLED_ODMIMAGE_TARGET := $(PRODUCT_OUT)/odm.img |
| 2923 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODMIMAGE),$(INSTALLED_ODMIMAGE_TARGET))) |
| 2924 | endif |
| 2925 | |
| 2926 | # ----------------------------------------------------------------- |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2927 | # vendor_dlkm partition image |
| 2928 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 2929 | INTERNAL_VENDOR_DLKMIMAGE_FILES := \ |
| 2930 | $(filter $(TARGET_OUT_VENDOR_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2931 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 2932 | |
| 2933 | INSTALLED_FILES_FILE_VENDOR_DLKM := $(PRODUCT_OUT)/installed-files-vendor_dlkm.txt |
| 2934 | INSTALLED_FILES_JSON_VENDOR_DLKM := $(INSTALLED_FILES_FILE_VENDOR_DLKM:.txt=.json) |
| 2935 | $(INSTALLED_FILES_FILE_VENDOR_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_VENDOR_DLKM) |
| 2936 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) : $(INTERNAL_VENDOR_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 2937 | @echo Installed file list: $@ |
| 2938 | @mkdir -p $(dir $@) |
| 2939 | @rm -f $@ |
| 2940 | $(hide) $(FILESLIST) $(TARGET_OUT_VENDOR_DLKM) > $(@:.txt=.json) |
| 2941 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2942 | |
| 2943 | vendor_dlkmimage_intermediates := \ |
| 2944 | $(call intermediates-dir-for,PACKAGING,vendor_dlkm) |
| 2945 | BUILT_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 2946 | define build-vendor_dlkmimage-target |
| 2947 | $(call pretty,"Target vendor_dlkm fs image: $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)") |
| 2948 | @mkdir -p $(TARGET_OUT_VENDOR_DLKM) |
| 2949 | @mkdir -p $(vendor_dlkmimage_intermediates) && rm -rf $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt |
| 2950 | $(call generate-userimage-prop-dictionary, $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt, skip_fsck=true) |
| 2951 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 2952 | $(BUILD_IMAGE) \ |
| 2953 | $(TARGET_OUT_VENDOR_DLKM) $(vendor_dlkmimage_intermediates)/vendor_dlkm_image_info.txt \ |
| 2954 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 2955 | $(call assert-max-image-size,$(INSTALLED_VENDOR_DLKMIMAGE_TARGET),$(BOARD_VENDOR_DLKMIMAGE_PARTITION_SIZE)) |
| 2956 | endef |
| 2957 | |
| 2958 | # We just build this directly to the install location. |
| 2959 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(BUILT_VENDOR_DLKMIMAGE_TARGET) |
| 2960 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET): \ |
| 2961 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 2962 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 2963 | $(INSTALLED_FILES_FILE_VENDOR_DLKM) |
| 2964 | $(build-vendor_dlkmimage-target) |
| 2965 | |
| 2966 | .PHONY: vendor_dlkmimage-nodeps vdnod |
| 2967 | vendor_dlkmimage-nodeps vdnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 2968 | $(build-vendor_dlkmimage-target) |
| 2969 | |
| 2970 | sync: $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
| 2971 | |
| 2972 | else ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
| 2973 | INSTALLED_VENDOR_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/vendor_dlkm.img |
| 2974 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_VENDOR_DLKMIMAGE),$(INSTALLED_VENDOR_DLKMIMAGE_TARGET))) |
| 2975 | endif |
| 2976 | |
| 2977 | # ----------------------------------------------------------------- |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2978 | # odm_dlkm partition image |
| 2979 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 2980 | INTERNAL_ODM_DLKMIMAGE_FILES := \ |
| 2981 | $(filter $(TARGET_OUT_ODM_DLKM)/%,\ |
Dan Willemsen | a3f6632 | 2020-05-28 15:46:33 -0700 | [diff] [blame] | 2982 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 2983 | |
| 2984 | INSTALLED_FILES_FILE_ODM_DLKM := $(PRODUCT_OUT)/installed-files-odm_dlkm.txt |
| 2985 | INSTALLED_FILES_JSON_ODM_DLKM := $(INSTALLED_FILES_FILE_ODM_DLKM:.txt=.json) |
| 2986 | $(INSTALLED_FILES_FILE_ODM_DLKM): .KATI_IMPLICIT_OUTPUTS := $(INSTALLED_FILES_JSON_ODM_DLKM) |
| 2987 | $(INSTALLED_FILES_FILE_ODM_DLKM) : $(INTERNAL_ODM_DLKMIMAGE_FILES) $(FILESLIST) $(FILESLIST_UTIL) |
| 2988 | @echo Installed file list: $@ |
| 2989 | @mkdir -p $(dir $@) |
| 2990 | @rm -f $@ |
| 2991 | $(hide) $(FILESLIST) $(TARGET_OUT_ODM_DLKM) > $(@:.txt=.json) |
| 2992 | $(hide) $(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ |
| 2993 | |
| 2994 | odm_dlkmimage_intermediates := \ |
| 2995 | $(call intermediates-dir-for,PACKAGING,odm_dlkm) |
| 2996 | BUILT_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 2997 | define build-odm_dlkmimage-target |
| 2998 | $(call pretty,"Target odm_dlkm fs image: $(INSTALLED_ODM_DLKMIMAGE_TARGET)") |
| 2999 | @mkdir -p $(TARGET_OUT_ODM_DLKM) |
| 3000 | @mkdir -p $(odm_dlkmimage_intermediates) && rm -rf $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt |
| 3001 | $(call generate-userimage-prop-dictionary, $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt, skip_fsck=true) |
| 3002 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
| 3003 | $(BUILD_IMAGE) \ |
| 3004 | $(TARGET_OUT_ODM_DLKM) $(odm_dlkmimage_intermediates)/odm_dlkm_image_info.txt \ |
| 3005 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(TARGET_OUT) |
| 3006 | $(call assert-max-image-size,$(INSTALLED_ODM_DLKMIMAGE_TARGET),$(BOARD_ODM_DLKMIMAGE_PARTITION_SIZE)) |
| 3007 | endef |
| 3008 | |
| 3009 | # We just build this directly to the install location. |
| 3010 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(BUILT_ODM_DLKMIMAGE_TARGET) |
| 3011 | $(INSTALLED_ODM_DLKMIMAGE_TARGET): \ |
| 3012 | $(INTERNAL_USERIMAGES_DEPS) \ |
| 3013 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
| 3014 | $(INSTALLED_FILES_FILE_ODM_DLKM) |
| 3015 | $(build-odm_dlkmimage-target) |
| 3016 | |
| 3017 | .PHONY: odm_dlkmimage-nodeps odnod |
| 3018 | odm_dlkmimage-nodeps odnod: | $(INTERNAL_USERIMAGES_DEPS) |
| 3019 | $(build-odm_dlkmimage-target) |
| 3020 | |
| 3021 | sync: $(INTERNAL_ODM_DLKMIMAGE_FILES) |
| 3022 | |
| 3023 | else ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 3024 | INSTALLED_ODM_DLKMIMAGE_TARGET := $(PRODUCT_OUT)/odm_dlkm.img |
| 3025 | $(eval $(call copy-one-file,$(BOARD_PREBUILT_ODM_DLKMIMAGE),$(INSTALLED_ODM_DLKMIMAGE_TARGET))) |
| 3026 | endif |
| 3027 | |
| 3028 | |
| 3029 | # ----------------------------------------------------------------- |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3030 | # dtbo image |
| 3031 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 3032 | INSTALLED_DTBOIMAGE_TARGET := $(PRODUCT_OUT)/dtbo.img |
| 3033 | |
| 3034 | ifeq ($(BOARD_AVB_ENABLE),true) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3035 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) $(AVBTOOL) $(BOARD_AVB_DTBO_KEY_PATH) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3036 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 3037 | $(AVBTOOL) add_hash_footer \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3038 | --image $@ \ |
| 3039 | --partition_size $(BOARD_DTBOIMG_PARTITION_SIZE) \ |
| 3040 | --partition_name dtbo $(INTERNAL_AVB_DTBO_SIGNING_ARGS) \ |
| 3041 | $(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS) |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3042 | else |
| 3043 | $(INSTALLED_DTBOIMAGE_TARGET): $(BOARD_PREBUILT_DTBOIMAGE) |
| 3044 | cp $(BOARD_PREBUILT_DTBOIMAGE) $@ |
| 3045 | endif |
| 3046 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3047 | endif # BOARD_PREBUILT_DTBOIMAGE |
| 3048 | |
| 3049 | # Returns a list of image targets corresponding to the given list of partitions. For example, it |
| 3050 | # returns "$(INSTALLED_PRODUCTIMAGE_TARGET)" for "product", or "$(INSTALLED_SYSTEMIMAGE_TARGET) |
| 3051 | # $(INSTALLED_VENDORIMAGE_TARGET)" for "system vendor". |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3052 | # (1): list of partitions like "system", "vendor" or "system product system_ext". |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3053 | define images-for-partitions |
| 3054 | $(strip $(foreach item,$(1),$(INSTALLED_$(call to-upper,$(item))IMAGE_TARGET))) |
| 3055 | endef |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3056 | |
| 3057 | # ----------------------------------------------------------------- |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3058 | # custom images |
| 3059 | INSTALLED_CUSTOMIMAGES_TARGET := |
| 3060 | |
| 3061 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 3062 | INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS := |
| 3063 | |
| 3064 | # Sign custom image. |
| 3065 | # $(1): the prebuilt custom image. |
| 3066 | # $(2): the mount point of the prebuilt custom image. |
| 3067 | # $(3): the signed custom image target. |
| 3068 | define sign_custom_image |
| 3069 | $(3): $(1) $(INTERNAL_USERIMAGES_DEPS) |
| 3070 | @echo Target custom image: $(3) |
| 3071 | mkdir -p $(dir $(3)) |
| 3072 | cp $(1) $(3) |
| 3073 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3074 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$$$PATH \ |
| 3075 | $(AVBTOOL) add_hashtree_footer \ |
| 3076 | --image $(3) \ |
| 3077 | --key $(BOARD_AVB_$(call to-upper,$(2))_KEY_PATH) \ |
| 3078 | --algorithm $(BOARD_AVB_$(call to-upper,$(2))_ALGORITHM) \ |
| 3079 | --partition_size $(BOARD_AVB_$(call to-upper,$(2))_PARTITION_SIZE) \ |
| 3080 | --partition_name $(2) \ |
| 3081 | $(INTERNAL_AVB_CUSTOMIMAGES_SIGNING_ARGS) \ |
| 3082 | $(BOARD_AVB_$(call to-upper,$(2))_ADD_HASHTREE_FOOTER_ARGS) |
| 3083 | endif |
| 3084 | INSTALLED_CUSTOMIMAGES_TARGET += $(3) |
| 3085 | endef |
| 3086 | |
| 3087 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 3088 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST), \ |
| 3089 | $(eval $(call sign_custom_image,$(image),$(partition),$(PRODUCT_OUT)/$(notdir $(image)))))) |
| 3090 | endif |
| 3091 | |
| 3092 | # ----------------------------------------------------------------- |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3093 | # vbmeta image |
| 3094 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 3095 | |
| 3096 | BUILT_VBMETAIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta.img |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3097 | AVB_CHAIN_KEY_DIR := $(TARGET_OUT_INTERMEDIATES)/avb_chain_keys |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3098 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3099 | ifdef BOARD_AVB_KEY_PATH |
| 3100 | $(if $(BOARD_AVB_ALGORITHM),,$(error BOARD_AVB_ALGORITHM is not defined)) |
| 3101 | else |
| 3102 | # If key path isn't specified, use the 4096-bit test key. |
| 3103 | BOARD_AVB_ALGORITHM := SHA256_RSA4096 |
| 3104 | BOARD_AVB_KEY_PATH := external/avb/test/data/testkey_rsa4096.pem |
| 3105 | endif |
| 3106 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 3107 | # AVB signing for system_other.img. |
| 3108 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 3109 | ifdef BOARD_AVB_SYSTEM_OTHER_KEY_PATH |
| 3110 | $(if $(BOARD_AVB_SYSTEM_OTHER_ALGORITHM),,$(error BOARD_AVB_SYSTEM_OTHER_ALGORITHM is not defined)) |
| 3111 | else |
| 3112 | # If key path isn't specified, use the same key as BOARD_AVB_KEY_PATH. |
| 3113 | BOARD_AVB_SYSTEM_OTHER_KEY_PATH := $(BOARD_AVB_KEY_PATH) |
| 3114 | BOARD_AVB_SYSTEM_OTHER_ALGORITHM := $(BOARD_AVB_ALGORITHM) |
| 3115 | endif |
| 3116 | |
Bowgo Tsai | e4544b1 | 2019-02-27 10:15:51 +0800 | [diff] [blame] | 3117 | $(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET): $(AVBTOOL) $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) |
| 3118 | @echo Extracting system_other avb key: $@ |
| 3119 | @rm -f $@ |
| 3120 | @mkdir -p $(dir $@) |
| 3121 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_OTHER_KEY_PATH) --output $@ |
Bowgo Tsai | 45db7ce | 2019-01-30 14:53:57 +0800 | [diff] [blame] | 3122 | |
Bowgo Tsai | 1e04bf7 | 2019-01-23 22:19:19 +0800 | [diff] [blame] | 3123 | ifndef BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX |
| 3124 | BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX := $(PLATFORM_SECURITY_PATCH_TIMESTAMP) |
| 3125 | endif |
| 3126 | |
| 3127 | BOARD_AVB_SYSTEM_OTHER_ADD_HASHTREE_FOOTER_ARGS += --rollback_index $(BOARD_AVB_SYSTEM_OTHER_ROLLBACK_INDEX) |
| 3128 | endif # end of AVB for BUILDING_SYSTEM_OTHER_IMAGE |
| 3129 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3130 | INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES := \ |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3131 | $(BOARD_AVB_VBMETA_SYSTEM) \ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3132 | $(BOARD_AVB_VBMETA_VENDOR) |
| 3133 | |
| 3134 | # Not allowing the same partition to appear in multiple groups. |
| 3135 | 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] | 3136 | $(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] | 3137 | endif |
| 3138 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3139 | # When building a standalone recovery image for non-A/B devices, recovery image must be self-signed |
| 3140 | # to be verified independently, and cannot be chained into vbmeta.img. See the link below for |
| 3141 | # details. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 3142 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3143 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 3144 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),,\ |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 3145 | $(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] | 3146 | See https://android.googlesource.com/platform/external/avb/+/master/README.md#booting-into-recovery)) |
| 3147 | endif |
| 3148 | endif |
| 3149 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3150 | # Appends os version and security patch level as a AVB property descriptor |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3151 | |
| 3152 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3153 | --prop com.android.build.system.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3154 | --prop com.android.build.system.os_version:$(PLATFORM_VERSION_LAST_STABLE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3155 | --prop com.android.build.system.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 3156 | |
| 3157 | BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3158 | --prop com.android.build.product.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3159 | --prop com.android.build.product.os_version:$(PLATFORM_VERSION_LAST_STABLE) \ |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3160 | --prop com.android.build.product.security_patch:$(PLATFORM_SECURITY_PATCH) |
| 3161 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3162 | BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3163 | --prop com.android.build.system_ext.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3164 | --prop com.android.build.system_ext.os_version:$(PLATFORM_VERSION_LAST_STABLE) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3165 | --prop com.android.build.system_ext.security_patch:$(PLATFORM_SECURITY_PATCH) |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3166 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3167 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3168 | --prop com.android.build.boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3169 | --prop com.android.build.boot.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3170 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3171 | BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 3172 | --prop com.android.build.vendor_boot.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 3173 | |
| 3174 | BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS += \ |
| 3175 | --prop com.android.build.recovery.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 3176 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3177 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3178 | --prop com.android.build.vendor.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3179 | --prop com.android.build.vendor.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3180 | |
| 3181 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3182 | --prop com.android.build.odm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
Dianne Hackborn | 25648e6 | 2019-10-22 15:58:17 -0700 | [diff] [blame] | 3183 | --prop com.android.build.odm.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3184 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3185 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3186 | --prop com.android.build.vendor_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 3187 | --prop com.android.build.vendor_dlkm.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
| 3188 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3189 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3190 | --prop com.android.build.odm_dlkm.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) \ |
| 3191 | --prop com.android.build.odm_dlkm.os_version:$(PLATFORM_VERSION_LAST_STABLE) |
| 3192 | |
Tao Bao | 19b02fe | 2019-10-09 00:04:28 -0700 | [diff] [blame] | 3193 | BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS += \ |
| 3194 | --prop com.android.build.dtbo.fingerprint:$(BUILD_FINGERPRINT_FROM_FILE) |
| 3195 | |
Bowgo Tsai | 9b54801 | 2019-05-14 16:57:03 +0800 | [diff] [blame] | 3196 | # The following vendor- and odm-specific images needs explicit SPL set per board. |
Bowgo Tsai | cca76dd | 2019-01-30 21:52:32 +0800 | [diff] [blame] | 3197 | ifdef BOOT_SECURITY_PATCH |
| 3198 | BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS += \ |
| 3199 | --prop com.android.build.boot.security_patch:$(BOOT_SECURITY_PATCH) |
| 3200 | endif |
| 3201 | |
| 3202 | ifdef VENDOR_SECURITY_PATCH |
| 3203 | BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3204 | --prop com.android.build.vendor.security_patch:$(VENDOR_SECURITY_PATCH) |
| 3205 | endif |
| 3206 | |
| 3207 | ifdef ODM_SECURITY_PATCH |
| 3208 | BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3209 | --prop com.android.build.odm.security_patch:$(ODM_SECURITY_PATCH) |
| 3210 | endif |
| 3211 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3212 | ifdef VENDOR_DLKM_SECURITY_PATCH |
| 3213 | BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3214 | --prop com.android.build.vendor_dlkm.security_patch:$(VENDOR_DLKM_SECURITY_PATCH) |
| 3215 | endif |
| 3216 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3217 | ifdef ODM_DLKM_SECURITY_PATCH |
| 3218 | BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS += \ |
| 3219 | --prop com.android.build.odm_dlkm.security_patch:$(ODM_DLKM_SECURITY_PATCH) |
| 3220 | endif |
| 3221 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3222 | BOOT_FOOTER_ARGS := BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3223 | VENDOR_BOOT_FOOTER_ARGS := BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3224 | DTBO_FOOTER_ARGS := BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS |
| 3225 | SYSTEM_FOOTER_ARGS := BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS |
| 3226 | VENDOR_FOOTER_ARGS := BOARD_AVB_VENDOR_ADD_HASHTREE_FOOTER_ARGS |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3227 | RECOVERY_FOOTER_ARGS := BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3228 | PRODUCT_FOOTER_ARGS := BOARD_AVB_PRODUCT_ADD_HASHTREE_FOOTER_ARGS |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3229 | SYSTEM_EXT_FOOTER_ARGS := BOARD_AVB_SYSTEM_EXT_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3230 | ODM_FOOTER_ARGS := BOARD_AVB_ODM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3231 | VENDOR_DLKM_FOOTER_ARGS := BOARD_AVB_VENDOR_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3232 | ODM_DLKM_FOOTER_ARGS := BOARD_AVB_ODM_DLKM_ADD_HASHTREE_FOOTER_ARGS |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3233 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3234 | # 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] | 3235 | # $(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] | 3236 | define _check-and-set-avb-chain-args |
| 3237 | $(eval part := $(1)) |
| 3238 | $(eval PART=$(call to-upper,$(part))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3239 | |
| 3240 | $(eval _key_path := BOARD_AVB_$(PART)_KEY_PATH) |
| 3241 | $(eval _signing_algorithm := BOARD_AVB_$(PART)_ALGORITHM) |
| 3242 | $(eval _rollback_index := BOARD_AVB_$(PART)_ROLLBACK_INDEX) |
| 3243 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 3244 | $(if $($(_key_path)),,$(error $(_key_path) is not defined)) |
| 3245 | $(if $($(_signing_algorithm)),,$(error $(_signing_algorithm) is not defined)) |
| 3246 | $(if $($(_rollback_index)),,$(error $(_rollback_index) is not defined)) |
| 3247 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 3248 | |
| 3249 | # Set INTERNAL_AVB_(PART)_SIGNING_ARGS |
| 3250 | $(eval _signing_args := INTERNAL_AVB_$(PART)_SIGNING_ARGS) |
| 3251 | $(eval $(_signing_args) := \ |
| 3252 | --algorithm $($(_signing_algorithm)) --key $($(_key_path))) |
| 3253 | |
cfig | 1aeef72 | 2019-09-20 22:45:06 +0800 | [diff] [blame] | 3254 | # The recovery partition in non-A/B devices should be verified separately. Skip adding the chain |
| 3255 | # partition descriptor for recovery partition into vbmeta.img. |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 3256 | $(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] | 3257 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3258 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3259 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3260 | # 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] | 3261 | # 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] | 3262 | $(if $(filter $(part),$(part:vbmeta_%=%)),\ |
| 3263 | $(eval _footer_args := $(PART)_FOOTER_ARGS) \ |
| 3264 | $(eval $($(_footer_args)) += --rollback_index $($(_rollback_index)))) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3265 | endef |
| 3266 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3267 | # Checks and sets the required build variables for an AVB partition. The partition will be |
| 3268 | # 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] | 3269 | # image descriptor will be included into vbmeta.img, unless it has been already added to any chained |
| 3270 | # VBMeta image. |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 3271 | # Multiple boot images can be generated based on BOARD_KERNEL_BINARIES |
| 3272 | # but vbmeta would capture the image descriptor of only the first boot |
| 3273 | # image specified in BUILT_BOOTIMAGE_TARGET. |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3274 | # $(1): Partition name, e.g. boot or system. |
| 3275 | define check-and-set-avb-args |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3276 | $(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] | 3277 | $(if $(BOARD_AVB_$(call to-upper,$(1))_KEY_PATH),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3278 | $(if $(_in_chained_vbmeta),\ |
| 3279 | $(error Chaining partition "$(1)" in chained VBMeta image is not supported)) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3280 | $(call _check-and-set-avb-chain-args,$(1)),\ |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3281 | $(if $(_in_chained_vbmeta),,\ |
Roopesh Nataraja | 3e15f6e | 2020-06-08 19:54:13 -0700 | [diff] [blame] | 3282 | $(if $(filter boot,$(1)),\ |
| 3283 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3284 | --include_descriptors_from_image $(firstword $(call images-for-partitions,$(1)))),\ |
| 3285 | $(eval INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3286 | --include_descriptors_from_image $(call images-for-partitions,$(1)))))) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3287 | endef |
| 3288 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3289 | # Checks and sets build variables for a custom chained partition to include it into vbmeta.img. |
| 3290 | # $(1): the custom partition to enable AVB chain. |
| 3291 | define check-and-set-custom-avb-chain-args |
| 3292 | $(eval part := $(1)) |
| 3293 | $(eval PART=$(call to-upper,$(part))) |
| 3294 | $(eval _rollback_index_location := BOARD_AVB_$(PART)_ROLLBACK_INDEX_LOCATION) |
| 3295 | $(if $($(_rollback_index_location)),,$(error $(_rollback_index_location) is not defined)) |
| 3296 | |
| 3297 | INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS += \ |
| 3298 | --chain_partition $(part):$($(_rollback_index_location)):$(AVB_CHAIN_KEY_DIR)/$(part).avbpubkey |
| 3299 | endef |
| 3300 | |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3301 | ifdef INSTALLED_BOOTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3302 | $(eval $(call check-and-set-avb-args,boot)) |
Tao Bao | b1a2e35 | 2018-08-14 16:17:12 -0700 | [diff] [blame] | 3303 | endif |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3304 | |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3305 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 3306 | $(eval $(call check-and-set-avb-args,vendor_boot)) |
| 3307 | endif |
| 3308 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3309 | $(eval $(call check-and-set-avb-args,system)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3310 | |
| 3311 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3312 | $(eval $(call check-and-set-avb-args,vendor)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3313 | endif |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3314 | |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3315 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3316 | $(eval $(call check-and-set-avb-args,product)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3317 | endif |
| 3318 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3319 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 3320 | $(eval $(call check-and-set-avb-args,system_ext)) |
Tao Bao | cee6d04 | 2018-08-22 23:39:03 -0700 | [diff] [blame] | 3321 | endif |
| 3322 | |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3323 | ifdef INSTALLED_ODMIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3324 | $(eval $(call check-and-set-avb-args,odm)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3325 | endif |
| 3326 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3327 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 3328 | $(eval $(call check-and-set-avb-args,vendor_dlkm)) |
| 3329 | endif |
| 3330 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3331 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 3332 | $(eval $(call check-and-set-avb-args,odm_dlkm)) |
| 3333 | endif |
| 3334 | |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3335 | ifdef INSTALLED_DTBOIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3336 | $(eval $(call check-and-set-avb-args,dtbo)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3337 | endif |
Yueyao Zhu | 211c901 | 2017-04-27 00:34:50 -0700 | [diff] [blame] | 3338 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3339 | ifdef INSTALLED_RECOVERYIMAGE_TARGET |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3340 | $(eval $(call check-and-set-avb-args,recovery)) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3341 | endif |
Bowgo Tsai | 53cf999 | 2017-06-13 11:27:06 +0800 | [diff] [blame] | 3342 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3343 | # Not using INSTALLED_VBMETA_SYSTEMIMAGE_TARGET as it won't be set yet. |
| 3344 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 3345 | $(eval $(call check-and-set-avb-args,vbmeta_system)) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3346 | endif |
| 3347 | |
| 3348 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 3349 | $(eval $(call check-and-set-avb-args,vbmeta_vendor)) |
| 3350 | endif |
| 3351 | |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3352 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 3353 | $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 3354 | $(eval $(call check-and-set-custom-avb-chain-args,$(partition)))) |
| 3355 | endif |
| 3356 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3357 | # Add kernel cmdline descriptor for kernel to mount system.img as root with |
| 3358 | # dm-verity. This works when system.img is either chained or not-chained: |
| 3359 | # - chained: The --setup_as_rootfs_from_kernel option will add dm-verity kernel |
| 3360 | # cmdline descriptor to system.img |
| 3361 | # - not-chained: The --include_descriptors_from_image option for make_vbmeta_image |
| 3362 | # will include the kernel cmdline descriptor from system.img into vbmeta.img |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3363 | ifeq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
David Anderson | 8916a2a | 2018-09-18 15:46:59 -0700 | [diff] [blame] | 3364 | ifeq ($(filter system, $(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3365 | BOARD_AVB_SYSTEM_ADD_HASHTREE_FOOTER_ARGS += --setup_as_rootfs_from_kernel |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3366 | endif |
David Anderson | 8916a2a | 2018-09-18 15:46:59 -0700 | [diff] [blame] | 3367 | endif |
Bowgo Tsai | 9b37760 | 2017-04-14 18:50:11 +0800 | [diff] [blame] | 3368 | |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3369 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --padding_size 4096 |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3370 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += --padding_size 4096 |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3371 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += --padding_size 4096 |
| 3372 | |
| 3373 | ifeq (eng,$(filter eng, $(TARGET_BUILD_VARIANT))) |
Tao Bao | 240dcb8 | 2018-10-22 13:02:53 -0700 | [diff] [blame] | 3374 | # We only need the flag in top-level vbmeta.img. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3375 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --set_hashtree_disabled_flag |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3376 | endif |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3377 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3378 | ifdef BOARD_AVB_ROLLBACK_INDEX |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3379 | BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS += --rollback_index $(BOARD_AVB_ROLLBACK_INDEX) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3380 | endif |
| 3381 | |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3382 | ifdef BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX |
| 3383 | BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS += \ |
| 3384 | --rollback_index $(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3385 | endif |
| 3386 | |
| 3387 | ifdef BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX |
| 3388 | BOARD_AVB_MAKE_VBMETA_VENDOR_IMAGE_ARGS += \ |
| 3389 | --rollback_index $(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX) |
John Reck | 0588b43 | 2018-05-03 13:20:01 -0700 | [diff] [blame] | 3390 | endif |
| 3391 | |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3392 | # $(1): the directory to extract public keys to |
| 3393 | define extract-avb-chain-public-keys |
| 3394 | $(if $(BOARD_AVB_BOOT_KEY_PATH),\ |
| 3395 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_BOOT_KEY_PATH) \ |
| 3396 | --output $(1)/boot.avbpubkey) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3397 | $(if $(BOARD_AVB_VENDOR_BOOT_KEY_PATH),\ |
| 3398 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_BOOT_KEY_PATH) \ |
| 3399 | --output $(1)/vendor_boot.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3400 | $(if $(BOARD_AVB_SYSTEM_KEY_PATH),\ |
| 3401 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_KEY_PATH) \ |
| 3402 | --output $(1)/system.avbpubkey) |
| 3403 | $(if $(BOARD_AVB_VENDOR_KEY_PATH),\ |
| 3404 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_KEY_PATH) \ |
| 3405 | --output $(1)/vendor.avbpubkey) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 3406 | $(if $(BOARD_AVB_PRODUCT_KEY_PATH),\ |
| 3407 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_PRODUCT_KEY_PATH) \ |
| 3408 | --output $(1)/product.avbpubkey) |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3409 | $(if $(BOARD_AVB_SYSTEM_EXT_KEY_PATH),\ |
| 3410 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_SYSTEM_EXT_KEY_PATH) \ |
| 3411 | --output $(1)/system_ext.avbpubkey) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 3412 | $(if $(BOARD_AVB_ODM_KEY_PATH),\ |
| 3413 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_KEY_PATH) \ |
| 3414 | --output $(1)/odm.avbpubkey) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3415 | $(if $(BOARD_AVB_VENDOR_DLKM_KEY_PATH),\ |
| 3416 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VENDOR_DLKM_KEY_PATH) \ |
| 3417 | --output $(1)/vendor_dlkm.avbpubkey) |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3418 | $(if $(BOARD_AVB_ODM_DLKM_KEY_PATH),\ |
| 3419 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_ODM_DLKM_KEY_PATH) \ |
| 3420 | --output $(1)/odm_dlkm.avbpubkey) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3421 | $(if $(BOARD_AVB_DTBO_KEY_PATH),\ |
| 3422 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_DTBO_KEY_PATH) \ |
| 3423 | --output $(1)/dtbo.avbpubkey) |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3424 | $(if $(BOARD_AVB_RECOVERY_KEY_PATH),\ |
| 3425 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_RECOVERY_KEY_PATH) \ |
| 3426 | --output $(1)/recovery.avbpubkey) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3427 | $(if $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH),\ |
| 3428 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 3429 | --output $(1)/vbmeta_system.avbpubkey) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3430 | $(if $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH),\ |
| 3431 | $(hide) $(AVBTOOL) extract_public_key --key $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 3432 | --output $(1)/vbmeta_vendor.avbpubkey) |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3433 | $(if $(BOARD_CUSTOMIMAGES_PARTITION_LIST),\ |
| 3434 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 3435 | $(AVBTOOL) extract_public_key --key $(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH) \ |
| 3436 | --output $(1)/$(partition).avbpubkey;)) |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3437 | endef |
| 3438 | |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3439 | # Builds a chained VBMeta image. This VBMeta image will contain the descriptors for the partitions |
| 3440 | # 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] | 3441 | # 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] | 3442 | # := system system_ext`, `vbmeta_system.img` will be created that includes the descriptors for |
| 3443 | # `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] | 3444 | # `vbmeta.img` as a chained partition. |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3445 | # $(1): VBMeta image name, such as "vbmeta_system", "vbmeta_vendor" etc. |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3446 | # $(2): Output filename. |
| 3447 | define build-chained-vbmeta-image |
| 3448 | $(call pretty,"Target chained vbmeta image: $@") |
| 3449 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 3450 | $(INTERNAL_AVB_$(call to-upper,$(1))_SIGNING_ARGS) \ |
| 3451 | $(BOARD_AVB_MAKE_$(call to-upper,$(1))_IMAGE_ARGS) \ |
| 3452 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(1))), \ |
| 3453 | --include_descriptors_from_image $(call images-for-partitions,$(image))) \ |
| 3454 | --output $@ |
| 3455 | endef |
| 3456 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 3457 | ifdef BUILDING_SYSTEM_IMAGE |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3458 | ifdef BOARD_AVB_VBMETA_SYSTEM |
| 3459 | INSTALLED_VBMETA_SYSTEMIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_system.img |
| 3460 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3461 | $(AVBTOOL) \ |
| 3462 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_SYSTEM)) \ |
| 3463 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) |
David Anderson | 7709ab2 | 2018-10-15 14:41:34 -0700 | [diff] [blame] | 3464 | $(call build-chained-vbmeta-image,vbmeta_system) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3465 | endif |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 3466 | endif # BUILDING_SYSTEM_IMAGE |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3467 | |
| 3468 | ifdef BOARD_AVB_VBMETA_VENDOR |
| 3469 | INSTALLED_VBMETA_VENDORIMAGE_TARGET := $(PRODUCT_OUT)/vbmeta_vendor.img |
| 3470 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3471 | $(AVBTOOL) \ |
| 3472 | $(call images-for-partitions,$(BOARD_AVB_VBMETA_VENDOR)) \ |
| 3473 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) |
Tao Bao | 744c4c7 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 3474 | $(call build-chained-vbmeta-image,vbmeta_vendor) |
| 3475 | endif |
| 3476 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3477 | define build-vbmetaimage-target |
| 3478 | $(call pretty,"Target vbmeta image: $(INSTALLED_VBMETAIMAGE_TARGET)") |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3479 | $(hide) mkdir -p $(AVB_CHAIN_KEY_DIR) |
| 3480 | $(call extract-avb-chain-public-keys, $(AVB_CHAIN_KEY_DIR)) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3481 | $(hide) $(AVBTOOL) make_vbmeta_image \ |
| 3482 | $(INTERNAL_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3483 | $(PRIVATE_AVB_VBMETA_SIGNING_ARGS) \ |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3484 | $(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS) \ |
| 3485 | --output $@ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 3486 | $(hide) rm -rf $(AVB_CHAIN_KEY_DIR) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3487 | endef |
| 3488 | |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 3489 | ifdef BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3490 | INSTALLED_VBMETAIMAGE_TARGET := $(BUILT_VBMETAIMAGE_TARGET) |
Tao Bao | 0da4347 | 2018-08-22 22:53:41 -0700 | [diff] [blame] | 3491 | $(INSTALLED_VBMETAIMAGE_TARGET): PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 3492 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
| 3493 | |
David Zeuthen | 8fecb28 | 2017-12-01 16:24:01 -0500 | [diff] [blame] | 3494 | $(INSTALLED_VBMETAIMAGE_TARGET): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3495 | $(AVBTOOL) \ |
| 3496 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3497 | $(INSTALLED_VENDOR_BOOTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3498 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 3499 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 3500 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 3501 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3502 | $(INSTALLED_ODMIMAGE_TARGET) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3503 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 3504 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3505 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 3506 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 3507 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 3508 | $(INSTALLED_VBMETA_SYSTEMIMAGE_TARGET) \ |
| 3509 | $(INSTALLED_VBMETA_VENDORIMAGE_TARGET) \ |
| 3510 | $(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH) \ |
| 3511 | $(BOARD_AVB_VBMETA_VENDOR_KEY_PATH) \ |
| 3512 | $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3513 | $(build-vbmetaimage-target) |
| 3514 | |
| 3515 | .PHONY: vbmetaimage-nodeps |
Bowgo Tsai | 6a4eaa5 | 2019-12-09 15:48:09 +0800 | [diff] [blame] | 3516 | vbmetaimage-nodeps: PRIVATE_AVB_VBMETA_SIGNING_ARGS := \ |
| 3517 | --algorithm $(BOARD_AVB_ALGORITHM) --key $(BOARD_AVB_KEY_PATH) |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3518 | vbmetaimage-nodeps: |
| 3519 | $(build-vbmetaimage-target) |
Paul Trautrim | 4e14323 | 2019-08-13 16:30:57 +0900 | [diff] [blame] | 3520 | endif # BUILDING_VBMETA_IMAGE |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3521 | |
Bowgo Tsai | 8ee4a3d | 2017-03-31 15:21:26 +0800 | [diff] [blame] | 3522 | endif # BOARD_AVB_ENABLE |
| 3523 | |
| 3524 | # ----------------------------------------------------------------- |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3525 | # Check VINTF of build |
| 3526 | |
Yifan Hong | c08cbf0 | 2020-09-15 19:07:39 +0000 | [diff] [blame] | 3527 | # Note: vendor_dlkm and odm_dlkm does not have VINTF files. |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 3528 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 3529 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3530 | intermediates := $(call intermediates-dir-for,PACKAGING,check_vintf_all) |
| 3531 | check_vintf_all_deps := |
| 3532 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3533 | # The build system only writes VINTF metadata to */etc/vintf paths. Legacy paths aren't needed here |
| 3534 | # because they are only used for prebuilt images. |
| 3535 | check_vintf_common_srcs_patterns := \ |
| 3536 | $(TARGET_OUT)/etc/vintf/% \ |
| 3537 | $(TARGET_OUT_VENDOR)/etc/vintf/% \ |
| 3538 | $(TARGET_OUT_ODM)/etc/vintf/% \ |
| 3539 | $(TARGET_OUT_PRODUCT)/etc/vintf/% \ |
| 3540 | $(TARGET_OUT_SYSTEM_EXT)/etc/vintf/% \ |
| 3541 | |
| 3542 | check_vintf_common_srcs := $(sort $(filter $(check_vintf_common_srcs_patterns), \ |
| 3543 | $(INTERNAL_SYSTEMIMAGE_FILES) \ |
| 3544 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 3545 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 3546 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 3547 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 3548 | )) |
| 3549 | check_vintf_common_srcs_patterns := |
| 3550 | |
| 3551 | check_vintf_has_system := |
| 3552 | check_vintf_has_vendor := |
| 3553 | |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3554 | ifneq (,$(filter EMPTY_ODM_SKU_PLACEHOLDER,$(ODM_MANIFEST_SKUS))) |
| 3555 | $(error EMPTY_ODM_SKU_PLACEHOLDER is an internal variable and cannot be used for ODM_MANIFEST_SKUS) |
| 3556 | endif |
| 3557 | ifneq (,$(filter EMPTY_VENDOR_SKU_PLACEHOLDER,$(DEVICE_MANIFEST_SKUS))) |
| 3558 | $(error EMPTY_VENDOR_SKU_PLACEHOLDER is an internal variable and cannot be used for DEIVCE_MANIFEST_SKUS) |
| 3559 | endif |
| 3560 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3561 | # -- 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] | 3562 | check_vintf_system_deps := $(filter $(TARGET_OUT)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 3563 | ifneq ($(check_vintf_system_deps),) |
| 3564 | check_vintf_has_system := true |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3565 | check_vintf_system_log := $(intermediates)/check_vintf_system_log |
| 3566 | check_vintf_all_deps += $(check_vintf_system_log) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3567 | $(check_vintf_system_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_system_deps) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3568 | @( $< --check-one --dirmap /system:$(TARGET_OUT) > $@ 2>&1 ) || ( cat $@ && exit 1 ) |
| 3569 | check_vintf_system_log := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3570 | endif # check_vintf_system_deps |
| 3571 | check_vintf_system_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3572 | |
| 3573 | # -- Check vendor manifest / matrix including fragments (excluding other device manifests / matrices) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3574 | check_vintf_vendor_deps := $(filter $(TARGET_OUT_VENDOR)/etc/vintf/%, $(check_vintf_common_srcs)) |
| 3575 | ifneq ($(check_vintf_vendor_deps),) |
| 3576 | check_vintf_has_vendor := true |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3577 | check_vintf_vendor_log := $(intermediates)/check_vintf_vendor_log |
| 3578 | check_vintf_all_deps += $(check_vintf_vendor_log) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3579 | # Check vendor SKU=(empty) case when: |
| 3580 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 3581 | # - 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] | 3582 | $(check_vintf_vendor_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3583 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 3584 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3585 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3586 | $(check_vintf_vendor_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_vendor_deps) |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3587 | $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 3588 | ( $< --check-one --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 3589 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 3590 | > $@ 2>&1 ) || ( cat $@ && exit 1 ); ) |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3591 | check_vintf_vendor_log := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3592 | endif # check_vintf_vendor_deps |
| 3593 | check_vintf_vendor_deps := |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3594 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3595 | # -- Check VINTF compatibility of build. |
| 3596 | # Skip partial builds; only check full builds. Only check if: |
| 3597 | # - PRODUCT_ENFORCE_VINTF_MANIFEST is true |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3598 | # - system / vendor VINTF metadata exists |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3599 | # - Building product / system_ext / odm images if board has product / system_ext / odm images |
| 3600 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3601 | ifeq ($(check_vintf_has_system),true) |
| 3602 | ifeq ($(check_vintf_has_vendor),true) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3603 | ifeq ($(filter true,$(BUILDING_ODM_IMAGE)),$(filter true,$(BOARD_USES_ODMIMAGE))) |
| 3604 | ifeq ($(filter true,$(BUILDING_PRODUCT_IMAGE)),$(filter true,$(BOARD_USES_PRODUCTIMAGE))) |
| 3605 | ifeq ($(filter true,$(BUILDING_SYSTEM_EXT_IMAGE)),$(filter true,$(BOARD_USES_SYSTEM_EXTIMAGE))) |
| 3606 | |
| 3607 | check_vintf_compatible_log := $(intermediates)/check_vintf_compatible_log |
| 3608 | check_vintf_all_deps += $(check_vintf_compatible_log) |
| 3609 | |
| 3610 | check_vintf_compatible_args := |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3611 | check_vintf_compatible_deps := $(check_vintf_common_srcs) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3612 | |
| 3613 | # -- Kernel version and configurations. |
| 3614 | ifeq ($(PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS),true) |
| 3615 | |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3616 | BUILT_KERNEL_CONFIGS_FILE := $(intermediates)/kernel_configs.txt |
| 3617 | BUILT_KERNEL_VERSION_FILE := $(intermediates)/kernel_version.txt |
| 3618 | |
| 3619 | my_board_extracted_kernel := |
| 3620 | |
| 3621 | # BOARD_KERNEL_CONFIG_FILE and BOARD_KERNEL_VERSION can be used to override the values extracted |
| 3622 | # from INSTALLED_KERNEL_TARGET. |
| 3623 | ifdef BOARD_KERNEL_CONFIG_FILE |
| 3624 | ifdef BOARD_KERNEL_VERSION |
| 3625 | $(BUILT_KERNEL_CONFIGS_FILE): $(BOARD_KERNEL_CONFIG_FILE) |
| 3626 | cp $< $@ |
| 3627 | $(BUILT_KERNEL_VERSION_FILE): |
| 3628 | echo $(BOARD_KERNEL_VERSION) > $@ |
| 3629 | |
| 3630 | my_board_extracted_kernel := true |
| 3631 | endif # BOARD_KERNEL_VERSION |
| 3632 | endif # BOARD_KERNEL_CONFIG_FILE |
| 3633 | |
| 3634 | ifneq ($(my_board_extracted_kernel),true) |
| 3635 | ifndef INSTALLED_KERNEL_TARGET |
| 3636 | $(warning No INSTALLED_KERNEL_TARGET is defined when PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS \ |
| 3637 | is true. Information about the updated kernel cannot be built into OTA update package. \ |
| 3638 | You can fix this by: (1) setting TARGET_NO_KERNEL to false and installing the built kernel \ |
| 3639 | to $(PRODUCT_OUT)/kernel, so that kernel information will be extracted from the built kernel; \ |
| 3640 | or (2) extracting kernel configuration and defining BOARD_KERNEL_CONFIG_FILE and \ |
| 3641 | BOARD_KERNEL_VERSION manually; or (3) unsetting PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS \ |
| 3642 | manually.) |
| 3643 | else |
| 3644 | |
| 3645 | # Tools for decompression that is not in PATH. |
| 3646 | # Check $(EXTRACT_KERNEL) for decompression algorithms supported by the script. |
| 3647 | # Algorithms that are in the script but not in this list will be found in PATH. |
| 3648 | my_decompress_tools := \ |
| 3649 | lz4:$(HOST_OUT_EXECUTABLES)/lz4 \ |
| 3650 | |
| 3651 | $(BUILT_KERNEL_CONFIGS_FILE): .KATI_IMPLICIT_OUTPUTS := $(BUILT_KERNEL_VERSION_FILE) |
| 3652 | $(BUILT_KERNEL_CONFIGS_FILE): PRIVATE_DECOMPRESS_TOOLS := $(my_decompress_tools) |
| 3653 | $(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] | 3654 | $(BUILT_KERNEL_CONFIGS_FILE): $(EXTRACT_KERNEL) $(firstword $(INSTALLED_KERNEL_TARGET)) |
| 3655 | $< --tools $(PRIVATE_DECOMPRESS_TOOLS) --input $(firstword $(INSTALLED_KERNEL_TARGET)) \ |
Yifan Hong | 605ea04 | 2020-01-14 21:36:00 +0000 | [diff] [blame] | 3656 | --output-configs $@ \ |
| 3657 | --output-version $(BUILT_KERNEL_VERSION_FILE) |
| 3658 | |
| 3659 | my_decompress_tools := |
| 3660 | |
| 3661 | endif # my_board_extracted_kernel |
| 3662 | my_board_extracted_kernel := |
| 3663 | |
| 3664 | endif # INSTALLED_KERNEL_TARGET |
| 3665 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3666 | check_vintf_compatible_args += --kernel $$(cat $(BUILT_KERNEL_VERSION_FILE)):$(BUILT_KERNEL_CONFIGS_FILE) |
| 3667 | check_vintf_compatible_deps += $(BUILT_KERNEL_CONFIGS_FILE) $(BUILT_KERNEL_VERSION_FILE) |
| 3668 | |
| 3669 | endif # PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS |
| 3670 | |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3671 | check_vintf_compatible_args += \ |
| 3672 | --dirmap /system:$(TARGET_OUT) \ |
| 3673 | --dirmap /vendor:$(TARGET_OUT_VENDOR) \ |
| 3674 | --dirmap /odm:$(TARGET_OUT_ODM) \ |
| 3675 | --dirmap /product:$(TARGET_OUT_PRODUCT) \ |
| 3676 | --dirmap /system_ext:$(TARGET_OUT_SYSTEM_EXT) \ |
| 3677 | |
| 3678 | ifdef PRODUCT_SHIPPING_API_LEVEL |
| 3679 | check_vintf_compatible_args += --property ro.product.first_api_level=$(PRODUCT_SHIPPING_API_LEVEL) |
| 3680 | endif # PRODUCT_SHIPPING_API_LEVEL |
| 3681 | |
| 3682 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_ARGS := $(check_vintf_compatible_args) |
| 3683 | $(check_vintf_compatible_log): PRIVATE_CHECK_VINTF_DEPS := $(check_vintf_compatible_deps) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3684 | # Check ODM SKU=(empty) case when: |
| 3685 | # - ODM_MANIFEST_FILES is not empty; OR |
| 3686 | # - 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] | 3687 | $(check_vintf_compatible_log): PRIVATE_ODM_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3688 | $(if $(ODM_MANIFEST_FILES),EMPTY_ODM_SKU_PLACEHOLDER,\ |
| 3689 | $(if $(ODM_MANIFEST_SKUS),,EMPTY_ODM_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3690 | $(ODM_MANIFEST_SKUS) |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3691 | # Check vendor SKU=(empty) case when: |
| 3692 | # - DEVICE_MANIFEST_FILE is not empty; OR |
| 3693 | # - 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] | 3694 | $(check_vintf_compatible_log): PRIVATE_VENDOR_SKUS := \ |
Yifan Hong | 69430e6 | 2020-03-17 15:18:34 -0700 | [diff] [blame] | 3695 | $(if $(DEVICE_MANIFEST_FILE),EMPTY_VENDOR_SKU_PLACEHOLDER,\ |
| 3696 | $(if $(DEVICE_MANIFEST_SKUS),,EMPTY_VENDOR_SKU_PLACEHOLDER)) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3697 | $(DEVICE_MANIFEST_SKUS) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3698 | $(check_vintf_compatible_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_compatible_deps) |
| 3699 | @echo -n -e 'Deps: \n ' > $@ |
| 3700 | @sed 's/ /\n /g' <<< "$(PRIVATE_CHECK_VINTF_DEPS)" >> $@ |
| 3701 | @echo -n -e 'Args: \n ' >> $@ |
| 3702 | @cat <<< "$(PRIVATE_CHECK_VINTF_ARGS)" >> $@ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3703 | $(foreach odm_sku,$(PRIVATE_ODM_SKUS), $(foreach vendor_sku,$(PRIVATE_VENDOR_SKUS), \ |
| 3704 | echo "For ODM SKU = $(odm_sku), vendor SKU = $(vendor_sku)" >> $@; \ |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3705 | ( $< --check-compat $(PRIVATE_CHECK_VINTF_ARGS) \ |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 3706 | --property ro.boot.product.hardware.sku=$(filter-out EMPTY_ODM_SKU_PLACEHOLDER,$(odm_sku)) \ |
| 3707 | --property ro.boot.product.vendor.sku=$(filter-out EMPTY_VENDOR_SKU_PLACEHOLDER,$(vendor_sku)) \ |
| 3708 | >> $@ 2>&1 ) || (cat $@ && exit 1); )) |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3709 | |
| 3710 | check_vintf_compatible_log := |
| 3711 | check_vintf_compatible_args := |
| 3712 | check_vintf_compatible_deps := |
| 3713 | |
| 3714 | endif # BUILDING_SYSTEM_EXT_IMAGE equals BOARD_USES_SYSTEM_EXTIMAGE |
| 3715 | endif # BUILDING_PRODUCT_IMAGE equals BOARD_USES_PRODUCTIMAGE |
| 3716 | endif # BUILDING_ODM_IMAGE equals BOARD_USES_ODMIMAGE |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3717 | endif # check_vintf_has_vendor |
| 3718 | endif # check_vintf_has_system |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3719 | endif # PRODUCT_ENFORCE_VINTF_MANIFEST |
| 3720 | |
| 3721 | # Add all logs of VINTF checks to dist builds |
| 3722 | droid_targets: $(check_vintf_all_deps) |
| 3723 | $(call dist-for-goals, droid_targets, $(check_vintf_all_deps)) |
| 3724 | |
| 3725 | # Helper alias to check all VINTF of current build. |
| 3726 | .PHONY: check-vintf-all |
| 3727 | check-vintf-all: $(check_vintf_all_deps) |
| 3728 | $(foreach file,$^,echo "$(file)"; cat "$(file)"; echo;) |
| 3729 | |
Yifan Hong | af9b070 | 2020-01-21 12:46:57 -0800 | [diff] [blame] | 3730 | check_vintf_has_vendor := |
| 3731 | check_vintf_has_system := |
| 3732 | check_vintf_common_srcs := |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3733 | check_vintf_all_deps := |
| 3734 | intermediates := |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 3735 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | bcd46bc | 2020-01-14 21:35:45 +0000 | [diff] [blame] | 3736 | |
| 3737 | # ----------------------------------------------------------------- |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 3738 | # Check image sizes <= size of super partition |
| 3739 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 3740 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 3741 | |
| 3742 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
Yifan Hong | 37c0c7c | 2018-07-24 17:45:08 -0700 | [diff] [blame] | 3743 | |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 3744 | # $(1): misc_info.txt |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 3745 | # #(2): optional log file |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 3746 | define check-all-partition-sizes-target |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 3747 | mkdir -p $(dir $(1)) |
| 3748 | rm -f $(1) |
| 3749 | $(call dump-super-image-info, $(1)) |
| 3750 | $(foreach partition,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 3751 | echo "$(partition)_image="$(call images-for-partitions,$(partition)) >> $(1);) |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 3752 | $(CHECK_PARTITION_SIZES) $(if $(2),--logfile $(2),-v) $(1) |
Yifan Hong | b43012f | 2018-10-01 17:30:01 -0700 | [diff] [blame] | 3753 | endef |
| 3754 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 3755 | check_all_partition_sizes_log := $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/check_all_partition_sizes_log |
| 3756 | droid_targets: $(check_all_partition_sizes_log) |
| 3757 | $(call dist-for-goals, droid_targets, $(check_all_partition_sizes_log)) |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 3758 | |
Yifan Hong | 3091093 | 2019-10-25 20:36:55 -0700 | [diff] [blame] | 3759 | $(check_all_partition_sizes_log): \ |
| 3760 | $(CHECK_PARTITION_SIZES) \ |
| 3761 | $(call images-for-partitions,$(BOARD_SUPER_PARTITION_PARTITION_LIST)) |
| 3762 | $(call check-all-partition-sizes-target, \ |
| 3763 | $(call intermediates-dir-for,PACKAGING,check-all-partition-sizes)/misc_info.txt, \ |
| 3764 | $@) |
| 3765 | |
| 3766 | .PHONY: check-all-partition-sizes |
| 3767 | check-all-partition-sizes: $(check_all_partition_sizes_log) |
| 3768 | |
| 3769 | .PHONY: check-all-partition-sizes-nodeps |
Colin Cross | 606c9f4 | 2019-05-17 15:51:39 -0700 | [diff] [blame] | 3770 | check-all-partition-sizes-nodeps: |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 3771 | $(call check-all-partition-sizes-target, \ |
| 3772 | $(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] | 3773 | |
Yifan Hong | 2dae572 | 2018-07-31 12:47:27 -0700 | [diff] [blame] | 3774 | endif # PRODUCT_BUILD_SUPER_PARTITION |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 3775 | |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 3776 | endif # !TARGET_BUILD_UNBUNDLED |
Yifan Hong | 17dd45d | 2018-07-20 16:45:57 -0700 | [diff] [blame] | 3777 | |
| 3778 | # ----------------------------------------------------------------- |
Greg Hartman | 2ebfef4 | 2014-11-04 21:17:06 -0800 | [diff] [blame] | 3779 | # bring in the installer image generation defines if necessary |
| 3780 | ifeq ($(TARGET_USE_DISKINSTALLER),true) |
| 3781 | include bootable/diskinstaller/config.mk |
| 3782 | endif |
| 3783 | |
| 3784 | # ----------------------------------------------------------------- |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame] | 3785 | # host tools needed to build dist and OTA packages |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3786 | |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 3787 | ifeq ($(BUILD_OS),darwin) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3788 | build_ota_package := false |
| 3789 | build_otatools_package := false |
| 3790 | else |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 3791 | # Set build_ota_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3792 | build_ota_package := true |
| 3793 | ifeq ($(TARGET_SKIP_OTA_PACKAGE),true) |
| 3794 | build_ota_package := false |
| 3795 | endif |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 3796 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3797 | build_ota_package := false |
| 3798 | endif |
| 3799 | ifeq ($(TARGET_PRODUCT),sdk) |
| 3800 | build_ota_package := false |
| 3801 | endif |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 3802 | ifneq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 3803 | ifneq ($(filter generic%,$(TARGET_DEVICE)),) |
| 3804 | build_ota_package := false |
| 3805 | endif |
| 3806 | ifeq ($(TARGET_NO_KERNEL),true) |
| 3807 | build_ota_package := false |
| 3808 | endif |
| 3809 | ifeq ($(recovery_fstab),) |
| 3810 | build_ota_package := false |
| 3811 | endif |
| 3812 | endif # PRODUCT_BUILD_GENERIC_OTA_PACKAGE |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3813 | |
Tao Bao | 9be20c7 | 2019-04-08 21:11:59 -0700 | [diff] [blame] | 3814 | # Set build_otatools_package, and allow opt-out below. |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3815 | build_otatools_package := true |
| 3816 | ifeq ($(TARGET_SKIP_OTATOOLS_PACKAGE),true) |
| 3817 | build_otatools_package := false |
| 3818 | endif |
Colin Cross | 481cc5a | 2016-02-04 15:09:23 -0800 | [diff] [blame] | 3819 | endif |
Ying Wang | bd2d024 | 2015-09-22 11:17:52 -0700 | [diff] [blame] | 3820 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3821 | ifeq ($(build_otatools_package),true) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3822 | |
| 3823 | INTERNAL_OTATOOLS_MODULES := \ |
changho.shin | 0f12536 | 2019-07-08 10:59:00 +0900 | [diff] [blame] | 3824 | aapt2 \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 3825 | add_img_to_target_files \ |
Tianjie Xu | eaed60c | 2020-03-12 00:33:28 -0700 | [diff] [blame] | 3826 | aftltool \ |
Baligh Uddin | ab25b2d | 2020-05-29 19:01:32 +0000 | [diff] [blame] | 3827 | apksigner \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3828 | append2simg \ |
| 3829 | avbtool \ |
| 3830 | blk_alloc_to_base_fs \ |
| 3831 | boot_signer \ |
| 3832 | brillo_update_payload \ |
| 3833 | brotli \ |
| 3834 | bsdiff \ |
Tao Bao | 2bbb07c | 2019-05-07 13:12:21 -0700 | [diff] [blame] | 3835 | build_image \ |
| 3836 | build_super_image \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3837 | build_verity_metadata \ |
| 3838 | build_verity_tree \ |
| 3839 | care_map_generator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 3840 | check_ota_package_signature \ |
| 3841 | check_target_files_signatures \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 3842 | check_target_files_vintf \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3843 | checkvintf \ |
| 3844 | delta_generator \ |
| 3845 | e2fsck \ |
| 3846 | e2fsdroid \ |
| 3847 | fc_sort \ |
| 3848 | fec \ |
| 3849 | fs_config \ |
| 3850 | generate_verity_key \ |
| 3851 | img2simg \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 3852 | img_from_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3853 | imgdiff \ |
| 3854 | libconscrypt_openjdk_jni \ |
| 3855 | lpmake \ |
Isaac Chen | eec4a7c | 2019-06-25 11:50:58 +0800 | [diff] [blame] | 3856 | lpunpack \ |
Tianjie | 3031c29 | 2020-06-24 11:20:36 -0700 | [diff] [blame] | 3857 | lz4 \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3858 | make_f2fs \ |
Jaegeuk Kim | 8ba4bab | 2020-07-17 20:18:10 -0700 | [diff] [blame] | 3859 | make_f2fs_casefold \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 3860 | merge_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3861 | minigzip \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 3862 | mk_combined_img \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3863 | mkbootfs \ |
| 3864 | mkbootimg \ |
| 3865 | mke2fs \ |
Baligh Uddin | 6a8234b | 2020-01-29 17:42:59 -0800 | [diff] [blame] | 3866 | mke2fs.conf \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3867 | mkf2fsuserimg.sh \ |
| 3868 | mksquashfs \ |
| 3869 | mksquashfsimage.sh \ |
| 3870 | mkuserimg_mke2fs \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 3871 | ota_from_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3872 | sefcontext_compile \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 3873 | sgdisk \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3874 | shflags \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 3875 | sign_apex \ |
| 3876 | sign_target_files_apks \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3877 | signapk \ |
| 3878 | simg2img \ |
| 3879 | sload_f2fs \ |
| 3880 | tune2fs \ |
Daniel Mentz | 30652b3 | 2020-01-04 15:18:09 -0800 | [diff] [blame] | 3881 | unpack_bootimg \ |
Tianjie Xu | 4e5591f | 2019-06-11 14:35:59 -0700 | [diff] [blame] | 3882 | update_host_simulator \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 3883 | validate_target_files \ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3884 | verity_signer \ |
| 3885 | verity_verifier \ |
| 3886 | zipalign \ |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 3887 | |
Tianjie Xu | eb8a0a0 | 2020-01-23 13:59:13 -0800 | [diff] [blame] | 3888 | # Additional tools to unpack and repack the apex file. |
| 3889 | INTERNAL_OTATOOLS_MODULES += \ |
| 3890 | apexer \ |
| 3891 | deapexer \ |
| 3892 | debugfs_static \ |
| 3893 | merge_zips \ |
| 3894 | resize2fs \ |
| 3895 | soong_zip \ |
| 3896 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 3897 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3898 | INTERNAL_OTATOOLS_MODULES += \ |
| 3899 | futility \ |
| 3900 | vboot_signer |
Tao Bao | 5e04c38 | 2017-02-22 16:38:19 -0800 | [diff] [blame] | 3901 | endif |
Tao Bao | f8e6fbe | 2016-01-04 09:57:32 -0800 | [diff] [blame] | 3902 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3903 | INTERNAL_OTATOOLS_FILES := \ |
| 3904 | $(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] | 3905 | |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 3906 | .PHONY: otatools |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3907 | otatools: $(INTERNAL_OTATOOLS_FILES) |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 3908 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3909 | # For each module, recursively resolve its host shared library dependencies. Then we have a full |
| 3910 | # list of modules whose installed files need to be packed. |
| 3911 | INTERNAL_OTATOOLS_MODULES_WITH_DEPS := \ |
| 3912 | $(sort $(INTERNAL_OTATOOLS_MODULES) \ |
| 3913 | $(foreach m,$(INTERNAL_OTATOOLS_MODULES),$(call get-all-shared-libs-deps,$(m)))) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 3914 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3915 | INTERNAL_OTATOOLS_PACKAGE_FILES := \ |
| 3916 | $(filter $(HOST_OUT)/%,$(call module-installed-files,$(INTERNAL_OTATOOLS_MODULES_WITH_DEPS))) |
| 3917 | |
| 3918 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
| 3919 | $(sort $(shell find build/make/target/product/security -type f -name "*.x509.pem" -o \ |
| 3920 | -name "*.pk8" -o -name verity_key)) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 3921 | |
| 3922 | ifneq (,$(wildcard device)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3923 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Dan Willemsen | 60c6644 | 2018-05-01 19:07:27 -0700 | [diff] [blame] | 3924 | $(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] | 3925 | -name "*.pem" -o -name "oem*.prop" -o -name "*.avbpubkey")) |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 3926 | endif |
| 3927 | ifneq (,$(wildcard external/avb)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3928 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 93ab844 | 2018-10-12 11:03:04 -0700 | [diff] [blame] | 3929 | $(sort $(shell find external/avb/test/data -type f -name "testkey_*.pem" -o \ |
| 3930 | -name "atx_metadata.bin")) |
| 3931 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 3932 | ifeq (true,$(PRODUCT_SUPPORTS_VBOOT)) |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3933 | INTERNAL_OTATOOLS_PACKAGE_FILES += \ |
Tao Bao | 5232f09 | 2018-02-10 04:03:32 +0000 | [diff] [blame] | 3934 | $(sort $(shell find external/vboot_reference/tests/devkeys -type f)) |
Tao Bao | e8ef8f70 | 2017-05-17 11:41:50 -0700 | [diff] [blame] | 3935 | endif |
| 3936 | |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3937 | INTERNAL_OTATOOLS_RELEASETOOLS := \ |
| 3938 | $(sort $(shell find build/make/tools/releasetools -name "*.pyc" -prune -o \ |
| 3939 | \( -type f -o -type l \) -print)) |
| 3940 | |
| 3941 | BUILT_OTATOOLS_PACKAGE := $(PRODUCT_OUT)/otatools.zip |
| 3942 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_ZIP_ROOT := $(call intermediates-dir-for,PACKAGING,otatools)/otatools |
| 3943 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_PACKAGE_FILES := $(INTERNAL_OTATOOLS_PACKAGE_FILES) |
| 3944 | $(BUILT_OTATOOLS_PACKAGE): PRIVATE_OTATOOLS_RELEASETOOLS := $(INTERNAL_OTATOOLS_RELEASETOOLS) |
| 3945 | $(BUILT_OTATOOLS_PACKAGE): $(INTERNAL_OTATOOLS_PACKAGE_FILES) $(INTERNAL_OTATOOLS_RELEASETOOLS) |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 3946 | $(BUILT_OTATOOLS_PACKAGE): $(SOONG_ZIP) $(ZIP2ZIP) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 3947 | @echo "Package OTA tools: $@" |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3948 | rm -rf $@ $(PRIVATE_ZIP_ROOT) |
| 3949 | mkdir -p $(dir $@) |
| 3950 | $(call copy-files-with-structure,$(PRIVATE_OTATOOLS_PACKAGE_FILES),$(HOST_OUT)/,$(PRIVATE_ZIP_ROOT)) |
| 3951 | $(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] | 3952 | cp $(SOONG_ZIP) $(ZIP2ZIP) $(MERGE_ZIPS) $(PRIVATE_ZIP_ROOT)/bin/ |
Tao Bao | 96daeeb | 2019-05-01 21:17:13 -0700 | [diff] [blame] | 3953 | $(SOONG_ZIP) -o $@ -C $(PRIVATE_ZIP_ROOT) -D $(PRIVATE_ZIP_ROOT) |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 3954 | |
| 3955 | .PHONY: otatools-package |
| 3956 | otatools-package: $(BUILT_OTATOOLS_PACKAGE) |
| 3957 | |
Bowgo Tsai | d6ff897 | 2018-10-09 15:46:25 +0800 | [diff] [blame] | 3958 | endif # build_otatools_package |
Doug Zongker | f22b0f4 | 2014-08-22 08:04:58 -0700 | [diff] [blame] | 3959 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 3960 | # ----------------------------------------------------------------- |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 3961 | # misc_info.txt |
| 3962 | |
| 3963 | INSTALLED_MISC_INFO_TARGET := $(PRODUCT_OUT)/misc_info.txt |
| 3964 | |
| 3965 | ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),) |
| 3966 | # default to common dir for device vendor |
| 3967 | tool_extensions := $(TARGET_DEVICE_DIR)/../common |
| 3968 | else |
| 3969 | tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) |
| 3970 | endif |
| 3971 | .KATI_READONLY := tool_extensions |
| 3972 | |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 3973 | # $1: boot image file name |
| 3974 | define misc_boot_size |
| 3975 | $(subst .img,_size,$(1))=$(BOARD_KERNEL$(call to-upper,$(subst boot,,$(subst .img,,$(1))))_BOOTIMAGE_PARTITION_SIZE) |
| 3976 | endef |
| 3977 | |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 3978 | $(INSTALLED_MISC_INFO_TARGET): |
| 3979 | rm -f $@ |
| 3980 | $(call pretty,"Target misc_info.txt: $@") |
| 3981 | $(hide) echo "recovery_api_version=$(RECOVERY_API_VERSION)" >> $@ |
| 3982 | $(hide) echo "fstab_version=$(RECOVERY_FSTAB_VERSION)" >> $@ |
| 3983 | ifdef BOARD_FLASH_BLOCK_SIZE |
| 3984 | $(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $@ |
| 3985 | endif |
Steve Muckle | 903a1ca | 2020-05-07 17:32:10 -0700 | [diff] [blame] | 3986 | ifneq ($(strip $(BOARD_BOOTIMAGE_PARTITION_SIZE))$(strip $(BOARD_KERNEL_BINARIES)),) |
| 3987 | $(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),\ |
| 3988 | echo "$(call misc_boot_size,$(notdir $(b)))" >> $@;) |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 3989 | endif |
| 3990 | ifeq ($(INSTALLED_BOOTIMAGE_TARGET),) |
| 3991 | $(hide) echo "no_boot=true" >> $@ |
Steve Muckle | 9793cf6 | 2020-04-08 18:27:00 -0700 | [diff] [blame] | 3992 | else |
| 3993 | echo "boot_images=$(foreach b,$(INSTALLED_BOOTIMAGE_TARGET),$(notdir $(b)))" >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 3994 | endif |
J. Avila | 98cd4cc | 2020-06-10 20:09:10 +0000 | [diff] [blame] | 3995 | ifeq ($(BOARD_RAMDISK_USE_LZ4),true) |
| 3996 | echo "lz4_ramdisks=true" >> $@ |
| 3997 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 3998 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 3999 | echo "vendor_boot=true" >> $@ |
| 4000 | echo "vendor_boot_size=$(BOARD_VENDOR_BOOTIMAGE_PARTITION_SIZE)" >> $@ |
| 4001 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4002 | ifeq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 4003 | $(hide) echo "no_recovery=true" >> $@ |
| 4004 | endif |
| 4005 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
| 4006 | $(hide) echo "include_recovery_dtbo=true" >> $@ |
| 4007 | endif |
| 4008 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
| 4009 | $(hide) echo "include_recovery_acpio=true" >> $@ |
| 4010 | endif |
| 4011 | ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE |
| 4012 | $(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $@ |
| 4013 | endif |
| 4014 | ifdef TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS |
| 4015 | @# TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS can be empty to indicate that nothing but defaults should be used. |
| 4016 | $(hide) echo "recovery_mount_options=$(TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 4017 | else |
| 4018 | $(hide) echo "recovery_mount_options=$(DEFAULT_TARGET_RECOVERY_FSTYPE_MOUNT_OPTIONS)" >> $@ |
| 4019 | endif |
| 4020 | $(hide) echo "tool_extensions=$(tool_extensions)" >> $@ |
| 4021 | $(hide) echo "default_system_dev_certificate=$(DEFAULT_SYSTEM_DEV_CERTIFICATE)" >> $@ |
| 4022 | ifdef PRODUCT_EXTRA_RECOVERY_KEYS |
| 4023 | $(hide) echo "extra_recovery_keys=$(PRODUCT_EXTRA_RECOVERY_KEYS)" >> $@ |
| 4024 | endif |
| 4025 | $(hide) echo 'mkbootimg_args=$(BOARD_MKBOOTIMG_ARGS)' >> $@ |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 4026 | $(hide) echo 'recovery_mkbootimg_args=$(BOARD_RECOVERY_MKBOOTIMG_ARGS)' >> $@ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4027 | $(hide) echo 'mkbootimg_version_args=$(INTERNAL_MKBOOTIMG_VERSION_ARGS)' >> $@ |
| 4028 | $(hide) echo "multistage_support=1" >> $@ |
| 4029 | $(hide) echo "blockimgdiff_versions=3,4" >> $@ |
| 4030 | ifeq ($(PRODUCT_BUILD_GENERIC_OTA_PACKAGE),true) |
| 4031 | $(hide) echo "build_generic_ota_package=true" >> $@ |
| 4032 | endif |
| 4033 | ifneq ($(OEM_THUMBPRINT_PROPERTIES),) |
| 4034 | # OTA scripts are only interested in fingerprint related properties |
| 4035 | $(hide) echo "oem_fingerprint_properties=$(OEM_THUMBPRINT_PROPERTIES)" >> $@ |
| 4036 | endif |
| 4037 | ifneq (,$(filter address, $(SANITIZE_TARGET))) |
| 4038 | # We need to create userdata.img with real data because the instrumented libraries are in userdata.img. |
| 4039 | $(hide) echo "userdata_img_with_data=true" >> $@ |
| 4040 | endif |
| 4041 | ifeq ($(BOARD_USES_FULL_RECOVERY_IMAGE),true) |
| 4042 | $(hide) echo "full_recovery_image=true" >> $@ |
| 4043 | endif |
Bill Peckham | e868aec | 2019-09-17 17:06:47 -0700 | [diff] [blame] | 4044 | ifdef BOARD_USES_VENDORIMAGE |
| 4045 | $(hide) echo "board_uses_vendorimage=true" >> $@ |
| 4046 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4047 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4048 | $(hide) echo "avb_enable=true" >> $@ |
| 4049 | $(hide) echo "avb_vbmeta_key_path=$(BOARD_AVB_KEY_PATH)" >> $@ |
| 4050 | $(hide) echo "avb_vbmeta_algorithm=$(BOARD_AVB_ALGORITHM)" >> $@ |
| 4051 | $(hide) echo "avb_vbmeta_args=$(BOARD_AVB_MAKE_VBMETA_IMAGE_ARGS)" >> $@ |
| 4052 | $(hide) echo "avb_boot_add_hash_footer_args=$(BOARD_AVB_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4053 | ifdef BOARD_AVB_BOOT_KEY_PATH |
| 4054 | $(hide) echo "avb_boot_key_path=$(BOARD_AVB_BOOT_KEY_PATH)" >> $@ |
| 4055 | $(hide) echo "avb_boot_algorithm=$(BOARD_AVB_BOOT_ALGORITHM)" >> $@ |
| 4056 | $(hide) echo "avb_boot_rollback_index_location=$(BOARD_AVB_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4057 | endif # BOARD_AVB_BOOT_KEY_PATH |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4058 | echo "avb_vendor_boot_add_hash_footer_args=$(BOARD_AVB_VENDOR_BOOT_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4059 | ifdef BOARD_AVB_VENDOR_BOOT_KEY_PATH |
| 4060 | echo "avb_vendor_boot_key_path=$(BOARD_AVB_VENDOR_BOOT_KEY_PATH)" >> $@ |
| 4061 | echo "avb_vendor_boot_algorithm=$(BOARD_AVB_VENDOR_BOOT_ALGORITHM)" >> $@ |
| 4062 | echo "avb_vendor_boot_rollback_index_location=$(BOARD_AVB_VENDOR_BOOT_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4063 | endif # BOARD_AVB_VENDOR_BOOT_KEY_PATH |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4064 | $(hide) echo "avb_recovery_add_hash_footer_args=$(BOARD_AVB_RECOVERY_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4065 | ifdef BOARD_AVB_RECOVERY_KEY_PATH |
| 4066 | $(hide) echo "avb_recovery_key_path=$(BOARD_AVB_RECOVERY_KEY_PATH)" >> $@ |
| 4067 | $(hide) echo "avb_recovery_algorithm=$(BOARD_AVB_RECOVERY_ALGORITHM)" >> $@ |
| 4068 | $(hide) echo "avb_recovery_rollback_index_location=$(BOARD_AVB_RECOVERY_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4069 | endif # BOARD_AVB_RECOVERY_KEY_PATH |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4070 | ifneq (,$(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST))) |
| 4071 | $(hide) echo "avb_custom_images_partition_list=$(BOARD_CUSTOMIMAGES_PARTITION_LIST)" >> $@ |
| 4072 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4073 | echo "avb_$(partition)_key_path=$(BOARD_AVB_$(call to-upper,$(partition))_KEY_PATH)" >> $@; \ |
| 4074 | echo "avb_$(partition)_algorithm=$(BOARD_AVB_$(call to-upper,$(partition))_ALGORITHM)" >> $@; \ |
| 4075 | echo "avb_$(partition)_add_hashtree_footer_args=$(BOARD_AVB_$(call to-upper,$(partition))_ADD_HASHTREE_FOOTER_ARGS)" >> $@; \ |
| 4076 | echo "avb_$(partition)_rollback_index_location=$(BOARD_AVB_$(call to-upper,$(partition))_ROLLBACK_INDEX_LOCATION)" >> $@; \ |
| 4077 | echo "avb_$(partition)_partition_size=$(BOARD_AVB_$(call to-upper,$(partition))_PARTITION_SIZE)" >> $@; \ |
| 4078 | echo "avb_$(partition)_image_list=$(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),$(notdir $(image)))" >> $@;) |
| 4079 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4080 | ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) |
| 4081 | $(hide) echo "avb_vbmeta_system=$(BOARD_AVB_VBMETA_SYSTEM)" >> $@ |
| 4082 | $(hide) echo "avb_vbmeta_system_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 4083 | $(hide) echo "avb_vbmeta_system_key_path=$(BOARD_AVB_VBMETA_SYSTEM_KEY_PATH)" >> $@ |
| 4084 | $(hide) echo "avb_vbmeta_system_algorithm=$(BOARD_AVB_VBMETA_SYSTEM_ALGORITHM)" >> $@ |
| 4085 | $(hide) echo "avb_vbmeta_system_rollback_index_location=$(BOARD_AVB_VBMETA_SYSTEM_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4086 | endif # BOARD_AVB_VBMETA_SYSTEM |
| 4087 | ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) |
| 4088 | $(hide) echo "avb_vbmeta_vendor=$(BOARD_AVB_VBMETA_VENDOR)" >> $@ |
| 4089 | $(hide) echo "avb_vbmeta_vendor_args=$(BOARD_AVB_MAKE_VBMETA_SYSTEM_IMAGE_ARGS)" >> $@ |
| 4090 | $(hide) echo "avb_vbmeta_vendor_key_path=$(BOARD_AVB_VBMETA_VENDOR_KEY_PATH)" >> $@ |
| 4091 | $(hide) echo "avb_vbmeta_vendor_algorithm=$(BOARD_AVB_VBMETA_VENDOR_ALGORITHM)" >> $@ |
| 4092 | $(hide) echo "avb_vbmeta_vendor_rollback_index_location=$(BOARD_AVB_VBMETA_VENDOR_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4093 | endif # BOARD_AVB_VBMETA_VENDOR_KEY_PATH |
| 4094 | endif # BOARD_AVB_ENABLE |
| 4095 | ifdef BOARD_BPT_INPUT_FILES |
| 4096 | $(hide) echo "board_bpt_enable=true" >> $@ |
| 4097 | $(hide) echo "board_bpt_make_table_args=$(BOARD_BPT_MAKE_TABLE_ARGS)" >> $@ |
| 4098 | $(hide) echo "board_bpt_input_files=$(BOARD_BPT_INPUT_FILES)" >> $@ |
| 4099 | endif |
| 4100 | ifdef BOARD_BPT_DISK_SIZE |
| 4101 | $(hide) echo "board_bpt_disk_size=$(BOARD_BPT_DISK_SIZE)" >> $@ |
| 4102 | endif |
| 4103 | $(call generate-userimage-prop-dictionary, $@) |
| 4104 | ifeq ($(AB_OTA_UPDATER),true) |
| 4105 | @# Include the build type in META/misc_info.txt so the server can easily differentiate production builds. |
| 4106 | $(hide) echo "build_type=$(TARGET_BUILD_VARIANT)" >> $@ |
| 4107 | $(hide) echo "ab_update=true" >> $@ |
| 4108 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4109 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
| 4110 | $(hide) echo "allow_non_ab=true" >> $@ |
| 4111 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4112 | ifdef BOARD_PREBUILT_DTBOIMAGE |
| 4113 | $(hide) echo "has_dtbo=true" >> $@ |
| 4114 | ifeq ($(BOARD_AVB_ENABLE),true) |
| 4115 | $(hide) echo "dtbo_size=$(BOARD_DTBOIMG_PARTITION_SIZE)" >> $@ |
| 4116 | $(hide) echo "avb_dtbo_add_hash_footer_args=$(BOARD_AVB_DTBO_ADD_HASH_FOOTER_ARGS)" >> $@ |
| 4117 | ifdef BOARD_AVB_DTBO_KEY_PATH |
| 4118 | $(hide) echo "avb_dtbo_key_path=$(BOARD_AVB_DTBO_KEY_PATH)" >> $@ |
| 4119 | $(hide) echo "avb_dtbo_algorithm=$(BOARD_AVB_DTBO_ALGORITHM)" >> $@ |
| 4120 | $(hide) echo "avb_dtbo_rollback_index_location=$(BOARD_AVB_DTBO_ROLLBACK_INDEX_LOCATION)" >> $@ |
| 4121 | endif # BOARD_AVB_DTBO_KEY_PATH |
| 4122 | endif # BOARD_AVB_ENABLE |
| 4123 | endif # BOARD_PREBUILT_DTBOIMAGE |
| 4124 | $(call dump-dynamic-partitions-info,$@) |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4125 | @# VINTF checks |
| 4126 | ifeq ($(PRODUCT_ENFORCE_VINTF_MANIFEST),true) |
| 4127 | $(hide) echo "vintf_enforce=true" >> $@ |
| 4128 | endif |
| 4129 | ifdef ODM_MANIFEST_SKUS |
| 4130 | $(hide) echo "vintf_odm_manifest_skus=$(ODM_MANIFEST_SKUS)" >> $@ |
| 4131 | endif |
Yifan Hong | 28ffd73 | 2020-03-13 13:11:10 -0700 | [diff] [blame] | 4132 | ifdef ODM_MANIFEST_FILES |
| 4133 | $(hide) echo "vintf_include_empty_odm_sku=true" >> $@ |
| 4134 | endif |
| 4135 | ifdef DEVICE_MANIFEST_SKUS |
| 4136 | $(hide) echo "vintf_vendor_manifest_skus=$(DEVICE_MANIFEST_SKUS)" >> $@ |
| 4137 | endif |
| 4138 | ifdef DEVICE_MANIFEST_FILE |
| 4139 | $(hide) echo "vintf_include_empty_vendor_sku=true" >> $@ |
| 4140 | endif |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 4141 | ifeq ($(BOARD_BOOTLOADER_IN_UPDATE_PACKAGE),true) |
| 4142 | $(hide) echo "bootloader_in_update_package=true" >> $@ |
| 4143 | endif |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4144 | |
| 4145 | .PHONY: misc_info |
| 4146 | misc_info: $(INSTALLED_MISC_INFO_TARGET) |
| 4147 | |
| 4148 | droidcore: $(INSTALLED_MISC_INFO_TARGET) |
| 4149 | |
| 4150 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4151 | # A zip of the directories that map to the target filesystem. |
| 4152 | # This zip can be used to create an OTA package or filesystem image |
| 4153 | # as a post-build step. |
| 4154 | # |
| 4155 | name := $(TARGET_PRODUCT) |
| 4156 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4157 | name := $(name)_debug |
| 4158 | endif |
| 4159 | name := $(name)-target_files-$(FILE_NAME_TAG) |
| 4160 | |
| 4161 | intermediates := $(call intermediates-dir-for,PACKAGING,target_files) |
| 4162 | BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip |
| 4163 | $(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates) |
| 4164 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4165 | zip_root := $(intermediates)/$(name) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4166 | |
| 4167 | # $(1): Directory to copy |
| 4168 | # $(2): Location to copy it to |
| 4169 | # The "ls -A" is to prevent "acp s/* d" from failing if s is empty. |
| 4170 | define package_files-copy-root |
| 4171 | if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \ |
| 4172 | mkdir -p $(2) && \ |
| 4173 | $(ACP) -rd $(strip $(1))/* $(2); \ |
| 4174 | fi |
| 4175 | endef |
| 4176 | |
Tao Bao | a04fca3 | 2015-11-30 12:22:24 -0800 | [diff] [blame] | 4177 | built_ota_tools := |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4178 | |
| 4179 | # We can't build static executables when SANITIZE_TARGET=address |
Evgenii Stepanov | 5d06f24 | 2018-11-14 14:12:10 -0800 | [diff] [blame] | 4180 | ifeq (,$(filter address, $(SANITIZE_TARGET))) |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4181 | built_ota_tools += \ |
Elliott Hughes | 9b824d5 | 2020-04-17 15:46:55 -0700 | [diff] [blame] | 4182 | $(call intermediates-dir-for,EXECUTABLES,updater)/updater |
Ying Wang | e6e544e | 2015-06-22 18:35:35 -0700 | [diff] [blame] | 4183 | endif |
| 4184 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4185 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools) |
| 4186 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4187 | tool_extension := $(wildcard $(tool_extensions)/releasetools.py) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4188 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_TOOL_EXTENSION := $(tool_extension) |
Doug Zongker | c18736b | 2009-09-30 09:20:32 -0700 | [diff] [blame] | 4189 | |
Sen Jiang | 4438fd9 | 2016-03-07 16:51:01 -0800 | [diff] [blame] | 4190 | ifeq ($(AB_OTA_UPDATER),true) |
Sen Jiang | 4393563 | 2017-12-19 15:24:43 -0800 | [diff] [blame] | 4191 | updater_dep := system/update_engine/update_engine.conf |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4192 | endif |
| 4193 | |
| 4194 | # Build OTA tools if non-A/B is allowed |
| 4195 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Shinichiro Hamaji | ee2d211 | 2016-05-10 16:40:38 +0900 | [diff] [blame] | 4196 | updater_dep := $(built_ota_tools) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4197 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4198 | |
Shinichiro Hamaji | ee2d211 | 2016-05-10 16:40:38 +0900 | [diff] [blame] | 4199 | $(BUILT_TARGET_FILES_PACKAGE): $(updater_dep) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4200 | |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4201 | # If we are using recovery as boot, output recovery files to BOOT/. |
| 4202 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 4203 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := BOOT |
| 4204 | else |
| 4205 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_OUT := RECOVERY |
| 4206 | endif |
| 4207 | |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4208 | ifeq ($(AB_OTA_UPDATER),true) |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4209 | ifdef OSRELEASED_DIRECTORY |
| 4210 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id |
| 4211 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version |
| 4212 | $(BUILT_TARGET_FILES_PACKAGE): $(TARGET_OUT_ETC)/$(OSRELEASED_DIRECTORY)/system_version |
| 4213 | endif |
Tao Bao | a835f38 | 2019-07-18 15:55:30 -0700 | [diff] [blame] | 4214 | |
| 4215 | # Not checking in board_config.mk, since AB_OTA_PARTITIONS may be updated in Android.mk (e.g. to |
| 4216 | # additionally include radio or bootloader partitions). |
| 4217 | ifeq ($(AB_OTA_PARTITIONS),) |
| 4218 | $(error AB_OTA_PARTITIONS must be defined when using AB_OTA_UPDATER) |
| 4219 | endif |
| 4220 | endif |
| 4221 | |
| 4222 | ifneq ($(AB_OTA_PARTITIONS),) |
| 4223 | ifneq ($(AB_OTA_UPDATER),true) |
| 4224 | $(error AB_OTA_UPDATER must be true when defining AB_OTA_PARTITIONS) |
| 4225 | endif |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4226 | endif |
| 4227 | |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4228 | # Run fs_config while creating the target files package |
| 4229 | # $1: root directory |
| 4230 | # $2: add prefix |
| 4231 | define fs_config |
Luis Hector Chavez | 440da2d | 2018-02-07 09:49:52 -0800 | [diff] [blame] | 4232 | (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] | 4233 | endef |
| 4234 | |
Yifan Hong | 60bfcc4 | 2019-11-01 11:39:45 -0700 | [diff] [blame] | 4235 | # Filter out vendor from the list for AOSP targets. |
| 4236 | # $(1): list |
| 4237 | define filter-out-missing-vendor |
| 4238 | $(if $(INSTALLED_VENDORIMAGE_TARGET),$(1),$(filter-out vendor,$(1))) |
| 4239 | endef |
| 4240 | |
| 4241 | # Information related to dynamic partitions and virtual A/B. This information |
| 4242 | # is needed for building the super image (see dump-super-image-info) and |
| 4243 | # building OTA packages. |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4244 | # $(1): file |
| 4245 | define dump-dynamic-partitions-info |
| 4246 | $(if $(filter true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)), \ |
| 4247 | echo "use_dynamic_partitions=true" >> $(1)) |
| 4248 | $(if $(filter true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)), \ |
| 4249 | echo "dynamic_partition_retrofit=true" >> $(1)) |
Yifan Hong | 055e6cf | 2018-11-29 13:51:48 -0800 | [diff] [blame] | 4250 | echo "lpmake=$(notdir $(LPMAKE))" >> $(1) |
| 4251 | $(if $(filter true,$(PRODUCT_BUILD_SUPER_PARTITION)), $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 4252 | echo "build_super_partition=true" >> $(1))) |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 4253 | $(if $(filter true,$(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE)), \ |
| 4254 | echo "build_retrofit_dynamic_partitions_ota_package=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4255 | echo "super_metadata_device=$(BOARD_SUPER_PARTITION_METADATA_DEVICE)" >> $(1) |
| 4256 | $(if $(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 4257 | echo "super_block_devices=$(BOARD_SUPER_PARTITION_BLOCK_DEVICES)" >> $(1)) |
| 4258 | $(foreach device,$(BOARD_SUPER_PARTITION_BLOCK_DEVICES), \ |
| 4259 | echo "super_$(device)_device_size=$(BOARD_SUPER_PARTITION_$(call to-upper,$(device))_DEVICE_SIZE)" >> $(1);) |
| 4260 | $(if $(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
Luca Stefani | c158e42 | 2020-05-12 20:36:31 +0200 | [diff] [blame] | 4261 | echo "dynamic_partition_list=$(call filter-out-missing-vendor,$(BOARD_SUPER_PARTITION_PARTITION_LIST))" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4262 | $(if $(BOARD_SUPER_PARTITION_GROUPS), |
| 4263 | echo "super_partition_groups=$(BOARD_SUPER_PARTITION_GROUPS)" >> $(1)) |
| 4264 | $(foreach group,$(BOARD_SUPER_PARTITION_GROUPS), \ |
| 4265 | echo "super_$(group)_group_size=$(BOARD_$(call to-upper,$(group))_SIZE)" >> $(1); \ |
| 4266 | $(if $(BOARD_$(call to-upper,$(group))_PARTITION_LIST), \ |
Luca Stefani | c158e42 | 2020-05-12 20:36:31 +0200 | [diff] [blame] | 4267 | echo "super_$(group)_partition_list=$(call filter-out-missing-vendor,$(BOARD_$(call to-upper,$(group))_PARTITION_LIST))" >> $(1);)) |
Yifan Hong | cb35bd9 | 2019-04-02 16:29:59 -0700 | [diff] [blame] | 4268 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)), \ |
| 4269 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Alistair Delva | 91238cc | 2019-10-16 10:53:41 -0700 | [diff] [blame] | 4270 | $(if $(filter true,$(TARGET_USERIMAGES_SPARSE_F2FS_DISABLED)), \ |
| 4271 | echo "build_non_sparse_super_partition=true" >> $(1)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 4272 | $(if $(filter true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)), \ |
| 4273 | echo "super_image_in_update_package=true" >> $(1)) |
Yifan Hong | 3a7c2ef | 2019-11-01 18:23:19 +0000 | [diff] [blame] | 4274 | $(if $(BOARD_SUPER_PARTITION_SIZE), \ |
| 4275 | echo "super_partition_size=$(BOARD_SUPER_PARTITION_SIZE)" >> $(1)) |
| 4276 | $(if $(BOARD_SUPER_PARTITION_ALIGNMENT), \ |
| 4277 | echo "super_partition_alignment=$(BOARD_SUPER_PARTITION_ALIGNMENT)" >> $(1)) |
| 4278 | $(if $(BOARD_SUPER_PARTITION_WARN_LIMIT), \ |
| 4279 | echo "super_partition_warn_limit=$(BOARD_SUPER_PARTITION_WARN_LIMIT)" >> $(1)) |
| 4280 | $(if $(BOARD_SUPER_PARTITION_ERROR_LIMIT), \ |
| 4281 | echo "super_partition_error_limit=$(BOARD_SUPER_PARTITION_ERROR_LIMIT)" >> $(1)) |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 4282 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA)), \ |
| 4283 | echo "virtual_ab=true" >> $(1)) |
| 4284 | $(if $(filter true,$(PRODUCT_VIRTUAL_AB_OTA_RETROFIT)), \ |
| 4285 | echo "virtual_ab_retrofit=true" >> $(1)) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 4286 | endef |
| 4287 | |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4288 | # By conditionally including the dependency of the target files package on the |
| 4289 | # full system image deps, we speed up builds that do not build the system |
| 4290 | # image. |
| 4291 | ifdef BUILDING_SYSTEM_IMAGE |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4292 | $(BUILT_TARGET_FILES_PACKAGE): $(FULL_SYSTEMIMAGE_DEPS) |
| 4293 | endif |
| 4294 | |
| 4295 | ifdef BUILDING_USERDATA_IMAGE |
| 4296 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_USERDATAIMAGE_FILES) |
| 4297 | endif |
| 4298 | |
| 4299 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 4300 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEMOTHERIMAGE_FILES) |
| 4301 | endif |
| 4302 | |
| 4303 | ifdef BUILDING_VENDOR_BOOT_IMAGE |
| 4304 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_RAMDISK_FILES) |
| 4305 | endif |
| 4306 | |
| 4307 | ifdef BUILDING_RECOVERY_IMAGE |
| 4308 | # TODO(b/30414428): Can't depend on INTERNAL_RECOVERYIMAGE_FILES alone like other |
| 4309 | # BUILD_TARGET_FILES_PACKAGE dependencies because currently there're cp/rsync/rm |
| 4310 | # commands in build-recoveryimage-target, which would touch the files under |
| 4311 | # TARGET_RECOVERY_OUT and race with packaging target-files.zip. |
| 4312 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
| 4313 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTIMAGE_TARGET) |
| 4314 | else |
| 4315 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_RECOVERYIMAGE_TARGET) |
| 4316 | endif |
| 4317 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RECOVERYIMAGE_FILES) |
| 4318 | endif |
| 4319 | |
| 4320 | # Conditionally depend on the image files if the image is being built so the |
| 4321 | # target-files.zip rule doesn't wait on the image creation rule, or the image |
| 4322 | # if it is coming from a prebuilt. |
| 4323 | |
| 4324 | ifdef BUILDING_VENDOR_IMAGE |
| 4325 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDORIMAGE_FILES) |
| 4326 | else ifdef BOARD_PREBUILT_VENDORIMAGE |
| 4327 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_VENDORIMAGE_TARGET) |
| 4328 | endif |
| 4329 | |
| 4330 | ifdef BUILDING_PRODUCT_IMAGE |
| 4331 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_PRODUCTIMAGE_FILES) |
| 4332 | else ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 4333 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_PRODUCTIMAGE_TARGET) |
| 4334 | endif |
| 4335 | |
| 4336 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 4337 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
| 4338 | else ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
| 4339 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) |
| 4340 | endif |
| 4341 | |
| 4342 | ifdef BUILDING_BOOT_IMAGE |
| 4343 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_RAMDISK_FILES) |
| 4344 | else ifdef BOARD_PREBUILT_BOOTIMAGE |
| 4345 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTIMAGE_TARGET) |
| 4346 | endif |
| 4347 | |
| 4348 | ifdef BUILDING_ODM_IMAGE |
| 4349 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_ODMIMAGE_FILES) |
| 4350 | else ifdef BOARD_PREBUILT_ODMIMAGE |
| 4351 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_ODMIMAGE_TARGET) |
| 4352 | endif |
| 4353 | |
| 4354 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 4355 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_VENDOR_DLKMIMAGE_FILES) |
| 4356 | else ifdef BOARD_PREBUILT_VENDOR_DLKIMMAGE |
| 4357 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) |
| 4358 | endif |
| 4359 | |
| 4360 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 4361 | $(BUILT_TARGET_FILES_PACKAGE): $(INTERNAL_ODM_DLKMIMAGE_FILES) |
| 4362 | else ifdef BOARD_ODM_VENDOR_DLKIMMAGE |
| 4363 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) |
Bill Peckham | d52fd9b | 2019-04-16 10:06:13 -0700 | [diff] [blame] | 4364 | endif |
| 4365 | |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4366 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Colin Cross | 43f2eb2 | 2020-08-26 18:41:29 -0700 | [diff] [blame] | 4367 | MK_VBMETA_BOOT_KERNEL_CMDLINE_SH := device/generic/goldfish/tools/mk_vbmeta_boot_params.sh |
| 4368 | $(BUILT_TARGET_FILES_PACKAGE): $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4369 | endif |
| 4370 | |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 4371 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 4372 | $(BUILT_TARGET_FILES_PACKAGE): $(INSTALLED_BOOTLOADER_MODULE) |
Ram Muthiah | 9fe40ca | 2020-08-31 12:29:09 -0700 | [diff] [blame] | 4373 | droidcore: $(INSTALLED_BOOTLOADER_MODULE) |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 4374 | endif |
| 4375 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4376 | # Depending on the various images guarantees that the underlying |
| 4377 | # directories are up-to-date. |
| 4378 | $(BUILT_TARGET_FILES_PACKAGE): \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4379 | $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 4380 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4381 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4382 | $(INSTALLED_DTBOIMAGE_TARGET) \ |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4383 | $(INSTALLED_CUSTOMIMAGES_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4384 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
| 4385 | $(INSTALLED_KERNEL_TARGET) \ |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 4386 | $(INSTALLED_DTBIMAGE_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4387 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 4388 | $(BOARD_PREBUILT_DTBOIMAGE) \ |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 4389 | $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) \ |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 4390 | $(BOARD_RECOVERY_ACPIO) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4391 | $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 4392 | $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 4393 | $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4394 | $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4395 | $(PRODUCT_ODM_BASE_FS_PATH) \ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4396 | $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4397 | $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4398 | $(LPMAKE) \ |
| 4399 | $(SELINUX_FC) \ |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4400 | $(INSTALLED_MISC_INFO_TARGET) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4401 | $(APKCERTS_FILE) \ |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 4402 | $(SOONG_APEX_KEYS_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4403 | $(SOONG_ZIP) \ |
| 4404 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
Tao Bao | c1966a8 | 2019-06-25 11:42:12 -0700 | [diff] [blame] | 4405 | $(ADD_IMG_TO_TARGET_FILES) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 4406 | $(MAKE_RECOVERY_PATCH) \ |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4407 | $(BUILT_KERNEL_CONFIGS_FILE) \ |
| 4408 | $(BUILT_KERNEL_VERSION_FILE) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4409 | | $(ACP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4410 | @echo "Package target files: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4411 | $(hide) rm -rf $@ $@.list $(zip_root) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4412 | $(hide) mkdir -p $(dir $@) $(zip_root) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4413 | ifneq (,$(INSTALLED_RECOVERYIMAGE_TARGET)$(filter true,$(BOARD_USES_RECOVERY_AS_BOOT))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4414 | @# Components of the recovery image |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4415 | $(hide) mkdir -p $(zip_root)/$(PRIVATE_RECOVERY_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4416 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4417 | $(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/$(PRIVATE_RECOVERY_OUT)/RAMDISK) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4418 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 4419 | ifneq (,$(filter true,$(BOARD_USES_RECOVERY_AS_BOOT))) |
Steve Muckle | b3dda77 | 2020-03-11 16:03:07 -0700 | [diff] [blame] | 4420 | cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/ |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 4421 | else # BOARD_USES_RECOVERY_AS_BOOT not true |
| 4422 | cp $(firstword $(INSTALLED_KERNEL_TARGET)) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/kernel |
| 4423 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4424 | endif |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 4425 | ifeq (truetrue,$(strip $(BUILDING_VENDOR_BOOT_IMAGE))$(strip $(AB_OTA_UPDATER))) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4426 | echo "$(GENERIC_KERNEL_CMDLINE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/cmdline |
Steve Muckle | f84668e | 2020-03-16 19:13:46 -0700 | [diff] [blame] | 4427 | else # not (BUILDING_VENDOR_BOOT_IMAGE and AB_OTA_UPDATER) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4428 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4429 | 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] | 4430 | endif |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 4431 | ifdef BOARD_INCLUDE_RECOVERY_DTBO |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 4432 | ifdef BOARD_PREBUILT_RECOVERY_DTBOIMAGE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4433 | cp $(BOARD_PREBUILT_RECOVERY_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | a941899 | 2019-02-04 10:35:25 -0800 | [diff] [blame] | 4434 | else |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4435 | cp $(BOARD_PREBUILT_DTBOIMAGE) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_dtbo |
Hridya Valsaraju | e74a38b | 2018-03-21 12:15:11 -0700 | [diff] [blame] | 4436 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4437 | endif # BOARD_INCLUDE_RECOVERY_DTBO |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 4438 | ifdef BOARD_INCLUDE_RECOVERY_ACPIO |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4439 | cp $(BOARD_RECOVERY_ACPIO) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/recovery_acpio |
Chen, ZhiminX | 752439b | 2018-09-23 22:10:47 +0800 | [diff] [blame] | 4440 | endif |
Hridya Valsaraju | 59eaef0 | 2019-05-20 11:10:24 -0700 | [diff] [blame] | 4441 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4442 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/$(PRIVATE_RECOVERY_OUT)/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 4443 | endif |
Dan Willemsen | c1f17ff | 2016-10-05 16:57:27 -0700 | [diff] [blame] | 4444 | ifdef INTERNAL_KERNEL_CMDLINE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4445 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/cmdline |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4446 | endif |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4447 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4448 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4449 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4450 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4451 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/$(PRIVATE_RECOVERY_OUT)/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4452 | endif |
Colin Cross | a6de2ad | 2020-08-26 18:40:19 -0700 | [diff] [blame] | 4453 | endif # not (BUILDING_VENDOR_BOOT_IMAGE and AB_OTA_UPDATER) |
Daniel Rosenberg | d80bef2 | 2015-11-10 19:21:34 -0800 | [diff] [blame] | 4454 | 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] | 4455 | @# Components of the boot image |
| 4456 | $(hide) mkdir -p $(zip_root)/BOOT |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 4457 | $(hide) mkdir -p $(zip_root)/ROOT |
| 4458 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4459 | $(TARGET_ROOT_OUT),$(zip_root)/ROOT) |
Tom Cherry | 3871f0f | 2018-11-06 14:23:44 -0800 | [diff] [blame] | 4460 | @# If we are using recovery as boot, this is already done when processing recovery. |
| 4461 | ifneq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 4462 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4463 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4464 | $(TARGET_RAMDISK_OUT),$(zip_root)/BOOT/RAMDISK) |
Tao Bao | 62bd479 | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 4465 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4466 | ifdef INSTALLED_KERNEL_TARGET |
Steve Muckle | 04b6f05 | 2020-08-09 14:36:56 -0700 | [diff] [blame] | 4467 | $(hide) cp $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4468 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4469 | ifndef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4470 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4471 | cp $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4472 | endif |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 4473 | ifdef INSTALLED_DTBIMAGE_TARGET |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4474 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/BOOT/dtb |
Hridya Valsaraju | 9683b2f | 2019-01-22 18:08:59 -0800 | [diff] [blame] | 4475 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4476 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4477 | ifdef BOARD_KERNEL_BASE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4478 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 4479 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4480 | ifdef BOARD_KERNEL_PAGESIZE |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4481 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 4482 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4483 | else # INSTALLED_VENDOR_BOOTIMAGE_TARGET defined |
| 4484 | echo "$(GENERIC_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
| 4485 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET defined |
| 4486 | endif # BOARD_USES_RECOVERY_AS_BOOT not true |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 4487 | $(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\ |
| 4488 | mkdir -p $(zip_root)/RADIO; \ |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4489 | cp $(t) $(zip_root)/RADIO/$(notdir $(t));) |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4490 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 4491 | mkdir -p $(zip_root)/VENDOR_BOOT |
| 4492 | $(call package_files-copy-root, \ |
| 4493 | $(TARGET_VENDOR_RAMDISK_OUT),$(zip_root)/VENDOR_BOOT/RAMDISK) |
| 4494 | ifdef INSTALLED_DTBIMAGE_TARGET |
| 4495 | cp $(INSTALLED_DTBIMAGE_TARGET) $(zip_root)/VENDOR_BOOT/dtb |
| 4496 | endif |
| 4497 | ifdef BOARD_KERNEL_BASE |
| 4498 | echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/VENDOR_BOOT/base |
| 4499 | endif |
| 4500 | ifdef BOARD_KERNEL_PAGESIZE |
| 4501 | echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/VENDOR_BOOT/pagesize |
| 4502 | endif |
| 4503 | echo "$(INTERNAL_KERNEL_CMDLINE)" > $(zip_root)/VENDOR_BOOT/vendor_cmdline |
| 4504 | endif # INSTALLED_VENDOR_BOOTIMAGE_TARGET |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4505 | ifdef BUILDING_SYSTEM_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4506 | @# Contents of the system image |
| 4507 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4508 | $(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4509 | endif |
| 4510 | ifdef BUILDING_USERDATA_IMAGE |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4511 | @# Contents of the data image |
| 4512 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4513 | $(TARGET_OUT_DATA),$(zip_root)/DATA) |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4514 | endif |
| 4515 | ifdef BUILDING_VENDOR_IMAGE |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 4516 | @# Contents of the vendor image |
| 4517 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4518 | $(TARGET_OUT_VENDOR),$(zip_root)/VENDOR) |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 4519 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4520 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4521 | @# Contents of the product image |
| 4522 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4523 | $(TARGET_OUT_PRODUCT),$(zip_root)/PRODUCT) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4524 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4525 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 4526 | @# Contents of the system_ext image |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4527 | $(hide) $(call package_files-copy-root, \ |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4528 | $(TARGET_OUT_SYSTEM_EXT),$(zip_root)/SYSTEM_EXT) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4529 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4530 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4531 | @# Contents of the odm image |
| 4532 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4533 | $(TARGET_OUT_ODM),$(zip_root)/ODM) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4534 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4535 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 4536 | @# Contents of the vendor_dlkm image |
| 4537 | $(hide) $(call package_files-copy-root, \ |
| 4538 | $(TARGET_OUT_VENDOR_DLKM),$(zip_root)/VENDOR_DLKM) |
| 4539 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4540 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 4541 | @# Contents of the odm_dlkm image |
| 4542 | $(hide) $(call package_files-copy-root, \ |
| 4543 | $(TARGET_OUT_ODM_DLKM),$(zip_root)/ODM_DLKM) |
| 4544 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4545 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 4546 | @# Contents of the system_other image |
| 4547 | $(hide) $(call package_files-copy-root, \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4548 | $(TARGET_OUT_SYSTEM_OTHER),$(zip_root)/SYSTEM_OTHER) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 4549 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4550 | @# Extra contents of the OTA package |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4551 | $(hide) mkdir -p $(zip_root)/OTA |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4552 | $(hide) cp $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/ |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4553 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 4554 | ifneq ($(built_ota_tools),) |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4555 | $(hide) mkdir -p $(zip_root)/OTA/bin |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4556 | $(hide) cp $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/ |
Steve Fung | 48e49f5 | 2015-10-01 23:53:31 -0700 | [diff] [blame] | 4557 | endif |
Ying Wang | 03b6e8b | 2015-12-07 10:45:19 -0800 | [diff] [blame] | 4558 | endif |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 4559 | @# 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] | 4560 | @# build them. |
| 4561 | $(hide) mkdir -p $(zip_root)/META |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4562 | $(hide) cp $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt |
Jiyong Park | bcc8d8a | 2019-02-18 15:21:19 +0900 | [diff] [blame] | 4563 | $(hide) cp $(SOONG_APEX_KEYS_FILE) $(zip_root)/META/apexkeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4564 | ifneq ($(tool_extension),) |
| 4565 | $(hide) cp $(PRIVATE_TOOL_EXTENSION) $(zip_root)/META/ |
| 4566 | endif |
Ying Wang | 0eabd4f | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 4567 | $(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4568 | $(hide) cp $(SELINUX_FC) $(zip_root)/META/file_contexts.bin |
Daniel Norman | e1e4808 | 2019-06-27 13:55:23 -0700 | [diff] [blame] | 4569 | $(hide) cp $(INSTALLED_MISC_INFO_TARGET) $(zip_root)/META/misc_info.txt |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4570 | ifneq ($(PRODUCT_SYSTEM_BASE_FS_PATH),) |
| 4571 | $(hide) cp $(PRODUCT_SYSTEM_BASE_FS_PATH) \ |
| 4572 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 4573 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4574 | ifneq ($(PRODUCT_VENDOR_BASE_FS_PATH),) |
| 4575 | $(hide) cp $(PRODUCT_VENDOR_BASE_FS_PATH) \ |
| 4576 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_BASE_FS_PATH)) |
Tao Bao | f54216f | 2016-03-29 15:12:37 -0700 | [diff] [blame] | 4577 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4578 | ifneq ($(PRODUCT_PRODUCT_BASE_FS_PATH),) |
| 4579 | $(hide) cp $(PRODUCT_PRODUCT_BASE_FS_PATH) \ |
| 4580 | $(zip_root)/META/$(notdir $(PRODUCT_PRODUCT_BASE_FS_PATH)) |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4581 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4582 | ifneq ($(PRODUCT_SYSTEM_EXT_BASE_FS_PATH),) |
| 4583 | $(hide) cp $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH) \ |
| 4584 | $(zip_root)/META/$(notdir $(PRODUCT_SYSTEM_EXT_BASE_FS_PATH)) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4585 | endif |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 4586 | ifneq ($(PRODUCT_ODM_BASE_FS_PATH),) |
| 4587 | $(hide) cp $(PRODUCT_ODM_BASE_FS_PATH) \ |
| 4588 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_BASE_FS_PATH)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4589 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4590 | ifneq ($(PRODUCT_VENDOR_DLKM_BASE_FS_PATH),) |
| 4591 | $(hide) cp $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH) \ |
| 4592 | $(zip_root)/META/$(notdir $(PRODUCT_VENDOR_DLKM_BASE_FS_PATH)) |
| 4593 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4594 | ifneq ($(PRODUCT_ODM_DLKM_BASE_FS_PATH),) |
| 4595 | $(hide) cp $(PRODUCT_ODM_DLKM_BASE_FS_PATH) \ |
| 4596 | $(zip_root)/META/$(notdir $(PRODUCT_ODM_DLKM_BASE_FS_PATH)) |
| 4597 | endif |
Yifan Hong | 65afc07 | 2020-04-17 10:08:10 -0700 | [diff] [blame] | 4598 | ifeq ($(TARGET_OTA_ALLOW_NON_AB),true) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 4599 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Tao Bao | cf821fc | 2019-06-24 12:39:10 -0700 | [diff] [blame] | 4600 | $(hide) PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
Tao Bao | e11a460 | 2019-08-06 23:21:23 -0700 | [diff] [blame] | 4601 | $(MAKE_RECOVERY_PATCH) $(zip_root) $(zip_root) |
Tao Bao | cbc6dc2 | 2015-08-18 18:03:56 -0700 | [diff] [blame] | 4602 | endif |
Bill Peckham | c0f413f | 2019-11-07 11:27:02 -0800 | [diff] [blame] | 4603 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 4604 | ifeq ($(AB_OTA_UPDATER),true) |
| 4605 | @# 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] | 4606 | $(hide) cp $(TOPDIR)system/update_engine/update_engine.conf $(zip_root)/META/update_engine_config.txt |
Alex Deymo | 49be2b1 | 2015-10-22 18:15:27 -0700 | [diff] [blame] | 4607 | $(hide) for part in $(AB_OTA_PARTITIONS); do \ |
Alex Deymo | 8925d33 | 2015-10-01 17:38:09 -0700 | [diff] [blame] | 4608 | echo "$${part}" >> $(zip_root)/META/ab_partitions.txt; \ |
| 4609 | done |
Sen Jiang | 8f22e2a | 2015-11-12 13:53:25 -0800 | [diff] [blame] | 4610 | $(hide) for conf in $(AB_OTA_POSTINSTALL_CONFIG); do \ |
| 4611 | echo "$${conf}" >> $(zip_root)/META/postinstall_config.txt; \ |
| 4612 | done |
Bertrand SIMONNET | 4af7259 | 2015-10-08 15:32:40 -0700 | [diff] [blame] | 4613 | ifdef OSRELEASED_DIRECTORY |
Dan Willemsen | 653bea9 | 2017-03-21 15:47:37 -0700 | [diff] [blame] | 4614 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_id $(zip_root)/META/product_id.txt |
| 4615 | $(hide) cp $(TARGET_OUT_OEM)/$(OSRELEASED_DIRECTORY)/product_version $(zip_root)/META/product_version.txt |
| 4616 | $(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] | 4617 | endif |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 4618 | endif |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 4619 | ifeq ($(BREAKPAD_GENERATE_SYMBOLS),true) |
Alex Deymo | 70067ac | 2015-09-29 19:05:37 -0700 | [diff] [blame] | 4620 | @# If breakpad symbols have been generated, add them to the zip. |
Dan Willemsen | 288bedf | 2019-05-28 15:36:47 -0700 | [diff] [blame] | 4621 | $(hide) cp -R $(TARGET_OUT_BREAKPAD) $(zip_root)/BREAKPAD |
Steve Fung | dfbab49 | 2015-09-24 18:12:33 -0700 | [diff] [blame] | 4622 | endif |
Dan Willemsen | 6c3e79b | 2016-06-17 14:07:37 -0700 | [diff] [blame] | 4623 | ifdef BOARD_PREBUILT_VENDORIMAGE |
| 4624 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 4625 | $(hide) cp $(INSTALLED_VENDORIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 4626 | endif |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4627 | ifdef BOARD_PREBUILT_PRODUCTIMAGE |
| 4628 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 4629 | $(hide) cp $(INSTALLED_PRODUCTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 4630 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4631 | ifdef BOARD_PREBUILT_SYSTEM_EXTIMAGE |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4632 | $(hide) mkdir -p $(zip_root)/IMAGES |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4633 | $(hide) cp $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(zip_root)/IMAGES/ |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 4634 | endif |
Michael Schwartz | 0dc6f21 | 2017-07-18 10:05:13 -0700 | [diff] [blame] | 4635 | ifdef BOARD_PREBUILT_BOOTIMAGE |
| 4636 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 4637 | $(hide) cp $(INSTALLED_BOOTIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 4638 | endif |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4639 | ifdef BOARD_PREBUILT_ODMIMAGE |
| 4640 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 4641 | $(hide) cp $(INSTALLED_ODMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 4642 | endif |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 4643 | ifdef BOARD_PREBUILT_VENDOR_DLKMIMAGE |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4644 | $(hide) mkdir -p $(zip_root)/IMAGES |
Colin Cross | 6af7cbe | 2020-08-26 18:41:04 -0700 | [diff] [blame] | 4645 | $(hide) cp $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
| 4646 | endif |
| 4647 | ifdef BOARD_PREBUILT_ODM_DLKMIMAGE |
| 4648 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 4649 | $(hide) cp $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(zip_root)/IMAGES/ |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4650 | endif |
Yueyao Zhu | 889ee5e | 2017-05-12 17:50:46 -0700 | [diff] [blame] | 4651 | ifdef BOARD_PREBUILT_DTBOIMAGE |
Tao Bao | c633ed0 | 2017-05-30 21:46:33 -0700 | [diff] [blame] | 4652 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 4653 | $(hide) cp $(INSTALLED_DTBOIMAGE_TARGET) $(zip_root)/PREBUILT_IMAGES/ |
Bowgo Tsai | 3e599ea | 2017-05-26 18:30:04 +0800 | [diff] [blame] | 4654 | endif # BOARD_PREBUILT_DTBOIMAGE |
Ram Muthiah | 0c4a352 | 2020-08-27 00:54:13 +0000 | [diff] [blame] | 4655 | ifdef BOARD_PREBUILT_BOOTLOADER |
| 4656 | $(hide) mkdir -p $(zip_root)/IMAGES |
| 4657 | $(hide) cp $(INSTALLED_BOOTLOADER_MODULE) $(zip_root)/IMAGES/ |
| 4658 | endif |
Hongguang Chen | f23364d | 2020-04-27 18:36:36 -0700 | [diff] [blame] | 4659 | ifneq ($(strip $(BOARD_CUSTOMIMAGES_PARTITION_LIST)),) |
| 4660 | $(hide) mkdir -p $(zip_root)/PREBUILT_IMAGES |
| 4661 | $(hide) $(foreach partition,$(BOARD_CUSTOMIMAGES_PARTITION_LIST), \ |
| 4662 | $(foreach image,$(BOARD_AVB_$(call to-upper,$(partition))_IMAGE_LIST),cp $(image) $(zip_root)/PREBUILT_IMAGES/;)) |
| 4663 | endif # BOARD_CUSTOMIMAGES_PARTITION_LIST |
Tao Bao | 95a95c3 | 2017-06-16 15:30:23 -0700 | [diff] [blame] | 4664 | @# The radio images in BOARD_PACK_RADIOIMAGES will be additionally copied from RADIO/ into |
| 4665 | @# IMAGES/, which then will be added into <product>-img.zip. Such images must be listed in |
| 4666 | @# INSTALLED_RADIOIMAGE_TARGET. |
| 4667 | $(hide) $(foreach part,$(BOARD_PACK_RADIOIMAGES), \ |
| 4668 | echo $(part) >> $(zip_root)/META/pack_radioimages.txt;) |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4669 | @# Run fs_config on all the system, vendor, boot ramdisk, |
| 4670 | @# and recovery ramdisk files in the zip, and save the output |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4671 | ifdef BUILDING_SYSTEM_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4672 | $(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] | 4673 | endif |
| 4674 | ifdef BUILDING_VENDOR_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4675 | $(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.txt |
| 4676 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4677 | ifdef BUILDING_PRODUCT_IMAGE |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 4678 | $(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_config.txt |
| 4679 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 4680 | ifdef BUILDING_SYSTEM_EXT_IMAGE |
| 4681 | $(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] | 4682 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4683 | ifdef BUILDING_ODM_IMAGE |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 4684 | $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt |
| 4685 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 4686 | ifdef BUILDING_VENDOR_DLKM_IMAGE |
| 4687 | $(hide) $(call fs_config,$(zip_root)/VENDOR_DLKM,vendor_dlkm/) > $(zip_root)/META/vendor_dlkm_filesystem_config.txt |
| 4688 | endif |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 4689 | ifdef BUILDING_ODM_DLKM_IMAGE |
| 4690 | $(hide) $(call fs_config,$(zip_root)/ODM_DLKM,odm_dlkm/) > $(zip_root)/META/odm_dlkm_filesystem_config.txt |
| 4691 | endif |
Tom Cherry | d14b895 | 2018-08-09 14:26:00 -0700 | [diff] [blame] | 4692 | @# ROOT always contains the files for the root under normal boot. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4693 | $(hide) $(call fs_config,$(zip_root)/ROOT,) > $(zip_root)/META/root_filesystem_config.txt |
Tao Bao | da01b21 | 2018-02-28 21:20:08 -0800 | [diff] [blame] | 4694 | ifeq ($(BOARD_USES_RECOVERY_AS_BOOT),true) |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 4695 | @# BOOT/RAMDISK exists and contains the ramdisk for recovery if using BOARD_USES_RECOVERY_AS_BOOT. |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4696 | $(hide) $(call fs_config,$(zip_root)/BOOT/RAMDISK,) > $(zip_root)/META/boot_filesystem_config.txt |
Tao Bao | da01b21 | 2018-02-28 21:20:08 -0800 | [diff] [blame] | 4697 | endif |
Steve Muckle | e1b1086 | 2019-07-10 10:49:37 -0700 | [diff] [blame] | 4698 | ifneq ($(INSTALLED_VENDOR_BOOTIMAGE_TARGET),) |
| 4699 | $(call fs_config,$(zip_root)/VENDOR_BOOT/RAMDISK,) > $(zip_root)/META/vendor_boot_filesystem_config.txt |
| 4700 | endif |
Tom Cherry | 2929cad | 2018-09-20 11:04:37 -0700 | [diff] [blame] | 4701 | ifneq ($(BOARD_BUILD_SYSTEM_ROOT_IMAGE),true) |
| 4702 | @# BOOT/RAMDISK also exists and contains the first stage ramdisk if not using BOARD_BUILD_SYSTEM_ROOT_IMAGE. |
Tao Bao | da01b21 | 2018-02-28 21:20:08 -0800 | [diff] [blame] | 4703 | $(hide) $(call fs_config,$(zip_root)/BOOT/RAMDISK,) > $(zip_root)/META/boot_filesystem_config.txt |
| 4704 | endif |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4705 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
| 4706 | $(hide) $(call fs_config,$(zip_root)/RECOVERY/RAMDISK,) > $(zip_root)/META/recovery_filesystem_config.txt |
| 4707 | endif |
Dan Willemsen | 6749520 | 2019-01-16 12:42:05 -0800 | [diff] [blame] | 4708 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
Dan Willemsen | 2a5a34f | 2017-03-05 19:56:52 -0800 | [diff] [blame] | 4709 | $(hide) $(call fs_config,$(zip_root)/SYSTEM_OTHER,system/) > $(zip_root)/META/system_other_filesystem_config.txt |
| 4710 | endif |
Michael Schwartz | 4d9cb56 | 2017-04-04 13:01:18 -0700 | [diff] [blame] | 4711 | @# Metadata for compatibility verification. |
Yifan Hong | e3ba82c | 2019-08-21 13:29:30 -0700 | [diff] [blame] | 4712 | ifdef BUILT_KERNEL_CONFIGS_FILE |
| 4713 | $(hide) cp $(BUILT_KERNEL_CONFIGS_FILE) $(zip_root)/META/kernel_configs.txt |
| 4714 | endif |
| 4715 | ifdef BUILT_KERNEL_VERSION_FILE |
| 4716 | $(hide) cp $(BUILT_KERNEL_VERSION_FILE) $(zip_root)/META/kernel_version.txt |
| 4717 | endif |
Yifan Hong | cb8e275 | 2019-11-01 17:03:57 -0700 | [diff] [blame] | 4718 | rm -rf $(zip_root)/META/dynamic_partitions_info.txt |
| 4719 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 4720 | $(call dump-dynamic-partitions-info, $(zip_root)/META/dynamic_partitions_info.txt) |
| 4721 | endif |
Tao Bao | cbd6d49 | 2019-10-07 22:46:02 -0700 | [diff] [blame] | 4722 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH MKBOOTIMG=$(MKBOOTIMG) \ |
| 4723 | $(ADD_IMG_TO_TARGET_FILES) -a -v -p $(HOST_OUT) $(zip_root) |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 4724 | ifeq ($(BUILD_QEMU_IMAGES),true) |
| 4725 | $(hide) AVBTOOL=$(AVBTOOL) $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(zip_root)/IMAGES/vbmeta.img \ |
| 4726 | $(zip_root)/IMAGES/system.img $(zip_root)/IMAGES/VerifiedBootParams.textproto |
| 4727 | endif |
Alex Deymo | 92cfd6f | 2016-01-26 18:47:44 -0800 | [diff] [blame] | 4728 | @# Zip everything up, preserving symlinks and placing META/ files first to |
| 4729 | @# help early validation of the .zip file while uploading it. |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4730 | $(hide) find $(zip_root)/META | sort >$@.list |
Nan Zhang | cabecd9 | 2017-03-20 18:22:43 -0700 | [diff] [blame] | 4731 | $(hide) find $(zip_root) -path $(zip_root)/META -prune -o -print | sort >>$@.list |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4732 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(zip_root) -l $@.list |
Doug Zongker | 283e2a1 | 2010-03-15 17:52:32 -0700 | [diff] [blame] | 4733 | |
Ying Wang | a0febe5 | 2013-03-20 11:02:05 -0700 | [diff] [blame] | 4734 | .PHONY: target-files-package |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4735 | target-files-package: $(BUILT_TARGET_FILES_PACKAGE) |
| 4736 | |
Ying Wang | 4709d7c | 2014-04-14 17:25:43 -0700 | [diff] [blame] | 4737 | $(call dist-for-goals, target-files-package, $(BUILT_TARGET_FILES_PACKAGE)) |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 4738 | |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 4739 | # ----------------------------------------------------------------- |
| 4740 | # NDK Sysroot Package |
| 4741 | NDK_SYSROOT_TARGET := $(PRODUCT_OUT)/ndk_sysroot.tar.bz2 |
Dan Willemsen | 14e1026 | 2018-06-17 21:54:21 -0700 | [diff] [blame] | 4742 | $(NDK_SYSROOT_TARGET): $(SOONG_OUT_DIR)/ndk.timestamp |
Dan Albert | 4d32333 | 2016-10-14 13:23:06 -0700 | [diff] [blame] | 4743 | @echo Package NDK sysroot... |
| 4744 | $(hide) tar cjf $@ -C $(SOONG_OUT_DIR) ndk |
| 4745 | |
| 4746 | $(call dist-for-goals,sdk,$(NDK_SYSROOT_TARGET)) |
| 4747 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 4748 | ifeq ($(build_ota_package),true) |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 4749 | # ----------------------------------------------------------------- |
| 4750 | # OTA update package |
| 4751 | |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4752 | # $(1): output file |
| 4753 | # $(2): additional args |
| 4754 | define build-ota-package-target |
Tao Bao | c931547 | 2019-06-25 12:17:08 -0700 | [diff] [blame] | 4755 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$$PATH \ |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 4756 | $(OTA_FROM_TARGET_FILES) \ |
| 4757 | --verbose \ |
| 4758 | --extracted_input_target_files $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) \ |
| 4759 | --path $(HOST_OUT) \ |
| 4760 | $(if $(OEM_OTA_CONFIG), --oem_settings $(OEM_OTA_CONFIG)) \ |
| 4761 | $(2) \ |
| 4762 | $(BUILT_TARGET_FILES_PACKAGE) $(1) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4763 | endef |
| 4764 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 4765 | name := $(TARGET_PRODUCT) |
| 4766 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4767 | name := $(name)_debug |
| 4768 | endif |
| 4769 | name := $(name)-ota-$(FILE_NAME_TAG) |
| 4770 | |
| 4771 | INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 4772 | INTERNAL_OTA_METADATA := $(PRODUCT_OUT)/ota_metadata |
| 4773 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 4774 | $(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 4775 | $(INTERNAL_OTA_PACKAGE_TARGET): .KATI_IMPLICIT_OUTPUTS := $(INTERNAL_OTA_METADATA) |
Tao Bao | 8821d64 | 2019-08-05 12:05:45 -0700 | [diff] [blame] | 4776 | $(INTERNAL_OTA_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTA_FROM_TARGET_FILES) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 4777 | @echo "Package OTA: $@" |
xunchang | 3b548b0 | 2019-02-19 14:52:33 -0800 | [diff] [blame] | 4778 | $(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] | 4779 | |
| 4780 | .PHONY: otapackage |
| 4781 | otapackage: $(INTERNAL_OTA_PACKAGE_TARGET) |
| 4782 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 4783 | ifeq ($(BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE),true) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4784 | name := $(TARGET_PRODUCT) |
| 4785 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4786 | name := $(name)_debug |
| 4787 | endif |
| 4788 | name := $(name)-ota-retrofit-$(FILE_NAME_TAG) |
| 4789 | |
| 4790 | INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4791 | $(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] | 4792 | $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET): \ |
| 4793 | $(BUILT_TARGET_FILES_PACKAGE) \ |
| 4794 | $(OTA_FROM_TARGET_FILES) |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4795 | @echo "Package OTA (retrofit dynamic partitions): $@" |
| 4796 | $(call build-ota-package-target,$@,-k $(KEY_CERT_PAIR) --retrofit_dynamic_partitions) |
| 4797 | |
| 4798 | .PHONY: otardppackage |
| 4799 | |
| 4800 | otapackage otardppackage: $(INTERNAL_OTA_RETROFIT_DYNAMIC_PARTITIONS_PACKAGE_TARGET) |
| 4801 | |
Tao Bao | 519d182 | 2018-12-27 12:47:23 -0800 | [diff] [blame] | 4802 | endif # BOARD_BUILD_RETROFIT_DYNAMIC_PARTITIONS_OTA_PACKAGE |
Yifan Hong | 50e7954 | 2018-11-08 17:44:12 -0800 | [diff] [blame] | 4803 | |
Ying Wang | 09c4b68 | 2015-08-11 11:24:19 -0700 | [diff] [blame] | 4804 | endif # build_ota_package |
Ying Wang | f8824af | 2014-06-03 14:07:27 -0700 | [diff] [blame] | 4805 | |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 4806 | # ----------------------------------------------------------------- |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 4807 | # A zip of the appcompat directory containing logs |
| 4808 | APPCOMPAT_ZIP := $(PRODUCT_OUT)/appcompat.zip |
| 4809 | # 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] | 4810 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 4811 | $(APPCOMPAT_ZIP): $(FULL_SYSTEMIMAGE_DEPS) \ |
| 4812 | $(INTERNAL_RAMDISK_FILES) \ |
| 4813 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 4814 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 4815 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 4816 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 4817 | endif |
| 4818 | $(APPCOMPAT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,appcompat)/filelist |
| 4819 | $(APPCOMPAT_ZIP): $(SOONG_ZIP) |
| 4820 | @echo "appcompat logs: $@" |
| 4821 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 4822 | $(hide) mkdir -p $(dir $@) $(PRODUCT_OUT)/appcompat $(dir $(PRIVATE_LIST_FILE)) |
| 4823 | $(hide) find $(PRODUCT_OUT)/appcompat | sort >$(PRIVATE_LIST_FILE) |
| 4824 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(PRODUCT_OUT)/appcompat -l $(PRIVATE_LIST_FILE) |
| 4825 | |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 4826 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4827 | # A zip of the symbols directory. Keep the full paths to make it |
| 4828 | # more obvious where these files came from. |
| 4829 | # |
| 4830 | name := $(TARGET_PRODUCT) |
| 4831 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4832 | name := $(name)_debug |
| 4833 | endif |
| 4834 | name := $(name)-symbols-$(FILE_NAME_TAG) |
| 4835 | |
| 4836 | SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 4837 | # 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] | 4838 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 4839 | $(SYMBOLS_ZIP): $(FULL_SYSTEMIMAGE_DEPS) \ |
| 4840 | $(INTERNAL_RAMDISK_FILES) \ |
| 4841 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 4842 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 4843 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 4844 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 4845 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 4846 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 4847 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4848 | $(updater_dep) |
Ying Wang | da3b972 | 2014-10-24 11:36:59 -0700 | [diff] [blame] | 4849 | endif |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4850 | $(SYMBOLS_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,symbols)/filelist |
| 4851 | $(SYMBOLS_ZIP): $(SOONG_ZIP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4852 | @echo "Package symbols: $@" |
Dan Willemsen | 5e29cad | 2016-08-06 20:15:06 -0700 | [diff] [blame] | 4853 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 4854 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_UNSTRIPPED) $(dir $(PRIVATE_LIST_FILE)) |
Jiyong Park | 88e0980 | 2019-03-21 15:19:16 +0900 | [diff] [blame] | 4855 | $(hide) find -L $(TARGET_OUT_UNSTRIPPED) -type f | sort >$(PRIVATE_LIST_FILE) |
Colin Cross | 8d34244 | 2019-05-07 11:47:13 -0700 | [diff] [blame] | 4856 | $(hide) $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(OUT_DIR)/.. -l $(PRIVATE_LIST_FILE) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 4857 | # ----------------------------------------------------------------- |
| 4858 | # A zip of the coverage directory. |
| 4859 | # |
Oliver Nguyen | e91ab23 | 2019-04-30 15:14:44 -0700 | [diff] [blame] | 4860 | name := gcov-report-files-all |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 4861 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4862 | name := $(name)_debug |
| 4863 | endif |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 4864 | COVERAGE_ZIP := $(PRODUCT_OUT)/$(name).zip |
Martin Stjernholm | 7a430fd | 2020-06-04 15:16:39 +0100 | [diff] [blame] | 4865 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 4866 | $(COVERAGE_ZIP): $(FULL_SYSTEMIMAGE_DEPS) \ |
| 4867 | $(INTERNAL_RAMDISK_FILES) \ |
| 4868 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 4869 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 4870 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 4871 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 4872 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 4873 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 4874 | $(INTERNAL_ODM_DLKMIMAGE_FILES) |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 4875 | endif |
| 4876 | $(COVERAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,coverage)/filelist |
| 4877 | $(COVERAGE_ZIP): $(SOONG_ZIP) |
| 4878 | @echo "Package coverage: $@" |
| 4879 | $(hide) rm -rf $@ $(PRIVATE_LIST_FILE) |
| 4880 | $(hide) mkdir -p $(dir $@) $(TARGET_OUT_COVERAGE) $(dir $(PRIVATE_LIST_FILE)) |
| 4881 | $(hide) find $(TARGET_OUT_COVERAGE) | sort >$(PRIVATE_LIST_FILE) |
| 4882 | $(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] | 4883 | |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 4884 | #------------------------------------------------------------------ |
| 4885 | # Export the LLVM profile data tool and dependencies for Clang coverage processing |
| 4886 | # |
| 4887 | ifeq (true,$(CLANG_COVERAGE)) |
| 4888 | LLVM_PROFDATA := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/bin/llvm-profdata |
| 4889 | LIBCXX := $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION)/lib64/libc++.so.1 |
| 4890 | PROFDATA_ZIP := $(PRODUCT_OUT)/llvm-profdata.zip |
| 4891 | $(PROFDATA_ZIP): $(SOONG_ZIP) |
| 4892 | $(hide) $(SOONG_ZIP) -d -o $@ -C $(LLVM_PREBUILTS_BASE)/linux-x86/$(LLVM_PREBUILTS_VERSION) -f $(LLVM_PROFDATA) -f $(LIBCXX) |
| 4893 | |
Kun Niu | d322d8d | 2020-05-14 16:32:29 -0700 | [diff] [blame] | 4894 | $(call dist-for-goals,droidcore apps_only,$(PROFDATA_ZIP)) |
Oliver Nguyen | b02f7db | 2019-12-11 14:55:52 -0800 | [diff] [blame] | 4895 | endif |
| 4896 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4897 | # ----------------------------------------------------------------- |
| 4898 | # A zip of the Android Apps. Not keeping full path so that we don't |
| 4899 | # include product names when distributing |
| 4900 | # |
| 4901 | name := $(TARGET_PRODUCT) |
| 4902 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 4903 | name := $(name)_debug |
| 4904 | endif |
| 4905 | name := $(name)-apps-$(FILE_NAME_TAG) |
| 4906 | |
| 4907 | APPS_ZIP := $(PRODUCT_OUT)/$(name).zip |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 4908 | $(APPS_ZIP): $(FULL_SYSTEMIMAGE_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 4909 | @echo "Package apps: $@" |
| 4910 | $(hide) rm -rf $@ |
| 4911 | $(hide) mkdir -p $(dir $@) |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 4912 | $(hide) apps_to_zip=`find $(TARGET_OUT_APPS) $(TARGET_OUT_APPS_PRIVILEGED) -mindepth 2 -maxdepth 3 -name "*.apk"`; \ |
| 4913 | if [ -z "$$apps_to_zip" ]; then \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4914 | echo "No apps to zip up. Generating empty apps archive." ; \ |
| 4915 | a=$$(mktemp /tmp/XXXXXXX) && touch $$a && zip $@ $$a && zip -d $@ $$a; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 4916 | else \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 4917 | zip -qjX $@ $$apps_to_zip; \ |
Gaurav Shah | 67c2ed3 | 2015-08-23 09:40:05 -0700 | [diff] [blame] | 4918 | fi |
Guang Zhu | 0198d6e | 2010-04-23 11:54:37 -0700 | [diff] [blame] | 4919 | |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 4920 | ifeq (true,$(EMMA_INSTRUMENT)) |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 4921 | #------------------------------------------------------------------ |
| 4922 | # An archive of classes for use in generating code-coverage reports |
| 4923 | # These are the uninstrumented versions of any classes that were |
| 4924 | # to be instrumented. |
Colin Cross | 6cdc5d2 | 2017-10-20 11:37:33 -0700 | [diff] [blame] | 4925 | # Any dependencies are set up later in build/make/core/main.mk. |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 4926 | |
Colin Cross | a6bc3a8 | 2017-09-27 14:28:41 -0700 | [diff] [blame] | 4927 | JACOCO_REPORT_CLASSES_ALL := $(PRODUCT_OUT)/jacoco-report-classes-all.jar |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 4928 | $(JACOCO_REPORT_CLASSES_ALL) : |
| 4929 | @echo "Collecting uninstrumented classes" |
Colin Cross | d81f4b3 | 2020-02-12 14:14:27 -0800 | [diff] [blame] | 4930 | find $(TARGET_COMMON_OUT_ROOT) $(HOST_COMMON_OUT_ROOT) -name "jacoco-report-classes.jar" 2>/dev/null | sort > $@.list |
| 4931 | $(SOONG_ZIP) -o $@ -L 0 -C $(OUT_DIR) -P out -l $@.list |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 4932 | |
Ying Wang | bc415dd | 2012-08-15 12:22:44 -0700 | [diff] [blame] | 4933 | endif # EMMA_INSTRUMENT=true |
| 4934 | |
Jeff Gaston | aaae43c | 2017-04-11 16:36:46 -0700 | [diff] [blame] | 4935 | |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 4936 | #------------------------------------------------------------------ |
| 4937 | # A zip of Proguard obfuscation dictionary files. |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 4938 | # |
Ying Wang | c62c92c | 2013-08-28 18:38:25 -0700 | [diff] [blame] | 4939 | PROGUARD_DICT_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict-$(FILE_NAME_TAG).zip |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 4940 | # 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] | 4941 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 4942 | $(PROGUARD_DICT_ZIP): \ |
Colin Cross | cda30c7 | 2020-08-26 18:43:21 -0700 | [diff] [blame] | 4943 | $(FULL_SYSTEMIMAGE_DEPS) \ |
| 4944 | $(INTERNAL_RAMDISK_FILES) \ |
| 4945 | $(INTERNAL_USERDATAIMAGE_FILES) \ |
| 4946 | $(INTERNAL_VENDORIMAGE_FILES) \ |
| 4947 | $(INTERNAL_PRODUCTIMAGE_FILES) \ |
| 4948 | $(INTERNAL_SYSTEM_EXTIMAGE_FILES) \ |
| 4949 | $(INTERNAL_ODMIMAGE_FILES) \ |
| 4950 | $(INTERNAL_VENDOR_DLKMIMAGE_FILES) \ |
| 4951 | $(INTERNAL_ODM_DLKMIMAGE_FILES) \ |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 4952 | $(updater_dep) |
| 4953 | endif |
| 4954 | $(PROGUARD_DICT_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard)/filelist |
| 4955 | $(PROGUARD_DICT_ZIP): $(SOONG_ZIP) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 4956 | @echo "Packaging Proguard obfuscation dictionary files." |
Colin Cross | 114e8df | 2019-09-05 17:19:35 -0700 | [diff] [blame] | 4957 | mkdir -p $(dir $@) $(TARGET_OUT_COMMON_INTERMEDIATES)/APPS $(dir $(PRIVATE_LIST_FILE)) |
| 4958 | find $(TARGET_OUT_COMMON_INTERMEDIATES)/APPS -name proguard_dictionary | \ |
| 4959 | sed -e 's/\(.*\)\/proguard_dictionary/\0\n\1\/classes.jar/' > $(PRIVATE_LIST_FILE) |
| 4960 | $(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(OUT_DIR)/.. -l $(PRIVATE_LIST_FILE) |
Ying Wang | ae9115a | 2013-08-22 20:52:47 -0700 | [diff] [blame] | 4961 | |
Colin Cross | a9b9e6e | 2020-08-14 17:43:35 -0700 | [diff] [blame] | 4962 | #------------------------------------------------------------------ |
| 4963 | # A zip of Proguard usage files. |
| 4964 | # |
| 4965 | PROGUARD_USAGE_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-usage-$(FILE_NAME_TAG).zip |
| 4966 | # For apps_only build we'll establish the dependency later in build/make/core/main.mk. |
| 4967 | ifeq (,$(TARGET_BUILD_UNBUNDLED)) |
| 4968 | $(PROGUARD_USAGE_ZIP): \ |
| 4969 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 4970 | $(INSTALLED_RAMDISK_TARGET) \ |
| 4971 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 4972 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 4973 | $(INSTALLED_VENDORIMAGE_TARGET) \ |
| 4974 | $(INSTALLED_PRODUCTIMAGE_TARGET) \ |
| 4975 | $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \ |
| 4976 | $(INSTALLED_ODMIMAGE_TARGET) \ |
| 4977 | $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \ |
| 4978 | $(INSTALLED_ODM_DLKMIMAGE_TARGET) \ |
| 4979 | $(updater_dep) |
| 4980 | endif |
| 4981 | $(PROGUARD_USAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard_usage)/filelist |
| 4982 | $(PROGUARD_USAGE_ZIP): $(MERGE_ZIPS) |
| 4983 | @echo "Packaging Proguard usage files." |
| 4984 | mkdir -p $(dir $@) $(TARGET_OUT_COMMON_INTERMEDIATES)/APPS $(dir $(PRIVATE_LIST_FILE)) |
| 4985 | find $(TARGET_OUT_COMMON_INTERMEDIATES)/APPS -name proguard_usage.zip > $(PRIVATE_LIST_FILE) |
| 4986 | $(MERGE_ZIPS) $@ @$(PRIVATE_LIST_FILE) |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 4987 | |
| 4988 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
| 4989 | |
| 4990 | # Dump variables used by build_super_image.py (for building super.img and super_empty.img). |
| 4991 | # $(1): output file |
| 4992 | define dump-super-image-info |
| 4993 | $(call dump-dynamic-partitions-info,$(1)) |
| 4994 | $(if $(filter true,$(AB_OTA_UPDATER)), \ |
| 4995 | echo "ab_update=true" >> $(1)) |
| 4996 | endef |
| 4997 | |
| 4998 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS |
| 4999 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5000 | # ----------------------------------------------------------------- |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5001 | # super partition image (dist) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5002 | |
| 5003 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 5004 | |
| 5005 | # BOARD_SUPER_PARTITION_SIZE must be defined to build super image. |
| 5006 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 5007 | |
| 5008 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5009 | |
| 5010 | # For real devices and for dist builds, build super image from target files to an intermediate directory. |
| 5011 | INTERNAL_SUPERIMAGE_DIST_TARGET := $(call intermediates-dir-for,PACKAGING,super.img)/super.img |
| 5012 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): extracted_input_target_files := $(patsubst %.zip,%,$(BUILT_TARGET_FILES_PACKAGE)) |
| 5013 | $(INTERNAL_SUPERIMAGE_DIST_TARGET): $(LPMAKE) $(BUILT_TARGET_FILES_PACKAGE) $(BUILD_SUPER_IMAGE) |
| 5014 | $(call pretty,"Target super fs image from target files: $@") |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 5015 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5016 | $(BUILD_SUPER_IMAGE) -v $(extracted_input_target_files) $@ |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5017 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5018 | # Skip packing it in dist package because it is in update package. |
| 5019 | ifneq (true,$(BOARD_SUPER_IMAGE_IN_UPDATE_PACKAGE)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5020 | $(call dist-for-goals,dist_files,$(INTERNAL_SUPERIMAGE_DIST_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5021 | endif |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5022 | |
| 5023 | .PHONY: superimage_dist |
| 5024 | superimage_dist: $(INTERNAL_SUPERIMAGE_DIST_TARGET) |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5025 | |
| 5026 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5027 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 5028 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5029 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5030 | # ----------------------------------------------------------------- |
| 5031 | # super partition image for development |
| 5032 | |
| 5033 | ifeq (true,$(PRODUCT_BUILD_SUPER_PARTITION)) |
| 5034 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
| 5035 | ifneq (true,$(PRODUCT_RETROFIT_DYNAMIC_PARTITIONS)) |
| 5036 | |
| 5037 | # Build super.img by using $(INSTALLED_*IMAGE_TARGET) to $(1) |
| 5038 | # $(1): built image path |
| 5039 | # $(2): misc_info.txt path; its contents should match expectation of build_super_image.py |
| 5040 | define build-superimage-target |
| 5041 | mkdir -p $(dir $(2)) |
| 5042 | rm -rf $(2) |
| 5043 | $(call dump-super-image-info,$(2)) |
| 5044 | $(foreach p,$(BOARD_SUPER_PARTITION_PARTITION_LIST), \ |
| 5045 | echo "$(p)_image=$(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)" >> $(2);) |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 5046 | $(if $(BUILDING_SYSTEM_OTHER_IMAGE), $(if $(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)), \ |
| 5047 | echo "system_other_image=$(INSTALLED_SYSTEMOTHERIMAGE_TARGET)" >> $(2);)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5048 | mkdir -p $(dir $(1)) |
| 5049 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5050 | $(BUILD_SUPER_IMAGE) -v $(2) $(1) |
| 5051 | endef |
| 5052 | |
| 5053 | INSTALLED_SUPERIMAGE_TARGET := $(PRODUCT_OUT)/super.img |
| 5054 | INSTALLED_SUPERIMAGE_DEPENDENCIES := $(LPMAKE) $(BUILD_SUPER_IMAGE) \ |
| 5055 | $(foreach p, $(BOARD_SUPER_PARTITION_PARTITION_LIST), $(INSTALLED_$(call to-upper,$(p))IMAGE_TARGET)) |
| 5056 | |
changho.shin | a8f9f11 | 2019-10-15 13:26:19 +0900 | [diff] [blame] | 5057 | ifdef BUILDING_SYSTEM_OTHER_IMAGE |
| 5058 | ifneq ($(filter system,$(BOARD_SUPER_PARTITION_PARTITION_LIST)),) |
| 5059 | INSTALLED_SUPERIMAGE_DEPENDENCIES += $(INSTALLED_SYSTEMOTHERIMAGE_TARGET) |
| 5060 | endif |
| 5061 | endif |
| 5062 | |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5063 | # If BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT is set, super.img is built from images in the |
| 5064 | # $(PRODUCT_OUT) directory, and is built to $(PRODUCT_OUT)/super.img. Also, it will |
| 5065 | # be built for non-dist builds. This is useful for devices that uses super.img directly, e.g. |
| 5066 | # virtual devices. |
| 5067 | ifeq (true,$(BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT)) |
| 5068 | $(INSTALLED_SUPERIMAGE_TARGET): $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 5069 | $(call pretty,"Target super fs image for debug: $@") |
| 5070 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 5071 | $(call intermediates-dir-for,PACKAGING,superimage_debug)/misc_info.txt) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5072 | |
| 5073 | droidcore: $(INSTALLED_SUPERIMAGE_TARGET) |
| 5074 | |
| 5075 | # For devices that uses super image directly, the superimage target points to the file in $(PRODUCT_OUT). |
| 5076 | .PHONY: superimage |
| 5077 | superimage: $(INSTALLED_SUPERIMAGE_TARGET) |
Isaac Chen | 52cc60c | 2019-08-14 18:52:13 +0800 | [diff] [blame] | 5078 | |
| 5079 | $(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] | 5080 | endif # BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT |
| 5081 | |
| 5082 | # Build $(PRODUCT_OUT)/super.img without dependencies. |
| 5083 | .PHONY: superimage-nodeps supernod |
| 5084 | superimage-nodeps supernod: intermediates := |
| 5085 | superimage-nodeps supernod: | $(INSTALLED_SUPERIMAGE_DEPENDENCIES) |
| 5086 | $(call pretty,"make $(INSTALLED_SUPERIMAGE_TARGET): ignoring dependencies") |
| 5087 | $(call build-superimage-target,$(INSTALLED_SUPERIMAGE_TARGET),\ |
| 5088 | $(call intermediates-dir-for,PACKAGING,superimage-nodeps)/misc_info.txt) |
| 5089 | |
| 5090 | endif # PRODUCT_RETROFIT_DYNAMIC_PARTITIONS != "true" |
| 5091 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
| 5092 | endif # PRODUCT_BUILD_SUPER_PARTITION == "true" |
| 5093 | |
| 5094 | # ----------------------------------------------------------------- |
| 5095 | # super empty image |
| 5096 | |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 5097 | ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS)) |
Yifan Hong | acd862a | 2019-04-16 15:44:30 -0700 | [diff] [blame] | 5098 | ifneq ($(BOARD_SUPER_PARTITION_SIZE),) |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5099 | |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 5100 | INSTALLED_SUPERIMAGE_EMPTY_TARGET := $(PRODUCT_OUT)/super_empty.img |
| 5101 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): intermediates := $(call intermediates-dir-for,PACKAGING,super_empty) |
| 5102 | $(INSTALLED_SUPERIMAGE_EMPTY_TARGET): $(LPMAKE) $(BUILD_SUPER_IMAGE) |
| 5103 | $(call pretty,"Target empty super fs image: $@") |
| 5104 | mkdir -p $(intermediates) |
| 5105 | rm -rf $(intermediates)/misc_info.txt |
Yifan Hong | 69e0d61 | 2019-03-11 15:55:33 -0700 | [diff] [blame] | 5106 | $(call dump-super-image-info,$(intermediates)/misc_info.txt) |
Tao Bao | 403a2f9 | 2018-12-13 10:45:46 -0800 | [diff] [blame] | 5107 | PATH=$(dir $(LPMAKE)):$$PATH \ |
| 5108 | $(BUILD_SUPER_IMAGE) -v $(intermediates)/misc_info.txt $@ |
Yifan Hong | 8b79d16 | 2018-11-29 12:32:00 -0800 | [diff] [blame] | 5109 | |
| 5110 | $(call dist-for-goals,dist_files,$(INSTALLED_SUPERIMAGE_EMPTY_TARGET)) |
| 5111 | |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5112 | endif # BOARD_SUPER_PARTITION_SIZE != "" |
Tao Bao | 48a2feb | 2019-06-28 11:00:05 -0700 | [diff] [blame] | 5113 | endif # PRODUCT_USE_DYNAMIC_PARTITIONS == "true" |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5114 | |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5115 | |
| 5116 | # ----------------------------------------------------------------- |
| 5117 | # The update package |
| 5118 | |
| 5119 | name := $(TARGET_PRODUCT) |
| 5120 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 5121 | name := $(name)_debug |
| 5122 | endif |
| 5123 | name := $(name)-img-$(FILE_NAME_TAG) |
| 5124 | |
| 5125 | INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 5126 | |
Tao Bao | 57f8ed6 | 2019-08-14 23:08:18 -0700 | [diff] [blame] | 5127 | $(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(IMG_FROM_TARGET_FILES) |
| 5128 | $(call pretty,"Package: $@") |
| 5129 | PATH=$(INTERNAL_USERIMAGES_BINARY_PATHS):$(dir $(ZIP2ZIP)):$$PATH \ |
| 5130 | $(IMG_FROM_TARGET_FILES) \ |
| 5131 | --additional IMAGES/VerifiedBootParams.textproto:VerifiedBootParams.textproto \ |
| 5132 | $(BUILT_TARGET_FILES_PACKAGE) $@ |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5133 | |
| 5134 | .PHONY: updatepackage |
| 5135 | updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET) |
Dan Willemsen | 9ae6495 | 2019-08-05 14:45:11 -0700 | [diff] [blame] | 5136 | $(call dist-for-goals,updatepackage,$(INTERNAL_UPDATE_PACKAGE_TARGET)) |
Yifan Hong | 0e97dbb | 2019-04-17 14:28:52 -0700 | [diff] [blame] | 5137 | |
| 5138 | |
Yifan Hong | 2b891ac | 2018-11-29 12:06:31 -0800 | [diff] [blame] | 5139 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5140 | # dalvik something |
| 5141 | .PHONY: dalvikfiles |
| 5142 | dalvikfiles: $(INTERNAL_DALVIK_MODULES) |
| 5143 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5144 | ifeq ($(BUILD_QEMU_IMAGES),true) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5145 | MK_QEMU_IMAGE_SH := device/generic/goldfish/tools/mk_qemu_image.sh |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5146 | MK_COMBINE_QEMU_IMAGE := $(HOST_OUT_EXECUTABLES)/mk_combined_img |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5147 | SGDISK_HOST := $(HOST_OUT_EXECUTABLES)/sgdisk |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 5148 | |
| 5149 | ifdef INSTALLED_SYSTEMIMAGE_TARGET |
| 5150 | INSTALLED_QEMU_SYSTEMIMAGE := $(PRODUCT_OUT)/system-qemu.img |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5151 | INSTALLED_SYSTEM_QEMU_CONFIG := $(PRODUCT_OUT)/system-qemu-config.txt |
| 5152 | $(INSTALLED_SYSTEM_QEMU_CONFIG): $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_VBMETAIMAGE_TARGET) |
| 5153 | @echo "$(PRODUCT_OUT)/vbmeta.img vbmeta 1" > $@ |
| 5154 | @echo "$(INSTALLED_SUPERIMAGE_TARGET) super 2" >> $@ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5155 | $(INSTALLED_QEMU_SYSTEMIMAGE): $(INSTALLED_VBMETAIMAGE_TARGET) $(MK_COMBINE_QEMU_IMAGE) $(SGDISK_HOST) $(SIMG2IMG) \ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5156 | $(INSTALLED_SUPERIMAGE_TARGET) $(INSTALLED_SYSTEM_QEMU_CONFIG) |
| 5157 | @echo Create system-qemu.img now |
| 5158 | (export SGDISK=$(SGDISK_HOST) SIMG2IMG=$(SIMG2IMG); \ |
Isaac Chen | 9e09d47 | 2019-07-05 17:30:41 +0800 | [diff] [blame] | 5159 | $(MK_COMBINE_QEMU_IMAGE) -i $(INSTALLED_SYSTEM_QEMU_CONFIG) -o $@) |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5160 | |
| 5161 | systemimage: $(INSTALLED_QEMU_SYSTEMIMAGE) |
| 5162 | droidcore: $(INSTALLED_QEMU_SYSTEMIMAGE) |
Roman Kiryanov | e64998f | 2019-02-14 16:45:33 -0800 | [diff] [blame] | 5163 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5164 | ifdef INSTALLED_VENDORIMAGE_TARGET |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5165 | INSTALLED_QEMU_VENDORIMAGE := $(PRODUCT_OUT)/vendor-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 5166 | $(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] | 5167 | @echo Create vendor-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5168 | (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] | 5169 | |
| 5170 | vendorimage: $(INSTALLED_QEMU_VENDORIMAGE) |
| 5171 | droidcore: $(INSTALLED_QEMU_VENDORIMAGE) |
| 5172 | endif |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 5173 | |
| 5174 | ifdef INSTALLED_RAMDISK_TARGET |
| 5175 | ifdef INSTALLED_VENDOR_BOOTIMAGE_TARGET |
| 5176 | ifdef INTERNAL_VENDOR_RAMDISK_TARGET |
| 5177 | INSTALLED_QEMU_RAMDISKIMAGE := $(PRODUCT_OUT)/ramdisk-qemu.img |
| 5178 | $(INSTALLED_QEMU_RAMDISKIMAGE): $(INTERNAL_VENDOR_RAMDISK_TARGET) $(INSTALLED_RAMDISK_TARGET) |
| 5179 | @echo Create ramdisk-qemu.img |
| 5180 | (cat $(INSTALLED_RAMDISK_TARGET) $(INTERNAL_VENDOR_RAMDISK_TARGET) > $(INSTALLED_QEMU_RAMDISKIMAGE)) |
| 5181 | |
| 5182 | droidcore: $(INSTALLED_QEMU_RAMDISKIMAGE) |
| 5183 | endif |
| 5184 | endif |
| 5185 | endif |
| 5186 | |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5187 | ifdef INSTALLED_PRODUCTIMAGE_TARGET |
Jaekyun Seok | b7735d8 | 2017-11-27 17:04:47 +0900 | [diff] [blame] | 5188 | INSTALLED_QEMU_PRODUCTIMAGE := $(PRODUCT_OUT)/product-qemu.img |
Isaac Chen | b9b51b1 | 2018-08-03 18:34:55 +0000 | [diff] [blame] | 5189 | $(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] | 5190 | @echo Create product-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5191 | (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] | 5192 | |
| 5193 | productimage: $(INSTALLED_QEMU_PRODUCTIMAGE) |
| 5194 | droidcore: $(INSTALLED_QEMU_PRODUCTIMAGE) |
| 5195 | endif |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5196 | ifdef INSTALLED_SYSTEM_EXTIMAGE_TARGET |
| 5197 | INSTALLED_QEMU_SYSTEM_EXTIMAGE := $(PRODUCT_OUT)/system_ext-qemu.img |
| 5198 | $(INSTALLED_QEMU_SYSTEM_EXTIMAGE): $(INSTALLED_SYSTEM_EXTIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) $(SIMG2IMG) |
| 5199 | @echo Create system_ext-qemu.img |
| 5200 | (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] | 5201 | |
Justin Yun | 6151e3f | 2019-06-25 15:58:13 +0900 | [diff] [blame] | 5202 | systemextimage: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
| 5203 | droidcore: $(INSTALLED_QEMU_SYSTEM_EXTIMAGE) |
Dario Freni | 5f681e1 | 2018-05-29 13:09:01 +0100 | [diff] [blame] | 5204 | endif |
Anton Hansson | 32c76fe | 2018-12-13 14:34:18 +0000 | [diff] [blame] | 5205 | ifdef INSTALLED_ODMIMAGE_TARGET |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5206 | INSTALLED_QEMU_ODMIMAGE := $(PRODUCT_OUT)/odm-qemu.img |
| 5207 | $(INSTALLED_QEMU_ODMIMAGE): $(INSTALLED_ODMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 5208 | @echo Create odm-qemu.img |
Roman Kiryanov | 4985cc8 | 2019-02-15 10:22:45 -0800 | [diff] [blame] | 5209 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODMIMAGE_TARGET)) |
Bowgo Tsai | d624fa6 | 2017-11-14 23:42:30 +0800 | [diff] [blame] | 5210 | |
| 5211 | odmimage: $(INSTALLED_QEMU_ODMIMAGE) |
| 5212 | droidcore: $(INSTALLED_QEMU_ODMIMAGE) |
| 5213 | endif |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5214 | |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5215 | ifdef INSTALLED_VENDOR_DLKMIMAGE_TARGET |
| 5216 | INSTALLED_QEMU_VENDOR_DLKMIMAGE := $(PRODUCT_OUT)/vendor_dlkm-qemu.img |
| 5217 | $(INSTALLED_QEMU_VENDOR_DLKMIMAGE): $(INSTALLED_VENDOR_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 5218 | @echo Create vendor_dlkm-qemu.img |
| 5219 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_VENDOR_DLKMIMAGE_TARGET)) |
| 5220 | |
| 5221 | vendor_dlkmimage: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
| 5222 | droidcore: $(INSTALLED_QEMU_VENDOR_DLKMIMAGE) |
| 5223 | endif |
| 5224 | |
Yifan Hong | f496f1b | 2020-07-15 16:52:59 -0700 | [diff] [blame] | 5225 | ifdef INSTALLED_ODM_DLKMIMAGE_TARGET |
| 5226 | INSTALLED_QEMU_ODM_DLKMIMAGE := $(PRODUCT_OUT)/odm_dlkm-qemu.img |
| 5227 | $(INSTALLED_QEMU_ODM_DLKMIMAGE): $(INSTALLED_ODM_DLKMIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST) |
| 5228 | @echo Create odm_dlkm-qemu.img |
| 5229 | (export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) $(INSTALLED_ODM_DLKMIMAGE_TARGET)) |
| 5230 | |
| 5231 | odm_dlkmimage: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
| 5232 | droidcore: $(INSTALLED_QEMU_ODM_DLKMIMAGE) |
| 5233 | endif |
Yifan Hong | cfb917a | 2020-05-07 14:58:20 -0700 | [diff] [blame] | 5234 | |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5235 | QEMU_VERIFIED_BOOT_PARAMS := $(PRODUCT_OUT)/VerifiedBootParams.textproto |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5236 | $(QEMU_VERIFIED_BOOT_PARAMS): $(INSTALLED_VBMETAIMAGE_TARGET) $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 5237 | $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(AVBTOOL) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5238 | @echo Creating $@ |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5239 | (export AVBTOOL=$(AVBTOOL); $(MK_VBMETA_BOOT_KERNEL_CMDLINE_SH) $(INSTALLED_VBMETAIMAGE_TARGET) \ |
| 5240 | $(INSTALLED_SYSTEMIMAGE_TARGET) $(QEMU_VERIFIED_BOOT_PARAMS)) |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5241 | |
| 5242 | systemimage: $(QEMU_VERIFIED_BOOT_PARAMS) |
| 5243 | droidcore: $(QEMU_VERIFIED_BOOT_PARAMS) |
bohu | 9492ee3 | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 5244 | |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5245 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5246 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5247 | # The emulator package |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 5248 | ifeq ($(BUILD_EMULATOR),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5249 | INTERNAL_EMULATOR_PACKAGE_FILES += \ |
| 5250 | $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \ |
Jean-Baptiste Queru | 5ea72ef | 2012-01-06 16:44:06 -0800 | [diff] [blame] | 5251 | prebuilts/qemu-kernel/$(TARGET_ARCH)/kernel-qemu \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5252 | $(INSTALLED_RAMDISK_TARGET) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5253 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
| 5254 | $(INSTALLED_USERDATAIMAGE_TARGET) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5255 | |
| 5256 | name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG) |
| 5257 | |
| 5258 | INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 5259 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 5260 | $(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5261 | @echo "Package: $@" |
Dan Willemsen | 48a621c | 2015-10-29 16:33:05 -0700 | [diff] [blame] | 5262 | $(hide) zip -qjX $@ $(INTERNAL_EMULATOR_PACKAGE_FILES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5263 | |
Ying Wang | 7d8c535 | 2012-07-26 10:15:21 -0700 | [diff] [blame] | 5264 | endif |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 5265 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5266 | |
| 5267 | # ----------------------------------------------------------------- |
| 5268 | # The SDK |
| 5269 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5270 | # The SDK includes host-specific components, so it belongs under HOST_OUT. |
Ying Wang | d7af176 | 2014-06-02 16:16:53 -0700 | [diff] [blame] | 5271 | sdk_dir := $(HOST_OUT)/sdk/$(TARGET_PRODUCT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5272 | |
| 5273 | # Build a name that looks like: |
| 5274 | # |
| 5275 | # linux-x86 --> android-sdk_12345_linux-x86 |
| 5276 | # darwin-x86 --> android-sdk_12345_mac-x86 |
| 5277 | # windows-x86 --> android-sdk_12345_windows |
| 5278 | # |
| 5279 | sdk_name := android-sdk_$(FILE_NAME_TAG) |
| 5280 | ifeq ($(HOST_OS),darwin) |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 5281 | INTERNAL_SDK_HOST_OS_NAME := mac |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5282 | else |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 5283 | INTERNAL_SDK_HOST_OS_NAME := $(HOST_OS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5284 | endif |
| 5285 | ifneq ($(HOST_OS),windows) |
Ying Wang | 2713fce | 2014-06-09 12:31:12 -0700 | [diff] [blame] | 5286 | INTERNAL_SDK_HOST_OS_NAME := $(INTERNAL_SDK_HOST_OS_NAME)-$(SDK_HOST_ARCH) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5287 | endif |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 5288 | sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5289 | |
| 5290 | sdk_dep_file := $(sdk_dir)/sdk_deps.mk |
| 5291 | |
| 5292 | ATREE_FILES := |
| 5293 | -include $(sdk_dep_file) |
| 5294 | |
| 5295 | # if we don't have a real list, then use "everything" |
| 5296 | ifeq ($(strip $(ATREE_FILES)),) |
| 5297 | ATREE_FILES := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5298 | $(ALL_DEFAULT_INSTALLED_MODULES) \ |
| 5299 | $(INSTALLED_RAMDISK_TARGET) \ |
| 5300 | $(ALL_DOCS) \ |
| 5301 | $(ALL_SDK_FILES) |
| 5302 | endif |
| 5303 | |
| 5304 | atree_dir := development/build |
| 5305 | |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 5306 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5307 | sdk_atree_files := \ |
| 5308 | $(atree_dir)/sdk.exclude.atree \ |
Ying Wang | 2713fce | 2014-06-09 12:31:12 -0700 | [diff] [blame] | 5309 | $(atree_dir)/sdk-$(HOST_OS)-$(SDK_HOST_ARCH).atree |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5310 | |
David 'Digit' Turner | 77ec16a | 2011-06-23 12:49:02 +0200 | [diff] [blame] | 5311 | # development/build/sdk-android-<abi>.atree is used to differentiate |
| 5312 | # between architecture models (e.g. ARMv5TE versus ARMv7) when copying |
| 5313 | # files like the kernel image. We use TARGET_CPU_ABI because we don't |
| 5314 | # have a better way to distinguish between CPU models. |
| 5315 | ifneq (,$(strip $(wildcard $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree))) |
| 5316 | sdk_atree_files += $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree |
| 5317 | endif |
| 5318 | |
Anton Hansson | 8dab0a6 | 2019-03-28 15:45:40 +0000 | [diff] [blame] | 5319 | ifneq ($(PRODUCT_SDK_ATREE_FILES),) |
| 5320 | sdk_atree_files += $(PRODUCT_SDK_ATREE_FILES) |
Griff Hazen | 433febb | 2014-02-28 08:45:59 -0800 | [diff] [blame] | 5321 | else |
| 5322 | sdk_atree_files += $(atree_dir)/sdk.atree |
| 5323 | endif |
| 5324 | |
Deepanshu Gupta | 7a864ea | 2014-08-11 15:20:02 -0700 | [diff] [blame] | 5325 | include $(BUILD_SYSTEM)/sdk_font.mk |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 5326 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5327 | deps := \ |
| 5328 | $(target_notice_file_txt) \ |
| 5329 | $(tools_notice_file_txt) \ |
| 5330 | $(OUT_DOCS)/offline-sdk-timestamp \ |
Jerome Gaillard | a0171af | 2019-10-10 19:35:08 +0100 | [diff] [blame] | 5331 | $(SDK_METADATA_FILES) \ |
Ying Wang | 139e332 | 2010-03-31 17:29:04 -0700 | [diff] [blame] | 5332 | $(SYMBOLS_ZIP) \ |
Ryan Campbell | 81c9d29 | 2016-09-12 13:56:50 -0700 | [diff] [blame] | 5333 | $(COVERAGE_ZIP) \ |
Dario Freni | d101127 | 2018-07-23 20:20:15 +0100 | [diff] [blame] | 5334 | $(APPCOMPAT_ZIP) \ |
Tao Bao | e9d61b0 | 2018-08-20 21:09:07 -0700 | [diff] [blame] | 5335 | $(INSTALLED_SYSTEMIMAGE_TARGET) \ |
Bo Hu | f0d50bb | 2017-08-01 19:02:09 +0000 | [diff] [blame] | 5336 | $(INSTALLED_QEMU_SYSTEMIMAGE) \ |
bohu | 8fd437c | 2020-03-30 20:16:13 -0700 | [diff] [blame] | 5337 | $(INSTALLED_QEMU_RAMDISKIMAGE) \ |
bohu | 18d1868 | 2017-08-14 14:52:20 -0700 | [diff] [blame] | 5338 | $(INSTALLED_QEMU_VENDORIMAGE) \ |
Matt Wachowski | 9e4d515 | 2018-08-07 16:29:22 -0700 | [diff] [blame] | 5339 | $(QEMU_VERIFIED_BOOT_PARAMS) \ |
Doug Zongker | dddd957 | 2009-06-15 21:25:32 -0700 | [diff] [blame] | 5340 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 5341 | $(INSTALLED_RAMDISK_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5342 | $(INSTALLED_SDK_BUILD_PROP_TARGET) \ |
Ying Wang | 139e332 | 2010-03-31 17:29:04 -0700 | [diff] [blame] | 5343 | $(INSTALLED_BUILD_PROP_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5344 | $(ATREE_FILES) \ |
Ying Wang | 0c0a4ce | 2014-02-18 14:29:59 -0800 | [diff] [blame] | 5345 | $(sdk_atree_files) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5346 | $(HOST_OUT_EXECUTABLES)/atree \ |
Deepanshu Gupta | 4e5e582 | 2014-08-01 10:14:15 -0700 | [diff] [blame] | 5347 | $(HOST_OUT_EXECUTABLES)/line_endings \ |
Deepanshu Gupta | 7a864ea | 2014-08-11 15:20:02 -0700 | [diff] [blame] | 5348 | $(SDK_FONT_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5349 | |
| 5350 | INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip |
| 5351 | $(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name) |
| 5352 | $(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name) |
| 5353 | $(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file) |
| 5354 | $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files) |
| 5355 | |
| 5356 | # Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built. |
| 5357 | # |
| 5358 | #SDK_GNU_ERROR := true |
| 5359 | |
Ying Wang | 5d88770 | 2015-11-04 10:06:25 -0800 | [diff] [blame] | 5360 | $(INTERNAL_SDK_TARGET): $(deps) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5361 | @echo "Package SDK: $@" |
| 5362 | $(hide) rm -rf $(PRIVATE_DIR) $@ |
| 5363 | $(hide) for f in $(target_gnu_MODULES); do \ |
| 5364 | if [ -f $$f ]; then \ |
| 5365 | echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \ |
| 5366 | including GNU target $$f >&2; \ |
| 5367 | FAIL=$(SDK_GNU_ERROR); \ |
| 5368 | fi; \ |
| 5369 | done; \ |
| 5370 | if [ $$FAIL ]; then exit 1; fi |
Deepanshu Gupta | 88a307e | 2014-08-12 10:23:58 -0700 | [diff] [blame] | 5371 | $(hide) echo $(notdir $(SDK_FONT_DEPS)) | tr " " "\n" > $(SDK_FONT_TEMP)/fontsInSdk.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5372 | $(hide) ( \ |
Anton Hansson | 6d81498 | 2018-11-26 18:12:05 +0000 | [diff] [blame] | 5373 | ATREE_STRIP="$(HOST_STRIP) -x" \ |
| 5374 | $(HOST_OUT_EXECUTABLES)/atree \ |
| 5375 | $(addprefix -f ,$(PRIVATE_INPUT_FILES)) \ |
| 5376 | -m $(PRIVATE_DEP_FILE) \ |
| 5377 | -I . \ |
| 5378 | -I $(PRODUCT_OUT) \ |
| 5379 | -I $(HOST_OUT) \ |
| 5380 | -I $(TARGET_COMMON_OUT_ROOT) \ |
| 5381 | -v "PLATFORM_NAME=android-$(PLATFORM_VERSION)" \ |
| 5382 | -v "OUT_DIR=$(OUT_DIR)" \ |
| 5383 | -v "HOST_OUT=$(HOST_OUT)" \ |
| 5384 | -v "TARGET_ARCH=$(TARGET_ARCH)" \ |
| 5385 | -v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \ |
| 5386 | -v "DLL_EXTENSION=$(HOST_SHLIB_SUFFIX)" \ |
| 5387 | -v "FONT_OUT=$(SDK_FONT_TEMP)" \ |
| 5388 | -o $(PRIVATE_DIR) && \ |
| 5389 | cp -f $(target_notice_file_txt) \ |
| 5390 | $(PRIVATE_DIR)/system-images/android-$(PLATFORM_VERSION)/$(TARGET_CPU_ABI)/NOTICE.txt && \ |
| 5391 | cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/platform-tools/NOTICE.txt && \ |
| 5392 | HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \ |
| 5393 | development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \ |
| 5394 | chmod -R ug+rwX $(PRIVATE_DIR) && \ |
| 5395 | cd $(dir $@) && zip -rqX $(notdir $@) $(PRIVATE_NAME) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5396 | ) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 ) |
| 5397 | |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 5398 | |
| 5399 | # Is a Windows SDK requested? If so, we need some definitions from here |
| 5400 | # in order to find the Linux SDK used to create the Windows one. |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 5401 | MAIN_SDK_NAME := $(sdk_name) |
| 5402 | MAIN_SDK_DIR := $(sdk_dir) |
| 5403 | MAIN_SDK_ZIP := $(INTERNAL_SDK_TARGET) |
Ying Wang | ff1fe68 | 2015-01-27 12:47:10 -0800 | [diff] [blame] | 5404 | ifneq ($(filter win_sdk winsdk-tools,$(MAKECMDGOALS)),) |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 5405 | include $(TOPDIR)development/build/tools/windows_sdk.mk |
| 5406 | endif |
| 5407 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5408 | # ----------------------------------------------------------------- |
| 5409 | # Findbugs |
| 5410 | INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml |
| 5411 | INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html |
| 5412 | $(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES) |
| 5413 | @echo UnionBugs: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 5414 | $(hide) $(FINDBUGS_DIR)/unionBugs $(ALL_FINDBUGS_FILES) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5415 | > $@ |
| 5416 | $(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET) |
| 5417 | @echo ConvertXmlToText: $@ |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 5418 | $(hide) $(FINDBUGS_DIR)/convertXmlToText -html:fancy.xsl \ |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 5419 | $(INTERNAL_FINDBUGS_XML_TARGET) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5420 | |
| 5421 | # ----------------------------------------------------------------- |
| 5422 | # Findbugs |
| 5423 | |
| 5424 | # ----------------------------------------------------------------- |
| 5425 | # These are some additional build tasks that need to be run. |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 5426 | ifneq ($(dont_bother),true) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 5427 | include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk)) |
Claes Elgemark | e22ad67 | 2010-11-12 15:46:00 +0100 | [diff] [blame] | 5428 | -include $(sort $(wildcard vendor/*/build/tasks/*.mk)) |
Andrew Boie | f34a9ba | 2012-04-16 10:03:16 -0700 | [diff] [blame] | 5429 | -include $(sort $(wildcard device/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 5430 | -include $(sort $(wildcard product/*/build/tasks/*.mk)) |
Ying Wang | 66c78e4 | 2014-09-05 17:47:34 -0700 | [diff] [blame] | 5431 | # Also the project-specific tasks |
| 5432 | -include $(sort $(wildcard vendor/*/*/build/tasks/*.mk)) |
| 5433 | -include $(sort $(wildcard device/*/*/build/tasks/*.mk)) |
Lee Campbell | 04ba312 | 2015-08-20 15:39:56 -0700 | [diff] [blame] | 5434 | -include $(sort $(wildcard product/*/*/build/tasks/*.mk)) |
Guang Zhu | 8322be7 | 2016-06-20 22:03:24 -0700 | [diff] [blame] | 5435 | # Also add test specifc tasks |
| 5436 | include $(sort $(wildcard platform_testing/build/tasks/*.mk)) |
Keun Soo Yim | 199a710 | 2016-08-31 09:20:51 -0700 | [diff] [blame] | 5437 | include $(sort $(wildcard test/vts/tools/build/tasks/*.mk)) |
Ying Wang | ad7fd29 | 2013-08-08 16:34:29 -0700 | [diff] [blame] | 5438 | endif |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 5439 | |
Ying Wang | 67132ba | 2015-10-28 16:42:39 -0700 | [diff] [blame] | 5440 | include $(BUILD_SYSTEM)/product-graph.mk |
| 5441 | |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 5442 | # ----------------------------------------------------------------- |
| 5443 | # Create SDK repository packages. Must be done after tasks/* since |
| 5444 | # we need the addon rules defined. |
| 5445 | ifneq ($(sdk_repo_goal),) |
| 5446 | include $(TOPDIR)development/build/tools/sdk_repo.mk |
| 5447 | endif |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 5448 | |
| 5449 | # ----------------------------------------------------------------- |
Mitch Phillips | 3adbcb3 | 2019-10-17 19:24:46 -0700 | [diff] [blame] | 5450 | # Soong generates the list of all shared libraries that are depended on by fuzz |
| 5451 | # targets. It saves this list as a source:destination pair to |
| 5452 | # FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS, where the source is the path to the |
| 5453 | # build of the unstripped shared library, and the destination is the |
| 5454 | # /data/fuzz/$ARCH/lib (for device) or /fuzz/$ARCH/lib (for host) directory |
| 5455 | # where fuzz target shared libraries are to be "reinstalled". The |
| 5456 | # copy-many-files below generates the rules to copy the unstripped shared |
| 5457 | # libraries to the device or host "reinstallation" directory. These rules are |
| 5458 | # depended on by each module in soong_cc_prebuilt.mk, where the module will have |
| 5459 | # a dependency on each shared library that it needs to be "reinstalled". |
| 5460 | FUZZ_SHARED_DEPS := $(call copy-many-files,$(strip $(FUZZ_TARGET_SHARED_DEPS_INSTALL_PAIRS))) |
| 5461 | |
| 5462 | # ----------------------------------------------------------------- |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 5463 | # The rule to build all fuzz targets, and package them. |
| 5464 | # Note: The packages are created in Soong, and in a perfect world, |
| 5465 | # we'd be able to create the phony rule there. But, if we want to |
| 5466 | # have dist goals for the fuzz target, we need to have the PHONY |
| 5467 | # target defined in make. MakeVarsContext.DistForGoal doesn't take |
| 5468 | # into account that a PHONY rule create by Soong won't be available |
| 5469 | # during make, and such will fail with `writing to readonly |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 5470 | # directory`, because kati will see 'haiku' as being a file, not a |
Mitch Phillips | ceefc44 | 2019-09-26 16:37:59 -0700 | [diff] [blame] | 5471 | # phony target. |
Kris Alder | 8c8c2b9 | 2019-11-26 12:03:39 -0800 | [diff] [blame] | 5472 | .PHONY: haiku |
| 5473 | haiku: $(SOONG_FUZZ_PACKAGING_ARCH_MODULES) $(ALL_FUZZ_TARGETS) |
| 5474 | $(call dist-for-goals,haiku,$(SOONG_FUZZ_PACKAGING_ARCH_MODULES)) |