diff options
| author | Nathan Rossi <nathan@nathanrossi.com> | 2017-11-14 23:15:23 +1000 |
|---|---|---|
| committer | Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> | 2017-11-21 11:19:00 -0800 |
| commit | 9814008b5ff354142e644609b6b4356c4161c521 (patch) | |
| tree | c3fb20effbb06b72257e876ea9f4212fc81b9cd2 /recipes-devtools/qemu/qemu-devicetrees_2017.3.bb | |
| parent | 06d3a9509ed38ae39ee4bfaa698e625011576318 (diff) | |
| download | meta-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.bb | 32 |
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 @@ | |||
| 1 | SUMMARY = "Xilinx's hardware device trees required for QEMU" | ||
| 2 | HOMEPAGE = "https://github.com/xilinx/qemu-devicetrees/" | ||
| 3 | LICENSE = "BSD" | ||
| 4 | DEPENDS += "dtc-native" | ||
| 5 | |||
| 6 | inherit deploy | ||
| 7 | |||
| 8 | LIC_FILES_CHKSUM = "file://Makefile;beginline=1;endline=27;md5=7348b6cbcae69912cb1dee68d6c68d99" | ||
| 9 | |||
| 10 | SRCREV = "4b951c594078562e9dd828430075968dd91ac425" | ||
| 11 | SRC_URI = "git://github.com/Xilinx/qemu-devicetrees.git;protocol=https;nobranch=1" | ||
| 12 | |||
| 13 | S = "${WORKDIR}/git" | ||
| 14 | |||
| 15 | # Don't need to do anything | ||
| 16 | do_install() { | ||
| 17 | : | ||
| 18 | } | ||
| 19 | |||
| 20 | do_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 | |||
| 32 | addtask deploy after do_install | ||
