mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-07 13:21:56 +02:00
7 lines
102 B
Bash
Executable File
7 lines
102 B
Bash
Executable File
#!/bin/sh
|
|
syslogd -C 16
|
|
klogd
|
|
for i in /etc/init.d/S* ;do
|
|
$i start 2>&1 | logger -s -p 6 -t ''
|
|
done
|