diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-12 10:18:58 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-12 12:36:34 +0100 |
commit | 9815b7a95ac33d3234073cdd204d9389b4241189 (patch) | |
tree | 9328d38080c6d97b19dc75af887f6e4e88d90915 | |
parent | f714f54df01e02a1115b42f3637f74a11eb51edb (diff) | |
download | openembedded-core-9815b7a95ac33d3234073cdd204d9389b4241189.tar.gz openembedded-core-9815b7a95ac33d3234073cdd204d9389b4241189.tar.bz2 openembedded-core-9815b7a95ac33d3234073cdd204d9389b4241189.zip |
linux-dtb: Ensure dtb files are covered by sstate
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>
-rw-r--r-- | meta/recipes-kernel/linux/linux-dtb.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-kernel/linux/linux-dtb.inc b/meta/recipes-kernel/linux/linux-dtb.inc index 2f0c9188eb..9188cee1e4 100644 --- a/meta/recipes-kernel/linux/linux-dtb.inc +++ b/meta/recipes-kernel/linux/linux-dtb.inc @@ -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 |