forked from epic4g/android_device_amazon_blaze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
device_blaze.mk
105 lines (86 loc) · 3.73 KB
/
device_blaze.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
$(call inherit-product, $(SRC_TARGET_DIR)/product/languages_full.mk)
# The gps config appropriate for this device
$(call inherit-product, device/common/gps/gps_us_supl.mk)
$(call inherit-product-if-exists, vendor/amazon/otter/otter-vendor.mk)
DEVICE_PACKAGE_OVERLAYS += device/amazon/otter/overlay
PRODUCT_COPY_FILES += \
device/amazon/otter/root/init.omap4430.rc:root/init.omap4430.rc \
device/amazon/otter/root/ueventd.omap4430.rc:root/ueventd.omap4430.rc \
device/amazon/otter/root/ueventd.rc:root/ueventd.rc \
device/amazon/otter/root/init.rc:root/init.rc \
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/misc/vold.fstab:system/etc/vold.fstab
# Media Profile
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/misc/media_profiles.xml:system/etc/media_profiles.xml
PRODUCT_LOCALES += mdpi
# Place permission files
PRODUCT_COPY_FILES += \
frameworks/base/data/etc/handheld_core_hardware.xml:system/etc/permissions/handheld_core_hardware.xml \
frameworks/base/data/etc/android.hardware.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml \
frameworks/base/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardware.location.gps.xml \
frameworks/base/data/etc/android.hardware.wifi.xml:system/etc/permissions/android.hardware.wifi.xml \
frameworks/base/data/etc/android.hardware.sensor.proximity.xml:system/etc/permissions/android.hardware.sensor.proximity.xml \
frameworks/base/data/etc/android.hardware.sensor.light.xml:system/etc/permissions/android.hardware.sensor.light.xml \
frameworks/base/data/etc/android.hardware.sensor.accelerometer.xml:system/etc/permissions/android.hardware.sensor.accelerometer.xml \
frameworks/base/data/etc/android.hardware.touchscreen.multitouch.distinct.xml:system/etc/permissions/android.hardware.touchscreen.multitouch.distinct.xml \
frameworks/base/data/etc/android.hardware.camera.autofocus.xml:system/etc/permissions/android.hardware.camera.autofocus.xml \
frameworks/base/data/etc/android.software.sip.voip.xml:system/etc/permissions/android.software.sip.voip.xml \
device/amazon/blaze/misc/TICameraCameraProperties.xml:system/etc/TICameraCameraProperties.xml \
# we have enough storage space to hold precise GC data
PRODUCT_TAGS += dalvik.gc.type-precise
PRODUCT_PACKAGES += \
librs_jni \
hwcomposer.omap4 \
ti_omap4_ducati_bins \
libtimemmgr \
CameraOMAP4 \
Camera \
camera_test \
tiwlan.ini \
wlan_cu \
wlan_loader \
libCustomWifi \
alsa.omap4 \
wpa_supplicant.conf \
dhcpcd.conf \
hwcomposer.default \
hwcomposer.omap4 \
Usb \
boardidentity \
libboardidentity \
libboard_idJNI \
Board_id \
PRODUCT_PACKAGES := \
ti_omap4_ducati_bins \
libOMX_Core \
libOMX.TI.DUCATI1.VIDEO.DECODER \
PRODUCT_PROPERTY_OVERRIDES += \
ro.opengles.version=131072
ifeq ($(TARGET_PREBUILT_KERNEL),)
LOCAL_KERNEL := device/amazon/otter/kernel
else
LOCAL_KERNEL := $(TARGET_PREBUILT_KERNEL)
endif
PRODUCT_COPY_FILES += \
$(LOCAL_KERNEL):kernel
# Set property overrides
PRODUCT_PROPERTY_OVERRIDES += \
keyguard.no_require_sim=true \
ro.com.android.dateformat=MM-dd-yyyy \
ro.com.android.dataroaming=true \
ro.ril.hsxpa=1 \
ro.ril.gprsclass=10 \
ro.config.notification_sound=ro.config.alarm_alert=Alarm_Classic.ogg \
net.bt.name=Android \
dalvik.vm.stack-trace-file=/data/anr/traces.txt \
ro.opengles.version=131072 \
net.dns1=8.8.8.8 \
net.dns2=8.8.4.4 \
hwui.render_dirty_regions=false \
$(call inherit-product, build/target/product/full_base.mk)
PRODUCT_BUILD_PROP_OVERRIDES += BUILD_UTC_DATE=0
PRODUCT_NAME := cm_otter
PRODUCT_DEVICE := otter
$(call inherit-product, hardware/ti/omap4xxx/omap4.mk)
$(call inherit-product-if-exists, vendor/cm/config/common_full_tablet_wifionly.mk)