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:
parent
f0d5358d3e
commit
30a42c280e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user