Add common config for devices with low space on system

Change-Id: I4e63dc4d608ed79c36c6757b2ffbfc76cd3634e6
This commit is contained in:
Adam Farden 2012-03-07 14:34:38 +01:00
parent 4820d8f4ea
commit db2438bad5
4 changed files with 37 additions and 4 deletions

View File

@ -51,8 +51,7 @@ PRODUCT_COPY_FILES += \
vendor/cm/proprietary/Term.apk:system/app/Term.apk \
vendor/cm/proprietary/lib/armeabi/libjackpal-androidterm3.so:system/lib/libjackpal-androidterm3.so
# Bring in camera effects & videos
$(call inherit-product, frameworks/base/data/videos/VideoPackage2.mk)
# Bring in camera effects
PRODUCT_COPY_FILES += \
vendor/cm/prebuilt/common/media/LMprec_508.emd:system/media/LMprec_508.emd \
vendor/cm/prebuilt/common/media/PFFprec_600.emd:system/media/PFFprec_600.emd

View File

@ -2,7 +2,13 @@
$(call inherit-product, vendor/cm/config/common.mk)
# Bring in all audio files
include frameworks/base/data/sounds/AllAudio.mk
include frameworks/base/data/sounds/NewAudio.mk
# Extra Ringtones
include frameworks/base/data/sounds/AudioPackageNewWave.mk
# Bring in all video files
$(call inherit-product, frameworks/base/data/videos/VideoPackage2.mk)
# Include CM audio files
include vendor/cm/config/cm_audio.mk

View File

@ -2,7 +2,13 @@
$(call inherit-product, vendor/cm/config/common.mk)
# Bring in all audio files
include frameworks/base/data/sounds/AllAudio.mk
include frameworks/base/data/sounds/NewAudio.mk
# Extra Ringtones
include frameworks/base/data/sounds/AudioPackageNewWave.mk
# Bring in all video files
$(call inherit-product, frameworks/base/data/videos/VideoPackage2.mk)
# Include CM audio files
include vendor/cm/config/cm_audio.mk

View File

@ -0,0 +1,22 @@
# Inherit common CM stuff
$(call inherit-product, vendor/cm/config/common.mk)
# Bring in all audio files
include frameworks/base/data/sounds/NewAudio.mk
# Include CM audio files
include vendor/cm/config/cm_audio.mk
# Default ringtone
PRODUCT_PROPERTY_OVERRIDES += \
ro.config.ringtone=CyanTone.ogg \
ro.config.notification_sound=CyanMessage.ogg \
ro.config.alarm_alert=CyanAlarm.ogg
PRODUCT_PACKAGES += \
Mms
ifeq ($(TARGET_BOOTANIMATION_NAME),)
PRODUCT_COPY_FILES += \
vendor/cm/prebuilt/common/bootanimation/vertical-320x480.zip:system/media/bootanimation.zip
endif