e01100c7ac
Non-HTC devices may have multiple files constituting their "radio image". Generalize the INSTALLED_RADIOIMAGE_TARGET variable a bit: initially define it as empty, then let AndroidBoard.mk files add to it. Provide a convenience function add-radio-image for them to call to add files. Put all those files into the target_files zip for use in OTA and fastboot package construction. Note that for HTC devices, this changes the name of the radio image in the target_files zip: instead of "RADIO/image" it will be "RADIO/radio.img". Tools that use the target_files zip will need to be changed.
51 lines
1.7 KiB
Makefile
51 lines
1.7 KiB
Makefile
#
|
|
# Set up product-global definitions and include product-specific rules.
|
|
#
|
|
|
|
ifneq ($(strip $(TARGET_NO_BOOTLOADER)),true)
|
|
INSTALLED_BOOTLOADER_MODULE := $(PRODUCT_OUT)/bootloader
|
|
ifeq ($(strip $(TARGET_BOOTLOADER_IS_2ND)),true)
|
|
INSTALLED_2NDBOOTLOADER_TARGET := $(PRODUCT_OUT)/2ndbootloader
|
|
else
|
|
INSTALLED_2NDBOOTLOADER_TARGET :=
|
|
endif
|
|
else
|
|
INSTALLED_BOOTLOADER_MODULE :=
|
|
INSTALLED_2NDBOOTLOADER_TARGET :=
|
|
endif # TARGET_NO_BOOTLOADER
|
|
|
|
ifneq ($(strip $(TARGET_NO_KERNEL)),true)
|
|
INSTALLED_KERNEL_TARGET := $(PRODUCT_OUT)/kernel
|
|
else
|
|
INSTALLED_KERNEL_TARGET :=
|
|
endif
|
|
|
|
# Use the add-radio-file function to add values to this variable.
|
|
INSTALLED_RADIOIMAGE_TARGET :=
|
|
|
|
ifeq (,$(wildcard $(TARGET_DEVICE_DIR)/AndroidBoard.mk))
|
|
ifeq (,$(wildcard $(TARGET_DEVICE_DIR)/Android.mk))
|
|
$(error Missing "$(TARGET_DEVICE_DIR)/AndroidBoard.mk")
|
|
else
|
|
# TODO: Remove this check after people have had a chance to switch,
|
|
# after April 2009.
|
|
$(error Please rename "$(TARGET_DEVICE_DIR)/Android.mk" to "$(TARGET_DEVICE_DIR)/AndroidBoard.mk")
|
|
endif
|
|
endif
|
|
include $(TARGET_DEVICE_DIR)/AndroidBoard.mk
|
|
|
|
# Generate a file that contains various information about the
|
|
# device we're building for. This file is typically packaged up
|
|
# with everything else.
|
|
#
|
|
# If the file "board-info.txt" appears in $(TARGET_DEVICE_DIR),
|
|
# it will be appended to the output file.
|
|
#
|
|
INSTALLED_ANDROID_INFO_TXT_TARGET := $(PRODUCT_OUT)/android-info.txt
|
|
board_info_txt := $(wildcard $(TARGET_DEVICE_DIR)/board-info.txt)
|
|
$(INSTALLED_ANDROID_INFO_TXT_TARGET): $(board_info_txt)
|
|
$(call pretty,"Generated: ($@)")
|
|
$(hide) echo "board=$(TARGET_BOOTLOADER_BOARD_NAME)" > $@
|
|
ifdef board_info_txt
|
|
$(hide) cat $< >> $@
|
|
endif
|