From 02f833f987bc1b7193369dbefd942dffea4ba658 Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Thu, 26 Oct 2023 08:12:58 +0530 Subject: [PATCH] set /boot to 1G --- includes/disk-layout.ksi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/disk-layout.ksi b/includes/disk-layout.ksi index e5afed4..38636b7 100644 --- a/includes/disk-layout.ksi +++ b/includes/disk-layout.ksi @@ -7,9 +7,9 @@ clearpart --drives=sda --disklabel=gpt --all # Create partitions # The '--size' option takes MB, not MiB # 134 MB = 128 MiB -# 536 MB = 512 MiB +# 1072 MB = 1.00 GiB # 2146 MB = 2.00 GiB # Keep /boot formatted as ext4 since that's what U-Boot can read part /boot/efi --asprimary --ondisk=sda --size=134 --label=rockyefi --fstype=efi -part /boot --asprimary --ondisk=sda --size=536 --label=rockyboot --fstype=ext4 +part /boot --asprimary --ondisk=sda --size=1072 --label=rockyboot --fstype=ext4 part / --asprimary --ondisk=sda --size=2146 --label=rockyroot --fstype=ext4