From 17e8b84fd8c2d01b86a09246fbed73d01d034388 Mon Sep 17 00:00:00 2001 From: "Gerd v. Egidy" Date: Fri, 16 Dec 2022 22:57:00 +0100 Subject: [PATCH] use mkfs.fat instead of mformat for creating the EFI eltorito FAT boot image mformat created images seems to have some compatibility issues, so Arch upstream changed to mkfs.fat. Implements #301 --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index cf1929a..3bf9036 100755 --- a/build.sh +++ b/build.sh @@ -367,7 +367,7 @@ make_efiboot() { mkdir -p ${work_dir}/iso/EFI/archiso rm -f "${work_dir}/iso/EFI/archiso/efiboot.img" - mformat -C -f 1440 -L 16 -i "${work_dir}/iso/EFI/archiso/efiboot.img" :: + mkfs.fat -C "${work_dir}/iso/EFI/archiso/efiboot.img" 1440 mcopy -s -i "${work_dir}/iso/EFI/archiso/efiboot.img" "${work_dir}/efitemp/efi" ::/ }