diff options
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/ChangeLog | 4 | ||||
-rw-r--r-- | bootscripts/lfs/init.d/mountvirtfs | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/bootscripts/ChangeLog b/bootscripts/ChangeLog index befc985b2..8217e2712 100644 --- a/bootscripts/ChangeLog +++ b/bootscripts/ChangeLog @@ -1,3 +1,7 @@ +2011-12-23 Matt Burgess <matthew@linuxfromscratch.org> + + * lfs/init.d/mountvirtfs: Correct permissions on /run/shm + 2011-11-28 DJ Lucas <dj@linuxfromscratch.org> * lfs/init.d/mountfs: Add '-t nosysfs' to umount command diff --git a/bootscripts/lfs/init.d/mountvirtfs b/bootscripts/lfs/init.d/mountvirtfs index be6c8d0a0..b8de10076 100644 --- a/bootscripts/lfs/init.d/mountvirtfs +++ b/bootscripts/lfs/init.d/mountvirtfs @@ -35,6 +35,7 @@ case "${1}" in mkdir -p /run mount -n /run || failed=1 mkdir -p /run/{var,lock,shm} + chown 1777 /run/shm log_info_msg "Mounting virtual file systems: ${INFO}/run" |