rename grub menu entries

This commit is contained in:
Tobias Powalowski 2023-06-21 21:31:11 +02:00
parent 18eeb5b44f
commit 683fedaa51

View file

@ -67,7 +67,7 @@ if [ ${grub_platform} == "pc" ]; then
linux /boot/vmlinuz-x86_64 console=ttyS0,115200 console=tty0 audit=0
initrd /boot/intel-ucode.img /boot/amd-ucode.img /boot/init-x86_64.img
}
menuentry "Memory Tester (memtest86+)" {
menuentry "MEEMTEST86+ Memory Testing" {
_menu_running
linux16 /boot/memtest.bin
}
@ -101,24 +101,24 @@ if [ ${grub_platform} == "efi" ]; then
submenu "UEFI Secureboot Tools" {
_secure_boot_tools
}
menuentry "Enter Firmware Setup" {
menuentry "UEFI Firmware Setup" {
_menu_running
fwsetup
}
if [ ${grub_cpu} == "x86_64" ]; then
menuentry "Memory Tester (memtest86+)" {
menuentry "MEMTEST86+ Memory Testing" {
_menu_running
linux /efi/tools/memtest.efi
}
fi
fi
menuentry "System reboot" {
menuentry "Reboot System" {
_menu_running
reboot
}
menuentry "System shutdown" {
menuentry "Poweroff System" {
_menu_running
halt
}