fix a typo in the hwmode handling in /sbin/wifi (thx, maddes)
[openwrt.git] / package / base-files / files / etc / init.d / boot
index 3da0d6b..2ed4c50 100755 (executable)
@@ -35,10 +35,9 @@ system_config() {
        [ -x /sbin/klogd ] && klogd ${klogconloglevel:+-c $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
 
 start() {
        [ -f /proc/mounts ] || /sbin/mount_root
@@ -59,6 +58,7 @@ start() {
        touch /var/log/lastlog
        touch /tmp/resolv.conf.auto
        ln -sf /tmp/resolv.conf.auto /tmp/resolv.conf
        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
 
        killall -q hotplug2
        [ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
 
        killall -q hotplug2
This page took 0.023747 seconds and 4 git commands to generate.