]> code.ossystems Code Review - openembedded-core.git/commitdiff
linux-dtb: Ensure dtb files are covered by sstate
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 12 Apr 2012 09:18:58 +0000 (10:18 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 12 Apr 2012 11:36:34 +0000 (12:36 +0100)
The dtb files were not being installed into a location compatible with sstate and
the do_deploy task. This means in builds just using sstate, the dtb files disappeared.

This patch fixes the code to use the correct location for deploy files.

[YOCTO #2190]

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-kernel/linux/linux-dtb.inc

index 2f0c9188eb59636000020811dc19d51df1d3398b..9188cee1e40cefc6e23c61b8b404d557d077ca1a 100644 (file)
@@ -17,9 +17,9 @@ do_install_append() {
     if test -n "${KERNEL_DEVICETREE}"; then
        dtc -I dts -O dtb ${KERNEL_DEVICETREE_FLAGS} -o devicetree ${KERNEL_DEVICETREE}
        install -m 0644 devicetree ${D}/boot/devicetree-${KERNEL_VERSION}
-       install -d ${DEPLOY_DIR_IMAGE}
-       install -m 0644 devicetree ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.dtb
-       cd ${DEPLOY_DIR_IMAGE}
+       install -d ${DEPLOYDIR}
+       install -m 0644 devicetree ${DEPLOYDIR}/${KERNEL_IMAGE_BASE_NAME}.dtb
+       cd ${DEPLOYDIR}
        rm -f ${KERNEL_IMAGE_SYMLINK_NAME}.dtb
        ln -sf ${KERNEL_IMAGE_BASE_NAME}.dtb ${KERNEL_IMAGE_SYMLINK_NAME}.dtb
     fi