diff options
author | Travis Kemen <thepeople@openwrt.org> | 2009-09-05 05:33:23 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2009-09-05 05:33:23 +0000 |
commit | c6af14c4f00c3431d1d3e61053015cb312ba0dca (patch) | |
tree | 96dfeaeb7a384a71df030c2b0e2e84a24eec55bc /package/base-files | |
parent | 2a9f1baa7b7f1e07d4bbc667d3da4869c9ea6a49 (diff) | |
download | upstream-c6af14c4f00c3431d1d3e61053015cb312ba0dca.tar.gz upstream-c6af14c4f00c3431d1d3e61053015cb312ba0dca.tar.bz2 upstream-c6af14c4f00c3431d1d3e61053015cb312ba0dca.zip |
add ifup -a to boot(), closes #4543 #2781
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17515 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rwxr-xr-x | package/base-files/files/etc/init.d/network | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/base-files/files/etc/init.d/network b/package/base-files/files/etc/init.d/network index e77db02517..b63ed0b850 100755 --- a/package/base-files/files/etc/init.d/network +++ b/package/base-files/files/etc/init.d/network @@ -11,6 +11,7 @@ boot() { setup_switch [ -s /etc/config/wireless ] || \ /sbin/wifi detect > /etc/config/wireless + ifup -a /sbin/wifi up } |