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:37:52 +0100 |
commit | b2ae65f7d1054aa98dea9f5937567bec1dbf2f20 (patch) | |
tree | a3c3c02f6a91eb11f4a0399ae54c30f7042e134e | |
parent | d6031bad2a25e1cc9587712005729605dd7fa6ab (diff) | |
download | poky-b2ae65f7d1054aa98dea9f5937567bec1dbf2f20.tar.gz |
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]
(From OE-Core rev: 9815b7a95ac33d3234073cdd204d9389b4241189)
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() { | |||
17 | if test -n "${KERNEL_DEVICETREE}"; then | 17 | if test -n "${KERNEL_DEVICETREE}"; then |
18 | dtc -I dts -O dtb ${KERNEL_DEVICETREE_FLAGS} -o devicetree ${KERNEL_DEVICETREE} | 18 | dtc -I dts -O dtb ${KERNEL_DEVICETREE_FLAGS} -o devicetree ${KERNEL_DEVICETREE} |
19 | install -m 0644 devicetree ${D}/boot/devicetree-${KERNEL_VERSION} | 19 | install -m 0644 devicetree ${D}/boot/devicetree-${KERNEL_VERSION} |
20 | install -d ${DEPLOY_DIR_IMAGE} | 20 | install -d ${DEPLOYDIR} |
21 | install -m 0644 devicetree ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.dtb | 21 | install -m 0644 devicetree ${DEPLOYDIR}/${KERNEL_IMAGE_BASE_NAME}.dtb |
22 | cd ${DEPLOY_DIR_IMAGE} | 22 | cd ${DEPLOYDIR} |
23 | rm -f ${KERNEL_IMAGE_SYMLINK_NAME}.dtb | 23 | rm -f ${KERNEL_IMAGE_SYMLINK_NAME}.dtb |
24 | ln -sf ${KERNEL_IMAGE_BASE_NAME}.dtb ${KERNEL_IMAGE_SYMLINK_NAME}.dtb | 24 | ln -sf ${KERNEL_IMAGE_BASE_NAME}.dtb ${KERNEL_IMAGE_SYMLINK_NAME}.dtb |
25 | fi | 25 | fi |