qemu: enable guest_agent no matter whether softmmu is enabled

Fixes: openwrt/packages#11067

Reported-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
Yousong Zhou
2020-02-07 03:09:39 +08:00
parent 827f3cf873
commit bdac2c8289
7 changed files with 42 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
From cbb0971d0d1bc32413095810e24f17eb7169810a Mon Sep 17 00:00:00 2001
From d4fcdea769a4629c874ebe1801d83e854c94d5e4 Mon Sep 17 00:00:00 2001
From: Yousong Zhou <yszhou4tech@gmail.com>
Date: Sat, 24 Feb 2018 13:43:19 +0800
Subject: [PATCH 1/4] configure: allow disable fortify_source
Subject: [PATCH 1/5] configure: allow disable fortify_source
Tell build system of qemu to not add _FORTIFY_SOURCE options and let the
OpenWrt base build system decide flavor of fortify_source to use
@@ -10,12 +10,12 @@ OpenWrt base build system decide flavor of fortify_source to use
1 file changed, 2 insertions(+)
diff --git a/configure b/configure
index 1c563a7027..f4d949b35b 100755
index 6099be1d84..b52d2cb406 100755
--- a/configure
+++ b/configure
@@ -1518,6 +1518,8 @@ for opt do
@@ -1539,6 +1539,8 @@ for opt do
;;
--disable-libpmem) libpmem=no
--disable-plugins) plugins="no"
;;
+ --disable-fortify-source) fortify_source="no"
+ ;;