Disable SECCOMP until tests are passing

Signed-off-by: David Abdurachmanov <david.abdurachmanov@sifive.com>
This commit is contained in:
David Abdurachmanov 2019-09-28 21:11:12 +02:00
parent ca6bc7cf2e
commit 9687e59316
Signed by: davidlt
GPG Key ID: 8B7F1DA0E2C9FDBB
1 changed files with 9 additions and 2 deletions

View File

@ -15,7 +15,7 @@
Name: systemd
Url: https://www.freedesktop.org/wiki/Software/systemd
Version: 243
Release: 2%{?commit:.git%{shortcommit}}.1.riscv64%{?dist}
Release: 2%{?commit:.git%{shortcommit}}.2.riscv64%{?dist}
# For a breakdown of the licensing, see README
License: LGPLv2+ and MIT and GPLv2+
Summary: System and Service Manager
@ -59,7 +59,7 @@ Patch0002: 0002-Revert-units-set-NoNewPrivileges-for-all-long-runnin.patch
Patch0998: 0998-resolved-create-etc-resolv.conf-symlink-at-runtime.patch
Patch0040: systemd-seccomp-riscv64.patch
#Patch0040: systemd-seccomp-riscv64.patch
%ifarch %{ix86} x86_64 aarch64
%global have_gnu_efi 1
@ -301,7 +301,11 @@ CONFIGURE_OPTS=(
-Dkmod=true
-Dxkbcommon=true
-Dblkid=true
%ifnarch riscv64
-Dseccomp=true
%else
-Dseccomp=false
%endif
-Dima=true
-Dselinux=true
-Dapparmor=false
@ -703,6 +707,9 @@ fi
%files tests -f .file-list-tests
%changelog
* Sat Sep 28 2019 David Abdurachmanov <david.abdurachmanov@sifive.com> - 243-2.gitfab6f01.2.riscv64
- Disable SECCOMP until the test can pass
* Fri Sep 27 2019 David Abdurachmanov <david.abdurachmanov@sifive.com> - 243-2.gitfab6f01.1.riscv64
- Add SECCOMP support for RISC-V 64-bit (riscv64)