summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/device-tree/device-tree.bb
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2016-09-21 00:12:39 +1000
committerNathan Rossi <nathan@nathanrossi.com>2016-10-11 21:10:52 +1000
commit4501d94387cac74c8321f81f54ea8eaa45af8ddb (patch)
tree13b7db0fd00bafa490ae0fb0b31aad032e336d90 /recipes-bsp/device-tree/device-tree.bb
parent2147f108ef9cfbdb83304c08dc511df4286ded9c (diff)
downloadmeta-xilinx-4501d94387cac74c8321f81f54ea8eaa45af8ddb.tar.gz
device-tree: Remove old runqemu compatibility outputs
Remove the symlinking of ${KERNEL_IMAGETYPE}-${DTS}.dtb for compatibility with runqemu. This is now handled with the machines QB_DTB variable. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>
Diffstat (limited to 'recipes-bsp/device-tree/device-tree.bb')
-rw-r--r--recipes-bsp/device-tree/device-tree.bb14
1 files changed, 0 insertions, 14 deletions
diff --git a/recipes-bsp/device-tree/device-tree.bb b/recipes-bsp/device-tree/device-tree.bb
index aa2a611d..f17133e2 100644
--- a/recipes-bsp/device-tree/device-tree.bb
+++ b/recipes-bsp/device-tree/device-tree.bb
@@ -102,20 +102,6 @@ do_deploy() {
102 done 102 done
103} 103}
104 104
105# Deploy ${KERNEL_IMAGETYPE}-${DTS_NAME}.dtb for compatibility with runqemu
106DEPLOY_KERNEL_DTB_qemuzynq = "1"
107do_deploy_append() {
108 if [ ! -z "${DEPLOY_KERNEL_DTB}" -a ! -z "${KERNEL_IMAGETYPE}" ]; then
109 for DTS_FILE in ${DEVICETREE}; do
110 DTS_NAME=`basename -s .dts ${DTS_FILE}`
111 KERNELDTBPATH=${DEPLOYDIR}/${KERNEL_IMAGETYPE}-${DTS_NAME}.dtb
112 if [ ! -e ${KERNELDTBPATH} -o -h ${KERNELDTBPATH} ]; then
113 ln -sf ${DTS_NAME}.dtb ${KERNELDTBPATH}
114 fi
115 done
116 fi
117}
118
119addtask deploy before do_build after do_install 105addtask deploy before do_build after do_install
120 106
121inherit xilinx-utils 107inherit xilinx-utils