From fd41f254d24cd7be7ee0b4553a8f29e0f2b248e7 Mon Sep 17 00:00:00 2001 From: Josef Schlehofer <pepe.schlehofer@gmail.com> Date: Mon, 30 Dec 2019 21:00:07 +0100 Subject: [PATCH] lists/pkglists/hardening: seccomp is not available on arm64 --- lists/pkglists/hardening.lua.m4 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lists/pkglists/hardening.lua.m4 b/lists/pkglists/hardening.lua.m4 index 1e0ee67e9..50e0dc28d 100644 --- a/lists/pkglists/hardening.lua.m4 +++ b/lists/pkglists/hardening.lua.m4 @@ -5,9 +5,10 @@ _FEATURE_GUARD_ Install("procd-ujail", { priority = 40 }) -- Seccomp -- -if board ~= "turris1x" then +if board == "omnia" then Install("procd-seccomp", { priority = 40 }) - Install("libseccomp", "scmp_sys_resolver", { priority = 40 }) end +Install("libseccomp", "scmp_sys_resolver", { priority = 40 }) + _END_FEATURE_GUARD_ -- GitLab