From f2ed1a2c937aaa54d1cc98b00841943d48ce41ea Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Tue, 26 Mar 2024 18:31:47 -0600 Subject: qemu: Remove versions older then 8.1, no longer compatible Versions older then 8.1 are no longer compatible with the runqemu. Signed-off-by: Mark Hatle --- .../0007-xen-mapcache-Fix-build-on-Arm.patch | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0007-xen-mapcache-Fix-build-on-Arm.patch (limited to 'meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0007-xen-mapcache-Fix-build-on-Arm.patch') diff --git a/meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0007-xen-mapcache-Fix-build-on-Arm.patch b/meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0007-xen-mapcache-Fix-build-on-Arm.patch deleted file mode 100644 index 7ff202ff..00000000 --- a/meta-xilinx-virtualization/recipes-devtools/qemu/qemu-xilinx-7.1/0007-xen-mapcache-Fix-build-on-Arm.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 2aca3ff63a5d5897cd32e0030569623f0c454f2c Mon Sep 17 00:00:00 2001 -From: Oleksandr Tyshchenko -Date: Mon, 19 Sep 2022 21:59:55 +0300 -Subject: [PATCH 7/8] xen-mapcache: Fix build on Arm -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -../hw/xen/xen-mapcache.c: In function ‘xen_map_grant_dyn’: -../hw/xen/xen-mapcache.c:668:9: error: ‘refs’ may be used uninitialized - in this function [-Werror=maybe-uninitialized] - 668 | g_free(refs); - | ^~~~~~~~~~~~ -cc1: all warnings being treated as errors - -Signed-off-by: Oleksandr Tyshchenko -Acked-by: Stefano Stabellini ---- - hw/xen/xen-mapcache.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/hw/xen/xen-mapcache.c b/hw/xen/xen-mapcache.c -index f81b75d216..6544e331e0 100644 ---- a/hw/xen/xen-mapcache.c -+++ b/hw/xen/xen-mapcache.c -@@ -620,7 +620,7 @@ static void *xen_map_grant_dyn(MemoryRegion **mr, hwaddr addr, hwaddr *plen, - unsigned int i; - unsigned int nrefs = (page_off + *plen + XC_PAGE_SIZE - 1) >> XC_PAGE_SHIFT; - uint32_t ref = (addr - XEN_GRANT_ADDR_OFF) >> XC_PAGE_SHIFT; -- uint32_t *refs; -+ uint32_t *refs = NULL; - unsigned int prot = PROT_READ; - struct XENMappedGrantRegion *mgr = NULL; - --- -2.25.1 - -- cgit v1.2.3-54-g00ecf