blob: 3c06926cbdaa86ecf1fc95a184d7a5bece04f414 [file] [log] [blame]
Amit Pundirc738b812019-06-19 16:13:49 +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 := false
33TARGET_NO_RECOVERY := true
34
Amit Pundir276a0552019-11-23 22:27:15 +053035BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := ext4
Amit Pundirc738b812019-06-19 16:13:49 +053036TARGET_USERIMAGES_USE_EXT4 := true
37TARGET_COPY_OUT_VENDOR := vendor
38BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4
39
40# Enable Treble
Amit Pundir276a0552019-11-23 22:27:15 +053041PRODUCT_FULL_TREBLE := true
Amit Pundirc738b812019-06-19 16:13:49 +053042BOARD_VNDK_VERSION := current
43
44# Mesa DRM hwcomposer
45BOARD_USES_DRM_HWCOMPOSER := true
46BOARD_GPU_DRIVERS := freedreno virgl
47TARGET_USES_HWC2 := true
48
49# WiFi
50WPA_SUPPLICANT_VERSION := VER_0_8_X
51BOARD_WPA_SUPPLICANT_DRIVER := NL80211
52BOARD_HOSTAPD_DRIVER := NL80211
53BOARD_WLAN_DEVICE := qcwcn
54BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE)
55
56# BT
57BOARD_HAVE_BLUETOOTH := true
58
59BOARD_SEPOLICY_DIRS += \
Caleb Connollyac639022021-08-06 10:21:00 +010060 device/generic/sdm845/sepolicy \
Amit Pundirc738b812019-06-19 16:13:49 +053061 system/bt/vendor_libs/linux/sepolicy
62
Caleb Connollyac639022021-08-06 10:21:00 +010063DEVICE_MANIFEST_FILE := device/generic/sdm845/manifest.xml
64DEVICE_MATRIX_FILE := device/generic/sdm845/compatibility_matrix.xml
Amit Pundirc738b812019-06-19 16:13:49 +053065
66# Enable dex pre-opt to speed up initial boot
67ifeq ($(HOST_OS),linux)
68 ifeq ($(WITH_DEXPREOPT),)
69 WITH_DEXPREOPT := true
70 WITH_DEXPREOPT_PIC := true
71 endif
72endif