58 lines
1.6 KiB
Makefile
Executable file
58 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
|
|
|
|
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_perf
|
|
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 := ap6210
|
|
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 := ap6210
|
|
BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/softwinner/octopus-perf/bluetooth/
|
|
|
|
#gsensor & Gyr sensor
|
|
SW_BOARD_USES_SENSORS_TYPE = aw_sensors
|
|
|
|
# boostup code will on command to set CPU roomage and DDR freq
|
|
# default enable
|
|
TARGET_USE_BOOSTUP_OPZ := true
|
|
|