Er, I don't think there is a problem. I've appended the relevant
sections from the latest README, which I hope clarifies it.
Regards,
Richard....
===============================================================================
Chroot() gaols
--------------
The semantics of inode creation are different when the devfs is
mounted with the "explicit" option. Now, when a device entry is
registered, it will not appear until you use mknod() to create the
device. It doesn't matter if you mknod() before or after the device is
registered with dev_register(). The purpose of this behaviour is to
support chroot(2) gaols, where you want to mount a minimal devfs
inside the gaol. Only the devices you specifically want to be
available (through your mknod() setup) will be accessible.
Installation during the transition phase
========================================
Currently, not all device drivers in the kernel have been modified to
use devfs. To allow booting of kernels with and without devfs support,
you will want to copy the contents of /dev to /olddev. Then, remove
entries in /dev which are now available in devfs and make them
symbolic links to the entries in /olddev.
Finally, edit your /etc/fstab or boot scripts so that devfs is mounted
over /olddev on bootup. If devfs is supported, accessing devices
supported by devfs will follow the symlinks to devfs. If devfs is not
supported, accessing those same devices will follow the symlinks to
/olddev which contains only old-style device nodes.
Devices not supported by devfs will be found directly on /dev.
Simple! You can also follow this principle for chroot gaols.