forked from openkylin/platform_build
only auto-generate board= requirement if a board-info file is not specified
If a board-info file is specified (as is usually the case) we should honor its requirements.
This commit is contained in:
parent
636458dd06
commit
2b80317be2
|
@ -45,7 +45,8 @@ 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 $< >> $@
|
||||
else
|
||||
$(hide) echo "board=$(TARGET_BOOTLOADER_BOARD_NAME)" > $@
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue