Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Efibump #805

Closed
wants to merge 9 commits into from
2 changes: 1 addition & 1 deletion isoutils/isoutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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]},
Expand Down
Loading