blob: c1f3842aad48f3043752389c3174bcfd9be44693 [file] [log] [blame]
Peter Tysera5a27b92009-12-06 23:58:28 -06001#!/bin/bash
wdenk7ebf7442002-11-02 23:17:16 +00002
Wolfgang Denk7b74fec2010-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#
14# With the iontroduction of the board.cfg file, it has become possible
15# 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
59# Note that we use `"$@"' to let each command-line parameter expand to a
60# 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)
128fi
129
130#########################################################################
131
Peter Tyser23240d22009-09-21 12:04:32 -0500132# Print statistics when we exit
133trap exit 1 2 3 15
134trap print_stats 0
135
Wolfgang Denkde5d6602008-12-09 00:39:08 +0100136# Determine number of CPU cores if no default was set
137: ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
138
139if [ "$BUILD_NCPUS" -gt 1 ]
140then
Peter Tyser8a07f9a2009-09-21 12:04:33 -0500141 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denkde5d6602008-12-09 00:39:08 +0100142else
143 JOBS=""
144fi
145
wdenkc0aa5c52003-12-06 19:49:23 +0000146
wdenk7ebf7442002-11-02 23:17:16 +0000147if [ "${CROSS_COMPILE}" ] ; then
148 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
149else
150 MAKE=make
151fi
152
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200153if [ "${MAKEALL_LOGDIR}" ] ; then
154 LOG_DIR=${MAKEALL_LOGDIR}
155else
156 LOG_DIR="LOG"
157fi
Stefan Roese42fbddd2006-09-07 11:51:23 +0200158
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200159if [ ! "${BUILD_DIR}" ] ; then
160 BUILD_DIR="."
161fi
162
Marian Balakowicz7f783cb2006-09-07 12:05:53 +0200163[ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
wdenk7ebf7442002-11-02 23:17:16 +0000164
165LIST=""
166
Peter Tyser23240d22009-09-21 12:04:32 -0500167# Keep track of the number of builds and errors
168ERR_CNT=0
169ERR_LIST=""
170TOTAL_CNT=0
Peter Tysera5a27b92009-12-06 23:58:28 -0600171RC=0
Peter Tyser23240d22009-09-21 12:04:32 -0500172
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400173# Helper funcs for parsing boards.cfg
174boards_by_field()
175{
176 awk \
177 -v field="$1" \
178 -v select="$2" \
179 '($1 !~ /^#/ && $field == select) { print $1 }' \
180 boards.cfg
181}
182boards_by_arch() { boards_by_field 2 "$@" ; }
183boards_by_cpu() { boards_by_field 3 "$@" ; }
184
wdenk7ebf7442002-11-02 23:17:16 +0000185#########################################################################
wdenk359733b2003-03-31 17:27:09 +0000186## MPC5xx Systems
187#########################################################################
188
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400189LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk359733b2003-03-31 17:27:09 +0000190
191#########################################################################
wdenk21136db2003-07-16 21:53:01 +0000192## MPC5xxx Systems
193#########################################################################
194
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200195LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk21136db2003-07-16 21:53:01 +0000196
197#########################################################################
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200198## MPC512x Systems
199#########################################################################
200
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200201LIST_512x="$(boards_by_cpu mpc512x)"
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200202
203#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000204## MPC8xx Systems
205#########################################################################
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400206
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200207LIST_8xx="$(boards_by_cpu mpc8xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000208
209#########################################################################
210## PPC4xx Systems
211#########################################################################
212
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200213LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000214
215#########################################################################
wdenk337f5652004-10-28 00:09:35 +0000216## MPC8220 Systems
217#########################################################################
218
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400219LIST_8220="$(boards_by_cpu mpc8220)"
wdenk337f5652004-10-28 00:09:35 +0000220
221#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000222## MPC824x Systems
223#########################################################################
224
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200225LIST_824x="$(boards_by_cpu mpc824x)"
wdenkdbae5042003-06-21 00:17:24 +0000226
wdenk7ebf7442002-11-02 23:17:16 +0000227#########################################################################
wdenk541a76d2003-05-03 15:50:43 +0000228## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000229#########################################################################
230
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200231LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000232
233#########################################################################
Eran Liberty9095d4a2005-07-28 10:08:46 -0500234## MPC83xx Systems (includes 8349, etc.)
235#########################################################################
236
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200237LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Liberty9095d4a2005-07-28 10:08:46 -0500238
239#########################################################################
wdenk9c53f402003-10-15 23:53:47 +0000240## MPC85xx Systems (includes 8540, 8560 etc.)
241#########################################################################
242
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200243LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk9c53f402003-10-15 23:53:47 +0000244
245#########################################################################
Jon Loeliger5fe34492007-05-23 14:09:46 -0500246## MPC86xx Systems
247#########################################################################
248
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200249LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger5fe34492007-05-23 14:09:46 -0500250
251#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000252## 74xx/7xx Systems
253#########################################################################
254
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200255LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000256
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700257#########################################################################
258## PowerPC groups
259#########################################################################
260
261LIST_TSEC=" \
262 ${LIST_83xx} \
263 ${LIST_85xx} \
264 ${LIST_86xx} \
265"
266
Stefan Roese88fbf932010-04-15 16:07:28 +0200267LIST_powerpc=" \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500268 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD0912d312007-11-25 22:39:25 +0100269 ${LIST_512x} \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500270 ${LIST_5xxx} \
271 ${LIST_8xx} \
272 ${LIST_8220} \
273 ${LIST_824x} \
274 ${LIST_8260} \
275 ${LIST_83xx} \
276 ${LIST_85xx} \
277 ${LIST_86xx} \
278 ${LIST_4xx} \
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200279 ${LIST_74xx_7xx}\
Kim Phillips8c0c8932007-08-10 15:34:48 -0500280"
wdenk7ebf7442002-11-02 23:17:16 +0000281
Stefan Roese88fbf932010-04-15 16:07:28 +0200282# Alias "ppc" -> "powerpc" to not break compatibility with older scripts
283# still using "ppc" instead of "powerpc"
284LIST_ppc=" \
285 ${LIST_powerpc} \
286"
287
wdenk7ebf7442002-11-02 23:17:16 +0000288#########################################################################
289## StrongARM Systems
290#########################################################################
291
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400292LIST_SA="$(boards_by_cpu sa1100)"
wdenk7ebf7442002-11-02 23:17:16 +0000293
294#########################################################################
295## ARM7 Systems
296#########################################################################
297
Kim Phillips8c0c8932007-08-10 15:34:48 -0500298LIST_ARM7=" \
299 ap7 \
300 ap720t \
301 armadillo \
302 B2 \
303 ep7312 \
304 evb4510 \
305 impa7 \
306 integratorap \
307 lpc2292sodimm \
308 modnet50 \
309 SMN42 \
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200310"
wdenk7ebf7442002-11-02 23:17:16 +0000311
312#########################################################################
313## ARM9 Systems
314#########################################################################
315
Kim Phillips8c0c8932007-08-10 15:34:48 -0500316LIST_ARM9=" \
Po-Yu Chuang5614a4d2009-11-11 17:27:30 +0800317 a320evb \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500318 ap920t \
319 ap922_XA10 \
320 ap926ejs \
321 ap946es \
322 ap966 \
323 cp920t \
324 cp922_XA10 \
325 cp926ejs \
326 cp946es \
327 cp966 \
Sekhar Nori5ffad632009-11-12 11:09:25 -0500328 da830evm \
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530329 da850evm \
Matthias Kaehlcke279437d2010-02-01 21:29:48 +0100330 edb9301 \
331 edb9302 \
332 edb9302a \
333 edb9307 \
334 edb9307a \
335 edb9312 \
336 edb9315 \
337 edb9315a \
Albert Aribaudacc41ff2010-06-17 19:38:21 +0530338 edminiv2 \
Siddarth Gore11b10b02010-03-18 20:25:40 +0530339 guruplug \
Ilya Yanok016b7022009-08-11 02:32:09 +0400340 imx27lite \
Matthias Weisserdcf0dca2010-08-09 13:31:51 +0200341 jadecpu \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500342 lpd7a400 \
Heiko Schocherc8f51122010-03-05 07:36:33 +0100343 magnesium \
Prafulla Wadaskar60a04f92009-07-16 20:58:01 +0530344 mv88f6281gtw_ge \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500345 mx1ads \
346 mx1fs2 \
347 netstar \
Jean-Christophe PLAGNIOL-VILLARD871e4812009-07-05 01:06:06 +0200348 nhk8815 \
349 nhk8815_onenand \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500350 omap1510inn \
351 omap1610h2 \
352 omap1610inn \
David Brownell161f4112008-01-18 12:45:45 -0800353 omap5912osk \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500354 omap730p2 \
Simon Kagstrom258c3302009-09-22 04:01:01 +0530355 openrd_base \
Prafulla Wadaskar4aab4ae2009-07-16 21:02:24 +0530356 rd6281a \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500357 sbc2410x \
358 scb9328 \
Prafulla Wadaskar62634642009-07-16 20:58:00 +0530359 sheevaplug \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500360 smdk2400 \
361 smdk2410 \
Vipin KUMARb0ea0892010-01-15 19:15:50 +0530362 spear300 \
Vipin KUMAR6e2998f2010-01-15 19:15:52 +0530363 spear310 \
Vipin KUMARcc0da712010-01-15 19:15:53 +0530364 spear320 \
Vipin KUMAR7cc4c462010-01-15 19:15:48 +0530365 spear600 \
Heiko Schocher60301192010-02-22 16:43:02 +0530366 suen3 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500367 trab \
368 VCMA9 \
369 versatile \
370 versatileab \
371 versatilepb \
372 voiceblue \
373 davinci_dvevm \
374 davinci_schmoogie \
Hugo Villeneuve4f3f6712008-05-21 13:58:41 -0400375 davinci_sffsdr \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500376 davinci_sonata \
David Brownell7a846182009-05-15 23:48:37 +0200377 davinci_dm355evm \
Sandeep Paulraj2e584ec2009-10-10 13:37:10 -0400378 davinci_dm355leopard \
Sandeep Paulraj7c82bdc2010-02-17 21:09:21 -0500379 davinci_dm365evm \
Sandeep Paulraj1830bba2009-10-10 12:00:47 -0400380 davinci_dm6467evm \
wdenk7eaacc52003-08-29 22:00:43 +0000381"
wdenk7ebf7442002-11-02 23:17:16 +0000382
383#########################################################################
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200384## ARM10 Systems
385#########################################################################
Kim Phillips8c0c8932007-08-10 15:34:48 -0500386LIST_ARM10=" \
387 integratorcp \
388 cp1026 \
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200389"
390
391#########################################################################
wdenkf8062712005-01-09 23:16:25 +0000392## ARM11 Systems
393#########################################################################
Guennadi Liakhovetskib093d8d2009-03-25 11:36:50 +0100394LIST_ARM11=" \
395 cp1136 \
396 omap2420h4 \
397 apollon \
398 imx31_litekit \
399 imx31_phycore \
400 imx31_phycore_eet \
401 mx31ads \
Magnus Lilja6eeb6f72009-07-01 01:07:55 +0200402 mx31pdk \
Magnus Lilja24f8b412009-07-04 10:31:24 +0200403 mx31pdk_nand \
Guennadi Liakhovetskib093d8d2009-03-25 11:36:50 +0100404 qong \
405 smdk6400 \
Cyril Chemparathy3d138062010-06-07 14:13:36 -0400406 tnetv107x_evm \
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200407"
wdenkf8062712005-01-09 23:16:25 +0000408
409#########################################################################
Steve Sakoman6329a8f2010-06-17 21:50:01 -0700410## ARMV7 Systems
Dirk Behme2781f802009-01-27 18:19:12 +0100411#########################################################################
Steve Sakoman6329a8f2010-06-17 21:50:01 -0700412LIST_ARMV7=" \
Vaibhav Hiremathdb5c5582010-06-07 15:20:43 -0400413 am3517_evm \
Matt Waddel35c638b2010-10-07 15:48:45 -0600414 ca9x4_ct_vxp \
Frederik Kriewitz99396502009-08-23 12:56:42 +0200415 devkit8000 \
Enric Balletbo i Serra2ce268c2010-10-14 16:54:59 -0400416 igep0020 \
Enric Balletbo i Serra3c1e54a2010-10-14 16:57:39 -0400417 igep0030 \
Stefano Babic421834e2010-02-05 15:13:58 +0100418 mx51evk \
Dirk Behme2781f802009-01-27 18:19:12 +0100419 omap3_beagle \
Dirk Behme220faba2009-01-28 21:39:57 +0100420 omap3_overo \
Dirk Behmebb732be2009-01-28 21:39:58 +0100421 omap3_evm \
Dirk Behme7b84a7b2009-01-28 21:39:58 +0100422 omap3_pandora \
Tom Rixc5a51352009-10-17 12:41:06 -0500423 omap3_sdp3430 \
Dirk Behmebab104e2009-01-28 21:40:16 +0100424 omap3_zoom1 \
Tom Rix0419d912009-05-15 23:48:36 +0200425 omap3_zoom2 \
Steve Sakoman6b810ff2010-06-11 20:35:26 -0700426 omap4_panda \
Steve Sakoman1b3dd5d2010-06-08 13:07:46 -0700427 omap4_sdp4430 \
Minkyu Kang1ecdd832010-05-31 22:02:42 +0900428 s5p_goni \
Minkyu Kang29325572009-10-01 17:20:40 +0900429 smdkc100 \
Dirk Behme2781f802009-01-27 18:19:12 +0100430"
431
432#########################################################################
Jean-Christophe PLAGNIOL-VILLARD9a88fd12008-05-24 12:47:46 +0200433## AT91 Systems
434#########################################################################
435
Sedji Gaouaou538566d2009-07-09 10:16:29 +0200436LIST_at91=" \
437 afeb9260 \
438 at91cap9adk \
439 at91rm9200dk \
440 at91rm9200ek \
441 at91sam9260ek \
442 at91sam9261ek \
443 at91sam9263ek \
Tom Rix3db7af72009-09-27 07:47:24 -0500444 at91sam9g10ek \
Sedji Gaouaou538566d2009-07-09 10:16:29 +0200445 at91sam9g20ek \
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200446 at91sam9m10g45ek \
Sedji Gaouaou538566d2009-07-09 10:16:29 +0200447 at91sam9rlek \
448 cmc_pu2 \
Tom Rix3db7af72009-09-27 07:47:24 -0500449 CPUAT91 \
Tom Rix799a05b2009-09-27 11:10:09 -0500450 CPU9260 \
451 CPU9G20 \
Sedji Gaouaou538566d2009-07-09 10:16:29 +0200452 csb637 \
Jens Scharsigaeceb502010-02-03 22:48:09 +0100453 eb_cpux9k2 \
Sedji Gaouaou538566d2009-07-09 10:16:29 +0200454 kb9202 \
455 meesc \
456 mp2usb \
457 m501sk \
Daniel Gorsulowski6e02da52010-01-25 10:50:41 +0100458 otc570 \
Sedji Gaouaou538566d2009-07-09 10:16:29 +0200459 pm9261 \
460 pm9263 \
Asen Dimovddd0bda2010-04-20 22:49:04 +0300461 pm9g45 \
Albin Tonnerre20615462009-08-20 16:04:49 +0200462 SBC35_A9G20 \
463 TNY_A9260 \
464 TNY_A9G20 \
Jean-Christophe PLAGNIOL-VILLARD9a88fd12008-05-24 12:47:46 +0200465"
466
467#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000468## Xscale Systems
469#########################################################################
470
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400471LIST_pxa="$(boards_by_cpu pxa)
Stefano Babice33f8042009-07-01 20:40:41 +0200472 polaris \
Stefano Babice33f8042009-07-01 20:40:41 +0200473 trizepsiv \
Marek Vasut1e847582010-03-07 23:35:48 +0100474 vpac270_nor \
475 vpac270_onenand \
wdenkfa89d7c2004-09-28 16:44:41 +0000476"
wdenk7ebf7442002-11-02 23:17:16 +0000477
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400478LIST_ixp="$(boards_by_cpu ixp)
Kim Phillips8c0c8932007-08-10 15:34:48 -0500479 pdnb3 \
480 scpu \
481"
wdenk7ebf7442002-11-02 23:17:16 +0000482
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700483#########################################################################
484## ARM groups
485#########################################################################
wdenkbd1575f2003-10-14 19:43:55 +0000486
Dirk Behme2781f802009-01-27 18:19:12 +0100487LIST_arm=" \
488 ${LIST_SA} \
489 ${LIST_ARM7} \
490 ${LIST_ARM9} \
491 ${LIST_ARM10} \
492 ${LIST_ARM11} \
Steve Sakoman6329a8f2010-06-17 21:50:01 -0700493 ${LIST_ARMV7} \
Dirk Behme2781f802009-01-27 18:19:12 +0100494 ${LIST_at91} \
495 ${LIST_pxa} \
496 ${LIST_ixp} \
wdenkf8062712005-01-09 23:16:25 +0000497"
wdenk7ebf7442002-11-02 23:17:16 +0000498
wdenkbb1b8262003-03-27 12:09:35 +0000499#########################################################################
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200500## MIPS Systems (default = big endian)
wdenkbb1b8262003-03-27 12:09:35 +0000501#########################################################################
502
Kim Phillips8c0c8932007-08-10 15:34:48 -0500503LIST_mips4kc=" \
504 incaip \
Vlad Lungu635e76c2008-01-16 19:27:51 +0200505 qemu_mips \
Stefan Roeseee7a6ba2009-01-21 17:25:01 +0100506 vct_platinum \
507 vct_platinum_small \
508 vct_platinum_onenand \
509 vct_platinum_onenand_small \
510 vct_platinumavc \
511 vct_platinumavc_small \
512 vct_platinumavc_onenand \
513 vct_platinumavc_onenand_small \
514 vct_premium \
515 vct_premium_small \
516 vct_premium_onenand \
517 vct_premium_onenand_small \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500518"
wdenkbb1b8262003-03-27 12:09:35 +0000519
Kim Phillips8c0c8932007-08-10 15:34:48 -0500520LIST_mips5kc=" \
521 purple \
522"
wdenkb02744a2003-04-05 00:53:31 +0000523
Kim Phillips8c0c8932007-08-10 15:34:48 -0500524LIST_au1xx0=" \
525 dbau1000 \
526 dbau1100 \
527 dbau1500 \
528 dbau1550 \
529 dbau1550_el \
530 gth2 \
531"
wdenk9b7f3842003-10-09 20:09:04 +0000532
Kim Phillips8c0c8932007-08-10 15:34:48 -0500533LIST_mips=" \
534 ${LIST_mips4kc} \
535 ${LIST_mips5kc} \
536 ${LIST_au1xx0} \
537"
wdenkbb1b8262003-03-27 12:09:35 +0000538
wdenkabda5ca2003-05-31 18:35:21 +0000539#########################################################################
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200540## MIPS Systems (little endian)
541#########################################################################
542
543LIST_mips4kc_el=""
544
545LIST_mips5kc_el=""
546
Kim Phillips8c0c8932007-08-10 15:34:48 -0500547LIST_au1xx0_el=" \
548 dbau1550_el \
Shinya Kuribayashi2437cfb2007-10-27 15:00:25 +0900549 pb1000 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500550"
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200551
Kim Phillips8c0c8932007-08-10 15:34:48 -0500552LIST_mips_el=" \
553 ${LIST_mips4kc_el} \
554 ${LIST_mips5kc_el} \
555 ${LIST_au1xx0_el} \
556"
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200557
558#########################################################################
wdenkabda5ca2003-05-31 18:35:21 +0000559## i386 Systems
560#########################################################################
561
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400562LIST_x86="$(boards_by_arch i386)
Graeme Russe56d3972008-12-07 10:28:57 +1100563 sc520_eNET \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500564"
wdenkabda5ca2003-05-31 18:35:21 +0000565
wdenk3be717f2004-01-03 19:43:48 +0000566#########################################################################
wdenkef3386f2004-10-10 21:27:30 +0000567## Nios-II Systems
568#########################################################################
569
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400570LIST_nios2="$(boards_by_arch nios2)
Thomas Chou7ffbbf52010-04-21 08:40:59 +0800571 nios2-generic \
Wolfgang Denkb4b1c462006-06-10 19:27:47 +0200572"
wdenkef3386f2004-10-10 21:27:30 +0000573
574#########################################################################
wdenk20a61222004-07-10 23:48:41 +0000575## MicroBlaze Systems
576#########################################################################
577
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400578LIST_microblaze="$(boards_by_arch microblaze)"
wdenk20a61222004-07-10 23:48:41 +0000579
Zachary P. Landau1c3c0962006-01-26 17:38:46 -0500580#########################################################################
581## ColdFire Systems
582#########################################################################
583
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400584LIST_coldfire="$(boards_by_arch m68k)
Wolfgang Wegner406471c2010-01-25 11:27:44 +0100585 astro_mcf5373l \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500586 cobra5272 \
587 EB+MCF-EV123 \
588 EB+MCF-EV123_internal \
TsiChungLiew99b037a2008-01-14 17:43:33 -0600589 M52277EVB \
TsiChungLiewb859ef12007-08-16 19:23:50 -0500590 M5235EVB \
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600591 M5329AFEE \
592 M5373EVB \
TsiChung Liew3cdc00a2008-08-11 13:41:49 +0000593 M54451EVB \
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -0500594 M54455EVB \
TsiChungLiew8cb946d2008-01-15 14:15:46 -0600595 M5475AFE \
596 M5485AFE \
Heiko Schocherac1956e2006-04-20 08:42:42 +0200597"
Zachary P. Landau1c3c0962006-01-26 17:38:46 -0500598
Wolfgang Denk994ad962006-10-24 14:42:37 +0200599#########################################################################
600## AVR32 Systems
601#########################################################################
602
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400603LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk994ad962006-10-24 14:42:37 +0200604
Aubrey.Li450c23e2007-03-09 13:40:56 +0800605#########################################################################
606## Blackfin Systems
607#########################################################################
608
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400609LIST_blackfin="$(boards_by_arch blackfin)
610 bf527-ezkit-v2
Aubrey.Li450c23e2007-03-09 13:40:56 +0800611"
612
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100613#########################################################################
614## SH Systems
615#########################################################################
616
Nobuhiro Iwamatsu6f7d4362008-08-31 23:02:04 +0900617LIST_sh2=" \
618 rsk7203 \
619"
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700620LIST_sh3=" \
621 mpr2 \
622 ms7720se \
623"
624
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100625LIST_sh4=" \
Nobuhiro Iwamatsua2943f02007-11-29 00:13:04 +0900626 ms7750se \
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100627 ms7722se \
Nobuhiro Iwamatsu01213252008-07-08 12:03:24 +0900628 MigoR \
Yusuke Godacf236022008-03-11 12:55:12 +0900629 r7780mp \
Nobuhiro Iwamatsu868b52b2008-03-25 17:11:24 +0900630 r2dplus \
Nobuhiro Iwamatsu113a37e2008-06-09 13:39:57 +0900631 sh7763rdp \
Nobuhiro Iwamatsu52f73c02008-08-31 22:45:08 +0900632 sh7785lcr \
Nobuhiro Iwamatsu3e590432008-08-22 17:39:09 +0900633 ap325rxa \
Nobuhiro Iwamatsud1f2a0c2009-06-25 16:31:26 +0900634 espt \
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100635"
636
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100637LIST_sh=" \
Nobuhiro Iwamatsu3e590432008-08-22 17:39:09 +0900638 ${LIST_sh2} \
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100639 ${LIST_sh3} \
640 ${LIST_sh4} \
641"
642
Daniel Hellstrom9d7c6b22008-03-28 09:47:00 +0100643#########################################################################
644## SPARC Systems
645#########################################################################
646
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400647LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000648
649#-----------------------------------------------------------------------
650
651build_target() {
652 target=$1
653
654 ${MAKE} distclean >/dev/null
Kim Phillips5ac3c122010-09-14 14:48:16 -0500655 ${MAKE} -s ${target}_config
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200656
657 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
658 | tee ${LOG_DIR}/$target.ERR
Peter Tysera5a27b92009-12-06 23:58:28 -0600659
660 # Check for 'make' errors
661 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
662 RC=1
663 fi
664
Peter Tyser23240d22009-09-21 12:04:32 -0500665 if [ -s ${LOG_DIR}/$target.ERR ] ; then
666 ERR_CNT=$((ERR_CNT + 1))
667 ERR_LIST="${ERR_LIST} $target"
668 else
669 rm ${LOG_DIR}/$target.ERR
670 fi
671
672 TOTAL_CNT=$((TOTAL_CNT + 1))
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200673
Mike Frysinger119432a2008-01-28 05:56:19 -0500674 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200675 | tee -a ${LOG_DIR}/$target.MAKELOG
wdenk7ebf7442002-11-02 23:17:16 +0000676}
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400677build_targets() {
678 for t in "$@" ; do
679 # If a LIST_xxx var exists, use it. But avoid variable
680 # expansion in the eval when a board name contains certain
681 # characters that the shell interprets.
682 case ${t} in
683 *[-+=]*) list= ;;
684 *) list=$(eval echo '${LIST_'$t'}') ;;
685 esac
686 if [ -n "${list}" ] ; then
687 build_targets ${list}
688 else
689 build_target ${t}
690 fi
691 done
692}
wdenk7ebf7442002-11-02 23:17:16 +0000693
694#-----------------------------------------------------------------------
695
Peter Tyser23240d22009-09-21 12:04:32 -0500696print_stats() {
697 echo ""
698 echo "--------------------- SUMMARY ----------------------------"
699 echo "Boards compiled: ${TOTAL_CNT}"
700 if [ ${ERR_CNT} -gt 0 ] ; then
701 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
702 fi
703 echo "----------------------------------------------------------"
Peter Tysera5a27b92009-12-06 23:58:28 -0600704
705 exit $RC
Peter Tyser23240d22009-09-21 12:04:32 -0500706}
wdenk7ebf7442002-11-02 23:17:16 +0000707
Peter Tyser23240d22009-09-21 12:04:32 -0500708#-----------------------------------------------------------------------
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400709
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200710# Build target groups selected by options, plus any command line args
711set -- ${SELECTED} "$@"
712# run PowerPC by default
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400713[ $# = 0 ] && set -- powerpc
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400714build_targets "$@"