You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.5 KiB
65 lines
2.5 KiB
# Huanglong Solution Env
|
|
CHIP_VERSION := hi3751v811
|
|
CHIP_REVISION := c
|
|
|
|
# Product Customize Env
|
|
PRODUCT_BRAND := huanglong
|
|
PRODUCT_MODEL := huanglong
|
|
PRODUCT_MANUFACTURER := HL2.0
|
|
|
|
TARGET_BOARD_PLATFORM := huanglong
|
|
TARGET_BOOTLOADER_BOARD_NAME := huanglong
|
|
|
|
PRODUCT_CHARACTERISTICS := tv
|
|
PRODUCT_AAPT_PREF_CONFIG := xhdpi
|
|
PRODUCT_AAPT_CONFIG := normal large xlarge hdpi xhdpi
|
|
|
|
#---------------------------------------------
|
|
# Flash XML Copy File Config
|
|
#---------------------------------------------
|
|
ifneq ($(wildcard $(TARGET_PRODUCT_DIR)/partition),)
|
|
PRODUCT_PARTITION_DIR := $(TARGET_PRODUCT_DIR)/partition
|
|
endif
|
|
#---------------------------------------------
|
|
# Init Rc Copy File Config
|
|
#---------------------------------------------
|
|
ifneq ($(wildcard $(TARGET_PRODUCT_DIR)/etc/system/init.custom.rc),)
|
|
SYSTEM_CUSTOM_INITRC_FILE := $(TARGET_PRODUCT_DIR)/etc/system/init.custom.rc
|
|
endif
|
|
ifneq ($(wildcard $(TARGET_PRODUCT_DIR)/etc/vendor/init.custom.rc),)
|
|
VENDOR_CUSTOM_INITRC_FILE := $(TARGET_PRODUCT_DIR)/etc/vendor/init.custom.rc
|
|
endif
|
|
ifneq ($(wildcard $(TARGET_PRODUCT_DIR)/etc/vendor/fstab.hardware.android.fbe),)
|
|
DEVICE_FSTAB_FILE := $(TARGET_PRODUCT_DIR)/etc/vendor/fstab.hardware.android.fbe
|
|
endif
|
|
ifneq ($(wildcard $(TARGET_PRODUCT_DIR)/etc/vendor/ueventd.rc),)
|
|
DEVICE_UEVENTD_RC_FILE := $(TARGET_PRODUCT_DIR)/etc/vendor/ueventd.rc
|
|
endif
|
|
#---------------------------------------------
|
|
# Minorimages Copy File Config
|
|
#---------------------------------------------
|
|
ifneq ($(wildcard $(TARGET_PRODUCT_DIR)/minorimages/baseparam.img),)
|
|
BASEPARAM_IMG_FILE := $(TARGET_PRODUCT_DIR)/minorimages/baseparam.img
|
|
endif
|
|
ifneq ($(wildcard $(TARGET_PRODUCT_DIR)/minorimages/deviceinfo.img),)
|
|
DEVICEINFO_IMG_FILE := $(TARGET_PRODUCT_DIR)/minorimages/deviceinfo.img
|
|
endif
|
|
ifneq ($(wildcard $(TARGET_PRODUCT_DIR)/minorimages/logo.img),)
|
|
LOGO_IMG_FILE := $(TARGET_PRODUCT_DIR)/minorimages/logo.img
|
|
endif
|
|
ifneq ($(wildcard $(TARGET_PRODUCT_DIR)/minorimages/panel.bin),)
|
|
PANEL_IMG_FILE := $(TARGET_PRODUCT_DIR)/minorimages/panel.bin
|
|
endif
|
|
#---------------------------------------------
|
|
# Virtualkeypad Copy File Config
|
|
#---------------------------------------------
|
|
ifneq ($(wildcard $(TARGET_CUSTOM_PATH)/etc/keypad.xml),)
|
|
VIRTUALKEYPAD_FILE := $(TARGET_CUSTOM_PATH)/etc/keypad.xml
|
|
endif
|
|
|
|
-include $(TARGET_PRODUCT_DIR)/properties/system_properties.mk
|
|
-include $(TARGET_PRODUCT_DIR)/properties/vendor_properties.mk
|
|
-include $(TARGET_PRODUCT_DIR)/build/product_filter_list.mk
|
|
-include $(TARGET_PRODUCT_DIR)/product/product.mk
|
|
-include $(TARGET_PRODUCT_DIR)/odm/odm.mk
|