# # 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 # Screen density PRODUCT_AAPT_CONFIG := normal PRODUCT_AAPT_PREF_CONFIG := xhdpi # Init files PRODUCT_COPY_FILES += \ $(LOCAL_PATH)/rootdir/fstab.smdk4x12:root/fstab.smdk4x12 \ $(LOCAL_PATH)/rootdir/init.target.rc:root/init.target.rc # Audio PRODUCT_COPY_FILES += \ $(LOCAL_PATH)/configs/tiny_hw.xml:system/etc/sound/t03g # Camera PRODUCT_PACKAGES += \ camera.smdk4x12 # f2fs PRODUCT_PACKAGES += \ fibmap.f2fs \ fsck.f2fs \ mkfs.f2fs # Busybox PRODUCT_PACKAGES += \ busybox # Gps PRODUCT_COPY_FILES += \ $(LOCAL_PATH)/configs/gps.xml:system/etc/gps.xml \ $(LOCAL_PATH)/gps_daemon.sh:system/bin/gps_daemon.sh # Product specific Packages PRODUCT_PACKAGES += \ DeviceSettings \ SamsungServiceMode # RIL & GPS fix PRODUCT_PACKAGES += \ ril-wrapper \ libdmitry # Additional apps PRODUCT_PACKAGES += \ OpenDelta # Sensors PRODUCT_PACKAGES += \ sensors.smdk4x12 # 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 $(call inherit-product, vendor/cm/config/nfc_enhanced.mk) # Samsung symbols PRODUCT_PACKAGES += \ libsamsung_symbols # RIL PRODUCT_PROPERTY_OVERRIDES += \ ro.telephony.ril_class=SamsungExynos4RIL \ mobiledata.interfaces=pdp0,gprs,ppp0,rmnet0,rmnet1 \ ro.telephony.call_ring.multiple=false \ ro.telephony.call_ring.delay=3000 # 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.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml # Allow tethering without provisioning app PRODUCT_PROPERTY_OVERRIDES += \ net.tethering.noprovisioning=true $(call inherit-product-if-exists, vendor/samsung/n7100/n7100-vendor.mk)