index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | nl6720 <nl6720@gmail.com> | 2022-06-18 09:15:01 +0300 |
---|---|---|
committer | nl6720 <nl6720@gmail.com> | 2022-06-23 08:27:44 +0300 |
commit | e654106ecf5741c5abdc591ec026104eafa118a3 (patch) | |
tree | 4fac6f2644e5d19436f5a53cb9488a7138a416ae /configs/releng | |
parent | 9a98ae604085e7e94b7080f844fa4f8f6964b49b (diff) |
-rw-r--r-- | configs/releng/grub/grub.cfg | 24 |
diff --git a/configs/releng/grub/grub.cfg b/configs/releng/grub/grub.cfg index 06a67a8..9b78603 100644 --- a/configs/releng/grub/grub.cfg +++ b/configs/releng/grub/grub.cfg @@ -14,18 +14,22 @@ if loadfont "${prefix}/fonts/unicode.pf2" ; then terminal_output gfxterm fi +default=archlinux +timeout=15 +timeout_style=menu + # GRUB init tune for accessibility # play 600 988 1 1319 4 -menuentry "Arch Linux install medium (x86_64, UEFI)" { +menuentry "Arch Linux install medium (x86_64, UEFI)" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' { set gfxpayload=keep search --no-floppy --set=root --label %ARCHISO_LABEL% linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% initrd /%INSTALL_DIR%/boot/intel-ucode.img /%INSTALL_DIR%/boot/amd-ucode.img /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img } -menuentry "Arch Linux install medium with speakup screen reader (x86_64, UEFI)" --hotkey=s { +menuentry "Arch Linux install medium with speakup screen reader (x86_64, UEFI)" --hotkey s --class arch --class gnu-linux --class gnu --class os --id 'archlinux-accessibility' { set gfxpayload=keep search --no-floppy --set=root --label %ARCHISO_LABEL% linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% accessibility=on @@ -48,16 +52,16 @@ if [ "${grub_platform}" == "efi" ]; then fi menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' { - fwsetup - } + fwsetup + } fi -menuentry "System shutdown" { - echo "System shutting down..." - halt +menuentry "System shutdown" --class shutdown --class poweroff { + echo "System shutting down..." + halt } -menuentry "System restart" { - echo "System rebooting..." - reboot +menuentry "System restart" --class reboot --class restart { + echo "System rebooting..." + reboot } |