diff options
author | Piotr Dymacz <pepe2k@gmail.com> | 2017-03-10 22:23:46 +0100 |
---|---|---|
committer | Piotr Dymacz <pepe2k@gmail.com> | 2017-03-12 17:39:12 +0100 |
commit | 589b37e8b5d9c34ed7a292a127e681123c841261 (patch) | |
tree | 1a09203915cca43899e1dbdd6fd0989d3f8212b9 /target/linux | |
parent | e213647399739f1ac0fe426ef1da0ef88a4ee1f9 (diff) | |
download | upstream-589b37e8b5d9c34ed7a292a127e681123c841261.tar.gz upstream-589b37e8b5d9c34ed7a292a127e681123c841261.tar.bz2 upstream-589b37e8b5d9c34ed7a292a127e681123c841261.zip |
ar71xx: base-files: fix indentation in lib/ar71xx.sh
Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 4a0c85d631..8f2cce5223 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -74,25 +74,25 @@ ubnt_xm_board_detect() { magic="$(ubnt_get_mtd_part_magic)" case ${magic:0:3} in - "e00"|\ - "e01"|\ - "e80") - model="Ubiquiti NanoStation M" - ;; - "e0a") - model="Ubiquiti NanoStation loco M" - ;; - "e1b"|\ - "e1d") - model="Ubiquiti Rocket M" - ;; - "e20"|\ - "e2d") - model="Ubiquiti Bullet M" - ;; - "e30") - model="Ubiquiti PicoStation M" - ;; + "e00"|\ + "e01"|\ + "e80") + model="Ubiquiti NanoStation M" + ;; + "e0a") + model="Ubiquiti NanoStation loco M" + ;; + "e1b"|\ + "e1d") + model="Ubiquiti Rocket M" + ;; + "e20"|\ + "e2d") + model="Ubiquiti Bullet M" + ;; + "e30") + model="Ubiquiti PicoStation M" + ;; esac [ -z "$model" ] || AR71XX_MODEL="${model}${magic:3:1}" |