From bf13ec5972d495fe2e7e1d6d9757f65010582d5b Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Mon, 20 Nov 2023 17:12:36 +0530 Subject: [PATCH] increase root part size from 3GiB to 3.5GiB --- 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 70e5348..d0d9beb 100644 --- a/includes/disk-layout.ksi +++ b/includes/disk-layout.ksi @@ -8,8 +8,8 @@ clearpart --drives=sda --disklabel=gpt --all # The '--size' option takes MB, not MiB # 536 MB = 512 MiB # 1072 MB = 1.00 GiB -# 3216 MB = 3.00 GiB +# 3752 MB = 3.50 GiB # Keep /boot formatted as ext4 since that's what U-Boot can read part /boot/efi --asprimary --ondisk=sda --size=536 --label=rockyefi --fstype=efi part /boot --asprimary --ondisk=sda --size=1072 --label=rockyboot --fstype=ext4 -part / --asprimary --ondisk=sda --size=3216 --label=rockyroot --fstype=ext4 +part / --asprimary --ondisk=sda --size=3752 --label=rockyroot --fstype=ext4