From: Tom Zanussi Date: Thu, 5 May 2011 03:42:26 +0000 (-0500) Subject: boot-directdisk: fix bzImage source location X-Git-Tag: 2011-1~1554 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=173d04ea828e7f790ede40929c8ffd7340b4c077;p=openembedded-core.git boot-directdisk: fix bzImage source location Fixes yocto [BUGID #876] boot-directdisk.class looks in the wrong location for the bzImage to install. Make it look in the right place. Signed-off-by: Tom Zanussi --- diff --git a/meta/classes/boot-directdisk.bbclass b/meta/classes/boot-directdisk.bbclass index d87dc2258a..8879ba8ebf 100644 --- a/meta/classes/boot-directdisk.bbclass +++ b/meta/classes/boot-directdisk.bbclass @@ -49,7 +49,7 @@ build_boot_dd() { IMAGE=${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hdddirect install -d ${HDDDIR} - install -m 0644 ${STAGING_DIR}/${MACHINE}${HOST_VENDOR}-${HOST_OS}/kernel/bzImage ${HDDDIR}/vmlinuz + install -m 0644 ${STAGING_DIR_HOST}/kernel/bzImage ${HDDDIR}/vmlinuz install -m 444 ${STAGING_LIBDIR}/syslinux/ldlinux.sys ${HDDDIR}/ldlinux.sys BLOCKS=`du -bks ${HDDDIR} | cut -f 1`