I can boot kernel 3.4.4-3.fc17.i686 just fine. When I try to boot 3.4.4-
5.fc17.i686 I hang right after mounting my storage partition, then I get several dependency errors and get dropped to emergency mode. I am using some slightly unusual boot parameters, so I'll include those. Keeping in mind that the only difference between the working boot and the non-working one is the kernel release version.
Code:
### BEGIN /etc/grub.d/10_linux ###
submenu 'Advanced options for Fedora Linux' $menuentry_id_option 'gnulinux-advanced-c65b520c-a781-4fc3-94f5-2621aa4a82ce' {
menuentry 'Fedora (3.4.4-5.fc17.i686)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.4.4-3.fc17.i686-advanced-c65b520c-a781-4fc3-94f5-2621aa4a82ce' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1' 7430bfb3-9756-4acf-a09f-9ca1e6c65532
else
search --no-floppy --fs-uuid --set=root 7430bfb3-9756-4acf-a09f-9ca1e6c65532
fi
echo 'Loading Fedora (3.4.4-5.fc17.i686)'
linux /vmlinuz-3.4.4-5.fc17.i686 root=/dev/sda2 rootfstype=ext4 SYSFONT=True KEYTABLE=us LANG=en_US.UTF-8 libahci.ignore_sss=1 raid=noautodetect
echo 'Loading initial ramdisk ...'
initrd /initramfs-3.4.4-5.fc17.i686.img
}
Having had some issues with the nvidia kernel modules in the past I booted the system into the old kernel, removed them, and rebooted. Same result.
Suspecting I may have a corrupted download of the kernel I removed the kernel, then reinstalled it with presto disabled. Same result.
I had hoped that the kernel update would fix an occasional problem where I get kicked to the login screen without warning or apparent reason,
I believe there is a bug open for this already so I won't belabor that issue.
Thoughts, suggestions?
---------- Post added at 10:33 PM ---------- Previous post was at 10:12 PM ----------
I noticed that some of the options I had setup weren't used when the new kernel was installed. So I reran "grub2-mkconfig -o /boot/grub2/grub.cfg" and tried to boot the new kernel again. Still no dice, but here's what was just tried.
Code:
menuentry 'Fedora Linux' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-c65b520c-a781-4fc3-94f5-2621aa4a82ce' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1' 7430bfb3-9756-4acf-a09f-9ca1e6c65532
else
search --no-floppy --fs-uuid --set=root 7430bfb3-9756-4acf-a09f-9ca1e6c65532
fi
echo 'Loading Linux 3.4.4-5.fc17.i686 ...'
linux /vmlinuz-3.4.4-5.fc17.i686 root=/dev/sda2 rootfstype=ext4 SYSFONT=latarcyrheb-sun16 KEYTABLE=us LANG=en_US.UTF-8 libahci.ignore_sss=1 raid=noautodetect
echo 'Loading initial ramdisk ...'
initrd /initramfs-3.4.4-5.fc17.i686.img
}