mirror of https://github.com/hak5/openwrt-owl.git
ar71xx: fix syntax for TP-LINK TL-WR941N/ND / Rosewill RNX-N360RT detection
[ ] conditions should use = instead of == for string equality. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net> SVN-Revision: 42796owl
parent
05777fb947
commit
7f772910a1
|
@ -152,7 +152,7 @@ tplink_board_detect() {
|
|||
model="TP-Link TL-WA901N/ND"
|
||||
;;
|
||||
"094100"*)
|
||||
if [ "$hwid" == "09410002" -a "$mid" == "00420001" ]; then
|
||||
if [ "$hwid" = "09410002" -a "$mid" = "00420001" ]; then
|
||||
model="Rosewill RNX-N360RT"
|
||||
hwver=""
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue