Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 60051ef5 authored by Brandon McAnsh's avatar Brandon McAnsh Committed by Gerrit Code Review
Browse files

config: Create TV targets (full and mini)



* To follow naming and allow proper device type makefile inclusion
     (phone calls _phone, tablet calls _tablet, etc.)

Change-Id: Ie29548b7160ee24331d9833ff769acc82ff10e7b
Signed-off-by: default avatarBrandon McAnsh <brandon.mcansh@gmail.com>
parent ad91867d
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
# Inherit common CM stuff
$(call inherit-product, vendor/cm/config/common_full.mk)

# Default notification/alarm sounds
PRODUCT_PROPERTY_OVERRIDES += \
    ro.config.notification_sound=Argon.ogg \
    ro.config.alarm_alert=Helium.ogg

ifeq ($(TARGET_SCREEN_WIDTH) $(TARGET_SCREEN_HEIGHT),$(space))
    PRODUCT_COPY_FILES += \
        vendor/cm/prebuilt/common/bootanimation/800.zip:system/media/bootanimation.zip
endif
+15 −0
Original line number Diff line number Diff line
# Inherit common CM stuff
$(call inherit-product, vendor/cm/config/common.mk)

# Include CM audio files
include vendor/cm/config/cm_audio.mk

# Default notification/alarm sounds
PRODUCT_PROPERTY_OVERRIDES += \
    ro.config.notification_sound=Argon.ogg \
    ro.config.alarm_alert=Helium.ogg

ifeq ($(TARGET_SCREEN_WIDTH) $(TARGET_SCREEN_HEIGHT),$(space))
    PRODUCT_COPY_FILES += \
        vendor/cm/prebuilt/common/bootanimation/800.zip:system/media/bootanimation.zip
endif