bt wrote:

> The prompt for CONFIG_DEVTMPFS_MOUNT is: "Automount devtmpfs at /dev,
> after the kernel mounted the rootfs"
>
> In my first pass at kernel configuration, I had CONFIG_DEVTMPFS set
> (as suggested), but CONFIG_DEVTMPFS_MOUNT was not set (just rechecked
> the config file). That config had issues, but maybe not due to this.

CONFIG_DEVTMPFS_MOUNT shouldn't be required. mountvirtfs does:

if ! mountpoint /dev >/dev/null; then
    log_info_msg2 " ${INFO}/dev"
    mount -n -o mode=0755,nosuid /dev  || failed=1
fi

and that should take care of it.

   -- Bruce
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-dev
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to