2009-06-06 17:44:49 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
|
|
#
|
|
|
|
|
|
|
|
. /lib/ar71xx.sh
|
|
|
|
|
|
|
|
PART_NAME=firmware
|
2009-08-02 09:27:38 +00:00
|
|
|
RAMFS_COPY_DATA=/lib/ar71xx.sh
|
2009-06-06 17:44:49 +00:00
|
|
|
|
|
|
|
platform_check_image() {
|
|
|
|
local board=$(ar71xx_board_name)
|
|
|
|
local magic="$(get_magic_word "$1")"
|
|
|
|
|
|
|
|
[ "$ARGC" -gt 1 ] && return 1
|
|
|
|
|
|
|
|
case "$board" in
|
|
|
|
ap83 | mzk-w04nu | mzk-w300nh | tew-632brp | wrt-400n)
|
|
|
|
[ "$magic" != "2705" ] && {
|
|
|
|
echo "Invalid image type."
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
;;
|
2009-07-25 19:50:26 +00:00
|
|
|
tl-wr741nd | tl-wr941nd)
|
2009-06-06 17:44:49 +00:00
|
|
|
[ "$magic" != "0100" ] && {
|
|
|
|
echo "Invalid image type."
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
echo "Sysupgrade is not yet supported on $board."
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# use default for platform_do_upgrade()
|
|
|
|
|
|
|
|
disable_watchdog() {
|
|
|
|
killall watchdog
|
|
|
|
( ps | grep -v 'grep' | grep '/dev/watchdog' ) && {
|
|
|
|
echo 'Could not disable watchdog'
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
}
|
2009-08-02 09:27:38 +00:00
|
|
|
|
2009-06-06 17:44:49 +00:00
|
|
|
append sysupgrade_pre_upgrade disable_watchdog
|