2023-09-13 01:29:56 +00:00
|
|
|
# Initialize the disk
|
|
|
|
zerombr
|
|
|
|
|
2023-10-08 23:43:03 +00:00
|
|
|
# Remove all partitions and initialize the disk with a GPT partition table
|
|
|
|
clearpart --drives=sda --disklabel=gpt --all
|
2023-09-13 01:29:56 +00:00
|
|
|
|
|
|
|
# Create partitions
|
|
|
|
# The '--size' option takes MB, not MiB
|
2023-10-17 07:48:09 +00:00
|
|
|
# 134 MB = 128 MiB
|
|
|
|
# 536 MB = 512 MiB
|
|
|
|
# 2146 MB = 2.00 GiB
|
2023-09-13 01:29:56 +00:00
|
|
|
# Keep /boot formatted as ext4 since that's what U-Boot can read
|
2023-10-17 07:48:09 +00:00
|
|
|
part /boot/efi --asprimary --ondisk=sda --size=134 --label=rockyefi --fstype=efi
|
|
|
|
part /boot --asprimary --ondisk=sda --size=536 --label=rockyboot --fstype=ext4
|
|
|
|
part / --asprimary --ondisk=sda --size=2146 --label=rockyroot --fstype=ext4
|