From 27373420cafd264d82198ba74296b3a7e0628e89 Mon Sep 17 00:00:00 2001 From: "Brett T. Warden" Date: Thu, 10 Oct 2024 16:29:14 -0700 Subject: [PATCH] Increase default EFI partition size to 512 MB With increased initrd sizes, 150 MB is inadequate. --- storage/block_devices.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/block_devices.go b/storage/block_devices.go index 4746183e..c75e38c8 100644 --- a/storage/block_devices.go +++ b/storage/block_devices.go @@ -205,7 +205,7 @@ var ( "/dev/mmcblk": "p", } - bootSizeDefault = uint64(150 * (1024 * 1024)) + bootSizeDefault = uint64(512 * (1024 * 1024)) SwapFileSizeDefault = uint64(64 * (1024 * 1024)) // BlockDeviceTypeLVM2GroupString is a string version for LVM2 member type