aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--initscripts.spec5
-rwxr-xr-xrc.d/rc.sysinit4
2 files changed, 6 insertions, 3 deletions
diff --git a/initscripts.spec b/initscripts.spec
index 58532d81..e2a1d5e0 100644
--- a/initscripts.spec
+++ b/initscripts.spec
@@ -1,6 +1,6 @@
Summary: The inittab file and the /etc/init.d scripts.
Name: initscripts
-Version: 7.75
+Version: 7.76
License: GPL
Group: System Environment/Base
Release: 1
@@ -205,6 +205,9 @@ rm -rf $RPM_BUILD_ROOT
%ghost %attr(0664,root,utmp) /var/run/utmp
%changelog
+* Wed Sep 1 2004 Jeremy Katz <katzj@redhat.com> - 7.76-1
+- udev uses UDEV_TMPFS now
+
* Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 7.75-1
- fix sysfs configuration of qeth and lcs network interfaces
(eth, tr, hsi)
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