13 Nov
2010
13 Nov
'10
5:29 p.m.
Hi. I've found out that /sbin/start_udev script when called from rc.single remounts /dev direcrory and recopies devices from /lib/udev/devices/, which causes udev to function improperly. Devices aren't created any more in /dev/pts. So i would advise to put the following lines: /bin/mount -nt tmpfs udev /dev -o exec,nosuid,mode=0755 echo > /proc/sys/kernel/hotplug /bin/cp -a /lib/udev/devices/* /dev/ in the beginning of /etc/rc script and strip them out from /sbin/start_udev. That helped me to fix the issue. /Sergei