Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Nov 2023 10:07:39 -0700
From:      Warner Losh <imp@bsdimp.com>
To:        John Baldwin <jhb@freebsd.org>
Cc:        Warner Losh <imp@freebsd.org>, src-committers@freebsd.org,  dev-commits-src-all@freebsd.org, dev-commits-src-main@freebsd.org
Subject:   Re: git: c596126a5d3d - main - pmbr: Only load the first 545k rather than error out
Message-ID:  <CANCZdfqC_Y2%2Bj7Vi5rWbKagyByk7xrWBy6H0q8qw8hDpZc4WuQ@mail.gmail.com>
In-Reply-To: <8fa6ed4d-c26b-4dd6-86f2-c3751f86d426@FreeBSD.org>
References:  <202311272246.3ARMkNS1037267@gitrepo.freebsd.org> <8fa6ed4d-c26b-4dd6-86f2-c3751f86d426@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
--0000000000005b0afd060b3975b2
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Hey John,

On Tue, Nov 28, 2023 at 9:06=E2=80=AFAM John Baldwin <jhb@freebsd.org> wrot=
e:

> On 11/27/23 2:46 PM, Warner Losh wrote:
> > The branch main has been updated by imp:
> >
> > URL:
> https://cgit.FreeBSD.org/src/commit/?id=3Dc596126a5d3d2ee015ee6807b4041ef=
a5b9d9b07
> >
> > commit c596126a5d3d2ee015ee6807b4041efa5b9d9b07
> > Author:     Warner Losh <imp@FreeBSD.org>
> > AuthorDate: 2023-11-27 22:40:40 +0000
> > Commit:     Warner Losh <imp@FreeBSD.org>
> > CommitDate: 2023-11-27 22:45:56 +0000
> >
> >      pmbr: Only load the first 545k rather than error out
> >
> >      It would be nice to have larger boot partitions for ESPs to live i=
n
> one
> >      day. It's trivial to carve out 5M 10M or 200M when provisioning, b=
ut
> >      logistical issues may make it hard to do it after the fact. So onl=
y
> warn
> >      when the partition is > 545k. If we ever grow the boot loader larg=
er
> >      than that, then it will be responsible for loading the rest anyway=
.
> >
> >      Sponsored by:           Netflix
> >      Reviewed by:            tsoome
> >      Differential Revision:  https://reviews.freebsd.org/D42774
> > ---
> >   stand/i386/pmbr/pmbr.S | 24 +++++++++++++++---------
> >   1 file changed, 15 insertions(+), 9 deletions(-)
> >
> > diff --git a/stand/i386/pmbr/pmbr.S b/stand/i386/pmbr/pmbr.S
> > index c61acbe261bd..60b26df15720 100644
> > --- a/stand/i386/pmbr/pmbr.S
> > +++ b/stand/i386/pmbr/pmbr.S
> > @@ -155,8 +155,10 @@ next_boot:       addl $1,(%si)                   #
> Next LBA
> >               mov %es,%ax                     # Adjust segment for next
> >               addw $SECSIZE/16,%ax            #  sector
> >               cmp $0x9000,%ax                 # Don't load past 0x90000=
,
> > -             jae err_big                     #  545k should be enough
> for
> > -             mov %ax,%es                     #  any boot code. :)
> > +             jb sz_ok                        #  545k should be enough
> for
> > +             call err_big                    #  any boot code, but war=
n
> > +             mov $0x9000-SECSIZE/16,%ax      #  and truncate
> > +sz_ok:               mov %ax,%es
> >               jmp load_boot
> >   #
> >   # Move to the next partition.  If we walk off the end of the sector,
> load
> > @@ -203,17 +205,21 @@ getdrvparams:
> >   #
> >   # Various error message entry points.
> >   #
> > -err_big:     movw $msg_big,%si               # "Boot loader too
> > -             jmp putstr                      #  large"
> > +err_big:     movw $msg_big,%si               # "Truncated
> > +             call putstr                     #  to 545k"
> > +             ret
>
> Hmm, the comment here and the text string don't match.
>

Yea, size related message churn.


