Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make ESP optional for custom installs #675

Merged
merged 10 commits into from
Jan 9, 2024
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;
zeebok marked this conversation as resolved.
Show resolved Hide resolved
break;
}

Expand Down