mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-23 20:45:31 +00:00
ar71xx: fix syntax error in /lib/ar71xx.sh
Remove all comments in ubnt_xm_board_detect(), as it's not possible to add comments to specific lines of the case construct anyways. Fixes: 9a5801e7 "ar71xx: add model detection for UBNT Rocket Ti" Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
This commit is contained in:
parent
9a5801e7f6
commit
a15ea362d7
@ -76,18 +76,18 @@ ubnt_xm_board_detect() {
|
||||
case ${magic:0:3} in
|
||||
"e00"|\
|
||||
"e01"|\
|
||||
"e80") # Different revisions of the NanoStation?
|
||||
"e80")
|
||||
model="Ubiquiti NanoStation M"
|
||||
;;
|
||||
"e0a")
|
||||
model="Ubiquiti NanoStation loco M"
|
||||
;;
|
||||
"e1b"|\ # Note: the M5 / M5 Ti haven't yet been verified
|
||||
"e1d") # Rocket M Ti
|
||||
"e1b"|\
|
||||
"e1d")
|
||||
model="Ubiquiti Rocket M"
|
||||
;;
|
||||
"e20"|\
|
||||
"e2d") # Bullet M Ti
|
||||
"e2d")
|
||||
model="Ubiquiti Bullet M"
|
||||
;;
|
||||
"e30")
|
||||
|
Loading…
x
Reference in New Issue
Block a user