Merge pull request #864 from michael-holzheu/seccomp_add_ppc_and_s390x

seccomp: Add ppc and s390x to seccomp/config.go
This commit is contained in:
Michael Crosby 2016-06-01 14:34:08 -07:00
commit 6c485e6902
1 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,11 @@ var archs = map[string]string{
"SCMP_ARCH_MIPSEL": "mipsel",
"SCMP_ARCH_MIPSEL64": "mipsel64",
"SCMP_ARCH_MIPSEL64N32": "mipsel64n32",
"SCMP_ARCH_PPC": "ppc",
"SCMP_ARCH_PPC64": "ppc64",
"SCMP_ARCH_PPC64LE": "ppc64le",
"SCMP_ARCH_S390": "s390",
"SCMP_ARCH_S390X": "s390x",
}
// ConvertStringToOperator converts a string into a Seccomp comparison operator.