mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 03:14:04 +02:00
e26af005b5
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7160 3c298f89-4303-0410-b956-a3cf2f4a3e73
11 lines
139 B
Bash
Executable File
11 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
(
|
|
for i in /etc/rc.d/S*; do
|
|
$i boot 2>&1
|
|
done
|
|
|
|
sysctl -p >&-
|
|
) | logger -s -p 6 -t '' &
|