The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # Put some miscellaneous rules here |
| 2 | |
| 3 | # Pick a reasonable string to use to identify files. |
| 4 | ifneq "" "$(filter eng.%,$(BUILD_NUMBER))" |
| 5 | # BUILD_NUMBER has a timestamp in it, which means that |
| 6 | # it will change every time. Pick a stable value. |
| 7 | FILE_NAME_TAG := eng.$(USER) |
| 8 | else |
| 9 | FILE_NAME_TAG := $(BUILD_NUMBER) |
| 10 | endif |
| 11 | |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 12 | is_tests_build := $(filter tests,$(MAKECMDGOALS)) |
| 13 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 14 | # ----------------------------------------------------------------- |
| 15 | # Define rules to copy PRODUCT_COPY_FILES defined by the product. |
| 16 | # PRODUCT_COPY_FILES contains words like <source file>:<dest file>. |
| 17 | # <dest file> is relative to $(PRODUCT_OUT), so it should look like, |
| 18 | # e.g., "system/etc/file.xml". |
Jean-Baptiste Queru | 518ce57 | 2010-03-01 16:18:59 -0800 | [diff] [blame] | 19 | # 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] | 20 | # src:dest pair is the first one to match the same dest" |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 21 | #$(1): the src:dest pair |
| 22 | define check-product-copy-files |
| 23 | $(if $(filter %.apk, $(1)),$(error \ |
| 24 | Prebuilt apk found in PRODUCT_COPY_FILES: $(1), use BUILD_PREBUILT instead!)) |
| 25 | endef |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 26 | unique_product_copy_files_destinations := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 27 | $(foreach cf,$(PRODUCT_COPY_FILES), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 28 | $(eval _src := $(call word-colon,1,$(cf))) \ |
| 29 | $(eval _dest := $(call word-colon,2,$(cf))) \ |
Ying Wang | 6886410 | 2011-09-29 13:23:25 -0700 | [diff] [blame] | 30 | $(call check-product-copy-files,$(cf)) \ |
Ying Wang | 193010c | 2011-12-16 11:54:25 -0800 | [diff] [blame] | 31 | $(if $(filter $(unique_product_copy_files_destinations),$(_dest)), \ |
| 32 | $(info PRODUCT_COPY_FILES $(cf) ignored.), \ |
Ying Wang | 462d26b | 2010-11-02 21:31:47 -0700 | [diff] [blame] | 33 | $(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \ |
| 34 | $(eval $(call copy-one-file,$(_src),$(_fulldest))) \ |
| 35 | $(eval ALL_DEFAULT_INSTALLED_MODULES += $(_fulldest)) \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 36 | $(eval unique_product_copy_files_destinations += $(_dest)))) |
| 37 | unique_product_copy_files_destinations := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 38 | |
| 39 | # ----------------------------------------------------------------- |
| 40 | # docs/index.html |
Ying Wang | 3f45b3c | 2012-04-02 18:21:36 -0700 | [diff] [blame] | 41 | ifeq (,$(TARGET_BUILD_APPS)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 42 | gen := $(OUT_DOCS)/index.html |
| 43 | ALL_DOCS += $(gen) |
| 44 | $(gen): frameworks/base/docs/docs-redirect-index.html |
| 45 | @mkdir -p $(dir $@) |
| 46 | @cp -f $< $@ |
Ying Wang | 3f45b3c | 2012-04-02 18:21:36 -0700 | [diff] [blame] | 47 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 48 | |
| 49 | # ----------------------------------------------------------------- |
| 50 | # default.prop |
| 51 | INSTALLED_DEFAULT_PROP_TARGET := $(TARGET_ROOT_OUT)/default.prop |
| 52 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_DEFAULT_PROP_TARGET) |
| 53 | ADDITIONAL_DEFAULT_PROPERTIES := \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 54 | $(call collapse-pairs, $(ADDITIONAL_DEFAULT_PROPERTIES)) |
Mike Lockwood | 0d23fec | 2011-06-09 14:54:40 -0700 | [diff] [blame] | 55 | ADDITIONAL_DEFAULT_PROPERTIES += \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 56 | $(call collapse-pairs, $(PRODUCT_DEFAULT_PROPERTY_OVERRIDES)) |
| 57 | ADDITIONAL_DEFAULT_PROPERTIES := $(call uniq-pairs-by-first-component, \ |
| 58 | $(ADDITIONAL_DEFAULT_PROPERTIES),=) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 59 | |
| 60 | $(INSTALLED_DEFAULT_PROP_TARGET): |
| 61 | @echo Target buildinfo: $@ |
| 62 | @mkdir -p $(dir $@) |
| 63 | $(hide) echo "#" > $@; \ |
| 64 | echo "# ADDITIONAL_DEFAULT_PROPERTIES" >> $@; \ |
| 65 | echo "#" >> $@; |
Jean-Baptiste Queru | 0545c91 | 2010-09-07 10:51:12 -0700 | [diff] [blame] | 66 | $(hide) $(foreach line,$(ADDITIONAL_DEFAULT_PROPERTIES), \ |
| 67 | echo "$(line)" >> $@;) |
Joe Onorato | 9197a48 | 2011-06-08 16:04:14 -0700 | [diff] [blame] | 68 | build/tools/post_process_props.py $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 69 | |
| 70 | # ----------------------------------------------------------------- |
| 71 | # build.prop |
| 72 | INSTALLED_BUILD_PROP_TARGET := $(TARGET_OUT)/build.prop |
| 73 | ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_BUILD_PROP_TARGET) |
| 74 | ADDITIONAL_BUILD_PROPERTIES := \ |
Ying Wang | 7e8d442 | 2011-06-17 17:05:35 -0700 | [diff] [blame] | 75 | $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES)) |
| 76 | ADDITIONAL_BUILD_PROPERTIES := $(call uniq-pairs-by-first-component, \ |
| 77 | $(ADDITIONAL_BUILD_PROPERTIES),=) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 78 | |
| 79 | # A list of arbitrary tags describing the build configuration. |
| 80 | # Force ":=" so we can use += |
| 81 | BUILD_VERSION_TAGS := $(BUILD_VERSION_TAGS) |
| 82 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 83 | BUILD_VERSION_TAGS += debug |
| 84 | endif |
Doug Zongker | 49c6a2b | 2011-10-05 12:41:56 -0700 | [diff] [blame] | 85 | # The "test-keys" tag marks builds signed with the old test keys, |
| 86 | # which are available in the SDK. "dev-keys" marks builds signed with |
| 87 | # non-default dev keys (usually private keys from a vendor directory). |
| 88 | # Both of these tags will be removed and replaced with "release-keys" |
| 89 | # when the target-files is signed in a post-build step. |
| 90 | ifeq ($(DEFAULT_SYSTEM_DEV_CERTIFICATE),build/target/product/security/testkey) |
| 91 | BUILD_VERSION_TAGS += test-keys |
| 92 | else |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 93 | BUILD_VERSION_TAGS += dev-keys |
Doug Zongker | 49c6a2b | 2011-10-05 12:41:56 -0700 | [diff] [blame] | 94 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 95 | BUILD_VERSION_TAGS := $(subst $(space),$(comma),$(sort $(BUILD_VERSION_TAGS))) |
| 96 | |
| 97 | # A human-readable string that descibes this build in detail. |
| 98 | build_desc := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) $(PLATFORM_VERSION) $(BUILD_ID) $(BUILD_NUMBER) $(BUILD_VERSION_TAGS) |
| 99 | $(INSTALLED_BUILD_PROP_TARGET): PRIVATE_BUILD_DESC := $(build_desc) |
| 100 | |
| 101 | # The string used to uniquely identify this build; used by the OTA server. |
| 102 | ifeq (,$(strip $(BUILD_FINGERPRINT))) |
Doug Zongker | 135a120 | 2010-09-15 13:02:12 -0700 | [diff] [blame] | 103 | BUILD_FINGERPRINT := $(PRODUCT_BRAND)/$(TARGET_PRODUCT)/$(TARGET_DEVICE):$(PLATFORM_VERSION)/$(BUILD_ID)/$(BUILD_NUMBER):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 104 | endif |
| 105 | ifneq ($(words $(BUILD_FINGERPRINT)),1) |
| 106 | $(error BUILD_FINGERPRINT cannot contain spaces: "$(BUILD_FINGERPRINT)") |
| 107 | endif |
| 108 | |
Sriram Raman | 7b64124 | 2009-03-24 22:40:59 -0700 | [diff] [blame] | 109 | # Display parameters shown under Settings -> About Phone |
| 110 | ifeq ($(TARGET_BUILD_VARIANT),user) |
| 111 | # User builds should show: |
| 112 | # release build number or branch.buld_number non-release builds |
| 113 | |
| 114 | # Dev. branches should have DISPLAY_BUILD_NUMBER set |
| 115 | ifeq "true" "$(DISPLAY_BUILD_NUMBER)" |
| 116 | BUILD_DISPLAY_ID := $(BUILD_ID).$(BUILD_NUMBER) |
| 117 | else |
| 118 | BUILD_DISPLAY_ID := $(BUILD_ID) |
| 119 | endif |
| 120 | else |
| 121 | # Non-user builds should show detailed build information |
| 122 | BUILD_DISPLAY_ID := $(build_desc) |
| 123 | endif |
| 124 | |
Ying Wang | 77c882f | 2010-04-27 15:45:35 -0700 | [diff] [blame] | 125 | # Whether there is default locale set in PRODUCT_PROPERTY_OVERRIDES |
Ying Wang | 38d7f02 | 2010-07-21 14:58:42 -0700 | [diff] [blame] | 126 | product_property_override_locale_language := $(strip \ |
| 127 | $(patsubst ro.product.locale.language=%,%,\ |
Ying Wang | 77c882f | 2010-04-27 15:45:35 -0700 | [diff] [blame] | 128 | $(filter ro.product.locale.language=%,$(PRODUCT_PROPERTY_OVERRIDES)))) |
Ying Wang | 38d7f02 | 2010-07-21 14:58:42 -0700 | [diff] [blame] | 129 | product_property_overrides_locale_region := $(strip \ |
| 130 | $(patsubst ro.product.locale.region=%,%,\ |
Ying Wang | 77c882f | 2010-04-27 15:45:35 -0700 | [diff] [blame] | 131 | $(filter ro.product.locale.region=%,$(PRODUCT_PROPERTY_OVERRIDES)))) |
| 132 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 133 | # Selects the first locale in the list given as the argument, |
| 134 | # and splits it into language and region, which each may be |
| 135 | # empty. |
| 136 | define default-locale |
| 137 | $(subst _, , $(firstword $(1))) |
| 138 | endef |
| 139 | |
| 140 | # Selects the first locale in the list given as the argument |
Ying Wang | 77c882f | 2010-04-27 15:45:35 -0700 | [diff] [blame] | 141 | # and returns the language (or the region), if it's not set in PRODUCT_PROPERTY_OVERRIDES; |
| 142 | # Return empty string if it's already set in PRODUCT_PROPERTY_OVERRIDES. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 143 | define default-locale-language |
Ying Wang | 38d7f02 | 2010-07-21 14:58:42 -0700 | [diff] [blame] | 144 | $(if $(product_property_override_locale_language),,$(word 1, $(call default-locale, $(1)))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 145 | endef |
| 146 | define default-locale-region |
Ying Wang | 38d7f02 | 2010-07-21 14:58:42 -0700 | [diff] [blame] | 147 | $(if $(product_property_overrides_locale_region),,$(word 2, $(call default-locale, $(1)))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 148 | endef |
| 149 | |
| 150 | BUILDINFO_SH := build/tools/buildinfo.sh |
Chih-Wei Huang | 75947ef | 2010-11-03 18:33:46 +0800 | [diff] [blame] | 151 | $(INSTALLED_BUILD_PROP_TARGET): $(BUILDINFO_SH) $(INTERNAL_BUILD_ID_MAKEFILE) $(BUILD_SYSTEM)/version_defaults.mk $(wildcard $(TARGET_DEVICE_DIR)/system.prop) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 152 | @echo Target buildinfo: $@ |
| 153 | @mkdir -p $(dir $@) |
| 154 | $(hide) TARGET_BUILD_TYPE="$(TARGET_BUILD_VARIANT)" \ |
| 155 | TARGET_DEVICE="$(TARGET_DEVICE)" \ |
| 156 | PRODUCT_NAME="$(TARGET_PRODUCT)" \ |
| 157 | PRODUCT_BRAND="$(PRODUCT_BRAND)" \ |
| 158 | PRODUCT_DEFAULT_LANGUAGE="$(call default-locale-language,$(PRODUCT_LOCALES))" \ |
| 159 | PRODUCT_DEFAULT_REGION="$(call default-locale-region,$(PRODUCT_LOCALES))" \ |
Robert Greenwalt | fbd10d9 | 2009-05-20 13:37:35 -0700 | [diff] [blame] | 160 | PRODUCT_DEFAULT_WIFI_CHANNELS="$(PRODUCT_DEFAULT_WIFI_CHANNELS)" \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 161 | PRODUCT_MODEL="$(PRODUCT_MODEL)" \ |
| 162 | PRODUCT_MANUFACTURER="$(PRODUCT_MANUFACTURER)" \ |
| 163 | PRIVATE_BUILD_DESC="$(PRIVATE_BUILD_DESC)" \ |
| 164 | BUILD_ID="$(BUILD_ID)" \ |
| 165 | BUILD_DISPLAY_ID="$(BUILD_DISPLAY_ID)" \ |
| 166 | BUILD_NUMBER="$(BUILD_NUMBER)" \ |
| 167 | PLATFORM_VERSION="$(PLATFORM_VERSION)" \ |
| 168 | PLATFORM_SDK_VERSION="$(PLATFORM_SDK_VERSION)" \ |
Dianne Hackborn | 9537884 | 2009-05-08 12:06:17 -0700 | [diff] [blame] | 169 | PLATFORM_VERSION_CODENAME="$(PLATFORM_VERSION_CODENAME)" \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 170 | BUILD_VERSION_TAGS="$(BUILD_VERSION_TAGS)" \ |
| 171 | TARGET_BOOTLOADER_BOARD_NAME="$(TARGET_BOOTLOADER_BOARD_NAME)" \ |
| 172 | BUILD_FINGERPRINT="$(BUILD_FINGERPRINT)" \ |
| 173 | TARGET_BOARD_PLATFORM="$(TARGET_BOARD_PLATFORM)" \ |
Dianne Hackborn | ecc70d7 | 2009-05-21 15:45:30 -0700 | [diff] [blame] | 174 | TARGET_CPU_ABI="$(TARGET_CPU_ABI)" \ |
David 'Digit' Turner | 2edfb71 | 2009-11-06 15:12:00 -0800 | [diff] [blame] | 175 | TARGET_CPU_ABI2="$(TARGET_CPU_ABI2)" \ |
Joe Onorato | 25939e2 | 2010-11-09 08:53:01 -0800 | [diff] [blame] | 176 | TARGET_AAPT_CHARACTERISTICS="$(TARGET_AAPT_CHARACTERISTICS)" \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 177 | bash $(BUILDINFO_SH) > $@ |
| 178 | $(hide) if [ -f $(TARGET_DEVICE_DIR)/system.prop ]; then \ |
| 179 | cat $(TARGET_DEVICE_DIR)/system.prop >> $@; \ |
| 180 | fi |
| 181 | $(if $(ADDITIONAL_BUILD_PROPERTIES), \ |
| 182 | $(hide) echo >> $@; \ |
| 183 | echo "#" >> $@; \ |
| 184 | echo "# ADDITIONAL_BUILD_PROPERTIES" >> $@; \ |
| 185 | echo "#" >> $@; ) |
Jean-Baptiste Queru | 0545c91 | 2010-09-07 10:51:12 -0700 | [diff] [blame] | 186 | $(hide) $(foreach line,$(ADDITIONAL_BUILD_PROPERTIES), \ |
| 187 | echo "$(line)" >> $@;) |
Joe Onorato | 9197a48 | 2011-06-08 16:04:14 -0700 | [diff] [blame] | 188 | $(hide) build/tools/post_process_props.py $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 189 | |
| 190 | build_desc := |
| 191 | |
| 192 | # ----------------------------------------------------------------- |
| 193 | # sdk-build.prop |
| 194 | # |
| 195 | # There are certain things in build.prop that we don't want to |
| 196 | # ship with the sdk; remove them. |
| 197 | |
| 198 | # This must be a list of entire property keys followed by |
| 199 | # "=" characters, without any internal spaces. |
| 200 | sdk_build_prop_remove := \ |
| 201 | ro.build.user= \ |
| 202 | ro.build.host= \ |
| 203 | ro.product.brand= \ |
| 204 | ro.product.manufacturer= \ |
| 205 | ro.product.device= |
| 206 | # TODO: Remove this soon-to-be obsolete property |
| 207 | sdk_build_prop_remove += ro.build.product= |
| 208 | INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop |
| 209 | $(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET) |
| 210 | @echo SDK buildinfo: $@ |
| 211 | @mkdir -p $(dir $@) |
| 212 | $(hide) grep -v "$(subst $(space),\|,$(strip \ |
| 213 | $(sdk_build_prop_remove)))" $< > $@.tmp |
| 214 | $(hide) for x in $(sdk_build_prop_remove); do \ |
| 215 | echo "$$x"generic >> $@.tmp; done |
| 216 | $(hide) mv $@.tmp $@ |
| 217 | |
| 218 | # ----------------------------------------------------------------- |
| 219 | # package stats |
| 220 | PACKAGE_STATS_FILE := $(PRODUCT_OUT)/package-stats.txt |
| 221 | PACKAGES_TO_STAT := \ |
| 222 | $(sort $(filter $(TARGET_OUT)/% $(TARGET_OUT_DATA)/%, \ |
| 223 | $(filter %.jar %.apk, $(ALL_DEFAULT_INSTALLED_MODULES)))) |
| 224 | $(PACKAGE_STATS_FILE): $(PACKAGES_TO_STAT) |
| 225 | @echo Package stats: $@ |
| 226 | @mkdir -p $(dir $@) |
| 227 | $(hide) rm -f $@ |
| 228 | $(hide) build/tools/dump-package-stats $^ > $@ |
| 229 | |
| 230 | .PHONY: package-stats |
| 231 | package-stats: $(PACKAGE_STATS_FILE) |
| 232 | |
| 233 | # ----------------------------------------------------------------- |
| 234 | # Cert-to-package mapping. Used by the post-build signing tools. |
| 235 | name := $(TARGET_PRODUCT) |
| 236 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 237 | name := $(name)_debug |
| 238 | endif |
| 239 | name := $(name)-apkcerts-$(FILE_NAME_TAG) |
| 240 | intermediates := \ |
| 241 | $(call intermediates-dir-for,PACKAGING,apkcerts) |
| 242 | APKCERTS_FILE := $(intermediates)/$(name).txt |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 243 | # We don't need to really build all the modules. |
| 244 | # TODO: rebuild APKCERTS_FILE if any app change its cert. |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 245 | $(APKCERTS_FILE): |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 246 | @echo APK certs list: $@ |
| 247 | @mkdir -p $(dir $@) |
| 248 | @rm -f $@ |
| 249 | $(hide) $(foreach p,$(PACKAGES),\ |
Doug Zongker | f6a53aa | 2009-12-15 15:06:55 -0800 | [diff] [blame] | 250 | $(if $(PACKAGES.$(p).EXTERNAL_KEY),\ |
| 251 | echo 'name="$(p).apk" certificate="EXTERNAL" \ |
| 252 | private_key=""' >> $@;,\ |
| 253 | echo 'name="$(p).apk" certificate="$(PACKAGES.$(p).CERTIFICATE)" \ |
| 254 | private_key="$(PACKAGES.$(p).PRIVATE_KEY)"' >> $@;)) |
Ying Wang | f272cd6 | 2011-09-26 12:05:06 -0700 | [diff] [blame] | 255 | # In case $(PACKAGES) is empty. |
| 256 | $(hide) touch $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 257 | |
| 258 | .PHONY: apkcerts-list |
| 259 | apkcerts-list: $(APKCERTS_FILE) |
| 260 | |
Ying Wang | 15e487a | 2011-02-15 10:56:18 -0800 | [diff] [blame] | 261 | ifneq (,$(TARGET_BUILD_APPS)) |
| 262 | $(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt) |
| 263 | endif |
Ying Wang | efb2168 | 2010-07-23 16:42:13 -0700 | [diff] [blame] | 264 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 265 | # ----------------------------------------------------------------- |
| 266 | # module info file |
| 267 | ifdef CREATE_MODULE_INFO_FILE |
| 268 | MODULE_INFO_FILE := $(PRODUCT_OUT)/module-info.txt |
| 269 | $(info Generating $(MODULE_INFO_FILE)...) |
| 270 | $(shell rm -f $(MODULE_INFO_FILE)) |
| 271 | $(foreach m,$(ALL_MODULES), \ |
| 272 | $(shell echo "NAME=\"$(m)\"" \ |
| 273 | "PATH=\"$(strip $(ALL_MODULES.$(m).PATH))\"" \ |
| 274 | "TAGS=\"$(strip $(filter-out _%,$(ALL_MODULES.$(m).TAGS)))\"" \ |
| 275 | "BUILT=\"$(strip $(ALL_MODULES.$(m).BUILT))\"" \ |
| 276 | "INSTALLED=\"$(strip $(ALL_MODULES.$(m).INSTALLED))\"" >> $(MODULE_INFO_FILE))) |
| 277 | endif |
| 278 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 279 | # ----------------------------------------------------------------- |
| 280 | |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 281 | # 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] | 282 | # for future OTA packages installed by this system. Actual product |
| 283 | # deliverables will be re-signed by hand. We expect this file to |
| 284 | # exist with the suffixes ".x509.pem" and ".pk8". |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 285 | DEFAULT_KEY_CERT_PAIR := $(DEFAULT_SYSTEM_DEV_CERTIFICATE) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 286 | |
| 287 | |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 288 | # 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] | 289 | # if they don't do anything. |
| 290 | .PHONY: systemimage |
| 291 | systemimage: |
| 292 | |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 293 | # ----------------------------------------------------------------- |
| 294 | |
| 295 | .PHONY: event-log-tags |
| 296 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 297 | # Produce an event logs tag file for everything we know about, in order |
| 298 | # to properly allocate numbers. Then produce a file that's filtered |
| 299 | # for what's going to be installed. |
| 300 | |
| 301 | all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt |
| 302 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 303 | event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags |
| 304 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 305 | # Include tags from all packages that we know about |
| 306 | all_event_log_tags_src := \ |
| 307 | $(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS))) |
| 308 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 309 | # PDK builds will already have a full list of tags that needs to get merged |
| 310 | # in with the ones from source |
| 311 | pdk_fusion_log_tags_file := $(patsubst $(PRODUCT_OUT)/%,$(_pdk_fusion_intermediates)/%,$(filter $(event_log_tags_file),$(ALL_PDK_FUSION_FILES))) |
| 312 | |
| 313 | $(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src) $(pdk_fusion_log_tags_file) |
| 314 | $(all_event_log_tags_file): $(all_event_log_tags_src) $(pdk_fusion_log_tags_file) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 315 | $(hide) mkdir -p $(dir $@) |
| 316 | $(hide) build/tools/merge-event-log-tags.py -o $@ $(PRIVATE_SRC_FILES) |
| 317 | |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 318 | # Include tags from all packages included in this product, plus all |
| 319 | # tags that are part of the system (ie, not in a vendor/ or device/ |
| 320 | # directory). |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 321 | event_log_tags_src := \ |
| 322 | $(sort $(foreach m,\ |
| 323 | $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES) \ |
| 324 | $(call module-names-for-tag-list,user), \ |
Doug Zongker | a34fa95 | 2011-02-23 12:17:29 -0800 | [diff] [blame] | 325 | $(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \ |
| 326 | $(filter-out vendor/% device/% out/%,$(all_event_log_tags_src))) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 327 | |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 328 | $(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src) $(pdk_fusion_log_tags_file) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 329 | $(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file) |
Colin Cross | dc8f8e4 | 2012-04-12 13:25:54 -0700 | [diff] [blame] | 330 | $(event_log_tags_file): $(event_log_tags_src) $(all_event_log_tags_file) $(pdk_fusion_log_tags_file) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 331 | $(hide) mkdir -p $(dir $@) |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 332 | $(hide) build/tools/merge-event-log-tags.py -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES) |
Doug Zongker | 7e2f13b | 2010-02-16 16:01:43 -0800 | [diff] [blame] | 333 | |
| 334 | event-log-tags: $(event_log_tags_file) |
| 335 | |
| 336 | ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file) |
| 337 | |
Joe Onorato | b751053 | 2010-07-14 10:22:54 -0700 | [diff] [blame] | 338 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 339 | # ################################################################# |
| 340 | # Targets for boot/OS images |
| 341 | # ################################################################# |
| 342 | |
| 343 | # ----------------------------------------------------------------- |
| 344 | # the ramdisk |
| 345 | INTERNAL_RAMDISK_FILES := $(filter $(TARGET_ROOT_OUT)/%, \ |
| 346 | $(ALL_PREBUILT) \ |
| 347 | $(ALL_COPIED_HEADERS) \ |
| 348 | $(ALL_GENERATED_SOURCES) \ |
| 349 | $(ALL_DEFAULT_INSTALLED_MODULES)) |
| 350 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 351 | BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img |
| 352 | |
Stephen Smalley | 5042392 | 2012-01-13 08:12:31 -0500 | [diff] [blame] | 353 | ifeq ($(HAVE_SELINUX),true) |
| 354 | SELINUX_DEPENDS := sepolicy file_contexts seapp_contexts |
| 355 | endif |
| 356 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 357 | # We just build this directly to the install location. |
| 358 | INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET) |
Stephen Smalley | 5042392 | 2012-01-13 08:12:31 -0500 | [diff] [blame] | 359 | $(INSTALLED_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_RAMDISK_FILES) $(SELINUX_DEPENDS) | $(MINIGZIP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 360 | $(call pretty,"Target ram disk: $@") |
Doug Zongker | 8b70e8c | 2009-05-27 09:14:25 -0700 | [diff] [blame] | 361 | $(hide) $(MKBOOTFS) $(TARGET_ROOT_OUT) | $(MINIGZIP) > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 362 | |
| 363 | |
| 364 | ifneq ($(strip $(TARGET_NO_KERNEL)),true) |
| 365 | |
| 366 | # ----------------------------------------------------------------- |
| 367 | # the boot image, which is a collection of other images. |
| 368 | INTERNAL_BOOTIMAGE_ARGS := \ |
| 369 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \ |
| 370 | --kernel $(INSTALLED_KERNEL_TARGET) \ |
| 371 | --ramdisk $(INSTALLED_RAMDISK_TARGET) |
| 372 | |
| 373 | INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS)) |
| 374 | |
| 375 | BOARD_KERNEL_CMDLINE := $(strip $(BOARD_KERNEL_CMDLINE)) |
| 376 | ifdef BOARD_KERNEL_CMDLINE |
| 377 | INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(BOARD_KERNEL_CMDLINE)" |
| 378 | endif |
| 379 | |
Dima Zavin | 1e0847c | 2009-05-07 19:43:08 -0700 | [diff] [blame] | 380 | BOARD_KERNEL_BASE := $(strip $(BOARD_KERNEL_BASE)) |
| 381 | ifdef BOARD_KERNEL_BASE |
| 382 | INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 383 | endif |
| 384 | |
Ying Wang | ffff002 | 2010-08-23 12:56:25 -0700 | [diff] [blame] | 385 | BOARD_KERNEL_PAGESIZE := $(strip $(BOARD_KERNEL_PAGESIZE)) |
| 386 | ifdef BOARD_KERNEL_PAGESIZE |
| 387 | INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 388 | endif |
| 389 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 390 | INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img |
| 391 | |
| 392 | ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true) |
| 393 | tmp_dir_for_image := $(call intermediates-dir-for,EXECUTABLES,boot_img)/bootimg |
| 394 | INTERNAL_BOOTIMAGE_ARGS += --tmpdir $(tmp_dir_for_image) |
| 395 | INTERNAL_BOOTIMAGE_ARGS += --genext2fs $(MKEXT2IMG) |
| 396 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKEXT2IMG) $(INTERNAL_BOOTIMAGE_FILES) |
| 397 | $(call pretty,"Target boot image: $@") |
| 398 | $(hide) $(MKEXT2BOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) --output $@ |
| 399 | |
| 400 | else # TARGET_BOOTIMAGE_USE_EXT2 != true |
| 401 | |
| 402 | $(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES) |
| 403 | $(call pretty,"Target boot image: $@") |
| 404 | $(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) --output $@ |
Doug Zongker | ed96e88 | 2009-08-26 09:37:07 -0700 | [diff] [blame] | 405 | $(hide) $(call assert-max-image-size,$@,$(BOARD_BOOTIMAGE_PARTITION_SIZE),raw) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 406 | endif # TARGET_BOOTIMAGE_USE_EXT2 |
| 407 | |
| 408 | else # TARGET_NO_KERNEL |
| 409 | # HACK: The top-level targets depend on the bootimage. Not all targets |
| 410 | # can produce a bootimage, though, and emulator targets need the ramdisk |
| 411 | # instead. Fake it out by calling the ramdisk the bootimage. |
| 412 | # TODO: make the emulator use bootimages, and make mkbootimg accept |
| 413 | # kernel-less inputs. |
| 414 | INSTALLED_BOOTIMAGE_TARGET := $(INSTALLED_RAMDISK_TARGET) |
| 415 | endif |
| 416 | |
| 417 | # ----------------------------------------------------------------- |
| 418 | # NOTICE files |
| 419 | # |
Steve Block | d14d3b4 | 2012-03-01 11:34:41 +0000 | [diff] [blame] | 420 | # We are required to publish the licenses for all code under BSD, GPL and |
| 421 | # Apache licenses (and possibly other more exotic ones as well). We err on the |
| 422 | # side of caution, so the licenses for other third-party code are included here |
| 423 | # too. |
| 424 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 425 | # This needs to be before the systemimage rules, because it adds to |
| 426 | # ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files |
| 427 | # go into the systemimage. |
| 428 | |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 429 | .PHONY: notice_files |
| 430 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 431 | # Create the rule to combine the files into text and html forms |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 432 | # $(1) - Plain text output file |
| 433 | # $(2) - HTML output file |
| 434 | # $(3) - File title |
| 435 | # $(4) - Directory to use. Notice files are all $(4)/src. Other |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 436 | # directories in there will be used for scratch |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 437 | # $(5) - Dependencies for the output files |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 438 | # |
| 439 | # The algorithm here is that we go collect a hash for each of the notice |
| 440 | # files and write the names of the files that match that hash. Then |
| 441 | # to generate the real files, we go print out all of the files and their |
| 442 | # hashes. |
| 443 | # |
| 444 | # These rules are fairly complex, so they depend on this makefile so if |
| 445 | # it changes, they'll run again. |
| 446 | # |
| 447 | # TODO: We could clean this up so that we just record the locations of the |
| 448 | # original notice files instead of making rules to copy them somwehere. |
| 449 | # Then we could traverse that without quite as much bash drama. |
| 450 | define combine-notice-files |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 451 | $(1) $(2): PRIVATE_MESSAGE := $(3) |
Daniel Berlin | f5a97d7 | 2012-03-29 10:33:19 -0400 | [diff] [blame] | 452 | $(1) $(2): PRIVATE_DIR := $(4) |
Ying Wang | c4625ab | 2012-04-09 12:16:23 -0700 | [diff] [blame] | 453 | $(1) : $(2) |
| 454 | $(2) : $(5) $(BUILD_SYSTEM)/Makefile build/tools/generate-notice-files.py |
Daniel Berlin | f5a97d7 | 2012-03-29 10:33:19 -0400 | [diff] [blame] | 455 | build/tools/generate-notice-files.py $(1) $(2) $$(PRIVATE_MESSAGE) $$(PRIVATE_DIR)/src |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 456 | notice_files: $(1) $(2) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 457 | endef |
| 458 | |
| 459 | # TODO These intermediate NOTICE.txt/NOTICE.html files should go into |
| 460 | # TARGET_OUT_NOTICE_FILES now that the notice files are gathered from |
| 461 | # the src subdirectory. |
| 462 | |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 463 | target_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 464 | target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html |
| 465 | target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 466 | tools_notice_file_txt := $(HOST_OUT_INTERMEDIATES)/NOTICE.txt |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 467 | tools_notice_file_html := $(HOST_OUT_INTERMEDIATES)/NOTICE.html |
| 468 | |
| 469 | kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt |
Ying Wang | 4534d81 | 2012-04-09 17:04:12 -0700 | [diff] [blame] | 470 | pdk_fusion_notice_files := $(filter $(TARGET_OUT_NOTICE_FILES)/%, $(ALL_PDK_FUSION_FILES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 471 | |
| 472 | $(eval $(call combine-notice-files, \ |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 473 | $(target_notice_file_txt), \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 474 | $(target_notice_file_html), \ |
| 475 | "Notices for files contained in the filesystem images in this directory:", \ |
| 476 | $(TARGET_OUT_NOTICE_FILES), \ |
Ying Wang | 4534d81 | 2012-04-09 17:04:12 -0700 | [diff] [blame] | 477 | $(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file) $(pdk_fusion_notice_files))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 478 | |
| 479 | $(eval $(call combine-notice-files, \ |
Steve Block | 495e585 | 2012-02-29 19:18:08 +0000 | [diff] [blame] | 480 | $(tools_notice_file_txt), \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 481 | $(tools_notice_file_html), \ |
| 482 | "Notices for files contained in the tools directory:", \ |
| 483 | $(HOST_OUT_NOTICE_FILES), \ |
| 484 | $(ALL_DEFAULT_INSTALLED_MODULES))) |
| 485 | |
| 486 | # Install the html file at /system/etc/NOTICE.html.gz. |
| 487 | # This is not ideal, but this is very late in the game, after a lot of |
| 488 | # the module processing has already been done -- in fact, we used the |
| 489 | # fact that all that has been done to get the list of modules that we |
| 490 | # need notice files for. |
Doug Zongker | 8b70e8c | 2009-05-27 09:14:25 -0700 | [diff] [blame] | 491 | $(target_notice_file_html_gz): $(target_notice_file_html) | $(MINIGZIP) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 492 | $(hide) $(MINIGZIP) -9 < $< > $@ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 493 | installed_notice_html_gz := $(TARGET_OUT)/etc/NOTICE.html.gz |
| 494 | $(installed_notice_html_gz): $(target_notice_file_html_gz) | $(ACP) |
| 495 | $(copy-file-to-target) |
Joe Onorato | 7b2845a | 2009-04-30 13:52:50 -0700 | [diff] [blame] | 496 | |
| 497 | # if we've been run my mm, mmm, etc, don't reinstall this every time |
| 498 | ifeq ($(ONE_SHOT_MAKEFILE),) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 499 | ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_gz) |
Joe Onorato | 7b2845a | 2009-04-30 13:52:50 -0700 | [diff] [blame] | 500 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 501 | |
| 502 | # The kernel isn't really a module, so to get its module file in there, we |
| 503 | # make the target NOTICE files depend on this particular file too, which will |
| 504 | # then be in the right directory for the find in combine-notice-files to work. |
| 505 | $(kernel_notice_file): \ |
Jean-Baptiste Queru | a230c4d | 2012-01-06 15:05:53 -0800 | [diff] [blame] | 506 | prebuilts/qemu-kernel/arm/LINUX_KERNEL_COPYING \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 507 | | $(ACP) |
| 508 | @echo Copying: $@ |
| 509 | $(hide) mkdir -p $(dir $@) |
| 510 | $(hide) $(ACP) $< $@ |
| 511 | |
| 512 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 513 | # ----------------------------------------------------------------- |
| 514 | # Build a keystore with the authorized keys in it, used to verify the |
| 515 | # authenticity of downloaded OTA packages. |
| 516 | # |
| 517 | # This rule adds to ALL_DEFAULT_INSTALLED_MODULES, so it needs to come |
| 518 | # before the rules that use that variable to build the image. |
| 519 | ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT_ETC)/security/otacerts.zip |
| 520 | $(TARGET_OUT_ETC)/security/otacerts.zip: KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
Doug Zongker | 37c0e27 | 2009-06-15 15:36:16 -0700 | [diff] [blame] | 521 | $(TARGET_OUT_ETC)/security/otacerts.zip: $(addsuffix .x509.pem,$(DEFAULT_KEY_CERT_PAIR)) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 522 | $(hide) rm -f $@ |
| 523 | $(hide) mkdir -p $(dir $@) |
Doug Zongker | 37c0e27 | 2009-06-15 15:36:16 -0700 | [diff] [blame] | 524 | $(hide) zip -qj $@ $< |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 525 | |
| 526 | .PHONY: otacerts |
| 527 | otacerts: $(TARGET_OUT_ETC)/security/otacerts.zip |
| 528 | |
| 529 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 530 | # ################################################################# |
| 531 | # Targets for user images |
| 532 | # ################################################################# |
| 533 | |
Ying Wang | 933abf1 | 2010-06-16 14:31:34 -0700 | [diff] [blame] | 534 | INTERNAL_USERIMAGES_EXT_VARIANT := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 535 | ifeq ($(TARGET_USERIMAGES_USE_EXT2),true) |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 536 | INTERNAL_USERIMAGES_USE_EXT := true |
| 537 | INTERNAL_USERIMAGES_EXT_VARIANT := ext2 |
| 538 | else |
| 539 | ifeq ($(TARGET_USERIMAGES_USE_EXT3),true) |
| 540 | INTERNAL_USERIMAGES_USE_EXT := true |
| 541 | INTERNAL_USERIMAGES_EXT_VARIANT := ext3 |
| 542 | else |
| 543 | ifeq ($(TARGET_USERIMAGES_USE_EXT4),true) |
| 544 | INTERNAL_USERIMAGES_USE_EXT := true |
| 545 | INTERNAL_USERIMAGES_EXT_VARIANT := ext4 |
| 546 | endif |
| 547 | endif |
| 548 | endif |
| 549 | |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 550 | ifneq (true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED)) |
| 551 | INTERNAL_USERIMAGES_SPARSE_EXT_FLAG := -s |
| 552 | endif |
| 553 | |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 554 | ifeq ($(INTERNAL_USERIMAGES_USE_EXT),true) |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 555 | INTERNAL_USERIMAGES_DEPS := $(MKEXTUSERIMG) $(MAKE_EXT4FS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 556 | else |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 557 | INTERNAL_USERIMAGES_DEPS := $(MKYAFFS2) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 558 | endif |
Ying Wang | 178ef92 | 2011-10-31 18:13:30 -0700 | [diff] [blame] | 559 | INTERNAL_USERIMAGES_BINARY_PATHS := $(sort $(dir $(INTERNAL_USERIMAGES_DEPS))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 560 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 561 | # $(1): the path of the output dictionary file |
| 562 | define generate-userimage-prop-dictionary |
| 563 | $(if $(INTERNAL_USERIMAGES_EXT_VARIANT),$(hide) echo "fs_type=$(INTERNAL_USERIMAGES_EXT_VARIANT)" >> $(1)) |
| 564 | $(if $(BOARD_SYSTEMIMAGE_PARTITION_SIZE),$(hide) echo "system_size=$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)" >> $(1)) |
| 565 | $(if $(BOARD_USERDATAIMAGE_PARTITION_SIZE),$(hide) echo "userdata_size=$(BOARD_USERDATAIMAGE_PARTITION_SIZE)" >> $(1)) |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 566 | $(if $(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE),$(hide) echo "cache_fs_type=$(BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE)" >> $(1)) |
| 567 | $(if $(BOARD_CACHEIMAGE_PARTITION_SIZE),$(hide) echo "cache_size=$(BOARD_CACHEIMAGE_PARTITION_SIZE)" >> $(1)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 568 | $(if $(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG),$(hide) echo "extfs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG)" >> $(1)) |
| 569 | $(if $(mkyaffs2_extra_flags),$(hide) echo "mkyaffs2_extra_flags=$(mkyaffs2_extra_flags)" >> $(1)) |
Kenny Root | f32dc71 | 2012-04-08 10:42:34 -0700 | [diff] [blame] | 570 | $(if $(filter true, $(strip $(HAVE_SELINUX))), echo "selinux_fc=$(TARGET_ROOT_OUT)/file_contexts" >> $(1)) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 571 | endef |
| 572 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 573 | # ----------------------------------------------------------------- |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 574 | # Recovery image |
Doug Zongker | 8cebf1f | 2009-07-07 17:14:25 -0700 | [diff] [blame] | 575 | |
| 576 | # If neither TARGET_NO_KERNEL nor TARGET_NO_RECOVERY are true |
Keun young Park | 7826101 | 2012-04-19 09:55:24 -0700 | [diff] [blame] | 577 | ifeq (,$(filter true, $(TARGET_NO_KERNEL) $(TARGET_NO_RECOVERY) $(BUILD_TINY_ANDROID))) |
Doug Zongker | 8cebf1f | 2009-07-07 17:14:25 -0700 | [diff] [blame] | 578 | |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 579 | INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img |
| 580 | |
| 581 | recovery_initrc := $(call include-path-for, recovery)/etc/init.rc |
| 582 | recovery_kernel := $(INSTALLED_KERNEL_TARGET) # same as a non-recovery system |
| 583 | recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img |
| 584 | recovery_build_prop := $(INSTALLED_BUILD_PROP_TARGET) |
| 585 | recovery_binary := $(call intermediates-dir-for,EXECUTABLES,recovery)/recovery |
| 586 | recovery_resources_common := $(call include-path-for, recovery)/res |
| 587 | recovery_resources_private := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery/res)) |
| 588 | recovery_resource_deps := $(shell find $(recovery_resources_common) \ |
| 589 | $(recovery_resources_private) -type f) |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 590 | recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab)) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 591 | |
| 592 | ifeq ($(recovery_resources_private),) |
| 593 | $(info No private recovery resources for TARGET_DEVICE $(TARGET_DEVICE)) |
| 594 | endif |
| 595 | |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 596 | ifeq ($(recovery_fstab),) |
| 597 | $(info No recovery.fstab for TARGET_DEVICE $(TARGET_DEVICE)) |
| 598 | endif |
| 599 | |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 600 | INTERNAL_RECOVERYIMAGE_ARGS := \ |
| 601 | $(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \ |
| 602 | --kernel $(recovery_kernel) \ |
| 603 | --ramdisk $(recovery_ramdisk) |
| 604 | |
| 605 | # Assumes this has already been stripped |
| 606 | ifdef BOARD_KERNEL_CMDLINE |
| 607 | INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(BOARD_KERNEL_CMDLINE)" |
| 608 | endif |
| 609 | ifdef BOARD_KERNEL_BASE |
| 610 | INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE) |
| 611 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 612 | BOARD_KERNEL_PAGESIZE := $(strip $(BOARD_KERNEL_PAGESIZE)) |
| 613 | ifdef BOARD_KERNEL_PAGESIZE |
| 614 | INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE) |
| 615 | endif |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 616 | |
| 617 | # Keys authorized to sign OTA packages this build will accept. The |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 618 | # build always uses dev-keys for this; release packaging tools will |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 619 | # substitute other keys for this one. |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 620 | OTA_PUBLIC_KEYS := $(DEFAULT_SYSTEM_DEV_CERTIFICATE).x509.pem |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 621 | |
| 622 | # Generate a file containing the keys that will be read by the |
| 623 | # recovery binary. |
| 624 | RECOVERY_INSTALL_OTA_KEYS := \ |
| 625 | $(call intermediates-dir-for,PACKAGING,ota_keys)/keys |
| 626 | DUMPKEY_JAR := $(HOST_OUT_JAVA_LIBRARIES)/dumpkey.jar |
| 627 | $(RECOVERY_INSTALL_OTA_KEYS): PRIVATE_OTA_PUBLIC_KEYS := $(OTA_PUBLIC_KEYS) |
Doug Zongker | 5d4808d | 2011-03-16 07:49:13 -0700 | [diff] [blame] | 628 | $(RECOVERY_INSTALL_OTA_KEYS): extra_keys := $(patsubst %,%.x509.pem,$(PRODUCT_EXTRA_RECOVERY_KEYS)) |
Doug Zongker | e121d6a | 2011-02-01 14:13:52 -0800 | [diff] [blame] | 629 | $(RECOVERY_INSTALL_OTA_KEYS): $(OTA_PUBLIC_KEYS) $(DUMPKEY_JAR) $(extra_keys) |
| 630 | @echo "DumpPublicKey: $@ <= $(PRIVATE_OTA_PUBLIC_KEYS) $(extra_keys)" |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 631 | @rm -rf $@ |
| 632 | @mkdir -p $(dir $@) |
Doug Zongker | e121d6a | 2011-02-01 14:13:52 -0800 | [diff] [blame] | 633 | java -jar $(DUMPKEY_JAR) $(PRIVATE_OTA_PUBLIC_KEYS) $(extra_keys) > $@ |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 634 | |
| 635 | $(INSTALLED_RECOVERYIMAGE_TARGET): $(MKBOOTFS) $(MKBOOTIMG) $(MINIGZIP) \ |
| 636 | $(INSTALLED_RAMDISK_TARGET) \ |
| 637 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 638 | $(recovery_binary) \ |
| 639 | $(recovery_initrc) $(recovery_kernel) \ |
| 640 | $(INSTALLED_2NDBOOTLOADER_TARGET) \ |
| 641 | $(recovery_build_prop) $(recovery_resource_deps) \ |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 642 | $(recovery_fstab) \ |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 643 | $(RECOVERY_INSTALL_OTA_KEYS) |
| 644 | @echo ----- Making recovery image ------ |
| 645 | rm -rf $(TARGET_RECOVERY_OUT) |
| 646 | mkdir -p $(TARGET_RECOVERY_OUT) |
| 647 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT) |
| 648 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/etc |
| 649 | mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/tmp |
| 650 | echo Copying baseline ramdisk... |
| 651 | cp -R $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT) |
Doug Zongker | b4c7d32 | 2010-07-01 15:30:11 -0700 | [diff] [blame] | 652 | rm $(TARGET_RECOVERY_ROOT_OUT)/init*.rc |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 653 | echo Modifying ramdisk contents... |
| 654 | cp -f $(recovery_initrc) $(TARGET_RECOVERY_ROOT_OUT)/ |
| 655 | cp -f $(recovery_binary) $(TARGET_RECOVERY_ROOT_OUT)/sbin/ |
| 656 | cp -rf $(recovery_resources_common) $(TARGET_RECOVERY_ROOT_OUT)/ |
| 657 | $(foreach item,$(recovery_resources_private), \ |
| 658 | cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/) |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 659 | $(foreach item,$(recovery_fstab), \ |
| 660 | cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/etc/recovery.fstab) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 661 | cp $(RECOVERY_INSTALL_OTA_KEYS) $(TARGET_RECOVERY_ROOT_OUT)/res/keys |
| 662 | cat $(INSTALLED_DEFAULT_PROP_TARGET) $(recovery_build_prop) \ |
| 663 | > $(TARGET_RECOVERY_ROOT_OUT)/default.prop |
| 664 | $(MKBOOTFS) $(TARGET_RECOVERY_ROOT_OUT) | $(MINIGZIP) > $(recovery_ramdisk) |
| 665 | $(MKBOOTIMG) $(INTERNAL_RECOVERYIMAGE_ARGS) --output $@ |
| 666 | @echo ----- Made recovery image -------- $@ |
Doug Zongker | ed96e88 | 2009-08-26 09:37:07 -0700 | [diff] [blame] | 667 | $(hide) $(call assert-max-image-size,$@,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE),raw) |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 668 | |
| 669 | else |
| 670 | INSTALLED_RECOVERYIMAGE_TARGET := |
| 671 | endif |
| 672 | |
| 673 | .PHONY: recoveryimage |
| 674 | recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET) |
| 675 | |
Dima Zavin | 1181898 | 2010-02-05 13:34:34 -0800 | [diff] [blame] | 676 | ifneq ($(BOARD_NAND_PAGE_SIZE),) |
| 677 | mkyaffs2_extra_flags := -c $(BOARD_NAND_PAGE_SIZE) |
| 678 | else |
| 679 | mkyaffs2_extra_flags := |
Lars Svensson | 9cb8c28 | 2010-12-06 15:24:58 +0100 | [diff] [blame] | 680 | BOARD_NAND_PAGE_SIZE := 2048 |
Dima Zavin | 1181898 | 2010-02-05 13:34:34 -0800 | [diff] [blame] | 681 | endif |
| 682 | |
Naseer Ahmed | 5387188 | 2010-08-06 12:19:29 -0700 | [diff] [blame] | 683 | ifneq ($(BOARD_NAND_SPARE_SIZE),) |
| 684 | mkyaffs2_extra_flags += -s $(BOARD_NAND_SPARE_SIZE) |
Lars Svensson | 9cb8c28 | 2010-12-06 15:24:58 +0100 | [diff] [blame] | 685 | else |
| 686 | BOARD_NAND_SPARE_SIZE := 64 |
Naseer Ahmed | 5387188 | 2010-08-06 12:19:29 -0700 | [diff] [blame] | 687 | endif |
| 688 | |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 689 | # ----------------------------------------------------------------- |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 690 | # system image |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 691 | # |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 692 | |
| 693 | INTERNAL_SYSTEMIMAGE_FILES := $(filter $(TARGET_OUT)/%, \ |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 694 | $(ALL_PREBUILT) \ |
| 695 | $(ALL_COPIED_HEADERS) \ |
| 696 | $(ALL_GENERATED_SOURCES) \ |
Ying Wang | 82b836f | 2012-03-30 18:08:07 -0700 | [diff] [blame] | 697 | $(ALL_DEFAULT_INSTALLED_MODULES)\ |
| 698 | $(ALL_PDK_FUSION_FILES)) |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 699 | |
| 700 | ifdef is_tests_build |
| 701 | # We don't want to install tests modules to the system partition |
| 702 | # when building "tests", because now "tests" may be built in a user, userdebug |
| 703 | # or eng build variant and we don't want to pollute the system partition. |
| 704 | # INTERNAL_SYSTEMIMAGE_FILES += $(filter $(TARGET_OUT)/%, \ |
| 705 | # $(tests_MODULES)) |
| 706 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 707 | |
Stephen Smalley | 5042392 | 2012-01-13 08:12:31 -0500 | [diff] [blame] | 708 | FULL_SYSTEMIMAGE_DEPS := $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS) $(SELINUX_DEPENDS) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 709 | # ----------------------------------------------------------------- |
| 710 | # installed file list |
| 711 | # Depending on anything that $(BUILT_SYSTEMIMAGE) depends on. |
| 712 | # We put installed-files.txt ahead of image itself in the dependency graph |
| 713 | # so that we can get the size stat even if the build fails due to too large |
| 714 | # system image. |
| 715 | INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt |
| 716 | $(INSTALLED_FILES_FILE): $(FULL_SYSTEMIMAGE_DEPS) |
| 717 | @echo Installed file list: $@ |
| 718 | @mkdir -p $(dir $@) |
| 719 | @rm -f $@ |
| 720 | $(hide) build/tools/fileslist.py $(TARGET_OUT) > $@ |
| 721 | |
| 722 | .PHONY: installed-file-list |
| 723 | installed-file-list: $(INSTALLED_FILES_FILE) |
| 724 | ifneq ($(filter sdk win_sdk,$(MAKECMDGOALS)),) |
| 725 | $(call dist-for-goals, sdk win_sdk, $(INSTALLED_FILES_FILE)) |
| 726 | endif |
| 727 | ifneq ($(filter sdk_addon,$(MAKECMDGOALS)),) |
| 728 | $(call dist-for-goals, sdk_addon, $(INSTALLED_FILES_FILE)) |
| 729 | endif |
| 730 | |
| 731 | systemimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 732 | $(call intermediates-dir-for,PACKAGING,systemimage) |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 733 | BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img |
| 734 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 735 | # $(1): output file |
| 736 | define build-systemimage-target |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 737 | @echo "Target system fs image: $(1)" |
| 738 | @mkdir -p $(dir $(1)) $(systemimage_intermediates) && rm -rf $(systemimage_intermediates)/system_image_info.txt |
| 739 | $(call generate-userimage-prop-dictionary, $(systemimage_intermediates)/system_image_info.txt) |
| 740 | $(hide) PATH=$(foreach p,$(INTERNAL_USERIMAGES_BINARY_PATHS),$(p):)$$PATH \ |
| 741 | ./build/tools/releasetools/build_image.py \ |
| 742 | $(TARGET_OUT) $(systemimage_intermediates)/system_image_info.txt $(1) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 743 | endef |
| 744 | |
Ying Wang | e5e8c5f | 2011-09-09 16:35:53 -0700 | [diff] [blame] | 745 | $(BUILT_SYSTEMIMAGE): $(FULL_SYSTEMIMAGE_DEPS) $(INSTALLED_FILES_FILE) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 746 | $(call build-systemimage-target,$@) |
| 747 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 748 | INSTALLED_SYSTEMIMAGE := $(PRODUCT_OUT)/system.img |
Ying Wang | 0235237 | 2010-09-27 10:37:25 -0700 | [diff] [blame] | 749 | SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 750 | |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 751 | # The system partition needs room for the recovery image as well. We |
| 752 | # now store the recovery image as a binary patch using the boot image |
| 753 | # as the source (since they are very similar). Generate the patch so |
| 754 | # we can see how big it's going to be, and include that in the system |
| 755 | # image size check calculation. |
Sriram Raman | 1e96ac8 | 2009-07-24 13:52:32 -0700 | [diff] [blame] | 756 | ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 757 | intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch) |
| 758 | RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p |
| 759 | $(RECOVERY_FROM_BOOT_PATCH): $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
| 760 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
Doug Zongker | 22bc517 | 2009-07-23 18:27:43 -0700 | [diff] [blame] | 761 | $(HOST_OUT_EXECUTABLES)/imgdiff \ |
| 762 | $(HOST_OUT_EXECUTABLES)/bsdiff |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 763 | @echo "Construct recovery from boot" |
| 764 | mkdir -p $(dir $@) |
Doug Zongker | b003d89 | 2009-07-23 18:48:38 -0700 | [diff] [blame] | 765 | PATH=$(HOST_OUT_EXECUTABLES):$$PATH $(HOST_OUT_EXECUTABLES)/imgdiff $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_RECOVERYIMAGE_TARGET) $@ |
Sriram Raman | 1e96ac8 | 2009-07-24 13:52:32 -0700 | [diff] [blame] | 766 | endif |
| 767 | |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 768 | |
| 769 | $(INSTALLED_SYSTEMIMAGE): $(BUILT_SYSTEMIMAGE) $(RECOVERY_FROM_BOOT_PATCH) | $(ACP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 770 | @echo "Install system fs image: $@" |
| 771 | $(copy-file-to-target) |
Doug Zongker | ed96e88 | 2009-08-26 09:37:07 -0700 | [diff] [blame] | 772 | $(hide) $(call assert-max-image-size,$@ $(RECOVERY_FROM_BOOT_PATCH),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE),yaffs) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 773 | |
| 774 | systemimage: $(INSTALLED_SYSTEMIMAGE) |
| 775 | |
| 776 | .PHONY: systemimage-nodeps snod |
| 777 | systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \ |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 778 | | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 779 | @echo "make $@: ignoring dependencies" |
| 780 | $(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE)) |
Doug Zongker | ed96e88 | 2009-08-26 09:37:07 -0700 | [diff] [blame] | 781 | $(hide) $(call assert-max-image-size,$(INSTALLED_SYSTEMIMAGE),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE),yaffs) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 782 | |
Ying Wang | acf01ec | 2012-02-24 11:05:48 -0800 | [diff] [blame] | 783 | ifneq (,$(filter systemimage-nodeps snod, $(MAKECMDGOALS))) |
| 784 | ifeq (true,$(WITH_DEXPREOPT)) |
| 785 | $(warning Warning: with dexpreopt enabled, you may need a full rebuild.) |
| 786 | endif |
| 787 | endif |
| 788 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 789 | ####### |
| 790 | ## system tarball |
| 791 | define build-systemtarball-target |
| 792 | $(call pretty,"Target system fs tarball: $(INSTALLED_SYSTEMTARBALL_TARGET)") |
| 793 | $(MKTARBALL) $(FS_GET_STATS) \ |
| 794 | $(PRODUCT_OUT) system $(PRIVATE_SYSTEM_TAR) \ |
| 795 | $(INSTALLED_SYSTEMTARBALL_TARGET) |
| 796 | endef |
| 797 | |
Bruce Beare | 69ef5ce | 2010-06-11 12:05:57 -0700 | [diff] [blame] | 798 | ifndef SYSTEM_TARBALL_FORMAT |
| 799 | SYSTEM_TARBALL_FORMAT := bz2 |
| 800 | endif |
| 801 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 802 | system_tar := $(PRODUCT_OUT)/system.tar |
Bruce Beare | 69ef5ce | 2010-06-11 12:05:57 -0700 | [diff] [blame] | 803 | INSTALLED_SYSTEMTARBALL_TARGET := $(system_tar).$(SYSTEM_TARBALL_FORMAT) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 804 | $(INSTALLED_SYSTEMTARBALL_TARGET): PRIVATE_SYSTEM_TAR := $(system_tar) |
| 805 | $(INSTALLED_SYSTEMTARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_SYSTEMIMAGE_FILES) |
| 806 | $(build-systemtarball-target) |
| 807 | |
| 808 | .PHONY: systemtarball-nodeps |
| 809 | systemtarball-nodeps: $(FS_GET_STATS) \ |
| 810 | $(filter-out systemtarball-nodeps stnod,$(MAKECMDGOALS)) |
| 811 | $(build-systemtarball-target) |
| 812 | |
| 813 | .PHONY: stnod |
| 814 | stnod: systemtarball-nodeps |
| 815 | |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 816 | ####### |
Ying Wang | 4534d81 | 2012-04-09 17:04:12 -0700 | [diff] [blame] | 817 | ## platform.zip: system, plus other files to be used in PDK fusion build, |
| 818 | ## in a zip file |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 819 | INSTALLED_PLATFROM_ZIP := $(PRODUCT_OUT)/platform.zip |
| 820 | $(INSTALLED_PLATFROM_ZIP) : $(INTERNAL_SYSTEMIMAGE_FILES) |
| 821 | $(call pretty,"Platform zip package: $(INSTALLED_PLATFROM_ZIP)") |
| 822 | $(hide) rm -f $@ |
Ying Wang | 4534d81 | 2012-04-09 17:04:12 -0700 | [diff] [blame] | 823 | $(hide) cd $(dir $@) && zip -qry $(notdir $@) \ |
| 824 | $(TARGET_COPY_OUT_SYSTEM) \ |
| 825 | $(patsubst $(PRODUCT_OUT)/%, %, $(TARGET_OUT_NOTICE_FILES)) |
Ying Wang | 4c289e5 | 2012-03-30 13:52:54 -0700 | [diff] [blame] | 826 | |
| 827 | .PHONY: platform |
| 828 | platform: $(INSTALLED_PLATFROM_ZIP) |
| 829 | |
| 830 | # Dist the platform.zip |
| 831 | ifneq (,$(filter platform, $(MAKECMDGOALS))) |
| 832 | $(call dist-for-goals, platform, $(INSTALLED_PLATFROM_ZIP)) |
| 833 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 834 | |
Bruce Beare | 52aac20 | 2010-06-04 15:24:49 -0700 | [diff] [blame] | 835 | ####### |
| 836 | ## boot tarball |
| 837 | define build-boottarball-target |
Bruce Beare | 45ac434 | 2010-06-24 14:02:00 -0700 | [diff] [blame] | 838 | $(hide) echo "Target boot fs tarball: $(INSTALLED_BOOTTARBALL_TARGET)" |
Bruce Beare | 52aac20 | 2010-06-04 15:24:49 -0700 | [diff] [blame] | 839 | $(hide) mkdir -p $(PRODUCT_OUT)/boot |
| 840 | $(hide) cp -f $(INTERNAL_BOOTIMAGE_FILES) $(PRODUCT_OUT)/boot/. |
| 841 | $(hide) echo $(BOARD_KERNEL_CMDLINE) > $(PRODUCT_OUT)/boot/cmdline |
| 842 | $(hide) $(MKTARBALL) $(FS_GET_STATS) \ |
| 843 | $(PRODUCT_OUT) boot $(PRIVATE_BOOT_TAR) \ |
| 844 | $(INSTALLED_BOOTTARBALL_TARGET) |
| 845 | endef |
| 846 | |
| 847 | ifndef BOOT_TARBALL_FORMAT |
| 848 | BOOT_TARBALL_FORMAT := bz2 |
| 849 | endif |
| 850 | |
| 851 | boot_tar := $(PRODUCT_OUT)/boot.tar |
| 852 | INSTALLED_BOOTTARBALL_TARGET := $(boot_tar).$(BOOT_TARBALL_FORMAT) |
| 853 | $(INSTALLED_BOOTTARBALL_TARGET): PRIVATE_BOOT_TAR := $(boot_tar) |
| 854 | $(INSTALLED_BOOTTARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_BOOTIMAGE_FILES) |
| 855 | $(build-boottarball-target) |
| 856 | |
| 857 | .PHONY: boottarball-nodeps btnod |
| 858 | boottarball-nodeps btnod: $(FS_GET_STATS) \ |
| 859 | $(filter-out boottarball-nodeps btnod,$(MAKECMDGOALS)) |
| 860 | $(build-boottarball-target) |
| 861 | |
| 862 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 863 | # ----------------------------------------------------------------- |
| 864 | # data partition image |
| 865 | INTERNAL_USERDATAIMAGE_FILES := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 866 | $(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 867 | |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 868 | # If we build "tests" at the same time, make sure $(tests_MODULES) get covered. |
| 869 | ifdef is_tests_build |
| 870 | INTERNAL_USERDATAIMAGE_FILES += \ |
| 871 | $(filter $(TARGET_OUT_DATA)/%,$(tests_MODULES)) |
| 872 | endif |
| 873 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 874 | userdataimage_intermediates := \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 875 | $(call intermediates-dir-for,PACKAGING,userdata) |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 876 | BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img |
| 877 | |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 878 | define build-userdataimage-target |
| 879 | $(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)") |
| 880 | @mkdir -p $(TARGET_OUT_DATA) |
| 881 | @mkdir -p $(userdataimage_intermediates) && rm -rf $(userdataimage_intermediates)/userdata_image_info.txt |
| 882 | $(call generate-userimage-prop-dictionary, $(userdataimage_intermediates)/userdata_image_info.txt) |
| 883 | $(hide) PATH=$(foreach p,$(INTERNAL_USERIMAGES_BINARY_PATHS),$(p):)$$PATH \ |
| 884 | ./build/tools/releasetools/build_image.py \ |
Ying Wang | 178ef92 | 2011-10-31 18:13:30 -0700 | [diff] [blame] | 885 | $(TARGET_OUT_DATA) $(userdataimage_intermediates)/userdata_image_info.txt $(INSTALLED_USERDATAIMAGE_TARGET) |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 886 | $(hide) $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE),yaffs) |
| 887 | endef |
| 888 | |
Joe Onorato | 64d85d0 | 2009-04-09 19:31:12 -0700 | [diff] [blame] | 889 | # We just build this directly to the install location. |
| 890 | INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET) |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 891 | $(INSTALLED_USERDATAIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 892 | $(INTERNAL_USERDATAIMAGE_FILES) |
| 893 | $(build-userdataimage-target) |
| 894 | |
| 895 | .PHONY: userdataimage-nodeps |
Colin Cross | 144b028 | 2010-05-10 13:04:47 -0700 | [diff] [blame] | 896 | userdataimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 897 | $(build-userdataimage-target) |
| 898 | |
| 899 | ####### |
| 900 | ## data partition tarball |
| 901 | define build-userdatatarball-target |
| 902 | $(call pretty,"Target userdata fs tarball: " \ |
| 903 | "$(INSTALLED_USERDATATARBALL_TARGET)") |
| 904 | $(MKTARBALL) $(FS_GET_STATS) \ |
| 905 | $(PRODUCT_OUT) data $(PRIVATE_USERDATA_TAR) \ |
| 906 | $(INSTALLED_USERDATATARBALL_TARGET) |
| 907 | endef |
| 908 | |
| 909 | userdata_tar := $(PRODUCT_OUT)/userdata.tar |
| 910 | INSTALLED_USERDATATARBALL_TARGET := $(userdata_tar).bz2 |
| 911 | $(INSTALLED_USERDATATARBALL_TARGET): PRIVATE_USERDATA_TAR := $(userdata_tar) |
| 912 | $(INSTALLED_USERDATATARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_USERDATAIMAGE_FILES) |
| 913 | $(build-userdatatarball-target) |
| 914 | |
| 915 | .PHONY: userdatatarball-nodeps |
| 916 | userdatatarball-nodeps: $(FS_GET_STATS) |
| 917 | $(build-userdatatarball-target) |
| 918 | |
| 919 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 920 | # ----------------------------------------------------------------- |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 921 | # cache partition image |
| 922 | ifdef BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE |
| 923 | INTERNAL_CACHEIMAGE_FILES := \ |
| 924 | $(filter $(TARGET_OUT_CACHE)/%,$(ALL_DEFAULT_INSTALLED_MODULES)) |
| 925 | |
| 926 | cacheimage_intermediates := \ |
| 927 | $(call intermediates-dir-for,PACKAGING,cache) |
| 928 | BUILT_CACHEIMAGE_TARGET := $(PRODUCT_OUT)/cache.img |
| 929 | |
| 930 | define build-cacheimage-target |
| 931 | $(call pretty,"Target cache fs image: $(INSTALLED_CACHEIMAGE_TARGET)") |
| 932 | @mkdir -p $(TARGET_OUT_CACHE) |
| 933 | @mkdir -p $(cacheimage_intermediates) && rm -rf $(cacheimage_intermediates)/cache_image_info.txt |
| 934 | $(call generate-userimage-prop-dictionary, $(cacheimage_intermediates)/cache_image_info.txt) |
| 935 | $(hide) PATH=$(foreach p,$(INTERNAL_USERIMAGES_BINARY_PATHS),$(p):)$$PATH \ |
| 936 | ./build/tools/releasetools/build_image.py \ |
| 937 | $(TARGET_OUT_CACHE) $(cacheimage_intermediates)/cache_image_info.txt $(INSTALLED_CACHEIMAGE_TARGET) |
| 938 | $(hide) $(call assert-max-image-size,$(INSTALLED_CACHEIMAGE_TARGET),$(BOARD_CACHEIMAGE_PARTITION_SIZE),yaffs) |
| 939 | endef |
| 940 | |
| 941 | # We just build this directly to the install location. |
| 942 | INSTALLED_CACHEIMAGE_TARGET := $(BUILT_CACHEIMAGE_TARGET) |
| 943 | $(INSTALLED_CACHEIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) $(INTERNAL_CACHEIMAGE_FILES) |
| 944 | $(build-cacheimage-target) |
| 945 | |
| 946 | .PHONY: cacheimage-nodeps |
| 947 | cacheimage-nodeps: | $(INTERNAL_USERIMAGES_DEPS) |
| 948 | $(build-cacheimage-target) |
| 949 | |
| 950 | endif # BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE |
| 951 | |
| 952 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 953 | # bring in the installer image generation defines if necessary |
| 954 | ifeq ($(TARGET_USE_DISKINSTALLER),true) |
| 955 | include bootable/diskinstaller/config.mk |
| 956 | endif |
| 957 | |
| 958 | # ----------------------------------------------------------------- |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame^] | 959 | # host tools needed to build dist and OTA packages |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 960 | |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame^] | 961 | DISTTOOLS := $(HOST_OUT_EXECUTABLES)/minigzip \ |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 962 | $(HOST_OUT_EXECUTABLES)/mkbootfs \ |
| 963 | $(HOST_OUT_EXECUTABLES)/mkbootimg \ |
| 964 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
| 965 | $(HOST_OUT_EXECUTABLES)/mkyaffs2image \ |
| 966 | $(HOST_OUT_EXECUTABLES)/zipalign \ |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 967 | $(HOST_OUT_EXECUTABLES)/bsdiff \ |
Doug Zongker | c494d7c | 2009-06-18 08:43:44 -0700 | [diff] [blame] | 968 | $(HOST_OUT_EXECUTABLES)/imgdiff \ |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 969 | $(HOST_OUT_JAVA_LIBRARIES)/dumpkey.jar \ |
Ying Wang | 933abf1 | 2010-06-16 14:31:34 -0700 | [diff] [blame] | 970 | $(HOST_OUT_JAVA_LIBRARIES)/signapk.jar \ |
| 971 | $(HOST_OUT_EXECUTABLES)/mkuserimg.sh \ |
Sriram Raman | c647aec | 2010-11-29 18:51:20 -0500 | [diff] [blame] | 972 | $(HOST_OUT_EXECUTABLES)/make_ext4fs |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 973 | |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame^] | 974 | OTATOOLS := $(DISTTOOLS) \ |
| 975 | $(HOST_OUT_EXECUTABLES)/aapt |
| 976 | |
Ying Wang | 0689866 | 2010-06-17 17:52:18 -0700 | [diff] [blame] | 977 | .PHONY: otatools |
| 978 | otatools: $(OTATOOLS) |
| 979 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 980 | # ----------------------------------------------------------------- |
| 981 | # A zip of the directories that map to the target filesystem. |
| 982 | # This zip can be used to create an OTA package or filesystem image |
| 983 | # as a post-build step. |
| 984 | # |
| 985 | name := $(TARGET_PRODUCT) |
| 986 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 987 | name := $(name)_debug |
| 988 | endif |
| 989 | name := $(name)-target_files-$(FILE_NAME_TAG) |
| 990 | |
| 991 | intermediates := $(call intermediates-dir-for,PACKAGING,target_files) |
| 992 | BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip |
| 993 | $(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates) |
| 994 | $(BUILT_TARGET_FILES_PACKAGE): \ |
| 995 | zip_root := $(intermediates)/$(name) |
| 996 | |
| 997 | # $(1): Directory to copy |
| 998 | # $(2): Location to copy it to |
| 999 | # The "ls -A" is to prevent "acp s/* d" from failing if s is empty. |
| 1000 | define package_files-copy-root |
| 1001 | if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \ |
| 1002 | mkdir -p $(2) && \ |
| 1003 | $(ACP) -rd $(strip $(1))/* $(2); \ |
| 1004 | fi |
| 1005 | endef |
| 1006 | |
| 1007 | built_ota_tools := \ |
Doug Zongker | 17c83cf | 2009-04-01 15:48:46 -0700 | [diff] [blame] | 1008 | $(call intermediates-dir-for,EXECUTABLES,applypatch)/applypatch \ |
Doug Zongker | 6c77046 | 2009-07-22 18:27:31 -0700 | [diff] [blame] | 1009 | $(call intermediates-dir-for,EXECUTABLES,applypatch_static)/applypatch_static \ |
Doug Zongker | a406c1e | 2009-06-12 16:57:08 -0700 | [diff] [blame] | 1010 | $(call intermediates-dir-for,EXECUTABLES,check_prereq)/check_prereq \ |
Doug Zongker | 25863d7 | 2011-09-19 15:02:03 -0700 | [diff] [blame] | 1011 | $(call intermediates-dir-for,EXECUTABLES,sqlite3)/sqlite3 \ |
Doug Zongker | a406c1e | 2009-06-12 16:57:08 -0700 | [diff] [blame] | 1012 | $(call intermediates-dir-for,EXECUTABLES,updater)/updater |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1013 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools) |
| 1014 | |
Doug Zongker | b1134dd | 2009-06-17 17:09:40 -0700 | [diff] [blame] | 1015 | $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_API_VERSION := $(RECOVERY_API_VERSION) |
| 1016 | |
Doug Zongker | c18736b | 2009-09-30 09:20:32 -0700 | [diff] [blame] | 1017 | ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),) |
| 1018 | # default to common dir for device vendor |
| 1019 | $(BUILT_TARGET_FILES_PACKAGE): tool_extensions := $(TARGET_DEVICE_DIR)/../common |
| 1020 | else |
| 1021 | $(BUILT_TARGET_FILES_PACKAGE): tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) |
| 1022 | endif |
| 1023 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1024 | # Depending on the various images guarantees that the underlying |
| 1025 | # directories are up-to-date. |
| 1026 | $(BUILT_TARGET_FILES_PACKAGE): \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1027 | $(INSTALLED_BOOTIMAGE_TARGET) \ |
| 1028 | $(INSTALLED_RADIOIMAGE_TARGET) \ |
| 1029 | $(INSTALLED_RECOVERYIMAGE_TARGET) \ |
Doug Zongker | 4647f12 | 2009-07-02 09:00:54 -0700 | [diff] [blame] | 1030 | $(INSTALLED_SYSTEMIMAGE) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1031 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
Ying Wang | 9f8e8db | 2011-11-04 11:37:01 -0700 | [diff] [blame] | 1032 | $(INSTALLED_CACHEIMAGE_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1033 | $(INSTALLED_ANDROID_INFO_TXT_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1034 | $(built_ota_tools) \ |
| 1035 | $(APKCERTS_FILE) \ |
Doug Zongker | 283e2a1 | 2010-03-15 17:52:32 -0700 | [diff] [blame] | 1036 | $(HOST_OUT_EXECUTABLES)/fs_config \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1037 | | $(ACP) |
| 1038 | @echo "Package target files: $@" |
| 1039 | $(hide) rm -rf $@ $(zip_root) |
| 1040 | $(hide) mkdir -p $(dir $@) $(zip_root) |
| 1041 | @# Components of the recovery image |
| 1042 | $(hide) mkdir -p $(zip_root)/RECOVERY |
| 1043 | $(hide) $(call package_files-copy-root, \ |
| 1044 | $(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/RECOVERY/RAMDISK) |
| 1045 | ifdef INSTALLED_KERNEL_TARGET |
| 1046 | $(hide) $(ACP) $(INSTALLED_KERNEL_TARGET) $(zip_root)/RECOVERY/kernel |
| 1047 | endif |
| 1048 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
| 1049 | $(hide) $(ACP) \ |
| 1050 | $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/RECOVERY/second |
| 1051 | endif |
| 1052 | ifdef BOARD_KERNEL_CMDLINE |
| 1053 | $(hide) echo "$(BOARD_KERNEL_CMDLINE)" > $(zip_root)/RECOVERY/cmdline |
| 1054 | endif |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 1055 | ifdef BOARD_KERNEL_BASE |
| 1056 | $(hide) echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/RECOVERY/base |
| 1057 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 1058 | ifdef BOARD_KERNEL_PAGESIZE |
| 1059 | $(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/RECOVERY/pagesize |
| 1060 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1061 | @# Components of the boot image |
| 1062 | $(hide) mkdir -p $(zip_root)/BOOT |
| 1063 | $(hide) $(call package_files-copy-root, \ |
| 1064 | $(TARGET_ROOT_OUT),$(zip_root)/BOOT/RAMDISK) |
| 1065 | ifdef INSTALLED_KERNEL_TARGET |
| 1066 | $(hide) $(ACP) $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/kernel |
| 1067 | endif |
| 1068 | ifdef INSTALLED_2NDBOOTLOADER_TARGET |
| 1069 | $(hide) $(ACP) \ |
| 1070 | $(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second |
| 1071 | endif |
| 1072 | ifdef BOARD_KERNEL_CMDLINE |
| 1073 | $(hide) echo "$(BOARD_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline |
| 1074 | endif |
Doug Zongker | 38a649f | 2009-06-17 09:07:09 -0700 | [diff] [blame] | 1075 | ifdef BOARD_KERNEL_BASE |
| 1076 | $(hide) echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base |
| 1077 | endif |
Ying Wang | 4de6b5b | 2010-08-25 14:29:34 -0700 | [diff] [blame] | 1078 | ifdef BOARD_KERNEL_PAGESIZE |
| 1079 | $(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize |
| 1080 | endif |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 1081 | $(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\ |
| 1082 | mkdir -p $(zip_root)/RADIO; \ |
| 1083 | $(ACP) $(t) $(zip_root)/RADIO/$(notdir $(t));) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1084 | @# Contents of the system image |
| 1085 | $(hide) $(call package_files-copy-root, \ |
| 1086 | $(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM) |
| 1087 | @# Contents of the data image |
| 1088 | $(hide) $(call package_files-copy-root, \ |
| 1089 | $(TARGET_OUT_DATA),$(zip_root)/DATA) |
| 1090 | @# Extra contents of the OTA package |
| 1091 | $(hide) mkdir -p $(zip_root)/OTA/bin |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1092 | $(hide) $(ACP) $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/ |
| 1093 | $(hide) $(ACP) $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/ |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1094 | @# 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] | 1095 | @# build them. |
| 1096 | $(hide) mkdir -p $(zip_root)/META |
| 1097 | $(hide) $(ACP) $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt |
Doug Zongker | 17c83cf | 2009-04-01 15:48:46 -0700 | [diff] [blame] | 1098 | $(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt |
Doug Zongker | 3797473 | 2010-09-16 17:44:38 -0700 | [diff] [blame] | 1099 | $(hide) echo "recovery_api_version=$(PRIVATE_RECOVERY_API_VERSION)" > $(zip_root)/META/misc_info.txt |
Doug Zongker | b4c7d32 | 2010-07-01 15:30:11 -0700 | [diff] [blame] | 1100 | ifdef BOARD_FLASH_BLOCK_SIZE |
Doug Zongker | 3797473 | 2010-09-16 17:44:38 -0700 | [diff] [blame] | 1101 | $(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $(zip_root)/META/misc_info.txt |
Doug Zongker | b4c7d32 | 2010-07-01 15:30:11 -0700 | [diff] [blame] | 1102 | endif |
| 1103 | ifdef BOARD_BOOTIMAGE_PARTITION_SIZE |
Ying Wang | 0083671 | 2011-01-14 11:30:56 -0800 | [diff] [blame] | 1104 | $(hide) echo "boot_size=$(BOARD_BOOTIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt |
Doug Zongker | b4c7d32 | 2010-07-01 15:30:11 -0700 | [diff] [blame] | 1105 | endif |
| 1106 | ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE |
Ying Wang | 0083671 | 2011-01-14 11:30:56 -0800 | [diff] [blame] | 1107 | $(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt |
Doug Zongker | b4c7d32 | 2010-07-01 15:30:11 -0700 | [diff] [blame] | 1108 | endif |
Doug Zongker | 3797473 | 2010-09-16 17:44:38 -0700 | [diff] [blame] | 1109 | $(hide) echo "tool_extensions=$(tool_extensions)" >> $(zip_root)/META/misc_info.txt |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 1110 | $(hide) echo "default_system_dev_certificate=$(DEFAULT_SYSTEM_DEV_CERTIFICATE)" >> $(zip_root)/META/misc_info.txt |
Doug Zongker | 5d4808d | 2011-03-16 07:49:13 -0700 | [diff] [blame] | 1111 | ifdef PRODUCT_EXTRA_RECOVERY_KEYS |
| 1112 | $(hide) echo "extra_recovery_keys=$(PRODUCT_EXTRA_RECOVERY_KEYS)" >> $(zip_root)/META/misc_info.txt |
Doug Zongker | e121d6a | 2011-02-01 14:13:52 -0800 | [diff] [blame] | 1113 | endif |
Ying Wang | bd93d42 | 2011-10-28 17:02:30 -0700 | [diff] [blame] | 1114 | $(call generate-userimage-prop-dictionary, $(zip_root)/META/misc_info.txt) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1115 | @# Zip everything up, preserving symlinks |
| 1116 | $(hide) (cd $(zip_root) && zip -qry ../$(notdir $@) .) |
Doug Zongker | 23f8bde | 2011-09-07 14:11:51 -0700 | [diff] [blame] | 1117 | @# Run fs_config on all the system, boot ramdisk, and recovery ramdisk files in the zip, and save the output |
| 1118 | $(hide) zipinfo -1 $@ | awk 'BEGIN { FS="SYSTEM/" } /^SYSTEM\// {print "system/" $$2}' | $(HOST_OUT_EXECUTABLES)/fs_config > $(zip_root)/META/filesystem_config.txt |
| 1119 | $(hide) zipinfo -1 $@ | awk 'BEGIN { FS="BOOT/RAMDISK/" } /^BOOT\/RAMDISK\// {print $$2}' | $(HOST_OUT_EXECUTABLES)/fs_config > $(zip_root)/META/boot_filesystem_config.txt |
| 1120 | $(hide) zipinfo -1 $@ | awk 'BEGIN { FS="RECOVERY/RAMDISK/" } /^RECOVERY\/RAMDISK\// {print $$2}' | $(HOST_OUT_EXECUTABLES)/fs_config > $(zip_root)/META/recovery_filesystem_config.txt |
| 1121 | $(hide) (cd $(zip_root) && zip -q ../$(notdir $@) META/*filesystem_config.txt) |
Doug Zongker | 283e2a1 | 2010-03-15 17:52:32 -0700 | [diff] [blame] | 1122 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1123 | |
| 1124 | target-files-package: $(BUILT_TARGET_FILES_PACKAGE) |
| 1125 | |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 1126 | |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 1127 | ifneq ($(TARGET_PRODUCT),sdk) |
Ying Wang | 279f308 | 2011-02-09 12:26:42 -0800 | [diff] [blame] | 1128 | ifeq ($(filter generic%,$(TARGET_DEVICE)),) |
Ying Wang | fb0a347 | 2010-08-25 16:06:06 -0700 | [diff] [blame] | 1129 | ifneq ($(TARGET_NO_KERNEL),true) |
Ying Wang | a73b656 | 2011-03-03 21:52:08 -0800 | [diff] [blame] | 1130 | ifneq ($(recovery_fstab),) |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 1131 | |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 1132 | # ----------------------------------------------------------------- |
| 1133 | # OTA update package |
| 1134 | |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1135 | name := $(TARGET_PRODUCT) |
| 1136 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 1137 | name := $(name)_debug |
| 1138 | endif |
| 1139 | name := $(name)-ota-$(FILE_NAME_TAG) |
| 1140 | |
| 1141 | INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 1142 | |
| 1143 | $(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR) |
| 1144 | |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame^] | 1145 | $(INTERNAL_OTA_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(DISTTOOLS) $(SELINUX_DEPENDS) |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1146 | @echo "Package OTA: $@" |
Ying Wang | 68bb651 | 2010-08-25 15:23:21 -0700 | [diff] [blame] | 1147 | $(hide) ./build/tools/releasetools/ota_from_target_files -v \ |
Doug Zongker | 602a84e | 2009-06-18 08:35:12 -0700 | [diff] [blame] | 1148 | -p $(HOST_OUT) \ |
Stephen Smalley | 56882bf | 2012-02-09 13:36:21 -0500 | [diff] [blame] | 1149 | -k $(KEY_CERT_PAIR) \ |
| 1150 | $(BUILT_TARGET_FILES_PACKAGE) $@ |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1151 | |
| 1152 | .PHONY: otapackage |
| 1153 | otapackage: $(INTERNAL_OTA_PACKAGE_TARGET) |
| 1154 | |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 1155 | # ----------------------------------------------------------------- |
| 1156 | # The update package |
| 1157 | |
| 1158 | name := $(TARGET_PRODUCT) |
| 1159 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 1160 | name := $(name)_debug |
| 1161 | endif |
| 1162 | name := $(name)-img-$(FILE_NAME_TAG) |
| 1163 | |
| 1164 | INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 1165 | |
| 1166 | ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),) |
| 1167 | # default to common dir for device vendor |
| 1168 | $(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_DEVICE_DIR)/../common |
| 1169 | else |
| 1170 | $(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_RELEASETOOLS_EXTENSIONS) |
| 1171 | endif |
| 1172 | |
Colin Cross | c312f31 | 2012-04-19 13:54:39 -0700 | [diff] [blame^] | 1173 | $(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(DISTTOOLS) $(SELINUX_DEPENDS) |
Ying Wang | 09a00a6 | 2010-10-20 14:01:09 -0700 | [diff] [blame] | 1174 | @echo "Package: $@" |
| 1175 | $(hide) ./build/tools/releasetools/img_from_target_files -v \ |
| 1176 | -s $(extensions) \ |
| 1177 | -p $(HOST_OUT) \ |
| 1178 | $(BUILT_TARGET_FILES_PACKAGE) $@ |
| 1179 | |
| 1180 | .PHONY: updatepackage |
| 1181 | updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET) |
| 1182 | |
Ying Wang | a73b656 | 2011-03-03 21:52:08 -0800 | [diff] [blame] | 1183 | endif # recovery_fstab is defined |
Ying Wang | fb0a347 | 2010-08-25 16:06:06 -0700 | [diff] [blame] | 1184 | endif # TARGET_NO_KERNEL != true |
Ying Wang | 279f308 | 2011-02-09 12:26:42 -0800 | [diff] [blame] | 1185 | endif # TARGET_DEVICE != generic* |
Doug Zongker | 367910f | 2009-06-15 18:56:51 -0700 | [diff] [blame] | 1186 | endif # TARGET_PRODUCT != sdk |
Doug Zongker | 8678df4 | 2009-06-15 14:30:14 -0700 | [diff] [blame] | 1187 | |
| 1188 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1189 | # A zip of the tests that are built when running "make tests". |
| 1190 | # This is very similar to BUILT_TARGET_FILES_PACKAGE, but we |
Ying Wang | c5f0497 | 2012-03-13 11:22:04 -0700 | [diff] [blame] | 1191 | # only grab DATA, and it's called "*-tests-*.zip". |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1192 | # |
| 1193 | name := $(TARGET_PRODUCT) |
| 1194 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 1195 | name := $(name)_debug |
| 1196 | endif |
| 1197 | name := $(name)-tests-$(FILE_NAME_TAG) |
| 1198 | |
| 1199 | intermediates := $(call intermediates-dir-for,PACKAGING,tests_zip) |
| 1200 | BUILT_TESTS_ZIP_PACKAGE := $(intermediates)/$(name).zip |
| 1201 | $(BUILT_TESTS_ZIP_PACKAGE): intermediates := $(intermediates) |
| 1202 | $(BUILT_TESTS_ZIP_PACKAGE): zip_root := $(intermediates)/$(name) |
| 1203 | |
| 1204 | # Depending on the images guarantees that the underlying |
| 1205 | # directories are up-to-date. |
| 1206 | $(BUILT_TESTS_ZIP_PACKAGE): \ |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 1207 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 1208 | | $(ACP) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1209 | @echo "Package test files: $@" |
| 1210 | $(hide) rm -rf $@ $(zip_root) |
| 1211 | $(hide) mkdir -p $(dir $@) $(zip_root) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1212 | @# Contents of the data image |
| 1213 | $(hide) $(call package_files-copy-root, \ |
| 1214 | $(TARGET_OUT_DATA),$(zip_root)/DATA) |
| 1215 | $(hide) (cd $(zip_root) && zip -qry ../$(notdir $@) .) |
| 1216 | |
Ying Wang | 9c76255 | 2010-09-10 14:39:33 -0700 | [diff] [blame] | 1217 | .PHONY: tests-zip-package |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1218 | tests-zip-package: $(BUILT_TESTS_ZIP_PACKAGE) |
| 1219 | |
Ying Wang | db2cb63 | 2010-09-14 16:07:56 -0700 | [diff] [blame] | 1220 | # Target needed by tests build |
| 1221 | .PHONY: tests-build-target |
Ying Wang | c6e952f | 2011-11-16 11:12:41 -0800 | [diff] [blame] | 1222 | tests-build-target: $(BUILT_TESTS_ZIP_PACKAGE) |
Ying Wang | db2cb63 | 2010-09-14 16:07:56 -0700 | [diff] [blame] | 1223 | |
| 1224 | ifneq (,$(filter $(MAKECMDGOALS),tests-build-target)) |
| 1225 | $(call dist-for-goals, tests-build-target, \ |
Ying Wang | c6e952f | 2011-11-16 11:12:41 -0800 | [diff] [blame] | 1226 | $(BUILT_TESTS_ZIP_PACKAGE)) |
Ying Wang | 9c76255 | 2010-09-10 14:39:33 -0700 | [diff] [blame] | 1227 | endif |
| 1228 | |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 1229 | .PHONY: tests |
| 1230 | tests: $(BUILT_TESTS_ZIP_PACKAGE) |
| 1231 | ifneq (,$(filter tests, $(MAKECMDGOALS))) |
| 1232 | $(call dist-for-goals, tests, $(BUILT_TESTS_ZIP_PACKAGE)) |
| 1233 | endif |
Ying Wang | 160b670 | 2012-03-13 18:58:27 -0700 | [diff] [blame] | 1234 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1235 | # ----------------------------------------------------------------- |
| 1236 | # A zip of the symbols directory. Keep the full paths to make it |
| 1237 | # more obvious where these files came from. |
| 1238 | # |
| 1239 | name := $(TARGET_PRODUCT) |
| 1240 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 1241 | name := $(name)_debug |
| 1242 | endif |
| 1243 | name := $(name)-symbols-$(FILE_NAME_TAG) |
| 1244 | |
| 1245 | SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name).zip |
| 1246 | $(SYMBOLS_ZIP): $(INSTALLED_SYSTEMIMAGE) $(INSTALLED_BOOTIMAGE_TARGET) |
| 1247 | @echo "Package symbols: $@" |
| 1248 | $(hide) rm -rf $@ |
| 1249 | $(hide) mkdir -p $(dir $@) |
| 1250 | $(hide) zip -qr $@ $(TARGET_OUT_UNSTRIPPED) |
| 1251 | |
| 1252 | # ----------------------------------------------------------------- |
| 1253 | # A zip of the Android Apps. Not keeping full path so that we don't |
| 1254 | # include product names when distributing |
| 1255 | # |
| 1256 | name := $(TARGET_PRODUCT) |
| 1257 | ifeq ($(TARGET_BUILD_TYPE),debug) |
| 1258 | name := $(name)_debug |
| 1259 | endif |
| 1260 | name := $(name)-apps-$(FILE_NAME_TAG) |
| 1261 | |
| 1262 | APPS_ZIP := $(PRODUCT_OUT)/$(name).zip |
| 1263 | $(APPS_ZIP): $(INSTALLED_SYSTEMIMAGE) |
| 1264 | @echo "Package apps: $@" |
| 1265 | $(hide) rm -rf $@ |
| 1266 | $(hide) mkdir -p $(dir $@) |
| 1267 | $(hide) zip -qj $@ $(TARGET_OUT_APPS)/* |
| 1268 | |
Guang Zhu | 0198d6e | 2010-04-23 11:54:37 -0700 | [diff] [blame] | 1269 | |
| 1270 | #------------------------------------------------------------------ |
| 1271 | # A zip of emma code coverage meta files. Generated for fully emma |
| 1272 | # instrumented build. |
| 1273 | # |
| 1274 | EMMA_META_ZIP := $(PRODUCT_OUT)/emma_meta.zip |
| 1275 | $(EMMA_META_ZIP): $(INSTALLED_SYSTEMIMAGE) |
| 1276 | @echo "Collecting Emma coverage meta files." |
| 1277 | $(hide) find $(TARGET_COMMON_OUT_ROOT) -name "coverage.em" | \ |
| 1278 | zip -@ -q $@ |
| 1279 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1280 | # ----------------------------------------------------------------- |
| 1281 | # dalvik something |
| 1282 | .PHONY: dalvikfiles |
| 1283 | dalvikfiles: $(INTERNAL_DALVIK_MODULES) |
| 1284 | |
| 1285 | # ----------------------------------------------------------------- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1286 | # The emulator package |
| 1287 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1288 | INTERNAL_EMULATOR_PACKAGE_FILES += \ |
| 1289 | $(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \ |
Jean-Baptiste Queru | 5ea72ef | 2012-01-06 16:44:06 -0800 | [diff] [blame] | 1290 | prebuilts/qemu-kernel/$(TARGET_ARCH)/kernel-qemu \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1291 | $(INSTALLED_RAMDISK_TARGET) \ |
| 1292 | $(INSTALLED_SYSTEMIMAGE) \ |
| 1293 | $(INSTALLED_USERDATAIMAGE_TARGET) |
| 1294 | |
| 1295 | name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG) |
| 1296 | |
| 1297 | INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip |
| 1298 | |
| 1299 | $(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES) |
| 1300 | @echo "Package: $@" |
| 1301 | $(hide) zip -qj $@ $(INTERNAL_EMULATOR_PACKAGE_FILES) |
| 1302 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1303 | # ----------------------------------------------------------------- |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 1304 | # Old PDK stuffs, retired |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1305 | # The pdk package (Platform Development Kit) |
| 1306 | |
Keun young Park | 7fc7aad | 2012-02-27 15:49:23 -0800 | [diff] [blame] | 1307 | #ifneq (,$(filter pdk,$(MAKECMDGOALS))) |
| 1308 | # include development/pdk/Pdk.mk |
| 1309 | #endif |
| 1310 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1311 | |
| 1312 | # ----------------------------------------------------------------- |
| 1313 | # The SDK |
| 1314 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1315 | # The SDK includes host-specific components, so it belongs under HOST_OUT. |
| 1316 | sdk_dir := $(HOST_OUT)/sdk |
| 1317 | |
| 1318 | # Build a name that looks like: |
| 1319 | # |
| 1320 | # linux-x86 --> android-sdk_12345_linux-x86 |
| 1321 | # darwin-x86 --> android-sdk_12345_mac-x86 |
| 1322 | # windows-x86 --> android-sdk_12345_windows |
| 1323 | # |
| 1324 | sdk_name := android-sdk_$(FILE_NAME_TAG) |
| 1325 | ifeq ($(HOST_OS),darwin) |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 1326 | INTERNAL_SDK_HOST_OS_NAME := mac |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1327 | else |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 1328 | INTERNAL_SDK_HOST_OS_NAME := $(HOST_OS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1329 | endif |
| 1330 | ifneq ($(HOST_OS),windows) |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 1331 | INTERNAL_SDK_HOST_OS_NAME := $(INTERNAL_SDK_HOST_OS_NAME)-$(HOST_ARCH) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1332 | endif |
Joe Onorato | 03fbe40 | 2009-04-13 08:31:16 -0700 | [diff] [blame] | 1333 | sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1334 | |
| 1335 | sdk_dep_file := $(sdk_dir)/sdk_deps.mk |
| 1336 | |
| 1337 | ATREE_FILES := |
| 1338 | -include $(sdk_dep_file) |
| 1339 | |
| 1340 | # if we don't have a real list, then use "everything" |
| 1341 | ifeq ($(strip $(ATREE_FILES)),) |
| 1342 | ATREE_FILES := \ |
| 1343 | $(ALL_PREBUILT) \ |
| 1344 | $(ALL_COPIED_HEADERS) \ |
| 1345 | $(ALL_GENERATED_SOURCES) \ |
| 1346 | $(ALL_DEFAULT_INSTALLED_MODULES) \ |
| 1347 | $(INSTALLED_RAMDISK_TARGET) \ |
| 1348 | $(ALL_DOCS) \ |
| 1349 | $(ALL_SDK_FILES) |
| 1350 | endif |
| 1351 | |
| 1352 | atree_dir := development/build |
| 1353 | |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 1354 | # sdk/build/tools.atree contains the generic rules, while |
| 1355 | # |
| 1356 | # sdk/build/tools.$(TARGET_ARCH).atree contains target-specific rules |
| 1357 | # the latter is optional. |
| 1358 | # |
| 1359 | sdk_tools_atree_files := sdk/build/tools.atree |
| 1360 | ifneq (,$(strip $(wildcard sdk/build/tools.$(TARGET_ARCH).atree))) |
| 1361 | sdk_tools_atree_files += sdk/build/tools.$(TARGET_ARCH).atree |
| 1362 | endif |
Raphael Moll | 3ab307a | 2012-03-02 12:40:04 -0800 | [diff] [blame] | 1363 | ifneq (,$(strip $(wildcard sdk/build/tools.$(HOST_OS).atree))) |
| 1364 | sdk_tools_atree_files += sdk/build/tools.$(HOST_OS).atree |
| 1365 | endif |
| 1366 | ifneq (,$(strip $(wildcard sdk/build/tools.$(HOST_OS)-$(HOST_ARCH).atree))) |
| 1367 | sdk_tools_atree_files += sdk/build/tools.$(HOST_OS)-$(HOST_ARCH).atree |
| 1368 | endif |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 1369 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1370 | sdk_atree_files := \ |
| 1371 | $(atree_dir)/sdk.exclude.atree \ |
| 1372 | $(atree_dir)/sdk.atree \ |
Xavier Ducrohet | ffd5087 | 2010-09-27 15:51:32 -0700 | [diff] [blame] | 1373 | $(atree_dir)/sdk-$(HOST_OS)-$(HOST_ARCH).atree \ |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 1374 | $(sdk_tools_atree_files) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1375 | |
David 'Digit' Turner | 77ec16a | 2011-06-23 12:49:02 +0200 | [diff] [blame] | 1376 | # development/build/sdk-android-<abi>.atree is used to differentiate |
| 1377 | # between architecture models (e.g. ARMv5TE versus ARMv7) when copying |
| 1378 | # files like the kernel image. We use TARGET_CPU_ABI because we don't |
| 1379 | # have a better way to distinguish between CPU models. |
| 1380 | ifneq (,$(strip $(wildcard $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree))) |
| 1381 | sdk_atree_files += $(atree_dir)/sdk-android-$(TARGET_CPU_ABI).atree |
| 1382 | endif |
| 1383 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1384 | deps := \ |
| 1385 | $(target_notice_file_txt) \ |
| 1386 | $(tools_notice_file_txt) \ |
| 1387 | $(OUT_DOCS)/offline-sdk-timestamp \ |
Ying Wang | 139e332 | 2010-03-31 17:29:04 -0700 | [diff] [blame] | 1388 | $(SYMBOLS_ZIP) \ |
Doug Zongker | dddd957 | 2009-06-15 21:25:32 -0700 | [diff] [blame] | 1389 | $(INSTALLED_SYSTEMIMAGE) \ |
| 1390 | $(INSTALLED_USERDATAIMAGE_TARGET) \ |
| 1391 | $(INSTALLED_RAMDISK_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1392 | $(INSTALLED_SDK_BUILD_PROP_TARGET) \ |
Ying Wang | 139e332 | 2010-03-31 17:29:04 -0700 | [diff] [blame] | 1393 | $(INSTALLED_BUILD_PROP_TARGET) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1394 | $(ATREE_FILES) \ |
| 1395 | $(atree_dir)/sdk.atree \ |
David 'Digit' Turner | 74b0c36 | 2011-03-23 11:20:14 +0100 | [diff] [blame] | 1396 | $(sdk_tools_atree_files) \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1397 | $(HOST_OUT_EXECUTABLES)/atree \ |
| 1398 | $(HOST_OUT_EXECUTABLES)/line_endings |
| 1399 | |
| 1400 | INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip |
| 1401 | $(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name) |
| 1402 | $(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name) |
| 1403 | $(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file) |
| 1404 | $(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files) |
| 1405 | |
| 1406 | # Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built. |
| 1407 | # |
| 1408 | #SDK_GNU_ERROR := true |
| 1409 | |
| 1410 | $(INTERNAL_SDK_TARGET): $(deps) |
| 1411 | @echo "Package SDK: $@" |
| 1412 | $(hide) rm -rf $(PRIVATE_DIR) $@ |
| 1413 | $(hide) for f in $(target_gnu_MODULES); do \ |
| 1414 | if [ -f $$f ]; then \ |
| 1415 | echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \ |
| 1416 | including GNU target $$f >&2; \ |
| 1417 | FAIL=$(SDK_GNU_ERROR); \ |
| 1418 | fi; \ |
| 1419 | done; \ |
| 1420 | if [ $$FAIL ]; then exit 1; fi |
| 1421 | $(hide) ( \ |
| 1422 | $(HOST_OUT_EXECUTABLES)/atree \ |
| 1423 | $(addprefix -f ,$(PRIVATE_INPUT_FILES)) \ |
| 1424 | -m $(PRIVATE_DEP_FILE) \ |
| 1425 | -I . \ |
| 1426 | -I $(PRODUCT_OUT) \ |
| 1427 | -I $(HOST_OUT) \ |
| 1428 | -I $(TARGET_COMMON_OUT_ROOT) \ |
| 1429 | -v "PLATFORM_NAME=android-$(PLATFORM_VERSION)" \ |
Raphael Moll | 7558ad5 | 2011-01-05 14:58:17 -0800 | [diff] [blame] | 1430 | -v "OUT_DIR=$(OUT_DIR)" \ |
Raphael | 2a53317 | 2011-11-15 16:29:16 -0800 | [diff] [blame] | 1431 | -v "HOST_OUT=$(HOST_OUT)" \ |
Bruce Beare | 18a130e | 2011-02-18 15:06:20 -0800 | [diff] [blame] | 1432 | -v "TARGET_ARCH=$(TARGET_ARCH)" \ |
| 1433 | -v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \ |
David 'Digit' Turner | 557c51f | 2011-08-25 14:28:03 +0200 | [diff] [blame] | 1434 | -v "DLL_EXTENSION=$(HOST_SHLIB_SUFFIX)" \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1435 | -o $(PRIVATE_DIR) && \ |
| 1436 | cp -f $(target_notice_file_txt) \ |
Xavier Ducrohet | 6de7bc6 | 2011-09-21 10:22:19 -0700 | [diff] [blame] | 1437 | $(PRIVATE_DIR)/system-images/android-$(PLATFORM_VERSION)/$(TARGET_CPU_ABI)/NOTICE.txt && \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1438 | cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/tools/NOTICE.txt && \ |
Xavier Ducrohet | 4216a8c | 2011-03-15 13:28:40 -0700 | [diff] [blame] | 1439 | cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/platform-tools/NOTICE.txt && \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1440 | HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \ |
Raphael | 7a6a9c3 | 2011-02-01 13:30:00 -0800 | [diff] [blame] | 1441 | development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1442 | chmod -R ug+rwX $(PRIVATE_DIR) && \ |
| 1443 | cd $(dir $@) && zip -rq $(notdir $@) $(PRIVATE_NAME) \ |
| 1444 | ) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 ) |
| 1445 | |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 1446 | |
| 1447 | # Is a Windows SDK requested? If so, we need some definitions from here |
| 1448 | # in order to find the Linux SDK used to create the Windows one. |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 1449 | MAIN_SDK_NAME := $(sdk_name) |
| 1450 | MAIN_SDK_DIR := $(sdk_dir) |
| 1451 | MAIN_SDK_ZIP := $(INTERNAL_SDK_TARGET) |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 1452 | ifneq ($(filter win_sdk,$(MAKECMDGOALS)),) |
Raphael | 3d224a0 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 1453 | include $(TOPDIR)development/build/tools/windows_sdk.mk |
| 1454 | endif |
| 1455 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1456 | # ----------------------------------------------------------------- |
| 1457 | # Findbugs |
| 1458 | INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml |
| 1459 | INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html |
| 1460 | $(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES) |
| 1461 | @echo UnionBugs: $@ |
| 1462 | $(hide) prebuilt/common/findbugs/bin/unionBugs $(ALL_FINDBUGS_FILES) \ |
| 1463 | > $@ |
| 1464 | $(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET) |
| 1465 | @echo ConvertXmlToText: $@ |
| 1466 | $(hide) prebuilt/common/findbugs/bin/convertXmlToText -html:fancy.xsl \ |
| 1467 | $(INTERNAL_FINDBUGS_XML_TARGET) > $@ |
| 1468 | |
| 1469 | # ----------------------------------------------------------------- |
| 1470 | # Findbugs |
| 1471 | |
| 1472 | # ----------------------------------------------------------------- |
| 1473 | # These are some additional build tasks that need to be run. |
| 1474 | include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk)) |
Claes Elgemark | e22ad67 | 2010-11-12 15:46:00 +0100 | [diff] [blame] | 1475 | -include $(sort $(wildcard vendor/*/build/tasks/*.mk)) |
Raphael | c4d4731 | 2011-02-15 16:09:36 -0800 | [diff] [blame] | 1476 | |
| 1477 | # ----------------------------------------------------------------- |
| 1478 | # Create SDK repository packages. Must be done after tasks/* since |
| 1479 | # we need the addon rules defined. |
| 1480 | ifneq ($(sdk_repo_goal),) |
| 1481 | include $(TOPDIR)development/build/tools/sdk_repo.mk |
| 1482 | endif |