summaryrefslogtreecommitdiff
path: root/target/linux/x86/geode/base-files/etc/board.d/01_leds
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2017-02-10 11:41:30 +0000
committerJohn Crispin <john@phrozen.org>2017-02-17 10:28:39 +0100
commit06e0c30336d842c8337ca0fb24a9222b9857a1d7 (patch)
tree4424056f7303428f9e424e70fcaeea0a530a2be0 /target/linux/x86/geode/base-files/etc/board.d/01_leds
parent982dd01ac37f64892deb4003f4e53d3bc7a114c4 (diff)
downloadmtk-20170518-06e0c30336d842c8337ca0fb24a9222b9857a1d7.zip
mtk-20170518-06e0c30336d842c8337ca0fb24a9222b9857a1d7.tar.gz
mtk-20170518-06e0c30336d842c8337ca0fb24a9222b9857a1d7.tar.bz2
x86: Add configuration back for Traverse Geos
When we merged all the Geode boards into one generic target, the default network and LED configuration was lost. Put it back. Fixes: 9e0759ea2653 ("x86: merge all geode based subtargets into one") Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'target/linux/x86/geode/base-files/etc/board.d/01_leds')
-rwxr-xr-xtarget/linux/x86/geode/base-files/etc/board.d/01_leds21
1 files changed, 21 insertions, 0 deletions
diff --git a/target/linux/x86/geode/base-files/etc/board.d/01_leds b/target/linux/x86/geode/base-files/etc/board.d/01_leds
new file mode 100755
index 0000000..8a1a1e0
--- /dev/null
+++ b/target/linux/x86/geode/base-files/etc/board.d/01_leds
@@ -0,0 +1,21 @@
+#!/bin/sh
+#
+# Copyright © 2017 OpenWrt.org
+#
+
+. /lib/functions/uci-defaults.sh
+
+board_config_update
+
+board=$(cat /tmp/sysinfo/board_name) 2>/dev/null
+
+case "$board" in
+traverse-technologies-geos)
+ ucidef_set_led_netdev "lan" "LAN" "geos:1" "br-lan" "tx rx"
+ ucidef_set_led_netdev "wlan" "WiFi" "geos:2" "phy0tpt"
+ ucidef_set_led_default "diag" "DIAG" "geos:3" "0"
+ ;;
+esac
+board_config_flush
+
+exit 0