2025-12-16 10:20:31 -07:00
|
|
|
# limine-entry-tool
|
|
|
|
|
|
|
|
|
|
> A helper script to manage Limine bootloader entries on UEFI systems.
|
|
|
|
|
> More information: <https://gitlab.com/Zesko/limine-entry-tool>.
|
|
|
|
|
|
|
|
|
|
- Scan for other active UEFI boot entries and add them to the Limine menu:
|
|
|
|
|
|
|
|
|
|
`limine-entry-tool --scan`
|
|
|
|
|
|
|
|
|
|
- Add a new kernel boot entry with an initramfs and a kernel file:
|
|
|
|
|
|
|
|
|
|
`limine-entry-tool --add "{{kernel_name}}" "{{path/to/initramfs}}" "{{path/to/vmlinuz}}"`
|
|
|
|
|
|
|
|
|
|
- Add a new Unified Kernel Image (UKI) boot entry:
|
|
|
|
|
|
|
|
|
|
`limine-entry-tool --add-uki "{{kernel_name}}" "{{path/to/uki.efi}}"`
|
|
|
|
|
|
|
|
|
|
- Remove a kernel boot entry and its associated files from the ESP:
|
|
|
|
|
|
|
|
|
|
`limine-entry-tool --remove "{{kernel_name}}"`
|
|
|
|
|
|
|
|
|
|
- Remove an entire OS entry by its name or machine ID:
|
|
|
|
|
|
2026-06-12 17:51:25 -06:00
|
|
|
`limine-entry-tool --remove-os "{{os_name|machine_id}}"`
|
2025-12-16 10:20:31 -07:00
|
|
|
|
|
|
|
|
- Add an EFI boot entry for an alternative bootloader (e.g., Windows):
|
|
|
|
|
|
2026-06-12 17:51:25 -06:00
|
|
|
`limine-entry-tool --add-efi "{{efi_entry_name}}" "{{path/to/loader.efi}}"`
|