Description of Problem: I've been creating a CD-ROM based installation of Red Hat 7.1 for myself over the past week. I enabled devfs by adding a /dev/.devfs file (it is looked for by rc.sysinit). This all works fine, and my CD-ROM+tmpfs is chugging along fine, but there are problems when unmounting the devfs on reboot. The following seems to have fixed the problem. Change the line in /etc/init.d/halt that reads: remaining=`awk '!/(^#|proc|loopfs|autofs|^none|^\/dev\/root| \/ )/ {print $2}' /proc/mounts` to: remaining=`awk '!/(^#|proc|loopfs|autofs|dev|^none|^\/dev\/root| \/ )/ {print $2}' /proc/mounts` Version-Release number of selected component (if applicable): 5.84-1 How Reproducible: Steps to Reproduce: 1. Enable devfs. Reboot. 2. Reboot again. 3. Actual Results: Expected Results: A big red [FAILED] on rebooting after: Unmounting filesystems: Additional Information: CONFIG_DEVFS_MOUNT=y was also enabled in the kernel. This might have something to do with it.
Will be fixed in 6.51-1, thanks!