blob: 01eb1536cfba9124d62cd95e1a8b7f7c89ee43b3 [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#
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 Tyser40a28f02009-09-21 12:04:32 -0500132# Print statistics when we exit
133trap exit 1 2 3 15
134trap print_stats 0
135
Wolfgang Denk7fa6a2f2008-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 Tyser55f786d2009-09-21 12:04:33 -0500141 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denk7fa6a2f2008-12-09 00:39:08 +0100142else
143 JOBS=""
144fi
145
wdenka8c7c702003-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 Balakowiczf9328632006-09-01 19:49:50 +0200153if [ "${MAKEALL_LOGDIR}" ] ; then
154 LOG_DIR=${MAKEALL_LOGDIR}
155else
156 LOG_DIR="LOG"
157fi
Stefan Roese887e2ec2006-09-07 11:51:23 +0200158
Marian Balakowiczf9328632006-09-01 19:49:50 +0200159if [ ! "${BUILD_DIR}" ] ; then
160 BUILD_DIR="."
161fi
162
Marian Balakowicz4f0645e2006-09-07 12:05:53 +0200163[ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
wdenk7ebf7442002-11-02 23:17:16 +0000164
165LIST=""
166
Peter Tyser40a28f02009-09-21 12:04:32 -0500167# Keep track of the number of builds and errors
168ERR_CNT=0
169ERR_LIST=""
170TOTAL_CNT=0
Peter Tyserf2352872009-12-06 23:58:28 -0600171RC=0
Peter Tyser40a28f02009-09-21 12:04:32 -0500172
Mike Frysinger9ec49f82010-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#########################################################################
wdenk0db5bca2003-03-31 17:27:09 +0000186## MPC5xx Systems
187#########################################################################
188
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400189LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk0db5bca2003-03-31 17:27:09 +0000190
191#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000192## MPC5xxx Systems
193#########################################################################
194
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200195LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk945af8d2003-07-16 21:53:01 +0000196
197#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200198## MPC512x Systems
199#########################################################################
200
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200201LIST_512x="$(boards_by_cpu mpc512x)"
wdenk7ebf7442002-11-02 23:17:16 +0000202
203#########################################################################
204## MPC8xx Systems
205#########################################################################
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400206
Wolfgang Denk2ae18242010-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 Denk2ae18242010-10-06 09:05:45 +0200213LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000214
215#########################################################################
wdenk983fda82004-10-28 00:09:35 +0000216## MPC8220 Systems
217#########################################################################
218
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400219LIST_8220="$(boards_by_cpu mpc8220)"
wdenk983fda82004-10-28 00:09:35 +0000220
221#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000222## MPC824x Systems
223#########################################################################
224
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200225LIST_824x="$(boards_by_cpu mpc824x)"
wdenk592c5ca2003-06-21 00:17:24 +0000226
wdenk7ebf7442002-11-02 23:17:16 +0000227#########################################################################
wdenk7aa78612003-05-03 15:50:43 +0000228## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000229#########################################################################
230
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200231LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000232
233#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -0500234## MPC83xx Systems (includes 8349, etc.)
235#########################################################################
236
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200237LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Libertyf046ccd2005-07-28 10:08:46 -0500238
239#########################################################################
wdenk42d1f032003-10-15 23:53:47 +0000240## MPC85xx Systems (includes 8540, 8560 etc.)
241#########################################################################
242
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200243LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk42d1f032003-10-15 23:53:47 +0000244
245#########################################################################
Jon Loeliger822d5532007-05-23 14:09:46 -0500246## MPC86xx Systems
247#########################################################################
248
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200249LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger822d5532007-05-23 14:09:46 -0500250
251#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000252## 74xx/7xx Systems
253#########################################################################
254
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200255LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000256
Wolfgang Denkd9a42c02008-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 Roesea47a12b2010-04-15 16:07:28 +0200267LIST_powerpc=" \
Kim Phillipsfb565792007-08-10 15:34:48 -0500268 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD3deca9d2007-11-25 22:39:25 +0100269 ${LIST_512x} \
Kim Phillipsfb565792007-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 Denk2ae18242010-10-06 09:05:45 +0200279 ${LIST_74xx_7xx}\
Kim Phillipsfb565792007-08-10 15:34:48 -0500280"
wdenk7ebf7442002-11-02 23:17:16 +0000281
Stefan Roesea47a12b2010-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 Frysinger9ec49f82010-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 Phillipsfb565792007-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 Denk74f43042005-09-25 01:48:28 +0200310"
wdenk7ebf7442002-11-02 23:17:16 +0000311
312#########################################################################
313## ARM9 Systems
314#########################################################################
315
Kim Phillipsfb565792007-08-10 15:34:48 -0500316LIST_ARM9=" \
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800317 a320evb \
Kim Phillipsfb565792007-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 Nori2819e132009-11-12 11:09:25 -0500328 da830evm \
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530329 da850evm \
Matthias Kaehlckecf3c1422010-02-01 21:29:48 +0100330 edb9301 \
331 edb9302 \
332 edb9302a \
333 edb9307 \
334 edb9307a \
335 edb9312 \
336 edb9315 \
337 edb9315a \
Albert Aribaudce9c2272010-06-17 19:38:21 +0530338 edminiv2 \
Siddarth Gore16b76702010-03-18 20:25:40 +0530339 guruplug \
Ilya Yanok10bc2412009-08-11 02:32:09 +0400340 imx27lite \
Matthias Weisser18a056a2010-08-09 13:31:51 +0200341 jadecpu \
Kim Phillipsfb565792007-08-10 15:34:48 -0500342 lpd7a400 \
Heiko Schocherbbe31092010-03-05 07:36:33 +0100343 magnesium \
Prafulla Wadaskar4abc5bf2009-07-16 20:58:01 +0530344 mv88f6281gtw_ge \
Kim Phillipsfb565792007-08-10 15:34:48 -0500345 mx1ads \
346 mx1fs2 \
347 netstar \
Jean-Christophe PLAGNIOL-VILLARDceb70b42009-07-05 01:06:06 +0200348 nhk8815 \
349 nhk8815_onenand \
Kim Phillipsfb565792007-08-10 15:34:48 -0500350 omap1510inn \
351 omap1610h2 \
352 omap1610inn \
David Brownella3543d62008-01-18 12:45:45 -0800353 omap5912osk \
Kim Phillipsfb565792007-08-10 15:34:48 -0500354 omap730p2 \
Simon Kagstrome92daeb2009-09-22 04:01:01 +0530355 openrd_base \
Prafulla Wadaskarfbc83652009-07-16 21:02:24 +0530356 rd6281a \
Kim Phillipsfb565792007-08-10 15:34:48 -0500357 sbc2410x \
358 scb9328 \
Prafulla Wadaskar55dd4ba2009-07-16 20:58:00 +0530359 sheevaplug \
Kim Phillipsfb565792007-08-10 15:34:48 -0500360 smdk2400 \
361 smdk2410 \
Vipin KUMAR7e074152010-01-15 19:15:50 +0530362 spear300 \
Vipin KUMAR080cfee2010-01-15 19:15:52 +0530363 spear310 \
Vipin KUMAR7da69232010-01-15 19:15:53 +0530364 spear320 \
Vipin KUMAR566c9c12010-01-15 19:15:48 +0530365 spear600 \
Heiko Schocher67fa8c22010-02-22 16:43:02 +0530366 suen3 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500367 trab \
368 VCMA9 \
369 versatile \
370 versatileab \
371 versatilepb \
372 voiceblue \
373 davinci_dvevm \
374 davinci_schmoogie \
Hugo Villeneuvec7f879e2008-05-21 13:58:41 -0400375 davinci_sffsdr \
Kim Phillipsfb565792007-08-10 15:34:48 -0500376 davinci_sonata \
David Brownell28b00322009-05-15 23:48:37 +0200377 davinci_dm355evm \
Sandeep Paulraj5df65cf2009-10-10 13:37:10 -0400378 davinci_dm355leopard \
Sandeep Paulraj3fca2922010-02-17 21:09:21 -0500379 davinci_dm365evm \
Sandeep Paulraj6ab176d2009-10-10 12:00:47 -0400380 davinci_dm6467evm \
wdenk6f213472003-08-29 22:00:43 +0000381"
wdenk7ebf7442002-11-02 23:17:16 +0000382
383#########################################################################
Wolfgang Denk74f43042005-09-25 01:48:28 +0200384## ARM10 Systems
385#########################################################################
Kim Phillipsfb565792007-08-10 15:34:48 -0500386LIST_ARM10=" \
387 integratorcp \
388 cp1026 \
Wolfgang Denk74f43042005-09-25 01:48:28 +0200389"
390
391#########################################################################
wdenk8ed96042005-01-09 23:16:25 +0000392## ARM11 Systems
393#########################################################################
Guennadi Liakhovetski0c692672009-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 Lilja8449f282009-07-01 01:07:55 +0200402 mx31pdk \
Magnus Liljad08e5ca2009-07-04 10:31:24 +0200403 mx31pdk_nand \
Guennadi Liakhovetski0c692672009-03-25 11:36:50 +0100404 qong \
405 smdk6400 \
Cyril Chemparathy5cc48f72010-06-07 14:13:36 -0400406 tnetv107x_evm \
Wolfgang Denk74f43042005-09-25 01:48:28 +0200407"
wdenk8ed96042005-01-09 23:16:25 +0000408
409#########################################################################
Steve Sakomanf56348a2010-06-17 21:50:01 -0700410## ARMV7 Systems
Dirk Behmef904cdb2009-01-27 18:19:12 +0100411#########################################################################
Steve Sakomanf56348a2010-06-17 21:50:01 -0700412LIST_ARMV7=" \
Vaibhav Hiremathed01e452010-06-07 15:20:43 -0400413 am3517_evm \
Matt Waddelb80e41a2010-10-07 15:48:45 -0600414 ca9x4_ct_vxp \
Frederik Kriewitzc35d7cf2009-08-23 12:56:42 +0200415 devkit8000 \
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400416 igep0020 \
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -0400417 igep0030 \
Stefano Babicc5fb70c2010-02-05 15:13:58 +0100418 mx51evk \
Dirk Behmef904cdb2009-01-27 18:19:12 +0100419 omap3_beagle \
Dirk Behme9d0fc812009-01-28 21:39:57 +0100420 omap3_overo \
Dirk Behmead9bc8e2009-01-28 21:39:58 +0100421 omap3_evm \
Dirk Behme2be2c6c2009-01-28 21:39:58 +0100422 omap3_pandora \
Tom Rixe63e5902009-10-17 12:41:06 -0500423 omap3_sdp3430 \
Dirk Behme7379f452009-01-28 21:40:16 +0100424 omap3_zoom1 \
Tom Rix376aee72009-05-15 23:48:36 +0200425 omap3_zoom2 \
Steve Sakomanc57cca22010-06-11 20:35:26 -0700426 omap4_panda \
Steve Sakoman3e76d622010-06-08 13:07:46 -0700427 omap4_sdp4430 \
Minkyu Kangc474a8e2010-05-31 22:02:42 +0900428 s5p_goni \
Minkyu Kang8bc4ee92009-10-01 17:20:40 +0900429 smdkc100 \
Dirk Behmef904cdb2009-01-27 18:19:12 +0100430"
431
432#########################################################################
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200433## AT91 Systems
434#########################################################################
435
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200436LIST_at91=" \
437 afeb9260 \
438 at91cap9adk \
439 at91rm9200dk \
440 at91rm9200ek \
441 at91sam9260ek \
442 at91sam9261ek \
443 at91sam9263ek \
Tom Rixd8380c92009-09-27 07:47:24 -0500444 at91sam9g10ek \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200445 at91sam9g20ek \
Sedji Gaouaou5ccc2d92009-06-25 17:04:15 +0200446 at91sam9m10g45ek \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200447 at91sam9rlek \
448 cmc_pu2 \
Tom Rixd8380c92009-09-27 07:47:24 -0500449 CPUAT91 \
Tom Rix23b80982009-09-27 11:10:09 -0500450 CPU9260 \
451 CPU9G20 \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200452 csb637 \
Jens Scharsig77e72732010-02-03 22:48:09 +0100453 eb_cpux9k2 \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200454 kb9202 \
455 meesc \
456 mp2usb \
457 m501sk \
Daniel Gorsulowski44d80252010-01-25 10:50:41 +0100458 otc570 \
Sedji Gaouaou22ee6472009-07-09 10:16:29 +0200459 pm9261 \
460 pm9263 \
Asen Dimovb5d289f2010-04-20 22:49:04 +0300461 pm9g45 \
Albin Tonnerre2dc851e2009-08-20 16:04:49 +0200462 SBC35_A9G20 \
463 TNY_A9260 \
464 TNY_A9G20 \
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200465"
466
467#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000468## Xscale Systems
469#########################################################################
470
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400471LIST_pxa="$(boards_by_cpu pxa)
Stefano Babic040f8f62009-07-01 20:40:41 +0200472 polaris \
Stefano Babic040f8f62009-07-01 20:40:41 +0200473 trizepsiv \
Marek Vasutf9054322010-07-22 16:51:52 +0200474 vpac270_nor_128M\
475 vpac270_nor_256M\
Marek Vasut18a00df2010-03-07 23:35:48 +0100476 vpac270_onenand \
wdenk4ec3a7f2004-09-28 16:44:41 +0000477"
wdenk7ebf7442002-11-02 23:17:16 +0000478
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400479LIST_ixp="$(boards_by_cpu ixp)
Kim Phillipsfb565792007-08-10 15:34:48 -0500480 pdnb3 \
481 scpu \
482"
wdenk7ebf7442002-11-02 23:17:16 +0000483
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700484#########################################################################
485## ARM groups
486#########################################################################
wdenk2d5b5612003-10-14 19:43:55 +0000487
Dirk Behmef904cdb2009-01-27 18:19:12 +0100488LIST_arm=" \
489 ${LIST_SA} \
490 ${LIST_ARM7} \
491 ${LIST_ARM9} \
492 ${LIST_ARM10} \
493 ${LIST_ARM11} \
Steve Sakomanf56348a2010-06-17 21:50:01 -0700494 ${LIST_ARMV7} \
Dirk Behmef904cdb2009-01-27 18:19:12 +0100495 ${LIST_at91} \
496 ${LIST_pxa} \
497 ${LIST_ixp} \
wdenk8ed96042005-01-09 23:16:25 +0000498"
wdenk7ebf7442002-11-02 23:17:16 +0000499
wdenkc0218802003-03-27 12:09:35 +0000500#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200501## MIPS Systems (default = big endian)
wdenkc0218802003-03-27 12:09:35 +0000502#########################################################################
503
Kim Phillipsfb565792007-08-10 15:34:48 -0500504LIST_mips4kc=" \
505 incaip \
Vlad Lungu0764c162008-01-16 19:27:51 +0200506 qemu_mips \
Stefan Roese2a61eff2009-01-21 17:25:01 +0100507 vct_platinum \
508 vct_platinum_small \
509 vct_platinum_onenand \
510 vct_platinum_onenand_small \
511 vct_platinumavc \
512 vct_platinumavc_small \
513 vct_platinumavc_onenand \
514 vct_platinumavc_onenand_small \
515 vct_premium \
516 vct_premium_small \
517 vct_premium_onenand \
518 vct_premium_onenand_small \
Kim Phillipsfb565792007-08-10 15:34:48 -0500519"
wdenkc0218802003-03-27 12:09:35 +0000520
Kim Phillipsfb565792007-08-10 15:34:48 -0500521LIST_mips5kc=" \
522 purple \
523"
wdenk3e386912003-04-05 00:53:31 +0000524
Kim Phillipsfb565792007-08-10 15:34:48 -0500525LIST_au1xx0=" \
526 dbau1000 \
527 dbau1100 \
528 dbau1500 \
529 dbau1550 \
530 dbau1550_el \
531 gth2 \
532"
wdenk5da627a2003-10-09 20:09:04 +0000533
Kim Phillipsfb565792007-08-10 15:34:48 -0500534LIST_mips=" \
535 ${LIST_mips4kc} \
536 ${LIST_mips5kc} \
537 ${LIST_au1xx0} \
538"
wdenkc0218802003-03-27 12:09:35 +0000539
wdenk7a8e9bed2003-05-31 18:35:21 +0000540#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200541## MIPS Systems (little endian)
542#########################################################################
543
544LIST_mips4kc_el=""
545
546LIST_mips5kc_el=""
547
Kim Phillipsfb565792007-08-10 15:34:48 -0500548LIST_au1xx0_el=" \
549 dbau1550_el \
Shinya Kuribayashib09258c2007-10-27 15:00:25 +0900550 pb1000 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500551"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200552
Kim Phillipsfb565792007-08-10 15:34:48 -0500553LIST_mips_el=" \
554 ${LIST_mips4kc_el} \
555 ${LIST_mips5kc_el} \
556 ${LIST_au1xx0_el} \
557"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200558
559#########################################################################
wdenk7a8e9bed2003-05-31 18:35:21 +0000560## i386 Systems
561#########################################################################
562
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400563LIST_x86="$(boards_by_arch i386)
Graeme Russc620c012008-12-07 10:28:57 +1100564 sc520_eNET \
Kim Phillipsfb565792007-08-10 15:34:48 -0500565"
wdenk7a8e9bed2003-05-31 18:35:21 +0000566
wdenkc935d3b2004-01-03 19:43:48 +0000567#########################################################################
wdenk5c952cf2004-10-10 21:27:30 +0000568## Nios-II Systems
569#########################################################################
570
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400571LIST_nios2="$(boards_by_arch nios2)
Thomas Chou8cbb0dd2010-04-21 08:40:59 +0800572 nios2-generic \
Wolfgang Denk4176c792006-06-10 19:27:47 +0200573"
wdenk5c952cf2004-10-10 21:27:30 +0000574
575#########################################################################
wdenk857cad32004-07-10 23:48:41 +0000576## MicroBlaze Systems
577#########################################################################
578
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400579LIST_microblaze="$(boards_by_arch microblaze)"
wdenk857cad32004-07-10 23:48:41 +0000580
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500581#########################################################################
582## ColdFire Systems
583#########################################################################
584
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400585LIST_coldfire="$(boards_by_arch m68k)
Wolfgang Wegner9d79e572010-01-25 11:27:44 +0100586 astro_mcf5373l \
Kim Phillipsfb565792007-08-10 15:34:48 -0500587 cobra5272 \
588 EB+MCF-EV123 \
589 EB+MCF-EV123_internal \
TsiChungLiew1552af72008-01-14 17:43:33 -0600590 M52277EVB \
TsiChungLiew4a442d32007-08-16 19:23:50 -0500591 M5235EVB \
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600592 M5329AFEE \
593 M5373EVB \
TsiChung Liew05316f82008-08-11 13:41:49 +0000594 M54451EVB \
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500595 M54455EVB \
TsiChungLiew57a12722008-01-15 14:15:46 -0600596 M5475AFE \
597 M5485AFE \
Heiko Schocher9acb6262006-04-20 08:42:42 +0200598"
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500599
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200600#########################################################################
601## AVR32 Systems
602#########################################################################
603
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400604LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200605
Aubrey.Lief26a082007-03-09 13:40:56 +0800606#########################################################################
607## Blackfin Systems
608#########################################################################
609
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400610LIST_blackfin="$(boards_by_arch blackfin)
611 bf527-ezkit-v2
Aubrey.Lief26a082007-03-09 13:40:56 +0800612"
613
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100614#########################################################################
615## SH Systems
616#########################################################################
617
Nobuhiro Iwamatsuc655fad2008-08-31 23:02:04 +0900618LIST_sh2=" \
619 rsk7203 \
620"
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700621LIST_sh3=" \
622 mpr2 \
623 ms7720se \
624"
625
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100626LIST_sh4=" \
Nobuhiro Iwamatsuaa9c4f12007-11-29 00:13:04 +0900627 ms7750se \
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100628 ms7722se \
Nobuhiro Iwamatsu9e23fe02008-07-08 12:03:24 +0900629 MigoR \
Yusuke Godac133c1f2008-03-11 12:55:12 +0900630 r7780mp \
Nobuhiro Iwamatsuf5e24662008-03-25 17:11:24 +0900631 r2dplus \
Nobuhiro Iwamatsu7faddae2008-06-09 13:39:57 +0900632 sh7763rdp \
Nobuhiro Iwamatsu0d53a472008-08-31 22:45:08 +0900633 sh7785lcr \
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900634 ap325rxa \
Nobuhiro Iwamatsu74d9c162009-06-25 16:31:26 +0900635 espt \
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100636"
637
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100638LIST_sh=" \
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900639 ${LIST_sh2} \
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100640 ${LIST_sh3} \
641 ${LIST_sh4} \
642"
643
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100644#########################################################################
645## SPARC Systems
646#########################################################################
647
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400648LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000649
650#-----------------------------------------------------------------------
651
652build_target() {
653 target=$1
654
655 ${MAKE} distclean >/dev/null
Kim Phillipsd70d8cc2010-09-14 14:48:16 -0500656 ${MAKE} -s ${target}_config
Marian Balakowiczf9328632006-09-01 19:49:50 +0200657
658 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
659 | tee ${LOG_DIR}/$target.ERR
Peter Tyserf2352872009-12-06 23:58:28 -0600660
661 # Check for 'make' errors
662 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
663 RC=1
664 fi
665
Peter Tyser40a28f02009-09-21 12:04:32 -0500666 if [ -s ${LOG_DIR}/$target.ERR ] ; then
667 ERR_CNT=$((ERR_CNT + 1))
668 ERR_LIST="${ERR_LIST} $target"
669 else
670 rm ${LOG_DIR}/$target.ERR
671 fi
672
673 TOTAL_CNT=$((TOTAL_CNT + 1))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200674
Mike Frysinger208447f2008-01-28 05:56:19 -0500675 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200676 | tee -a ${LOG_DIR}/$target.MAKELOG
wdenk7ebf7442002-11-02 23:17:16 +0000677}
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400678build_targets() {
679 for t in "$@" ; do
680 # If a LIST_xxx var exists, use it. But avoid variable
681 # expansion in the eval when a board name contains certain
682 # characters that the shell interprets.
683 case ${t} in
684 *[-+=]*) list= ;;
685 *) list=$(eval echo '${LIST_'$t'}') ;;
686 esac
687 if [ -n "${list}" ] ; then
688 build_targets ${list}
689 else
690 build_target ${t}
691 fi
692 done
693}
wdenk7ebf7442002-11-02 23:17:16 +0000694
695#-----------------------------------------------------------------------
696
Peter Tyser40a28f02009-09-21 12:04:32 -0500697print_stats() {
698 echo ""
699 echo "--------------------- SUMMARY ----------------------------"
700 echo "Boards compiled: ${TOTAL_CNT}"
701 if [ ${ERR_CNT} -gt 0 ] ; then
702 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
703 fi
704 echo "----------------------------------------------------------"
Peter Tyserf2352872009-12-06 23:58:28 -0600705
706 exit $RC
Peter Tyser40a28f02009-09-21 12:04:32 -0500707}
wdenk7ebf7442002-11-02 23:17:16 +0000708
Peter Tyser40a28f02009-09-21 12:04:32 -0500709#-----------------------------------------------------------------------
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400710
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200711# Build target groups selected by options, plus any command line args
712set -- ${SELECTED} "$@"
713# run PowerPC by default
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400714[ $# = 0 ] && set -- powerpc
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400715build_targets "$@"