aboutsummaryrefslogtreecommitdiffstats
path: root/bootscripts
diff options
context:
space:
mode:
Diffstat (limited to 'bootscripts')
-rw-r--r--bootscripts/ChangeLog3
-rw-r--r--bootscripts/lfs/init.d/mountvirtfs5
2 files changed, 5 insertions, 3 deletions
diff --git a/bootscripts/ChangeLog b/bootscripts/ChangeLog
index 93b5f8991..752d41733 100644
--- a/bootscripts/ChangeLog
+++ b/bootscripts/ChangeLog
@@ -1,3 +1,6 @@
+2012-05-24 Bruce Dubbs <bdubbs@linuxfromscratch.org>
+ * Remove mkdir from mountvirtfs because fs is read only
+
2012-04-09 Bruce Dubbs <bdubbs@linuxfromscratch.org>
* General update of network scripts ifup/ifdown and services
diff --git a/bootscripts/lfs/init.d/mountvirtfs b/bootscripts/lfs/init.d/mountvirtfs
index 0330a1a97..456e62479 100644
--- a/bootscripts/lfs/init.d/mountvirtfs
+++ b/bootscripts/lfs/init.d/mountvirtfs
@@ -21,9 +21,9 @@
# Default-Start: S
# Default-Stop:
# Short-Description: Mounts /sys and /proc virtual (kernel) filesystems.
-# Mounts /run tmpfs.
+# Mounts /run (tmpfs) and /dev (devtmpfs).
# Description: Mounts /sys and /proc virtual (kernel) filesystems.
-# Mounts /run tmpfs.
+# Mounts /run (tmpfs) and /dev (devtmpfs).
# X-LFS-Provided-By: LFS
### END INIT INFO
@@ -32,7 +32,6 @@
case "${1}" in
start)
# Make sure /run/var is available before logging any messages
- mkdir -p /run
mount -n /run || failed=1
mkdir -p /run/var /run/lock /run/shm
chmod 1777 /run/shm