90 lines
1.7 KiB
Bash
90 lines
1.7 KiB
Bash
#!/bin/sh
|
|
|
|
verbose=
|
|
board=
|
|
device=
|
|
dryrun=
|
|
imagedir=
|
|
|
|
|
|
die() {
|
|
echo "ERROR: $@"
|
|
exit 1
|
|
}
|
|
|
|
usage() {
|
|
get_defaults
|
|
|
|
cat <<EOF
|
|
usage: $0 [-n,--dry-run] [-i,--imagedir <imagedir>] [-b|--board <board-type>] [-d|--device <device>]
|
|
|
|
options:
|
|
|
|
-b,--board <board> Specify the board type: mangopi-mq-pro
|
|
(current default: ${board:-none})
|
|
|
|
-d,--device <device> Specify the device where to install u-boot
|
|
(current default: ${device:-none})
|
|
|
|
-i,--imagedir <imagedir> Specify u-boot image directory
|
|
(current default: ${imagedir:-none})
|
|
|
|
-n,--dry-run Print commands but don't execute them
|
|
|
|
EOF
|
|
}
|
|
|
|
while [ $# -gt 0 ]; do
|
|
opt="$1"
|
|
shift
|
|
case "$opt" in
|
|
-b|--board)
|
|
case "$1" in
|
|
mangopi-mq-pro) board="mangopi-mq-pro" ;;
|
|
*) usage; exit 1;;
|
|
esac
|
|
shift
|
|
;;
|
|
-d|--device)
|
|
device="$1"
|
|
shift
|
|
;;
|
|
-i|--imagedir)
|
|
imagedir="$1"
|
|
shift
|
|
;;
|
|
-n|--dry-run)
|
|
dryrun="echo"
|
|
;;
|
|
--)
|
|
break
|
|
;;
|
|
-*)
|
|
usage
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ -z "$board" -o -z "$device" -o -z "$imagedir" -o ! -e "$imagedir" ]; then
|
|
usage
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$dryrun" ]; then
|
|
echo "Updating $board u-boot in $device in 3 seconds..."
|
|
sleep 3
|
|
fi
|
|
|
|
(
|
|
set -e
|
|
case "$board" in
|
|
mangopi_mq_pro)
|
|
[ -e "$imagedir/mangopi_mq_pro" ] || die "mangopi-mq-pro images not installed, apk add u-boot-mangopi-mq-pro"
|
|
$dryrun dd if=$imagedir/mangopi_mq_pro/u-boot-sunxi-with-spl.bin of=$device bs=8192 seek=16 status=none
|
|
;;
|
|
esac
|
|
$dryrun sync
|
|
) || die "U-Boot installation in $device failed"
|
|
|
|
[ -z "$dryrun" ] && echo "Completed successfully."
|