From 1783cfc3809510d29664bfdc47b89fbe602b84c2 Mon Sep 17 00:00:00 2001 From: Nathan Rossi Date: Wed, 23 Nov 2016 15:40:15 +1000 Subject: qemu-xilinx: Embed Xilinx Release Version into PV Embed the Xilinx Release Version (aka the 'xilinx-vYYYY.X' tag) into the PV of the recipe, this makes it easier to determine which version of Xilinx's QEMU is being used. This removes the need for the comment on what the SRCREV points at, instead this is replaced with a XILINX_RELEASE_VERSION variable which contains the 'vYYYY.X' release string. Signed-off-by: Nathan Rossi Reviewed-by: Alistair Francis --- recipes-devtools/qemu/qemu-xilinx_2.2.5.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-devtools/qemu/qemu-xilinx_2.2.5.bb b/recipes-devtools/qemu/qemu-xilinx_2.2.5.bb index b54f3425..06dec532 100644 --- a/recipes-devtools/qemu/qemu-xilinx_2.2.5.bb +++ b/recipes-devtools/qemu/qemu-xilinx_2.2.5.bb @@ -10,13 +10,13 @@ LIC_FILES_CHKSUM = " \ file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913 \ " -# This is the commit used in the 2016.3 tag +XILINX_RELEASE_VERSION = "v2016.3" SRCREV = "de453ab4cf993f63de502c4efd8a08a347c3b164" SRC_URI = "git://github.com/Xilinx/qemu.git;protocol=https;nobranch=1" S = "${WORKDIR}/git" -PV = "2.2.50+git+${SRCPV}" +PV = "2.2.50-xilinx-${XILINX_RELEASE_VERSION}+git+${SRCPV}" # Disable KVM completely KVMENABLE = "--disable-kvm" -- cgit v1.2.3-54-g00ecf