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

Commit 76330f76 authored by Dan Pasanen's avatar Dan Pasanen
Browse files

Revert "YOLO"

This reverts commit 430f569d.

Change-Id: I99c4245625629940d83fe535fbdb79fe1b9b4887
parent dff9cc7d
Loading
Loading
Loading
Loading
+8.04 MiB (9.79 MiB)

File changed.

No diff preview for this file type.

+5 −1
Original line number Diff line number Diff line
c 0 0 part0
c 1 0 part0
c 0 0 part1
c 1 0 part2
c 1 1 part3
c 1 0 part4
+16 −4
Original line number Diff line number Diff line
@@ -11,14 +11,26 @@ else
    IMAGEWIDTH="$WIDTH"
fi

RESOLUTION=""$WIDTH"x"$HEIGHT""
IMAGESCALEWIDTH="$IMAGEWIDTH"
IMAGESCALEHEIGHT=$(expr $IMAGESCALEWIDTH / 3)

mkdir -p $ANDROID_PRODUCT_OUT/obj/BOOTANIMATION/bootanimation/part0
if [ "$HALF_RES" = "true" ]; then
    IMAGEWIDTH=$(expr $IMAGEWIDTH / 2)
fi

IMAGEHEIGHT=$(expr $IMAGEWIDTH / 3)

RESOLUTION=""$IMAGEWIDTH"x"$IMAGEHEIGHT""

for part_cnt in 0 1 2 3 4
do
    mkdir -p $ANDROID_PRODUCT_OUT/obj/BOOTANIMATION/bootanimation/part$part_cnt
done
tar xfp "vendor/cm/bootanimation/bootanimation.tar" -C "$OUT/bootanimation/"
mogrify -resize $RESOLUTION -colors 250 -background white -gravity center -extent $RESOLUTION "$OUT/bootanimation/"*"/"*".png"
mogrify -resize $RESOLUTION -colors 250 "$OUT/bootanimation/"*"/"*".png"

# Create desc.txt
echo "$WIDTH $HEIGHT" 60 > "$OUT/bootanimation/desc.txt"
echo "$IMAGESCALEWIDTH $IMAGESCALEHEIGHT" 60 > "$OUT/bootanimation/desc.txt"
cat "vendor/cm/bootanimation/desc.txt" >> "$OUT/bootanimation/desc.txt"

# Create bootanimation.zip