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>
24 lines
587 B
Diff
24 lines
587 B
Diff
From 532043e6937b78b12d89d0c6001f0e1853143247 Mon Sep 17 00:00:00 2001
|
|
From: Cevat Bostancioglu <bostancioglucevat@gmail.com>
|
|
Date: Wed, 19 Jun 2019 20:36:56 +0300
|
|
Subject: [PATCH] WERROR override disabled.
|
|
|
|
WERROR override causes gcc sizeof-pointer-memaccess, format-truncation errors.
|
|
|
|
---
|
|
Makefile | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index ece3d2a..da6c1f0 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -4,6 +4,7 @@
|
|
|
|
CFLAGS += $(EXTRA_CFLAGS)
|
|
|
|
+WERROR = 0
|
|
ifeq ($(strip $(V)),)
|
|
ifeq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
|
|
E = @echo
|