summaryrefslogtreecommitdiffstats
path: root/target/linux/x86/alix2/base-files
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-08-25 09:35:45 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-08-25 09:35:45 +0000
commit1d08fd80b11f9eef3dff1a9e0ebb8b8fa02ed44a (patch)
tree2fab3b8966c6e8461441b59485c967a1f291a91f /target/linux/x86/alix2/base-files
parent345bc95690c3bc8b8667b75635d17547b7d60da9 (diff)
[x86] update alix2 platform driver
Add support for Ed Wildgoose's alix platform driver plus my enhancement to add GPIO soft button support. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28081 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/x86/alix2/base-files')
-rw-r--r--target/linux/x86/alix2/base-files/etc/config/system26
-rw-r--r--target/linux/x86/alix2/base-files/etc/hotplug.d/button/50-reboot13
2 files changed, 39 insertions, 0 deletions
diff --git a/target/linux/x86/alix2/base-files/etc/config/system b/target/linux/x86/alix2/base-files/etc/config/system
new file mode 100644
index 000000000..28134b64c
--- /dev/null
+++ b/target/linux/x86/alix2/base-files/etc/config/system
@@ -0,0 +1,26 @@
+config system
+ option hostname OpenWrt
+ option timezone UTC
+
+config rdate
+ option interface wan
+
+config led
+ option default 1
+ option name LAN
+ option sysfs 'alix:1'
+ option trigger netdev
+ option mode 'tx rx'
+ option dev 'br-lan'
+
+config led
+ option default 1
+ option name WiFi
+ option sysfs 'alix:2'
+ option trigger 'phy0tpt'
+
+config led
+ option default 0
+ option name Heartbeat
+ option sysfs 'alix:3'
+ option trigger 'heartbeat'
diff --git a/target/linux/x86/alix2/base-files/etc/hotplug.d/button/50-reboot b/target/linux/x86/alix2/base-files/etc/hotplug.d/button/50-reboot
new file mode 100644
index 000000000..bf893c15b
--- /dev/null
+++ b/target/linux/x86/alix2/base-files/etc/hotplug.d/button/50-reboot
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+logger -t button -p daemon.info "$BUTTON/$ACTION"
+
+case "$BUTTON/$ACTION" in
+
+reset/released)
+ reboot -f
+ ;;
+
+esac
+
+exit 0