Archived
1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Florian Fainelli 3a43e4e92a [brcm63xx] add support for sysupgrade (#5117)
SVN-Revision: 15900
2009-05-17 16:53:57 +00:00

17 lines
329 B
Bash

PART_NAME=linux
platform_check_image() {
[ "$ARGC" -gt 1 ] && return 1
case "$(get_magic_word "$1")" in
3600)
# 6348GW-11 boards use openwrt-96348GW-11-squashfs-cfe.bin files
return 0
;;
*)
echo "Invalid image type. Please use only .bin files"
return 1
;;
esac
}
# use default for platform_do_upgrade()