summaryrefslogtreecommitdiffstats
path: root/target/linux/rb532/base-files/etc
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2007-09-29 14:27:54 +0000
committerGabor Juhos <juhosg@openwrt.org>2007-09-29 14:27:54 +0000
commit438dfe5c6fbfa63f5841fda9b4ec44b2f7712674 (patch)
tree35defc07076a1deea87ff74b8ee97cd891494183 /target/linux/rb532/base-files/etc
parent2068b8d48de6b07bf656613fb1e25850483d5c67 (diff)
downloadmaster-31e0f0ae-438dfe5c6fbfa63f5841fda9b4ec44b2f7712674.tar.gz
master-31e0f0ae-438dfe5c6fbfa63f5841fda9b4ec44b2f7712674.tar.bz2
master-31e0f0ae-438dfe5c6fbfa63f5841fda9b4ec44b2f7712674.zip
get rid of per-profile base-files
SVN-Revision: 9069
Diffstat (limited to 'target/linux/rb532/base-files/etc')
-rw-r--r--target/linux/rb532/base-files/etc/config/network12
-rw-r--r--target/linux/rb532/base-files/etc/diag.sh19
2 files changed, 31 insertions, 0 deletions
diff --git a/target/linux/rb532/base-files/etc/config/network b/target/linux/rb532/base-files/etc/config/network
new file mode 100644
index 0000000000..8279690574
--- /dev/null
+++ b/target/linux/rb532/base-files/etc/config/network
@@ -0,0 +1,12 @@
+# Copyright (C) 2006 OpenWrt.org
+
+config interface loopback
+ option ifname lo
+ option proto static
+ option ipaddr 127.0.0.1
+ option netmask 255.0.0.0
+
+config interface lan
+ option ifname eth0
+ option proto dhcp
+
diff --git a/target/linux/rb532/base-files/etc/diag.sh b/target/linux/rb532/base-files/etc/diag.sh
new file mode 100644
index 0000000000..d8f9a88257
--- /dev/null
+++ b/target/linux/rb532/base-files/etc/diag.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+# Copyright (C) 2007 OpenWrt.org
+
+set_led() {
+ local led="$1"
+ local state="$2"
+ [ -d "/sys/class/leds/rb500led:$led" ] && echo "$state" > "/sys/class/leds/rb500led:$led/brightness"
+}
+
+set_state() {
+ case "$1" in
+ preinit)
+ set_led amber 1
+ ;;
+ done)
+ set_led amber 0
+ ;;
+ esac
+}