linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* ep88xc_defconfig doesn't build
@ 2007-10-20  2:43 Olof Johansson
  2007-10-22  0:36 ` David Gibson
  0 siblings, 1 reply; 5+ messages in thread
From: Olof Johansson @ 2007-10-20  2:43 UTC (permalink / raw)
  To: scott.wood; +Cc: linuxppc-dev

Hi,

Did it ever?! I get this with current mainline when building default target:

  WRAP    arch/powerpc/boot/cuImage.8xx
DTC: dts->dtb  on file "/work/work/linux/k.org/arch/powerpc/boot/dts/ep88xc.dts"
ERROR: Missing /chosen node
Input tree has errors
  WRAP    arch/powerpc/boot/zImage.ep88xc
make[1]: *** [arch/powerpc/boot/cuImage.8xx] Error 1
make[1]: *** Waiting for unfinished jobs....
DTC: dts->dtb  on file "/work/work/linux/k.org/arch/powerpc/boot/dts/ep88xc.dts"
ERROR: Missing /chosen node
Input tree has errors
make[1]: *** [arch/powerpc/boot/zImage.ep88xc] Error 1
make: *** [zImage] Error 2



-Olof

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

* Re: ep88xc_defconfig doesn't build
  2007-10-20  2:43 ep88xc_defconfig doesn't build Olof Johansson
@ 2007-10-22  0:36 ` David Gibson
  2007-10-22  1:17   ` Olof Johansson
  0 siblings, 1 reply; 5+ messages in thread
From: David Gibson @ 2007-10-22  0:36 UTC (permalink / raw)
  To: Olof Johansson; +Cc: linuxppc-dev, scott.wood

On Fri, Oct 19, 2007 at 09:43:55PM -0500, Olof Johansson wrote:
> Hi,
> 
> Did it ever?! I get this with current mainline when building default target:

I think you must have an old dtc; I'm pretty sure I removed the check
for /chosen some time ago.  But then I also thought we added a force
to the dtc commant line in wrapper ages ago, so now I'm a bit confused.

>   WRAP    arch/powerpc/boot/cuImage.8xx
> DTC: dts->dtb  on file "/work/work/linux/k.org/arch/powerpc/boot/dts/ep88xc.dts"
> ERROR: Missing /chosen node
> Input tree has errors
>   WRAP    arch/powerpc/boot/zImage.ep88xc
> make[1]: *** [arch/powerpc/boot/cuImage.8xx] Error 1
> make[1]: *** Waiting for unfinished jobs....
> DTC: dts->dtb  on file "/work/work/linux/k.org/arch/powerpc/boot/dts/ep88xc.dts"
> ERROR: Missing /chosen node
> Input tree has errors
> make[1]: *** [arch/powerpc/boot/zImage.ep88xc] Error 1
> make: *** [zImage] Error 2
> 
> 
> 
> -Olof
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-dev
> 

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

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

* Re: ep88xc_defconfig doesn't build
  2007-10-22  1:17   ` Olof Johansson
@ 2007-10-22  1:17     ` David Gibson
  2007-10-22  1:23     ` Olof Johansson
  1 sibling, 0 replies; 5+ messages in thread
From: David Gibson @ 2007-10-22  1:17 UTC (permalink / raw)
  To: Olof Johansson; +Cc: linuxppc-dev, scott.wood

On Sun, Oct 21, 2007 at 08:17:40PM -0500, Olof Johansson wrote:
> On Mon, Oct 22, 2007 at 10:36:25AM +1000, David Gibson wrote:
> > On Fri, Oct 19, 2007 at 09:43:55PM -0500, Olof Johansson wrote:
> > > Hi,
> > > 
> > > Did it ever?! I get this with current mainline when building default target:
> > 
> > I think you must have an old dtc; I'm pretty sure I removed the check
> > for /chosen some time ago.  But then I also thought we added a force
> > to the dtc commant line in wrapper ages ago, so now I'm a bit confused.
> 
> Hrm, seems like I had an old version. It's a little annoying that it's a
> moving target and it's impossible to find out form a built binary which
> version it is, besides trying to guess based on file time stamps.
> 
> A nice enhancement could be to have a "dtc -v" and have the makefile
> verify it before using it.

Current dtc has a -v option.  Trying to verify it in Makefile (or more
to the point in the wrapper script) would be a bit.. messy (since the
necessary version kind of depends on the dts file anyway).

Avoiding this sort of hassle is why I'd like to put a copy of dtc in
the kernel tree.

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

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

* Re: ep88xc_defconfig doesn't build
  2007-10-22  0:36 ` David Gibson
@ 2007-10-22  1:17   ` Olof Johansson
  2007-10-22  1:17     ` David Gibson
  2007-10-22  1:23     ` Olof Johansson
  0 siblings, 2 replies; 5+ messages in thread
From: Olof Johansson @ 2007-10-22  1:17 UTC (permalink / raw)
  To: scott.wood, linuxppc-dev

On Mon, Oct 22, 2007 at 10:36:25AM +1000, David Gibson wrote:
> On Fri, Oct 19, 2007 at 09:43:55PM -0500, Olof Johansson wrote:
> > Hi,
> > 
> > Did it ever?! I get this with current mainline when building default target:
> 
> I think you must have an old dtc; I'm pretty sure I removed the check
> for /chosen some time ago.  But then I also thought we added a force
> to the dtc commant line in wrapper ages ago, so now I'm a bit confused.

Hrm, seems like I had an old version. It's a little annoying that it's a
moving target and it's impossible to find out form a built binary which
version it is, besides trying to guess based on file time stamps.

A nice enhancement could be to have a "dtc -v" and have the makefile
verify it before using it.


-Olof

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

* Re: ep88xc_defconfig doesn't build
  2007-10-22  1:17   ` Olof Johansson
  2007-10-22  1:17     ` David Gibson
@ 2007-10-22  1:23     ` Olof Johansson
  1 sibling, 0 replies; 5+ messages in thread
From: Olof Johansson @ 2007-10-22  1:23 UTC (permalink / raw)
  To: scott.wood, linuxppc-dev

On Sun, Oct 21, 2007 at 08:17:40PM -0500, Olof Johansson wrote:

> A nice enhancement could be to have a "dtc -v" and have the makefile
> verify it before using it.

Looks like current versions do have "-v", my old one didn't. Apologies.


-Olof

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

end of thread, other threads:[~2007-10-22  1:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-20  2:43 ep88xc_defconfig doesn't build Olof Johansson
2007-10-22  0:36 ` David Gibson
2007-10-22  1:17   ` Olof Johansson
2007-10-22  1:17     ` David Gibson
2007-10-22  1:23     ` Olof Johansson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).