mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] microblaze: add u-boot tools dependency for kernel build target
@ 2012-04-18 18:28 Stephan Linz
  2012-04-18 18:41 ` Stephan Linz
  0 siblings, 1 reply; 6+ messages in thread
From: Stephan Linz @ 2012-04-18 18:28 UTC (permalink / raw)
  To: ptxdist; +Cc: m.olbrich, mkl

Sadly the Microblaze architecture does not support an explicit
uImage build target. The uImage is an implicit rule of simple
image target. That's why we need an separate preselection for
HOST_U_BOOT_TOOLS in the special case of KERNEL_IMAGE_SIMPLE
and ARCH_MICROBLAZE are set.

Signed-off-by: Stephan Linz <linz@li-pro.net>
---
 platforms/kernel.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/platforms/kernel.in b/platforms/kernel.in
index 01b31d3..93606f0 100644
--- a/platforms/kernel.in
+++ b/platforms/kernel.in
@@ -3,6 +3,7 @@ menuconfig KERNEL
 	default y
 	select IMAGE_KERNEL
 	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_U
+	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_SIMPLE && ARCH_MICROBLAZE
 	select HOST_XZ			if KERNEL_XZ
 	select HOST_LZOP		if KERNEL_LZOP
 	select CROSS_MODULE_INIT_TOOLS	if KERNEL_MODULES
-- 
1.7.0.4


-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] [PATCH] microblaze: add u-boot tools dependency for kernel build target
  2012-04-18 18:28 [ptxdist] [PATCH] microblaze: add u-boot tools dependency for kernel build target Stephan Linz
@ 2012-04-18 18:41 ` Stephan Linz
  0 siblings, 0 replies; 6+ messages in thread
From: Stephan Linz @ 2012-04-18 18:41 UTC (permalink / raw)
  To: ptxdist; +Cc: m.olbrich, mkl

... please ignore this e-mail -- was the wrong git command line, grrr.

br,
Stephan

Am Mittwoch, den 18.04.2012, 20:28 +0200 schrieb Stephan Linz: 
> Sadly the Microblaze architecture does not support an explicit
> uImage build target. The uImage is an implicit rule of simple
> image target. That's why we need an separate preselection for
> HOST_U_BOOT_TOOLS in the special case of KERNEL_IMAGE_SIMPLE
> and ARCH_MICROBLAZE are set.
> 
> Signed-off-by: Stephan Linz <linz@li-pro.net>
> ---
>  platforms/kernel.in |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/platforms/kernel.in b/platforms/kernel.in
> index 01b31d3..93606f0 100644
> --- a/platforms/kernel.in
> +++ b/platforms/kernel.in
> @@ -3,6 +3,7 @@ menuconfig KERNEL
>  	default y
>  	select IMAGE_KERNEL
>  	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_U
> +	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_SIMPLE && ARCH_MICROBLAZE
>  	select HOST_XZ			if KERNEL_XZ
>  	select HOST_LZOP		if KERNEL_LZOP
>  	select CROSS_MODULE_INIT_TOOLS	if KERNEL_MODULES

-- 
Viele Grüße,
Stephan Linz
______________________________________________________________________________
MB-Ref: http://www.li-pro.de/xilinx_mb:mbref:start
OpenDCC: http://www.li-pro.net/opendcc.phtml
PC/M: http://www.li-pro.net/pcm.phtml
Sourceforge: http://sourceforge.net/users/slz
Gitorious: https://gitorious.org/~slz


-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

* [ptxdist] [PATCH] microblaze: add u-boot tools dependency for kernel build target
@ 2012-04-18 18:38 Stephan Linz
  0 siblings, 0 replies; 6+ messages in thread
From: Stephan Linz @ 2012-04-18 18:38 UTC (permalink / raw)
  To: ptxdist; +Cc: m.olbrich, mkl

Sadly the Microblaze architecture does not support an explicit
uImage build target. The uImage is an implicit rule of simple
image target. That's why we need an separate preselection for
HOST_U_BOOT_TOOLS in the special case of KERNEL_IMAGE_SIMPLE
and ARCH_MICROBLAZE are set.

Signed-off-by: Stephan Linz <linz@li-pro.net>
---
 platforms/kernel.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/platforms/kernel.in b/platforms/kernel.in
index 01b31d3..6673d2d 100644
--- a/platforms/kernel.in
+++ b/platforms/kernel.in
@@ -2,7 +2,7 @@ menuconfig KERNEL
 	bool
 	default y
 	select IMAGE_KERNEL
-	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_U
+	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_U || (KERNEL_IMAGE_SIMPLE && ARCH_MICROBLAZE)
 	select HOST_XZ			if KERNEL_XZ
 	select HOST_LZOP		if KERNEL_LZOP
 	select CROSS_MODULE_INIT_TOOLS	if KERNEL_MODULES
-- 
1.7.0.4


-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] [PATCH] microblaze: add u-boot tools dependency for kernel build target
  2012-04-18  8:11 ` Michael Olbrich
@ 2012-04-18 15:41   ` Stephan Linz
  0 siblings, 0 replies; 6+ messages in thread
From: Stephan Linz @ 2012-04-18 15:41 UTC (permalink / raw)
  To: ptxdist