> >   err_pt:     movw $msg_pt,%si                # "Invalid partition
> > -             jmp putstr                      #  table"
> > +             call putstr                     #  table"
> > +err_pt.1:    jmp err_pt.1                    # Await reset
> >
> >   err_rd:     movw $msg_rd,%si                # "I/O error loading
> > -             jmp putstr                      #  boot loader"
> > +             call putstr                     #  boot loader"
> > +             jmp err_pt.1
> >
> >   err_noboot:         movw $msg_noboot,%si            # "Missing boot
> > -             jmp putstr                      #  loader"
> > +             call putstr                     #  loader"
> > +             jmp err_pt.1
> >   #
> >   # Output an ASCIZ string to the console via the BIOS.
> >   #
> > @@ -223,9 +229,9 @@ putstr.0: movw $0x7,%bx                   #
> Page:attribute
> >   putstr:     lodsb                           # Get character
> >               testb %al,%al                   # End of string?
> >               jnz putstr.0                    # No
> > -putstr.1:    jmp putstr.1                    # Await reset
> > +             ret
> >
> > -msg_big:     .asciz "Boot loader too large"
> > +msg_big:     .asciz "Loaded only 545k"
> >   msg_pt:     .asciz "Invalid partition table"
> >   msg_rd:     .asciz "I/O error loading boot loader"
> >   msg_noboot:         .asciz "Missing boot loader"
>
> I wonder if it would save a few bytes by having a common 'puterr'
> that does 'call putstr' and then the jmp to itself that the other err
> targets use rahter than adding the jmp to each one of those.
>

Yea, I started to do that, but that's 12 bytes of possible savings at the
cost of at least 8 bytes of new assembler, maybe more, so when I got
another too full message I punted.


> But also, can't you just leave a gap in the partitions to leave room
> for a future ESP?  It might not always be safe to load a full 545k
> depending on if the firmware has reserved some of memory just below
> 640k.  545k is an upper bound on how much can be loaded in terms of
> 640k - the load address, but the practical limit might be lower.  It is
> probably safer as a general rule to keep the boot partition closer to
> the size of the  boot loader and leave a gap in place instead.
>

Today we load 512k always. This likely is a bad idea on some really bloated
with BIOS data system (though they are rare). I'll concede that this may up
the number of systems that conflict.  It looks like there's a BTX header of
sorts just after the gpt loader. In an ideal world, we'd load only the
first sector of gptboot and it would load the rest, but that has a legacy
problem. We could also enforce a different limit that's much smaller (say
256k or 200k) and just load up to that and force gptboot to cope if it's
larger than that (smaller) size. pmbr then starts to be a little less
generic, but freebsd-boot was always intended to boot gptboot or gptzfsboot
(before they were unified). We can put that limit minus 30-50k into the
build system to trigger an error so we at least have some warning before we
hit it.

Warner

--0000000000005b0afd060b3975b2
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><div dir=3D"ltr">Hey John,<br></div><br><div class=3D"gmai=
l_quote"><div dir=3D"ltr" class=3D"gmail_attr">On Tue, Nov 28, 2023 at 9:06=
=E2=80=AFAM John Baldwin &lt;<a href=3D"mailto:jhb@freebsd.org">jhb@freebsd=
.org</a>&gt; wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"mar=
gin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1=
ex">On 11/27/23 2:46 PM, Warner Losh wrote:<br>
&gt; The branch main has been updated by imp:<br>
&gt; <br>
&gt; URL: <a href=3D"https://cgit.FreeBSD.org/src/commit/?id=3Dc596126a5d3d=
2ee015ee6807b4041efa5b9d9b07" rel=3D"noreferrer" target=3D"_blank">https://=
cgit.FreeBSD.org/src/commit/?id=3Dc596126a5d3d2ee015ee6807b4041efa5b9d9b07<=
/a><br>
&gt; <br>
&gt; commit c596126a5d3d2ee015ee6807b4041efa5b9d9b07<br>
&gt; Author:=C2=A0 =C2=A0 =C2=A0Warner Losh &lt;imp@FreeBSD.org&gt;<br>
&gt; AuthorDate: 2023-11-27 22:40:40 +0000<br>
&gt; Commit:=C2=A0 =C2=A0 =C2=A0Warner Losh &lt;imp@FreeBSD.org&gt;<br>
&gt; CommitDate: 2023-11-27 22:45:56 +0000<br>
&gt; <br>
&gt;=C2=A0 =C2=A0 =C2=A0 pmbr: Only load the first 545k rather than error o=
ut<br>
&gt;=C2=A0 =C2=A0 =C2=A0 <br>
&gt;=C2=A0 =C2=A0 =C2=A0 It would be nice to have larger boot partitions fo=
r ESPs to live in one<br>
&gt;=C2=A0 =C2=A0 =C2=A0 day. It&#39;s trivial to carve out 5M 10M or 200M =
when provisioning, but<br>
&gt;=C2=A0 =C2=A0 =C2=A0 logistical issues may make it hard to do it after =
the fact. So only warn<br>
&gt;=C2=A0 =C2=A0 =C2=A0 when the partition is &gt; 545k. If we ever grow t=
he boot loader larger<br>
&gt;=C2=A0 =C2=A0 =C2=A0 than that, then it will be responsible for loading=
 the rest anyway.<br>
