summaryrefslogtreecommitdiffstats
path: root/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2021-02-07 08:43:53 -0500
committerBruce Ashfield <bruce.ashfield@gmail.com>2021-02-07 08:43:53 -0500
commit436b60e582ec5026db82d8961477ffe94d8e2b90 (patch)
tree88438499a40b1ef2859c4cbd9e1f1413211024da /recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
parent0904b0a7788d22f32d28541197c898e032107c99 (diff)
downloadmeta-virtualization-436b60e582ec5026db82d8961477ffe94d8e2b90.tar.gz
kvmtool: refresh to 5.10 version
Grabbing the latest kvmtool sources. These follow kernel numbering, so we bump that to 5.10 to match. We also drop one patch that is part of the main repo now, and refresh the others to avoid fuzz warnings. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch')
-rw-r--r--recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch14
1 files changed, 6 insertions, 8 deletions
diff --git a/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch b/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
index 262531ca..dbb2bebe 100644
--- a/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
+++ b/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
@@ -1,18 +1,19 @@
1From 977a4d41012d1814f5a5330cacc2e4944de387cc Mon Sep 17 00:00:00 2001 1From 80eb205fd165072724a6e6db1dff8ab0bf2aa667 Mon Sep 17 00:00:00 2001
2From: Dariusz Pelowski <dariusz.pelowski@gmail.com> 2From: Dariusz Pelowski <dariusz.pelowski@gmail.com>
3Date: Sun, 5 Nov 2017 12:39:21 +0100 3Date: Sun, 5 Nov 2017 12:39:21 +0100
4Subject: [PATCH 2/2] kvmtool: add EXTRA_CFLAGS variable 4Subject: [PATCH] kvmtool: add EXTRA_CFLAGS variable
5 5
6to avoid CFLAGS overriding introduce new EXTRA_CFLAGS variable 6to avoid CFLAGS overriding introduce new EXTRA_CFLAGS variable
7for setting via command argument 7for setting via command argument
8 8
9Signed-off-by: Dariusz Pelowski <dariusz.pelowski@gmail.com> 9Signed-off-by: Dariusz Pelowski <dariusz.pelowski@gmail.com>
10
10--- 11---
11 Makefile | 2 ++ 12 Makefile | 2 ++
12 1 file changed, 2 insertions(+) 13 1 file changed, 2 insertions(+)
13 14
14diff --git a/Makefile b/Makefile 15diff --git a/Makefile b/Makefile
15index 64a0a16..bca1b26 100644 16index 3787df2..ece3d2a 100644
16--- a/Makefile 17--- a/Makefile
17+++ b/Makefile 18+++ b/Makefile
18@@ -2,6 +2,8 @@ 19@@ -2,6 +2,8 @@
@@ -22,8 +23,5 @@ index 64a0a16..bca1b26 100644
22+CFLAGS += $(EXTRA_CFLAGS) 23+CFLAGS += $(EXTRA_CFLAGS)
23+ 24+
24 ifeq ($(strip $(V)),) 25 ifeq ($(strip $(V)),)
25 E = @echo 26 ifeq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
26 Q = @ 27 E = @echo
27--
282.15.0
29