Punt /dev/shm from default /etc/fstab as we handle it and add a helpful hint about the RC_USE_FSTAB option.
This commit is contained in:
parent
ed249bad88
commit
67b04947b3
@ -1,6 +1,11 @@
|
|||||||
# ChangeLog for Gentoo System Intialization ("rc") scripts
|
# ChangeLog for Gentoo System Intialization ("rc") scripts
|
||||||
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPLv2
|
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPLv2
|
||||||
|
|
||||||
|
01 Aug 2007; Mike Frysinger <vapier@gentoo.org>:
|
||||||
|
|
||||||
|
Punt /dev/shm from default /etc/fstab as we handle it and add a helpful
|
||||||
|
hint about the RC_USE_FSTAB option.
|
||||||
|
|
||||||
31 Jul 2007; Roy Marples <uberlord@gentoo.org>:
|
31 Jul 2007; Roy Marples <uberlord@gentoo.org>:
|
||||||
|
|
||||||
All our binaries are now mulicalls into rc, which makes our on disk size
|
All our binaries are now mulicalls into rc, which makes our on disk size
|
||||||
|
@ -10,6 +10,10 @@
|
|||||||
#
|
#
|
||||||
# See the manpage fstab(5) for more information.
|
# See the manpage fstab(5) for more information.
|
||||||
#
|
#
|
||||||
|
# Keep in mind that the boot scripts will ignore many of the core mounts
|
||||||
|
# (like /proc or /dev or /dev/shm) unless you set RC_USE_FSTAB in your
|
||||||
|
# /etc/conf.d/rc file appropriately.
|
||||||
|
#
|
||||||
|
|
||||||
# <fs> <mountpoint> <type> <opts> <dump/pass>
|
# <fs> <mountpoint> <type> <opts> <dump/pass>
|
||||||
|
|
||||||
@ -18,10 +22,4 @@
|
|||||||
/dev/ROOT / ext3 noatime 0 1
|
/dev/ROOT / ext3 noatime 0 1
|
||||||
/dev/SWAP none swap sw 0 0
|
/dev/SWAP none swap sw 0 0
|
||||||
/dev/cdrom /mnt/cdrom auto noauto,ro 0 0
|
/dev/cdrom /mnt/cdrom auto noauto,ro 0 0
|
||||||
#/dev/fd0 /mnt/floppy auto noauto 0 0
|
/dev/fd0 /mnt/floppy auto noauto 0 0
|
||||||
|
|
||||||
# glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for
|
|
||||||
# POSIX shared memory (shm_open, shm_unlink).
|
|
||||||
# (tmpfs is a dynamically expandable/shrinkable ramdisk, and will
|
|
||||||
# use almost no memory if not populated with files)
|
|
||||||
shm /dev/shm tmpfs nodev,nosuid,noexec 0 0
|
|
||||||
|
Loading…
Reference in New Issue
Block a user