Skip to content

Commit

Permalink
Fix #396
Browse files Browse the repository at this point in the history
Increasing the image size by an additional megabyte makes the image compile again
  • Loading branch information
kennystrawnmusic authored Oct 22, 2023
1 parent 7c8e2ca commit 4d4d845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub fn create_fat_filesystem(
.truncate(true)
.open(out_fat_path)
.unwrap();
let fat_size_padded_and_rounded = ((needed_size + 1024 * 64 - 1) / MB + 1) * MB;
let fat_size_padded_and_rounded = ((needed_size + 1024 * 64 - 1) / MB + MB) * MB;
fat_file.set_len(fat_size_padded_and_rounded).unwrap();

// choose a file system label
Expand Down

0 comments on commit 4d4d845

Please sign in to comment.