Skip to content
Snippets Groups Projects
Commit b7822100 authored by Dan Pasanen's avatar Dan Pasanen
Browse files

Revert "YOLO"

This reverts commit 430f569d.

Change-Id: I99c4245625629940d83fe535fbdb79fe1b9b4887
parent 2f40cfa1
No related branches found
No related tags found
No related merge requests found
No preview for this file type
c 0 0 part0
c 1 0 part0
c 0 0 part1
c 1 0 part2
c 1 1 part3
c 1 0 part4
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment