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