blob: c717ec7cc428ae7367457b011f5abc55feb88a7f [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
Alexander Martinzbf2f33b2022-01-07 17:25:46 +010037TARGET_USERIMAGES_USE_F2FS := true
Amit Pundirc738b812019-06-19 16:13:49 +053038TARGET_COPY_OUT_VENDOR := vendor
39BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4
40
41# Enable Treble
Amit Pundir276a0552019-11-23 22:27:15 +053042PRODUCT_FULL_TREBLE := true
Amit Pundirc738b812019-06-19 16:13:49 +053043BOARD_VNDK_VERSION := current
44
45# Mesa DRM hwcomposer
46BOARD_USES_DRM_HWCOMPOSER := true
47BOARD_GPU_DRIVERS := freedreno virgl
48TARGET_USES_HWC2 := true
49
50# WiFi
51WPA_SUPPLICANT_VERSION := VER_0_8_X
52BOARD_WPA_SUPPLICANT_DRIVER := NL80211
53BOARD_HOSTAPD_DRIVER := NL80211
54BOARD_WLAN_DEVICE := qcwcn
55BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE)
56
57# BT
58BOARD_HAVE_BLUETOOTH := true
59
Caleb Connollyd3e01642021-10-29 21:17:02 +010060# TinyHAL
61BOARD_USES_TINYHAL_AUDIO := true
62
Amit Pundirc738b812019-06-19 16:13:49 +053063BOARD_SEPOLICY_DIRS += \
Caleb Connollyac639022021-08-06 10:21:00 +010064 device/generic/sdm845/sepolicy \
Amit Pundirc738b812019-06-19 16:13:49 +053065 system/bt/vendor_libs/linux/sepolicy
66
Caleb Connollyac639022021-08-06 10:21:00 +010067DEVICE_MANIFEST_FILE := device/generic/sdm845/manifest.xml
68DEVICE_MATRIX_FILE := device/generic/sdm845/compatibility_matrix.xml
Amit Pundirc738b812019-06-19 16:13:49 +053069
70# Enable dex pre-opt to speed up initial boot
71ifeq ($(HOST_OS),linux)
72 ifeq ($(WITH_DEXPREOPT),)
73 WITH_DEXPREOPT := true
74 WITH_DEXPREOPT_PIC := true
75 endif
76endif