blob: 880cf729496315fc97d90f719361ee17bf6cca39 [file] [log] [blame]
Alberto970ceb8342015-01-02 14:43:15 +01001PRODUCT_BUILD_PROP_OVERRIDES += BUILD_UTC_DATE=0
2
3PRODUCT_PROPERTY_OVERRIDES += \
4 keyguard.no_require_sim=true \
5 ro.com.google.clientidbase=android-google \
6 ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html \
7 ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html \
8 ro.com.android.wifi-watchlist=GoogleGuest \
9 ro.setupwizard.enterprise_mode=1 \
10 ro.com.android.dateformat=MM-dd-yyyy \
11 ro.com.android.dataroaming=false
12
13PRODUCT_PROPERTY_OVERRIDES += \
14 ro.build.selinux=1
15
16# Thank you, please drive thru!
17PRODUCT_PROPERTY_OVERRIDES += persist.sys.dun.override=0
18
19# Backup Tool
20PRODUCT_COPY_FILES += \
Tom Marshall97749de2014-12-12 11:56:04 -080021 vendor/aosp/prebuilt/common/bin/backuptool.sh:install/bin/backuptool.sh \
22 vendor/aosp/prebuilt/common/bin/backuptool.functions:install/bin/backuptool.functions \
Alberto970ceb8342015-01-02 14:43:15 +010023 vendor/aosp/prebuilt/common/bin/50-base.sh:system/addon.d/50-base.sh \
24 vendor/aosp/prebuilt/common/bin/blacklist:system/addon.d/blacklist
25
Alberto970ceb8342015-01-02 14:43:15 +010026# Bootanimation
27PRODUCT_COPY_FILES += \
28 vendor/aosp/prebuilt/common/media/bootanimation.zip:system/media/bootanimation.zip
29
30# init.d support
31PRODUCT_COPY_FILES += \
32 vendor/aosp/prebuilt/common/bin/sysinit:system/bin/sysinit \
33 vendor/aosp/prebuilt/common/etc/init.d/00banner:system/etc/init.d/00banner \
34 vendor/aosp/prebuilt/common/etc/init.d/90userinit:system/etc/init.d/90userinit
35
36# Init file
37PRODUCT_COPY_FILES += \
Meninblack007e54ceba2015-11-29 07:03:02 -050038 vendor/aosp/prebuilt/common/etc/init.local.rc:root/init.local.rc
Alberto970ceb8342015-01-02 14:43:15 +010039
40# Bring in camera effects
41PRODUCT_COPY_FILES += \
42 vendor/aosp/prebuilt/common/media/LMprec_508.emd:system/media/LMprec_508.emd \
43 vendor/aosp/prebuilt/common/media/PFFprec_600.emd:system/media/PFFprec_600.emd
44
45# Enable SIP+VoIP on all targets
46PRODUCT_COPY_FILES += \
47 frameworks/native/data/etc/android.software.sip.voip.xml:system/etc/permissions/android.software.sip.voip.xml
48
49# Enable wireless Xbox 360 controller support
50PRODUCT_COPY_FILES += \
51 frameworks/base/data/keyboards/Vendor_045e_Product_028e.kl:system/usr/keylayout/Vendor_045e_Product_0719.kl
52
53# Misc packages
54PRODUCT_PACKAGES += \
55 BluetoothExt \
Meninblack007f743f1d2015-11-29 07:05:27 -050056 Browser2 \
Ricardo Cerqueira2535a2e2015-01-04 01:55:24 +000057 libemoji \
Alberto979beac432015-09-09 14:34:57 +020058 libsepol \
59 e2fsck \
60 mke2fs \
61 tune2fs \
62 bash \
63 nano \
64 htop \
65 powertop \
66 lsof \
67 mount.exfat \
68 fsck.exfat \
69 mkfs.exfat \
70 mkfs.f2fs \
71 fsck.f2fs \
72 fibmap.f2fs \
73 ntfsfix \
74 ntfs-3g \
75 gdbserver \
76 micro_bench \
77 oprofiled \
78 sqlite3 \
79 strace \
Ricardo Cerqueira2535a2e2015-01-04 01:55:24 +000080 Terminal
Alberto970ceb8342015-01-02 14:43:15 +010081
82# Stagefright FFMPEG plugin
83PRODUCT_PACKAGES += \
Steve Kondikd10712b2015-07-08 09:53:12 -070084 libffmpeg_extractor \
85 libffmpeg_omx \
Steve Kondikd1ac4dd2015-06-18 02:22:35 -070086 media_codecs_ffmpeg.xml
Alberto970ceb8342015-01-02 14:43:15 +010087
Steve Kondikd10712b2015-07-08 09:53:12 -070088PRODUCT_PROPERTY_OVERRIDES += \
89 media.sf.omx-plugin=libffmpeg_omx.so \
90 media.sf.extractor-plugin=libffmpeg_extractor.so
91
Alberto970ceb8342015-01-02 14:43:15 +010092# Telephony packages
93PRODUCT_PACKAGES += \
Meninblack00715541392015-11-29 07:04:12 -050094 messaging \
Alberto970ceb8342015-01-02 14:43:15 +010095 CellBroadcastReceiver \
Alberto972f8ecb62015-01-30 12:38:43 +010096 Stk
Alberto970ceb8342015-01-02 14:43:15 +010097
98# Mms depends on SoundRecorder for recorded audio messages
99PRODUCT_PACKAGES += \
100 SoundRecorder
101
102# World APN list
103PRODUCT_COPY_FILES += \
104 vendor/aosp/prebuilt/common/etc/apns-conf.xml:system/etc/apns-conf.xml
105
Alberto970ceb8342015-01-02 14:43:15 +0100106# Selective SPN list for operator number who has the problem.
107PRODUCT_COPY_FILES += \
108 vendor/aosp/prebuilt/common/etc/selective-spn-conf.xml:system/etc/selective-spn-conf.xml
109
110# Overlays & Include LatinIME dictionaries
111PRODUCT_PACKAGE_OVERLAYS += \
112 vendor/aosp/overlay/common \
113 vendor/aosp/overlay/dictionaries
114
115# by default, do not update the recovery with system updates
116PRODUCT_PROPERTY_OVERRIDES += persist.sys.recovery_update=false
117
Chirayu Desai9819bc92013-03-20 16:17:17 +0530118ifneq ($(TARGET_BUILD_VARIANT),eng)
Chirayu Desai6efc7f82013-02-15 21:16:39 +0530119# Enable ADB authentication
120ADDITIONAL_DEFAULT_PROPERTIES += ro.adb.secure=1
Chirayu Desai9819bc92013-03-20 16:17:17 +0530121endif
Chirayu Desai6efc7f82013-02-15 21:16:39 +0530122
Alberto970ceb8342015-01-02 14:43:15 +0100123$(call inherit-product-if-exists, vendor/extra/product.mk)