From c801858e8bc3f3ff0fe43f00d3c90237140808be Mon Sep 17 00:00:00 2001 From: Alex Jaramillo Date: Wed, 12 Mar 2025 10:30:33 -0700 Subject: [PATCH] Use -iso-level 3 This change allows the creation of an ISO with a rootfs image of size greater than 4GB. Signed-off-by: Alex Jaramillo --- isoutils/isoutils.go | 1 + 1 file changed, 1 insertion(+) diff --git a/isoutils/isoutils.go b/isoutils/isoutils.go index 2f8c2c0e..9fa108ad 100644 --- a/isoutils/isoutils.go +++ b/isoutils/isoutils.go @@ -638,6 +638,7 @@ func packageIso(imgName, appID, publisher string) error { args := []string{ "xorriso", "-as", "mkisofs", "-o", imgName + ".iso", + "-iso-level", "3", "-V", "CLR_ISO", }