blob: 038baa1a81793384a51f987b409d1758d0b51094 [file] [log] [blame]
Ricardo Cerqueira6ed03ff2011-11-28 16:37:47 +00001PRODUCT_BRAND ?= cyanogenmod
2
Ricardo Cerqueira5ab6b932013-07-02 10:42:12 +01003-include vendor/cm-priv/keys.mk
Koushik Dutta82d0fda2013-02-28 10:33:25 -08004SUPERUSER_EMBEDDED := true
Koushik Dutta9d15c7a2013-03-04 00:37:02 -08005SUPERUSER_PACKAGE_PREFIX := com.android.settings.cyanogenmod.superuser
Koushik Dutta82d0fda2013-02-28 10:33:25 -08006
Steve Kondikba1ca332012-08-21 02:18:40 -07007# To deal with CM9 specifications
8# TODO: remove once all devices have been switched
Steve Kondika8945752012-03-14 00:10:33 -07009ifneq ($(TARGET_BOOTANIMATION_NAME),)
Steve Kondikba1ca332012-08-21 02:18:40 -070010TARGET_SCREEN_DIMENSIONS := $(subst -, $(space), $(subst x, $(space), $(TARGET_BOOTANIMATION_NAME)))
11ifeq ($(TARGET_SCREEN_WIDTH),)
12TARGET_SCREEN_WIDTH := $(word 2, $(TARGET_SCREEN_DIMENSIONS))
13endif
14ifeq ($(TARGET_SCREEN_HEIGHT),)
15TARGET_SCREEN_HEIGHT := $(word 3, $(TARGET_SCREEN_DIMENSIONS))
16endif
17endif
18
19ifneq ($(TARGET_SCREEN_WIDTH) $(TARGET_SCREEN_HEIGHT),$(space))
20
21# clear TARGET_BOOTANIMATION_NAME in case it was set for CM9 purposes
22TARGET_BOOTANIMATION_NAME :=
23
24# determine the smaller dimension
25TARGET_BOOTANIMATION_SIZE := $(shell \
26 if [ $(TARGET_SCREEN_WIDTH) -lt $(TARGET_SCREEN_HEIGHT) ]; then \
27 echo $(TARGET_SCREEN_WIDTH); \
28 else \
29 echo $(TARGET_SCREEN_HEIGHT); \
30 fi )
31
32# get a sorted list of the sizes
33bootanimation_sizes := $(subst .zip,, $(shell ls vendor/cm/prebuilt/common/bootanimation))
34bootanimation_sizes := $(shell echo -e $(subst $(space),'\n',$(bootanimation_sizes)) | sort -rn)
35
36# find the appropriate size and set
37define check_and_set_bootanimation
38$(eval TARGET_BOOTANIMATION_NAME := $(shell \
39 if [ -z "$(TARGET_BOOTANIMATION_NAME)" ]; then
40 if [ $(1) -le $(TARGET_BOOTANIMATION_SIZE) ]; then \
41 echo $(1); \
42 exit 0; \
43 fi;
44 fi;
45 echo $(TARGET_BOOTANIMATION_NAME); ))
46endef
47$(foreach size,$(bootanimation_sizes), $(call check_and_set_bootanimation,$(size)))
48
William Roberts4256e662013-08-21 13:43:54 -070049PRODUCT_BOOTANIMATION := vendor/cm/prebuilt/common/bootanimation/$(TARGET_BOOTANIMATION_NAME).zip
Steve Kondika8945752012-03-14 00:10:33 -070050endif
51
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +000052ifdef CM_NIGHTLY
53PRODUCT_PROPERTY_OVERRIDES += \
54 ro.rommanager.developerid=cyanogenmodnightly
55else
56PRODUCT_PROPERTY_OVERRIDES += \
57 ro.rommanager.developerid=cyanogenmod
58endif
59
60PRODUCT_BUILD_PROP_OVERRIDES += BUILD_UTC_DATE=0
61
62PRODUCT_PROPERTY_OVERRIDES += \
63 keyguard.no_require_sim=true \
64 ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html \
65 ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html \
66 ro.com.google.clientidbase=android-google \
67 ro.com.android.wifi-watchlist=GoogleGuest \
68 ro.setupwizard.enterprise_mode=1 \
69 ro.com.android.dateformat=MM-dd-yyyy \
70 ro.com.android.dataroaming=false
71
Ricardo Cerqueiraf3835632013-08-04 13:25:00 +010072PRODUCT_PROPERTY_OVERRIDES += \
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +010073 ro.build.selinux=1
Ricardo Cerqueiraf3835632013-08-04 13:25:00 +010074
Michael Bestas1f2a3d42013-10-11 23:25:32 +030075# Disable excessive dalvik debug messages
76PRODUCT_PROPERTY_OVERRIDES += \
77 dalvik.vm.debug.alloc=0
78
Chirayu Desai88401db2013-03-20 16:17:17 +053079ifneq ($(TARGET_BUILD_VARIANT),eng)
Chirayu Desai59df3632013-02-15 21:16:39 +053080# Enable ADB authentication
81ADDITIONAL_DEFAULT_PROPERTIES += ro.adb.secure=1
Chirayu Desai88401db2013-03-20 16:17:17 +053082endif
Chirayu Desai59df3632013-02-15 21:16:39 +053083
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +000084# Copy over the changelog to the device
85PRODUCT_COPY_FILES += \
86 vendor/cm/CHANGELOG.mkdn:system/etc/CHANGELOG-CM.txt
87
Warren Togamib1637c82012-03-03 22:37:42 -100088# Backup Tool
Steve Kondikbc68cf22013-10-06 22:41:52 -070089ifneq ($(WITH_GMS),true)
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +000090PRODUCT_COPY_FILES += \
Warren Togamib1637c82012-03-03 22:37:42 -100091 vendor/cm/prebuilt/common/bin/backuptool.sh:system/bin/backuptool.sh \
92 vendor/cm/prebuilt/common/bin/backuptool.functions:system/bin/backuptool.functions \
Ricardo Cerqueira129989b2012-12-19 01:11:21 +000093 vendor/cm/prebuilt/common/bin/50-cm.sh:system/addon.d/50-cm.sh \
94 vendor/cm/prebuilt/common/bin/blacklist:system/addon.d/blacklist
Steve Kondikbc68cf22013-10-06 22:41:52 -070095endif
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +000096
Steve Kondik485527d2011-12-20 12:14:24 -080097# init.d support
98PRODUCT_COPY_FILES += \
99 vendor/cm/prebuilt/common/etc/init.d/00banner:system/etc/init.d/00banner \
100 vendor/cm/prebuilt/common/bin/sysinit:system/bin/sysinit
101
James Sullinseb7799c2012-04-05 20:18:18 -0500102# userinit support
103PRODUCT_COPY_FILES += \
104 vendor/cm/prebuilt/common/etc/init.d/90userinit:system/etc/init.d/90userinit
105
Ricardo Cerqueirad2d1a7f2013-07-17 16:45:20 +0100106# SELinux filesystem labels
107PRODUCT_COPY_FILES += \
108 vendor/cm/prebuilt/common/etc/init.d/50selinuxrelabel:system/etc/init.d/50selinuxrelabel
109
Ricardo Cerqueira8f412cb2012-10-18 16:38:25 +0100110# CM-specific init file
111PRODUCT_COPY_FILES += \
112 vendor/cm/prebuilt/common/etc/init.local.rc:root/init.cm.rc
113
Steve Kondik485527d2011-12-20 12:14:24 -0800114# Compcache/Zram support
115PRODUCT_COPY_FILES += \
Steve Kondik485527d2011-12-20 12:14:24 -0800116 vendor/cm/prebuilt/common/bin/compcache:system/bin/compcache \
117 vendor/cm/prebuilt/common/bin/handle_compcache:system/bin/handle_compcache
118
Adam Fardendb2438b2012-03-07 14:34:38 +0100119# Bring in camera effects
fitsnugly407b3992012-01-14 18:50:25 -0500120PRODUCT_COPY_FILES += \
fitsnuglyc1c6ce22012-01-12 01:10:39 -0500121 vendor/cm/prebuilt/common/media/LMprec_508.emd:system/media/LMprec_508.emd \
122 vendor/cm/prebuilt/common/media/PFFprec_600.emd:system/media/PFFprec_600.emd
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +0000123
124# Enable SIP+VoIP on all targets
125PRODUCT_COPY_FILES += \
Ricardo Cerqueira3ff9b6f2012-07-11 11:21:50 +0100126 frameworks/native/data/etc/android.software.sip.voip.xml:system/etc/permissions/android.software.sip.voip.xml
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +0000127
sleeplessninja918a7ea2013-01-30 14:45:20 -0600128# Enable wireless Xbox 360 controller support
129PRODUCT_COPY_FILES += \
130 frameworks/base/data/keyboards/Vendor_045e_Product_028e.kl:system/usr/keylayout/Vendor_045e_Product_0719.kl
131
Steve Kondike0c12da2012-03-25 17:21:32 -0700132# This is CM!
133PRODUCT_COPY_FILES += \
134 vendor/cm/config/permissions/com.cyanogenmod.android.xml:system/etc/permissions/com.cyanogenmod.android.xml
135
Mike Kasick511d6092012-01-26 17:54:31 -0500136# Don't export PS1 in /system/etc/mkshrc.
137PRODUCT_COPY_FILES += \
138 vendor/cm/prebuilt/common/etc/mkshrc:system/etc/mkshrc
139
Ricardo Cerqueira9f75d842012-05-04 10:15:56 +0100140# T-Mobile theme engine
141include vendor/cm/config/themes_common.mk
142
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +0000143# Required CM packages
144PRODUCT_PACKAGES += \
Steve Kondike0c297d2011-12-20 16:16:01 -0800145 Development \
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +0000146 LatinIME \
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +0100147 BluetoothExt
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +0000148
149# Optional CM packages
150PRODUCT_PACKAGES += \
Koushik Dutta8475d722013-07-21 09:34:19 -0700151 VoicePlus \
Koushik Dutta74d3bad2011-11-27 13:00:30 -0800152 VoiceDialer \
Warren Togami5960a702012-02-22 09:22:42 -1000153 SoundRecorder \
Andreas Schneidera69dc022012-08-28 12:21:46 +0200154 Basic
Koushik Dutta8387c322011-11-26 17:31:19 -0800155
Steve Kondik04a49412011-12-14 14:02:19 -0800156# Custom CM packages
157PRODUCT_PACKAGES += \
nebkat0acffd52011-12-22 16:47:22 +0000158 Trebuchet \
Steve Kondik04a49412011-12-14 14:02:19 -0800159 DSPManager \
Steve Kondika25e4e02011-12-14 22:27:07 -0800160 libcyanogen-dsp \
Steve Kondikfcc16102012-05-05 16:23:24 -0700161 audio_effects.conf \
Ricardo Cerqueira3dc43542012-05-25 04:31:26 +0400162 CMWallpapers \
Ricardo Cerqueira2526fef2012-09-29 17:17:45 +0100163 Apollo \
DvTonderf0074032012-12-30 13:37:40 -0500164 CMFileManager \
Giulio Cerverab6f18ff2013-08-20 12:53:56 +0200165 LockClock \
166 CMAccount
Steve Kondik04a49412011-12-14 14:02:19 -0800167
Ricardo Cerqueira17809562013-08-08 00:49:44 +0100168# CM Hardware Abstraction Framework
169PRODUCT_PACKAGES += \
170 org.cyanogenmod.hardware \
171 org.cyanogenmod.hardware.xml
172
Chirayu Desai7a7185b2013-03-28 11:44:05 +0530173PRODUCT_PACKAGES += \
174 CellBroadcastReceiver
175
Sebastian Schmidt7d5de0c2012-04-15 11:39:25 +0200176# Extra tools in CM
177PRODUCT_PACKAGES += \
Steve Kondik08980282012-07-05 01:20:47 -0700178 openvpn \
179 e2fsck \
180 mke2fs \
Steve Kondik1949eb52012-09-20 17:09:07 -0700181 tune2fs \
182 bash \
183 vim \
184 nano \
185 htop \
186 powertop \
Steve Kondik2978e202013-07-06 04:07:56 -0700187 lsof \
188 mount.exfat \
189 fsck.exfat \
190 mkfs.exfat \
191 ntfsfix \
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +0100192 ntfs-3g \
193 gdbserver \
194 micro_bench \
195 oprofiled \
196 procmem \
197 procrank \
198 sqlite3 \
199 strace
Sebastian Schmidt7d5de0c2012-04-15 11:39:25 +0200200
Chirayu Desai8636d672012-07-19 16:04:25 +0530201# Openssh
202PRODUCT_PACKAGES += \
203 scp \
204 sftp \
205 ssh \
206 sshd \
207 sshd_config \
208 ssh-keygen \
Chirayu Desai4bacf672012-08-19 17:30:04 +0530209 start-ssh
210
211# rsync
212PRODUCT_PACKAGES += \
213 rsync
Chirayu Desai8636d672012-07-19 16:04:25 +0530214
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +0100215# These packages are excluded from user builds
216ifneq ($(TARGET_BUILD_VARIANT),user)
217
218PRODUCT_PACKAGES += \
219 CMUpdater \
220 Superuser \
221 su
222
223# Terminal Emulator
224PRODUCT_COPY_FILES += \
225 vendor/cm/proprietary/Term.apk:system/app/Term.apk \
226 vendor/cm/proprietary/lib/armeabi/libjackpal-androidterm4.so:system/lib/libjackpal-androidterm4.so
227
228PRODUCT_PROPERTY_OVERRIDES += \
229 persist.sys.root_access=1
230else
231
232PRODUCT_PACKAGES += \
233 CMFota
234
235PRODUCT_PROPERTY_OVERRIDES += \
236 persist.sys.root_access=0
237
238endif
239
Koushik Dutta45e65982013-08-12 15:41:14 -0700240# easy way to extend to add more packages
241-include vendor/extra/product.mk
242
Koushik Duttac6f7a492011-11-28 07:44:23 -0800243PRODUCT_PACKAGE_OVERLAYS += vendor/cm/overlay/dictionaries
Steve Kondik254db262011-12-20 15:02:07 -0800244PRODUCT_PACKAGE_OVERLAYS += vendor/cm/overlay/common
Koushik Duttac6f7a492011-11-28 07:44:23 -0800245
Ricardo Cerqueiraed3e91e2012-07-11 16:05:12 +0100246PRODUCT_VERSION_MAJOR = 10
Ricardo Cerqueira154d0292013-07-25 01:12:16 +0100247PRODUCT_VERSION_MINOR = 2
248PRODUCT_VERSION_MAINTENANCE = 0-RC0
Koushik Duttac6f7a492011-11-28 07:44:23 -0800249
Ricardo Cerqueira554f3702013-09-24 17:58:56 +0100250# Set CM_BUILDTYPE from the env RELEASE_TYPE, for jenkins compat
251
252ifndef CM_BUILDTYPE
253 ifdef RELEASE_TYPE
254 # Starting with "CM_" is optional
255 RELEASE_TYPE := $(shell echo $(RELEASE_TYPE) | sed -e 's|^CM_||g')
256 CM_BUILDTYPE := $(RELEASE_TYPE)
257 endif
Warren Togami2128e2f2012-05-06 19:49:33 -1000258endif
Ricardo Cerqueira554f3702013-09-24 17:58:56 +0100259
260# Filter out random types, so it'll reset to UNOFFICIAL
261ifeq ($(filter RELEASE NIGHTLY SNAPSHOT EXPERIMENTAL,$(CM_BUILDTYPE)),)
262 CM_BUILDTYPE :=
Warren Togami2128e2f2012-05-06 19:49:33 -1000263endif
264
Ricardo Cerqueirad8e76662012-06-08 11:08:15 +0100265ifdef CM_BUILDTYPE
Ricardo Cerqueira554f3702013-09-24 17:58:56 +0100266 ifneq ($(CM_BUILDTYPE), SNAPSHOT)
267 ifdef CM_EXTRAVERSION
268 # Force build type to EXPERIMENTAL
269 CM_BUILDTYPE := EXPERIMENTAL
270 # Remove leading dash from CM_EXTRAVERSION
271 CM_EXTRAVERSION := $(shell echo $(CM_EXTRAVERSION) | sed 's/-//')
272 # Add leading dash to CM_EXTRAVERSION
273 CM_EXTRAVERSION := -$(CM_EXTRAVERSION)
274 endif
275 else
276 ifndef CM_EXTRAVERSION
277 # Force build type to EXPERIMENTAL, SNAPSHOT mandates a tag
278 CM_BUILDTYPE := EXPERIMENTAL
279 else
280 # Remove leading dash from CM_EXTRAVERSION
281 CM_EXTRAVERSION := $(shell echo $(CM_EXTRAVERSION) | sed 's/-//')
282 # Add leading dash to CM_EXTRAVERSION
283 CM_EXTRAVERSION := -$(CM_EXTRAVERSION)
284 endif
Ricardo Cerqueirad8e76662012-06-08 11:08:15 +0100285 endif
286else
287 # If CM_BUILDTYPE is not defined, set to UNOFFICIAL
Warren Togami2128e2f2012-05-06 19:49:33 -1000288 CM_BUILDTYPE := UNOFFICIAL
Ricardo Cerqueirad8e76662012-06-08 11:08:15 +0100289 CM_EXTRAVERSION :=
Warren Togami2128e2f2012-05-06 19:49:33 -1000290endif
291
Ricardo Cerqueira554f3702013-09-24 17:58:56 +0100292ifeq ($(CM_BUILDTYPE), RELEASE)
Warren Togami2128e2f2012-05-06 19:49:33 -1000293 CM_VERSION := $(PRODUCT_VERSION_MAJOR).$(PRODUCT_VERSION_MINOR).$(PRODUCT_VERSION_MAINTENANCE)$(PRODUCT_VERSION_DEVICE_SPECIFIC)-$(CM_BUILD)
Koushik Duttac6f7a492011-11-28 07:44:23 -0800294else
Chirayu Desaie6e61632012-12-04 19:16:48 +0530295 ifeq ($(PRODUCT_VERSION_MINOR),0)
Ricardo Cerqueira554f3702013-09-24 17:58:56 +0100296 CM_VERSION := $(PRODUCT_VERSION_MAJOR)-$(shell date -u +%Y%m%d)-$(CM_BUILDTYPE)$(CM_EXTRAVERSION)-$(CM_BUILD)
Chirayu Desaie6e61632012-12-04 19:16:48 +0530297 else
Ricardo Cerqueira554f3702013-09-24 17:58:56 +0100298 CM_VERSION := $(PRODUCT_VERSION_MAJOR).$(PRODUCT_VERSION_MINOR)-$(shell date -u +%Y%m%d)-$(CM_BUILDTYPE)$(CM_EXTRAVERSION)-$(CM_BUILD)
Chirayu Desaie6e61632012-12-04 19:16:48 +0530299 endif
Koushik Duttac6f7a492011-11-28 07:44:23 -0800300endif
Koushik Duttad69b2922012-02-23 14:07:44 -0800301
302PRODUCT_PROPERTY_OVERRIDES += \
303 ro.cm.version=$(CM_VERSION) \
Warren Togamib1637c82012-03-03 22:37:42 -1000304 ro.modversion=$(CM_VERSION)
Ricardo Cerqueirad5422742012-11-13 10:42:11 +0000305
William Roberts9642d1d2013-08-15 13:08:41 -0700306-include vendor/cm/sepolicy/sepolicy.mk
Ricardo Cerqueirad5422742012-11-13 10:42:11 +0000307-include $(WORKSPACE)/hudson/image-auto-bits.mk