mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-09 18:08:04 +02:00
390d5ffd22
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28839 3c298f89-4303-0410-b956-a3cf2f4a3e73
25 lines
342 B
Bash
Executable File
25 lines
342 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=20
|
|
|
|
SERVICE_DAEMONIZE=1
|
|
SERVICE_WRITE_PID=1
|
|
|
|
start() {
|
|
stop
|
|
[ -e /proc/sys/kernel/core_pattern ] && {
|
|
ulimit -c unlimited
|
|
echo '/tmp/%e.%p.%s.%t.core' > /proc/sys/kernel/core_pattern
|
|
}
|
|
service_start /sbin/netifd
|
|
sleep 1
|
|
}
|
|
|
|
stop() {
|
|
service_stop /sbin/netifd
|
|
}
|
|
|
|
reload() {
|
|
ubus call network reload
|
|
}
|