summaryrefslogtreecommitdiffstats
path: root/target/linux/rb532/base-files/etc
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-29 14:27:54 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-29 14:27:54 +0000
commit7aa11efc1796c29d446eca99ec7d9bc7ed2c0072 (patch)
tree68991157c40028c3c75e338767cc54f5effa8190 /target/linux/rb532/base-files/etc
parent59219c44303df04689fe43e06abed38e1cf13848 (diff)
get rid of per-profile base-files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9069 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 000000000..827969057
--- /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 000000000..d8f9a8825
--- /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
+}