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:
parent
37dd226a2e
commit
b2352fc201
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user