From: Felix Fietkau Date: Tue, 31 Dec 2013 13:09:20 +0000 (+0000) Subject: netifd: initialize the switch early at start time and on reload (fixes #13015) X-Git-Tag: reboot~8283 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=20151a3394d446cc129f59aa2893c8af61e6c929 netifd: initialize the switch early at start time and on reload (fixes #13015) Signed-off-by: Felix Fietkau SVN-Revision: 39183 --- diff --git a/package/network/config/netifd/files/etc/init.d/network b/package/network/config/netifd/files/etc/init.d/network index bc03783eb5..e117463ad1 100755 --- a/package/network/config/netifd/files/etc/init.d/network +++ b/package/network/config/netifd/files/etc/init.d/network @@ -5,7 +5,16 @@ STOP=90 USE_PROCD=1 +init_switch() { + setup_switch() { return 0; } + + include /lib/network + setup_switch +} + start_service() { + init_switch + procd_open_instance procd_set_param command /sbin/netifd procd_set_param respawn @@ -17,6 +26,7 @@ start_service() { } reload_service() { + init_switch ubus call network reload /sbin/wifi reload_legacy } @@ -26,13 +36,7 @@ stop_service() { } service_running() { - setup_switch() { return 0; } - - include /lib/network - setup_switch - sleep 5 - /sbin/wifi reload_legacy }