From 14899eb3df1bac26c243d95c8cb3adcff469c3b4 Mon Sep 17 00:00:00 2001 From: Basti Lathe Date: Wed, 24 May 2023 15:22:06 +0200 Subject: [PATCH] boot_size +450MB --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index d40334a..64b3014 100644 --- a/src/main.rs +++ b/src/main.rs @@ -162,7 +162,7 @@ fn create(command: args::CreateCommand) -> anyhow::Result<()> { info!("Partitioning the block device"); debug!("{:?}", disk_path); - let boot_size = command.boot_size.unwrap_or(300); + let boot_size = command.boot_size.unwrap_or(450); sgdisk .execute()