From c50ab798f43ff91cdac7572e0625fc8211d898c1 Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Thu, 11 Apr 2019 17:57:09 +0200 Subject: [PATCH] kernel: Fix dtb symlink name Variable name changed with yocto thud --- recipes-kernel/linux/linux-netmodule_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-kernel/linux/linux-netmodule_git.bb b/recipes-kernel/linux/linux-netmodule_git.bb index bff8579..fd0ed33 100755 --- a/recipes-kernel/linux/linux-netmodule_git.bb +++ b/recipes-kernel/linux/linux-netmodule_git.bb @@ -33,7 +33,7 @@ fitimage_assemble_append(){ do_install_append(){ if [ "${KERNEL_DEVICETREE}" != "" ]; then - ln -s devicetree-${DTB_SYMLINK_NAME}.dtb ${D}/${KERNEL_IMAGEDEST}/devicetree.dtb + ln -s ${KERNEL_DTB_LINK_NAME}.dtb ${D}/${KERNEL_IMAGEDEST}/devicetree.dtb fi if [ "${KERNEL_IMAGETYPE}" = "uImage" ]; then ln -s ${KERNEL_IMAGETYPE}-${KERNEL_VERSION} ${D}/${KERNEL_IMAGEDEST}/${KERNEL_IMAGETYPE} @@ -50,5 +50,5 @@ do_install_append(){ } do_install_append_armada-385-nrhw18() { - ln -s devicetree-${DTB_SYMLINK_NAME}.dtb ${D}/${KERNEL_IMAGEDEST}/armada-385-nbhw18-prod4.dtb + ln -s ${KERNEL_DTB_LINK_NAME}.dtb ${D}/${KERNEL_IMAGEDEST}/armada-385-nbhw18-prod4.dtb }