Commit e319eb34 by James Cowgill

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 6f943dd9
......@@ -2079,9 +2079,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