diff mbox series

[next,v2] qemu: enable seccomp if libseccomp is selected

Message ID 20181125012122.24316-1-casantos@datacom.com.br
State Accepted
Headers show
Series [next,v2] qemu: enable seccomp if libseccomp is selected | expand

Commit Message

Carlos Santos Nov. 25, 2018, 1:21 a.m. UTC
It is required to use qemu with libvirt and allows us to resume working
on the libvirt package (https://patchwork.ozlabs.org/patch/841613).

Signed-off-by: Carlos Santos <casantos@datacom.com.br>
---
Supersedes: https://patchwork.ozlabs.org/patch/1000481/
---
Changes v1->v2:
- Do not introduce an explicit option, just enable seccomp support when
  BR2_PACKAGE_LIBSECCOMP=y.
---
 package/qemu/qemu.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Comments

Thomas Petazzoni Nov. 25, 2018, 8:21 a.m. UTC | #1
Hello,

On Sat, 24 Nov 2018 23:21:22 -0200, Carlos Santos wrote:
> It is required to use qemu with libvirt and allows us to resume working
> on the libvirt package (https://patchwork.ozlabs.org/patch/841613).
> 
> Signed-off-by: Carlos Santos <casantos@datacom.com.br>
> ---
> Supersedes: https://patchwork.ozlabs.org/patch/1000481/
> ---
> Changes v1->v2:
> - Do not introduce an explicit option, just enable seccomp support when
>   BR2_PACKAGE_LIBSECCOMP=y.
> ---
>  package/qemu/qemu.mk | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)

Applied to next, thanks.

Thomas
diff mbox series

Patch

diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index 5ee6abf731..66b74467b9 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -81,6 +81,13 @@  else
 QEMU_OPTS += --disable-tools
 endif
 
+ifeq ($(BR2_PACKAGE_LIBSECCOMP),y)
+QEMU_OPTS += --enable-seccomp
+QEMU_DEPENDENCIES += libseccomp
+else
+QEMU_OPTS += --disable-seccomp
+endif
+
 ifeq ($(BR2_PACKAGE_LIBSSH2),y)
 QEMU_OPTS += --enable-libssh2
 QEMU_DEPENDENCIES += libssh2
@@ -121,7 +128,6 @@  define QEMU_CONFIGURE_CMDS
 			--disable-libiscsi \
 			--disable-usb-redir \
 			--disable-strip \
-			--disable-seccomp \
 			--disable-sparse \
 			--disable-mpath \
 			--disable-sanitizers \