diff options
-rw-r--r-- | scripts | 8 | ||||
-rwxr-xr-x | src.etc/init.d/mountall | 2 | ||||
-rwxr-xr-x | src.etc/init.d/mountdevsubfs | 3 | ||||
-rwxr-xr-x | src.etc/init.d/mounttmpfs | 3 | ||||
-rwxr-xr-x | src.etc/init.d/networking | 3 |
5 files changed, 4 insertions, 15 deletions
@@ -2,10 +2,10 @@ HOSTNAME hostname S03 HTTPD httpd KLOGD klogd MDEV mdev S02 K98 -FEATURE_MOUNT_FSTAB mountall -FEATURE_MOUNT_FLAGS mountdevsubfs +FEATURE_MOUNT_FSTAB mountall S05 K95 +FEATURE_MOUNT_FLAGS mountdevsubfs S03 K97 FEATURE_MOUNT_FLAGS mountkernfs S01 K99 -FEATURE_MOUNT_FLAGS mounttmpfs -IFUPDOWN networking +FEATURE_MOUNT_FLAGS mounttmpfs S03 K97 +IFUPDOWN networking S04 K96 SYSLOGD syslog TELNETD telnetd diff --git a/src.etc/init.d/mountall b/src.etc/init.d/mountall index 50e7ade..8515157 100755 --- a/src.etc/init.d/mountall +++ b/src.etc/init.d/mountall @@ -1,7 +1,5 @@ #!/bin/sh /etc/rc.common -START='20' - start() { log 'Mounting file systems' diff --git a/src.etc/init.d/mountdevsubfs b/src.etc/init.d/mountdevsubfs index 1781d40..bb976c8 100755 --- a/src.etc/init.d/mountdevsubfs +++ b/src.etc/init.d/mountdevsubfs @@ -1,8 +1,5 @@ #!/bin/sh /etc/rc.common -START='10' -STOP='90' - start() { log 'Mounting device file systems' diff --git a/src.etc/init.d/mounttmpfs b/src.etc/init.d/mounttmpfs index 267e118..269ba74 100755 --- a/src.etc/init.d/mounttmpfs +++ b/src.etc/init.d/mounttmpfs @@ -1,8 +1,5 @@ #!/bin/sh /etc/rc.common -START='10' -STOP='90' - start() { log 'Mounting temporary file systems' diff --git a/src.etc/init.d/networking b/src.etc/init.d/networking index 9073d1b..f53899f 100755 --- a/src.etc/init.d/networking +++ b/src.etc/init.d/networking @@ -1,8 +1,5 @@ #!/bin/sh /etc/rc.common -START='30' -STOP='80' - start() { log 'Configuring network interfaces' |