svn commit: r271637 - stable/10/usr.sbin/bsdinstall/partedit
Ed Maste
emaste at FreeBSD.org
Mon Sep 15 17:56:56 UTC 2014
Author: emaste
Date: Mon Sep 15 17:56:55 2014
New Revision: 271637
URL: http://svnweb.freebsd.org/changeset/base/271637
Log:
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
Modified:
stable/10/usr.sbin/bsdinstall/partedit/partedit_x86.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.sbin/bsdinstall/partedit/partedit_x86.c
==============================================================================
--- stable/10/usr.sbin/bsdinstall/partedit/partedit_x86.c Mon Sep 15 17:49:46 2014 (r271636)
+++ stable/10/usr.sbin/bsdinstall/partedit/partedit_x86.c Mon Sep 15 17:56:55 2014 (r271637)
@@ -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);
More information about the svn-src-stable-10
mailing list