forked from AOSPA-legacy/android_device_lge_g3-common
-
Notifications
You must be signed in to change notification settings - Fork 2
/
BoardConfigCommon.mk
165 lines (138 loc) · 4.04 KB
/
BoardConfigCommon.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#
# Copyright (C) 2014 The CyanogenMod 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 the proprietary version
-include vendor/lge/g3-common/BoardConfigVendor.mk
LOCAL_PATH := device/lge/g3-common
TARGET_SPECIFIC_HEADER_PATH := $(LOCAL_PATH)/include
# Platform
TARGET_BOARD_PLATFORM := msm8974
TARGET_BOARD_PLATFORM_GPU := qcom-adreno330
# CPU
TARGET_ARCH := arm
TARGET_ARCH_VARIANT := armv7-a-neon
TARGET_CPU_ABI := armeabi-v7a
TARGET_CPU_ABI2 := armeabi
TARGET_CPU_VARIANT := krait
TARGET_USE_QCOM_BIONIC_OPTIMIZATION := true
# Bootloader
TARGET_BOOTLOADER_BOARD_NAME := MSM8974
TARGET_NO_BOOTLOADER := true
# Kernel
BOARD_CUSTOM_BOOTIMG := true
BOARD_CUSTOM_BOOTIMG_MK := $(LOCAL_PATH)/mkbootimg.mk
BOARD_KERNEL_CMDLINE := console=none androidboot.hardware=g3 user_debug=31 msm_rtb.filter=0x0 androidboot.bootdevice=msm_sdcc.1
BOARD_KERNEL_BASE := 0x00000000
BOARD_KERNEL_PAGESIZE := 2048
BOARD_KERNEL_SEPARATED_DT := true
BOARD_MKBOOTIMG_ARGS := --kernel_offset 0x0008000 --ramdisk_offset 0x2000000
TARGET_KERNEL_SOURCE := kernel/lge/g3
# Audio
BOARD_USES_ALSA_AUDIO := true
AUDIO_FEATURE_ENABLED_HWDEP_CAL := true
AUDIO_FEATURE_LOW_LATENCY_PRIMARY := true
# Bluetooth
BOARD_HAVE_BLUETOOTH := true
# Camera
USE_DEVICE_SPECIFIC_CAMERA := true
COMMON_GLOBAL_CFLAGS += -DLG_CAMERA_HARDWARE
COMMON_GLOBAL_CFLAGS += -DPROPERTY_PERMS_APPEND=' \
{ "persist.data.sensor_name", AID_CAMERA, 0 }, \
{ "camera.4k2k.enable", AID_MEDIA, 0 }, \
{ "persist.data.rear.minfps", AID_MEDIA, 0 }, \
{ "persist.data.front.minfps", AID_MEDIA, 0 }, \
'
# CMHW
BOARD_HARDWARE_CLASS := $(LOCAL_PATH)/cmhw/
# Crypto
TARGET_HW_DISK_ENCRYPTION := true
# Dex
ifeq ($(HOST_OS),linux)
ifeq ($(TARGET_BUILD_VARIANT),user)
ifeq ($(WITH_DEXPREOPT),)
WITH_DEXPREOPT := true
WITH_DEXPREOPT_COMP := false
endif
endif
endif
DONT_DEXPREOPT_PREBUILTS := true
# Display
TARGET_USES_C2D_COMPOSITION := true
TARGET_USES_ION := true
USE_OPENGL_RENDERER := true
MAX_EGL_CACHE_KEY_SIZE := 12*1024
MAX_EGL_CACHE_SIZE := 2048*1024
HAVE_ADRENO_SOURCE:= false
OVERRIDE_RS_DRIVER:= libRSDriver_adreno.so
# Fonts
EXTENDED_FONT_FOOTPRINT := true
# Lights
TARGET_PROVIDES_LIBLIGHT := true
# Offmode Charging
COMMON_GLOBAL_CFLAGS += \
-DBOARD_CHARGING_CMDLINE_NAME='"androidboot.mode"' \
-DBOARD_CHARGING_CMDLINE_VALUE='"chargerlogo"'
# Partitions
BOARD_FLASH_BLOCK_SIZE := 131072
# Power
TARGET_POWERHAL_VARIANT := qcom
# Qualcomm support
BOARD_USES_QCOM_HARDWARE := true
# Recovery
BOARD_HAS_NO_SELECT_BUTTON := true
BOARD_RECOVERY_SWIPE := true
BOARD_SUPPRESS_EMMC_WIPE := true
BOARD_USE_CUSTOM_RECOVERY_FONT := \"roboto_23x41.h\"
TARGET_RECOVERY_PIXEL_FORMAT := "RGBX_8888"
TARGET_USERIMAGES_USE_EXT4 := true
# Radio
BOARD_RIL_CLASS := ../../../device/lge/g3-common/ril/
TARGET_RELEASE_CPPFLAGS += -DNEEDS_LGE_RIL_SYMBOLS
# SELinux
include device/qcom/sepolicy/sepolicy.mk
BOARD_SEPOLICY_DIRS += device/lge/g3-common/sepolicy
BOARD_SEPOLICY_UNION += \
app.te \
device.te \
file.te \
file_contexts \
genfs_contexts \
hostapd.te \
init_shell.te \
kernel.te \
keystore.te \
lge_touch_sysfs.te \
mm-pp-daemon.te \
mm-qcamerad.te \
mpdecision.te \
nfc.te \
platform_app.te \
property.te \
property_contexts \
radio.te \
rmt_storage.te \
seapp_contexts \
sensors.te \
servicemanager.te \
sysinit.te \
system_app.te \
tee.te \
thermal-engine.te \
vibe_data_file.te \
ueventd.te \
vold.te \
wcnss_service.te \
wpa.te
# Time services
BOARD_USES_QC_TIME_SERVICES := true