Commit 0c3f6c33 by James Cowgill Committed by Stéphane Graber

seccomp: Add mips and mips64 entries to lxc_config_parse_arch

Fixes "unsupported personality" warnings when starting containers. Signed-off-by: 's avatarJames Cowgill <james410@cowgill.org.uk>
parent 81ba4c3a
......@@ -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]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment