summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-06-03 12:16:38 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-06-03 12:16:38 (EDT)
commitd910a0a3976ec67a83f6dc09f39d523ea2597c1f (patch)
treef483711c5bc4d0f191d42daafe5a04128a98cbd4
parentd8a0552bb6f7d41bf40732776b67a7d4412291e7 (diff)
Make core system /etc/rc.d/ links at build time.
-rw-r--r--scripts8
-rwxr-xr-xsrc.etc/init.d/mountall2
-rwxr-xr-xsrc.etc/init.d/mountdevsubfs3
-rwxr-xr-xsrc.etc/init.d/mounttmpfs3
-rwxr-xr-xsrc.etc/init.d/networking3
5 files changed, 4 insertions, 15 deletions
diff --git a/scripts b/scripts
index 042e3d3..26ccbe3 100644
--- a/scripts
+++ b/scripts
@@ -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'