diff options
author | John Crispin <blogic@openwrt.org> | 2014-01-15 18:29:44 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-01-15 18:29:44 +0000 |
commit | 00482d1b777e234591ceac0ef72630fb8743bd0c (patch) | |
tree | a4e9c78966e8e1fd7a74ba2fcc49528c8007700e /target/linux/ramips/base-files/lib/upgrade/platform.sh | |
parent | bbbec80e5146857020a79be49873c4aec72fd673 (diff) | |
download | upstream-00482d1b777e234591ceac0ef72630fb8743bd0c.tar.gz upstream-00482d1b777e234591ceac0ef72630fb8743bd0c.tar.bz2 upstream-00482d1b777e234591ceac0ef72630fb8743bd0c.zip |
ramips: Add userspace support for the Edimax BR-6475nD
The rt2x00 wifi driver may still need updating to
function with this device.
Signed-off-by: Christopher Lais <chris+openwrt@zenthought.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39298 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/base-files/lib/upgrade/platform.sh')
-rwxr-xr-x | target/linux/ramips/base-files/lib/upgrade/platform.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh index 0230a1829b..8bc2abd156 100755 --- a/target/linux/ramips/base-files/lib/upgrade/platform.sh +++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh @@ -100,6 +100,13 @@ platform_check_image() { } return 0 ;; + br-6475nd) + [ "$magic" != "43535953" ] && { + echo "Invalid image type." + return 1 + } + return 0 + ;; esac echo "Sysupgrade is not yet supported on $board." |