From acc895703daf72d6c9a83db2b7a0f8ff73b37ad5 Mon Sep 17 00:00:00 2001 From: Jan Willeke Date: Mon, 1 Jun 2015 14:22:09 +0200 Subject: arch: add support for s390 This patch adds support for S390 (32-bit) architecture. Signed-off-by: Jan Willeke [PM: rewrote the subject line, style fixes, s390x/s390 typo bugfixes] Signed-off-by: Paul Moore --- tools/scmp_arch_detect.c | 3 +++ tools/scmp_bpf_sim.c | 2 ++ tools/util.c | 2 ++ 3 files changed, 7 insertions(+) (limited to 'tools') diff --git a/tools/scmp_arch_detect.c b/tools/scmp_arch_detect.c index 1382190..adf624f 100644 --- a/tools/scmp_arch_detect.c +++ b/tools/scmp_arch_detect.c @@ -99,6 +99,9 @@ int main(int argc, char *argv[]) case SCMP_ARCH_MIPSEL64N32: printf("mipsel64n32\n"); break; + case SCMP_ARCH_S390: + printf("s390\n"); + break; case SCMP_ARCH_S390X: printf("s390x\n"); break; diff --git a/tools/scmp_bpf_sim.c b/tools/scmp_bpf_sim.c index b32c880..c4334b1 100644 --- a/tools/scmp_bpf_sim.c +++ b/tools/scmp_bpf_sim.c @@ -249,6 +249,8 @@ int main(int argc, char *argv[]) arch = AUDIT_ARCH_MIPS64N32; else if (strcmp(optarg, "mipsel64n32") == 0) arch = AUDIT_ARCH_MIPSEL64N32; + else if (strcmp(optarg, "s390") == 0) + arch = AUDIT_ARCH_S390; else if (strcmp(optarg, "s390x") == 0) arch = AUDIT_ARCH_S390X; else diff --git a/tools/util.c b/tools/util.c index edafbd9..266e027 100644 --- a/tools/util.c +++ b/tools/util.c @@ -62,6 +62,8 @@ #elif __MIPSEL__ #define ARCH_NATIVE AUDIT_ARCH_MIPSEL64N32 #endif /* _MIPS_SIM_NABI32 */ +#elif __s390__ +#define ARCH_NATIVE AUDIT_ARCH_S390 #elif __s390x__ #define ARCH_NATIVE AUDIT_ARCH_S390X #else -- cgit v1.2.1