linuxOS_D21X/package/third-party/swupdate/swupdate_end.sh

15 lines
253 B
Bash
Raw Normal View History

2024-11-29 08:13:19 +00:00
#!/bin/sh
swu_status=$(fw_printenv -n swu_status 2>/dev/null)
[ x"$swu_status" = x"" ] && {
echo "No OTA upgrade information found"
return
}
if [ x"$swu_status" = "xfinish" ]; then
fw_setenv swu_status
echo "Last OTA upgrade succeeded"
fi