Skip to content

Commit

Permalink
Make ESP optional for custom installs (#675)
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Kornheisl <[email protected]>
Co-authored-by: Danielle Foré <[email protected]>
  • Loading branch information
3 people authored Jan 9, 2024
1 parent c28d738 commit ca5d309
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Views/PartitioningView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class Installer.PartitioningView : AbstractInstallerView {
break;
case Distinst.PartitionTable.GPT:
// Device is in EFI mode, so we also require a boot partition
required_description = _("You must at least select a <b>Root (/)</b> partition and a <b>Boot (/boot/efi)</b> partition.");
required_description = _("You must at least select a <b>Root (/)</b> partition and an optional <b>Boot (/boot/efi)</b> partition.");
break;
}

Expand Down Expand Up @@ -225,7 +225,6 @@ public class Installer.PartitioningView : AbstractInstallerView {
case Distinst.PartitionTable.MSDOS:
break;
case Distinst.PartitionTable.GPT:
required |= Defined.EFI;
break;
}

Expand Down

0 comments on commit ca5d309

Please sign in to comment.