Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/interactions
diff options
context:
space:
mode:
authorcodefiles <11915375+codefiles@users.noreply.github.com>2023-11-20 06:58:09 -0500
committerGitHub <noreply@github.com>2023-11-20 12:58:09 +0100
commitf16af43949085b06478d2e4c45ed61fa8e595171 (patch)
tree575b8dea616c1e601a4996ad77b9086c1702c7ea /archinstall/lib/interactions
parentf876ddc68eedb57f315b345aa45703b7acaabc98 (diff)
Fix GPT end alignment (#2210)
Diffstat (limited to 'archinstall/lib/interactions')
-rw-r--r--archinstall/lib/interactions/disk_conf.py61
1 files changed, 39 insertions, 22 deletions
diff --git a/archinstall/lib/interactions/disk_conf.py b/archinstall/lib/interactions/disk_conf.py
index 8e9643df..85b377b7 100644
--- a/archinstall/lib/interactions/disk_conf.py
+++ b/archinstall/lib/interactions/disk_conf.py
@@ -176,9 +176,9 @@ def select_disk_config(
return None
-def _boot_partition(sector_size: disk.SectorSize) -> disk.PartitionModification:
+def _boot_partition(sector_size: disk.SectorSize, using_gpt: bool) -> disk.PartitionModification:
flags = [disk.PartitionFlag.Boot]
- if SysInfo.has_uefi():
+ if using_gpt:
start = disk.Size(1, disk.Unit.MiB, sector_size)
size = disk.Size(512, disk.Unit.MiB, sector_size)
flags.append(disk.PartitionFlag.ESP)
@@ -242,6 +242,8 @@ def suggest_single_disk_layout(
device_modification = disk.DeviceModification(device, wipe=True)
+ using_gpt = SysInfo.has_uefi()
+
# Used for reference: https://wiki.archlinux.org/title/partitioning
# 2 MiB is unallocated for GRUB on BIOS. Potentially unneeded for other bootloaders?
@@ -253,7 +255,7 @@ def suggest_single_disk_layout(
# Also re-align the start to 1MiB since we don't need the first sectors
# like we do in MBR layouts where the boot loader is installed traditionally.
- boot_partition = _boot_partition(sector_size)
+ boot_partition = _boot_partition(sector_size, using_gpt)
device_modification.add_partition(boot_partition)
if not using_subvolumes:
@@ -267,20 +269,25 @@ def suggest_single_disk_layout(
else:
using_home_partition = False
+ align_buffer = disk.Size(1, disk.Unit.MiB, sector_size)
+
# root partition
- start = disk.Size(513, disk.Unit.MiB, sector_size) if SysInfo.has_uefi() else disk.Size(206, disk.Unit.MiB, sector_size)
+ root_start = boot_partition.start + boot_partition.length
# Set a size for / (/root)
if using_subvolumes or device_size_gib < min_size_to_allow_home_part or not using_home_partition:
- length = device.device_info.total_size - start
+ root_length = device.device_info.total_size - root_start
else:
- length = min(device.device_info.total_size, root_partition_size)
+ root_length = min(device.device_info.total_size, root_partition_size)
+
+ if using_gpt and not using_home_partition:
+ root_length -= align_buffer
root_partition = disk.PartitionModification(
status=disk.ModificationStatus.Create,
type=disk.PartitionType.Primary,
- start=start,
- length=length,
+ start=root_start,
+ length=root_length,
mountpoint=Path('/') if not using_subvolumes else None,
fs_type=filesystem_type,
mount_options=['compress=zstd'] if compression else [],
@@ -303,14 +310,17 @@ def suggest_single_disk_layout(
# If we don't want to use subvolumes,
# But we want to be able to re-use data between re-installs..
# A second partition for /home would be nice if we have the space for it
- start = root_partition.length
- length = device.device_info.total_size - root_partition.length
+ home_start = root_partition.length
+ home_length = device.device_info.total_size - root_partition.length
+
+ if using_gpt:
+ home_length -= align_buffer
home_partition = disk.PartitionModification(
status=disk.ModificationStatus.Create,
type=disk.PartitionType.Primary,
- start=start,
- length=length,
+ start=home_start,
+ length=home_length,
mountpoint=Path('/home'),
fs_type=filesystem_type,
mount_options=['compress=zstd'] if compression else []
@@ -377,17 +387,21 @@ def suggest_multi_disk_layout(
root_device_sector_size = root_device_modification.device.device_info.sector_size
home_device_sector_size = home_device_modification.device.device_info.sector_size
+ root_align_buffer = disk.Size(1, disk.Unit.MiB, root_device_sector_size)
+ home_align_buffer = disk.Size(1, disk.Unit.MiB, home_device_sector_size)
+
+ using_gpt = SysInfo.has_uefi()
+
# add boot partition to the root device
- boot_partition = _boot_partition(root_device_sector_size)
+ boot_partition = _boot_partition(root_device_sector_size, using_gpt)
root_device_modification.add_partition(boot_partition)
- if SysInfo.has_uefi():
- root_start = disk.Size(513, disk.Unit.MiB, root_device_sector_size)
- else:
- root_start = disk.Size(206, disk.Unit.MiB, root_device_sector_size)
-
+ root_start = boot_partition.start + boot_partition.length
root_length = root_device.device_info.total_size - root_start
+ if using_gpt:
+ root_length -= root_align_buffer
+
# add root partition to the root device
root_partition = disk.PartitionModification(
status=disk.ModificationStatus.Create,
@@ -400,15 +414,18 @@ def suggest_multi_disk_layout(
)
root_device_modification.add_partition(root_partition)
- start = disk.Size(1, disk.Unit.MiB, home_device_sector_size)
- length = home_device.device_info.total_size - start
+ home_start = home_align_buffer
+ home_length = home_device.device_info.total_size - home_start
+
+ if using_gpt:
+ home_length -= home_align_buffer
# add home partition to home device
home_partition = disk.PartitionModification(
status=disk.ModificationStatus.Create,
type=disk.PartitionType.Primary,
- start=start,
- length=length,
+ start=home_start,
+ length=home_length,
mountpoint=Path('/home'),
mount_options=['compress=zstd'] if compression else [],
fs_type=filesystem_type,