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 <[email protected]> --- 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 b54f34257e..06dec532f1 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" -- 2.10.2 -- _______________________________________________ meta-xilinx mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-xilinx
