I installed a couple of chess games and Bookworm stopped booting. So now I can only choose an alternate from the boot menu.
These are the possible boot folders I have:
However, my boot menu gives me only 2 choices, and the first choice no longer works:
How do I enable the other 3 possible folder choices either in the initial boot2config menu, or in the Puppy boot menu?
My grub.cfg looks like this:
Code: Select all
# grub.cfg produced by grub2config 2.0.2
set default=0
set timeout=13
insmod all_video
insmod gfxterm
insmod png
insmod jpeg
terminal_output gfxterm
set menu_color_highlight=yellow/blue
set gfxmode=auto
set theme=/theme/puppy/theme.txt
# Setting the boot screen font via theme.txt
# will fail, so we use loadfont in grub.cfg.
loadfont /theme/puppy/DejaVuSansMono18.pf2
# Puppy Linux
menuentry 'Dpupbw64 10.0.6 (nvme0n1p2/Bookworm64_10.0.6)' --class puppylinux{
search --no-floppy --set=root --fs-uuid b4db67d6-077d-422e-8cac-99b8f8008ead
linux /Bookworm64_10.0.6/vmlinuz psubdir=/Bookworm64_10.0.6 pmedia=ataflash pfix=copy
initrd /Bookworm64_10.0.6/initrd.gz
}
menuentry 'Dpupbw64 10.0.6 (nvme0n1p2/Bookworm64_10.0.6) RAM mode' --class puppylinux{
search --no-floppy --set=root --fs-uuid b4db67d6-077d-422e-8cac-99b8f8008ead
linux /Bookworm64_10.0.6/vmlinuz psubdir=/Bookworm64_10.0.6 pmedia=ataflash pfix=ram,copy
initrd /Bookworm64_10.0.6/initrd.gz
}
menuentry 'Fossapup64 9.5 (nvme0n1p4/puppylivecdbuild)' --class puppylinux{
search --no-floppy --set=root --fs-uuid 52d8efaf-bdf6-4281-aeea-871217161d5c
linux /puppylivecdbuild/vmlinuz psubdir=/puppylivecdbuild pmedia=ataflash pfix=copy
initrd /puppylivecdbuild/initrd.gz
}
menuentry 'Windows uefi boot' --class puppylinux{
search --no-floppy --set=root --file /EFI/Microsoft/Boot/bootmgfw.efi
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
if [ $grub_platform = "efi" ] ; then
menuentry 'UEFI Firmware Settings' --class puppylinux{
fwsetup
}
fi
# custom menu
if [ -f /custom.cfg ] ;then source /custom.cfg ;fi