After doing what you did, if you should still end up with any missing entries in future you can do this (courtesy of Michael in older thread):
#!/bin/sh # Setup newest Kernel as default: KERNEL=`ls -k1 /boot/vmlinuz-*| sed s#/boot/vmlinuz-##|sort -V -r|head -1` /sbin/new-kernel-pkg --package kernel --mkinitrd --depmod --install \ --make-default $KERNEL cat /etc/grub.conf | grep -v ^serial |grep -v ^terminal > /boot/grub/grub.conf I actually ran into you issue with a recently-deployed 5108R - sounds like I should have been surprised since it should have been cleared up in that release. At any rate, I made the symlink you did and ran this script to peruse my boot folder and build a proper grub.conf. > -----Original Message----- > From: [email protected] [mailto:blueonyx- > [email protected]] On Behalf Of [email protected] > Sent: Sunday, March 17, 2013 11:26 AM > To: 'BlueOnyx General Mailing List' > Subject: [BlueOnyx:12558] Re: Kernel Question > > > Can you document the fix so we can choose to do it? > > I did this myself in the end. Rebooted and it works so I think I have it right. > > First copy /etc/grub.conf to /boot/grub/grub.conf: > > rm /boot/grub/grub.conf > cp /etc/grub.conf /boot/grub/grub.conf > chmod 644 /boot/grub/grub.conf > > Then create a Symlink where /etc/grub.conf points to /boot/grub/grub.conf > > rm /etc/grub.conf > ln -s /boot/grub/grub.conf /etc/grub.conf > > Jason > > > _______________________________________________ > Blueonyx mailing list > [email protected] > http://mail.blueonyx.it/mailman/listinfo/blueonyx _______________________________________________ Blueonyx mailing list [email protected] http://mail.blueonyx.it/mailman/listinfo/blueonyx
