summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2016-11-23 15:40:15 +1000
committerNathan Rossi <nathan@nathanrossi.com>2016-12-01 23:12:31 +1000
commit1783cfc3809510d29664bfdc47b89fbe602b84c2 (patch)
treebda7445fa6c77bc3417e40a8cc55bf6201bbbb69 /recipes-devtools
parent4c2a31fa2821b5d8af2a7c5c3c03b8de1e05ef0d (diff)
downloadmeta-xilinx-1783cfc3809510d29664bfdc47b89fbe602b84c2.tar.gz
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 <nathan@nathanrossi.com> Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r--recipes-devtools/qemu/qemu-xilinx_2.2.5.bb4
1 files 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 = " \
10 file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913 \ 10 file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913 \
11 " 11 "
12 12
13# This is the commit used in the 2016.3 tag 13XILINX_RELEASE_VERSION = "v2016.3"
14SRCREV = "de453ab4cf993f63de502c4efd8a08a347c3b164" 14SRCREV = "de453ab4cf993f63de502c4efd8a08a347c3b164"
15SRC_URI = "git://github.com/Xilinx/qemu.git;protocol=https;nobranch=1" 15SRC_URI = "git://github.com/Xilinx/qemu.git;protocol=https;nobranch=1"
16 16
17S = "${WORKDIR}/git" 17S = "${WORKDIR}/git"
18 18
19PV = "2.2.50+git+${SRCPV}" 19PV = "2.2.50-xilinx-${XILINX_RELEASE_VERSION}+git+${SRCPV}"
20 20
21# Disable KVM completely 21# Disable KVM completely
22KVMENABLE = "--disable-kvm" 22KVMENABLE = "--disable-kvm"