Comment 3 for bug 413345

Revision history for this message
komputes (komputes) wrote : Re: Ubuntu 9.10 Alternate Installer - GRUB2 incorrectly assumes all partitions are LVM managed when writing grub.cfg

Also, every time a new kernel is installed in karmic, I need to modify the grub.cfg to the following to be able to boot into Jaunty:
==
menuentry "Ubuntu, Linux 2.6.28-13-generic" {
 set root=(hd0,1)
 search --no-floppy --fs-uuid --set 1768a7ec-e0ce-8fa4-814b-2e628de7c2b2
 linux /vmlinuz-2.6.28-13-generic root=UUID=e1b20064-8204-4150-be5e-83bd537defc8 ro quiet splash
 initrd /initrd.img-2.6.28-13-generic
}
==

-OR-

==
menuentry "Ubuntu, Linux 2.6.28-13-generic" {
 set root=(hd0,1)
 search --no-floppy --fs-uuid --set 1768a7ec-e0ce-8fa4-814b-2e628de7c2b2
 linux /vmlinuz-2.6.28-13-generic root=/dev/sda8 ro quiet splash
 initrd /initrd.img-2.6.28-13-generic
}
==

How can I get GRUB to stop using /dev/mapper/cryptdisk-karmic as the root of the entries that are supposed to point to the Jaunty partition?