Use --mac for isohybrid only if doing macboot images
that format is already used in the template few lines above, this one is imho simple and easy to follow
----- Original Message -----
> On 05/18/2012 03:49 AM, Martin Gracik wrote:
> > ---
> > share/x86.tmpl | 2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/share/x86.tmpl b/share/x86.tmpl
> > index db19bdf..023c1af 100644
> > --- a/share/x86.tmpl
> > +++ b/share/x86.tmpl
> > @@ -59,7 +59,7 @@ hardlink ${KERNELDIR}/initrd.img ${BOOTDIR}
> > for img in images:
> > efiargs += " -eltorito-alt-boot -e {0}
> > -no-emul-boot".format(img)
> > efigraft += " {0}={1}/{0}".format(img,outroot)
> > - efihybrid="--uefi --mac"
> > + efihybrid = "--uefi --mac" if domacboot else "--uefi"
> > %>
> > <%include file="efi.tmpl" args="configdir=configdir,
> > KERNELDIR=KERNELDIR, efiarch=efiarch"/>
> > %endif
>
> Same thing bcl mentioned in the other patch, this format is a bit
> difficult to parse.
>
> efihybrid="--uefi"
> if domacboot:
> efihybrid += " --mac"
>
> --
> Jesse Keating
> Fedora -- Freedom˛ is a feature!
>
> _______________________________________________
> Anaconda-devel-list mailing list
> Anaconda-devel-list@redhat.com
> https://www.redhat.com/mailman/listinfo/anaconda-devel-list
>
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|