diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-12-31 13:09:20 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-12-31 13:09:20 +0000 |
commit | 3328763a8d0abbcbcf79b5a91e6abbb0b55b3119 (patch) | |
tree | bc0bd94ba41e16394fd53c4d11863fa354b9afa3 /package/network/config/netifd | |
parent | 56688626b0626e16f24fd31c16087de5dc98b785 (diff) |
netifd: initialize the switch early at start time and on reload (fixes #13015)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39183 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/config/netifd')
-rwxr-xr-x | package/network/config/netifd/files/etc/init.d/network | 16 |
1 files changed, 10 insertions, 6 deletions
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 } |