summaryrefslogtreecommitdiff
path: root/openwrt/package/base-files/files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-08-27 15:40:56 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-08-27 15:40:56 +0000
commit4bb21d84479c8ec5236c946f83a8fdf11dd9ffb8 (patch)
treee2319778e8220eceba515b172b6e57864b980db2 /openwrt/package/base-files/files
parent138fee69d1146783d97eed8a4fbd26c1a7e6930d (diff)
downloadmtk-20170518-4bb21d84479c8ec5236c946f83a8fdf11dd9ffb8.zip
mtk-20170518-4bb21d84479c8ec5236c946f83a8fdf11dd9ffb8.tar.gz
mtk-20170518-4bb21d84479c8ec5236c946f83a8fdf11dd9ffb8.tar.bz2
move hotplug script into an extra package so that it doesn't conflict with nas
SVN-Revision: 1772
Diffstat (limited to 'openwrt/package/base-files/files')
-rwxr-xr-xopenwrt/package/base-files/files/hotplug6
1 files changed, 6 insertions, 0 deletions
diff --git a/openwrt/package/base-files/files/hotplug b/openwrt/package/base-files/files/hotplug
new file mode 100755
index 0000000..74134e8
--- /dev/null
+++ b/openwrt/package/base-files/files/hotplug
@@ -0,0 +1,6 @@
+#!/bin/ash
+# $Id$
+[ "${INTERFACE%%[0-9]*}" = "wds" ] && {
+ ifconfig $INTERFACE 0.0.0.0 up
+ /usr/sbin/brctl addif br0 $INTERFACE
+}