@ -1,12 +1,12 @@
# Load partition table and file system modules
insmod part_gpt
insmod part_gpt
insmod part_msdos
insmod part_msdos
insmod fat
insmod fat
insmod iso9660
insmod iso9660
# Use graphics-mode output
insmod all_video
insmod all_video
insmod font
insmod font
if loadfont "${prefix}/fonts/unicode.pf2" ; then
if loadfont "${prefix}/fonts/unicode.pf2" ; then
insmod gfxterm
insmod gfxterm
set gfxmode = "auto"
set gfxmode = "auto"
@ -14,33 +14,62 @@ if loadfont "${prefix}/fonts/unicode.pf2" ; then
terminal_output gfxterm
terminal_output gfxterm
fi
fi
# Enable serial console
if serial --unit = 0 --speed=115200; then
terminal_input --append serial
terminal_output --append serial
fi
# Set default menu entry
default = alci
timeout = 15
timeout_style = menu
# GRUB init tune for accessibility
# GRUB init tune for accessibility
#
play 600 988 1 1319 4
# Morse translation table:
# "." is "500 1 300 1"
# Menu entries
# "-" is "600 3 300 1"
# " " is "100 2"
menuentry "Alci install medium (x86_64, UEFI)" --class arch --class gnu-linux --class gnu --class os --id 'alci' {
# "/" is "100 5"
#
# Message: "s for blind"
play 500 500 1 300 1 500 1 300 1 500 1 300 1 100 5 500 1 300 1 500 1 300 1 100 2 500 1 300 1 500 1 300 1 600 3 300 1 500 1 300 1 100 5 600 3 300 1 500 1 300 1 500 1 300 1 500 1 300 1 100 2 500 1 300 1 600 3 300 1 500 1 300 1 500 1 300 1 100 2 500 1 300 1 500 1 300 1 100 2 500 1 300 1 500 1 300 1 100 2 600 3 300 1 500 1 300 1 100 2 600 3 300 1 500 1 300 1 500 1 300 1
menuentry "Arch Linux install medium (x86_64, UEFI)" {
set gfxpayload = keep
set gfxpayload = keep
search --no-floppy --set = root --label %ARCHISO_LABEL%
search --no-floppy --set = root --label %ARCHISO_LABEL%
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux archisobasedir = %INSTALL_DIR% archisolabel=%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
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 "Alci install medium with speakup screen reader (x86_64, UEFI)" --hotkey s --class arch --class gnu-linux --class gnu --class os --id 'alci-accessibility' {
set gfxpayload = keep
set gfxpayload = keep
search --no-floppy --set = root --label %ARCHISO_LABEL%
search --no-floppy --set = root --label %ARCHISO_LABEL%
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux archisobasedir = %INSTALL_DIR% archisolabel=%ARCHISO_LABEL% accessibility=on
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux archisobasedir = %INSTALL_DIR% archisolabel=%ARCHISO_LABEL% accessibility=on
initrd /%INSTALL_DIR%/boot/intel-ucode.img /%INSTALL_DIR%/boot/amd-ucode.img /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
initrd /%INSTALL_DIR%/boot/intel-ucode.img /%INSTALL_DIR%/boot/amd-ucode.img /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
}
}
if [ "${grub_platform}" = = "efi" ]; then
if [ "${grub_cpu}" = = "x86_64" ]; then
menuentry "UEFI Shell" {
insmod chain
search --no-floppy --set = root --label %ARCHISO_LABEL%
chainloader /shellx64.efi
}
elif [ "${grub_cpu}" = = "i386" ]; then
menuentry "UEFI Shell" {
menuentry "UEFI Shell" {
insmod chain
insmod chain
search --no-floppy --set = root --label %ARCHISO_LABEL%
search --no-floppy --set = root --label %ARCHISO_LABEL%
chainloader /shellia32.efi
chainloader /shellia32.efi
}
}
fi
menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' {
fwsetup
}
fi
menuentry "System restart" --class reboot --class restart {
echo "System rebooting..."
reboot
}
menuentry "System shutdown" --class shutdown --class poweroff {
echo "System shutting down..."
halt
}