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> SVN-Revision: 32453
This commit is contained in:
parent
ee9bc123fb
commit
27fea0b6d7
1 changed files with 2 additions and 0 deletions
|
@ -41,6 +41,8 @@ wndr3700_board_detect() {
|
|||
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
|
||||
machine="NETGEAR WNDR3700v2"
|
||||
elif [ -z "$model" ] || [ "$model" = $'\xff\xff\xff\xff\xff\xff\xff\xff\xffN' ]; then
|
||||
machine="NETGEAR WNDRMAC"
|
||||
else
|
||||
machine="NETGEAR $model"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue