diff options
Diffstat (limited to 'recipes-devtools/qemu/qemu-devicetrees_2017.1.bb')
| -rw-r--r-- | recipes-devtools/qemu/qemu-devicetrees_2017.1.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/recipes-devtools/qemu/qemu-devicetrees_2017.1.bb b/recipes-devtools/qemu/qemu-devicetrees_2017.1.bb new file mode 100644 index 00000000..c51751eb --- /dev/null +++ b/recipes-devtools/qemu/qemu-devicetrees_2017.1.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 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 = "1085e32a9ddc232963512923332094a58a05d1af" | ||
| 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 | for DTS_FILE in ${S}/LATEST/SINGLE_ARCH/*.dtb; do | ||
| 22 | if [ ! -f ${DTS_FILE} ]; then | ||
| 23 | bbwarn "${DTS_FILE} is not available!" | ||
| 24 | continue | ||
| 25 | fi | ||
| 26 | DTS_NAME=`basename ${DTS_FILE} .dtb` | ||
| 27 | install -d ${DEPLOYDIR} | ||
| 28 | install -d ${DEPLOYDIR}/qemu-hw-devicetrees | ||
| 29 | install -m 0644 ${S}/LATEST/SINGLE_ARCH/${DTS_NAME}.dtb ${DEPLOYDIR}/qemu-hw-devicetrees/${DTS_NAME}.dtb | ||
| 30 | done | ||
| 31 | } | ||
| 32 | |||
| 33 | addtask deploy after do_install | ||
