Skip to content

Commit 136f9eb

Browse files
MingcongBaichenx97
authored andcommitted
fix(util/grub-mkrescue): fix EFI executable name for mips64el-efi
Loongson 3A4000/3B4000 firmware expects BOOTMIPS.EFI, not bootmips64el.efi.
1 parent c85d646 commit 136f9eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/grub-mkrescue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ main (int argc, char *argv[])
830830
make_image_abs (GRUB_INSTALL_PLATFORM_RISCV64_EFI, "riscv64-efi", imgname);
831831
free (imgname);
832832

833-
imgname = grub_util_path_concat (2, efidir_efi_boot, "bootmips64el.efi");
833+
imgname = grub_util_path_concat (2, efidir_efi_boot, "BOOTMIPS.EFI");
834834
make_image_abs (GRUB_INSTALL_PLATFORM_MIPS64EL_EFI, "mips64el-efi", imgname);
835835
free (imgname);
836836

0 commit comments

Comments
 (0)