mirror of
https://github.com/S3NEO/android_device_samsung_msm8226-common.git
synced 2024-11-06 21:55:45 +00:00
9cec898d4d
AOSP and mainline are going towards removing old 32-bit binder API support. 64-bit binder is 100% compatible with 32-bit kernel and userspace, so there is no reason for us to keep using the old solution anymore. We've switched to new API in our kernel, same thing should be applied to our userspace. Change-Id: I3c95bd7fbd023c5cb08e856b3a3889c03228e843
82 lines
2.3 KiB
Makefile
82 lines
2.3 KiB
Makefile
# Copyright (C) 2012 The CyanogenMod Project
|
|
# Copyright (C) 2017-2018 The LineageOS Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# inherit from qcom-common
|
|
-include device/samsung/qcom-common/BoardConfigCommon.mk
|
|
|
|
# Platform
|
|
TARGET_BOARD_PLATFORM := msm8974
|
|
TARGET_BOARD_PLATFORM_GPU := qcom-adreno330
|
|
|
|
# Architecture
|
|
TARGET_CPU_VARIANT := krait
|
|
|
|
# Audio
|
|
BOARD_USES_ALSA_AUDIO := true
|
|
|
|
# Binder API version
|
|
TARGET_USES_64_BIT_BINDER := true
|
|
|
|
# Bluetooth
|
|
BOARD_HAVE_BLUETOOTH := true
|
|
|
|
# Charger
|
|
BOARD_BATTERY_DEVICE_NAME := "battery"
|
|
BOARD_CHARGING_CMDLINE_NAME := "androidboot.bootchg"
|
|
BOARD_CHARGING_CMDLINE_VALUE := "true"
|
|
WITH_LINEAGE_CHARGER := false
|
|
|
|
# Dexpreopt
|
|
ifeq ($(HOST_OS),linux)
|
|
ifneq ($(TARGET_BUILD_VARIANT),eng)
|
|
ifeq ($(WITH_DEXPREOPT),)
|
|
WITH_DEXPREOPT := true
|
|
WITH_DEXPREOPT_BOOT_IMG_AND_SYSTEM_SERVER_ONLY := true
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
# Display
|
|
NUM_FRAMEBUFFER_SURFACE_BUFFERS := 3
|
|
OVERRIDE_RS_DRIVER:= libRSDriver_adreno.so
|
|
|
|
# Shader cache config options
|
|
# Maximum size of the GLES Shaders that can be cached for reuse.
|
|
# Increase the size if shaders of size greater than 12KB are used.
|
|
MAX_EGL_CACHE_KEY_SIZE := 12*1024
|
|
|
|
# Maximum GLES shader cache size for each app to store the compiled shader
|
|
# binaries. Decrease the size if RAM or Flash Storage size is a limitation
|
|
# of the device.
|
|
MAX_EGL_CACHE_SIZE := 2048*1024
|
|
|
|
# HIDL
|
|
DEVICE_MANIFEST_FILE := device/samsung/msm8974-common/manifest.xml
|
|
DEVICE_MATRIX_FILE := device/samsung/msm8974-common/compatibility_matrix.xml
|
|
|
|
# Init
|
|
TARGET_INIT_VENDOR_LIB := libinit_msm8974
|
|
TARGET_RECOVERY_DEVICE_MODULES := libinit_msm8974
|
|
|
|
# Power
|
|
TARGET_HAS_LEGACY_POWER_STATS := true
|
|
TARGET_HAS_NO_WIFI_STATS := true
|
|
TARGET_USES_INTERACTION_BOOST := true
|
|
|
|
# Time services
|
|
BOARD_USES_QC_TIME_SERVICES := true
|
|
|
|
# inherit from the proprietary version
|
|
-include vendor/samsung/msm8974-common/BoardConfigVendor.mk
|