&gt;=C2=A0 =C2=A0 =C2=A0 <br>
&gt;=C2=A0 =C2=A0 =C2=A0 Sponsored by:=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0Netflix<br>
&gt;=C2=A0 =C2=A0 =C2=A0 Reviewed by:=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 tsoome<br>
&gt;=C2=A0 =C2=A0 =C2=A0 Differential Revision:=C2=A0 <a href=3D"https://re=
views.freebsd.org/D42774" rel=3D"noreferrer" target=3D"_blank">https://revi=
ews.freebsd.org/D42774</a><br>
&gt; ---<br>
&gt;=C2=A0 =C2=A0stand/i386/pmbr/pmbr.S | 24 +++++++++++++++---------<br>
&gt;=C2=A0 =C2=A01 file changed, 15 insertions(+), 9 deletions(-)<br>
&gt; <br>
&gt; diff --git a/stand/i386/pmbr/pmbr.S b/stand/i386/pmbr/pmbr.S<br>
&gt; index c61acbe261bd..60b26df15720 100644<br>
&gt; --- a/stand/i386/pmbr/pmbr.S<br>
&gt; +++ b/stand/i386/pmbr/pmbr.S<br>
&gt; @@ -155,8 +155,10 @@ next_boot:=C2=A0 =C2=A0 =C2=A0 =C2=A0addl $1,(%si=
)=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0# Nex=
t LBA<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0mov %es,%ax=C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0# =
Adjust segment for next<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0addw $SECSIZE/16=
,%ax=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #=C2=A0 sector<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0cmp $0x9000,%ax=
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0# Don&#39;t l=
oad past 0x90000,<br>
&gt; -=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0jae err_big=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0#=C2=A0 5=
45k should be enough for<br>
&gt; -=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0mov %ax,%es=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0#=C2=A0 a=
ny boot code. :)<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0jb sz_ok=C2=A0 =C2=A0=
 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #=C2=
=A0 545k should be enough for<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0call err_big=C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #=C2=A0 any =
boot code, but warn<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0mov $0x9000-SECSIZE/1=
6,%ax=C2=A0 =C2=A0 =C2=A0 #=C2=A0 and truncate<br>
&gt; +sz_ok:=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0mov %ax,=
%es<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0jmp load_boot<br=
>
&gt;=C2=A0 =C2=A0#<br>
&gt;=C2=A0 =C2=A0# Move to the next partition.=C2=A0 If we walk off the end=
 of the sector, load<br>
&gt; @@ -203,17 +205,21 @@ getdrvparams:<br>
&gt;=C2=A0 =C2=A0#<br>
&gt;=C2=A0 =C2=A0# Various error message entry points.<br>
&gt;=C2=A0 =C2=A0#<br>
&gt; -err_big:=C2=A0 =C2=A0 =C2=A0movw $msg_big,%si=C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0# &quot;Boot loader too<br>
&gt; -=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0jmp putstr=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #=C2=A0 =
large&quot;<br>
&gt; +err_big:=C2=A0 =C2=A0 =C2=A0movw $msg_big,%si=C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0# &quot;Truncated<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0call putstr=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0#=C2=A0 t=
o 545k&quot;<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0ret<br>
<br>
Hmm, the comment here and the text string don&#39;t match.<br></blockquote>=
<div><br></div><div>Yea, size related message churn.</div><div>=C2=A0</div>=
<blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-=
left:1px solid rgb(204,204,204);padding-left:1ex">
&gt;=C2=A0 =C2=A0err_pt:=C2=A0 =C2=A0 =C2=A0movw $msg_pt,%si=C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 # &quot;Invalid partition<br>
&gt; -=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0jmp putstr=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #=C2=A0 =
table&quot;<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0call putstr=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0#=C2=A0 t=
able&quot;<br>
&gt; +err_pt.1:=C2=A0 =C2=A0 jmp err_pt.1=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 # Await reset<br>
&gt;=C2=A0 =C2=A0<br>
&gt;=C2=A0 =C2=A0err_rd:=C2=A0 =C2=A0 =C2=A0movw $msg_rd,%si=C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 # &quot;I/O error loading<br>
&gt; -=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0jmp putstr=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #=C2=A0 =
boot loader&quot;<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0call putstr=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0#=C2=A0 b=
oot loader&quot;<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0jmp err_pt.1<br>
&gt;=C2=A0 =C2=A0<br>
&gt;=C2=A0 =C2=A0err_noboot:=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0movw $msg_nob=
oot,%si=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 # &quot;Missing boot<br>
&gt; -=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0jmp putstr=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 #=C2=A0 =
loader&quot;<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0call putstr=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0#=C2=A0 l=
oader&quot;<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0jmp err_pt.1<br>
&gt;=C2=A0 =C2=A0#<br>
&gt;=C2=A0 =C2=A0# Output an ASCIZ string to the console via the BIOS.<br>
&gt;=C2=A0 =C2=A0#<br>
&gt; @@ -223,9 +229,9 @@ putstr.0: movw $0x7,%bx=C2=A0 =C2=A0 =C2=A0 =C2=A0=
 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0# Page:attribute<br>
&gt;=C2=A0 =C2=A0putstr:=C2=A0 =C2=A0 =C2=A0lodsb=C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0# =
Get character<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0testb %al,%al=C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0# End of =
string?<br>
&gt;=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0jnz putstr.0=C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 # No<br>
&gt; -putstr.1:=C2=A0 =C2=A0 jmp putstr.1=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 # Await reset<br>
&gt; +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0ret<br>
&gt;=C2=A0 =C2=A0<br>
&gt; -msg_big:=C2=A0 =C2=A0 =C2=A0.asciz &quot;Boot loader too large&quot;<=
br>
&gt; +msg_big:=C2=A0 =C2=A0 =C2=A0.asciz &quot;Loaded only 545k&quot;<br>
&gt;=C2=A0 =C2=A0msg_pt:=C2=A0 =C2=A0 =C2=A0.asciz &quot;Invalid partition =
table&quot;<br>
&gt;=C2=A0 =C2=A0msg_rd:=C2=A0 =C2=A0 =C2=A0.asciz &quot;I/O error loading =
boot loader&quot;<br>
&gt;=C2=A0 =C2=A0msg_noboot:=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0.asciz &quot;=
Missing boot loader&quot;<br>
<br>
I wonder if it would save a few bytes by having a common &#39;puterr&#39;<b=
r>
that does &#39;call putstr&#39; and then the jmp to itself that the other e=
rr<br>
targets use rahter than adding the jmp to each one of those.<br></blockquot=
e><div><br></div><div>Yea, I started to do that, but that&#39;s 12 bytes of=
 possible savings at the cost of at least 8 bytes of new assembler, maybe m=
ore, so when I got another too full message I punted.</div><div>=C2=A0</div=
><blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border=
-left:1px solid rgb(204,204,204);padding-left:1ex">
But also, can&#39;t you just leave a gap in the partitions to leave room<br=
>
for a future ESP?=C2=A0 It might not always be safe to load a full 545k<br>
depending on if the firmware has reserved some of memory just below<br>
640k.=C2=A0 545k is an upper bound on how much can be loaded in terms of<br=
>
640k - the load address, but the practical limit might be lower.=C2=A0 It i=
s<br>
probably safer as a general rule to keep the boot partition closer to<br>
the size of the=C2=A0 boot loader and leave a gap in place instead.<br></bl=
ockquote><div><br></div><div>Today we load 512k always. This likely is a ba=
d idea on some really bloated with BIOS data system (though they are rare).=
 I&#39;ll concede that this may up the number of systems that conflict.=C2=
=A0 It looks like there&#39;s a BTX header of sorts just after the gpt load=
er. In an ideal world, we&#39;d load only the first sector of gptboot and i=
t would load the rest, but that has a legacy problem. We could also enforce=
 a different limit that&#39;s much smaller (say 256k or 200k) and just load=
 up to that and force gptboot to cope if it&#39;s larger than that (smaller=
) size. pmbr then starts to be a little less generic, but freebsd-boot was =
always intended to boot gptboot or gptzfsboot (before they were unified). W=
e can put that limit minus 30-50k into the build system to trigger an error=
 so we at least have some warning before we hit it.</div><div><br></div><di=
v>Warner</div></div></div>

--0000000000005b0afd060b3975b2--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CANCZdfqC_Y2%2Bj7Vi5rWbKagyByk7xrWBy6H0q8qw8hDpZc4WuQ>