]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Reduce ESP default size to 512MB
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Sat, 6 May 2023 11:17:43 +0000 (13:17 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Mon, 8 May 2023 12:55:35 +0000 (14:55 +0200)
Now that we compress the Debian kernel modules initramfs, we can
reduce the default ESP size to 512MB again as it's large enough to
fit the Debian initramfs even with all kernel modules included.

mkosi/__init__.py

index 84eec5a0a4619422e355475d777b1cf71db4902f..2a8b640c2da76c7305f0599f70734cf568971f6f 100644 (file)
@@ -1519,8 +1519,8 @@ def invoke_repart(state: MkosiState, skip: Sequence[str] = [], split: bool = Fal
                         Type=esp
                         Format=vfat
                         CopyFiles=/boot:/
-                        SizeMinBytes=1024M
-                        SizeMaxBytes=1024M
+                        SizeMinBytes=512M
+                        SizeMaxBytes=512M
                         """
                     )
                 )