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

git at git.openembedded.org git at git.openembedded.org
Thu Jan 3 12:33:58 UTC 2013


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

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]

(From OE-Core rev: 28715eff6dff3415b1d7b0be8cbb465c417e307f)

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