[oe-commits] Richard Purdie : boot-directdisk: Fix kernel location after STAGING_KERNEL_DIR change

git at git.openembedded.org git at git.openembedded.org
Wed Jul 18 21:52:24 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: 28715eff6dff3415b1d7b0be8cbb465c417e307f
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=28715eff6dff3415b1d7b0be8cbb465c417e307f

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Wed Jul 18 22:48:58 2012 +0100

boot-directdisk: Fix kernel location after STAGING_KERNEL_DIR change

This catches up with the STAGING_KERNEL_DIR location change
and uses the correct variable to future proof this issue.

[YOCTO #2783]

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/boot-directdisk.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/boot-directdisk.bbclass b/meta/classes/boot-directdisk.bbclass
index 7d8f8ff..1c601c6 100644
--- a/meta/classes/boot-directdisk.bbclass
+++ b/meta/classes/boot-directdisk.bbclass
@@ -46,7 +46,7 @@ build_boot_dd() {
 	IMAGE=${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hdddirect
 
 	install -d ${HDDDIR}
-	install -m 0644 ${STAGING_DIR_HOST}/kernel/bzImage ${HDDDIR}/vmlinuz
+	install -m 0644 ${STAGING_KERNEL_DIR}/bzImage ${HDDDIR}/vmlinuz
 	install -m 0644 ${S}/syslinux.cfg ${HDDDIR}/syslinux.cfg
 	install -m 444 ${STAGING_LIBDIR}/syslinux/ldlinux.sys ${HDDDIR}/ldlinux.sys
 





More information about the Openembedded-commits mailing list