[Libosinfo] [PATCH libosinfo v3] test-isodetect: add Debian's arm flavours
Guido Günther
agx at sigxcpu.org
Thu Jul 13 16:49:15 UTC 2017
On Thu, Jul 13, 2017 at 05:04:54PM +0100, Daniel P. Berrange wrote:
> On Thu, Jul 13, 2017 at 05:49:02PM +0200, Guido Günther wrote:
> > to avoid "Unknown arch" debug messages
> > ---
> > tests/test-isodetect.c | 7 ++++++-
> > 1 file changed, 6 insertions(+), 1 deletion(-)
> >
> > diff --git a/tests/test-isodetect.c b/tests/test-isodetect.c
> > index c72b8fc..7214531 100644
> > --- a/tests/test-isodetect.c
> > +++ b/tests/test-isodetect.c
> > @@ -128,8 +128,13 @@ static struct ISOInfo *load_iso(GFile *file, const gchar *shortid, const gchar *
> > arch = "ia64";
> > else if (strstr(name, "s390x"))
> > arch = "s390x";
> > - else if (strstr(name, "aarch64"))
> > + else if (strstr(name, "aarch64") ||
> > + strstr(name, "arm64"))
> > arch = "aarch64";
> > + else if (strstr(name, "armv7l") ||
> > + strstr(name, "armv7hl") ||
> > + strstr(name, "armhf"))
> > + arch = "armv7l";
> > else {
> > g_debug("Unknown arch in %s", name);
> > arch = "i386";
>
> ACK
Pushed. Thanks
-- Guido
>
> Regards,
> Daniel
> --
> |: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
> |: https://libvirt.org -o- https://fstop138.berrange.com :|
> |: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
>
More information about the Libosinfo
mailing list