11d5cdb86f
We have been using a system where each vendor makefile needed to be updated for each release. This leads to both redundancy and inconsistency across devices. This patch externalizes version code to the common_versions.mk. As we all know CyanogenMod versioning works as such: MAJOR.MINOR.MAINTENACE.DEVICE_SPECIFIC (i.e. 7.1.0.1) common_versions.mk now contains the first three in the form of the following variables: PRODUCT_VERSION_MAJOR, PRODUCT_VERSION_MINOR, PRODUCT_VERSION_MAINTENANCE. Additionally, each device makefile contains two additional flags which control both the release name (the name that appears in the generated zip) and the device-specific version (empty by default, to be bumped on a per device basis), example: PRODUCT_RELEASE_NAME := XperiaArc-LT15i PRODUCT_VERSION_DEVICE_SPECIFIC := .1 Change-Id: I15d18e27b89ea00109a61cb66e3bffbb061a2ed4
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
# Inherit AOSP device configuration for geeksphone one.
|
|
$(call inherit-product, device/geeksphone/one/one.mk)
|
|
|
|
# Inherit some common cyanogenmod stuff.
|
|
$(call inherit-product, vendor/cyanogen/products/common.mk)
|
|
|
|
# Include GSM stuff
|
|
$(call inherit-product, vendor/cyanogen/products/gsm.mk)
|
|
|
|
#
|
|
# Setup device specific product configuration.
|
|
#
|
|
PRODUCT_NAME := cyanogen_one
|
|
PRODUCT_BRAND := geeksphone
|
|
PRODUCT_DEVICE := one
|
|
PRODUCT_MODEL := Geeksphone ONE
|
|
PRODUCT_MANUFACTURER := Geeksphone
|
|
PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_DEVICE=geeksphone-one PRODUCT_NAME=geeksphone_one BUILD_ID=GRI40 BUILD_FINGERPRINT=google/passion/passion:2.3.3/GRI40/102588:user/release-keys PRIVATE_BUILD_DESC="passion-user 2.3.3 GRI40 102588 release-keys"
|
|
|
|
# Add the CMWallpapers app
|
|
PRODUCT_PACKAGES += CMWallpapers
|
|
|
|
#
|
|
# Move dalvik cache to data partition where there is more room to solve startup problems
|
|
#
|
|
PRODUCT_PROPERTY_OVERRIDES += dalvik.vm.dexopt-data-only=1
|
|
|
|
# Release name and versioning
|
|
PRODUCT_RELEASE_NAME := ONE
|
|
PRODUCT_VERSION_DEVICE_SPECIFIC :=
|
|
-include vendor/cyanogen/products/common_versions.mk
|
|
|
|
#
|
|
# Copy GPO specific prebuilt files
|
|
#
|
|
PRODUCT_COPY_FILES += \
|
|
vendor/cyanogen/prebuilt/ldpi/media/bootanimation.zip:system/media/bootanimation.zip
|