All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] util/grub-mkrescue: specify -iso-level 3 in xorriso options
@ 2023-09-20  5:39 jeffbai
  2023-09-20  7:17 ` Thomas Schmitt
  0 siblings, 1 reply; 4+ messages in thread
From: jeffbai @ 2023-09-20  5:39 UTC (permalink / raw)
  To: grub-devel

This is needed for architectures whose EFI executables has file names 
that
exceeds the 8.3 (extension.suffix) convention, such as LoongArch64
(bootloongarch64.efi).

Signed-off-by: Mingcong Bai <jeffbai@aosc.io>
---
  util/grub-mkrescue.c | 2 ++
  1 file changed, 2 insertions(+)

diff --git a/util/grub-mkrescue.c b/util/grub-mkrescue.c
index abcc1c2f5..27696e034 100644
--- a/util/grub-mkrescue.c
+++ b/util/grub-mkrescue.c
@@ -514,6 +514,8 @@ main (int argc, char *argv[])
    xorriso_push ("-as");
    xorriso_push ("mkisofs");
    xorriso_push ("-graft-points");
+  xorriso_push ("-iso-level");
+  xorriso_push ("3");

    iso9660_dir = grub_util_make_temporary_dir ();
    grub_util_info ("temporary iso9660 dir is `%s'", iso9660_dir);
-- 
2.39.1

_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-09-20  9:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-20  5:39 [PATCH] util/grub-mkrescue: specify -iso-level 3 in xorriso options jeffbai
2023-09-20  7:17 ` Thomas Schmitt
2023-09-20  7:53   ` Gerd Hoffmann
2023-09-20  9:16     ` Thomas Schmitt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.