summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/qemu/qemu-devicetrees_2017.3.bb
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2017-11-14 23:15:23 +1000
committerManjukumar Matha <manjukumar.harthikote-matha@xilinx.com>2017-11-21 11:19:00 -0800
commit9814008b5ff354142e644609b6b4356c4161c521 (patch)
treec3fb20effbb06b72257e876ea9f4212fc81b9cd2 /recipes-devtools/qemu/qemu-devicetrees_2017.3.bb
parent06d3a9509ed38ae39ee4bfaa698e625011576318 (diff)
downloadmeta-xilinx-9814008b5ff354142e644609b6b4356c4161c521.tar.gz
Update recipes for Xilinx v2017.3 release
Update the arm-trusted-firmware, pmu-firmware, u-boot-xlnx, linux-xlnx, qemu-xilinx and qemu-devicetrees recipes for to the 'xilinx-v2017.3' release tags. Drop/update existing patches where applicable. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Reviewed-by: Alistair Francis <alistair.francis@xilinx.com> Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
Diffstat (limited to 'recipes-devtools/qemu/qemu-devicetrees_2017.3.bb')
-rw-r--r--recipes-devtools/qemu/qemu-devicetrees_2017.3.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes-devtools/qemu/qemu-devicetrees_2017.3.bb b/recipes-devtools/qemu/qemu-devicetrees_2017.3.bb
new file mode 100644
index 00000000..d5cfe0b0
--- /dev/null
+++ b/recipes-devtools/qemu/qemu-devicetrees_2017.3.bb
@@ -0,0 +1,32 @@
1SUMMARY = "Xilinx's hardware device trees required for QEMU"
2HOMEPAGE = "https://github.com/xilinx/qemu-devicetrees/"
3LICENSE = "BSD"
4DEPENDS += "dtc-native"
5
6inherit deploy
7
8LIC_FILES_CHKSUM = "file://Makefile;beginline=1;endline=27;md5=7348b6cbcae69912cb1dee68d6c68d99"
9
10SRCREV = "4b951c594078562e9dd828430075968dd91ac425"
11SRC_URI = "git://github.com/Xilinx/qemu-devicetrees.git;protocol=https;nobranch=1"
12
13S = "${WORKDIR}/git"
14
15# Don't need to do anything
16do_install() {
17 :
18}
19
20do_deploy() {
21 # single-arch dtbs
22 for DTS_FILE in ${S}/LATEST/SINGLE_ARCH/*.dtb; do
23 install -Dm 0644 $DTS_FILE ${DEPLOYDIR}/qemu-hw-devicetrees/$(basename $DTS_FILE .dtb).dtb
24 done
25
26 # multi-arch dtbs
27 for DTS_FILE in ${S}/LATEST/MULTI_ARCH/*.dtb; do
28 install -Dm 0644 $DTS_FILE ${DEPLOYDIR}/qemu-hw-devicetrees/multiarch/$(basename $DTS_FILE .dtb).dtb
29 done
30}
31
32addtask deploy after do_install