summaryrefslogtreecommitdiffstats
path: root/n7100.mk
diff options
context:
space:
mode:
authorcodeworkx <codeworkx@cyanogenmod.com>2012-11-11 10:50:53 +0100
committercodeworkx <codeworkx@cyanogenmod.com>2012-11-11 10:53:27 +0100
commit66c680028251610d5864028099180a9b6bad80dc (patch)
tree6929aec5029885fb5b306d383dc8d94878b4d8cb /n7100.mk
downloaddevice_samsung_n7100-66c680028251610d5864028099180a9b6bad80dc.zip
device_samsung_n7100-66c680028251610d5864028099180a9b6bad80dc.tar.gz
device_samsung_n7100-66c680028251610d5864028099180a9b6bad80dc.tar.bz2
initial commit
based on nebkat's device tree
Diffstat (limited to 'n7100.mk')
-rw-r--r--n7100.mk66
1 files changed, 66 insertions, 0 deletions
diff --git a/n7100.mk b/n7100.mk
new file mode 100644
index 0000000..682cc56
--- /dev/null
+++ b/n7100.mk
@@ -0,0 +1,66 @@
+#
+# 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/n7100
+
+# 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)/ueventd.smdk4x12.rc:root/ueventd.smdk4x12.rc \
+ $(LOCAL_PATH)/ueventd.smdk4x12.rc:recovery/root/ueventd.smdk4x12.rc
+
+# Audio
+PRODUCT_COPY_FILES += \
+ $(LOCAL_PATH)/configs/tiny_hw.xml:system/etc/sound/t03g
+
+# Gps
+PRODUCT_COPY_FILES += \
+ $(LOCAL_PATH)/configs/gps.xml:system/etc/gps.xml
+
+# Product specific Packages
+PRODUCT_PACKAGES += \
+ GalaxyNote2Settings \
+ libsecril-client \
+ libsecril-client-sap \
+ SamsungServiceMode
+
+# RIL
+PRODUCT_PROPERTY_OVERRIDES += \
+ ro.telephony.ril_class=Smdk4210RIL \
+ mobiledata.interfaces=pdp0,wlan0,gprs,ppp0 \
+ ro.ril.hsxpa=1 \
+ ro.ril.gprsclass=10
+
+# These are the hardware-specific features
+PRODUCT_COPY_FILES += \
+ frameworks/native/data/etc/android.hardware.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml
+
+
+$(call inherit-product-if-exists, vendor/samsung/n7100/n7100-vendor.mk)