Skip to content

Commit

Permalink
Increase ESP size to 1 GiB (#2401)
Browse files Browse the repository at this point in the history
  • Loading branch information
codefiles committed Mar 10, 2024
1 parent b87c41e commit 1064f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archinstall/lib/interactions/disk_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def _boot_partition(sector_size: disk.SectorSize, using_gpt: bool) -> disk.Parti
flags = [disk.PartitionFlag.Boot]
if using_gpt:
start = disk.Size(1, disk.Unit.MiB, sector_size)
size = disk.Size(512, disk.Unit.MiB, sector_size)
size = disk.Size(1, disk.Unit.GiB, sector_size)
flags.append(disk.PartitionFlag.ESP)
else:
start = disk.Size(3, disk.Unit.MiB, sector_size)
Expand Down

0 comments on commit 1064f74

Please sign in to comment.