2009-03-04 04:28:42 +01:00
|
|
|
# Put some miscellaneous rules here
|
|
|
|
|
|
|
|
# Pick a reasonable string to use to identify files.
|
|
|
|
ifneq "" "$(filter eng.%,$(BUILD_NUMBER))"
|
|
|
|
# BUILD_NUMBER has a timestamp in it, which means that
|
|
|
|
# it will change every time. Pick a stable value.
|
|
|
|
FILE_NAME_TAG := eng.$(USER)
|
|
|
|
else
|
|
|
|
FILE_NAME_TAG := $(BUILD_NUMBER)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# Define rules to copy PRODUCT_COPY_FILES defined by the product.
|
|
|
|
# PRODUCT_COPY_FILES contains words like <source file>:<dest file>.
|
|
|
|
# <dest file> is relative to $(PRODUCT_OUT), so it should look like,
|
|
|
|
# e.g., "system/etc/file.xml".
|
2010-03-02 01:18:59 +01:00
|
|
|
# The filter part means "only eval the copy-one-file rule if this
|
2010-11-03 05:31:47 +01:00
|
|
|
# src:dest pair is the first one to match the same dest"
|
|
|
|
unique_product_copy_files_destinations := $(sort \
|
|
|
|
$(foreach cf,$(PRODUCT_COPY_FILES), $(call word-colon,2,$(cf))))
|
2009-03-04 04:28:42 +01:00
|
|
|
$(foreach cf,$(PRODUCT_COPY_FILES), \
|
2010-11-03 05:31:47 +01:00
|
|
|
$(eval _src := $(call word-colon,1,$(cf))) \
|
|
|
|
$(eval _dest := $(call word-colon,2,$(cf))) \
|
|
|
|
$(if $(filter $(unique_product_copy_files_destinations),$(_dest)), \
|
|
|
|
$(eval _fulldest := $(call append-path,$(PRODUCT_OUT),$(_dest))) \
|
|
|
|
$(eval $(call copy-one-file,$(_src),$(_fulldest))) \
|
|
|
|
$(eval ALL_DEFAULT_INSTALLED_MODULES += $(_fulldest)) \
|
|
|
|
$(eval unique_product_copy_files_destinations := $(filter-out $(_dest), \
|
|
|
|
$(unique_product_copy_files_destinations)))))
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# docs/index.html
|
|
|
|
gen := $(OUT_DOCS)/index.html
|
|
|
|
ALL_DOCS += $(gen)
|
|
|
|
$(gen): frameworks/base/docs/docs-redirect-index.html
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
@cp -f $< $@
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# default.prop
|
|
|
|
INSTALLED_DEFAULT_PROP_TARGET := $(TARGET_ROOT_OUT)/default.prop
|
|
|
|
ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_DEFAULT_PROP_TARGET)
|
|
|
|
ADDITIONAL_DEFAULT_PROPERTIES := \
|
|
|
|
$(call collapse-pairs, $(ADDITIONAL_DEFAULT_PROPERTIES))
|
|
|
|
|
|
|
|
$(INSTALLED_DEFAULT_PROP_TARGET):
|
|
|
|
@echo Target buildinfo: $@
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
$(hide) echo "#" > $@; \
|
|
|
|
echo "# ADDITIONAL_DEFAULT_PROPERTIES" >> $@; \
|
|
|
|
echo "#" >> $@;
|
2010-09-07 19:51:12 +02:00
|
|
|
$(hide) $(foreach line,$(ADDITIONAL_DEFAULT_PROPERTIES), \
|
|
|
|
echo "$(line)" >> $@;)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# build.prop
|
|
|
|
INSTALLED_BUILD_PROP_TARGET := $(TARGET_OUT)/build.prop
|
|
|
|
ALL_DEFAULT_INSTALLED_MODULES += $(INSTALLED_BUILD_PROP_TARGET)
|
|
|
|
ADDITIONAL_BUILD_PROPERTIES := \
|
|
|
|
$(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))
|
|
|
|
|
|
|
|
# A list of arbitrary tags describing the build configuration.
|
|
|
|
# Force ":=" so we can use +=
|
|
|
|
BUILD_VERSION_TAGS := $(BUILD_VERSION_TAGS)
|
|
|
|
ifeq ($(TARGET_BUILD_TYPE),debug)
|
|
|
|
BUILD_VERSION_TAGS += debug
|
|
|
|
endif
|
|
|
|
# Apps are always signed with test keys, and may be re-signed in a post-build
|
|
|
|
# step. If that happens, the "test-keys" tag will be removed by that step.
|
|
|
|
BUILD_VERSION_TAGS += test-keys
|
|
|
|
BUILD_VERSION_TAGS := $(subst $(space),$(comma),$(sort $(BUILD_VERSION_TAGS)))
|
|
|
|
|
|
|
|
# A human-readable string that descibes this build in detail.
|
|
|
|
build_desc := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT) $(PLATFORM_VERSION) $(BUILD_ID) $(BUILD_NUMBER) $(BUILD_VERSION_TAGS)
|
|
|
|
$(INSTALLED_BUILD_PROP_TARGET): PRIVATE_BUILD_DESC := $(build_desc)
|
|
|
|
|
|
|
|
# The string used to uniquely identify this build; used by the OTA server.
|
|
|
|
ifeq (,$(strip $(BUILD_FINGERPRINT)))
|
2010-09-15 22:02:12 +02:00
|
|
|
BUILD_FINGERPRINT := $(PRODUCT_BRAND)/$(TARGET_PRODUCT)/$(TARGET_DEVICE):$(PLATFORM_VERSION)/$(BUILD_ID)/$(BUILD_NUMBER):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS)
|
2009-03-04 04:28:42 +01:00
|
|
|
endif
|
|
|
|
ifneq ($(words $(BUILD_FINGERPRINT)),1)
|
|
|
|
$(error BUILD_FINGERPRINT cannot contain spaces: "$(BUILD_FINGERPRINT)")
|
|
|
|
endif
|
|
|
|
|
2009-03-25 06:40:59 +01:00
|
|
|
# Display parameters shown under Settings -> About Phone
|
|
|
|
ifeq ($(TARGET_BUILD_VARIANT),user)
|
|
|
|
# User builds should show:
|
|
|
|
# release build number or branch.buld_number non-release builds
|
|
|
|
|
|
|
|
# Dev. branches should have DISPLAY_BUILD_NUMBER set
|
|
|
|
ifeq "true" "$(DISPLAY_BUILD_NUMBER)"
|
|
|
|
BUILD_DISPLAY_ID := $(BUILD_ID).$(BUILD_NUMBER)
|
|
|
|
else
|
|
|
|
BUILD_DISPLAY_ID := $(BUILD_ID)
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
# Non-user builds should show detailed build information
|
|
|
|
BUILD_DISPLAY_ID := $(build_desc)
|
|
|
|
endif
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# Selects the first locale in the list given as the argument,
|
|
|
|
# and splits it into language and region, which each may be
|
|
|
|
# empty.
|
|
|
|
define default-locale
|
|
|
|
$(subst _, , $(firstword $(1)))
|
|
|
|
endef
|
|
|
|
|
|
|
|
# Selects the first locale in the list given as the argument
|
|
|
|
# and returns the language (or the region)
|
|
|
|
define default-locale-language
|
|
|
|
$(word 2, 2, $(call default-locale, $(1)))
|
|
|
|
endef
|
|
|
|
define default-locale-region
|
|
|
|
$(word 3, 3, $(call default-locale, $(1)))
|
|
|
|
endef
|
|
|
|
|
|
|
|
BUILDINFO_SH := build/tools/buildinfo.sh
|
2010-11-03 11:33:46 +01:00
|
|
|
$(INSTALLED_BUILD_PROP_TARGET): $(BUILDINFO_SH) $(INTERNAL_BUILD_ID_MAKEFILE) $(BUILD_SYSTEM)/version_defaults.mk $(wildcard $(TARGET_DEVICE_DIR)/system.prop)
|
2009-03-04 04:28:42 +01:00
|
|
|
@echo Target buildinfo: $@
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
$(hide) TARGET_BUILD_TYPE="$(TARGET_BUILD_VARIANT)" \
|
|
|
|
TARGET_DEVICE="$(TARGET_DEVICE)" \
|
|
|
|
PRODUCT_NAME="$(TARGET_PRODUCT)" \
|
|
|
|
PRODUCT_BRAND="$(PRODUCT_BRAND)" \
|
|
|
|
PRODUCT_DEFAULT_LANGUAGE="$(call default-locale-language,$(PRODUCT_LOCALES))" \
|
|
|
|
PRODUCT_DEFAULT_REGION="$(call default-locale-region,$(PRODUCT_LOCALES))" \
|
2009-05-20 22:37:35 +02:00
|
|
|
PRODUCT_DEFAULT_WIFI_CHANNELS="$(PRODUCT_DEFAULT_WIFI_CHANNELS)" \
|
2009-03-04 04:28:42 +01:00
|
|
|
PRODUCT_MODEL="$(PRODUCT_MODEL)" \
|
|
|
|
PRODUCT_MANUFACTURER="$(PRODUCT_MANUFACTURER)" \
|
|
|
|
PRIVATE_BUILD_DESC="$(PRIVATE_BUILD_DESC)" \
|
|
|
|
BUILD_ID="$(BUILD_ID)" \
|
|
|
|
BUILD_DISPLAY_ID="$(BUILD_DISPLAY_ID)" \
|
|
|
|
BUILD_NUMBER="$(BUILD_NUMBER)" \
|
|
|
|
PLATFORM_VERSION="$(PLATFORM_VERSION)" \
|
|
|
|
PLATFORM_SDK_VERSION="$(PLATFORM_SDK_VERSION)" \
|
2009-05-08 21:06:17 +02:00
|
|
|
PLATFORM_VERSION_CODENAME="$(PLATFORM_VERSION_CODENAME)" \
|
2009-03-04 04:28:42 +01:00
|
|
|
BUILD_VERSION_TAGS="$(BUILD_VERSION_TAGS)" \
|
|
|
|
TARGET_BOOTLOADER_BOARD_NAME="$(TARGET_BOOTLOADER_BOARD_NAME)" \
|
|
|
|
BUILD_FINGERPRINT="$(BUILD_FINGERPRINT)" \
|
|
|
|
TARGET_BOARD_PLATFORM="$(TARGET_BOARD_PLATFORM)" \
|
2009-05-22 00:45:30 +02:00
|
|
|
TARGET_CPU_ABI="$(TARGET_CPU_ABI)" \
|
2009-11-07 00:12:00 +01:00
|
|
|
TARGET_CPU_ABI2="$(TARGET_CPU_ABI2)" \
|
2009-03-04 04:28:42 +01:00
|
|
|
bash $(BUILDINFO_SH) > $@
|
|
|
|
$(hide) if [ -f $(TARGET_DEVICE_DIR)/system.prop ]; then \
|
|
|
|
cat $(TARGET_DEVICE_DIR)/system.prop >> $@; \
|
|
|
|
fi
|
|
|
|
$(if $(ADDITIONAL_BUILD_PROPERTIES), \
|
|
|
|
$(hide) echo >> $@; \
|
|
|
|
echo "#" >> $@; \
|
|
|
|
echo "# ADDITIONAL_BUILD_PROPERTIES" >> $@; \
|
|
|
|
echo "#" >> $@; )
|
2010-09-07 19:51:12 +02:00
|
|
|
$(hide) $(foreach line,$(ADDITIONAL_BUILD_PROPERTIES), \
|
|
|
|
echo "$(line)" >> $@;)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
build_desc :=
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# sdk-build.prop
|
|
|
|
#
|
|
|
|
# There are certain things in build.prop that we don't want to
|
|
|
|
# ship with the sdk; remove them.
|
|
|
|
|
|
|
|
# This must be a list of entire property keys followed by
|
|
|
|
# "=" characters, without any internal spaces.
|
|
|
|
sdk_build_prop_remove := \
|
|
|
|
ro.build.user= \
|
|
|
|
ro.build.host= \
|
|
|
|
ro.product.brand= \
|
|
|
|
ro.product.manufacturer= \
|
|
|
|
ro.product.device=
|
|
|
|
# TODO: Remove this soon-to-be obsolete property
|
|
|
|
sdk_build_prop_remove += ro.build.product=
|
|
|
|
INSTALLED_SDK_BUILD_PROP_TARGET := $(PRODUCT_OUT)/sdk/sdk-build.prop
|
|
|
|
$(INSTALLED_SDK_BUILD_PROP_TARGET): $(INSTALLED_BUILD_PROP_TARGET)
|
|
|
|
@echo SDK buildinfo: $@
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
$(hide) grep -v "$(subst $(space),\|,$(strip \
|
|
|
|
$(sdk_build_prop_remove)))" $< > $@.tmp
|
|
|
|
$(hide) for x in $(sdk_build_prop_remove); do \
|
|
|
|
echo "$$x"generic >> $@.tmp; done
|
|
|
|
$(hide) mv $@.tmp $@
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# package stats
|
|
|
|
PACKAGE_STATS_FILE := $(PRODUCT_OUT)/package-stats.txt
|
|
|
|
PACKAGES_TO_STAT := \
|
|
|
|
$(sort $(filter $(TARGET_OUT)/% $(TARGET_OUT_DATA)/%, \
|
|
|
|
$(filter %.jar %.apk, $(ALL_DEFAULT_INSTALLED_MODULES))))
|
|
|
|
$(PACKAGE_STATS_FILE): $(PACKAGES_TO_STAT)
|
|
|
|
@echo Package stats: $@
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
$(hide) rm -f $@
|
|
|
|
$(hide) build/tools/dump-package-stats $^ > $@
|
|
|
|
|
|
|
|
.PHONY: package-stats
|
|
|
|
package-stats: $(PACKAGE_STATS_FILE)
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# Cert-to-package mapping. Used by the post-build signing tools.
|
|
|
|
name := $(TARGET_PRODUCT)
|
|
|
|
ifeq ($(TARGET_BUILD_TYPE),debug)
|
|
|
|
name := $(name)_debug
|
|
|
|
endif
|
|
|
|
name := $(name)-apkcerts-$(FILE_NAME_TAG)
|
|
|
|
intermediates := \
|
|
|
|
$(call intermediates-dir-for,PACKAGING,apkcerts)
|
|
|
|
APKCERTS_FILE := $(intermediates)/$(name).txt
|
|
|
|
# Depending on the built packages isn't exactly right,
|
|
|
|
# but it should guarantee that the apkcerts file is rebuilt
|
|
|
|
# if any packages change which certs they're signed with.
|
|
|
|
all_built_packages := $(foreach p,$(PACKAGES),$(ALL_MODULES.$(p).BUILT))
|
2010-07-24 01:42:13 +02:00
|
|
|
ifneq ($(TARGET_BUILD_APPS),)
|
|
|
|
# We don't need to really build all the modules for apps_only build.
|
|
|
|
$(APKCERTS_FILE):
|
|
|
|
else
|
2009-03-04 04:28:42 +01:00
|
|
|
$(APKCERTS_FILE): $(all_built_packages)
|
2010-07-24 01:42:13 +02:00
|
|
|
endif
|
2009-03-04 04:28:42 +01:00
|
|
|
@echo APK certs list: $@
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
@rm -f $@
|
|
|
|
$(hide) $(foreach p,$(PACKAGES),\
|
2009-12-16 00:06:55 +01:00
|
|
|
$(if $(PACKAGES.$(p).EXTERNAL_KEY),\
|
|
|
|
echo 'name="$(p).apk" certificate="EXTERNAL" \
|
|
|
|
private_key=""' >> $@;,\
|
|
|
|
echo 'name="$(p).apk" certificate="$(PACKAGES.$(p).CERTIFICATE)" \
|
|
|
|
private_key="$(PACKAGES.$(p).PRIVATE_KEY)"' >> $@;))
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
.PHONY: apkcerts-list
|
|
|
|
apkcerts-list: $(APKCERTS_FILE)
|
|
|
|
|
2010-07-24 01:42:13 +02:00
|
|
|
$(call dist-for-goals, apps_only, $(APKCERTS_FILE):apkcerts.txt)
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# module info file
|
|
|
|
ifdef CREATE_MODULE_INFO_FILE
|
|
|
|
MODULE_INFO_FILE := $(PRODUCT_OUT)/module-info.txt
|
|
|
|
$(info Generating $(MODULE_INFO_FILE)...)
|
|
|
|
$(shell rm -f $(MODULE_INFO_FILE))
|
|
|
|
$(foreach m,$(ALL_MODULES), \
|
|
|
|
$(shell echo "NAME=\"$(m)\"" \
|
|
|
|
"PATH=\"$(strip $(ALL_MODULES.$(m).PATH))\"" \
|
|
|
|
"TAGS=\"$(strip $(filter-out _%,$(ALL_MODULES.$(m).TAGS)))\"" \
|
|
|
|
"BUILT=\"$(strip $(ALL_MODULES.$(m).BUILT))\"" \
|
|
|
|
"INSTALLED=\"$(strip $(ALL_MODULES.$(m).INSTALLED))\"" >> $(MODULE_INFO_FILE)))
|
|
|
|
endif
|
|
|
|
|
2009-06-15 23:30:14 +02:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
|
|
|
|
# The test key is used to sign this package, and as the key required
|
|
|
|
# for future OTA packages installed by this system. Actual product
|
|
|
|
# deliverables will be re-signed by hand. We expect this file to
|
|
|
|
# exist with the suffixes ".x509.pem" and ".pk8".
|
|
|
|
DEFAULT_KEY_CERT_PAIR := $(SRC_TARGET_DIR)/product/security/testkey
|
|
|
|
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# Rules that need to be present for the simulator, even
|
|
|
|
# if they don't do anything.
|
|
|
|
.PHONY: systemimage
|
|
|
|
systemimage:
|
|
|
|
|
2010-02-17 01:01:43 +01:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
|
|
|
|
.PHONY: event-log-tags
|
|
|
|
|
2010-07-14 19:22:54 +02:00
|
|
|
# Produce an event logs tag file for everything we know about, in order
|
|
|
|
# to properly allocate numbers. Then produce a file that's filtered
|
|
|
|
# for what's going to be installed.
|
|
|
|
|
|
|
|
all_event_log_tags_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt
|
|
|
|
|
|
|
|
# Include tags from all packages that we know about
|
|
|
|
all_event_log_tags_src := \
|
|
|
|
$(sort $(foreach m, $(ALL_MODULES), $(ALL_MODULES.$(m).EVENT_LOG_TAGS)))
|
|
|
|
|
|
|
|
$(all_event_log_tags_file): PRIVATE_SRC_FILES := $(all_event_log_tags_src)
|
|
|
|
$(all_event_log_tags_file): $(all_event_log_tags_src)
|
|
|
|
$(hide) mkdir -p $(dir $@)
|
|
|
|
$(hide) build/tools/merge-event-log-tags.py -o $@ $(PRIVATE_SRC_FILES)
|
|
|
|
|
|
|
|
|
2010-02-17 01:01:43 +01:00
|
|
|
event_log_tags_file := $(TARGET_OUT)/etc/event-log-tags
|
|
|
|
|
2011-02-23 21:17:29 +01:00
|
|
|
# Include tags from all packages included in this product, plus all
|
|
|
|
# tags that are part of the system (ie, not in a vendor/ or device/
|
|
|
|
# directory).
|
2010-02-17 01:01:43 +01:00
|
|
|
event_log_tags_src := \
|
|
|
|
$(sort $(foreach m,\
|
|
|
|
$(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES) \
|
|
|
|
$(call module-names-for-tag-list,user), \
|
2011-02-23 21:17:29 +01:00
|
|
|
$(ALL_MODULES.$(m).EVENT_LOG_TAGS)) \
|
|
|
|
$(filter-out vendor/% device/% out/%,$(all_event_log_tags_src)))
|
2010-02-17 01:01:43 +01:00
|
|
|
|
|
|
|
$(event_log_tags_file): PRIVATE_SRC_FILES := $(event_log_tags_src)
|
2010-07-14 19:22:54 +02:00
|
|
|
$(event_log_tags_file): PRIVATE_MERGED_FILE := $(all_event_log_tags_file)
|
|
|
|
$(event_log_tags_file): $(event_log_tags_src) $(all_event_log_tags_file)
|
2010-02-17 01:01:43 +01:00
|
|
|
$(hide) mkdir -p $(dir $@)
|
2010-07-14 19:22:54 +02:00
|
|
|
$(hide) build/tools/merge-event-log-tags.py -o $@ -m $(PRIVATE_MERGED_FILE) $(PRIVATE_SRC_FILES)
|
2010-02-17 01:01:43 +01:00
|
|
|
|
|
|
|
event-log-tags: $(event_log_tags_file)
|
|
|
|
|
|
|
|
ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file)
|
|
|
|
|
2010-07-14 19:22:54 +02:00
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
|
|
|
|
# #################################################################
|
|
|
|
# Targets for boot/OS images
|
|
|
|
# #################################################################
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# the ramdisk
|
|
|
|
INTERNAL_RAMDISK_FILES := $(filter $(TARGET_ROOT_OUT)/%, \
|
|
|
|
$(ALL_PREBUILT) \
|
|
|
|
$(ALL_COPIED_HEADERS) \
|
|
|
|
$(ALL_GENERATED_SOURCES) \
|
|
|
|
$(ALL_DEFAULT_INSTALLED_MODULES))
|
|
|
|
|
2009-04-10 04:31:12 +02:00
|
|
|
BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img
|
|
|
|
|
|
|
|
# We just build this directly to the install location.
|
|
|
|
INSTALLED_RAMDISK_TARGET := $(BUILT_RAMDISK_TARGET)
|
2009-05-27 18:14:25 +02:00
|
|
|
$(INSTALLED_RAMDISK_TARGET): $(MKBOOTFS) $(INTERNAL_RAMDISK_FILES) | $(MINIGZIP)
|
2009-03-04 04:28:42 +01:00
|
|
|
$(call pretty,"Target ram disk: $@")
|
2009-05-27 18:14:25 +02:00
|
|
|
$(hide) $(MKBOOTFS) $(TARGET_ROOT_OUT) | $(MINIGZIP) > $@
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
ifneq ($(strip $(TARGET_NO_KERNEL)),true)
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# the boot image, which is a collection of other images.
|
|
|
|
INTERNAL_BOOTIMAGE_ARGS := \
|
|
|
|
$(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \
|
|
|
|
--kernel $(INSTALLED_KERNEL_TARGET) \
|
|
|
|
--ramdisk $(INSTALLED_RAMDISK_TARGET)
|
|
|
|
|
|
|
|
INTERNAL_BOOTIMAGE_FILES := $(filter-out --%,$(INTERNAL_BOOTIMAGE_ARGS))
|
|
|
|
|
|
|
|
BOARD_KERNEL_CMDLINE := $(strip $(BOARD_KERNEL_CMDLINE))
|
|
|
|
ifdef BOARD_KERNEL_CMDLINE
|
|
|
|
INTERNAL_BOOTIMAGE_ARGS += --cmdline "$(BOARD_KERNEL_CMDLINE)"
|
|
|
|
endif
|
|
|
|
|
2009-05-08 04:43:08 +02:00
|
|
|
BOARD_KERNEL_BASE := $(strip $(BOARD_KERNEL_BASE))
|
|
|
|
ifdef BOARD_KERNEL_BASE
|
|
|
|
INTERNAL_BOOTIMAGE_ARGS += --base $(BOARD_KERNEL_BASE)
|
|
|
|
endif
|
|
|
|
|
2010-08-23 21:56:25 +02:00
|
|
|
BOARD_KERNEL_PAGESIZE := $(strip $(BOARD_KERNEL_PAGESIZE))
|
|
|
|
ifdef BOARD_KERNEL_PAGESIZE
|
|
|
|
INTERNAL_BOOTIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE)
|
|
|
|
endif
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img
|
|
|
|
|
|
|
|
ifeq ($(TARGET_BOOTIMAGE_USE_EXT2),true)
|
|
|
|
tmp_dir_for_image := $(call intermediates-dir-for,EXECUTABLES,boot_img)/bootimg
|
|
|
|
INTERNAL_BOOTIMAGE_ARGS += --tmpdir $(tmp_dir_for_image)
|
|
|
|
INTERNAL_BOOTIMAGE_ARGS += --genext2fs $(MKEXT2IMG)
|
|
|
|
$(INSTALLED_BOOTIMAGE_TARGET): $(MKEXT2IMG) $(INTERNAL_BOOTIMAGE_FILES)
|
|
|
|
$(call pretty,"Target boot image: $@")
|
|
|
|
$(hide) $(MKEXT2BOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) --output $@
|
|
|
|
|
|
|
|
else # TARGET_BOOTIMAGE_USE_EXT2 != true
|
|
|
|
|
|
|
|
$(INSTALLED_BOOTIMAGE_TARGET): $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_FILES)
|
|
|
|
$(call pretty,"Target boot image: $@")
|
|
|
|
$(hide) $(MKBOOTIMG) $(INTERNAL_BOOTIMAGE_ARGS) --output $@
|
2009-08-26 18:37:07 +02:00
|
|
|
$(hide) $(call assert-max-image-size,$@,$(BOARD_BOOTIMAGE_PARTITION_SIZE),raw)
|
2009-03-04 04:28:42 +01:00
|
|
|
endif # TARGET_BOOTIMAGE_USE_EXT2
|
|
|
|
|
|
|
|
else # TARGET_NO_KERNEL
|
|
|
|
# HACK: The top-level targets depend on the bootimage. Not all targets
|
|
|
|
# can produce a bootimage, though, and emulator targets need the ramdisk
|
|
|
|
# instead. Fake it out by calling the ramdisk the bootimage.
|
|
|
|
# TODO: make the emulator use bootimages, and make mkbootimg accept
|
|
|
|
# kernel-less inputs.
|
|
|
|
INSTALLED_BOOTIMAGE_TARGET := $(INSTALLED_RAMDISK_TARGET)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# NOTICE files
|
|
|
|
#
|
|
|
|
# This needs to be before the systemimage rules, because it adds to
|
|
|
|
# ALL_DEFAULT_INSTALLED_MODULES, which those use to pick which files
|
|
|
|
# go into the systemimage.
|
|
|
|
|
|
|
|
.PHONY: notice_files
|
|
|
|
|
|
|
|
# Create the rule to combine the files into text and html forms
|
|
|
|
# $(1) - Plain text output file
|
|
|
|
# $(2) - HTML output file
|
|
|
|
# $(3) - File title
|
|
|
|
# $(4) - Directory to use. Notice files are all $(4)/src. Other
|
|
|
|
# directories in there will be used for scratch
|
|
|
|
# $(5) - Dependencies for the output files
|
|
|
|
#
|
|
|
|
# The algorithm here is that we go collect a hash for each of the notice
|
|
|
|
# files and write the names of the files that match that hash. Then
|
|
|
|
# to generate the real files, we go print out all of the files and their
|
|
|
|
# hashes.
|
|
|
|
#
|
|
|
|
# These rules are fairly complex, so they depend on this makefile so if
|
|
|
|
# it changes, they'll run again.
|
|
|
|
#
|
|
|
|
# TODO: We could clean this up so that we just record the locations of the
|
|
|
|
# original notice files instead of making rules to copy them somwehere.
|
|
|
|
# Then we could traverse that without quite as much bash drama.
|
|
|
|
define combine-notice-files
|
|
|
|
$(1) $(2): PRIVATE_MESSAGE := $(3)
|
|
|
|
$(1) $(2) $(4)/hash-timestamp: PRIVATE_DIR := $(4)
|
|
|
|
$(4)/hash-timestamp: $(5) $(BUILD_SYSTEM)/Makefile
|
|
|
|
@echo Finding NOTICE files: $$@
|
|
|
|
$$(hide) rm -rf $$@ $$(PRIVATE_DIR)/hash
|
|
|
|
$$(hide) mkdir -p $$(PRIVATE_DIR)/hash
|
|
|
|
$$(hide) for file in $$$$(find $$(PRIVATE_DIR)/src -type f); do \
|
|
|
|
hash=$$$$($(MD5SUM) $$$$file | sed -e "s/ .*//"); \
|
|
|
|
hashfile=$$(PRIVATE_DIR)/hash/$$$$hash; \
|
|
|
|
echo $$$$file >> $$$$hashfile; \
|
|
|
|
done
|
|
|
|
$$(hide) touch $$@
|
|
|
|
$(1): $(4)/hash-timestamp
|
|
|
|
@echo Combining NOTICE files: $$@
|
|
|
|
$$(hide) mkdir -p $$(dir $$@)
|
|
|
|
$$(hide) echo $$(PRIVATE_MESSAGE) > $$@
|
|
|
|
$$(hide) find $$(PRIVATE_DIR)/hash -type f | xargs cat | sort | \
|
|
|
|
sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt: \1:" >> $$@
|
|
|
|
$$(hide) echo >> $$@
|
|
|
|
$$(hide) echo >> $$@
|
|
|
|
$$(hide) echo >> $$@
|
|
|
|
$$(hide) for hashfile in $$$$(find $$(PRIVATE_DIR)/hash -type f); do \
|
|
|
|
echo "============================================================"\
|
|
|
|
>> $$@; \
|
|
|
|
echo "Notices for file(s):" >> $$@; \
|
|
|
|
cat $$$$hashfile | sort | \
|
|
|
|
sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt: \1:" >> \
|
|
|
|
$$@; \
|
|
|
|
echo "------------------------------------------------------------"\
|
|
|
|
>> $$@; \
|
|
|
|
echo >> $$@; \
|
|
|
|
orig=$$$$(head -n 1 $$$$hashfile); \
|
|
|
|
cat $$$$orig >> $$@; \
|
|
|
|
echo >> $$@; \
|
|
|
|
echo >> $$@; \
|
|
|
|
echo >> $$@; \
|
|
|
|
done
|
|
|
|
$(2): $(4)/hash-timestamp
|
|
|
|
@echo Combining NOTICE files: $$@
|
|
|
|
$$(hide) mkdir -p $$(dir $$@)
|
|
|
|
$$(hide) echo "<html><head>" > $$@
|
|
|
|
$$(hide) echo "<style type=\"text/css\">" >> $$@
|
|
|
|
$$(hide) echo "body { padding: 0; font-family: sans-serif; }" >> $$@
|
|
|
|
$$(hide) echo ".same-license { background-color: #eeeeee; border-top: 20px solid white; padding: 10px; }" >> $$@
|
|
|
|
$$(hide) echo ".label { font-weight: bold; }" >> $$@
|
|
|
|
$$(hide) echo ".file-list { margin-left: 1em; font-color: blue; }" >> $$@
|
|
|
|
$$(hide) echo "</style>" >> $$@
|
|
|
|
$$(hide) echo "</head><body topmargin=\"0\" leftmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\">" >> $$@
|
|
|
|
$$(hide) echo "<table cellpading=\"0\" cellspacing=\"0\" border=\"0\">" \
|
|
|
|
>> $$@
|
|
|
|
$$(hide) for hashfile in $$$$(find $$(PRIVATE_DIR)/hash -type f); do \
|
|
|
|
cat $$$$hashfile | sort | \
|
|
|
|
sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt: <a name=\"\1\"></a>:" >> \
|
|
|
|
$$@; \
|
|
|
|
echo "<tr><td class=\"same-license\">" >> $$@; \
|
|
|
|
echo "<div class=\"label\">Notices for file(s):</div>" >> $$@; \
|
|
|
|
echo "<div class=\"file-list\">" >> $$@; \
|
|
|
|
cat $$$$hashfile | sort | \
|
|
|
|
sed -e "s:$$(PRIVATE_DIR)/src\(.*\)\.txt: \1<br/>:" >> $$@; \
|
|
|
|
echo "</div><!-- file-list -->" >> $$@; \
|
|
|
|
echo >> $$@; \
|
|
|
|
orig=$$$$(head -n 1 $$$$hashfile); \
|
|
|
|
echo "<pre class=\"license-text\">" >> $$@; \
|
|
|
|
cat $$$$orig | sed -e "s/\&/\&/g" | sed -e "s/</\</g" \
|
|
|
|
| sed -e "s/>/\>/g" >> $$@; \
|
|
|
|
echo "</pre><!-- license-text -->" >> $$@; \
|
|
|
|
echo "</td></tr><!-- same-license -->" >> $$@; \
|
|
|
|
echo >> $$@; \
|
|
|
|
echo >> $$@; \
|
|
|
|
echo >> $$@; \
|
|
|
|
done
|
|
|
|
$$(hide) echo "</table>" >> $$@
|
|
|
|
$$(hide) echo "</body></html>" >> $$@
|
|
|
|
notice_files: $(1) $(2)
|
|
|
|
endef
|
|
|
|
|
|
|
|
# TODO These intermediate NOTICE.txt/NOTICE.html files should go into
|
|
|
|
# TARGET_OUT_NOTICE_FILES now that the notice files are gathered from
|
|
|
|
# the src subdirectory.
|
|
|
|
|
|
|
|
target_notice_file_txt := $(TARGET_OUT_INTERMEDIATES)/NOTICE.txt
|
|
|
|
target_notice_file_html := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html
|
|
|
|
target_notice_file_html_gz := $(TARGET_OUT_INTERMEDIATES)/NOTICE.html.gz
|
|
|
|
tools_notice_file_txt := $(HOST_OUT_INTERMEDIATES)/NOTICE.txt
|
|
|
|
tools_notice_file_html := $(HOST_OUT_INTERMEDIATES)/NOTICE.html
|
|
|
|
|
|
|
|
kernel_notice_file := $(TARGET_OUT_NOTICE_FILES)/src/kernel.txt
|
|
|
|
|
|
|
|
$(eval $(call combine-notice-files, \
|
|
|
|
$(target_notice_file_txt), \
|
|
|
|
$(target_notice_file_html), \
|
|
|
|
"Notices for files contained in the filesystem images in this directory:", \
|
|
|
|
$(TARGET_OUT_NOTICE_FILES), \
|
|
|
|
$(ALL_DEFAULT_INSTALLED_MODULES) $(kernel_notice_file)))
|
|
|
|
|
|
|
|
$(eval $(call combine-notice-files, \
|
|
|
|
$(tools_notice_file_txt), \
|
|
|
|
$(tools_notice_file_html), \
|
|
|
|
"Notices for files contained in the tools directory:", \
|
|
|
|
$(HOST_OUT_NOTICE_FILES), \
|
|
|
|
$(ALL_DEFAULT_INSTALLED_MODULES)))
|
|
|
|
|
|
|
|
# Install the html file at /system/etc/NOTICE.html.gz.
|
|
|
|
# This is not ideal, but this is very late in the game, after a lot of
|
|
|
|
# the module processing has already been done -- in fact, we used the
|
|
|
|
# fact that all that has been done to get the list of modules that we
|
|
|
|
# need notice files for.
|
2009-05-27 18:14:25 +02:00
|
|
|
$(target_notice_file_html_gz): $(target_notice_file_html) | $(MINIGZIP)
|
2009-06-15 23:30:14 +02:00
|
|
|
$(hide) $(MINIGZIP) -9 < $< > $@
|
2009-03-04 04:28:42 +01:00
|
|
|
installed_notice_html_gz := $(TARGET_OUT)/etc/NOTICE.html.gz
|
|
|
|
$(installed_notice_html_gz): $(target_notice_file_html_gz) | $(ACP)
|
|
|
|
$(copy-file-to-target)
|
2009-04-30 22:52:50 +02:00
|
|
|
|
|
|
|
# if we've been run my mm, mmm, etc, don't reinstall this every time
|
|
|
|
ifeq ($(ONE_SHOT_MAKEFILE),)
|
2009-03-04 04:28:42 +01:00
|
|
|
ALL_DEFAULT_INSTALLED_MODULES += $(installed_notice_html_gz)
|
2009-04-30 22:52:50 +02:00
|
|
|
endif
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
# The kernel isn't really a module, so to get its module file in there, we
|
|
|
|
# make the target NOTICE files depend on this particular file too, which will
|
|
|
|
# then be in the right directory for the find in combine-notice-files to work.
|
|
|
|
$(kernel_notice_file): \
|
|
|
|
prebuilt/$(TARGET_PREBUILT_TAG)/kernel/LINUX_KERNEL_COPYING \
|
|
|
|
| $(ACP)
|
|
|
|
@echo Copying: $@
|
|
|
|
$(hide) mkdir -p $(dir $@)
|
|
|
|
$(hide) $(ACP) $< $@
|
|
|
|
|
|
|
|
|
2009-06-15 23:30:14 +02:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# Build a keystore with the authorized keys in it, used to verify the
|
|
|
|
# authenticity of downloaded OTA packages.
|
|
|
|
#
|
|
|
|
# This rule adds to ALL_DEFAULT_INSTALLED_MODULES, so it needs to come
|
|
|
|
# before the rules that use that variable to build the image.
|
|
|
|
ALL_DEFAULT_INSTALLED_MODULES += $(TARGET_OUT_ETC)/security/otacerts.zip
|
|
|
|
$(TARGET_OUT_ETC)/security/otacerts.zip: KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR)
|
2009-06-16 00:36:16 +02:00
|
|
|
$(TARGET_OUT_ETC)/security/otacerts.zip: $(addsuffix .x509.pem,$(DEFAULT_KEY_CERT_PAIR))
|
2009-06-15 23:30:14 +02:00
|
|
|
$(hide) rm -f $@
|
|
|
|
$(hide) mkdir -p $(dir $@)
|
2009-06-16 00:36:16 +02:00
|
|
|
$(hide) zip -qj $@ $<
|
2009-06-15 23:30:14 +02:00
|
|
|
|
|
|
|
.PHONY: otacerts
|
|
|
|
otacerts: $(TARGET_OUT_ETC)/security/otacerts.zip
|
|
|
|
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# #################################################################
|
|
|
|
# Targets for user images
|
|
|
|
# #################################################################
|
|
|
|
|
2010-08-23 20:34:40 +02:00
|
|
|
INTERNAL_USERIMAGES_EXT_VARIANT :=
|
2009-03-04 04:28:42 +01:00
|
|
|
ifeq ($(TARGET_USERIMAGES_USE_EXT2),true)
|
2010-08-23 20:34:40 +02:00
|
|
|
INTERNAL_USERIMAGES_USE_EXT := true
|
|
|
|
INTERNAL_USERIMAGES_EXT_VARIANT := ext2
|
2009-03-04 04:28:42 +01:00
|
|
|
else
|
2010-08-23 20:34:40 +02:00
|
|
|
ifeq ($(TARGET_USERIMAGES_USE_EXT3),true)
|
|
|
|
INTERNAL_USERIMAGES_USE_EXT := true
|
|
|
|
INTERNAL_USERIMAGES_EXT_VARIANT := ext3
|
|
|
|
else
|
|
|
|
ifeq ($(TARGET_USERIMAGES_USE_EXT4),true)
|
|
|
|
INTERNAL_USERIMAGES_USE_EXT := true
|
|
|
|
INTERNAL_USERIMAGES_EXT_VARIANT := ext4
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2010-11-18 00:40:38 +01:00
|
|
|
ifneq (true,$(TARGET_USERIMAGES_SPARSE_EXT_DISABLED))
|
|
|
|
INTERNAL_USERIMAGES_SPARSE_EXT_FLAG := -s
|
|
|
|
endif
|
|
|
|
|
2010-08-23 20:34:40 +02:00
|
|
|
ifeq ($(INTERNAL_USERIMAGES_USE_EXT),true)
|
2010-11-18 00:40:38 +01:00
|
|
|
INTERNAL_USERIMAGES_DEPS := $(MKEXTUSERIMG) $(MAKE_EXT4FS)
|
2010-08-23 20:34:40 +02:00
|
|
|
INTERNAL_USERIMAGES_BINARY_PATHS := $(sort $(dir $(INTERNAL_USERIMAGES_DEPS)))
|
|
|
|
|
|
|
|
# $(1): src directory
|
|
|
|
# $(2): output file
|
2010-09-28 02:49:03 +02:00
|
|
|
# $(3): mount point
|
2010-08-23 20:34:40 +02:00
|
|
|
# $(4): ext variant (ext2, ext3, ext4)
|
|
|
|
# $(5): size of the partition
|
|
|
|
define build-userimage-ext-target
|
|
|
|
@mkdir -p $(dir $(2))
|
2010-11-18 00:40:38 +01:00
|
|
|
$(hide) PATH=$(foreach p,$(INTERNAL_USERIMAGES_BINARY_PATHS),$(p):)$(PATH) \
|
|
|
|
$(MKEXTUSERIMG) $(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG) $(1) $(2) $(4) $(3) $(5)
|
2010-08-23 20:34:40 +02:00
|
|
|
endef
|
|
|
|
else
|
|
|
|
INTERNAL_USERIMAGES_DEPS := $(MKYAFFS2)
|
2009-03-04 04:28:42 +01:00
|
|
|
endif
|
|
|
|
|
2009-07-02 18:00:54 +02:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# Recovery image
|
2009-07-08 02:14:25 +02:00
|
|
|
|
|
|
|
# If neither TARGET_NO_KERNEL nor TARGET_NO_RECOVERY are true
|
2009-08-08 03:09:44 +02:00
|
|
|
ifeq (,$(filter true, $(TARGET_NO_KERNEL) $(TARGET_NO_RECOVERY) $(BUILD_TINY_ANDROID)))
|
2009-07-08 02:14:25 +02:00
|
|
|
|
2009-07-02 18:00:54 +02:00
|
|
|
INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img
|
|
|
|
|
|
|
|
recovery_initrc := $(call include-path-for, recovery)/etc/init.rc
|
|
|
|
recovery_kernel := $(INSTALLED_KERNEL_TARGET) # same as a non-recovery system
|
|
|
|
recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img
|
|
|
|
recovery_build_prop := $(INSTALLED_BUILD_PROP_TARGET)
|
|
|
|
recovery_binary := $(call intermediates-dir-for,EXECUTABLES,recovery)/recovery
|
|
|
|
recovery_resources_common := $(call include-path-for, recovery)/res
|
|
|
|
recovery_resources_private := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery/res))
|
|
|
|
recovery_resource_deps := $(shell find $(recovery_resources_common) \
|
|
|
|
$(recovery_resources_private) -type f)
|
2010-09-21 03:04:41 +02:00
|
|
|
recovery_fstab := $(strip $(wildcard $(TARGET_DEVICE_DIR)/recovery.fstab))
|
2009-07-02 18:00:54 +02:00
|
|
|
|
|
|
|
ifeq ($(recovery_resources_private),)
|
|
|
|
$(info No private recovery resources for TARGET_DEVICE $(TARGET_DEVICE))
|
|
|
|
endif
|
|
|
|
|
2010-09-21 03:04:41 +02:00
|
|
|
ifeq ($(recovery_fstab),)
|
|
|
|
$(info No recovery.fstab for TARGET_DEVICE $(TARGET_DEVICE))
|
|
|
|
endif
|
|
|
|
|
2009-07-02 18:00:54 +02:00
|
|
|
INTERNAL_RECOVERYIMAGE_ARGS := \
|
|
|
|
$(addprefix --second ,$(INSTALLED_2NDBOOTLOADER_TARGET)) \
|
|
|
|
--kernel $(recovery_kernel) \
|
|
|
|
--ramdisk $(recovery_ramdisk)
|
|
|
|
|
|
|
|
# Assumes this has already been stripped
|
|
|
|
ifdef BOARD_KERNEL_CMDLINE
|
|
|
|
INTERNAL_RECOVERYIMAGE_ARGS += --cmdline "$(BOARD_KERNEL_CMDLINE)"
|
|
|
|
endif
|
|
|
|
ifdef BOARD_KERNEL_BASE
|
|
|
|
INTERNAL_RECOVERYIMAGE_ARGS += --base $(BOARD_KERNEL_BASE)
|
|
|
|
endif
|
2010-08-25 23:29:34 +02:00
|
|
|
BOARD_KERNEL_PAGESIZE := $(strip $(BOARD_KERNEL_PAGESIZE))
|
|
|
|
ifdef BOARD_KERNEL_PAGESIZE
|
|
|
|
INTERNAL_RECOVERYIMAGE_ARGS += --pagesize $(BOARD_KERNEL_PAGESIZE)
|
|
|
|
endif
|
2009-07-02 18:00:54 +02:00
|
|
|
|
|
|
|
# Keys authorized to sign OTA packages this build will accept. The
|
|
|
|
# build always uses test-keys for this; release packaging tools will
|
|
|
|
# substitute other keys for this one.
|
|
|
|
OTA_PUBLIC_KEYS := $(SRC_TARGET_DIR)/product/security/testkey.x509.pem
|
|
|
|
|
|
|
|
# Generate a file containing the keys that will be read by the
|
|
|
|
# recovery binary.
|
|
|
|
RECOVERY_INSTALL_OTA_KEYS := \
|
|
|
|
$(call intermediates-dir-for,PACKAGING,ota_keys)/keys
|
|
|
|
DUMPKEY_JAR := $(HOST_OUT_JAVA_LIBRARIES)/dumpkey.jar
|
|
|
|
$(RECOVERY_INSTALL_OTA_KEYS): PRIVATE_OTA_PUBLIC_KEYS := $(OTA_PUBLIC_KEYS)
|
|
|
|
$(RECOVERY_INSTALL_OTA_KEYS): $(OTA_PUBLIC_KEYS) $(DUMPKEY_JAR)
|
|
|
|
@echo "DumpPublicKey: $@ <= $(PRIVATE_OTA_PUBLIC_KEYS)"
|
|
|
|
@rm -rf $@
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
java -jar $(DUMPKEY_JAR) $(PRIVATE_OTA_PUBLIC_KEYS) > $@
|
|
|
|
|
|
|
|
$(INSTALLED_RECOVERYIMAGE_TARGET): $(MKBOOTFS) $(MKBOOTIMG) $(MINIGZIP) \
|
|
|
|
$(INSTALLED_RAMDISK_TARGET) \
|
|
|
|
$(INSTALLED_BOOTIMAGE_TARGET) \
|
|
|
|
$(recovery_binary) \
|
|
|
|
$(recovery_initrc) $(recovery_kernel) \
|
|
|
|
$(INSTALLED_2NDBOOTLOADER_TARGET) \
|
|
|
|
$(recovery_build_prop) $(recovery_resource_deps) \
|
2010-09-21 23:25:51 +02:00
|
|
|
$(recovery_fstab) \
|
2009-07-02 18:00:54 +02:00
|
|
|
$(RECOVERY_INSTALL_OTA_KEYS)
|
|
|
|
@echo ----- Making recovery image ------
|
|
|
|
rm -rf $(TARGET_RECOVERY_OUT)
|
|
|
|
mkdir -p $(TARGET_RECOVERY_OUT)
|
|
|
|
mkdir -p $(TARGET_RECOVERY_ROOT_OUT)
|
|
|
|
mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/etc
|
|
|
|
mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/tmp
|
|
|
|
echo Copying baseline ramdisk...
|
|
|
|
cp -R $(TARGET_ROOT_OUT) $(TARGET_RECOVERY_OUT)
|
2010-07-02 00:30:11 +02:00
|
|
|
rm $(TARGET_RECOVERY_ROOT_OUT)/init*.rc
|
2009-07-02 18:00:54 +02:00
|
|
|
echo Modifying ramdisk contents...
|
|
|
|
cp -f $(recovery_initrc) $(TARGET_RECOVERY_ROOT_OUT)/
|
|
|
|
cp -f $(recovery_binary) $(TARGET_RECOVERY_ROOT_OUT)/sbin/
|
|
|
|
cp -rf $(recovery_resources_common) $(TARGET_RECOVERY_ROOT_OUT)/
|
|
|
|
$(foreach item,$(recovery_resources_private), \
|
|
|
|
cp -rf $(item) $(TARGET_RECOVERY_ROOT_OUT)/)
|
2010-09-21 03:04:41 +02:00
|
|
|
$(foreach item,$(recovery_fstab), \
|
|
|
|
cp -f $(item) $(TARGET_RECOVERY_ROOT_OUT)/etc/recovery.fstab)
|
2009-07-02 18:00:54 +02:00
|
|
|
cp $(RECOVERY_INSTALL_OTA_KEYS) $(TARGET_RECOVERY_ROOT_OUT)/res/keys
|
|
|
|
cat $(INSTALLED_DEFAULT_PROP_TARGET) $(recovery_build_prop) \
|
|
|
|
> $(TARGET_RECOVERY_ROOT_OUT)/default.prop
|
|
|
|
$(MKBOOTFS) $(TARGET_RECOVERY_ROOT_OUT) | $(MINIGZIP) > $(recovery_ramdisk)
|
|
|
|
$(MKBOOTIMG) $(INTERNAL_RECOVERYIMAGE_ARGS) --output $@
|
|
|
|
@echo ----- Made recovery image -------- $@
|
2009-08-26 18:37:07 +02:00
|
|
|
$(hide) $(call assert-max-image-size,$@,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE),raw)
|
2009-07-02 18:00:54 +02:00
|
|
|
|
|
|
|
else
|
|
|
|
INSTALLED_RECOVERYIMAGE_TARGET :=
|
|
|
|
endif
|
|
|
|
|
|
|
|
.PHONY: recoveryimage
|
|
|
|
recoveryimage: $(INSTALLED_RECOVERYIMAGE_TARGET)
|
|
|
|
|
2010-02-05 22:34:34 +01:00
|
|
|
ifneq ($(BOARD_NAND_PAGE_SIZE),)
|
|
|
|
mkyaffs2_extra_flags := -c $(BOARD_NAND_PAGE_SIZE)
|
|
|
|
else
|
|
|
|
mkyaffs2_extra_flags :=
|
2010-12-06 15:24:58 +01:00
|
|
|
BOARD_NAND_PAGE_SIZE := 2048
|
2010-02-05 22:34:34 +01:00
|
|
|
endif
|
|
|
|
|
2010-08-06 21:19:29 +02:00
|
|
|
ifneq ($(BOARD_NAND_SPARE_SIZE),)
|
|
|
|
mkyaffs2_extra_flags += -s $(BOARD_NAND_SPARE_SIZE)
|
2010-12-06 15:24:58 +01:00
|
|
|
else
|
|
|
|
BOARD_NAND_SPARE_SIZE := 64
|
2010-08-06 21:19:29 +02:00
|
|
|
endif
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# -----------------------------------------------------------------
|
2010-09-27 19:37:25 +02:00
|
|
|
# system image
|
2009-03-04 04:28:42 +01:00
|
|
|
#
|
2010-09-27 19:37:25 +02:00
|
|
|
systemimage_intermediates := \
|
|
|
|
$(call intermediates-dir-for,PACKAGING,systemimage)
|
|
|
|
BUILT_SYSTEMIMAGE := $(systemimage_intermediates)/system.img
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
INTERNAL_SYSTEMIMAGE_FILES := $(filter $(TARGET_OUT)/%, \
|
|
|
|
$(ALL_PREBUILT) \
|
|
|
|
$(ALL_COPIED_HEADERS) \
|
|
|
|
$(ALL_GENERATED_SOURCES) \
|
|
|
|
$(ALL_DEFAULT_INSTALLED_MODULES))
|
|
|
|
|
2010-08-23 20:34:40 +02:00
|
|
|
ifeq ($(INTERNAL_USERIMAGES_USE_EXT),true)
|
2009-03-04 04:28:42 +01:00
|
|
|
## generate an ext2 image
|
|
|
|
# $(1): output file
|
|
|
|
define build-systemimage-target
|
|
|
|
@echo "Target system fs image: $(1)"
|
2010-08-23 20:34:40 +02:00
|
|
|
$(call build-userimage-ext-target,$(TARGET_OUT),$(1),system,$(INTERNAL_USERIMAGES_EXT_VARIANT),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE))
|
2009-03-04 04:28:42 +01:00
|
|
|
endef
|
|
|
|
|
2010-08-23 20:34:40 +02:00
|
|
|
else # INTERNAL_USERIMAGES_USE_EXT != true
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
## generate a yaffs2 image
|
|
|
|
# $(1): output file
|
|
|
|
define build-systemimage-target
|
|
|
|
@echo "Target system fs image: $(1)"
|
|
|
|
@mkdir -p $(dir $(1))
|
2010-02-05 22:34:34 +01:00
|
|
|
$(hide) $(MKYAFFS2) -f $(mkyaffs2_extra_flags) $(TARGET_OUT) $(1)
|
2009-03-04 04:28:42 +01:00
|
|
|
endef
|
2010-08-23 20:34:40 +02:00
|
|
|
endif # INTERNAL_USERIMAGES_USE_EXT
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2010-09-27 19:37:25 +02:00
|
|
|
$(BUILT_SYSTEMIMAGE): $(INTERNAL_SYSTEMIMAGE_FILES) $(INTERNAL_USERIMAGES_DEPS)
|
2009-03-04 04:28:42 +01:00
|
|
|
$(call build-systemimage-target,$@)
|
|
|
|
|
|
|
|
INSTALLED_SYSTEMIMAGE := $(PRODUCT_OUT)/system.img
|
2010-09-27 19:37:25 +02:00
|
|
|
SYSTEMIMAGE_SOURCE_DIR := $(TARGET_OUT)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2009-07-24 00:12:53 +02:00
|
|
|
# The system partition needs room for the recovery image as well. We
|
|
|
|
# now store the recovery image as a binary patch using the boot image
|
|
|
|
# as the source (since they are very similar). Generate the patch so
|
|
|
|
# we can see how big it's going to be, and include that in the system
|
|
|
|
# image size check calculation.
|
2009-07-24 22:52:32 +02:00
|
|
|
ifneq ($(INSTALLED_RECOVERYIMAGE_TARGET),)
|
2009-07-24 00:12:53 +02:00
|
|
|
intermediates := $(call intermediates-dir-for,PACKAGING,recovery_patch)
|
|
|
|
RECOVERY_FROM_BOOT_PATCH := $(intermediates)/recovery_from_boot.p
|
|
|
|
$(RECOVERY_FROM_BOOT_PATCH): $(INSTALLED_RECOVERYIMAGE_TARGET) \
|
|
|
|
$(INSTALLED_BOOTIMAGE_TARGET) \
|
2009-07-24 03:27:43 +02:00
|
|
|
$(HOST_OUT_EXECUTABLES)/imgdiff \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/bsdiff
|
2009-07-24 00:12:53 +02:00
|
|
|
@echo "Construct recovery from boot"
|
|
|
|
mkdir -p $(dir $@)
|
2009-07-24 03:48:38 +02:00
|
|
|
PATH=$(HOST_OUT_EXECUTABLES):$$PATH $(HOST_OUT_EXECUTABLES)/imgdiff $(INSTALLED_BOOTIMAGE_TARGET) $(INSTALLED_RECOVERYIMAGE_TARGET) $@
|
2009-07-24 22:52:32 +02:00
|
|
|
endif
|
|
|
|
|
2009-07-24 00:12:53 +02:00
|
|
|
|
|
|
|
$(INSTALLED_SYSTEMIMAGE): $(BUILT_SYSTEMIMAGE) $(RECOVERY_FROM_BOOT_PATCH) | $(ACP)
|
2009-03-04 04:28:42 +01:00
|
|
|
@echo "Install system fs image: $@"
|
|
|
|
$(copy-file-to-target)
|
2009-08-26 18:37:07 +02:00
|
|
|
$(hide) $(call assert-max-image-size,$@ $(RECOVERY_FROM_BOOT_PATCH),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE),yaffs)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
systemimage: $(INSTALLED_SYSTEMIMAGE)
|
|
|
|
|
|
|
|
.PHONY: systemimage-nodeps snod
|
|
|
|
systemimage-nodeps snod: $(filter-out systemimage-nodeps snod,$(MAKECMDGOALS)) \
|
2010-08-23 20:34:40 +02:00
|
|
|
| $(INTERNAL_USERIMAGES_DEPS)
|
2009-03-04 04:28:42 +01:00
|
|
|
@echo "make $@: ignoring dependencies"
|
|
|
|
$(call build-systemimage-target,$(INSTALLED_SYSTEMIMAGE))
|
2009-08-26 18:37:07 +02:00
|
|
|
$(hide) $(call assert-max-image-size,$(INSTALLED_SYSTEMIMAGE),$(BOARD_SYSTEMIMAGE_PARTITION_SIZE),yaffs)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
#######
|
|
|
|
## system tarball
|
|
|
|
define build-systemtarball-target
|
|
|
|
$(call pretty,"Target system fs tarball: $(INSTALLED_SYSTEMTARBALL_TARGET)")
|
|
|
|
$(MKTARBALL) $(FS_GET_STATS) \
|
|
|
|
$(PRODUCT_OUT) system $(PRIVATE_SYSTEM_TAR) \
|
|
|
|
$(INSTALLED_SYSTEMTARBALL_TARGET)
|
|
|
|
endef
|
|
|
|
|
2010-06-11 21:05:57 +02:00
|
|
|
ifndef SYSTEM_TARBALL_FORMAT
|
|
|
|
SYSTEM_TARBALL_FORMAT := bz2
|
|
|
|
endif
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
system_tar := $(PRODUCT_OUT)/system.tar
|
2010-06-11 21:05:57 +02:00
|
|
|
INSTALLED_SYSTEMTARBALL_TARGET := $(system_tar).$(SYSTEM_TARBALL_FORMAT)
|
2009-03-04 04:28:42 +01:00
|
|
|
$(INSTALLED_SYSTEMTARBALL_TARGET): PRIVATE_SYSTEM_TAR := $(system_tar)
|
|
|
|
$(INSTALLED_SYSTEMTARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_SYSTEMIMAGE_FILES)
|
|
|
|
$(build-systemtarball-target)
|
|
|
|
|
|
|
|
.PHONY: systemtarball-nodeps
|
|
|
|
systemtarball-nodeps: $(FS_GET_STATS) \
|
|
|
|
$(filter-out systemtarball-nodeps stnod,$(MAKECMDGOALS))
|
|
|
|
$(build-systemtarball-target)
|
|
|
|
|
|
|
|
.PHONY: stnod
|
|
|
|
stnod: systemtarball-nodeps
|
|
|
|
|
|
|
|
|
2010-06-05 00:24:49 +02:00
|
|
|
#######
|
|
|
|
## boot tarball
|
|
|
|
define build-boottarball-target
|
2010-06-24 23:02:00 +02:00
|
|
|
$(hide) echo "Target boot fs tarball: $(INSTALLED_BOOTTARBALL_TARGET)"
|
2010-06-05 00:24:49 +02:00
|
|
|
$(hide) mkdir -p $(PRODUCT_OUT)/boot
|
|
|
|
$(hide) cp -f $(INTERNAL_BOOTIMAGE_FILES) $(PRODUCT_OUT)/boot/.
|
|
|
|
$(hide) echo $(BOARD_KERNEL_CMDLINE) > $(PRODUCT_OUT)/boot/cmdline
|
|
|
|
$(hide) $(MKTARBALL) $(FS_GET_STATS) \
|
|
|
|
$(PRODUCT_OUT) boot $(PRIVATE_BOOT_TAR) \
|
|
|
|
$(INSTALLED_BOOTTARBALL_TARGET)
|
|
|
|
endef
|
|
|
|
|
|
|
|
ifndef BOOT_TARBALL_FORMAT
|
|
|
|
BOOT_TARBALL_FORMAT := bz2
|
|
|
|
endif
|
|
|
|
|
|
|
|
boot_tar := $(PRODUCT_OUT)/boot.tar
|
|
|
|
INSTALLED_BOOTTARBALL_TARGET := $(boot_tar).$(BOOT_TARBALL_FORMAT)
|
|
|
|
$(INSTALLED_BOOTTARBALL_TARGET): PRIVATE_BOOT_TAR := $(boot_tar)
|
|
|
|
$(INSTALLED_BOOTTARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_BOOTIMAGE_FILES)
|
|
|
|
$(build-boottarball-target)
|
|
|
|
|
|
|
|
.PHONY: boottarball-nodeps btnod
|
|
|
|
boottarball-nodeps btnod: $(FS_GET_STATS) \
|
|
|
|
$(filter-out boottarball-nodeps btnod,$(MAKECMDGOALS))
|
|
|
|
$(build-boottarball-target)
|
|
|
|
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# data partition image
|
|
|
|
INTERNAL_USERDATAIMAGE_FILES := \
|
|
|
|
$(filter $(TARGET_OUT_DATA)/%,$(ALL_DEFAULT_INSTALLED_MODULES))
|
|
|
|
|
2010-08-23 20:34:40 +02:00
|
|
|
ifeq ($(INTERNAL_USERIMAGES_USE_EXT),true)
|
|
|
|
## Generate an ext image
|
2009-03-04 04:28:42 +01:00
|
|
|
define build-userdataimage-target
|
|
|
|
$(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)")
|
|
|
|
@mkdir -p $(TARGET_OUT_DATA)
|
2010-09-28 02:49:03 +02:00
|
|
|
$(call build-userimage-ext-target,$(TARGET_OUT_DATA),$(INSTALLED_USERDATAIMAGE_TARGET),data,$(INTERNAL_USERIMAGES_EXT_VARIANT),$(BOARD_USERDATAIMAGE_PARTITION_SIZE))
|
2009-08-26 18:37:07 +02:00
|
|
|
$(hide) $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE),yaffs)
|
2009-03-04 04:28:42 +01:00
|
|
|
endef
|
|
|
|
|
2010-08-23 20:34:40 +02:00
|
|
|
else # INTERNAL_USERIMAGES_USE_EXT != true
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
## Generate a yaffs2 image
|
|
|
|
define build-userdataimage-target
|
|
|
|
$(call pretty,"Target userdata fs image: $(INSTALLED_USERDATAIMAGE_TARGET)")
|
|
|
|
@mkdir -p $(TARGET_OUT_DATA)
|
2010-02-05 22:34:34 +01:00
|
|
|
$(hide) $(MKYAFFS2) -f $(mkyaffs2_extra_flags) $(TARGET_OUT_DATA) $(INSTALLED_USERDATAIMAGE_TARGET)
|
2009-08-26 18:37:07 +02:00
|
|
|
$(hide) $(call assert-max-image-size,$(INSTALLED_USERDATAIMAGE_TARGET),$(BOARD_USERDATAIMAGE_PARTITION_SIZE),yaffs)
|
2009-03-04 04:28:42 +01:00
|
|
|
endef
|
2010-08-23 20:34:40 +02:00
|
|
|
endif # INTERNAL_USERIMAGES_USE_EXT
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2009-04-10 04:31:12 +02:00
|
|
|
BUILT_USERDATAIMAGE_TARGET := $(PRODUCT_OUT)/userdata.img
|
|
|
|
|
|
|
|
# We just build this directly to the install location.
|
|
|
|
INSTALLED_USERDATAIMAGE_TARGET := $(BUILT_USERDATAIMAGE_TARGET)
|
2010-08-23 20:34:40 +02:00
|
|
|
$(INSTALLED_USERDATAIMAGE_TARGET): $(INTERNAL_USERIMAGES_DEPS) \
|
2009-03-04 04:28:42 +01:00
|
|
|
$(INTERNAL_USERDATAIMAGE_FILES)
|
|
|
|
$(build-userdataimage-target)
|
|
|
|
|
|
|
|
.PHONY: userdataimage-nodeps
|
2010-08-23 20:34:40 +02:00
|
|
|
userdataimage-nodeps: $(INTERNAL_USERIMAGES_DEPS)
|
2009-03-04 04:28:42 +01:00
|
|
|
$(build-userdataimage-target)
|
|
|
|
|
|
|
|
#######
|
|
|
|
## data partition tarball
|
|
|
|
define build-userdatatarball-target
|
|
|
|
$(call pretty,"Target userdata fs tarball: " \
|
|
|
|
"$(INSTALLED_USERDATATARBALL_TARGET)")
|
|
|
|
$(MKTARBALL) $(FS_GET_STATS) \
|
|
|
|
$(PRODUCT_OUT) data $(PRIVATE_USERDATA_TAR) \
|
|
|
|
$(INSTALLED_USERDATATARBALL_TARGET)
|
|
|
|
endef
|
|
|
|
|
|
|
|
userdata_tar := $(PRODUCT_OUT)/userdata.tar
|
|
|
|
INSTALLED_USERDATATARBALL_TARGET := $(userdata_tar).bz2
|
|
|
|
$(INSTALLED_USERDATATARBALL_TARGET): PRIVATE_USERDATA_TAR := $(userdata_tar)
|
|
|
|
$(INSTALLED_USERDATATARBALL_TARGET): $(FS_GET_STATS) $(INTERNAL_USERDATAIMAGE_FILES)
|
|
|
|
$(build-userdatatarball-target)
|
|
|
|
|
|
|
|
.PHONY: userdatatarball-nodeps
|
|
|
|
userdatatarball-nodeps: $(FS_GET_STATS)
|
|
|
|
$(build-userdatatarball-target)
|
|
|
|
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# bring in the installer image generation defines if necessary
|
|
|
|
ifeq ($(TARGET_USE_DISKINSTALLER),true)
|
|
|
|
include bootable/diskinstaller/config.mk
|
|
|
|
endif
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
2009-06-15 23:30:14 +02:00
|
|
|
# host tools needed to build OTA packages
|
|
|
|
|
2010-06-18 02:52:18 +02:00
|
|
|
OTATOOLS := $(HOST_OUT_EXECUTABLES)/minigzip \
|
2009-06-15 23:30:14 +02:00
|
|
|
$(HOST_OUT_EXECUTABLES)/mkbootfs \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/mkbootimg \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/fs_config \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/mkyaffs2image \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/zipalign \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/aapt \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/bsdiff \
|
2009-06-18 17:43:44 +02:00
|
|
|
$(HOST_OUT_EXECUTABLES)/imgdiff \
|
2009-06-15 23:30:14 +02:00
|
|
|
$(HOST_OUT_JAVA_LIBRARIES)/dumpkey.jar \
|
2010-11-30 00:51:20 +01:00
|
|
|
$(HOST_OUT_JAVA_LIBRARIES)/signapk.jar \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/mkuserimg.sh \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/make_ext4fs
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2010-06-18 02:52:18 +02:00
|
|
|
.PHONY: otatools
|
|
|
|
otatools: $(OTATOOLS)
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# A zip of the directories that map to the target filesystem.
|
|
|
|
# This zip can be used to create an OTA package or filesystem image
|
|
|
|
# as a post-build step.
|
|
|
|
#
|
|
|
|
name := $(TARGET_PRODUCT)
|
|
|
|
ifeq ($(TARGET_BUILD_TYPE),debug)
|
|
|
|
name := $(name)_debug
|
|
|
|
endif
|
|
|
|
name := $(name)-target_files-$(FILE_NAME_TAG)
|
|
|
|
|
|
|
|
intermediates := $(call intermediates-dir-for,PACKAGING,target_files)
|
|
|
|
BUILT_TARGET_FILES_PACKAGE := $(intermediates)/$(name).zip
|
|
|
|
$(BUILT_TARGET_FILES_PACKAGE): intermediates := $(intermediates)
|
|
|
|
$(BUILT_TARGET_FILES_PACKAGE): \
|
|
|
|
zip_root := $(intermediates)/$(name)
|
|
|
|
|
|
|
|
# $(1): Directory to copy
|
|
|
|
# $(2): Location to copy it to
|
|
|
|
# The "ls -A" is to prevent "acp s/* d" from failing if s is empty.
|
|
|
|
define package_files-copy-root
|
|
|
|
if [ -d "$(strip $(1))" -a "$$(ls -A $(1))" ]; then \
|
|
|
|
mkdir -p $(2) && \
|
|
|
|
$(ACP) -rd $(strip $(1))/* $(2); \
|
|
|
|
fi
|
|
|
|
endef
|
|
|
|
|
|
|
|
built_ota_tools := \
|
2009-04-02 00:48:46 +02:00
|
|
|
$(call intermediates-dir-for,EXECUTABLES,applypatch)/applypatch \
|
2009-07-23 03:27:31 +02:00
|
|
|
$(call intermediates-dir-for,EXECUTABLES,applypatch_static)/applypatch_static \
|
2009-06-13 01:57:08 +02:00
|
|
|
$(call intermediates-dir-for,EXECUTABLES,check_prereq)/check_prereq \
|
|
|
|
$(call intermediates-dir-for,EXECUTABLES,updater)/updater
|
2009-03-04 04:28:42 +01:00
|
|
|
$(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools)
|
|
|
|
|
2009-06-18 02:09:40 +02:00
|
|
|
$(BUILT_TARGET_FILES_PACKAGE): PRIVATE_RECOVERY_API_VERSION := $(RECOVERY_API_VERSION)
|
|
|
|
|
2009-09-30 18:20:32 +02:00
|
|
|
ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),)
|
|
|
|
# default to common dir for device vendor
|
|
|
|
$(BUILT_TARGET_FILES_PACKAGE): tool_extensions := $(TARGET_DEVICE_DIR)/../common
|
|
|
|
else
|
|
|
|
$(BUILT_TARGET_FILES_PACKAGE): tool_extensions := $(TARGET_RELEASETOOLS_EXTENSIONS)
|
|
|
|
endif
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# Depending on the various images guarantees that the underlying
|
|
|
|
# directories are up-to-date.
|
|
|
|
$(BUILT_TARGET_FILES_PACKAGE): \
|
|
|
|
$(INSTALLED_BOOTIMAGE_TARGET) \
|
|
|
|
$(INSTALLED_RADIOIMAGE_TARGET) \
|
|
|
|
$(INSTALLED_RECOVERYIMAGE_TARGET) \
|
2009-07-02 18:00:54 +02:00
|
|
|
$(INSTALLED_SYSTEMIMAGE) \
|
2009-03-04 04:28:42 +01:00
|
|
|
$(INSTALLED_USERDATAIMAGE_TARGET) \
|
|
|
|
$(INSTALLED_ANDROID_INFO_TXT_TARGET) \
|
|
|
|
$(built_ota_tools) \
|
|
|
|
$(APKCERTS_FILE) \
|
2010-03-16 01:52:32 +01:00
|
|
|
$(HOST_OUT_EXECUTABLES)/fs_config \
|
2009-03-04 04:28:42 +01:00
|
|
|
| $(ACP)
|
|
|
|
@echo "Package target files: $@"
|
|
|
|
$(hide) rm -rf $@ $(zip_root)
|
|
|
|
$(hide) mkdir -p $(dir $@) $(zip_root)
|
|
|
|
@# Components of the recovery image
|
|
|
|
$(hide) mkdir -p $(zip_root)/RECOVERY
|
|
|
|
$(hide) $(call package_files-copy-root, \
|
|
|
|
$(TARGET_RECOVERY_ROOT_OUT),$(zip_root)/RECOVERY/RAMDISK)
|
|
|
|
ifdef INSTALLED_KERNEL_TARGET
|
|
|
|
$(hide) $(ACP) $(INSTALLED_KERNEL_TARGET) $(zip_root)/RECOVERY/kernel
|
|
|
|
endif
|
|
|
|
ifdef INSTALLED_2NDBOOTLOADER_TARGET
|
|
|
|
$(hide) $(ACP) \
|
|
|
|
$(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/RECOVERY/second
|
|
|
|
endif
|
|
|
|
ifdef BOARD_KERNEL_CMDLINE
|
|
|
|
$(hide) echo "$(BOARD_KERNEL_CMDLINE)" > $(zip_root)/RECOVERY/cmdline
|
2009-06-17 18:07:09 +02:00
|
|
|
endif
|
|
|
|
ifdef BOARD_KERNEL_BASE
|
|
|
|
$(hide) echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/RECOVERY/base
|
2010-08-25 23:29:34 +02:00
|
|
|
endif
|
|
|
|
ifdef BOARD_KERNEL_PAGESIZE
|
|
|
|
$(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/RECOVERY/pagesize
|
2009-03-04 04:28:42 +01:00
|
|
|
endif
|
|
|
|
@# Components of the boot image
|
|
|
|
$(hide) mkdir -p $(zip_root)/BOOT
|
|
|
|
$(hide) $(call package_files-copy-root, \
|
|
|
|
$(TARGET_ROOT_OUT),$(zip_root)/BOOT/RAMDISK)
|
|
|
|
ifdef INSTALLED_KERNEL_TARGET
|
|
|
|
$(hide) $(ACP) $(INSTALLED_KERNEL_TARGET) $(zip_root)/BOOT/kernel
|
|
|
|
endif
|
|
|
|
ifdef INSTALLED_2NDBOOTLOADER_TARGET
|
|
|
|
$(hide) $(ACP) \
|
|
|
|
$(INSTALLED_2NDBOOTLOADER_TARGET) $(zip_root)/BOOT/second
|
|
|
|
endif
|
|
|
|
ifdef BOARD_KERNEL_CMDLINE
|
|
|
|
$(hide) echo "$(BOARD_KERNEL_CMDLINE)" > $(zip_root)/BOOT/cmdline
|
|
|
|
endif
|
2009-06-17 18:07:09 +02:00
|
|
|
ifdef BOARD_KERNEL_BASE
|
|
|
|
$(hide) echo "$(BOARD_KERNEL_BASE)" > $(zip_root)/BOOT/base
|
2010-08-25 23:29:34 +02:00
|
|
|
endif
|
|
|
|
ifdef BOARD_KERNEL_PAGESIZE
|
|
|
|
$(hide) echo "$(BOARD_KERNEL_PAGESIZE)" > $(zip_root)/BOOT/pagesize
|
2009-06-17 18:07:09 +02:00
|
|
|
endif
|
2009-06-20 02:12:18 +02:00
|
|
|
$(hide) $(foreach t,$(INSTALLED_RADIOIMAGE_TARGET),\
|
|
|
|
mkdir -p $(zip_root)/RADIO; \
|
|
|
|
$(ACP) $(t) $(zip_root)/RADIO/$(notdir $(t));)
|
2009-03-04 04:28:42 +01:00
|
|
|
@# Contents of the system image
|
|
|
|
$(hide) $(call package_files-copy-root, \
|
|
|
|
$(SYSTEMIMAGE_SOURCE_DIR),$(zip_root)/SYSTEM)
|
|
|
|
@# Contents of the data image
|
|
|
|
$(hide) $(call package_files-copy-root, \
|
|
|
|
$(TARGET_OUT_DATA),$(zip_root)/DATA)
|
|
|
|
@# Extra contents of the OTA package
|
|
|
|
$(hide) mkdir -p $(zip_root)/OTA/bin
|
|
|
|
$(hide) $(ACP) $(INSTALLED_ANDROID_INFO_TXT_TARGET) $(zip_root)/OTA/
|
|
|
|
$(hide) $(ACP) $(PRIVATE_OTA_TOOLS) $(zip_root)/OTA/bin/
|
2009-06-15 23:30:14 +02:00
|
|
|
@# Files that do not end up in any images, but are necessary to
|
2009-03-04 04:28:42 +01:00
|
|
|
@# build them.
|
|
|
|
$(hide) mkdir -p $(zip_root)/META
|
|
|
|
$(hide) $(ACP) $(APKCERTS_FILE) $(zip_root)/META/apkcerts.txt
|
2009-04-02 00:48:46 +02:00
|
|
|
$(hide) echo "$(PRODUCT_OTA_PUBLIC_KEYS)" > $(zip_root)/META/otakeys.txt
|
2010-09-17 02:44:38 +02:00
|
|
|
$(hide) echo "recovery_api_version=$(PRIVATE_RECOVERY_API_VERSION)" > $(zip_root)/META/misc_info.txt
|
2010-07-02 00:30:11 +02:00
|
|
|
ifdef BOARD_FLASH_BLOCK_SIZE
|
2010-09-17 02:44:38 +02:00
|
|
|
$(hide) echo "blocksize=$(BOARD_FLASH_BLOCK_SIZE)" >> $(zip_root)/META/misc_info.txt
|
2010-07-02 00:30:11 +02:00
|
|
|
endif
|
|
|
|
ifdef BOARD_BOOTIMAGE_PARTITION_SIZE
|
|
|
|
$(hide) echo "boot_size=$(BOARD_BOOTIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt
|
|
|
|
endif
|
|
|
|
ifdef BOARD_RECOVERYIMAGE_PARTITION_SIZE
|
|
|
|
$(hide) echo "recovery_size=$(BOARD_RECOVERYIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt
|
|
|
|
endif
|
|
|
|
ifdef BOARD_SYSTEMIMAGE_PARTITION_SIZE
|
|
|
|
$(hide) echo "system_size=$(BOARD_SYSTEMIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt
|
|
|
|
endif
|
|
|
|
ifdef BOARD_USERDATAIMAGE_PARTITION_SIZE
|
|
|
|
$(hide) echo "userdata_size=$(BOARD_USERDATAIMAGE_PARTITION_SIZE)" >> $(zip_root)/META/misc_info.txt
|
2010-09-16 19:54:03 +02:00
|
|
|
endif
|
2010-09-17 02:44:38 +02:00
|
|
|
$(hide) echo "tool_extensions=$(tool_extensions)" >> $(zip_root)/META/misc_info.txt
|
2010-08-26 05:39:41 +02:00
|
|
|
ifdef mkyaffs2_extra_flags
|
2010-09-17 02:44:38 +02:00
|
|
|
$(hide) echo "mkyaffs2_extra_flags=$(mkyaffs2_extra_flags)" >> $(zip_root)/META/misc_info.txt
|
2010-11-18 00:40:38 +01:00
|
|
|
endif
|
|
|
|
ifdef INTERNAL_USERIMAGES_SPARSE_EXT_FLAG
|
|
|
|
$(hide) echo "extfs_sparse_flag=$(INTERNAL_USERIMAGES_SPARSE_EXT_FLAG)" >> $(zip_root)/META/misc_info.txt
|
2010-08-26 05:39:41 +02:00
|
|
|
endif
|
2009-03-04 04:28:42 +01:00
|
|
|
@# Zip everything up, preserving symlinks
|
|
|
|
$(hide) (cd $(zip_root) && zip -qry ../$(notdir $@) .)
|
2010-03-16 01:52:32 +01:00
|
|
|
@# Run fs_config on all the system files in the zip, and save the output
|
|
|
|
$(hide) zipinfo -1 $@ | awk -F/ 'BEGIN { OFS="/" } /^SYSTEM\// {$$1 = "system"; print}' | $(HOST_OUT_EXECUTABLES)/fs_config > $(zip_root)/META/filesystem_config.txt
|
|
|
|
$(hide) (cd $(zip_root) && zip -q ../$(notdir $@) META/filesystem_config.txt)
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
target-files-package: $(BUILT_TARGET_FILES_PACKAGE)
|
|
|
|
|
2009-06-16 03:56:51 +02:00
|
|
|
|
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
ifneq ($(TARGET_PRODUCT),sdk)
|
2010-03-25 07:22:33 +01:00
|
|
|
ifneq ($(TARGET_DEVICE),generic)
|
2010-08-26 01:06:06 +02:00
|
|
|
ifneq ($(TARGET_NO_KERNEL),true)
|
2011-03-04 06:52:08 +01:00
|
|
|
ifneq ($(recovery_fstab),)
|
2009-06-16 03:56:51 +02:00
|
|
|
|
2010-10-20 23:01:09 +02:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# OTA update package
|
|
|
|
|
2009-06-15 23:30:14 +02:00
|
|
|
name := $(TARGET_PRODUCT)
|
|
|
|
ifeq ($(TARGET_BUILD_TYPE),debug)
|
|
|
|
name := $(name)_debug
|
|
|
|
endif
|
|
|
|
name := $(name)-ota-$(FILE_NAME_TAG)
|
|
|
|
|
|
|
|
INTERNAL_OTA_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
|
|
|
|
|
|
|
|
$(INTERNAL_OTA_PACKAGE_TARGET): KEY_CERT_PAIR := $(DEFAULT_KEY_CERT_PAIR)
|
|
|
|
|
2010-06-18 02:52:18 +02:00
|
|
|
$(INTERNAL_OTA_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTATOOLS)
|
2009-06-15 23:30:14 +02:00
|
|
|
@echo "Package OTA: $@"
|
2010-08-26 00:23:21 +02:00
|
|
|
$(hide) ./build/tools/releasetools/ota_from_target_files -v \
|
2009-06-18 17:35:12 +02:00
|
|
|
-p $(HOST_OUT) \
|
2009-06-15 23:30:14 +02:00
|
|
|
-k $(KEY_CERT_PAIR) \
|
|
|
|
$(BUILT_TARGET_FILES_PACKAGE) $@
|
|
|
|
|
|
|
|
.PHONY: otapackage
|
|
|
|
otapackage: $(INTERNAL_OTA_PACKAGE_TARGET)
|
|
|
|
|
2010-10-20 23:01:09 +02:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# The update package
|
|
|
|
|
|
|
|
name := $(TARGET_PRODUCT)
|
|
|
|
ifeq ($(TARGET_BUILD_TYPE),debug)
|
|
|
|
name := $(name)_debug
|
|
|
|
endif
|
|
|
|
name := $(name)-img-$(FILE_NAME_TAG)
|
|
|
|
|
|
|
|
INTERNAL_UPDATE_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
|
|
|
|
|
|
|
|
ifeq ($(TARGET_RELEASETOOLS_EXTENSIONS),)
|
|
|
|
# default to common dir for device vendor
|
|
|
|
$(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_DEVICE_DIR)/../common
|
|
|
|
else
|
|
|
|
$(INTERNAL_UPDATE_PACKAGE_TARGET): extensions := $(TARGET_RELEASETOOLS_EXTENSIONS)
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(INTERNAL_UPDATE_PACKAGE_TARGET): $(BUILT_TARGET_FILES_PACKAGE) $(OTATOOLS)
|
|
|
|
@echo "Package: $@"
|
|
|
|
$(hide) ./build/tools/releasetools/img_from_target_files -v \
|
|
|
|
-s $(extensions) \
|
|
|
|
-p $(HOST_OUT) \
|
|
|
|
$(BUILT_TARGET_FILES_PACKAGE) $@
|
|
|
|
|
|
|
|
.PHONY: updatepackage
|
|
|
|
updatepackage: $(INTERNAL_UPDATE_PACKAGE_TARGET)
|
|
|
|
|
2011-03-04 06:52:08 +01:00
|
|
|
endif # recovery_fstab is defined
|
2010-08-26 01:06:06 +02:00
|
|
|
endif # TARGET_NO_KERNEL != true
|
2010-03-25 07:22:33 +01:00
|
|
|
endif # TARGET_DEVICE != generic
|
2009-06-16 03:56:51 +02:00
|
|
|
endif # TARGET_PRODUCT != sdk
|
|
|
|
endif # TARGET_SIMULATOR != true
|
2009-06-15 23:30:14 +02:00
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# installed file list
|
|
|
|
# Depending on $(INSTALLED_SYSTEMIMAGE) ensures that it
|
|
|
|
# gets the DexOpt one if we're doing that.
|
|
|
|
INSTALLED_FILES_FILE := $(PRODUCT_OUT)/installed-files.txt
|
|
|
|
$(INSTALLED_FILES_FILE): $(INSTALLED_SYSTEMIMAGE)
|
|
|
|
@echo Installed file list: $@
|
|
|
|
@mkdir -p $(dir $@)
|
|
|
|
@rm -f $@
|
|
|
|
$(hide) build/tools/fileslist.py $(TARGET_OUT) $(TARGET_OUT_DATA) > $@
|
|
|
|
|
|
|
|
.PHONY: installed-file-list
|
|
|
|
installed-file-list: $(INSTALLED_FILES_FILE)
|
2011-02-16 01:09:36 +01:00
|
|
|
ifneq ($(filter sdk win_sdk,$(MAKECMDGOALS)),)
|
|
|
|
$(call dist-for-goals, sdk win_sdk, $(INSTALLED_FILES_FILE))
|
|
|
|
endif
|
|
|
|
ifneq ($(filter sdk_addon,$(MAKECMDGOALS)),)
|
2009-04-13 17:31:16 +02:00
|
|
|
$(call dist-for-goals, sdk_addon, $(INSTALLED_FILES_FILE))
|
2011-02-16 01:09:36 +01:00
|
|
|
endif
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# A zip of the tests that are built when running "make tests".
|
|
|
|
# This is very similar to BUILT_TARGET_FILES_PACKAGE, but we
|
|
|
|
# only grab SYSTEM and DATA, and it's called "*-tests-*.zip".
|
|
|
|
#
|
|
|
|
name := $(TARGET_PRODUCT)
|
|
|
|
ifeq ($(TARGET_BUILD_TYPE),debug)
|
|
|
|
name := $(name)_debug
|
|
|
|
endif
|
|
|
|
name := $(name)-tests-$(FILE_NAME_TAG)
|
|
|
|
|
|
|
|
intermediates := $(call intermediates-dir-for,PACKAGING,tests_zip)
|
|
|
|
BUILT_TESTS_ZIP_PACKAGE := $(intermediates)/$(name).zip
|
|
|
|
$(BUILT_TESTS_ZIP_PACKAGE): intermediates := $(intermediates)
|
|
|
|
$(BUILT_TESTS_ZIP_PACKAGE): zip_root := $(intermediates)/$(name)
|
|
|
|
|
|
|
|
# Depending on the images guarantees that the underlying
|
|
|
|
# directories are up-to-date.
|
|
|
|
$(BUILT_TESTS_ZIP_PACKAGE): \
|
|
|
|
$(BUILT_SYSTEMIMAGE) \
|
|
|
|
$(INSTALLED_USERDATAIMAGE_TARGET) \
|
|
|
|
| $(ACP)
|
|
|
|
@echo "Package test files: $@"
|
|
|
|
$(hide) rm -rf $@ $(zip_root)
|
|
|
|
$(hide) mkdir -p $(dir $@) $(zip_root)
|
|
|
|
@# Some parts of the system image
|
|
|
|
$(hide) $(call package_files-copy-root, \
|
|
|
|
$(SYSTEMIMAGE_SOURCE_DIR)/xbin,$(zip_root)/SYSTEM/xbin)
|
|
|
|
$(hide) $(call package_files-copy-root, \
|
|
|
|
$(SYSTEMIMAGE_SOURCE_DIR)/lib,$(zip_root)/SYSTEM/lib)
|
|
|
|
$(hide) $(call package_files-copy-root, \
|
|
|
|
$(SYSTEMIMAGE_SOURCE_DIR)/framework, \
|
|
|
|
$(zip_root)/SYSTEM/framework)
|
|
|
|
$(hide) $(ACP) $(SYSTEMIMAGE_SOURCE_DIR)/build.prop $(zip_root)/SYSTEM
|
|
|
|
@# Contents of the data image
|
|
|
|
$(hide) $(call package_files-copy-root, \
|
|
|
|
$(TARGET_OUT_DATA),$(zip_root)/DATA)
|
|
|
|
$(hide) (cd $(zip_root) && zip -qry ../$(notdir $@) .)
|
|
|
|
|
2010-09-10 23:39:33 +02:00
|
|
|
.PHONY: tests-zip-package
|
2009-03-04 04:28:42 +01:00
|
|
|
tests-zip-package: $(BUILT_TESTS_ZIP_PACKAGE)
|
|
|
|
|
2010-09-15 01:07:56 +02:00
|
|
|
# Target needed by tests build
|
|
|
|
.PHONY: tests-build-target
|
|
|
|
tests-build-target: $(BUILT_TESTS_ZIP_PACKAGE) \
|
|
|
|
$(BUILT_USERDATAIMAGE_TARGET)
|
|
|
|
|
|
|
|
ifneq (,$(filter $(MAKECMDGOALS),tests-build-target))
|
|
|
|
$(call dist-for-goals, tests-build-target, \
|
|
|
|
$(BUILT_TESTS_ZIP_PACKAGE) \
|
|
|
|
$(BUILT_USERDATAIMAGE_TARGET))
|
2010-09-10 23:39:33 +02:00
|
|
|
endif
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# A zip of the symbols directory. Keep the full paths to make it
|
|
|
|
# more obvious where these files came from.
|
|
|
|
#
|
|
|
|
name := $(TARGET_PRODUCT)
|
|
|
|
ifeq ($(TARGET_BUILD_TYPE),debug)
|
|
|
|
name := $(name)_debug
|
|
|
|
endif
|
|
|
|
name := $(name)-symbols-$(FILE_NAME_TAG)
|
|
|
|
|
|
|
|
SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name).zip
|
|
|
|
$(SYMBOLS_ZIP): $(INSTALLED_SYSTEMIMAGE) $(INSTALLED_BOOTIMAGE_TARGET)
|
|
|
|
@echo "Package symbols: $@"
|
|
|
|
$(hide) rm -rf $@
|
|
|
|
$(hide) mkdir -p $(dir $@)
|
|
|
|
$(hide) zip -qr $@ $(TARGET_OUT_UNSTRIPPED)
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# A zip of the Android Apps. Not keeping full path so that we don't
|
|
|
|
# include product names when distributing
|
|
|
|
#
|
|
|
|
name := $(TARGET_PRODUCT)
|
|
|
|
ifeq ($(TARGET_BUILD_TYPE),debug)
|
|
|
|
name := $(name)_debug
|
|
|
|
endif
|
|
|
|
name := $(name)-apps-$(FILE_NAME_TAG)
|
|
|
|
|
|
|
|
APPS_ZIP := $(PRODUCT_OUT)/$(name).zip
|
|
|
|
$(APPS_ZIP): $(INSTALLED_SYSTEMIMAGE)
|
|
|
|
@echo "Package apps: $@"
|
|
|
|
$(hide) rm -rf $@
|
|
|
|
$(hide) mkdir -p $(dir $@)
|
|
|
|
$(hide) zip -qj $@ $(TARGET_OUT_APPS)/*
|
|
|
|
|
2010-05-14 01:46:21 +02:00
|
|
|
|
|
|
|
#------------------------------------------------------------------
|
|
|
|
# A zip of emma code coverage meta files. Generated for fully emma
|
|
|
|
# instrumented build.
|
|
|
|
#
|
|
|
|
EMMA_META_ZIP := $(PRODUCT_OUT)/emma_meta.zip
|
|
|
|
$(EMMA_META_ZIP): $(INSTALLED_SYSTEMIMAGE)
|
|
|
|
@echo "Collecting Emma coverage meta files."
|
|
|
|
$(hide) find $(TARGET_COMMON_OUT_ROOT) -name "coverage.em" | \
|
|
|
|
zip -@ -q $@
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
endif # TARGET_SIMULATOR != true
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# dalvik something
|
|
|
|
.PHONY: dalvikfiles
|
|
|
|
dalvikfiles: $(INTERNAL_DALVIK_MODULES)
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# The emulator package
|
|
|
|
|
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
|
|
|
|
INTERNAL_EMULATOR_PACKAGE_FILES += \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/emulator$(HOST_EXECUTABLE_SUFFIX) \
|
2011-02-19 00:06:20 +01:00
|
|
|
prebuilt/android-$(TARGET_ARCH)/kernel/kernel-qemu \
|
2009-03-04 04:28:42 +01:00
|
|
|
$(INSTALLED_RAMDISK_TARGET) \
|
|
|
|
$(INSTALLED_SYSTEMIMAGE) \
|
|
|
|
$(INSTALLED_USERDATAIMAGE_TARGET)
|
|
|
|
|
|
|
|
name := $(TARGET_PRODUCT)-emulator-$(FILE_NAME_TAG)
|
|
|
|
|
|
|
|
INTERNAL_EMULATOR_PACKAGE_TARGET := $(PRODUCT_OUT)/$(name).zip
|
|
|
|
|
|
|
|
$(INTERNAL_EMULATOR_PACKAGE_TARGET): $(INTERNAL_EMULATOR_PACKAGE_FILES)
|
|
|
|
@echo "Package: $@"
|
|
|
|
$(hide) zip -qj $@ $(INTERNAL_EMULATOR_PACKAGE_FILES)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# The pdk package (Platform Development Kit)
|
|
|
|
|
|
|
|
ifneq (,$(filter pdk,$(MAKECMDGOALS)))
|
|
|
|
include development/pdk/Pdk.mk
|
|
|
|
endif
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# The SDK
|
|
|
|
|
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
|
|
|
|
# The SDK includes host-specific components, so it belongs under HOST_OUT.
|
|
|
|
sdk_dir := $(HOST_OUT)/sdk
|
|
|
|
|
|
|
|
# Build a name that looks like:
|
|
|
|
#
|
|
|
|
# linux-x86 --> android-sdk_12345_linux-x86
|
|
|
|
# darwin-x86 --> android-sdk_12345_mac-x86
|
|
|
|
# windows-x86 --> android-sdk_12345_windows
|
|
|
|
#
|
|
|
|
sdk_name := android-sdk_$(FILE_NAME_TAG)
|
|
|
|
ifeq ($(HOST_OS),darwin)
|
2009-04-13 17:31:16 +02:00
|
|
|
INTERNAL_SDK_HOST_OS_NAME := mac
|
2009-03-04 04:28:42 +01:00
|
|
|
else
|
2009-04-13 17:31:16 +02:00
|
|
|
INTERNAL_SDK_HOST_OS_NAME := $(HOST_OS)
|
2009-03-04 04:28:42 +01:00
|
|
|
endif
|
|
|
|
ifneq ($(HOST_OS),windows)
|
2009-04-13 17:31:16 +02:00
|
|
|
INTERNAL_SDK_HOST_OS_NAME := $(INTERNAL_SDK_HOST_OS_NAME)-$(HOST_ARCH)
|
2009-03-04 04:28:42 +01:00
|
|
|
endif
|
2009-04-13 17:31:16 +02:00
|
|
|
sdk_name := $(sdk_name)_$(INTERNAL_SDK_HOST_OS_NAME)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
sdk_dep_file := $(sdk_dir)/sdk_deps.mk
|
|
|
|
|
|
|
|
ATREE_FILES :=
|
|
|
|
-include $(sdk_dep_file)
|
|
|
|
|
|
|
|
# if we don't have a real list, then use "everything"
|
|
|
|
ifeq ($(strip $(ATREE_FILES)),)
|
|
|
|
ATREE_FILES := \
|
|
|
|
$(ALL_PREBUILT) \
|
|
|
|
$(ALL_COPIED_HEADERS) \
|
|
|
|
$(ALL_GENERATED_SOURCES) \
|
|
|
|
$(ALL_DEFAULT_INSTALLED_MODULES) \
|
|
|
|
$(INSTALLED_RAMDISK_TARGET) \
|
|
|
|
$(ALL_DOCS) \
|
|
|
|
$(ALL_SDK_FILES)
|
|
|
|
endif
|
|
|
|
|
|
|
|
atree_dir := development/build
|
|
|
|
|
2011-03-23 11:20:14 +01:00
|
|
|
# sdk/build/tools.atree contains the generic rules, while
|
|
|
|
#
|
|
|
|
# sdk/build/tools.$(TARGET_ARCH).atree contains target-specific rules
|
|
|
|
# the latter is optional.
|
|
|
|
#
|
|
|
|
sdk_tools_atree_files := sdk/build/tools.atree
|
|
|
|
ifneq (,$(strip $(wildcard sdk/build/tools.$(TARGET_ARCH).atree)))
|
|
|
|
sdk_tools_atree_files += sdk/build/tools.$(TARGET_ARCH).atree
|
|
|
|
endif
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
sdk_atree_files := \
|
|
|
|
$(atree_dir)/sdk.exclude.atree \
|
|
|
|
$(atree_dir)/sdk.atree \
|
2010-09-28 00:51:32 +02:00
|
|
|
$(atree_dir)/sdk-$(HOST_OS)-$(HOST_ARCH).atree \
|
2011-03-23 11:20:14 +01:00
|
|
|
$(sdk_tools_atree_files)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
deps := \
|
|
|
|
$(target_notice_file_txt) \
|
|
|
|
$(tools_notice_file_txt) \
|
|
|
|
$(OUT_DOCS)/offline-sdk-timestamp \
|
2010-04-01 02:29:04 +02:00
|
|
|
$(SYMBOLS_ZIP) \
|
2009-06-16 06:25:32 +02:00
|
|
|
$(INSTALLED_SYSTEMIMAGE) \
|
|
|
|
$(INSTALLED_USERDATAIMAGE_TARGET) \
|
|
|
|
$(INSTALLED_RAMDISK_TARGET) \
|
2009-03-04 04:28:42 +01:00
|
|
|
$(INSTALLED_SDK_BUILD_PROP_TARGET) \
|
2010-04-01 02:29:04 +02:00
|
|
|
$(INSTALLED_BUILD_PROP_TARGET) \
|
2009-03-04 04:28:42 +01:00
|
|
|
$(ATREE_FILES) \
|
|
|
|
$(atree_dir)/sdk.atree \
|
2011-03-23 11:20:14 +01:00
|
|
|
$(sdk_tools_atree_files) \
|
2009-03-04 04:28:42 +01:00
|
|
|
$(HOST_OUT_EXECUTABLES)/atree \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/line_endings
|
|
|
|
|
|
|
|
INTERNAL_SDK_TARGET := $(sdk_dir)/$(sdk_name).zip
|
|
|
|
$(INTERNAL_SDK_TARGET): PRIVATE_NAME := $(sdk_name)
|
|
|
|
$(INTERNAL_SDK_TARGET): PRIVATE_DIR := $(sdk_dir)/$(sdk_name)
|
|
|
|
$(INTERNAL_SDK_TARGET): PRIVATE_DEP_FILE := $(sdk_dep_file)
|
|
|
|
$(INTERNAL_SDK_TARGET): PRIVATE_INPUT_FILES := $(sdk_atree_files)
|
|
|
|
|
|
|
|
# Set SDK_GNU_ERROR to non-empty to fail when a GNU target is built.
|
|
|
|
#
|
|
|
|
#SDK_GNU_ERROR := true
|
|
|
|
|
2011-02-01 22:30:00 +01:00
|
|
|
ifeq ($(HOST_OS),darwin)
|
|
|
|
HOST_STRIP_SDK_LLVM := strip
|
|
|
|
else
|
|
|
|
HOST_STRIP_SDK_LLVM := strip --strip-all
|
|
|
|
endif
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
$(INTERNAL_SDK_TARGET): $(deps)
|
|
|
|
@echo "Package SDK: $@"
|
|
|
|
$(hide) rm -rf $(PRIVATE_DIR) $@
|
|
|
|
$(hide) for f in $(target_gnu_MODULES); do \
|
|
|
|
if [ -f $$f ]; then \
|
|
|
|
echo SDK: $(if $(SDK_GNU_ERROR),ERROR:,warning:) \
|
|
|
|
including GNU target $$f >&2; \
|
|
|
|
FAIL=$(SDK_GNU_ERROR); \
|
|
|
|
fi; \
|
|
|
|
done; \
|
|
|
|
if [ $$FAIL ]; then exit 1; fi
|
|
|
|
$(hide) ( \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/atree \
|
|
|
|
$(addprefix -f ,$(PRIVATE_INPUT_FILES)) \
|
|
|
|
-m $(PRIVATE_DEP_FILE) \
|
|
|
|
-I . \
|
|
|
|
-I $(PRODUCT_OUT) \
|
|
|
|
-I $(HOST_OUT) \
|
|
|
|
-I $(TARGET_COMMON_OUT_ROOT) \
|
|
|
|
-v "PLATFORM_NAME=android-$(PLATFORM_VERSION)" \
|
2011-01-05 23:58:17 +01:00
|
|
|
-v "OUT_DIR=$(OUT_DIR)" \
|
2011-02-19 00:06:20 +01:00
|
|
|
-v "TARGET_ARCH=$(TARGET_ARCH)" \
|
|
|
|
-v "TARGET_CPU_ABI=$(TARGET_CPU_ABI)" \
|
2009-03-04 04:28:42 +01:00
|
|
|
-o $(PRIVATE_DIR) && \
|
|
|
|
cp -f $(target_notice_file_txt) \
|
2011-02-19 00:06:20 +01:00
|
|
|
$(PRIVATE_DIR)/platforms/android-$(PLATFORM_VERSION)/images/$(TARGET_CPU_ABI)/NOTICE.txt && \
|
2009-03-04 04:28:42 +01:00
|
|
|
cp -f $(tools_notice_file_txt) $(PRIVATE_DIR)/tools/NOTICE.txt && \
|
2011-02-01 22:30:00 +01:00
|
|
|
if [ -f $(PRIVATE_DIR)/platform-tools/llvm-rs-cc ]; then \
|
|
|
|
$(HOST_STRIP_SDK_LLVM) $(PRIVATE_DIR)/platform-tools/llvm-rs-cc; \
|
|
|
|
fi && \
|
2009-03-04 04:28:42 +01:00
|
|
|
HOST_OUT_EXECUTABLES=$(HOST_OUT_EXECUTABLES) HOST_OS=$(HOST_OS) \
|
2011-02-01 22:30:00 +01:00
|
|
|
development/build/tools/sdk_clean.sh $(PRIVATE_DIR) && \
|
2009-03-04 04:28:42 +01:00
|
|
|
chmod -R ug+rwX $(PRIVATE_DIR) && \
|
|
|
|
cd $(dir $@) && zip -rq $(notdir $@) $(PRIVATE_NAME) \
|
|
|
|
) || ( rm -rf $(PRIVATE_DIR) $@ && exit 44 )
|
|
|
|
|
2010-04-17 02:50:09 +02:00
|
|
|
|
|
|
|
# Is a Windows SDK requested? If so, we need some definitions from here
|
|
|
|
# in order to find the Linux SDK used to create the Windows one.
|
2011-02-16 01:09:36 +01:00
|
|
|
MAIN_SDK_NAME := $(sdk_name)
|
|
|
|
MAIN_SDK_DIR := $(sdk_dir)
|
|
|
|
MAIN_SDK_ZIP := $(INTERNAL_SDK_TARGET)
|
2010-04-17 02:50:09 +02:00
|
|
|
ifneq ($(filter win_sdk,$(MAKECMDGOALS)),)
|
|
|
|
include $(TOPDIR)development/build/tools/windows_sdk.mk
|
|
|
|
endif
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
endif # !simulator
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# Findbugs
|
|
|
|
INTERNAL_FINDBUGS_XML_TARGET := $(PRODUCT_OUT)/findbugs.xml
|
|
|
|
INTERNAL_FINDBUGS_HTML_TARGET := $(PRODUCT_OUT)/findbugs.html
|
|
|
|
$(INTERNAL_FINDBUGS_XML_TARGET): $(ALL_FINDBUGS_FILES)
|
|
|
|
@echo UnionBugs: $@
|
|
|
|
$(hide) prebuilt/common/findbugs/bin/unionBugs $(ALL_FINDBUGS_FILES) \
|
|
|
|
> $@
|
|
|
|
$(INTERNAL_FINDBUGS_HTML_TARGET): $(INTERNAL_FINDBUGS_XML_TARGET)
|
|
|
|
@echo ConvertXmlToText: $@
|
|
|
|
$(hide) prebuilt/common/findbugs/bin/convertXmlToText -html:fancy.xsl \
|
|
|
|
$(INTERNAL_FINDBUGS_XML_TARGET) > $@
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# Findbugs
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# These are some additional build tasks that need to be run.
|
|
|
|
include $(sort $(wildcard $(BUILD_SYSTEM)/tasks/*.mk))
|
2010-11-12 15:46:00 +01:00
|
|
|
-include $(sort $(wildcard vendor/*/build/tasks/*.mk))
|
2011-02-16 01:09:36 +01:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------
|
|
|
|
# Create SDK repository packages. Must be done after tasks/* since
|
|
|
|
# we need the addon rules defined.
|
|
|
|
ifneq ($(sdk_repo_goal),)
|
|
|
|
include $(TOPDIR)development/build/tools/sdk_repo.mk
|
|
|
|
endif
|