From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com ([192.55.52.93]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1SmtoS-0006Xg-Lm for openembedded-core@lists.openembedded.org; Thu, 05 Jul 2012 23:42:12 +0200 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 05 Jul 2012 14:31:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.71,315,1320652800"; d="scan'208";a="173889267" Received: from unknown (HELO envy.home) ([10.255.12.184]) by fmsmga001.fm.intel.com with ESMTP; 05 Jul 2012 14:31:06 -0700 Message-ID: <4FF6073D.7070709@linux.intel.com> Date: Thu, 05 Jul 2012 14:29:33 -0700 From: Darren Hart User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120615 Thunderbird/13.0.1 MIME-Version: 1.0 To: Tom Zanussi References: <4f44ff83fd87ca9ee470f3ee789bb5550aa5101a.1341511739.git.dvhart@linux.intel.com> <1341518766.6761.50.camel@trz-ThinkPad-T420> In-Reply-To: <1341518766.6761.50.camel@trz-ThinkPad-T420> X-Enigmail-Version: 1.4.2 Cc: saul.wold@intel.com, openembedded-core@lists.openembedded.org Subject: Re: [PATCH] bootimg: Use STAGING_KERNEL_DIR X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2012 21:42:12 -0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 07/05/2012 01:06 PM, Tom Zanussi wrote: > On Thu, 2012-07-05 at 11:08 -0700, Darren Hart wrote: >> bootimg.bbclass using STAGING_DIR_HOST/kernel instead of >> STAGING_KERNEL_DIR, resulting in build failure of live images. >> >> | install: cannot stat `/usr/local/dev/yocto/fishriver-test/build/tmp/sysroots/fishriver/kernel/bzImage': No such file or directory >> >> Replace it with STAGING_KERNEL_DIR. >> >> UNTESTED - PLEASE TEST PRIOR TO PULL. > > Fixed the build problem here. > > Tested-by: Tom Zanussi Great. I'm getting bags packed and kids ready to go. Can someone please pull this one in and clean up the commit log to remove the UNTESTED line and add Tom's Tested-by? Thanks, Darren > >> >> Signed-off-by: Darren Hart >> CC: tom.zanussi@intel.com >> CC: saul.wold@intel.com >> CC: nitin.a.kamble@intel.com >> --- >> meta/classes/bootimg.bbclass | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass >> index 370b378..a4c0e8d 100644 >> --- a/meta/classes/bootimg.bbclass >> +++ b/meta/classes/bootimg.bbclass >> @@ -63,7 +63,7 @@ populate() { >> install -d ${DEST} >> >> # Install bzImage, initrd, and rootfs.img in DEST for all loaders to use. >> - install -m 0644 ${STAGING_DIR_HOST}/kernel/bzImage ${DEST}/vmlinuz >> + install -m 0644 ${STAGING_KERNEL_DIR}/bzImage ${DEST}/vmlinuz >> >> if [ -n "${INITRD}" ] && [ -s "${INITRD}" ]; then >> install -m 0644 ${INITRD} ${DEST}/initrd > > -- Darren Hart Intel Open Source Technology Center Yocto Project - Linux Kernel