Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +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 | |
Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +0530 | [diff] [blame] | 16 | TARGET_USES_64_BIT_BINDER := true |
| 17 | |
| 18 | TARGET_NO_BOOTLOADER := true |
| 19 | TARGET_NO_KERNEL := true |
| 20 | TARGET_NO_RECOVERY := true |
| 21 | |
| 22 | BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := ext4 |
| 23 | TARGET_USERIMAGES_USE_EXT4 := true |
| 24 | TARGET_COPY_OUT_VENDOR := vendor |
| 25 | BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4 |
| 26 | TARGET_COPY_OUT_SYSTEM_EXT := system_ext |
| 27 | BOARD_SYSTEM_EXTIMAGE_FILE_SYSTEM_TYPE := ext4 |
Yongqin Liu | 5566317 | 2020-03-28 11:30:25 +0800 | [diff] [blame] | 28 | TARGET_COPY_OUT_PRODUCT := product |
| 29 | BOARD_PRODUCTIMAGE_FILE_SYSTEM_TYPE := ext4 |
Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +0530 | [diff] [blame] | 30 | BOARD_USES_METADATA_PARTITION := true |
| 31 | # Super partition |
| 32 | TARGET_USE_DYNAMIC_PARTITIONS := true |
| 33 | BOARD_BUILD_SUPER_IMAGE_BY_DEFAULT := true |
| 34 | BOARD_SUPER_PARTITION_GROUPS := db_dynamic_partitions |
Yongqin Liu | 5566317 | 2020-03-28 11:30:25 +0800 | [diff] [blame] | 35 | BOARD_DB_DYNAMIC_PARTITIONS_PARTITION_LIST := system vendor system_ext product |
Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +0530 | [diff] [blame] | 36 | |
| 37 | # Enable Treble |
| 38 | PRODUCT_FULL_TREBLE := true |
| 39 | BOARD_VNDK_VERSION := current |
| 40 | |
| 41 | # Mesa DRM hwcomposer |
| 42 | BOARD_USES_DRM_HWCOMPOSER := true |
John Stultz | dd29e43 | 2021-10-06 22:32:11 +0000 | [diff] [blame] | 43 | BOARD_GPU_DRIVERS := freedreno |
Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +0530 | [diff] [blame] | 44 | TARGET_USES_HWC2 := true |
John Stultz | b101435 | 2022-02-01 06:32:16 +0000 | [diff] [blame] | 45 | |
| 46 | ifeq ($(TARGET_BUILD_MESA),true) |
John Stultz | dd29e43 | 2021-10-06 22:32:11 +0000 | [diff] [blame] | 47 | BOARD_MESA3D_USES_MESON_BUILD := true |
| 48 | BOARD_MESA3D_GALLIUM_DRIVERS := freedreno |
| 49 | BOARD_MESA3D_VULKAN_DRIVERS := freedreno |
John Stultz | b101435 | 2022-02-01 06:32:16 +0000 | [diff] [blame] | 50 | else |
| 51 | BOARD_USE_CUSTOMIZED_MESA := true |
| 52 | endif |
Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +0530 | [diff] [blame] | 53 | |
| 54 | # WiFi |
| 55 | WPA_SUPPLICANT_VERSION := VER_0_8_X |
| 56 | BOARD_WPA_SUPPLICANT_DRIVER := NL80211 |
| 57 | BOARD_HOSTAPD_DRIVER := NL80211 |
| 58 | BOARD_WLAN_DEVICE := qcwcn |
| 59 | BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE) |
| 60 | |
| 61 | # BT |
| 62 | BOARD_HAVE_BLUETOOTH := true |
| 63 | |
| 64 | BOARD_SEPOLICY_DIRS += \ |
| 65 | device/linaro/dragonboard/sepolicy \ |
| 66 | system/bt/vendor_libs/linux/sepolicy |
| 67 | |
Amit Pundir | 4e37582 | 2019-04-18 16:46:10 +0530 | [diff] [blame] | 68 | # Enable dex pre-opt to speed up initial boot |
| 69 | ifeq ($(HOST_OS),linux) |
| 70 | ifeq ($(WITH_DEXPREOPT),) |
| 71 | WITH_DEXPREOPT := true |
| 72 | WITH_DEXPREOPT_PIC := true |
| 73 | endif |
| 74 | endif |
Amit Pundir | fbd3fbb | 2021-11-18 14:59:17 +0530 | [diff] [blame] | 75 | |
| 76 | # Copy firmware files to ramdisk/vendor_ramdisk to workaround |
| 77 | # the dependency on FW_LOADER_USER_HELPER_FALLBACK kernel config |
| 78 | BUILD_BROKEN_ELF_PREBUILT_PRODUCT_COPY_FILES := true |