From 9957309053bcdd0ab9c7800fbc44b69144cd2bc8 Mon Sep 17 00:00:00 2001 From: David Klimesh Date: Thu, 29 Feb 2024 09:04:24 -0800 Subject: [PATCH] Bump efi part from 150M to 192M --- isoutils/isoutils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isoutils/isoutils.go b/isoutils/isoutils.go index 0a847452..801c1ae5 100644 --- a/isoutils/isoutils.go +++ b/isoutils/isoutils.go @@ -346,7 +346,7 @@ func mkEfiBoot() error { log.Info(msg) cmds := [][]string{ - {"fallocate", "-l", "150M", tmpPaths[clrCdroot] + "/EFI/efiboot.img"}, + {"fallocate", "-l", "192M", 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]},