Use MBR by default on BIOS systems. An increasing number of motherboards

assume that GPT means UEFI boot, resulting in the installation of
uninstallable systems. This needs a little more work before MFC, in
particular based on disk size (> 2 TB + BIOS + MBR is not workable). That
will come soon.
This commit is contained in:
nwhitehorn 2015-01-30 21:22:18 +00:00
parent f0d5358d3e
commit 30a42c280e

View File

@ -51,7 +51,10 @@ x86_bootmethod(void)
const char *
default_scheme(void)
{
return ("GPT");
if (strcmp(x86_bootmethod(), "UEFI") == 0)
return ("GPT");
else
return ("MBR");
}
int