aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-09-01 15:30:06 +0000
committerJeremy Katz <katzj@redhat.com>2004-09-01 15:30:06 +0000
commita421bec5394f3991bc917060fc7a7a6bc0804860 (patch)
tree848901dfb745a4326554c55941fca2b00377c8d9 /rc.d
parent6bb980279c2bfb32ecf76d3a6f637d0b8366a65a (diff)
downloadinitscripts-a421bec5394f3991bc917060fc7a7a6bc0804860.tar
initscripts-a421bec5394f3991bc917060fc7a7a6bc0804860.tar.gz
initscripts-a421bec5394f3991bc917060fc7a7a6bc0804860.tar.bz2
initscripts-a421bec5394f3991bc917060fc7a7a6bc0804860.tar.xz
initscripts-a421bec5394f3991bc917060fc7a7a6bc0804860.zip
udev uses UDEV_TMPFS nowr7-76
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d/rc.sysinit4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 94808669..cc6eb0c1 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -125,7 +125,7 @@ if [ -f /etc/udev/udev.conf ];then
. /etc/udev/udev.conf
fi
-if [ "$USE_UDEV" = "yes" -a "$UDEV_RAMFS" = "yes" ]; then
+if [ "$USE_UDEV" = "yes" -a "$UDEV_TMPFS" = "yes" ]; then
[ -x /sbin/start_udev ] && /sbin/start_udev
fi
@@ -466,7 +466,7 @@ state=`awk '/ \/ / && ($3 !~ /rootfs/) { print $4 }' /proc/mounts`
[ "$state" != "rw" -a "$READONLY" != "yes" ] && \
action $"Remounting root filesystem in read-write mode: " mount -n -o remount,rw /
-if [ "$USE_UDEV" = "yes" -a "$UDEV_RAMFS" = "no" ]; then
+if [ "$USE_UDEV" = "yes" -a "$UDEV_TMPFS" = "no" ]; then
[ -x /sbin/start_udev ] && /sbin/start_udev
fi