I have udev system and Gentoo startup scripts are mounting ramfs on /dev. This is very bad idea: dd if=/dev/sda1 of=/dev/sda17 will lock hard your sysem because of oom because of this stupid typo (/dev/sda17 instead of /dev/evms/sda17 - kernel does not have enought minor numbers for partitions over 15 on SCSI disks, I am using evms instead)!!! It is possible - I triggered it 3 time yesterday before I realized what is wrong. I think /dev should be very size-limited tmpfs (32 MB will be more than anybody will ever need). Reproducible: Always Steps to Reproduce:
done deal, changed rc to mount tmpfs insetad of ramfs
Isn't tmpfs vs ramfs set in /etc/conf.d/rc.conf (if svcmount is set at all)?
svcmount != udev mounting of /dev it was hardcoded to ramfs, now it's hardcoded to tmpfs ;)