1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-25 10:15:11 +02:00

ar71xx: correctly detect NETGEAR WNDRMAC

This patch helps properly detect a WNDRMAC device. Before this
patch the model is detected as "NETGEAR ?????????N".

Signed-off-by: Roman A. aka BasicXP <x12ozmouse@ya.ru>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32453 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2012-06-19 10:13:38 +00:00
parent f054b259d0
commit 60f2c64e65

View File

@ -41,6 +41,8 @@ wndr3700_board_detect() {
model=$(ar71xx_get_mtd_offset_size_format art 56 10 %c) model=$(ar71xx_get_mtd_offset_size_format art 56 10 %c)
if [ -z "$model" ] || [ "$model" = $'\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff' ]; then if [ -z "$model" ] || [ "$model" = $'\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff' ]; then
machine="NETGEAR WNDR3700v2" machine="NETGEAR WNDR3700v2"
elif [ -z "$model" ] || [ "$model" = $'\xff\xff\xff\xff\xff\xff\xff\xff\xffN' ]; then
machine="NETGEAR WNDRMAC"
else else
machine="NETGEAR $model" machine="NETGEAR $model"
fi fi