From: James Cowgill Date: Thu, 18 Aug 2016 13:27:35 +0000 (+0100) Subject: seccomp: Add mips and mips64 entries to lxc_config_parse_arch X-Git-Tag: lxc-1.0.9~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0c3f6c3353d47b836a99eab34ae6fccb9d61c618;p=thirdparty%2Flxc.git seccomp: Add mips and mips64 entries to lxc_config_parse_arch Fixes "unsupported personality" warnings when starting containers. Signed-off-by: James Cowgill --- diff --git a/src/lxc/confile.c b/src/lxc/confile.c index 31efd77dc..b4662377d 100644 --- a/src/lxc/confile.c +++ b/src/lxc/confile.c @@ -1791,9 +1791,13 @@ signed long lxc_config_parse_arch(const char *arch) { "i586", PER_LINUX32 }, { "i686", PER_LINUX32 }, { "athlon", PER_LINUX32 }, + { "mips", PER_LINUX32 }, + { "mipsel", PER_LINUX32 }, { "linux64", PER_LINUX }, { "x86_64", PER_LINUX }, { "amd64", PER_LINUX }, + { "mips64", PER_LINUX }, + { "mips64el", PER_LINUX }, }; size_t len = sizeof(pername) / sizeof(pername[0]);