From 7637de37a4525d5536f96a8b6397f3745905919a Mon Sep 17 00:00:00 2001 From: Harald Krapfenbauer Date: Thu, 20 Aug 2009 19:20:41 -0400 Subject: Blackfin: cm-bf537u: new board port The CM-BF537U is similar to the CM-BF537E module, but enough to need its own board port. Signed-off-by: Harald Krapfenbauer Signed-off-by: Mike Frysinger --- MAKEALL | 1 + 1 file changed, 1 insertion(+) (limited to 'MAKEALL') diff --git a/MAKEALL b/MAKEALL index 13f3f5ec3f..f0ed8ea87f 100755 --- a/MAKEALL +++ b/MAKEALL @@ -843,6 +843,7 @@ LIST_blackfin=" \ cm-bf527 \ cm-bf533 \ cm-bf537e \ + cm-bf537u \ cm-bf548 \ cm-bf561 \ ibf-dsp561 \ -- cgit From ecdd98799fab9174928f114778b8b261944b23b1 Mon Sep 17 00:00:00 2001 From: Dirk Eibach Date: Wed, 9 Sep 2009 12:36:07 +0200 Subject: ppc4xx: Rename compactcenter to intip Signed-off-by: Dirk Eibach Signed-off-by: Stefan Roese --- MAKEALL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MAKEALL') diff --git a/MAKEALL b/MAKEALL index f0ed8ea87f..b3d35ac05f 100755 --- a/MAKEALL +++ b/MAKEALL @@ -185,7 +185,6 @@ LIST_4xx=" \ canyonlands \ canyonlands_nand \ CMS700 \ - compactcenter \ CPCI2DP \ CPCI405 \ CPCI4052 \ @@ -214,6 +213,7 @@ LIST_4xx=" \ hcu5 \ HH405 \ HUB405 \ + intip \ JSE \ KAREF \ katmai \ -- cgit From 4f180606407e3c0a44055ff8046d43e8b9e764bf Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Thu, 20 Aug 2009 22:44:02 +0200 Subject: microblaze: Remove AtmarkTechno Suzaku board Users should use microblaze-generic platform. This platform is longer not supported. Signed-off-by: Michal Simek --- MAKEALL | 1 - 1 file changed, 1 deletion(-) (limited to 'MAKEALL') diff --git a/MAKEALL b/MAKEALL index b3d35ac05f..1d50c34303 100755 --- a/MAKEALL +++ b/MAKEALL @@ -775,7 +775,6 @@ LIST_nios2=" \ LIST_microblaze=" \ microblaze-generic \ - suzaku \ " ######################################################################### -- cgit From e6fb20a93939f83a8da11906e0888b1a0aedfc16 Mon Sep 17 00:00:00 2001 From: Peter Tyser Date: Mon, 21 Sep 2009 12:04:32 -0500 Subject: MAKEALL: Add summary information This change adds some basic summary information to the MAKEALL script. The summary information includes how many boards were compiled, how many boards had compile warnings or errors, and which specific boards had compile warnings or errors. This information is useful when doing compile testing to quickly determine which boards are broken. As a side benefit, no empty $BOARD.ERR files are generated by MAKEALL. Previously, each board had a corresponding $BOARD.ERR file, even if the board compiled cleanly. Signed-off-by: Peter Tyser --- MAKEALL | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'MAKEALL') diff --git a/MAKEALL b/MAKEALL index 1d50c34303..4688d422ff 100755 --- a/MAKEALL +++ b/MAKEALL @@ -1,5 +1,9 @@ #!/bin/sh +# Print statistics when we exit +trap exit 1 2 3 15 +trap print_stats 0 + # Determine number of CPU cores if no default was set : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"} @@ -31,6 +35,11 @@ fi LIST="" +# Keep track of the number of builds and errors +ERR_CNT=0 +ERR_LIST="" +TOTAL_CNT=0 + ######################################################################### ## MPC5xx Systems ######################################################################### @@ -900,6 +909,14 @@ build_target() { ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \ | tee ${LOG_DIR}/$target.ERR + if [ -s ${LOG_DIR}/$target.ERR ] ; then + ERR_CNT=$((ERR_CNT + 1)) + ERR_LIST="${ERR_LIST} $target" + else + rm ${LOG_DIR}/$target.ERR + fi + + TOTAL_CNT=$((TOTAL_CNT + 1)) ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \ | tee -a ${LOG_DIR}/$target.MAKELOG @@ -907,7 +924,17 @@ build_target() { #----------------------------------------------------------------------- +print_stats() { + echo "" + echo "--------------------- SUMMARY ----------------------------" + echo "Boards compiled: ${TOTAL_CNT}" + if [ ${ERR_CNT} -gt 0 ] ; then + echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )" + fi + echo "----------------------------------------------------------" +} +#----------------------------------------------------------------------- for arg in $@ do case "$arg" in -- cgit From d4b5d60d2ae39c1d74b78e8b8f4f1ddd29c7953b Mon Sep 17 00:00:00 2001 From: Peter Tyser Date: Mon, 21 Sep 2009 12:04:33 -0500 Subject: MAKEALL: Use POSIX math Signed-off-by: Peter Tyser --- MAKEALL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MAKEALL') diff --git a/MAKEALL b/MAKEALL index 4688d422ff..dbcad87f18 100755 --- a/MAKEALL +++ b/MAKEALL @@ -9,7 +9,7 @@ trap print_stats 0 if [ "$BUILD_NCPUS" -gt 1 ] then - JOBS=-j`expr "$BUILD_NCPUS" + 1` + JOBS="-j $((BUILD_NCPUS + 1))" else JOBS="" fi -- cgit From 510edfca286c67c395bd83cd9df7b33071b913e4 Mon Sep 17 00:00:00 2001 From: Paul Gortmaker Date: Sun, 20 Sep 2009 20:36:06 -0400 Subject: sbc8548: allow enabling PCI via a make config option Prior to this commit, to enable PCI, you had to go manually edit the board config header, and if you had 33MHz PCI, you had to manually change CONFIG_SYS_NS16550_CLK too, which was not real user friendly, This adds the typical PCI and clock speed make targets to the toplevel Makefile in accordance with what is being done with other boards (i.e. using the "-t" to mkconfig). Signed-off-by: Paul Gortmaker Signed-off-by: Kumar Gala --- MAKEALL | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'MAKEALL') diff --git a/MAKEALL b/MAKEALL index dbcad87f18..776f968810 100755 --- a/MAKEALL +++ b/MAKEALL @@ -408,6 +408,10 @@ LIST_85xx=" \ PM856 \ sbc8540 \ sbc8548 \ + sbc8548_PCI_33 \ + sbc8548_PCI_66 \ + sbc8548_PCI_33_PCIE \ + sbc8548_PCI_66_PCIE \ sbc8560 \ socrates \ stxgp3 \ -- cgit From 6dceeaa679ca3326a8dd1ddbd535a0651ec231bb Mon Sep 17 00:00:00 2001 From: Tom Rix Date: Sun, 27 Sep 2009 07:47:24 -0500 Subject: Add support for Eukrea CPUAT91 SBC CPUAT91 is built around Atmel's AT91RM9200 and has up to 16MB of NOR flash, up to 128MB of SDRAM, and includes a Micrel KS8721 PHY in RMII mode. Signed-off-by: Eric Benard Signed-off-by: Tom Rix --- MAKEALL | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'MAKEALL') diff --git a/MAKEALL b/MAKEALL index 776f968810..42830b1253 100755 --- a/MAKEALL +++ b/MAKEALL @@ -615,11 +615,12 @@ LIST_at91=" \ at91sam9260ek \ at91sam9261ek \ at91sam9263ek \ - at91sam9g10ek \ + at91sam9g10ek \ at91sam9g20ek \ at91sam9m10g45ek \ at91sam9rlek \ cmc_pu2 \ + CPUAT91 \ csb637 \ kb9202 \ meesc \ -- cgit From ef115a52b5d4eada120411a5aae9f0fb14023d1e Mon Sep 17 00:00:00 2001 From: Tom Rix Date: Sun, 27 Sep 2009 11:10:09 -0500 Subject: Add support for Eukrea CPU9260/CPU9G20 SBC these boards are built around Atmel's AT91SAM9260/9G20 and have up to 64MB of NOR flash, up to 128MB of SDRAM, up to 2GB of NAND and include a 10/100 Ethernet PHY in RMII mode. Signed-off-by: Eric Benard Signed-off-by: Tom Rix --- MAKEALL | 2 ++ 1 file changed, 2 insertions(+) (limited to 'MAKEALL') diff --git a/MAKEALL b/MAKEALL index 42830b1253..402e0e54bc 100755 --- a/MAKEALL +++ b/MAKEALL @@ -621,6 +621,8 @@ LIST_at91=" \ at91sam9rlek \ cmc_pu2 \ CPUAT91 \ + CPU9260 \ + CPU9G20 \ csb637 \ kb9202 \ meesc \ -- cgit From 300d1137161a47573b0f6504f32371c8065b8d37 Mon Sep 17 00:00:00 2001 From: Simon Kagstrom <[simon.kagstrom@netinsight.net]> Date: Tue, 22 Sep 2009 04:01:01 +0530 Subject: Support for the OpenRD base board The implementation is borrowed from the sheevaplug board and the Marvell 1.1.4 code. Unsupported (or untested) is the SD card, PCIe and SATA. Signed-off-by: Simon Kagstrom --- MAKEALL | 1 + 1 file changed, 1 insertion(+) (limited to 'MAKEALL') diff --git a/MAKEALL b/MAKEALL index 402e0e54bc..c15c811bad 100755 --- a/MAKEALL +++ b/MAKEALL @@ -546,6 +546,7 @@ LIST_ARM9=" \ omap1610inn \ omap5912osk \ omap730p2 \ + openrd_base \ rd6281a \ sbc2410x \ scb9328 \ -- cgit