2022-06-26 09:59:47 +00:00
|
|
|
# Load partition table and file system modules
|
2022-05-25 14:50:49 +00:00
|
|
|
insmod part_gpt
|
|
|
|
insmod part_msdos
|
|
|
|
insmod fat
|
|
|
|
insmod iso9660
|
|
|
|
|
2022-06-26 09:59:47 +00:00
|
|
|
# Use graphics-mode output
|
2022-05-25 14:50:49 +00:00
|
|
|
insmod all_video
|
|
|
|
insmod font
|
|
|
|
if loadfont "${prefix}/fonts/unicode.pf2" ; then
|
|
|
|
insmod gfxterm
|
|
|
|
set gfxmode="auto"
|
|
|
|
terminal_input console
|
|
|
|
terminal_output gfxterm
|
|
|
|
fi
|
|
|
|
|
2022-06-26 09:59:47 +00:00
|
|
|
# Enable serial console
|
|
|
|
if serial --unit=0 --speed=115200; then
|
|
|
|
terminal_input --append serial
|
|
|
|
terminal_output --append serial
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Set default menu entry
|
2022-06-18 06:15:01 +00:00
|
|
|
default=archlinux
|
|
|
|
timeout=15
|
|
|
|
timeout_style=menu
|
|
|
|
|
2022-06-26 09:59:47 +00:00
|
|
|
|
|
|
|
# Menu entries
|
|
|
|
|
2022-06-18 06:15:01 +00:00
|
|
|
menuentry "Arch Linux (x86_64, UEFI)" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' {
|
2022-05-25 14:50:49 +00:00
|
|
|
set gfxpayload=keep
|
|
|
|
search --no-floppy --set=root --label %ARCHISO_LABEL%
|
2022-06-10 05:36:03 +00:00
|
|
|
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
2022-05-25 14:50:49 +00:00
|
|
|
initrd /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
|
|
|
}
|