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

Add a versioned-suffix pair of recipes for Xen 4.14, allowing selection of which Xen version to build via setting PREFERRED_VERSION. 4.14 is currently still pre-release, so the new recipes for it set DEFAULT_PREFERENCE to -1, and the default for now remains the existing stable version. Forward ports of patches needed for 4.14 are included. Implementation note: since both this version and the git recipe are built from git branches -- important for Xen since significant updates are made available there inbetween point releases -- the recipe includes 'stable' as a string in PV so as to distinguish it from 'git' in the git recipe, and thereby allow PREFERRED_VERSION to select the correct recipe in the situation where both happen to be configured with the same XEN_REL. Signed-off-by: Christopher Clark <christopher.clark6@baesystems.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
27 lines
883 B
Diff
27 lines
883 B
Diff
From 9cff3bf8425ccc593825fcde8ca5eaa32a43d04d Mon Sep 17 00:00:00 2001
|
|
From: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
Date: Thu, 18 Jun 2020 09:05:22 -0400
|
|
Subject: [PATCH] xen/build: temporarily inhibit Werror
|
|
|
|
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
|
|
Rebased on Xen 4.14:
|
|
Signed-off-by: Christopher Clark <christopher.w.clark@gmail.com>
|
|
---
|
|
tools/libxl/Makefile | 2 +-
|
|
xen/Rules.mk | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile
|
|
index 6da342ed61..c67560e269 100644
|
|
--- a/tools/libxl/Makefile
|
|
+++ b/tools/libxl/Makefile
|
|
@@ -11,7 +11,7 @@ MINOR = 0
|
|
XLUMAJOR = 4.14
|
|
XLUMINOR = 0
|
|
|
|
-CFLAGS += -Werror -Wno-format-zero-length -Wmissing-declarations \
|
|
+CFLAGS += -Wno-format-zero-length -Wmissing-declarations \
|
|
-Wno-declaration-after-statement -Wformat-nonliteral
|
|
CFLAGS += -I. -fPIC
|
|
|