From 089841f5d32f1ae721f4650c7c5dfa2cdf278772 Mon Sep 17 00:00:00 2001 From: The_miro Date: Mon, 18 May 2026 13:29:58 +0200 Subject: [PATCH] archiso: fix deprecated boot modes and grub/systemd-boot conflict Replace five deprecated boot mode names with the canonical 'bios.syslinux' and 'uefi.systemd-boot', removing the ia32 grub mode that required grub installed and conflicted with systemd-boot. Co-Authored-By: Claude Sonnet 4.6 --- setup/archiso/overlay/profiledef.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/archiso/overlay/profiledef.sh b/setup/archiso/overlay/profiledef.sh index af84097..a274d53 100644 --- a/setup/archiso/overlay/profiledef.sh +++ b/setup/archiso/overlay/profiledef.sh @@ -7,7 +7,7 @@ iso_application="M-Archy Arch Linux Installer" iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d)" install_dir="arch" buildmodes=('iso') -bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-ia32.grub.esp' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito') +bootmodes=('bios.syslinux' 'uefi.systemd-boot') arch="x86_64" pacman_conf="pacman.conf" airootfs_image_type="squashfs"