You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to increase the size by 1MiB. I believe this is an issue with clusters and/or fragmentation, but I don't want to just increase a constant and potentially waste that megabyte if I don't need to.
Is there an improved heuristic for the necessary padding and rounding?
The text was updated successfully, but these errors were encountered:
This prevents a 'No space left on device' error from occuring
for large kernel images.
Implements suggestion in rust-osdev#438 by Ferdia McKeogh <[email protected]>
When I try to create a UEFI image with a 600MiB+ kernel image, I sometimes get a
No space left on device
error.This can be fixed by altering
fat.rs:29
:to increase the size by 1MiB. I believe this is an issue with clusters and/or fragmentation, but I don't want to just increase a constant and potentially waste that megabyte if I don't need to.
Is there an improved heuristic for the necessary padding and rounding?
The text was updated successfully, but these errors were encountered: