On 2024-04-09 10:34:59+0200, Chris Hofstaedtler wrote: > John Paul Adrian Glaubitz points out that libseccomp needs to release 2.6.0, > too. For the record: util-linux does not use libseccomp. > Signed-off-by: Chris Hofstaedtler <zeha@xxxxxxxxxx> Reviewed-by: Thomas Weißschuh <thomas@xxxxxxxx> > --- > include/audit-arch.h | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/include/audit-arch.h b/include/audit-arch.h > index ade182417..9afc663cd 100644 > --- a/include/audit-arch.h > +++ b/include/audit-arch.h > @@ -35,6 +35,8 @@ > # endif > #elif __powerpc__ > # define SECCOMP_ARCH_NATIVE AUDIT_ARCH_PPC > +#elif __m68k__ > +# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_M68K > #elif __mips__ > # if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ > # define SECCOMP_ARCH_NATIVE AUDIT_ARCH_MIPS > @@ -47,6 +49,12 @@ > # else > # define SECCOMP_ARCH_NATIVE AUDIT_ARCH_ARCV2 > # endif > +#elif __sh__ > +# if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ > +# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_SH > +# else > +# define SECCOMP_ARCH_NATIVE AUDIT_ARCH_SHEL > +# endif > #elif __sparc__ > # if __SIZEOF_POINTER__ == 4 > # define SECCOMP_ARCH_NATIVE AUDIT_ARCH_SPARC > -- > 2.39.2 > >