summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/init.d/network
diff options
context:
space:
mode:
Diffstat (limited to 'package/base-files/files/etc/init.d/network')
-rwxr-xr-xpackage/base-files/files/etc/init.d/network15
1 files changed, 14 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/network b/package/base-files/files/etc/init.d/network
index 45d5311a7..950b33726 100755
--- a/package/base-files/files/etc/init.d/network
+++ b/package/base-files/files/etc/init.d/network
@@ -2,7 +2,7 @@
# Copyright (C) 2006 OpenWrt.org
START=40
-start() {
+boot() {
setup_switch() { return 0; }
include /lib/network
@@ -12,3 +12,16 @@ start() {
/sbin/wifi up
}
+start() {
+ ifup -a
+ /sbin/wifi up
+}
+
+restart() {
+ ifup -a
+ /sbin/wifi up
+}
+
+stop() {
+ ifdown -a
+}