55 lines
1.6 KiB
Makefile
Executable file
55 lines
1.6 KiB
Makefile
Executable file
# BoardConfig.mk
|
|
#
|
|
# Product-specific compile-time definitions.
|
|
#
|
|
|
|
include device/softwinner/octopus-common/BoardConfigCommon.mk
|
|
|
|
# image related
|
|
TARGET_NO_BOOTLOADER := true
|
|
TARGET_NO_RECOVERY := false
|
|
TARGET_NO_KERNEL := false
|
|
|
|
# Enable dex-preoptimization to speed up first boot sequence
|
|
WITH_DEXPREOPT := true
|
|
DONT_DEXPREOPT_PREBUILTS := true
|
|
|
|
|
|
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_octopus_f1
|
|
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 := gb9663
|
|
include hardware/broadcom/wlan/bcmdhd/firmware/$(BOARD_USR_WIFI)/device-bcm.mk
|
|
|
|
endif
|
|
|
|
#sensor parameter
|
|
SW_BOARD_USES_SENSORS_TYPE := lsm9ds0
|
|
|
|
# 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 := gb9663
|
|
BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/softwinner/octopus-f1/bluetooth
|
|
TARGET_USE_BOOSTUP_OPZ := true
|