/sbin/rc was recently changed to mount /proc as follows: ebegin "Mounting proc at /proc" if is_in_fstab /proc ; then try mount -n /proc else try mount -n -t proc none /proc fi eend $? The previous working version simply did: ebegin "Mounting proc at /proc" try mount -n -t proc none /proc eend $? If the user's /etc/fstab contains lines like this: none /proc proc defaults 0 0 ... /proc /mnt/gentoo32/proc auto bind 0 0 then 'mount /proc' will try to mount that second line, it will fail, and the system will fail to boot.
looks like this pertains to /sys as well...
*** This bug has been marked as a duplicate of 73536 ***