-
Notifications
You must be signed in to change notification settings - Fork 34
/
i605.mk
executable file
·119 lines (98 loc) · 4.12 KB
/
i605.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
#
# Copyright (C) 2012 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.
#
# Include common makefile
$(call inherit-product, device/samsung/smdk4412-common/common.mk)
LOCAL_PATH := device/samsung/i605
# Overlay
DEVICE_PACKAGE_OVERLAYS += $(LOCAL_PATH)/overlay
# This device is xhdpi. However the platform doesn't
# currently contain all of the bitmaps at xhdpi density so
# we do this little trick to fall back to the hdpi version
# if the xhdpi doesn't exist.
PRODUCT_AAPT_CONFIG := normal hdpi xhdpi
PRODUCT_AAPT_PREF_CONFIG := xhdpi
# Init files
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/fstab.smdk4x12:root/fstab.smdk4x12 \
$(LOCAL_PATH)/init.smdk4x12.rc:root/init.smdk4x12.rc \
$(LOCAL_PATH)/init.smdk4x12.usb.rc:root/init.smdk4x12.usb.rc \
$(LOCAL_PATH)/ueventd.smdk4x12.rc:root/ueventd.smdk4x12.rc \
$(LOCAL_PATH)/init.bt.rc:root/init.bt.rc \
$(LOCAL_PATH)/lpm.rc:root/lpm.rc \
$(LOCAL_PATH)/ueventd.smdk4x12.rc:recovery/root/ueventd.smdk4x12.rc
# Audio
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/configs/audio_policy.conf:system/etc/audio_policy.conf \
$(LOCAL_PATH)/configs/tinyucm.conf:system/etc/tinyucm.conf \
$(LOCAL_PATH)/configs/default_gain.conf:system/etc/default_gain.conf \
$(LOCAL_PATH)/configs/Volume.db:system/etc/Volume.db \
$(LOCAL_PATH)/configs/audio_effects.conf:/system/etc/audio_effects.conf
# Gps
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/configs/gps.conf:system/etc/gps.conf
# Camera FW
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/configs/80cfw:system/etc/init.d/80cfw
# Product specific Packages
PRODUCT_PACKAGES += \
GalaxyNote2Settings \
SamsungServiceMode
# NFC
PRODUCT_PACKAGES += \
nfc.exynos4 \
libnfc \
libnfc_jni \
Nfc \
Tag
PRODUCT_COPY_FILES += \
packages/apps/Nfc/migrate_nfc.txt:system/etc/updatecmds/migrate_nfc.txt \
frameworks/base/nfc-extras/com.android.nfc_extras.xml:system/etc/permissions/com.android.nfc_extras.xml \
frameworks/native/data/etc/android.hardware.nfc.xml:system/etc/permissions/android.hardware.nfc.xml
# NFCEE access control
ifeq ($(TARGET_BUILD_VARIANT),user)
NFCEE_ACCESS_PATH := $(LOCAL_PATH)/configs/nfcee_access.xml
else
NFCEE_ACCESS_PATH := $(LOCAL_PATH)/configs/nfcee_access_debug.xml
endif
PRODUCT_COPY_FILES += \
$(NFCEE_ACCESS_PATH):system/etc/nfcee_access.xml
PRODUCT_PACKAGES += \
com.android.nfc_extras \
Stk \
libakm
$(call inherit-product, vendor/cm/config/nfc_enhanced.mk)
# RIL
PRODUCT_PROPERTY_OVERRIDES += \
ro.telephony.ril_class=SamsungCDMAQualcommRIL \
mobiledata.interfaces=pdp0,wlan0,gprs,ppp0,rmnet_usb0 \
ro.ril.hsxpa=1 \
ro.ril.gprsclass=10
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/configs/vzwapnlib.xml:system/etc/permissions/vzwapnlib.xml \
$(LOCAL_PATH)/configs/com.verizon.hardware.telephony.xml:system/etc/permissions/com.verizon.hardware.telephony.xml
# APN CONF to allow AT&T Usage
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/configs/apns-conf.xml:system/etc/apns-conf.xml
# These are the hardware-specific features
PRODUCT_COPY_FILES += \
frameworks/native/data/etc/handheld_core_hardware.xml:system/etc/permissions/handheld_core_hardware.xml \
frameworks/native/data/etc/android.hardware.sensor.barometer.xml:system/etc/permissions/android.hardware.sensor.barometer.xml \
frameworks/native/data/etc/android.hardware.telephony.cdma.xml:system/etc/permissions/android.hardware.telephony.cdma.xml
#Misc
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/configs/secomxregistry:/system/etc/secomxregistry \
$(LOCAL_PATH)/configs/security_profile.dat:/system/etc/security_profile.dat
$(call inherit-product-if-exists, vendor/samsung/i605/i605-vendor.mk)