I tried and failed to get my latest kernel update to automatically add extra listings to the boot menu along with the new kernel listings.
I would like to always have a GUI login, CLI login, and failsafe entry available from the boot menu. The computer boots to GUI by default (set in /etc/sysconfig, IIRC), but I manually added a CLI entry to the GRUB boot menu (/boot/grub/menu.lst), and watched it disappear on a kernel update. So this time when I saw a kernel update available, I thought I’d try to get it to automatically add a CLI entry. There is some information in a file–/boot/boot.readme–that mentioned bootloader settings maintained in another file–/etc/sysconfig/bootloader. So, I opened up /etc/sysconfig/bootloader. It lists Default, Failsafe, and Xen headings, and their special boot options. I don’t use Xen, and probably don’t have it installed, as it never appears in the boot menu. However, the format for automatically adding custom headings to the boot menu seemed to be:
HEADING_APPEND="[boot options]"
HEADING_VGA="[vga mode]"
So, I added:
CLI1024_APPEND=“3”
CLI1024_VGA=“773”
Then, performed updates which included the kernel. Upon reboot, the new kernel was in place and bootable from GRUB’s boot menu, but my extra CLI listing was missing again.
Any suggestions on what more I can do for this?