blob: a14e23365b759a3e252af9c9bfc19f495d09f1cc [file] [log] [blame]
Vishal Bhoje72c9202015-10-23 18:10:21 +01001# Primary Arch
2TARGET_ARCH := arm64
3TARGET_ARCH_VARIANT := armv8-a
4TARGET_CPU_VARIANT := generic
5TARGET_CPU_ABI := arm64-v8a
6
7# Secondary Arch
8TARGET_2ND_ARCH := arm
9TARGET_2ND_ARCH_VARIANT := armv7-a-neon
10TARGET_2ND_CPU_VARIANT := cortex-a15
11TARGET_2ND_CPU_ABI := armeabi-v7a
12TARGET_2ND_CPU_ABI2 := armeabi
13
14TARGET_USES_64_BIT_BINDER := true
15TARGET_SUPPORTS_32_BIT_APPS := true
16TARGET_SUPPORTS_64_BIT_APPS := true
17
Vishal Bhoje72c9202015-10-23 18:10:21 +010018WITH_DEXPREOPT ?= true
19USE_OPENGL_RENDERER := true
20ANDROID_ENABLE_RENDERSCRIPT := true
21
22# BT configs
Vishal Bhoje72c9202015-10-23 18:10:21 +010023BOARD_HAVE_BLUETOOTH := true
24
25# generic wifi
26WPA_SUPPLICANT_VERSION := VER_0_8_X
27BOARD_WPA_SUPPLICANT_DRIVER := NL80211
Dmitry Shmidtf4335342016-04-05 12:04:36 -070028BOARD_HOSTAPD_DRIVER := NL80211
Vishal Bhoje72c9202015-10-23 18:10:21 +010029CONFIG_DRIVER_NL80211 := y
Vishal Bhoje72c9202015-10-23 18:10:21 +010030
Vishal Bhoje72c9202015-10-23 18:10:21 +010031TARGET_NO_BOOTLOADER := true
32TARGET_NO_KERNEL := false
33TARGET_NO_RECOVERY := true
34TARGET_HARDWARE_3D := true
35BOARD_USES_GENERIC_AUDIO := true
36USE_CAMERA_STUB := true
37TARGET_USERIMAGES_USE_EXT4 := true
Vishal Bhoje72c9202015-10-23 18:10:21 +010038BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
Vishal Bhoje72c9202015-10-23 18:10:21 +010039TARGET_USE_PAN_DISPLAY := true
40
Yongqin Liu416a19b2016-03-23 21:35:50 +080041# enable to use the CPUSETS feature
42ENABLE_CPUSETS := true
John Stultz5a6425a2016-07-05 13:58:00 -070043ENABLE_SCHEDBOOST := true
44# We may want to enable this later
45# but right now it doesn't build.
46#ENABLE_SCHED_BOOST := true
Yongqin Liu416a19b2016-03-23 21:35:50 +080047
Trevor Drake4c3fead2017-02-14 01:19:09 +000048BOARD_SEPOLICY_DIRS += device/linaro/hikey/sepolicy
Dmitry Shmidt0f9fb2a2016-01-26 15:57:04 -080049
50ifeq ($(HOST_OS), linux)
51ifeq ($(TARGET_SYSTEMIMAGES_USE_SQUASHFS), true)
52BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := squashfs
53endif
54endif