Browse Source

removed /tmp mounting from system.init - does not work for real file-systems

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1119 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
ce7e4f4933
2 changed files with 6 additions and 5 deletions
  1. +5
    -3
      Documentation/Developers/CHANGELOG-RENE
  2. +1
    -2
      package/base/sysfiles/system.init

+ 5
- 3
Documentation/Developers/CHANGELOG-RENE

@ -1,11 +1,13 @@
This is not only the CHANGELOG of the desktop target, but also of the
whole rxr-tree.
*) 2003-08-19 (2.0.0-camp - 2.0.0-rc1)
- Benjamin Schieder: gpsdrive
- added ldap support to gnupg and converted the package to new-style
- fake: added libfame and libmpeg3 needs a52 objects
- Piotr Esden-Tempski: no dialog installed (#67)
- Daniel Pischl: Gaim
- Sebastian Jaenicke: fxed nessus init script
- removed /tmp mounting from system.init - fails with real filesystem
*) 2003-08-18 (2.0.0-camp - 2.0.0-rc1)

+ 1
- 2
package/base/sysfiles/system.init

@ -27,12 +27,11 @@
#
main_begin
block_begin(start, `Mounting /dev, /proc, /dev/shm and /tmp.')
block_begin(start, `Mounting /dev, /proc and /dev/shm.')
check(`[ -e /dev/.devfsd ] || mount -n /dev')
check(`mount -n /proc')
check(`mount -n /dev/shm')
mount -n /dev/pts 2> /dev/null
mount -n /tmp 2> /dev/null
dnl
if [ -f /etc/conf/hardware ]; then
. /etc/conf/hardware

Loading…
Cancel
Save