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 | 1776830e6452a5b74cd658d087bb34c930c5907b (patch) | |
tree | 1d30751eb2ed6afbf8b60108c77cf18077c42af1 /package/base-files/files | |
parent | 4c47562a3757766c30198300c631a25176c26456 (diff) | |
download | upstream-1776830e6452a5b74cd658d087bb34c930c5907b.tar.gz upstream-1776830e6452a5b74cd658d087bb34c930c5907b.tar.bz2 upstream-1776830e6452a5b74cd658d087bb34c930c5907b.zip |
add ifup -a to boot(), closes #4543 #2781
SVN-Revision: 17515
Diffstat (limited to 'package/base-files/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 } |