X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/a7ad6546eafca05ef80e50a7c1477c53f83a5c23..9938a761e9c6839ea43e70ba921d05a8216ca9a0:/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 3da0d6bc9..7f6b26791 100755 --- a/package/base-files/files/etc/init.d/boot +++ b/package/base-files/files/etc/init.d/boot @@ -2,6 +2,7 @@ # Copyright (C) 2006 OpenWrt.org START=10 +STOP=98 system_config() { local cfg="$1" @@ -18,6 +19,9 @@ system_config() { config_get timezone "$cfg" timezone 'UTC' echo "$timezone" > /tmp/TZ + config_get zonename "$cfg" zonename + [ -n "$zonename" ] && [ -f "/usr/share/zoneinfo/$zonename" ] && ln -s "/usr/share/zoneinfo/$zonename" /tmp/localtime + if [ -x /sbin/syslogd ]; then local log_ip log_size log_port log_type log_file config_get log_ip "$cfg" log_ip @@ -26,29 +30,28 @@ system_config() { config_get log_type "$cfg" log_type circular config_get log_file "$cfg" log_file "/var/log/messages" if [ "$log_type" = "file" ]; then - syslogd -s $log_size -O $log_file ${log_ip:+-L -R ${log_ip}:${log_port}} -S + syslogd -s $log_size -O $log_file \ + ${log_ip:+-L -R ${log_ip}:${log_port}} \ + ${conloglevel:+-l $conloglevel} -S else - syslogd -C${log_size} ${log_ip:+-L -R ${log_ip}:${log_port}} + syslogd -C${log_size} \ + ${log_ip:+-L -R ${log_ip}:${log_port}} \ + ${conloglevel:+-l $conloglevel} fi fi config_get klogconloglevel "$cfg" klogconloglevel [ -x /sbin/klogd ] && klogd ${klogconloglevel:+-c $klogconloglevel} } -apply_uci_config() {( - include /lib/config - uci_apply_defaults -)} +apply_uci_config() { + sh -c '. /etc/functions.sh; include /lib/config; uci_apply_defaults' +} start() { [ -f /proc/mounts ] || /sbin/mount_root [ -f /proc/jffs2_bbc ] && echo "S" > /proc/jffs2_bbc [ -f /proc/net/vlan/config ] && vconfig set_name_type DEV_PLUS_VID_NO_PAD - apply_uci_config - config_load system - config_foreach system_config system - mkdir -p /var/run mkdir -p /var/log mkdir -p /var/lock @@ -59,8 +62,21 @@ start() { touch /var/log/lastlog touch /tmp/resolv.conf.auto ln -sf /tmp/resolv.conf.auto /tmp/resolv.conf + grep -q debugfs /proc/filesystems && mount -t debugfs debugfs /sys/kernel/debug [ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe + load_modules /etc/modules.d/* + + /sbin/wifi detect > /tmp/wireless.tmp + [ -s /tmp/wireless.tmp ] && { + cat /tmp/wireless.tmp >> /etc/config/wireless + } + rm -f /tmp/wireless.tmp + + apply_uci_config + config_load system + config_foreach system_config system + killall -q hotplug2 [ -x /sbin/hotplug2 ] && /sbin/hotplug2 --override --persistent \ --set-worker /lib/hotplug2/worker_fork.so \ @@ -73,10 +89,18 @@ start() { done # create /dev/root if it doesn't exist - [ -e /dev/root ] || { + [ -e /dev/root -o -h /dev/root ] || { rootdev=$(awk 'BEGIN { RS=" "; FS="="; } $1 == "root" { print $2 }' < /proc/cmdline) [ -n "$rootdev" ] && ln -s "$rootdev" /dev/root } - load_modules /etc/modules.d/* + # another round of USB coldplugging to kick devices into operation which lacked drivers before + for dev in /sys/bus/usb/devices/*/uevent; do + [ -e "$dev" ] && echo -n add > "$dev" + done +} + +stop() { + killall -9 syslogd 2> /dev/null } +