vendor: lineage boot animation

Change-Id: Iff2087eb97aee5e586eecf3898f0066d99bc885c
This commit is contained in:
Asher Simonds 2017-01-16 21:52:24 -06:00 committed by Zhao Wei Liew
parent fecbcbe269
commit 2371d23f28
3 changed files with 14 additions and 7 deletions

Binary file not shown.

View File

@ -6,18 +6,21 @@ HALF_RES="$3"
OUT="$ANDROID_PRODUCT_OUT/obj/BOOTANIMATION"
if [ "$HEIGHT" -lt "$WIDTH" ]; then
SIZE="$HEIGHT"
IMAGEWIDTH="$HEIGHT"
else
SIZE="$WIDTH"
IMAGEWIDTH="$WIDTH"
fi
IMAGESCALEWIDTH="$IMAGEWIDTH"
IMAGESCALEHEIGHT=$(expr $IMAGESCALEWIDTH / 3)
if [ "$HALF_RES" = "true" ]; then
IMAGESIZE=$(expr $SIZE / 2)
else
IMAGESIZE="$SIZE"
IMAGEWIDTH=$(expr $IMAGEWIDTH / 2)
fi
RESOLUTION=""$IMAGESIZE"x"$IMAGESIZE""
IMAGEHEIGHT=$(expr $IMAGEWIDTH / 3)
RESOLUTION=""$IMAGEWIDTH"x"$IMAGEHEIGHT""
for part_cnt in 0 1 2
do
@ -26,7 +29,7 @@ done
tar xfp "vendor/cm/bootanimation/bootanimation.tar" --to-command="convert - -resize '$RESOLUTION' \"png8:$OUT/bootanimation/\$TAR_FILENAME\""
# Create desc.txt
echo "$SIZE" "$SIZE" 30 > "$OUT/bootanimation/desc.txt"
echo "$IMAGESCALEWIDTH $IMAGESCALEHEIGHT" 30 > "$OUT/bootanimation/desc.txt"
cat "vendor/cm/bootanimation/desc.txt" >> "$OUT/bootanimation/desc.txt"
# Create bootanimation.zip

View File

@ -90,6 +90,10 @@ include vendor/cm/config/themes_common.mk
# CMSDK
include vendor/cm/config/cmsdk_common.mk
# Bootanimation
PRODUCT_PACKAGES += \
bootanimation.zip
# Required CM packages
PRODUCT_PACKAGES += \
CMAudioService \