blob: 11ffba86d70f50d55ead435f34cb8066522903f0 [file] [log] [blame]
Amit Pundir4e375822019-04-18 16:46:10 +05301# Copyright (C) 2013 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15
16# Primary Arch
17TARGET_ARCH := arm64
18TARGET_ARCH_VARIANT := armv8-2a
19TARGET_CPU_VARIANT := kryo385
20TARGET_CPU_ABI := arm64-v8a
21
22# Secondary Arch
23TARGET_2ND_ARCH := arm
24TARGET_2ND_ARCH_VARIANT := armv8-2a
25TARGET_2ND_CPU_VARIANT := kryo385
26TARGET_2ND_CPU_ABI := armeabi-v7a
27TARGET_2ND_CPU_ABI2 := armeabi
28
29TARGET_USES_64_BIT_BINDER := true
30
31TARGET_NO_BOOTLOADER := true
32TARGET_NO_KERNEL := true
33TARGET_NO_RECOVERY := true
34
35BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := ext4
36TARGET_USERIMAGES_USE_EXT4 := true
37TARGET_COPY_OUT_VENDOR := vendor
38BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4
39TARGET_COPY_OUT_SYSTEM_EXT := system_ext
40BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE := ext4
41BOARD_USES_METADATA_PARTITION := true
42# Super partition
43TARGET_USE_DYNAMIC_PARTITIONS := true
44BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT := true
45BOARD_SUPER_PARTITION_GROUPS := db_dynamic_partitions
46BOARD_DB_DYNAMIC_PARTITIONS_PARTITION_LIST := system vendor system_ext
47
48# Enable Treble
49PRODUCT_FULL_TREBLE := true
50BOARD_VNDK_VERSION := current
51
52# Mesa DRM hwcomposer
53BOARD_USES_DRM_HWCOMPOSER := true
54BOARD_GPU_DRIVERS := freedreno virgl
55TARGET_USES_HWC2 := true
56
57# WiFi
58WPA_SUPPLICANT_VERSION := VER_0_8_X
59BOARD_WPA_SUPPLICANT_DRIVER := NL80211
60BOARD_HOSTAPD_DRIVER := NL80211
61BOARD_WLAN_DEVICE := qcwcn
62BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE)
63
64# BT
65BOARD_HAVE_BLUETOOTH := true
66
67BOARD_SEPOLICY_DIRS += \
68 device/linaro/dragonboard/sepolicy \
69 system/bt/vendor_libs/linux/sepolicy
70
71DEVICE_MANIFEST_FILE := device/linaro/dragonboard/manifest.xml
72DEVICE_MATRIX_FILE := device/linaro/dragonboard/compatibility_matrix.xml
73
74# Enable dex pre-opt to speed up initial boot
75ifeq ($(HOST_OS),linux)
76 ifeq ($(WITH_DEXPREOPT),)
77 WITH_DEXPREOPT := true
78 WITH_DEXPREOPT_PIC := true
79 endif
80endif