firmware/bsp/default/root_file_system/etc/sysupgrade.sh

46 lines
1.3 KiB
Bash
Executable File

#!/bin/sh
cd /tmp/
. /etc/firmware_release
BOARD=$(uci get board.model.name)
case $BOARD in
tl-wdr4900-v1 )
SOC="mpc85xx" ;;
* )
SOC="ar71xx" ;;
esac
echo -ne "\nHardware: $BOARD\n"
wget $(uci get firmware.upgrade.path)/release.nfo
if [ ! -f release.nfo ]; then
echo -ne "Latest release information not found. Please try to update manually.\n\n"
exit 1
fi
VERSION=$(cat release.nfo|awk -F: '/VERSION:/ { print $2 }')
rm -f release.nfo
echo -ne "Firmware found on server: $VERSION\n"
FILE="${FIRMWARE_COMMUNITY}-${VERSION}-${SOC}-generic-${BOARD}-squashfs-sysupgrade.bin"
echo -ne "Downloading $FILE\n\n"
wget $(uci get firmware.upgrade.path)/${FILE}
wget $(uci get firmware.upgrade.path)/${FILE}.md5
echo -ne "\ndone. Comparing md5 sums: "
md5sum -c ${FILE}.md5
ret=$?
echo
if [ $ret -ne 0 ]; then
echo -ne "md5 sums do not match. Try restarting this script to redownload the firmware.\n\n"
rm -f ${FILE}*
exit 1
else
while true; do
read -p "md5 sums correct. Should I start upgrading the firmware (y/N)? " yn
case $yn in
[Yy] ) echo -ne "\nStarting firmware upgrade. Don't touch me until I reboot.\n\n\n"; sysupgrade ${FILE}; break;;
[Nn]|* ) echo -ne "\nAborting firmware upgrade.\n\n"; rm -f ${FILE}*; exit 0;;
esac
done
fi