brcm47xx: verify also standard TRX images during sysupgrade

It allows detecting data corruption for plain TRX as well.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45318 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Rafał Miłecki
2015-04-09 05:36:16 +00:00
parent 3765adddb7
commit 3ee317e9f2

View File

@@ -119,6 +119,10 @@ platform_check_image() {
fi
;;
"trx")
if ! otrx -c "$1"; then
echo "Invalid (corrupted?) TRX firmware"
error=1
fi
;;
*)
echo "Invalid image type. Please use only .trx files"