blob: 42545659b84893420b146120c17e1a3b7725cf42 [file] [log] [blame]
Peter Tyserf2352872009-12-06 23:58:28 -06001#!/bin/bash
wdenk7ebf7442002-11-02 23:17:16 +00002
Wolfgang Denk0777eaf2010-10-17 12:26:48 +02003# Tool mainly for U-Boot Quality Assurance: build one or more board
4# configurations with minimal verbosity, showing only warnings and
5# errors.
6#
7# There are several ways to select which boards to build.
8#
9# Traditionally, architecture names (like "powerpc"), CPU family names
10# (like "mpc83xx") or board names can be specified on the command
11# line; without any arguments, MAKEALL defaults to building all Power
12# Architecture systems (i. e. same as for "MAKEALL powerpc").
13#
Peter Tysercd57b0b2010-10-29 17:59:06 -050014# With the introduction of the board.cfg file, it has become possible
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020015# to provide additional selections. We use standard command line
16# options for this:
17#
18# -a or --arch : Select architecture
19# -c or --cpu : Select CPU family
20# -s or --soc : Select SoC type
21# -v or --vendor: Select board vendor
22#
23# Selections by these options are logically ANDed; if the same option
24# is used repeatedly, such selections are ORed. So "-v FOO -v BAR"
25# will select all configurations where the vendor is either FOO or
26# BAR. Any additional arguments specified on the command line are
27# always build additionally.
28#
29# Examples:
30#
31# - build all Power Architecture boards:
32#
33# MAKEALL -a powerpc
34# or
35# MAKEALL --arch powerpc
36# or
37# MAKEALL powerpc
38#
39# - build all PowerPC boards manufactured by vendor "esd":
40#
41# MAKEALL -a powerpc -v esd
42#
43# - build all PowerPC boards manufactured either by "keymile" or
44# "siemens":
45#
46# MAKEALL -a powerpc -v keymile -v siemens
47#
48# - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
49#
50# MAKEALL -c mpc83xx -v freescale 4xx
51#
52#########################################################################
53
54SHORT_OPTS="a:c:v:s:"
55LONG_OPTS="arch:,cpu:,vendor:,soc:"
56
57# Option processing based on util-linux-2.13/getopt-parse.bash
58
Wolfgang Denk071bc922010-10-27 22:48:30 +020059# Note that we use `"$@"' to let each command-line parameter expand to a
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020060# separate word. The quotes around `$@' are essential!
61# We need TEMP as the `eval set --' would nuke the return value of
62# getopt.
63TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
64 -n 'MAKEALL' -- "$@"`
65
66if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi
67
68# Note the quotes around `$TEMP': they are essential!
69eval set -- "$TEMP"
70
71SELECTED=''
72
73while true ; do
74 case "$1" in
75 -a|--arch)
76 # echo "Option ARCH: argument \`$2'"
77 if [ "$opt_a" ] ; then
78 opt_a="${opt_a%)} || \$2 == \"$2\")"
79 else
80 opt_a="(\$2 == \"$2\")"
81 fi
82 SELECTED='y'
83 shift 2 ;;
84 -c|--cpu)
85 # echo "Option CPU: argument \`$2'"
86 if [ "$opt_c" ] ; then
87 opt_c="${opt_c%)} || \$3 == \"$2\")"
88 else
89 opt_c="(\$3 == \"$2\")"
90 fi
91 SELECTED='y'
92 shift 2 ;;
93 -s|--soc)
94 # echo "Option SoC: argument \`$2'"
95 if [ "$opt_s" ] ; then
96 opt_s="${opt_s%)} || \$6 == \"$2\")"
97 else
98 opt_s="(\$6 == \"$2\")"
99 fi
100 SELECTED='y'
101 shift 2 ;;
102 -v|--vendor)
103 # echo "Option VENDOR: argument \`$2'"
104 if [ "$opt_v" ] ; then
105 opt_v="${opt_v%)} || \$5 == \"$2\")"
106 else
107 opt_v="(\$5 == \"$2\")"
108 fi
109 SELECTED='y'
110 shift 2 ;;
111 --)
112 shift ; break ;;
113 *)
114 echo "Internal error!" >&2 ; exit 1 ;;
115 esac
116done
117# echo "Remaining arguments:"
118# for arg do echo '--> '"\`$arg'" ; done
119
120FILTER="\$1 !~ /^#/"
121[ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
122[ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
123[ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
124[ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
125
126if [ "$SELECTED" ] ; then
127 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
Peter Tysercd57b0b2010-10-29 17:59:06 -0500128
129 # Make sure some boards from boards.cfg are actually found
130 if [ -z "$SELECTED" ] ; then
131 echo "Error: No boards selected, invalid arguments"
132 exit 1
133 fi
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200134fi
135
136#########################################################################
137
Peter Tyser40a28f02009-09-21 12:04:32 -0500138# Print statistics when we exit
139trap exit 1 2 3 15
140trap print_stats 0
141
Wolfgang Denk7fa6a2f2008-12-09 00:39:08 +0100142# Determine number of CPU cores if no default was set
143: ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
144
145if [ "$BUILD_NCPUS" -gt 1 ]
146then
Peter Tyser55f786d2009-09-21 12:04:33 -0500147 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denk7fa6a2f2008-12-09 00:39:08 +0100148else
149 JOBS=""
150fi
151
wdenka8c7c702003-12-06 19:49:23 +0000152
wdenk7ebf7442002-11-02 23:17:16 +0000153if [ "${CROSS_COMPILE}" ] ; then
154 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
155else
156 MAKE=make
157fi
158
Marian Balakowiczf9328632006-09-01 19:49:50 +0200159if [ "${MAKEALL_LOGDIR}" ] ; then
160 LOG_DIR=${MAKEALL_LOGDIR}
161else
162 LOG_DIR="LOG"
163fi
Stefan Roese887e2ec2006-09-07 11:51:23 +0200164
Marian Balakowiczf9328632006-09-01 19:49:50 +0200165if [ ! "${BUILD_DIR}" ] ; then
166 BUILD_DIR="."
167fi
168
Marian Balakowicz4f0645e2006-09-07 12:05:53 +0200169[ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
wdenk7ebf7442002-11-02 23:17:16 +0000170
171LIST=""
172
Peter Tyser40a28f02009-09-21 12:04:32 -0500173# Keep track of the number of builds and errors
174ERR_CNT=0
175ERR_LIST=""
176TOTAL_CNT=0
Peter Tyserf2352872009-12-06 23:58:28 -0600177RC=0
Peter Tyser40a28f02009-09-21 12:04:32 -0500178
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400179# Helper funcs for parsing boards.cfg
180boards_by_field()
181{
182 awk \
183 -v field="$1" \
184 -v select="$2" \
185 '($1 !~ /^#/ && $field == select) { print $1 }' \
186 boards.cfg
187}
188boards_by_arch() { boards_by_field 2 "$@" ; }
189boards_by_cpu() { boards_by_field 3 "$@" ; }
Andreas Bießmann0a41eda2010-11-30 09:45:04 +0000190boards_by_soc() { boards_by_field 6 "$@" ; }
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400191
wdenk7ebf7442002-11-02 23:17:16 +0000192#########################################################################
wdenk0db5bca2003-03-31 17:27:09 +0000193## MPC5xx Systems
194#########################################################################
195
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400196LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk0db5bca2003-03-31 17:27:09 +0000197
198#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000199## MPC5xxx Systems
200#########################################################################
201
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200202LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk945af8d2003-07-16 21:53:01 +0000203
204#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200205## MPC512x Systems
206#########################################################################
207
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200208LIST_512x="$(boards_by_cpu mpc512x)"
wdenk7ebf7442002-11-02 23:17:16 +0000209
210#########################################################################
211## MPC8xx Systems
212#########################################################################
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400213
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200214LIST_8xx="$(boards_by_cpu mpc8xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000215
216#########################################################################
217## PPC4xx Systems
218#########################################################################
219
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200220LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000221
222#########################################################################
wdenk983fda82004-10-28 00:09:35 +0000223## MPC8220 Systems
224#########################################################################
225
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400226LIST_8220="$(boards_by_cpu mpc8220)"
wdenk983fda82004-10-28 00:09:35 +0000227
228#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000229## MPC824x Systems
230#########################################################################
231
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200232LIST_824x="$(boards_by_cpu mpc824x)"
wdenk592c5ca2003-06-21 00:17:24 +0000233
wdenk7ebf7442002-11-02 23:17:16 +0000234#########################################################################
wdenk7aa78612003-05-03 15:50:43 +0000235## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000236#########################################################################
237
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200238LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000239
240#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -0500241## MPC83xx Systems (includes 8349, etc.)
242#########################################################################
243
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200244LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Libertyf046ccd2005-07-28 10:08:46 -0500245
246#########################################################################
wdenk42d1f032003-10-15 23:53:47 +0000247## MPC85xx Systems (includes 8540, 8560 etc.)
248#########################################################################
249
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200250LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk42d1f032003-10-15 23:53:47 +0000251
252#########################################################################
Jon Loeliger822d5532007-05-23 14:09:46 -0500253## MPC86xx Systems
254#########################################################################
255
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200256LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger822d5532007-05-23 14:09:46 -0500257
258#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000259## 74xx/7xx Systems
260#########################################################################
261
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200262LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000263
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700264#########################################################################
265## PowerPC groups
266#########################################################################
267
268LIST_TSEC=" \
269 ${LIST_83xx} \
270 ${LIST_85xx} \
271 ${LIST_86xx} \
272"
273
Stefan Roesea47a12b2010-04-15 16:07:28 +0200274LIST_powerpc=" \
Kim Phillipsfb565792007-08-10 15:34:48 -0500275 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD3deca9d2007-11-25 22:39:25 +0100276 ${LIST_512x} \
Kim Phillipsfb565792007-08-10 15:34:48 -0500277 ${LIST_5xxx} \
278 ${LIST_8xx} \
279 ${LIST_8220} \
280 ${LIST_824x} \
281 ${LIST_8260} \
282 ${LIST_83xx} \
283 ${LIST_85xx} \
284 ${LIST_86xx} \
285 ${LIST_4xx} \
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200286 ${LIST_74xx_7xx}\
Kim Phillipsfb565792007-08-10 15:34:48 -0500287"
wdenk7ebf7442002-11-02 23:17:16 +0000288
Stefan Roesea47a12b2010-04-15 16:07:28 +0200289# Alias "ppc" -> "powerpc" to not break compatibility with older scripts
290# still using "ppc" instead of "powerpc"
291LIST_ppc=" \
292 ${LIST_powerpc} \
293"
294
wdenk7ebf7442002-11-02 23:17:16 +0000295#########################################################################
296## StrongARM Systems
297#########################################################################
298
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400299LIST_SA="$(boards_by_cpu sa1100)"
wdenk7ebf7442002-11-02 23:17:16 +0000300
301#########################################################################
302## ARM7 Systems
303#########################################################################
304
Kim Phillipsfb565792007-08-10 15:34:48 -0500305LIST_ARM7=" \
306 ap7 \
307 ap720t \
308 armadillo \
309 B2 \
310 ep7312 \
311 evb4510 \
312 impa7 \
313 integratorap \
314 lpc2292sodimm \
315 modnet50 \
316 SMN42 \
Wolfgang Denk74f43042005-09-25 01:48:28 +0200317"
wdenk7ebf7442002-11-02 23:17:16 +0000318
319#########################################################################
320## ARM9 Systems
321#########################################################################
322
Kim Phillipsfb565792007-08-10 15:34:48 -0500323LIST_ARM9=" \
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800324 a320evb \
Kim Phillipsfb565792007-08-10 15:34:48 -0500325 ap920t \
326 ap922_XA10 \
327 ap926ejs \
328 ap946es \
329 ap966 \
330 cp920t \
331 cp922_XA10 \
332 cp926ejs \
333 cp946es \
334 cp966 \
Sekhar Nori2819e132009-11-12 11:09:25 -0500335 da830evm \
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530336 da850evm \
Matthias Kaehlckecf3c1422010-02-01 21:29:48 +0100337 edb9301 \
338 edb9302 \
339 edb9302a \
340 edb9307 \
341 edb9307a \
342 edb9312 \
343 edb9315 \
344 edb9315a \
Albert Aribaudce9c2272010-06-17 19:38:21 +0530345 edminiv2 \
Siddarth Gore16b76702010-03-18 20:25:40 +0530346 guruplug \
Ilya Yanok10bc2412009-08-11 02:32:09 +0400347 imx27lite \
Matthias Weisser18a056a2010-08-09 13:31:51 +0200348 jadecpu \
Kim Phillipsfb565792007-08-10 15:34:48 -0500349 lpd7a400 \
Heiko Schocherbbe31092010-03-05 07:36:33 +0100350 magnesium \
Prafulla Wadaskar4abc5bf2009-07-16 20:58:01 +0530351 mv88f6281gtw_ge \
Kim Phillipsfb565792007-08-10 15:34:48 -0500352 mx1ads \
353 mx1fs2 \
354 netstar \
Jean-Christophe PLAGNIOL-VILLARDceb70b42009-07-05 01:06:06 +0200355 nhk8815 \
356 nhk8815_onenand \
Kim Phillipsfb565792007-08-10 15:34:48 -0500357 omap1510inn \
358 omap1610h2 \
359 omap1610inn \
David Brownella3543d62008-01-18 12:45:45 -0800360 omap5912osk \
Kim Phillipsfb565792007-08-10 15:34:48 -0500361 omap730p2 \
Simon Kagstrome92daeb2009-09-22 04:01:01 +0530362 openrd_base \
Prafulla Wadaskarfbc83652009-07-16 21:02:24 +0530363 rd6281a \
Kim Phillipsfb565792007-08-10 15:34:48 -0500364 sbc2410x \
365 scb9328 \
Prafulla Wadaskar55dd4ba2009-07-16 20:58:00 +0530366 sheevaplug \
Kim Phillipsfb565792007-08-10 15:34:48 -0500367 smdk2400 \
368 smdk2410 \
Vipin KUMAR7e074152010-01-15 19:15:50 +0530369 spear300 \
Vipin KUMAR080cfee2010-01-15 19:15:52 +0530370 spear310 \
Vipin KUMAR7da69232010-01-15 19:15:53 +0530371 spear320 \
Vipin KUMAR566c9c12010-01-15 19:15:48 +0530372 spear600 \
Heiko Schocher67fa8c22010-02-22 16:43:02 +0530373 suen3 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500374 trab \
375 VCMA9 \
376 versatile \
377 versatileab \
378 versatilepb \
379 voiceblue \
380 davinci_dvevm \
381 davinci_schmoogie \
Hugo Villeneuvec7f879e2008-05-21 13:58:41 -0400382 davinci_sffsdr \
Kim Phillipsfb565792007-08-10 15:34:48 -0500383 davinci_sonata \
David Brownell28b00322009-05-15 23:48:37 +0200384 davinci_dm355evm \
Sandeep Paulraj5df65cf2009-10-10 13:37:10 -0400385 davinci_dm355leopard \
Sandeep Paulraj3fca2922010-02-17 21:09:21 -0500386 davinci_dm365evm \
Sandeep Paulraj6ab176d2009-10-10 12:00:47 -0400387 davinci_dm6467evm \
wdenk6f213472003-08-29 22:00:43 +0000388"
wdenk7ebf7442002-11-02 23:17:16 +0000389
390#########################################################################
Wolfgang Denk74f43042005-09-25 01:48:28 +0200391## ARM10 Systems
392#########################################################################
Kim Phillipsfb565792007-08-10 15:34:48 -0500393LIST_ARM10=" \
394 integratorcp \
395 cp1026 \
Wolfgang Denk74f43042005-09-25 01:48:28 +0200396"
397
398#########################################################################
wdenk8ed96042005-01-09 23:16:25 +0000399## ARM11 Systems
400#########################################################################
Guennadi Liakhovetski0c692672009-03-25 11:36:50 +0100401LIST_ARM11=" \
402 cp1136 \
403 omap2420h4 \
404 apollon \
405 imx31_litekit \
406 imx31_phycore \
407 imx31_phycore_eet \
408 mx31ads \
Magnus Lilja8449f282009-07-01 01:07:55 +0200409 mx31pdk \
Magnus Liljad08e5ca2009-07-04 10:31:24 +0200410 mx31pdk_nand \
Guennadi Liakhovetski0c692672009-03-25 11:36:50 +0100411 qong \
412 smdk6400 \
Cyril Chemparathy5cc48f72010-06-07 14:13:36 -0400413 tnetv107x_evm \
Wolfgang Denk74f43042005-09-25 01:48:28 +0200414"
wdenk8ed96042005-01-09 23:16:25 +0000415
416#########################################################################
Steve Sakomanf56348a2010-06-17 21:50:01 -0700417## ARMV7 Systems
Dirk Behmef904cdb2009-01-27 18:19:12 +0100418#########################################################################
Steve Sakomanf56348a2010-06-17 21:50:01 -0700419LIST_ARMV7=" \
Vaibhav Hiremathed01e452010-06-07 15:20:43 -0400420 am3517_evm \
Matt Waddelb80e41a2010-10-07 15:48:45 -0600421 ca9x4_ct_vxp \
Frederik Kriewitzc35d7cf2009-08-23 12:56:42 +0200422 devkit8000 \
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400423 igep0020 \
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -0400424 igep0030 \
Stefano Babicc5fb70c2010-02-05 15:13:58 +0100425 mx51evk \
Dirk Behmef904cdb2009-01-27 18:19:12 +0100426 omap3_beagle \
Dirk Behme9d0fc812009-01-28 21:39:57 +0100427 omap3_overo \
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100428 omap3_evm \
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100429 omap3_pandora \
Tom Rixe63e5902009-10-17 12:41:06 -0500430 omap3_sdp3430 \
Dirk Behme7379f452009-01-28 21:40:16 +0100431 omap3_zoom1 \
Tom Rix376aee72009-05-15 23:48:36 +0200432 omap3_zoom2 \
Steve Sakomanc57cca22010-06-11 20:35:26 -0700433 omap4_panda \
Steve Sakoman3e76d622010-06-08 13:07:46 -0700434 omap4_sdp4430 \
Minkyu Kangc474a8e2010-05-31 22:02:42 +0900435 s5p_goni \
Minkyu Kang8bc4ee92009-10-01 17:20:40 +0900436 smdkc100 \
Dirk Behmef904cdb2009-01-27 18:19:12 +0100437"
438
439#########################################################################
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200440## AT91 Systems
441#########################################################################
442
Andreas Bießmann0a41eda2010-11-30 09:45:04 +0000443LIST_at91="$(boards_by_soc at91)\
444 $(boards_by_soc at91rm9200)\
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200445 at91sam9260ek \
446 at91sam9261ek \
447 at91sam9263ek \
Tom Rixd8380c92009-09-27 07:47:24 -0500448 at91sam9g10ek \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200449 at91sam9g20ek \
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +0200450 at91sam9m10g45ek \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200451 at91sam9rlek \
Tom Rixd8380c92009-09-27 07:47:24 -0500452 CPUAT91 \
Tom Rix23b80982009-09-27 11:10:09 -0500453 CPU9260 \
454 CPU9G20 \
Asen Dimovb5d289f2010-04-20 22:49:04 +0300455 pm9g45 \
Albin Tonnerre2dc851e2009-08-20 16:04:49 +0200456 SBC35_A9G20 \
457 TNY_A9260 \
458 TNY_A9G20 \
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200459"
460
461#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000462## Xscale Systems
463#########################################################################
464
Marek Vasut7c957c02010-10-04 00:21:51 +0200465LIST_pxa="$(boards_by_cpu pxa)"
wdenk7ebf7442002-11-02 23:17:16 +0000466
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400467LIST_ixp="$(boards_by_cpu ixp)
Kim Phillipsfb565792007-08-10 15:34:48 -0500468 pdnb3 \
469 scpu \
470"
wdenk7ebf7442002-11-02 23:17:16 +0000471
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700472#########################################################################
473## ARM groups
474#########################################################################
wdenk2d5b5612003-10-14 19:43:55 +0000475
Dirk Behmef904cdb2009-01-27 18:19:12 +0100476LIST_arm=" \
477 ${LIST_SA} \
478 ${LIST_ARM7} \
479 ${LIST_ARM9} \
480 ${LIST_ARM10} \
481 ${LIST_ARM11} \
Steve Sakomanf56348a2010-06-17 21:50:01 -0700482 ${LIST_ARMV7} \
Dirk Behmef904cdb2009-01-27 18:19:12 +0100483 ${LIST_at91} \
484 ${LIST_pxa} \
485 ${LIST_ixp} \
wdenk8ed96042005-01-09 23:16:25 +0000486"
wdenk7ebf7442002-11-02 23:17:16 +0000487
wdenkc0218802003-03-27 12:09:35 +0000488#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200489## MIPS Systems (default = big endian)
wdenkc0218802003-03-27 12:09:35 +0000490#########################################################################
491
Kim Phillipsfb565792007-08-10 15:34:48 -0500492LIST_mips4kc=" \
493 incaip \
Vlad Lungu0764c162008-01-16 19:27:51 +0200494 qemu_mips \
Stefan Roese2a61eff2009-01-21 17:25:01 +0100495 vct_platinum \
496 vct_platinum_small \
497 vct_platinum_onenand \
498 vct_platinum_onenand_small \
499 vct_platinumavc \
500 vct_platinumavc_small \
501 vct_platinumavc_onenand \
502 vct_platinumavc_onenand_small \
503 vct_premium \
504 vct_premium_small \
505 vct_premium_onenand \
506 vct_premium_onenand_small \
Kim Phillipsfb565792007-08-10 15:34:48 -0500507"
wdenkc0218802003-03-27 12:09:35 +0000508
Kim Phillipsfb565792007-08-10 15:34:48 -0500509LIST_mips5kc=" \
510 purple \
511"
wdenk3e386912003-04-05 00:53:31 +0000512
Kim Phillipsfb565792007-08-10 15:34:48 -0500513LIST_au1xx0=" \
514 dbau1000 \
515 dbau1100 \
516 dbau1500 \
517 dbau1550 \
518 dbau1550_el \
519 gth2 \
520"
wdenk5da627a2003-10-09 20:09:04 +0000521
Kim Phillipsfb565792007-08-10 15:34:48 -0500522LIST_mips=" \
523 ${LIST_mips4kc} \
524 ${LIST_mips5kc} \
525 ${LIST_au1xx0} \
526"
wdenkc0218802003-03-27 12:09:35 +0000527
wdenk7a8e9bed2003-05-31 18:35:21 +0000528#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200529## MIPS Systems (little endian)
530#########################################################################
531
532LIST_mips4kc_el=""
533
534LIST_mips5kc_el=""
535
Kim Phillipsfb565792007-08-10 15:34:48 -0500536LIST_au1xx0_el=" \
537 dbau1550_el \
Shinya Kuribayashib09258c2007-10-27 15:00:25 +0900538 pb1000 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500539"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200540
Kim Phillipsfb565792007-08-10 15:34:48 -0500541LIST_mips_el=" \
542 ${LIST_mips4kc_el} \
543 ${LIST_mips5kc_el} \
544 ${LIST_au1xx0_el} \
545"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200546
547#########################################################################
wdenk7a8e9bed2003-05-31 18:35:21 +0000548## i386 Systems
549#########################################################################
550
Mike Frysinger6d79c392010-10-20 03:34:19 -0400551LIST_x86="$(boards_by_arch i386)"
wdenk7a8e9bed2003-05-31 18:35:21 +0000552
wdenkc935d3b2004-01-03 19:43:48 +0000553#########################################################################
wdenk5c952cf2004-10-10 21:27:30 +0000554## Nios-II Systems
555#########################################################################
556
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400557LIST_nios2="$(boards_by_arch nios2)
Thomas Chou8cbb0dd2010-04-21 08:40:59 +0800558 nios2-generic \
Wolfgang Denk4176c792006-06-10 19:27:47 +0200559"
wdenk5c952cf2004-10-10 21:27:30 +0000560
561#########################################################################
wdenk857cad32004-07-10 23:48:41 +0000562## MicroBlaze Systems
563#########################################################################
564
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400565LIST_microblaze="$(boards_by_arch microblaze)"
wdenk857cad32004-07-10 23:48:41 +0000566
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500567#########################################################################
568## ColdFire Systems
569#########################################################################
570
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400571LIST_coldfire="$(boards_by_arch m68k)
Wolfgang Wegner9d79e572010-01-25 11:27:44 +0100572 astro_mcf5373l \
Kim Phillipsfb565792007-08-10 15:34:48 -0500573 cobra5272 \
574 EB+MCF-EV123 \
575 EB+MCF-EV123_internal \
TsiChungLiew1552af72008-01-14 17:43:33 -0600576 M52277EVB \
TsiChungLiew4a442d32007-08-16 19:23:50 -0500577 M5235EVB \
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600578 M5329AFEE \
579 M5373EVB \
TsiChung Liew05316f82008-08-11 13:41:49 +0000580 M54451EVB \
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500581 M54455EVB \
TsiChungLiew57a12722008-01-15 14:15:46 -0600582 M5475AFE \
583 M5485AFE \
Heiko Schocher9acb6262006-04-20 08:42:42 +0200584"
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500585
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200586#########################################################################
587## AVR32 Systems
588#########################################################################
589
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400590LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200591
Aubrey.Lief26a082007-03-09 13:40:56 +0800592#########################################################################
593## Blackfin Systems
594#########################################################################
595
Mike Frysinger36cf8cb2010-10-19 02:41:26 -0400596LIST_blackfin="$(boards_by_arch blackfin)"
Aubrey.Lief26a082007-03-09 13:40:56 +0800597
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100598#########################################################################
599## SH Systems
600#########################################################################
601
Nobuhiro Iwamatsue0f0e522010-10-20 01:22:25 +0900602LIST_sh2="$(boards_by_cpu sh2)"
Nobuhiro Iwamatsu3771c692010-10-20 01:28:29 +0900603LIST_sh3="$(boards_by_cpu sh3)"
Nobuhiro Iwamatsu03626be2010-10-20 01:35:28 +0900604LIST_sh4="$(boards_by_cpu sh4)"
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700605
Nobuhiro Iwamatsu03626be2010-10-20 01:35:28 +0900606LIST_sh="$(boards_by_arch sh)"
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100607
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100608#########################################################################
609## SPARC Systems
610#########################################################################
611
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400612LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000613
614#-----------------------------------------------------------------------
615
616build_target() {
617 target=$1
618
619 ${MAKE} distclean >/dev/null
Kim Phillipsd70d8cc2010-09-14 14:48:16 -0500620 ${MAKE} -s ${target}_config
Marian Balakowiczf9328632006-09-01 19:49:50 +0200621
622 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
623 | tee ${LOG_DIR}/$target.ERR
Peter Tyserf2352872009-12-06 23:58:28 -0600624
625 # Check for 'make' errors
626 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
627 RC=1
628 fi
629
Peter Tyser40a28f02009-09-21 12:04:32 -0500630 if [ -s ${LOG_DIR}/$target.ERR ] ; then
631 ERR_CNT=$((ERR_CNT + 1))
632 ERR_LIST="${ERR_LIST} $target"
633 else
634 rm ${LOG_DIR}/$target.ERR
635 fi
636
637 TOTAL_CNT=$((TOTAL_CNT + 1))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200638
Mike Frysinger208447f2008-01-28 05:56:19 -0500639 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200640 | tee -a ${LOG_DIR}/$target.MAKELOG
wdenk7ebf7442002-11-02 23:17:16 +0000641}
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400642build_targets() {
643 for t in "$@" ; do
644 # If a LIST_xxx var exists, use it. But avoid variable
645 # expansion in the eval when a board name contains certain
646 # characters that the shell interprets.
647 case ${t} in
648 *[-+=]*) list= ;;
649 *) list=$(eval echo '${LIST_'$t'}') ;;
650 esac
651 if [ -n "${list}" ] ; then
652 build_targets ${list}
653 else
654 build_target ${t}
655 fi
656 done
657}
wdenk7ebf7442002-11-02 23:17:16 +0000658
659#-----------------------------------------------------------------------
660
Peter Tyser40a28f02009-09-21 12:04:32 -0500661print_stats() {
662 echo ""
663 echo "--------------------- SUMMARY ----------------------------"
664 echo "Boards compiled: ${TOTAL_CNT}"
665 if [ ${ERR_CNT} -gt 0 ] ; then
666 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
667 fi
668 echo "----------------------------------------------------------"
Peter Tyserf2352872009-12-06 23:58:28 -0600669
670 exit $RC
Peter Tyser40a28f02009-09-21 12:04:32 -0500671}
wdenk7ebf7442002-11-02 23:17:16 +0000672
Peter Tyser40a28f02009-09-21 12:04:32 -0500673#-----------------------------------------------------------------------
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400674
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200675# Build target groups selected by options, plus any command line args
676set -- ${SELECTED} "$@"
677# run PowerPC by default
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400678[ $# = 0 ] && set -- powerpc
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400679build_targets "$@"