]> git.pld-linux.org Git - packages/systemd.git/commitdiff
- rel 5; add disable seccomp on i686 patch (fixed upstream in 233)
authorBartlomiej Zimon <uzi18@o2.pl>
Tue, 14 Mar 2017 22:16:01 +0000 (23:16 +0100)
committerBartlomiej Zimon <uzi18@o2.pl>
Tue, 14 Mar 2017 22:16:01 +0000 (23:16 +0100)
systemd-seccomp_disable_on_i386.patch [new file with mode: 0644]

diff --git a/systemd-seccomp_disable_on_i386.patch b/systemd-seccomp_disable_on_i386.patch
new file mode 100644 (file)
index 0000000..ccc0c33
--- /dev/null
@@ -0,0 +1,25 @@
+commit e798dcbc24681f9516be4e18dfbe916cf9fa44bf
+Author: Dave Reisner <dreisner@archlinux.org>
+Date:   Wed Nov 9 08:00:26 2016 -0500
+
+    disable RestrictAddressFamilies on i686
+    
+    Shit's broke, yo.
+    
+    https://github.com/systemd/systemd/issues/4575
+
+diff --git a/src/core/execute.c b/src/core/execute.c
+index 8f06abf81..fb03b1b36 100644
+--- a/src/core/execute.c
++++ b/src/core/execute.c
+@@ -1329,6 +1329,10 @@ static int apply_address_families(const Unit* u, const ExecContext *c) {
+         Iterator i;
+         int r;
++#if defined(__i386__)
++        return 0;
++#endif
++
+         assert(c);
+         if (skip_seccomp_unavailable(u, "RestrictAddressFamilies="))
This page took 0.245192 seconds and 4 git commands to generate.