https://bugzilla.novell.com/show_bug.cgi?id=466484 User werner@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=466484#c21 --- Comment #21 from Dr. Werner Fink <werner@novell.com> 2009-01-19 05:59:20 MST --- What does your /etc/init.d/boot.local script do? AFAICS from your log the /sys file system seems to be mounted. But the message mount: /sys not mounted already, or bad option leads me to the guess that there is an error. Or it could be that you're missing a module or are running a wrong kernel as the /sys/kernel/security can not be mounted. The only difference between mounting /sys between old /etc/init.d/boot [...] echo -n "Mounting procfs at /proc" mount -n -t proc proc /proc rc_status -v -r echo -n "Mounting sysfs at /sys" mount -n -t sysfs sysfs /sys rc_status -v -r [...] and new /etc/init.d/boot is [...] if test ! -d /proc/1 ; then echo -n "Mounting procfs at /proc" mount -n -t proc proc /proc rc_status -v -r fi if test ! -d /sys/block ; then echo -n "Mounting sysfs at /sys" mount -n -t sysfs sysfs /sys rc_status -v -r fi [...] .. this may fail if you have a mount point /sys with an directory named block therein. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.