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 <[email protected]> --- recipes-bsp/device-tree/device-tree.bb | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/recipes-bsp/device-tree/device-tree.bb b/recipes-bsp/device-tree/device-tree.bb index aa2a611d39..f17133e2d8 100644 --- a/recipes-bsp/device-tree/device-tree.bb +++ b/recipes-bsp/device-tree/device-tree.bb @@ -102,20 +102,6 @@ do_deploy() { done } -# Deploy ${KERNEL_IMAGETYPE}-${DTS_NAME}.dtb for compatibility with runqemu -DEPLOY_KERNEL_DTB_qemuzynq = "1" -do_deploy_append() { - if [ ! -z "${DEPLOY_KERNEL_DTB}" -a ! -z "${KERNEL_IMAGETYPE}" ]; then - for DTS_FILE in ${DEVICETREE}; do - DTS_NAME=`basename -s .dts ${DTS_FILE}` - KERNELDTBPATH=${DEPLOYDIR}/${KERNEL_IMAGETYPE}-${DTS_NAME}.dtb - if [ ! -e ${KERNELDTBPATH} -o -h ${KERNELDTBPATH} ]; then - ln -sf ${DTS_NAME}.dtb ${KERNELDTBPATH} - fi - done - fi -} - addtask deploy before do_build after do_install inherit xilinx-utils -- 2.9.3 -- _______________________________________________ meta-xilinx mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-xilinx
