mvebu: use device-tree board detection
[openwrt/staging/wigyori.git] / target / linux / mvebu / base-files / etc / diag.sh
old mode 100755 (executable)
new mode 100644 (file)
index adba975..be82537
@@ -1,14 +1,30 @@
 #!/bin/sh
-# Copyright (C) 2014 OpenWrt.org
+# Copyright (C) 2014-2016 OpenWrt.org
+# Copyright (C) 2016 LEDE-Project.org
 
+. /lib/functions.sh
 . /lib/functions/leds.sh
-. /lib/mvebu.sh
 
 get_status_led() {
-       case $(mvebu_board_name) in
-       armada-xp-mamba)
+       case $(board_name) in
+       linksys,caiman)
+               status_led="caiman:white:power"
+               ;;
+       linksys,cobra)
+               status_led="cobra:white:power"
+               ;;
+       linksys,mamba)
                status_led="mamba:white:power"
                ;;
+       linksys,rango)
+               status_led="rango:white:power"
+               ;;
+       linksys,shelby)
+               status_led="shelby:white:power"
+               ;;
+       linksys,venom)
+               status_led="venom:blue:power"
+               ;;
        esac
 }