Skip to content

Commit

Permalink
fix: Add esp flag to EFI partition
Browse files Browse the repository at this point in the history
  • Loading branch information
matbme authored and mirkobrombin committed Apr 28, 2024
1 parent ef6962f commit cf3a723
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions vanilla_installer/utils/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ def __gen_auto_partition_steps(
# Boot
setup_steps.append([disk, "mkpart", ["vos-boot", "ext4", 1, 1025]])
setup_steps.append([disk, "mkpart", ["vos-efi", "fat32", 1025, 1537]])
setup_steps.append([disk, "setflag", ["2", "esp", True]])

# LVM PVs
setup_steps.append([disk, "mkpart", ["vos-root", "none", 1537, 23556]])
Expand Down

0 comments on commit cf3a723

Please sign in to comment.