All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kernel.bbclass: Stage the raw zImage and modules tarball for inclusion in pstage
@ 2010-02-23 18:48 Chris Larson
  2010-02-23 20:57 ` Denys Dmytriyenko
  0 siblings, 1 reply; 3+ messages in thread
From: Chris Larson @ 2010-02-23 18:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Chris Larson

From: Tom Rini <tom_rini@mentor.com>

Signed-off-by: Tom Rini <tom_rini@mentor.com>
Signed-off-by: Chris Larson <chris_larson@mentor.com>
---
 classes/kernel.bbclass |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass
index 83530b5..8121339 100644
--- a/classes/kernel.bbclass
+++ b/classes/kernel.bbclass
@@ -536,10 +536,12 @@ MODULES_IMAGE_BASE_NAME ?= modules-${PV}-${PR}-${MACHINE}
 do_deploy() {
 	install -d ${DEPLOY_DIR_IMAGE}
 	install -m 0644 ${KERNEL_OUTPUT} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin
+	package_stagefile_shell ${S}/${KERNEL_OUTPUT}
 	package_stagefile_shell ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin
 
 	if [ -d "${PKGD}/lib" ]; then
 		fakeroot tar -cvzf ${DEPLOY_DIR_IMAGE}/${MODULES_IMAGE_BASE_NAME}.tgz -C ${PKGD} lib
+		package_stagefile_shell ${DEPLOY_DIR_IMAGE}/${MODULES_IMAGE_BASE_NAME}.tgz
 	fi
 
 	cd ${DEPLOY_DIR_IMAGE}
-- 
1.6.3.3




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] kernel.bbclass: Stage the raw zImage and modules tarball for inclusion in pstage
  2010-02-23 18:48 [PATCH] kernel.bbclass: Stage the raw zImage and modules tarball for inclusion in pstage Chris Larson
@ 2010-02-23 20:57 ` Denys Dmytriyenko
  2010-02-23 21:04   ` Tom Rini
  0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2010-02-23 20:57 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Chris Larson

On Tue, Feb 23, 2010 at 11:48:59AM -0700, Chris Larson wrote:
> From: Tom Rini <tom_rini@mentor.com>

How is it different from [1]? Or is it meant to be pushed to stable/2009?
[1] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=8dc84badb1d772f5953492c4022c1f644c4fe278


> Signed-off-by: Tom Rini <tom_rini@mentor.com>
> Signed-off-by: Chris Larson <chris_larson@mentor.com>
> ---
>  classes/kernel.bbclass |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass
> index 83530b5..8121339 100644
> --- a/classes/kernel.bbclass
> +++ b/classes/kernel.bbclass
> @@ -536,10 +536,12 @@ MODULES_IMAGE_BASE_NAME ?= modules-${PV}-${PR}-${MACHINE}
>  do_deploy() {
>  	install -d ${DEPLOY_DIR_IMAGE}
>  	install -m 0644 ${KERNEL_OUTPUT} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin
> +	package_stagefile_shell ${S}/${KERNEL_OUTPUT}
>  	package_stagefile_shell ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin
>  
>  	if [ -d "${PKGD}/lib" ]; then
>  		fakeroot tar -cvzf ${DEPLOY_DIR_IMAGE}/${MODULES_IMAGE_BASE_NAME}.tgz -C ${PKGD} lib
> +		package_stagefile_shell ${DEPLOY_DIR_IMAGE}/${MODULES_IMAGE_BASE_NAME}.tgz
>  	fi
>  
>  	cd ${DEPLOY_DIR_IMAGE}
> -- 
> 1.6.3.3
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] kernel.bbclass: Stage the raw zImage and modules tarball for inclusion in pstage
  2010-02-23 20:57 ` Denys Dmytriyenko
@ 2010-02-23 21:04   ` Tom Rini
  0 siblings, 0 replies; 3+ messages in thread
From: Tom Rini @ 2010-02-23 21:04 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Chris Larson

On Tue, 2010-02-23 at 15:57 -0500, Denys Dmytriyenko wrote:
> On Tue, Feb 23, 2010 at 11:48:59AM -0700, Chris Larson wrote:
> > From: Tom Rini <tom_rini@mentor.com>
> 
> How is it different from [1]? Or is it meant to be pushed to stable/2009?
> [1] http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=8dc84badb1d772f5953492c4022c1f644c4fe278

Isn't.  Chris just missed me forgetting about the 2 ack policy for
bbclass files and just doing it.

> > Signed-off-by: Tom Rini <tom_rini@mentor.com>
> > Signed-off-by: Chris Larson <chris_larson@mentor.com>
> > ---
> >  classes/kernel.bbclass |    2 ++
> >  1 files changed, 2 insertions(+), 0 deletions(-)
> > 
> > diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass
> > index 83530b5..8121339 100644
> > --- a/classes/kernel.bbclass
> > +++ b/classes/kernel.bbclass
> > @@ -536,10 +536,12 @@ MODULES_IMAGE_BASE_NAME ?= modules-${PV}-${PR}-${MACHINE}
> >  do_deploy() {
> >  	install -d ${DEPLOY_DIR_IMAGE}
> >  	install -m 0644 ${KERNEL_OUTPUT} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin
> > +	package_stagefile_shell ${S}/${KERNEL_OUTPUT}
> >  	package_stagefile_shell ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin
> >  
> >  	if [ -d "${PKGD}/lib" ]; then
> >  		fakeroot tar -cvzf ${DEPLOY_DIR_IMAGE}/${MODULES_IMAGE_BASE_NAME}.tgz -C ${PKGD} lib
> > +		package_stagefile_shell ${DEPLOY_DIR_IMAGE}/${MODULES_IMAGE_BASE_NAME}.tgz
> >  	fi
> >  
> >  	cd ${DEPLOY_DIR_IMAGE}
> > -- 
> > 1.6.3.3
> > 
> > 
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


-- 
Tom Rini <tom_rini@mentor.com>
Mentor Graphics Corporation



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-02-23 21:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-23 18:48 [PATCH] kernel.bbclass: Stage the raw zImage and modules tarball for inclusion in pstage Chris Larson
2010-02-23 20:57 ` Denys Dmytriyenko
2010-02-23 21:04   ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.