BoardConfig.mk revision 00fdec8dc6385f9ca90c849d9c54fed4eda52119
1# config.mk
2#
3# Product-specific compile-time definitions.
4#
5
6# The generic product target doesn't have any hardware-specific pieces.
7TARGET_NO_BOOTLOADER := true
8TARGET_NO_KERNEL := true
9
10TARGET_ARCH := arm64
11TARGET_ARCH_VARIANT := armv8-a
12TARGET_CPU_ABI := arm64-v8a
13TARGET_CPU_ABI2 :=
14TARGET_CPU_VARIANT := generic
15
16TARGET_2ND_ARCH := arm
17TARGET_2ND_ARCH_VARIANT := armv7-a-neon
18TARGET_2ND_CPU_ABI := armeabi-v7a
19TARGET_2ND_CPU_ABI2 := armeabi
20TARGET_2ND_CPU_VARIANT := cortex-a9
21
22# Disable emulator for "make dist" until there is a 64-bit qemu kernel
23BUILD_EMULATOR := false
24
25
26MINIMAL_FONT_FOOTPRINT := true
27# Some framework code requires this to enable BT
28BOARD_HAVE_BLUETOOTH := true
29BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/generic/common/bluetooth
30
31USE_OPENGL_RENDERER := true
32
33BOARD_USE_LEGACY_UI := true
34
35# PDK does not use ext4 image, but it is added here to prevent build break.
36TARGET_USERIMAGES_USE_EXT4 := true
37BOARD_SYSTEMIMAGE_PARTITION_SIZE := 576716800
38BOARD_USERDATAIMAGE_PARTITION_SIZE := 419430400
39BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016
40BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
41BOARD_FLASH_BLOCK_SIZE := 512
42TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
43