projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added bigendian patch for via velocity driver
[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
e586704
..
9990dc7
100755
(executable)
--- a/
package/base-files/files/etc/init.d/boot
+++ b/
package/base-files/files/etc/init.d/boot
@@
-9,6
+9,13
@@
system_config() {
config_get hostname "$cfg" hostname
echo "${hostname:-OpenWrt}" > /proc/sys/kernel/hostname
config_get hostname "$cfg" hostname
echo "${hostname:-OpenWrt}" > /proc/sys/kernel/hostname
+
+ config_get conloglevel "$cfg" conloglevel
+ [ -n "$conloglevel" ] && dmesg -n "$conloglevel"
+
+ config_get log_ip "$cfg" log_ip
+ syslogd -C16 ${log_ip:+-L -R $log_ip}
+ klogd
}
apply_uci_config() {(
}
apply_uci_config() {(
@@
-28,11
+35,12
@@
start() {
mkdir -p /var/run
mkdir -p /var/log
mkdir -p /var/lock
mkdir -p /var/run
mkdir -p /var/log
mkdir -p /var/lock
+ mkdir -p /var/state
touch /var/log/wtmp
touch /var/log/lastlog
ln -s /tmp/resolv.conf.auto /tmp/resolv.conf
[ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
touch /var/log/wtmp
touch /var/log/lastlog
ln -s /tmp/resolv.conf.auto /tmp/resolv.conf
[ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
-
+
/sbin/hotplug2 --persistent --max-children 1 &
# the coldplugging of network interfaces needs to happen later, so we do it manually here
/sbin/hotplug2 --persistent --max-children 1 &
# the coldplugging of network interfaces needs to happen later, so we do it manually here
This page took
0.021385 seconds
and
4
git commands to generate.