You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
520 B
12 lines
520 B
CUR_PATH := device/rockchip/common/bootshutdown
|
|
|
|
HAVE_BOOT_ANIMATION := $(shell test -f $(CUR_PATH)/bootanimation.zip && echo yes)
|
|
HAVE_SHUTDOWN_ANIMATION := $(shell test -f $(CUR_PATH)/shutdownanimation.zip && echo yes)
|
|
|
|
ifeq ($(HAVE_BOOT_ANIMATION), yes)
|
|
PRODUCT_COPY_FILES += $(CUR_PATH)/bootanimation.zip:$(TARGET_COPY_OUT_SYSTEM)/media/bootanimation.zip
|
|
endif
|
|
ifeq ($(HAVE_SHUTDOWN_ANIMATION), yes)
|
|
PRODUCT_COPY_FILES += $(CUR_PATH)/shutdownanimation.zip:$(TARGET_COPY_OUT_SYSTEM)/media/shutdownanimation.zip
|
|
endif
|