Skip to content

Commit f49bdce

Browse files
committed
Fix: label length
1 parent c5d859d commit f49bdce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

alteriso5/work/boot/efibootimg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func MakeEfiBootImg(dest string, size int64) error {
2020
sizeMib := mibToKiB((byteToKib(size) + 1024) / 1024)
2121
slog.Debug("Creating EFI boot image...", "dest", dest, "size", sizeMib)
2222

23-
mkfs := utils.CommandWithStdio("mkfs.fat", "-C", "-n", "ALTERISO_EFI", dest, fmt.Sprint(sizeMib))
23+
mkfs := utils.CommandWithStdio("mkfs.fat", "-C", "-n", "ALTERISOEFI", dest, fmt.Sprint(sizeMib))
2424
if err := mkfs.Run(); err != nil {
2525
return err
2626
}

0 commit comments

Comments
 (0)