Skip to content

Commit

Permalink
bump sparse file size to 25mb
Browse files Browse the repository at this point in the history
  • Loading branch information
korewaChino committed Oct 19, 2023
1 parent c9c0ed1 commit 6d8c3ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl Bootloader {

// make EFI disk
let sparse_path = &tree.join("boot/efiboot.img");
crate::util::create_sparse(sparse_path, 15 * 1024 * 1024)?; // 15MiB
crate::util::create_sparse(sparse_path, 25 * 1024 * 1024)?; // 15MiB

// let's mount the disk as a loop device
let (ldp, hdl) = loopdev_with_file(sparse_path)?;
Expand Down

0 comments on commit 6d8c3ab

Please sign in to comment.