blob: ad2a8d731d0aa8f2df874e728b447810f66eab02 [file] [log] [blame]
Ricardo Cerqueira6ed03ff2011-11-28 16:37:47 +00001PRODUCT_BRAND ?= cyanogenmod
2
Steve Kondikba1ca332012-08-21 02:18:40 -07003ifneq ($(TARGET_SCREEN_WIDTH) $(TARGET_SCREEN_HEIGHT),$(space))
Steve Kondikba1ca332012-08-21 02:18:40 -07004# determine the smaller dimension
5TARGET_BOOTANIMATION_SIZE := $(shell \
Dan Pasanena70323c2016-08-30 14:52:01 -05006 if [ "$(TARGET_SCREEN_WIDTH)" -lt "$(TARGET_SCREEN_HEIGHT)" ]; then \
Steve Kondikba1ca332012-08-21 02:18:40 -07007 echo $(TARGET_SCREEN_WIDTH); \
8 else \
9 echo $(TARGET_SCREEN_HEIGHT); \
10 fi )
11
12# get a sorted list of the sizes
13bootanimation_sizes := $(subst .zip,, $(shell ls vendor/cm/prebuilt/common/bootanimation))
14bootanimation_sizes := $(shell echo -e $(subst $(space),'\n',$(bootanimation_sizes)) | sort -rn)
15
16# find the appropriate size and set
17define check_and_set_bootanimation
18$(eval TARGET_BOOTANIMATION_NAME := $(shell \
19 if [ -z "$(TARGET_BOOTANIMATION_NAME)" ]; then
Dan Pasanena70323c2016-08-30 14:52:01 -050020 if [ "$(1)" -le "$(TARGET_BOOTANIMATION_SIZE)" ]; then \
Steve Kondikba1ca332012-08-21 02:18:40 -070021 echo $(1); \
22 exit 0; \
23 fi;
24 fi;
25 echo $(TARGET_BOOTANIMATION_NAME); ))
26endef
27$(foreach size,$(bootanimation_sizes), $(call check_and_set_bootanimation,$(size)))
28
Steven Luo367e6482014-01-30 12:51:04 -080029ifeq ($(TARGET_BOOTANIMATION_HALF_RES),true)
30PRODUCT_BOOTANIMATION := vendor/cm/prebuilt/common/bootanimation/halfres/$(TARGET_BOOTANIMATION_NAME).zip
31else
William Roberts4256e662013-08-21 13:43:54 -070032PRODUCT_BOOTANIMATION := vendor/cm/prebuilt/common/bootanimation/$(TARGET_BOOTANIMATION_NAME).zip
Steve Kondika8945752012-03-14 00:10:33 -070033endif
Steven Luo367e6482014-01-30 12:51:04 -080034endif
Steve Kondika8945752012-03-14 00:10:33 -070035
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +000036ifdef CM_NIGHTLY
37PRODUCT_PROPERTY_OVERRIDES += \
38 ro.rommanager.developerid=cyanogenmodnightly
39else
40PRODUCT_PROPERTY_OVERRIDES += \
41 ro.rommanager.developerid=cyanogenmod
42endif
43
44PRODUCT_BUILD_PROP_OVERRIDES += BUILD_UTC_DATE=0
45
Steve Kondik5a27f632013-11-06 13:55:11 -080046ifeq ($(PRODUCT_GMS_CLIENTID_BASE),)
47PRODUCT_PROPERTY_OVERRIDES += \
48 ro.com.google.clientidbase=android-google
49else
50PRODUCT_PROPERTY_OVERRIDES += \
51 ro.com.google.clientidbase=$(PRODUCT_GMS_CLIENTID_BASE)
52endif
53
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +000054PRODUCT_PROPERTY_OVERRIDES += \
55 keyguard.no_require_sim=true \
56 ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html \
57 ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html \
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +000058 ro.com.android.wifi-watchlist=GoogleGuest \
59 ro.setupwizard.enterprise_mode=1 \
60 ro.com.android.dateformat=MM-dd-yyyy \
61 ro.com.android.dataroaming=false
62
Ricardo Cerqueiraf3835632013-08-04 13:25:00 +010063PRODUCT_PROPERTY_OVERRIDES += \
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +010064 ro.build.selinux=1
Ricardo Cerqueiraf3835632013-08-04 13:25:00 +010065
Arne Coucheron61536d42016-09-09 00:04:09 +020066# Default notification/alarm sounds
67PRODUCT_PROPERTY_OVERRIDES += \
68 ro.config.notification_sound=Argon.ogg \
69 ro.config.alarm_alert=Helium.ogg
70
Ricardo Cerqueiraed634842015-09-12 00:13:01 +010071ifneq ($(TARGET_BUILD_VARIANT),user)
Steve Kondike4f938c2014-02-04 22:59:01 -080072# Thank you, please drive thru!
73PRODUCT_PROPERTY_OVERRIDES += persist.sys.dun.override=0
Ricardo Cerqueiraed634842015-09-12 00:13:01 +010074endif
Steve Kondike4f938c2014-02-04 22:59:01 -080075
Chirayu Desai88401db2013-03-20 16:17:17 +053076ifneq ($(TARGET_BUILD_VARIANT),eng)
Chirayu Desai59df3632013-02-15 21:16:39 +053077# Enable ADB authentication
78ADDITIONAL_DEFAULT_PROPERTIES += ro.adb.secure=1
Chirayu Desai88401db2013-03-20 16:17:17 +053079endif
Chirayu Desai59df3632013-02-15 21:16:39 +053080
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +000081# Copy over the changelog to the device
82PRODUCT_COPY_FILES += \
83 vendor/cm/CHANGELOG.mkdn:system/etc/CHANGELOG-CM.txt
84
Warren Togamib1637c82012-03-03 22:37:42 -100085# Backup Tool
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +000086PRODUCT_COPY_FILES += \
Tom Marshall65aff662014-12-12 11:56:04 -080087 vendor/cm/prebuilt/common/bin/backuptool.sh:install/bin/backuptool.sh \
88 vendor/cm/prebuilt/common/bin/backuptool.functions:install/bin/backuptool.functions \
Ricardo Cerqueira129989b2012-12-19 01:11:21 +000089 vendor/cm/prebuilt/common/bin/50-cm.sh:system/addon.d/50-cm.sh \
90 vendor/cm/prebuilt/common/bin/blacklist:system/addon.d/blacklist
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +000091
Abhisek Devkotaf1c5ab82016-07-06 15:18:29 -070092# Backup Services whitelist
93PRODUCT_COPY_FILES += \
94 vendor/cm/config/permissions/backup.xml:system/etc/sysconfig/backup.xml
95
Ricardo Cerqueiraaff5e542014-05-09 22:24:12 +010096# Signature compatibility validation
97PRODUCT_COPY_FILES += \
Tom Marshall65aff662014-12-12 11:56:04 -080098 vendor/cm/prebuilt/common/bin/otasigcheck.sh:install/bin/otasigcheck.sh
Ricardo Cerqueiraaff5e542014-05-09 22:24:12 +010099
Steve Kondik485527d2011-12-20 12:14:24 -0800100# init.d support
101PRODUCT_COPY_FILES += \
102 vendor/cm/prebuilt/common/etc/init.d/00banner:system/etc/init.d/00banner \
103 vendor/cm/prebuilt/common/bin/sysinit:system/bin/sysinit
104
Ricardo Cerqueirafd6bfe72015-03-16 12:22:11 +0000105ifneq ($(TARGET_BUILD_VARIANT),user)
James Sullinseb7799c2012-04-05 20:18:18 -0500106# userinit support
107PRODUCT_COPY_FILES += \
108 vendor/cm/prebuilt/common/etc/init.d/90userinit:system/etc/init.d/90userinit
Ricardo Cerqueirafd6bfe72015-03-16 12:22:11 +0000109endif
James Sullinseb7799c2012-04-05 20:18:18 -0500110
Ricardo Cerqueira8f412cb2012-10-18 16:38:25 +0100111# CM-specific init file
112PRODUCT_COPY_FILES += \
113 vendor/cm/prebuilt/common/etc/init.local.rc:root/init.cm.rc
114
herriojr5d2c9982015-10-01 11:20:26 -0700115# Copy over added mimetype supported in libcore.net.MimeUtils
116PRODUCT_COPY_FILES += \
117 vendor/cm/prebuilt/common/lib/content-types.properties:system/lib/content-types.properties
118
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +0000119# Enable SIP+VoIP on all targets
120PRODUCT_COPY_FILES += \
Ricardo Cerqueira3ff9b6f2012-07-11 11:21:50 +0100121 frameworks/native/data/etc/android.software.sip.voip.xml:system/etc/permissions/android.software.sip.voip.xml
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +0000122
sleeplessninja918a7ea2013-01-30 14:45:20 -0600123# Enable wireless Xbox 360 controller support
124PRODUCT_COPY_FILES += \
125 frameworks/base/data/keyboards/Vendor_045e_Product_028e.kl:system/usr/keylayout/Vendor_045e_Product_0719.kl
126
Steve Kondike0c12da2012-03-25 17:21:32 -0700127# This is CM!
128PRODUCT_COPY_FILES += \
129 vendor/cm/config/permissions/com.cyanogenmod.android.xml:system/etc/permissions/com.cyanogenmod.android.xml
130
Arne Coucheron61536d42016-09-09 00:04:09 +0200131# Include CM audio files
132include vendor/cm/config/cm_audio.mk
133
Michael Bestasc37028d2015-11-03 21:39:04 +0200134# Theme engine
Ricardo Cerqueira9f75d842012-05-04 10:15:56 +0100135include vendor/cm/config/themes_common.mk
136
Luca Stefani25801972016-08-27 00:44:50 +0200137ifneq ($(TARGET_DISABLE_CMSDK), true)
Adnan Begovicf3610f52016-03-15 14:17:47 -0700138# CMSDK
139include vendor/cm/config/cmsdk_common.mk
Luca Stefani25801972016-08-27 00:44:50 +0200140endif
Adnan Begovicf3610f52016-03-15 14:17:47 -0700141
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +0000142# Required CM packages
143PRODUCT_PACKAGES += \
Steve Kondik4992d382016-08-29 18:23:03 -0700144 BluetoothExt \
Roman Birgcdb0ea62016-07-25 08:45:42 -0700145 CMAudioService \
Steve Kondik21e414a2016-09-03 05:28:29 -0700146 CMParts \
Steve Kondike0c297d2011-12-20 16:16:01 -0800147 Development \
d34d851457a2016-07-20 13:19:32 -0700148 Profiles \
Luis Vidal049d4c52016-08-13 01:32:58 -0700149 WeatherManagerService
Ricardo Cerqueirae1f37382011-11-27 19:56:54 +0000150
151# Optional CM packages
152PRODUCT_PACKAGES += \
Ricardo Cerqueira117984f2015-01-04 01:55:24 +0000153 libemoji \
Arne Coucheron61536d42016-09-09 00:04:09 +0200154 Terminal \
155 LiveWallpapersPicker \
156 PhotoTable
Koushik Dutta8387c322011-11-26 17:31:19 -0800157
Steve Kondikdac37852015-12-01 13:31:45 -0800158# Include librsjni explicitly to workaround GMS issue
159PRODUCT_PACKAGES += \
160 librsjni
161
Steve Kondik04a49412011-12-14 14:02:19 -0800162# Custom CM packages
163PRODUCT_PACKAGES += \
Ricardo Cerqueira50dda4c2013-11-05 15:26:20 +0000164 Launcher3 \
Michael Bestas8deec442013-12-13 04:54:49 +0200165 Trebuchet \
Steve Kondikc4f6b972014-12-09 13:29:29 -0800166 AudioFX \
Ricardo Cerqueira3dc43542012-05-25 04:31:26 +0400167 CMWallpapers \
DvTonderf0074032012-12-30 13:37:40 -0500168 CMFileManager \
Steve Kondikfd3b0e52014-12-09 13:01:09 -0800169 Eleven \
Giulio Cerverab6f18ff2013-08-20 12:53:56 +0200170 LockClock \
Ricardo Cerqueira178ca722013-11-13 21:16:33 +0000171 CMUpdater \
Michael Bestas344e4482015-09-26 00:58:10 +0300172 CyanogenSetupWizard \
Arne Coucheron3ae1edd2015-11-05 02:35:12 +0100173 CMSettingsProvider \
d34d2cf159c2016-03-08 09:12:04 -0800174 ExactCalculator \
Luis Vidal6d61d302016-03-21 10:18:29 -0700175 LiveLockScreenService \
Arne Coucheron61536d42016-09-09 00:04:09 +0200176 WeatherProvider \
177 SoundRecorder \
178 Screencast
Steve Kondik04a49412011-12-14 14:02:19 -0800179
Abhisek Devkotacf03e162016-03-14 12:45:43 -0800180# Exchange support
181PRODUCT_PACKAGES += \
182 Exchange2
183
Sebastian Schmidt7d5de0c2012-04-15 11:39:25 +0200184# Extra tools in CM
185PRODUCT_PACKAGES += \
Tanguy Pruvotac602b42013-11-24 13:05:59 +0100186 libsepol \
Steve Kondik08980282012-07-05 01:20:47 -0700187 mke2fs \
Steve Kondik1949eb52012-09-20 17:09:07 -0700188 tune2fs \
Steve Kondik1949eb52012-09-20 17:09:07 -0700189 nano \
190 htop \
Steve Kondik49852a72015-11-10 15:05:18 +0100191 mkfs.ntfs \
192 fsck.ntfs \
193 mount.ntfs \
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +0100194 gdbserver \
195 micro_bench \
196 oprofiled \
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +0100197 sqlite3 \
Steve Kondik243e70b2015-11-14 21:04:48 +0100198 strace \
Arne Coucheron61536d42016-09-09 00:04:09 +0200199 pigz \
200 7z \
201 lib7z \
202 bash \
203 bzip2 \
204 curl \
205 powertop \
206 unrar \
207 unzip \
208 vim \
209 wget \
210 zip
Sebastian Schmidt7d5de0c2012-04-15 11:39:25 +0200211
Steve Kondik75956202016-08-07 23:21:29 -0700212# Custom off-mode charger
213ifneq ($(WITH_CM_CHARGER),false)
214PRODUCT_PACKAGES += \
215 charger_res_images \
216 cm_charger_res_images \
217 font_log.png \
218 libhealthd.cm
219endif
220
221# ExFAT support
Scott Mertz2911a0e2015-11-09 11:35:41 -0800222WITH_EXFAT ?= true
223ifeq ($(WITH_EXFAT),true)
224TARGET_USES_EXFAT := true
225PRODUCT_PACKAGES += \
226 mount.exfat \
227 fsck.exfat \
228 mkfs.exfat
229endif
230
Chirayu Desai8636d672012-07-19 16:04:25 +0530231# Openssh
232PRODUCT_PACKAGES += \
233 scp \
234 sftp \
235 ssh \
236 sshd \
237 sshd_config \
238 ssh-keygen \
Chirayu Desai4bacf672012-08-19 17:30:04 +0530239 start-ssh
240
241# rsync
242PRODUCT_PACKAGES += \
243 rsync
Chirayu Desai8636d672012-07-19 16:04:25 +0530244
Michael Bestas7d5d16d2014-06-10 20:06:48 +0300245# Stagefright FFMPEG plugin
Steve Kondikb5ee3772016-09-06 03:06:35 -0700246PRODUCT_PACKAGES += \
247 libffmpeg_extractor \
248 libffmpeg_omx \
249 media_codecs_ffmpeg.xml
250
251PRODUCT_PROPERTY_OVERRIDES += \
252 media.sf.omx-plugin=libffmpeg_omx.so \
253 media.sf.extractor-plugin=libffmpeg_extractor.so
Steve Kondik7c968692015-07-08 09:53:12 -0700254
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +0100255# These packages are excluded from user builds
256ifneq ($(TARGET_BUILD_VARIANT),user)
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +0100257PRODUCT_PACKAGES += \
Steve Kondik275701b2013-11-06 12:41:34 -0800258 procmem \
259 procrank \
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +0100260 su
repo Shareef Ali4bcfc312014-12-29 17:52:04 -0600261endif
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +0100262
Ricardo Cerqueiraa21887e2013-09-25 17:13:25 +0100263PRODUCT_PROPERTY_OVERRIDES += \
264 persist.sys.root_access=0
265
Ricardo Cerqueira15c9ef42016-03-11 14:09:52 +0000266DEVICE_PACKAGE_OVERLAYS += vendor/cm/overlay/common
Koushik Duttac6f7a492011-11-28 07:44:23 -0800267
Dan Pasanen69354102016-08-24 10:19:50 -0500268PRODUCT_VERSION_MAJOR = 14
Michael Bestaseb83dba2015-10-07 18:38:03 +0300269PRODUCT_VERSION_MINOR = 0
Dan Pasanen69354102016-08-24 10:19:50 -0500270PRODUCT_VERSION_MAINTENANCE := 0
Adrian DC3e85bf72016-08-06 21:47:23 +0200271
Scott Mertza9950592016-08-05 12:24:19 -0700272ifeq ($(TARGET_VENDOR_SHOW_MAINTENANCE_VERSION),true)
Adrian DC3e85bf72016-08-06 21:47:23 +0200273 CM_VERSION_MAINTENANCE := $(PRODUCT_VERSION_MAINTENANCE)
Scott Mertza9950592016-08-05 12:24:19 -0700274else
Adrian DC3e85bf72016-08-06 21:47:23 +0200275 CM_VERSION_MAINTENANCE := 0
Scott Mertza9950592016-08-05 12:24:19 -0700276endif
Koushik Duttac6f7a492011-11-28 07:44:23 -0800277
Ricardo Cerqueira554f3702013-09-24 17:58:56 +0100278# Set CM_BUILDTYPE from the env RELEASE_TYPE, for jenkins compat
279
280ifndef CM_BUILDTYPE
281 ifdef RELEASE_TYPE
282 # Starting with "CM_" is optional
283 RELEASE_TYPE := $(shell echo $(RELEASE_TYPE) | sed -e 's|^CM_||g')
284 CM_BUILDTYPE := $(RELEASE_TYPE)
285 endif
Warren Togami2128e2f2012-05-06 19:49:33 -1000286endif
Ricardo Cerqueira554f3702013-09-24 17:58:56 +0100287
288# Filter out random types, so it'll reset to UNOFFICIAL
289ifeq ($(filter RELEASE NIGHTLY SNAPSHOT EXPERIMENTAL,$(CM_BUILDTYPE)),)
290 CM_BUILDTYPE :=
Warren Togami2128e2f2012-05-06 19:49:33 -1000291endif
292
Ricardo Cerqueirad8e76662012-06-08 11:08:15 +0100293ifdef CM_BUILDTYPE
Ricardo Cerqueira554f3702013-09-24 17:58:56 +0100294 ifneq ($(CM_BUILDTYPE), SNAPSHOT)
295 ifdef CM_EXTRAVERSION
296 # Force build type to EXPERIMENTAL
297 CM_BUILDTYPE := EXPERIMENTAL
298 # Remove leading dash from CM_EXTRAVERSION
299 CM_EXTRAVERSION := $(shell echo $(CM_EXTRAVERSION) | sed 's/-//')
300 # Add leading dash to CM_EXTRAVERSION
301 CM_EXTRAVERSION := -$(CM_EXTRAVERSION)
302 endif
303 else
304 ifndef CM_EXTRAVERSION
305 # Force build type to EXPERIMENTAL, SNAPSHOT mandates a tag
306 CM_BUILDTYPE := EXPERIMENTAL
307 else
308 # Remove leading dash from CM_EXTRAVERSION
309 CM_EXTRAVERSION := $(shell echo $(CM_EXTRAVERSION) | sed 's/-//')
310 # Add leading dash to CM_EXTRAVERSION
311 CM_EXTRAVERSION := -$(CM_EXTRAVERSION)
312 endif
Ricardo Cerqueirad8e76662012-06-08 11:08:15 +0100313 endif
314else
315 # If CM_BUILDTYPE is not defined, set to UNOFFICIAL
Warren Togami2128e2f2012-05-06 19:49:33 -1000316 CM_BUILDTYPE := UNOFFICIAL
Ricardo Cerqueirad8e76662012-06-08 11:08:15 +0100317 CM_EXTRAVERSION :=
Warren Togami2128e2f2012-05-06 19:49:33 -1000318endif
319
Matt Mowerf4168392013-12-13 11:04:14 -0600320ifeq ($(CM_BUILDTYPE), UNOFFICIAL)
321 ifneq ($(TARGET_UNOFFICIAL_BUILD_ID),)
Michael Bestas3bf9ba82013-12-18 00:22:58 +0200322 CM_EXTRAVERSION := -$(TARGET_UNOFFICIAL_BUILD_ID)
Matt Mowerf4168392013-12-13 11:04:14 -0600323 endif
324endif
325
Ricardo Cerqueira554f3702013-09-24 17:58:56 +0100326ifeq ($(CM_BUILDTYPE), RELEASE)
Ricardo Cerqueiraae71f042013-11-11 00:55:51 +0000327 ifndef TARGET_VENDOR_RELEASE_BUILD_ID
328 CM_VERSION := $(PRODUCT_VERSION_MAJOR).$(PRODUCT_VERSION_MINOR).$(PRODUCT_VERSION_MAINTENANCE)$(PRODUCT_VERSION_DEVICE_SPECIFIC)-$(CM_BUILD)
329 else
330 ifeq ($(TARGET_BUILD_VARIANT),user)
Adrian DC3e85bf72016-08-06 21:47:23 +0200331 ifeq ($(CM_VERSION_MAINTENANCE),0)
Jessica Wagantall79204e62016-07-14 15:42:08 -0700332 CM_VERSION := $(PRODUCT_VERSION_MAJOR).$(PRODUCT_VERSION_MINOR)-$(TARGET_VENDOR_RELEASE_BUILD_ID)-$(CM_BUILD)
333 else
Adrian DC3e85bf72016-08-06 21:47:23 +0200334 CM_VERSION := $(PRODUCT_VERSION_MAJOR).$(PRODUCT_VERSION_MINOR).$(CM_VERSION_MAINTENANCE)-$(TARGET_VENDOR_RELEASE_BUILD_ID)-$(CM_BUILD)
Jessica Wagantall79204e62016-07-14 15:42:08 -0700335 endif
Ricardo Cerqueiraae71f042013-11-11 00:55:51 +0000336 else
337 CM_VERSION := $(PRODUCT_VERSION_MAJOR).$(PRODUCT_VERSION_MINOR).$(PRODUCT_VERSION_MAINTENANCE)$(PRODUCT_VERSION_DEVICE_SPECIFIC)-$(CM_BUILD)
338 endif
339 endif
Koushik Duttac6f7a492011-11-28 07:44:23 -0800340else
Adrian DC3e85bf72016-08-06 21:47:23 +0200341 ifeq ($(CM_VERSION_MAINTENANCE),0)
Jessica Wagantall79204e62016-07-14 15:42:08 -0700342 CM_VERSION := $(PRODUCT_VERSION_MAJOR).$(PRODUCT_VERSION_MINOR)-$(shell date -u +%Y%m%d)-$(CM_BUILDTYPE)$(CM_EXTRAVERSION)-$(CM_BUILD)
343 else
Adrian DC3e85bf72016-08-06 21:47:23 +0200344 CM_VERSION := $(PRODUCT_VERSION_MAJOR).$(PRODUCT_VERSION_MINOR).$(CM_VERSION_MAINTENANCE)-$(shell date -u +%Y%m%d)-$(CM_BUILDTYPE)$(CM_EXTRAVERSION)-$(CM_BUILD)
Jessica Wagantall79204e62016-07-14 15:42:08 -0700345 endif
Koushik Duttac6f7a492011-11-28 07:44:23 -0800346endif
Koushik Duttad69b2922012-02-23 14:07:44 -0800347
348PRODUCT_PROPERTY_OVERRIDES += \
349 ro.cm.version=$(CM_VERSION) \
Brint E. Kriebelaf917582014-07-10 10:31:00 -0700350 ro.cm.releasetype=$(CM_BUILDTYPE) \
Abhisek Devkota381a3052013-12-10 04:35:08 -0800351 ro.modversion=$(CM_VERSION) \
NBruderman3b7f3d22015-03-04 12:08:33 +0200352 ro.cmlegal.url=https://cyngn.com/legal/privacy-policy
Ricardo Cerqueirad5422742012-11-13 10:42:11 +0000353
Michael Bestas3952f6c2016-08-26 01:12:08 +0300354ifeq ($(OTA_PACKAGE_SIGNING_KEY),)
355 PRODUCT_EXTRA_RECOVERY_KEYS += \
356 vendor/cm/build/target/product/security/cm \
357 vendor/cm/build/target/product/security/cm-devkey
358endif
359
Ricardo Cerqueira178dbd62013-10-23 20:56:56 +0100360-include vendor/cm-priv/keys/keys.mk
361
Ricardo Cerqueira46161372014-01-09 10:25:31 +0000362CM_DISPLAY_VERSION := $(CM_VERSION)
363
Brint E. Kriebelac948f52014-01-24 09:58:36 -0800364ifneq ($(PRODUCT_DEFAULT_DEV_CERTIFICATE),)
365ifneq ($(PRODUCT_DEFAULT_DEV_CERTIFICATE),build/target/product/security/testkey)
Ricardo Cerqueira46161372014-01-09 10:25:31 +0000366 ifneq ($(CM_BUILDTYPE), UNOFFICIAL)
367 ifndef TARGET_VENDOR_RELEASE_BUILD_ID
368 ifneq ($(CM_EXTRAVERSION),)
Ricardo Cerqueira17b25872014-02-16 17:15:07 +0000369 # Remove leading dash from CM_EXTRAVERSION
370 CM_EXTRAVERSION := $(shell echo $(CM_EXTRAVERSION) | sed 's/-//')
Ricardo Cerqueira46161372014-01-09 10:25:31 +0000371 TARGET_VENDOR_RELEASE_BUILD_ID := $(CM_EXTRAVERSION)
372 else
Ricardo Cerqueira17b25872014-02-16 17:15:07 +0000373 TARGET_VENDOR_RELEASE_BUILD_ID := $(shell date -u +%Y%m%d)
Ricardo Cerqueira46161372014-01-09 10:25:31 +0000374 endif
375 else
Ricardo Cerqueira17b25872014-02-16 17:15:07 +0000376 TARGET_VENDOR_RELEASE_BUILD_ID := $(TARGET_VENDOR_RELEASE_BUILD_ID)
Ricardo Cerqueira46161372014-01-09 10:25:31 +0000377 endif
Adrian DC3e85bf72016-08-06 21:47:23 +0200378 ifeq ($(CM_VERSION_MAINTENANCE),0)
Jessica Wagantall79204e62016-07-14 15:42:08 -0700379 CM_DISPLAY_VERSION := $(PRODUCT_VERSION_MAJOR).$(PRODUCT_VERSION_MINOR)-$(TARGET_VENDOR_RELEASE_BUILD_ID)-$(CM_BUILD)
380 else
Adrian DC3e85bf72016-08-06 21:47:23 +0200381 CM_DISPLAY_VERSION := $(PRODUCT_VERSION_MAJOR).$(PRODUCT_VERSION_MINOR).$(CM_VERSION_MAINTENANCE)-$(TARGET_VENDOR_RELEASE_BUILD_ID)-$(CM_BUILD)
Jessica Wagantall79204e62016-07-14 15:42:08 -0700382 endif
383endif
Ricardo Cerqueira46161372014-01-09 10:25:31 +0000384endif
Ricardo Cerqueira74b4f9b2014-01-11 16:00:16 +0000385endif
Ricardo Cerqueira46161372014-01-09 10:25:31 +0000386
387PRODUCT_PROPERTY_OVERRIDES += \
388 ro.cm.display.version=$(CM_DISPLAY_VERSION)
389
Brint E. Kriebela1e49122014-01-31 11:59:56 -0800390-include $(WORKSPACE)/build_env/image-auto-bits.mk
Steve Kondik960c4f42016-09-02 21:11:11 -0700391-include vendor/cm/config/partner_gms.mk
Koushik Dutta41fd0aa2013-12-07 22:04:17 -0800392-include vendor/cyngn/product.mk
Steve Kondikb9dd4002014-09-10 15:41:43 -0700393
Chris Sarbora39b9aa82014-12-17 14:41:28 -0800394$(call prepend-product-if-exists, vendor/extra/product.mk)