43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
# Inherit AOSP device configuration for passion.
|
|
$(call inherit-product, device/htc/hero/full_hero.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_hero
|
|
PRODUCT_BRAND := htc
|
|
PRODUCT_DEVICE := hero
|
|
PRODUCT_MODEL := Hero
|
|
PRODUCT_MANUFACTURER := HTC
|
|
PRODUCT_BUILD_PROP_OVERRIDES += BUILD_ID=FRF91 BUILD_DISPLAY_ID=FRF91 PRODUCT_NAME=passion BUILD_FINGERPRINT=google/passion/passion/mahimahi:2.2/FRF91/43546:user/release-keys TARGET_BUILD_TYPE=userdebug BUILD_VERSION_TAGS=release-keys
|
|
PRIVATE_BUILD_DESC="hero-user 2.2 FRF91 43546 release-keys"
|
|
|
|
# Enable Windows Media
|
|
WITH_WINDOWS_MEDIA := true
|
|
|
|
# Build Kernel
|
|
PRODUCT_SPECIFIC_DEFINES += TARGET_PREBUILT_KERNEL=device/htc/hero/kernel
|
|
|
|
#
|
|
# Set ro.modversion
|
|
#
|
|
ifdef CYANOGEN_NIGHTLY
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
ro.modversion=CyanogenMod-6-$(shell date +%m%d%Y)-NIGHTLY-HERO
|
|
else
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
ro.modversion=CyanogenMod-6.0.0-Hero-alpha0
|
|
endif
|
|
|
|
#
|
|
# Copy passion specific prebuilt files
|
|
#
|
|
PRODUCT_COPY_FILES += \
|
|
vendor/cyanogen/prebuilt/mdpi/media/bootanimation.zip:system/media/bootanimation.zip
|