Quote:
|
So i think that i should somehow tell in /boot/grub/menu.lst to system to boot this kernel, but howto do that.
|
This is quite easy (once you know how

): You should have an entry similar to this in /boot/grub/menu.lst:
Code:
###Don't change this comment - YaST2 identifier: Original name: linux###
title Linux
kernel (hd0,4)/boot/vmlinuz some options
initrd (hd0,4)/boot/initrd
This loads the standard kernel. To load your specific kernel, duplicate these lines and simply add the full filenames:
Code:
###Don't change this comment - YaST2 identifier: Original name: linux###
title Linux
kernel (hd0,4)/boot/vmlinuz some options
initrd (hd0,4)/boot/initrd
###Don't change this comment - YaST2 identifier: Original name: linux###
title Multimedia
kernel (hd0,4)/boot/vmlinuz-2.6.11.12jad2 some options
initrd (hd0,4)/boot/initrd-2.6.11.12jad2
On the next reboot, you can choose between old and new kernel.