qemu-arm/run/install.sh
2023-04-27 23:54:55 +02:00

31 lines
651 B
Bash

#!/usr/bin/env bash
set -eu
TMP="/boot.img"
rm -f "$TMP"
echo "Downloading ${BOOT} as boot image..."
# Check if running with interactive TTY or redirected to docker log
if [ -t 1 ]; then
PROGRESS="--progress=bar:noscroll"
else
PROGRESS="--progress=dot:giga"
fi
if ! wget "$BOOT" -O "$TMP" -q --no-check-certificate --show-progress "$PROGRESS" ; then
echo "Failed to download ${BOOT}" && exit 60
fi
[ ! -f "$TMP" ] && echo "Failed to download ${BOOT}" && exit 61
SIZE=$(stat -c%s "$TMP")
if ((SIZE<1000000)); then
echo "Invalid ISO file: Size is smaller than 1 MB." && exit 62
fi
FILE="$STORAGE/boot.img"
mv -f "$TMP" "$FILE"
#Trigger