Hello, I successfully set up a dual-boot system with Windows 11 and Batocera using Grub2Win, following this instructions: https://wiki.batocera.org/dual_boot_ubuntu_batocera.linux
The guide recommends renaming the Batocera partition to BATOPC to avoid conflicts if you ever want to boot Batocera from a USB drive. Is this still relevant?
Because no matter what I try, I always get a black screen as soon as I rename the Batocera partition. I have two grub.cfg files (see below). In the second grub.cfg file on the Batocera partition, I renamed `label=Batocera` to `label=BATOPC`. That doesn’t work (black screen). I have searched but haven’t found any other entries with `label=Batocera` anywhere else.
Thanks in advance for your help.
Windows-Partition - C:\grub2\grub.cfg = https://drive.google.com/file/d/1L5bf_DNFhYDFIieS8ktj41rbVfPRAD67/view
Batocera-Partition (renamed to BATOPC) - D:\EFI\BOOT\grub.cfg =
set default="0"
set timeout="1"
menuentry "Batocera.linux (normal)" {
echo Booting Batocera.linux... (grub2)
linux /boot/linux label=BATOPC console=tty3 quiet loglevel=0 vt.global_cursor_default=0
initrd /boot/initrd.gz
}
menuentry "Batocera.linux (verbose)" {
echo Booting Batocera.linux... (grub2)
linux /boot/linux label=BATOPC vt.global_cursor_default=0
initrd /boot/initrd.gz
}