forked from CyanogenMod/android_device_samsung_d2-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
d2-common.mk
111 lines (92 loc) · 3.22 KB
/
d2-common.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
#
# Copyright (C) 2011 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.
#
$(call inherit-product, $(SRC_TARGET_DIR)/product/languages_full.mk)
## (2) Also get non-open-source specific aspects if available
$(call inherit-product-if-exists, vendor/samsung/d2-common/d2-common-vendor.mk)
## overlays
DEVICE_PACKAGE_OVERLAYS += device/samsung/d2-common/overlay
# Device uses high-density artwork where available
PRODUCT_AAPT_CONFIG := normal hdpi xhdpi
PRODUCT_AAPT_PREF_CONFIG := xhdpi
# Boot animation
TARGET_SCREEN_HEIGHT := 1280
TARGET_SCREEN_WIDTH := 720
# Audio configuration
PRODUCT_COPY_FILES += \
device/samsung/d2-common/audio/snd_soc_msm_2x:system/etc/snd_soc_msm/snd_soc_msm_2x \
device/samsung/d2-common/audio/audio_policy.conf:system/etc/audio_policy.conf \
device/samsung/d2-common/audio/audio_effects.conf:system/etc/audio_effects.conf
# Ramdisk
PRODUCT_PACKAGES += \
fstab.qcom \
initlogo.rle \
init.bt.rc \
init.qcom.rc \
init.qcom.usb.rc \
init.target.rc \
ueventd.qcom.rc
# Torch
PRODUCT_PACKAGES += Torch
# Vold configuration
PRODUCT_COPY_FILES += \
device/samsung/d2-common/vold.fstab:system/etc/vold.fstab
# Wifi
PRODUCT_PACKAGES += \
libnetcmdiface
# Set default USB interface
PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
persist.sys.usb.config=mtp
# Lights
PRODUCT_PACKAGES += lights.msm8960
# Increase the HWUI font cache since we have tons of RAM
PRODUCT_PROPERTY_OVERRIDES += \
ro.hwui.text_cache_width=2048
# QC Perf
PRODUCT_PROPERTY_OVERRIDES += \
ro.vendor.extension_library=/system/lib/libqc-opt.so
# QRNGD
PRODUCT_PACKAGES += qrngd
#common build.props
PRODUCT_PROPERTY_OVERRIDES += \
ro.ril.hsxpa=1 \
ro.ril.gprsclass=10 \
persist.radio.add_power_save=1 \
persist.radio.snapshot_disabled=1 \
com.qc.hardware=true \
persist.radio.apm_sim_not_pwdn=1 \
ro.telephony.call_ring.multiple=0 \
ro.sf.lcd_density=320 \
ro.ril.transmitpower=true \
ro.opengles.version=131072 \
persist.audio.fluence.mode=endfire \
persist.audio.vr.enable=false \
persist.audio.handset.mic=digital \
persist.audio.speaker.location=high \
ro.qc.sdk.audio.fluencetype=fluence \
persist.timed.enable=true \
ro.emmc.sdcard.partition=17 \
ro.use_data_netmgrd=true \
persist.data_netmgrd_nint=16 \
lpa.decode=true \
rild.libpath=/system/lib/libril-qc-qmi-1.so \
ril.subscription.types=NV,RUIM \
ro.config.svlte1x=true \
ro.cdma.subscribe_on_ruim_ready=true \
persist.radio.no_wait_for_card=1 \
keyguard.no_require_sim=true
# common msm8960
$(call inherit-product, device/samsung/msm8960-common/msm8960.mk)
$(call inherit-product, frameworks/native/build/phone-xhdpi-2048-dalvik-heap.mk)