From 1bdd4ec174995560095eb38691ed8f3b8b1e27ad Mon Sep 17 00:00:00 2001 From: djklimes Date: Wed, 5 Jan 2022 15:21:33 -0800 Subject: [PATCH] Update efi partition to 124M from 100M ISO creation has been failing because 100M initrd and the kernel have grown too large for the allocated space. Eventually we will add this value to yaml config but for now we will just bump it. --- isoutils/isoutils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isoutils/isoutils.go b/isoutils/isoutils.go index a4b67728..a624fe73 100644 --- a/isoutils/isoutils.go +++ b/isoutils/isoutils.go @@ -346,7 +346,7 @@ func mkEfiBoot() error { log.Info(msg) cmds := [][]string{ - {"fallocate", "-l", "100M", tmpPaths[clrCdroot] + "/EFI/efiboot.img"}, + {"fallocate", "-l", "124M", 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]},