6b1b96c9f4
This reverts commit a185fd8b356995fa22da05ce9b5d384758411762. This commit is broken and disables wallpapers and themes on anything under vega (zeppelin, zero for example)
45 lines
1.4 KiB
Makefile
45 lines
1.4 KiB
Makefile
$(call inherit-product, device/advent/vega/vega.mk)
|
|
|
|
# skips themes and keeps the resulting rom tiny so it fits on /system/ with all languages included
|
|
PRODUCT_SPECIFIC_DEFINES += SKIP_THEMES=true
|
|
|
|
# Inherit some common cyanogenmod stuff.
|
|
$(call inherit-product, vendor/cyanogen/products/common_full.mk)
|
|
|
|
#
|
|
# Setup device specific product configuration.
|
|
#
|
|
PRODUCT_NAME := cyanogen_vega
|
|
PRODUCT_BRAND := advent
|
|
PRODUCT_DEVICE := vega
|
|
PRODUCT_MODEL := Vega
|
|
PRODUCT_MANUFACTURER := Advent
|
|
PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=Vega BUILD_ID=GRI40 BUILD_DISPLAY_ID=GRJ22 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"
|
|
|
|
# Extra overlay
|
|
PRODUCT_PACKAGE_OVERLAYS += \
|
|
vendor/cyanogen/overlay/tablet \
|
|
vendor/cyanogen/overlay/vega
|
|
|
|
#
|
|
# Set ro.modversion
|
|
#
|
|
ifdef CYANOGEN_NIGHTLY
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
ro.modversion=CyanogenMod-7-$(shell date +%m%d%Y)-NIGHTLY-Vega
|
|
else
|
|
ifdef CYANOGEN_RELEASE
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
ro.modversion=CyanogenMod-7.1.0-RC0-Vega
|
|
else
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
ro.modversion=CyanogenMod-7.1.0-RC0-Vega-KANG
|
|
endif
|
|
endif
|
|
|
|
#
|
|
# Copy passion specific prebuilt files
|
|
#
|
|
PRODUCT_COPY_FILES += \
|
|
vendor/cyanogen/prebuilt/mdpi/media/bootanimation.zip:system/media/bootanimation.zip
|