Am Mittwoch, den 18.04.2012, 10:11 +0200 schrieb Michael Olbrich: 
> On Tue, Apr 17, 2012 at 09:01:05PM +0200, Stephan Linz wrote:
> > Sadly the Microblaze architecture does not support an explicit
> > uImage build target. The uImage is an implicit rule of simple
> > image target. That's why we need an separate preselection for
> > HOST_U_BOOT_TOOLS in the special case of KERNEL_IMAGE_SIMPLE
> > and ARCH_MICROBLAZE are set.
> > 
> > Signed-off-by: Stephan Linz <linz@li-pro.net>
> > ---
> >  platforms/kernel.in |    1 +
> >  1 files changed, 1 insertions(+), 0 deletions(-)
> > 
> > diff --git a/platforms/kernel.in b/platforms/kernel.in
> > index 01b31d3..93606f0 100644
> > --- a/platforms/kernel.in
> > +++ b/platforms/kernel.in
> > @@ -3,6 +3,7 @@ menuconfig KERNEL
> >  	default y
> >  	select IMAGE_KERNEL
> >  	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_U
> > +	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_SIMPLE && ARCH_MICROBLAZE
> 
> 	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_U || (KERNEL_IMAGE_SIMPLE && ARCH_MICROBLAZE)

Hm, yes. I will test it and resubmit a new patch  ...

Stephan

> 
> should work, I think.
> 
> Michael
> 
> >  	select HOST_XZ			if KERNEL_XZ
> >  	select HOST_LZOP		if KERNEL_LZOP
> >  	select CROSS_MODULE_INIT_TOOLS	if KERNEL_MODULES
> > -- 
> > 1.7.0.4
> > 
> > 
> 
> -- 
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] [PATCH] microblaze: add u-boot tools dependency for kernel build target
  2012-04-17 19:01 Stephan Linz
@ 2012-04-18  8:11 ` Michael Olbrich
  2012-04-18 15:41   ` Stephan Linz
  0 siblings, 1 reply; 6+ messages in thread
From: Michael Olbrich @ 2012-04-18  8:11 UTC (permalink / raw)
  To: ptxdist

On Tue, Apr 17, 2012 at 09:01:05PM +0200, Stephan Linz wrote:
> Sadly the Microblaze architecture does not support an explicit
> uImage build target. The uImage is an implicit rule of simple
> image target. That's why we need an separate preselection for
> HOST_U_BOOT_TOOLS in the special case of KERNEL_IMAGE_SIMPLE
> and ARCH_MICROBLAZE are set.
> 
> Signed-off-by: Stephan Linz <linz@li-pro.net>
> ---
>  platforms/kernel.in |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/platforms/kernel.in b/platforms/kernel.in
> index 01b31d3..93606f0 100644
> --- a/platforms/kernel.in
> +++ b/platforms/kernel.in
> @@ -3,6 +3,7 @@ menuconfig KERNEL
>  	default y
>  	select IMAGE_KERNEL
>  	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_U
> +	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_SIMPLE && ARCH_MICROBLAZE

	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_U || (KERNEL_IMAGE_SIMPLE && ARCH_MICROBLAZE)

should work, I think.

Michael

>  	select HOST_XZ			if KERNEL_XZ
>  	select HOST_LZOP		if KERNEL_LZOP
>  	select CROSS_MODULE_INIT_TOOLS	if KERNEL_MODULES
> -- 
> 1.7.0.4
> 
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

* [ptxdist] [PATCH] microblaze: add u-boot tools dependency for kernel build target
@ 2012-04-17 19:01 Stephan Linz
  2012-04-18  8:11 ` Michael Olbrich
  0 siblings, 1 reply; 6+ messages in thread
From: Stephan Linz @ 2012-04-17 19:01 UTC (permalink / raw)
  To: ptxdist; +Cc: m.olbrich, mkl

Sadly the Microblaze architecture does not support an explicit
uImage build target. The uImage is an implicit rule of simple
image target. That's why we need an separate preselection for
HOST_U_BOOT_TOOLS in the special case of KERNEL_IMAGE_SIMPLE
and ARCH_MICROBLAZE are set.

Signed-off-by: Stephan Linz <linz@li-pro.net>
---
 platforms/kernel.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/platforms/kernel.in b/platforms/kernel.in
index 01b31d3..93606f0 100644
--- a/platforms/kernel.in
+++ b/platforms/kernel.in
@@ -3,6 +3,7 @@ menuconfig KERNEL
 	default y
 	select IMAGE_KERNEL
 	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_U
+	select HOST_U_BOOT_TOOLS	if KERNEL_IMAGE_SIMPLE && ARCH_MICROBLAZE
 	select HOST_XZ			if KERNEL_XZ
 	select HOST_LZOP		if KERNEL_LZOP
 	select CROSS_MODULE_INIT_TOOLS	if KERNEL_MODULES
-- 
1.7.0.4


-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

end of thread, other threads:[~2012-04-18 18:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-18 18:28 [ptxdist] [PATCH] microblaze: add u-boot tools dependency for kernel build target Stephan Linz
2012-04-18 18:41 ` Stephan Linz
  -- strict thread matches above, loose matches on Subject: below --
2012-04-18 18:38 Stephan Linz
2012-04-17 19:01 Stephan Linz
2012-04-18  8:11 ` Michael Olbrich
2012-04-18 15:41   ` Stephan Linz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox