diff options
Diffstat (limited to 'mkefipart-fat')
-rwxr-xr-x | mkefipart-fat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mkefipart-fat b/mkefipart-fat index 1694c5e..25e2828 100755 --- a/mkefipart-fat +++ b/mkefipart-fat @@ -15,8 +15,8 @@ rm -f "$img" # Stuff boot*.efi into a FAT filesystem, making it as small as possible. 24KiB # headroom seems to be enough; (x+31)/32*32 rounds up to multiple of 32. mkfs.msdos -n KANOTIX_EFI -C "$img" \ - $(( ($(stat -c %s binary/efi/boot/boot*.efi | awk '{s+=$1} END {print s}') / 1024 + 55) \ - / 32 * 32 )) + $(( ($(stat -c %s binary/efi/boot/boot*.efi | awk '{s+=$1} END {print s}') / 1024 + 1023) \ + / 1024 * 1024 )) mmd -i "$img" ::efi mmd -i "$img" ::efi/boot for file in binary/efi/boot/boot*.efi |