47 lines
1.4 KiB
Makefile
Executable file
47 lines
1.4 KiB
Makefile
Executable file
# BoardConfig.mk
|
|
#
|
|
# Product-specific compile-time definitions.
|
|
#
|
|
|
|
include device/softwinner/kylin-common/BoardConfigCommon.mk
|
|
|
|
# image related
|
|
TARGET_NO_BOOTLOADER := true
|
|
TARGET_NO_RECOVERY := false
|
|
TARGET_NO_KERNEL := false
|
|
|
|
INSTALLED_KERNEL_TARGET := kernel
|
|
BOARD_KERNEL_CMDLINE :=
|
|
TARGET_USERIMAGES_USE_EXT4 := true
|
|
BOARD_FLASH_BLOCK_SIZE := 4096
|
|
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 1610612736
|
|
|
|
# recovery stuff
|
|
#TARGET_RECOVERY_PIXEL_FORMAT := "BGRA_8888"
|
|
TARGET_RECOVERY_UI_LIB := librecovery_ui_kylin_p1
|
|
SW_BOARD_TOUCH_RECOVERY := true
|
|
|
|
# wifi and bt configuration
|
|
# 1. Wifi Configuration
|
|
BOARD_WIFI_VENDOR := broadcom
|
|
ifeq ($(BOARD_WIFI_VENDOR), broadcom)
|
|
BOARD_WPA_SUPPLICANT_DRIVER := NL80211
|
|
WPA_SUPPLICANT_VERSION := VER_0_8_X
|
|
BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_bcmdhd
|
|
BOARD_HOSTAPD_DRIVER := NL80211
|
|
BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_bcmdhd
|
|
BOARD_WLAN_DEVICE := bcmdhd
|
|
WIFI_DRIVER_FW_PATH_PARAM := "/sys/module/bcmdhd/parameters/firmware_path"
|
|
|
|
BOARD_USR_WIFI := ap6330
|
|
include hardware/broadcom/wlan/bcmdhd/firmware/$(BOARD_USR_WIFI)/device-bcm.mk
|
|
|
|
endif
|
|
|
|
# 2. Bluetooth Configuration
|
|
# make sure BOARD_HAVE_BLUETOOTH is true for every bt vendor
|
|
BOARD_HAVE_BLUETOOTH := true
|
|
BOARD_HAVE_BLUETOOTH_BCM := true
|
|
BOARD_HAVE_BLUETOOTH_NAME := ap6330
|
|
BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/softwinner/kylin-p1/bluetooth
|
|
TARGET_USE_BOOSTUP_OPZ := true
|