https://bugzilla.novell.com/show_bug.cgi?id=739677 https://bugzilla.novell.com/show_bug.cgi?id=739677#c2 --- Comment #2 from Damien Allain <Damien.Allain@legos.obs-mip.fr> 2012-01-19 11:12:33 UTC --- WORKAROUND that is a horrible hack but shows this IS a kernel bug. # The idea is to ensure we halt with grub only, after fully rebooting from a 2.6 kernel. # INSTALL 2.6 KERNEL zypper addrepo http://download.opensuse.org/repositories/Kernel:/openSUSE-11.4/openSUSE_11.... # Select kernel-default if your kernel is NOT kernel-default, so that you do not downgrade your original kernel zypper in kernel-default-2.6.37.6-86.1.x86_64 # REBOOT TO 2.6 WHEN ASKED TO SHUTDOWN # In /etc/init.d/halt, after ``*halt)'', add a line with : if [ `uname -r` \> 2 ];then grubonce 2.6;exec /etc/init.d/reboot;fi # FORCE /etc/init.d/halt FOR SHUTDOWN cd /sbin mkdir old halt="shutdown poweroff halt" mv -v $halt old for f in $halt;do echo exec /etc/init.d/halt>$f;done chmod -c a+rx $halt # AFTER FULLY REBOOTING FROM A 2.6 KERNEL, HALT WITH GRUB # In /etc/X11/xdm/Xsetup, before ``Enable Numlock if set'', add a line with : if [ `uname -r` \< 3 ];then grubonce halt;/etc/init.d/reboot & fi # add relevant grub entry with printf "\n\ntitle halt\n halt\n" >>/boot/grub/menu.lst -- 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.