increase size of boot partition to 512MB

This commit is contained in:
Lukas Greve 2025-01-09 15:52:13 +01:00
parent dcd8496069
commit 56c6b95a9a

View File

@ -5,8 +5,8 @@
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/ # / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
# /_/ /____/ # /_/ /____/
# What ? This kickstart file provides a basic EXT4 partition layout for EFI-based systems, without encryption. # What ? This kickstart file provides a basic ext4 partition layout for UEFI-based systems, without full-disk encryption
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi # Will create an efi partitition of 128 MiB (vda1) part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi # Will create an EFI system partitition of 128 MiB (vda1)
part /boot --fstype="ext4" --size=384 --label=boot # Create a boot partition of 384 MiB using the ext4 filesystem (vda2). part /boot --fstype="ext4" --size=512 --label=boot # Create a boot partition of 512 MiB using the ext4 filesystem (vda2)
part / --fstype="ext4" --grow --label=root # The remaining space will be used for root (vda3). part / --fstype="ext4" --grow --label=root # The remaining space will be used for root (vda3)