(Easy Scartgap 6.6.3)
In /usr/local/limine-installer/limine-installer, there is a problem with the line 520
Code: Select all
efibootmgr -c -d /dev/${DRVdest} -p ${ESPdest/*[a-z]/} -L limine -l "\EFI\limine\${EFIname}.EFI" 2>/tmp/limine-installer/efibootmgr-install-error.log
It creates an boot entry with the file \EFI\limine${EFIname}.EFI instead of \EFI\limine\BOOTX64.EFI or \EFI\limine\BOOTIA32.EFI
Other bug (less important), line 514 with limine$ (instead of limine or limine* ?)
Code: Select all
ENTRY="$(efibootmgr 2>/dev/null | grep ' limine$' | grep -o '000[0-9A-Z]')"
EDIT :
The following code for the line 520
Code: Select all
efibootmgr -c -d /dev/${DRVdest} -p ${ESPdest/*[a-z]/} -L limine -l "\EFI\limine/"${EFIname}".EFI" 2>/tmp/limine-installer/efibootmgr-install-error.log
seems to work
EDIT2:
The text was slightly modified
EDIT3:
If, at boot, the text in the limine menu is too small, you can add a line
Code: Select all
INTERFACE_RESOLUTION=800x600
(Or another suitable resolution)
to the file limine.cfg in the EFI partition (usually /dev/sda1)
(See https://github.com/limine-bootloader/limine/issues/226)