1# 2# Copyright (C) 2015 The Android Open-Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17TARGET_ARCH := arm64 18TARGET_ARCH_VARIANT := armv8-a 19TARGET_CPU_ABI := arm64-v8a 20TARGET_CPU_ABI2 := 21TARGET_CPU_VARIANT := cortex-a53 22 23TARGET_2ND_ARCH := arm 24TARGET_2ND_ARCH_VARIANT := armv7-a-neon 25TARGET_2ND_CPU_ABI := armeabi-v7a 26TARGET_2ND_CPU_ABI2 := armeabi 27TARGET_2ND_CPU_VARIANT := cortex-a7 28 29ENABLE_CPUSETS := true 30 31TARGET_NO_BOOTLOADER := true 32 33BOARD_KERNEL_BASE := 0x00000000 34BOARD_KERNEL_PAGESIZE := 4096 35BOARD_KERNEL_TAGS_OFFSET := 0x01E00000 36BOARD_RAMDISK_OFFSET := 0x02000000 37 38BOARD_KERNEL_CMDLINE := console=ttyHSL0,115200,n8 androidboot.hardware=bullhead boot_cpus=0-5 39BOARD_KERNEL_CMDLINE += lpm_levels.sleep_disabled=1 msm_poweroff.download_mode=0 40 41BOARD_MKBOOTIMG_ARGS := --ramdisk_offset $(BOARD_RAMDISK_OFFSET) --tags_offset $(BOARD_KERNEL_TAGS_OFFSET) 42 43BOARD_USES_ALSA_AUDIO := true 44AUDIO_FEATURE_ENABLED_MULTI_VOICE_SESSIONS := true 45 46BOARD_HAVE_BLUETOOTH := true 47BOARD_HAVE_BLUETOOTH_QCOM := true 48BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := device/lge/bullhead/bluetooth 49BOARD_HAS_QCA_BT_ROME := true 50WCNSS_FILTER_USES_SIBS := true 51BOARD_BLUETOOTH_BDROID_HCILP_INCLUDED := false 52 53BOARD_HAS_QCOM_WLAN := true 54BOARD_WLAN_DEVICE := qcwcn 55WPA_SUPPLICANT_VERSION := VER_0_8_X 56BOARD_WPA_SUPPLICANT_DRIVER := NL80211 57BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE) 58BOARD_HOSTAPD_DRIVER := NL80211 59BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_$(BOARD_WLAN_DEVICE) 60WIFI_DRIVER_FW_PATH_STA := "sta" 61WIFI_DRIVER_FW_PATH_AP := "ap" 62 63BOARD_USES_SECURE_SERVICES := true 64 65#BOARD_HAS_FINGERPRINT_FPC := true 66 67TARGET_NO_RADIOIMAGE := true 68TARGET_BOARD_PLATFORM := msm8992 69TARGET_BOOTLOADER_BOARD_NAME := bullhead 70TARGET_BOARD_INFO_FILE := device/lge/bullhead/board-info.txt 71TARGET_NO_RPC := true 72 73BOARD_EGL_CFG := device/lge/bullhead/egl.cfg 74 75# Shader cache config options 76# Maximum size of the GLES Shaders that can be cached for reuse. 77# Increase the size if shaders of size greater than 12KB are used. 78MAX_EGL_CACHE_KEY_SIZE := 12*1024 79 80# Maximum GLES shader cache size for each app to store the compiled shader 81# binaries. Decrease the size if RAM or Flash Storage size is a limitation 82# of the device. 83MAX_EGL_CACHE_SIZE := 2048*1024 84 85USE_OPENGL_RENDERER := true 86TARGET_USES_ION := true 87TARGET_USES_C2D_COMPOSITION := true 88TARGET_FORCE_HWC_FOR_VIRTUAL_DISPLAYS := true 89MAX_VIRTUAL_DISPLAY_DIMENSION := 2048 90 91HAVE_ADRENO_SOURCE:= false 92 93OVERRIDE_RS_DRIVER:= libRSDriver_adreno.so 94 95# Enable dex-preoptimization to speed up first boot sequence 96ifeq ($(HOST_OS),linux) 97 ifneq ($(TARGET_BUILD_VARIANT),eng) 98 ifeq ($(WITH_DEXPREOPT),) 99 WITH_DEXPREOPT := true 100 endif 101 endif 102endif 103 104TARGET_USERIMAGES_USE_EXT4 := true 105BOARD_BOOTIMAGE_PARTITION_SIZE := 33554432 106BOARD_RECOVERYIMAGE_PARTITION_SIZE := 33554432 107BOARD_SYSTEMIMAGE_PARTITION_SIZE := 3221225472 108BOARD_USERDATAIMAGE_PARTITION_SIZE := 11649679360 109BOARD_CACHEIMAGE_PARTITION_SIZE := 100663296 110BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4 111BOARD_FLASH_BLOCK_SIZE := 131072 112 113# Build a separate vendor.img 114TARGET_COPY_OUT_VENDOR := vendor 115 116BOARD_HAL_STATIC_LIBRARIES := libdumpstate.bullhead 117 118TARGET_RECOVERY_FSTAB = device/lge/bullhead/fstab.bullhead 119 120TARGET_RELEASETOOLS_EXTENSIONS := device/lge/bullhead 121 122BOARD_CHARGER_ENABLE_SUSPEND := true 123 124BOARD_VENDOR_QCOM_GPS_LOC_API_HARDWARE := $(TARGET_BOARD_PLATFORM) 125BOARD_VENDOR_QCOM_LOC_PDK_FEATURE_SET := true 126 127BOARD_SEPOLICY_DIRS += \ 128 device/lge/bullhead/sepolicy 129 130TARGET_USES_64_BIT_BINDER := true 131 132TARGET_USES_AOSP := true 133TARGET_USES_INTERACTION_BOOST := true 134 135# Force camera module to be compiled only in 32-bit mode on 64-bit systems 136# Once camera module can run in the native mode of the system (either 137# 32-bit or 64-bit), the following line should be deleted 138BOARD_QTI_CAMERA_32BIT_ONLY := true 139 140#Enable peripheral manager 141TARGET_PER_MGR_ENABLED := true 142 143# Include an expanded selection of fonts 144EXTENDED_FONT_FOOTPRINT := true 145 146-include vendor/lge/bullhead/BoardConfigVendor.mk 147