[package] base-files: Use -h instead of deprecated -L for symlink check
[openwrt.git] / package / base-files / files / etc / init.d / boot
index 2ed4c50..c3019df 100755 (executable)
@@ -2,6 +2,7 @@
 # Copyright (C) 2006 OpenWrt.org
 
 START=10
+STOP=98
 
 system_config() {
        local cfg="$1"
@@ -73,10 +74,15 @@ 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/*
 }
+
+stop() {
+        killall -9 syslogd 2> /dev/null
+}
+
This page took 0.028403 seconds and 4 git commands to generate.