mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

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>
28 lines
702 B
Diff
28 lines
702 B
Diff
From 80eb205fd165072724a6e6db1dff8ab0bf2aa667 Mon Sep 17 00:00:00 2001
|
|
From: Dariusz Pelowski <dariusz.pelowski@gmail.com>
|
|
Date: Sun, 5 Nov 2017 12:39:21 +0100
|
|
Subject: [PATCH] kvmtool: add EXTRA_CFLAGS variable
|
|
|
|
to avoid CFLAGS overriding introduce new EXTRA_CFLAGS variable
|
|
for setting via command argument
|
|
|
|
Signed-off-by: Dariusz Pelowski <dariusz.pelowski@gmail.com>
|
|
|
|
---
|
|
Makefile | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 3787df2..ece3d2a 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -2,6 +2,8 @@
|
|
# Define WERROR=0 to disable -Werror.
|
|
#
|
|
|
|
+CFLAGS += $(EXTRA_CFLAGS)
|
|
+
|
|
ifeq ($(strip $(V)),)
|
|
ifeq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
|
|
E = @echo
|