MFC r268540 by nwhitehorn:

Allow up to 512K for boot code on GPT with BIOS. As pmbr.s says in
    a comment, "545K should be enough for any boot code". This rounds
    down slightly.

Approved by:	re
This commit is contained in:
emaste 2014-09-15 17:56:55 +00:00
parent 37dd226a2e
commit b2352fc201

View File

@ -69,7 +69,7 @@ bootpart_size(const char *scheme) {
return (0);
if (strcmp(platform, "BIOS") == 0)
return (64*1024);
return (512*1024);
else
return (800*1024);