[U-Boot] U-Boot build report @ Sat Mar 31 05:30:15 CEST 2012
    Anatolij Gustschin 
    agust at denx.de
       
    Sat Mar 31 15:43:03 CEST 2012
    
    
  
Hi Marek,
Ccing Simon.
On Sat, 31 Mar 2012 14:59:06 +0200
Marek Vasut <marex at denx.de> wrote:
...
> we now have exactly these boards not building for -RC1, can you please look into 
> it?:
> 
> arm/flea3                               FAILED FOR: eldk4.2 eldk5.1
This is fixed by patch http://patchwork.ozlabs.org/patch/149658/
...
> arm/mx35pdk                             FAILED FOR: eldk4.2 eldk5.1
Same as for flea3 board.
> arm/seaboard                            FAILED FOR: eldk4.2 eldk5.1
> arm/ventana                             FAILED FOR: eldk4.2 eldk5.1
These boards actually build without errors and warnings, but
errors/warnings status is reported by MAKEALL because of the output:
DTC: dts->dtb  on file "dt.dtb.tmp"
This could be fixed by
diff --git a/dts/Makefile b/dts/Makefile
index 5792afd..d19a622 100644
--- a/dts/Makefile
+++ b/dts/Makefile
@@ -47,7 +47,7 @@ DT_BIN	:= $(obj)dt.dtb
 
 $(DT_BIN): $(TOPDIR)/board/$(VENDOR)/dts/$(DEVICE_TREE).dts
 	cat $< | $(CPP) -P $(DTS_CPPFLAGS) - >$@.tmp
-	$(DTC) -R 4 -p 0x1000 -O dtb -o ${DT_BIN} $@.tmp
+	$(DTC) -R 4 -p 0x1000 -O dtb -o ${DT_BIN} $@.tmp 2> /dev/null
 	rm $@.tmp
 
 process_lds = \
...
> powerpc/PMC440                          FAILED FOR: eldk4.2 eldk5.1
This could be fixed by http://patchwork.ozlabs.org/patch/147745
but maybe we should better move timer_get_boot_us() to common/bootstage.c
to fix it.
Thanks for build testing and reporting!
Anatolij
    
    
More information about the U-Boot
mailing list