2
0
forked from Ivasoft/openwrt

br2684ctl: resolve a boot time race condition with nas0 bringup by using explicit notification when init is done

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 48321
This commit is contained in:
Felix Fietkau
2016-01-18 15:35:30 +00:00
parent 262f054c6e
commit f6e38ec125
3 changed files with 7 additions and 13 deletions

View File

@@ -60,20 +60,11 @@ start_daemon() {
procd_set_param command \
/usr/sbin/br2684ctl_wrap "nas$unit" \
-c "$unit" -e "$encaps" -p "$payload" \
-a "$circuit" ${qos:+-q "$qos"} ${sendsize:+-s "$sendsize"}
-a "$circuit" ${qos:+-q "$qos"} ${sendsize:+-s "$sendsize"} \
-S /lib/netifd/br2684-up
procd_close_instance
}
service_running() {
. /lib/functions/network.sh
sleep 1
for path in /sys/class/net/nas*; do
dev="${path##*/}"
network_ready_device "$dev"
done
}
service_triggers() {
local script=$(readlink "$initscript")
local name=$(basename ${script:-$initscript})