Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 1 | # 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 |
| 17 | TARGET_ARCH := arm64 |
| 18 | TARGET_ARCH_VARIANT := armv8-2a |
| 19 | TARGET_CPU_VARIANT := kryo385 |
| 20 | TARGET_CPU_ABI := arm64-v8a |
| 21 | |
| 22 | # Secondary Arch |
| 23 | TARGET_2ND_ARCH := arm |
| 24 | TARGET_2ND_ARCH_VARIANT := armv8-2a |
| 25 | TARGET_2ND_CPU_VARIANT := kryo385 |
| 26 | TARGET_2ND_CPU_ABI := armeabi-v7a |
| 27 | TARGET_2ND_CPU_ABI2 := armeabi |
| 28 | |
| 29 | TARGET_USES_64_BIT_BINDER := true |
| 30 | |
| 31 | TARGET_NO_BOOTLOADER := true |
| 32 | TARGET_NO_KERNEL := false |
| 33 | TARGET_NO_RECOVERY := true |
| 34 | |
Amit Pundir | 276a055 | 2019-11-23 22:27:15 +0530 | [diff] [blame] | 35 | BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := ext4 |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 36 | TARGET_USERIMAGES_USE_EXT4 := true |
Alexander Martinz | bf2f33b | 2022-01-07 17:25:46 +0100 | [diff] [blame^] | 37 | TARGET_USERIMAGES_USE_F2FS := true |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 38 | TARGET_COPY_OUT_VENDOR := vendor |
| 39 | BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4 |
| 40 | |
| 41 | # Enable Treble |
Amit Pundir | 276a055 | 2019-11-23 22:27:15 +0530 | [diff] [blame] | 42 | PRODUCT_FULL_TREBLE := true |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 43 | BOARD_VNDK_VERSION := current |
| 44 | |
| 45 | # Mesa DRM hwcomposer |
| 46 | BOARD_USES_DRM_HWCOMPOSER := true |
| 47 | BOARD_GPU_DRIVERS := freedreno virgl |
| 48 | TARGET_USES_HWC2 := true |
| 49 | |
| 50 | # WiFi |
| 51 | WPA_SUPPLICANT_VERSION := VER_0_8_X |
| 52 | BOARD_WPA_SUPPLICANT_DRIVER := NL80211 |
| 53 | BOARD_HOSTAPD_DRIVER := NL80211 |
| 54 | BOARD_WLAN_DEVICE := qcwcn |
| 55 | BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE) |
| 56 | |
| 57 | # BT |
| 58 | BOARD_HAVE_BLUETOOTH := true |
| 59 | |
Caleb Connolly | d3e0164 | 2021-10-29 21:17:02 +0100 | [diff] [blame] | 60 | # TinyHAL |
| 61 | BOARD_USES_TINYHAL_AUDIO := true |
| 62 | |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 63 | BOARD_SEPOLICY_DIRS += \ |
Caleb Connolly | ac63902 | 2021-08-06 10:21:00 +0100 | [diff] [blame] | 64 | device/generic/sdm845/sepolicy \ |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 65 | system/bt/vendor_libs/linux/sepolicy |
| 66 | |
Caleb Connolly | ac63902 | 2021-08-06 10:21:00 +0100 | [diff] [blame] | 67 | DEVICE_MANIFEST_FILE := device/generic/sdm845/manifest.xml |
| 68 | DEVICE_MATRIX_FILE := device/generic/sdm845/compatibility_matrix.xml |
Amit Pundir | c738b81 | 2019-06-19 16:13:49 +0530 | [diff] [blame] | 69 | |
| 70 | # Enable dex pre-opt to speed up initial boot |
| 71 | ifeq ($(HOST_OS),linux) |
| 72 | ifeq ($(WITH_DEXPREOPT),) |
| 73 | WITH_DEXPREOPT := true |
| 74 | WITH_DEXPREOPT_PIC := true |
| 75 | endif |
| 76 | endif |