diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-09-05 13:05:59 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-09-05 13:05:59 +0000 |
commit | 1cb72e84363e3aa704cd599a2dded153cfe29355 (patch) | |
tree | 4ee878c0c9eff342662037af79b19ca83a70e246 | |
parent | c6af14c4f00c3431d1d3e61053015cb312ba0dca (diff) | |
download | upstream-1cb72e84363e3aa704cd599a2dded153cfe29355.tar.gz upstream-1cb72e84363e3aa704cd599a2dded153cfe29355.tar.bz2 upstream-1cb72e84363e3aa704cd599a2dded153cfe29355.zip |
Revert "add ifup -a to boot(), closes #4543 #2781" (r17515)
Hotpluggable interfaces are already brought up before /etc/init.d/network boot
and this change can break them, if the ifup -a command runs at the wrong time,
also starts many interfaces twice, which can lead to issues with PPPoE.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17516 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | package/base-files/files/etc/init.d/network | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/network b/package/base-files/files/etc/init.d/network index b63ed0b850..e77db02517 100755 --- a/package/base-files/files/etc/init.d/network +++ b/package/base-files/files/etc/init.d/network @@ -11,7 +11,6 @@ boot() { setup_switch [ -s /etc/config/wireless ] || \ /sbin/wifi detect > /etc/config/wireless - ifup -a /sbin/wifi up } |