This commit is contained in:
2026-02-05 12:39:41 +01:00
parent f7bebc7f88
commit eb03edb050
4 changed files with 38 additions and 20 deletions

View File

@@ -106,7 +106,7 @@ def calculate_auto_partitions(disk_device):
"type": "partition",
"name": "EFI System",
"filesystem": "vfat",
"mount_point": "/boot/efi",
"mount_point": "/boot",
"size": f"{efi_size / (1024**3):.1f} GB",
"bytes": efi_size,
"style_class": "part-efi",
@@ -496,7 +496,7 @@ class PartitioningPage(Adw.Bin):
)
win.set_content(box)
options = ["/", "/boot/efi", "[SWAP]", "None"]
options = ["/", "/boot", "[SWAP]", "None"]
dropdown = Gtk.DropDown.new_from_strings(options)
current_mp = data.get("mount_point")