projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Support configurations without syslogd/klogd.
[openwrt.git]
/
package
/
base-files
/
files
/
etc
/
init.d
/
boot
diff --git
a/package/base-files/files/etc/init.d/boot
b/package/base-files/files/etc/init.d/boot
index
57c034e
..
8506424
100755
(executable)
--- a/
package/base-files/files/etc/init.d/boot
+++ b/
package/base-files/files/etc/init.d/boot
@@
-19,8
+19,9
@@
system_config() {
config_get log_ip "$cfg" log_ip
config_get log_size "$cfg" log_size
config_get log_ip "$cfg" log_ip
config_get log_size "$cfg" log_size
- syslogd -C${log_size:-16} ${log_ip:+-L -R $log_ip}
- klogd
+ config_get log_port "$cfg" log_port
+ [ -x /sbin/syslogd ] && syslogd -C${log_size:-16} ${log_ip:+-L -R $log_ip${log_port:+:$log_port}}
+ [ -x /sbin/klogd ] && klogd
}
apply_uci_config() {(
}
apply_uci_config() {(
@@
-42,12
+43,14
@@
start() {
mkdir -p /var/lock
mkdir -p /var/state
mkdir -p /tmp/.uci
mkdir -p /var/lock
mkdir -p /var/state
mkdir -p /tmp/.uci
- ch
own
0700 /tmp/.uci
+ ch
mod
0700 /tmp/.uci
touch /var/log/wtmp
touch /var/log/lastlog
touch /var/log/wtmp
touch /var/log/lastlog
+ touch /tmp/resolv.conf.auto
ln -sf /tmp/resolv.conf.auto /tmp/resolv.conf
[ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
ln -sf /tmp/resolv.conf.auto /tmp/resolv.conf
[ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
+ killall -q hotplug2
[ -x /sbin/hotplug2 ] && /sbin/hotplug2 --override --persistent \
--max-children 1 --no-coldplug &
[ -x /sbin/hotplug2 ] && /sbin/hotplug2 --override --persistent \
--max-children 1 --no-coldplug &
This page took
0.02219 seconds
and
4
git commands to generate.