diff options
Diffstat (limited to 'target/linux/x86/alix2/base-files')
-rw-r--r-- | target/linux/x86/alix2/base-files/etc/config/system | 26 | ||||
-rw-r--r-- | target/linux/x86/alix2/base-files/etc/hotplug.d/button/50-reboot | 13 |
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 0000000..28134b6 --- /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 0000000..bf893c1 --- /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 |