From e149d3d925d9b5254d2bc473ccf4e229211aa1cf Mon Sep 17 00:00:00 2001 From: "Brett T. Warden" Date: Wed, 16 Oct 2024 12:07:19 -0700 Subject: [PATCH] Increase boot partition size for ISO images ISO initrd is necessarily much bigger than normal initrd, so make sure we have enough space for it. --- isoutils/isoutils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isoutils/isoutils.go b/isoutils/isoutils.go index a91f3f3c..2f8c2c0e 100644 --- a/isoutils/isoutils.go +++ b/isoutils/isoutils.go @@ -362,7 +362,7 @@ func mkEfiBoot() error { log.Info(msg) cmds := [][]string{ - {"fallocate", "-l", "192M", tmpPaths[clrCdroot] + "/EFI/efiboot.img"}, + {"fallocate", "-l", "256M", tmpPaths[clrCdroot] + "/EFI/efiboot.img"}, {"mkfs.fat", "-n", "CLEAR_EFI", tmpPaths[clrCdroot] + "/EFI/efiboot.img"}, {"mount", "-t", "vfat", "-o", "loop", tmpPaths[clrCdroot] + "/EFI/efiboot.img", tmpPaths[clrEfi]}, {"cp", "-pr", tmpPaths[clrImgEfi] + "/.", tmpPaths[clrEfi]},