mirror of https://github.com/hak5/openwrt-owl.git
bcm53xx: display all errors (not just the 1st one) when checking image
Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 45291owl
parent
a19b69a717
commit
7abd779730
|
@ -64,6 +64,7 @@ platform_check_image() {
|
||||||
|
|
||||||
local file_type=$(platform_identify "$1")
|
local file_type=$(platform_identify "$1")
|
||||||
local magic
|
local magic
|
||||||
|
local error=0
|
||||||
|
|
||||||
case "$file_type" in
|
case "$file_type" in
|
||||||
"chk")
|
"chk")
|
||||||
|
@ -75,16 +76,14 @@ platform_check_image() {
|
||||||
|
|
||||||
[ -n "$dev_board_id" -a "chk $board_id" != "$dev_board_id" ] && {
|
[ -n "$dev_board_id" -a "chk $board_id" != "$dev_board_id" ] && {
|
||||||
echo "Firmware board_id doesn't match device board_id ($dev_board_id)"
|
echo "Firmware board_id doesn't match device board_id ($dev_board_id)"
|
||||||
return 1
|
error=1
|
||||||
}
|
}
|
||||||
|
|
||||||
magic=$(get_magic_long_at "$1" "$header_len")
|
magic=$(get_magic_long_at "$1" "$header_len")
|
||||||
[ "$magic" != "48445230" ] && {
|
[ "$magic" != "48445230" ] && {
|
||||||
echo "No valid TRX firmware in the CHK image"
|
echo "No valid TRX firmware in the CHK image"
|
||||||
return 1
|
error=1
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0
|
|
||||||
;;
|
;;
|
||||||
"cybertan")
|
"cybertan")
|
||||||
local pattern=$(dd if="$1" bs=1 count=4 2>/dev/null | hexdump -v -e '1/1 "%c"')
|
local pattern=$(dd if="$1" bs=1 count=4 2>/dev/null | hexdump -v -e '1/1 "%c"')
|
||||||
|
@ -93,25 +92,24 @@ platform_check_image() {
|
||||||
|
|
||||||
[ -n "$dev_pattern" -a "cybertan $pattern" != "$dev_pattern" ] && {
|
[ -n "$dev_pattern" -a "cybertan $pattern" != "$dev_pattern" ] && {
|
||||||
echo "Firmware pattern doesn't match device pattern ($dev_pattern)"
|
echo "Firmware pattern doesn't match device pattern ($dev_pattern)"
|
||||||
return 1
|
error=1
|
||||||
}
|
}
|
||||||
|
|
||||||
magic=$(get_magic_long_at "$1" 32)
|
magic=$(get_magic_long_at "$1" 32)
|
||||||
[ "$magic" != "48445230" ] && {
|
[ "$magic" != "48445230" ] && {
|
||||||
echo "No valid TRX firmware in the CyberTAN image"
|
echo "No valid TRX firmware in the CyberTAN image"
|
||||||
return 1
|
error=1
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0
|
|
||||||
;;
|
;;
|
||||||
"trx")
|
"trx")
|
||||||
return 0
|
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Invalid image type. Please use only .trx files"
|
echo "Invalid image type. Please use only .trx files"
|
||||||
return 1
|
error=1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
return $error
|
||||||
}
|
}
|
||||||
|
|
||||||
# Extract TRX and use stadard upgrade method
|
# Extract TRX and use stadard upgrade method
|
||||||
|
|
Loading…
Reference in New Issue