blob: 26685fbfccc3621daa3bcfe5d04c610b1df41984 [file] [log] [blame]
Peter Tyserf2352872009-12-06 23:58:28 -06001#!/bin/bash
Wolfgang Denk0777eaf2010-10-17 12:26:48 +02002# Tool mainly for U-Boot Quality Assurance: build one or more board
3# configurations with minimal verbosity, showing only warnings and
4# errors.
Wolfgang Denk0777eaf2010-10-17 12:26:48 +02005
Mike Frysingerd8e392d2011-04-21 22:01:43 +00006usage()
7{
8 # if exiting with 0, write to stdout, else write to stderr
9 local ret=${1:-0}
10 [ "${ret}" -eq 1 ] && exec 1>&2
11 cat <<-EOF
12 Usage: MAKEALL [options] [--] [boards-to-build]
13
14 Options:
15 -a ARCH, --arch ARCH Build all boards with arch ARCH
16 -c CPU, --cpu CPU Build all boards with cpu CPU
17 -v VENDOR, --vendor VENDOR Build all boards with vendor VENDOR
18 -s SOC, --soc SOC Build all boards with soc SOC
19 -h, --help This help output
20
21 Selections by these options are logically ANDed; if the same option
22 is used repeatedly, such selections are ORed. So "-v FOO -v BAR"
23 will select all configurations where the vendor is either FOO or
24 BAR. Any additional arguments specified on the command line are
25 always build additionally. See the boards.cfg file for more info.
26
27 If no boards are specified, then the default is "powerpc".
28
29 Environment variables:
30 BUILD_NCPUS number of parallel make jobs (default: auto)
31 CROSS_COMPILE cross-compiler toolchain prefix (default: "")
32 MAKEALL_LOGDIR output all logs to here (default: ./LOG/)
33 BUILD_DIR output build directory (default: ./)
34
35 Examples:
36 - build all Power Architecture boards:
37 MAKEALL -a powerpc
38 MAKEALL --arch powerpc
39 MAKEALL powerpc
40 - build all PowerPC boards manufactured by vendor "esd":
41 MAKEALL -a powerpc -v esd
42 - build all PowerPC boards manufactured either by "keymile" or "siemens":
43 MAKEALL -a powerpc -v keymile -v siemens
44 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
45 MAKEALL -c mpc83xx -v freescale 4xx
46 EOF
47 exit ${ret}
48}
49
50SHORT_OPTS="ha:c:v:s:"
51LONG_OPTS="help,arch:,cpu:,vendor:,soc:"
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020052
53# Option processing based on util-linux-2.13/getopt-parse.bash
54
Wolfgang Denk071bc922010-10-27 22:48:30 +020055# Note that we use `"$@"' to let each command-line parameter expand to a
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020056# separate word. The quotes around `$@' are essential!
57# We need TEMP as the `eval set --' would nuke the return value of
58# getopt.
59TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
60 -n 'MAKEALL' -- "$@"`
61
Mike Frysingerd8e392d2011-04-21 22:01:43 +000062[ $? != 0 ] && usage 1
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020063
64# Note the quotes around `$TEMP': they are essential!
65eval set -- "$TEMP"
66
67SELECTED=''
68
69while true ; do
70 case "$1" in
71 -a|--arch)
72 # echo "Option ARCH: argument \`$2'"
73 if [ "$opt_a" ] ; then
74 opt_a="${opt_a%)} || \$2 == \"$2\")"
75 else
76 opt_a="(\$2 == \"$2\")"
77 fi
78 SELECTED='y'
79 shift 2 ;;
80 -c|--cpu)
81 # echo "Option CPU: argument \`$2'"
82 if [ "$opt_c" ] ; then
83 opt_c="${opt_c%)} || \$3 == \"$2\")"
84 else
85 opt_c="(\$3 == \"$2\")"
86 fi
87 SELECTED='y'
88 shift 2 ;;
89 -s|--soc)
90 # echo "Option SoC: argument \`$2'"
91 if [ "$opt_s" ] ; then
92 opt_s="${opt_s%)} || \$6 == \"$2\")"
93 else
94 opt_s="(\$6 == \"$2\")"
95 fi
96 SELECTED='y'
97 shift 2 ;;
98 -v|--vendor)
99 # echo "Option VENDOR: argument \`$2'"
100 if [ "$opt_v" ] ; then
101 opt_v="${opt_v%)} || \$5 == \"$2\")"
102 else
103 opt_v="(\$5 == \"$2\")"
104 fi
105 SELECTED='y'
106 shift 2 ;;
Mike Frysingerd8e392d2011-04-21 22:01:43 +0000107 -h|--help)
108 usage ;;
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200109 --)
110 shift ; break ;;
111 *)
112 echo "Internal error!" >&2 ; exit 1 ;;
113 esac
114done
115# echo "Remaining arguments:"
116# for arg do echo '--> '"\`$arg'" ; done
117
118FILTER="\$1 !~ /^#/"
119[ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
120[ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
121[ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
122[ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
123
124if [ "$SELECTED" ] ; then
125 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
Peter Tysercd57b0b2010-10-29 17:59:06 -0500126
127 # Make sure some boards from boards.cfg are actually found
128 if [ -z "$SELECTED" ] ; then
129 echo "Error: No boards selected, invalid arguments"
130 exit 1
131 fi
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200132fi
133
134#########################################################################
135
Peter Tyser40a28f02009-09-21 12:04:32 -0500136# Print statistics when we exit
137trap exit 1 2 3 15
138trap print_stats 0
139
Wolfgang Denk7fa6a2f2008-12-09 00:39:08 +0100140# Determine number of CPU cores if no default was set
141: ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
142
143if [ "$BUILD_NCPUS" -gt 1 ]
144then
Peter Tyser55f786d2009-09-21 12:04:33 -0500145 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denk7fa6a2f2008-12-09 00:39:08 +0100146else
147 JOBS=""
148fi
149
wdenka8c7c702003-12-06 19:49:23 +0000150
wdenk7ebf7442002-11-02 23:17:16 +0000151if [ "${CROSS_COMPILE}" ] ; then
152 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
153else
154 MAKE=make
155fi
156
Marian Balakowiczf9328632006-09-01 19:49:50 +0200157if [ "${MAKEALL_LOGDIR}" ] ; then
158 LOG_DIR=${MAKEALL_LOGDIR}
159else
160 LOG_DIR="LOG"
161fi
Stefan Roese887e2ec2006-09-07 11:51:23 +0200162
Marian Balakowiczf9328632006-09-01 19:49:50 +0200163if [ ! "${BUILD_DIR}" ] ; then
164 BUILD_DIR="."
165fi
166
Marian Balakowicz4f0645e2006-09-07 12:05:53 +0200167[ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
wdenk7ebf7442002-11-02 23:17:16 +0000168
169LIST=""
170
Peter Tyser40a28f02009-09-21 12:04:32 -0500171# Keep track of the number of builds and errors
172ERR_CNT=0
173ERR_LIST=""
174TOTAL_CNT=0
Peter Tyserf2352872009-12-06 23:58:28 -0600175RC=0
Peter Tyser40a28f02009-09-21 12:04:32 -0500176
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400177# Helper funcs for parsing boards.cfg
178boards_by_field()
179{
180 awk \
181 -v field="$1" \
182 -v select="$2" \
183 '($1 !~ /^#/ && $field == select) { print $1 }' \
184 boards.cfg
185}
186boards_by_arch() { boards_by_field 2 "$@" ; }
187boards_by_cpu() { boards_by_field 3 "$@" ; }
Andreas Bießmann0a41eda2010-11-30 09:45:04 +0000188boards_by_soc() { boards_by_field 6 "$@" ; }
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400189
wdenk7ebf7442002-11-02 23:17:16 +0000190#########################################################################
wdenk0db5bca2003-03-31 17:27:09 +0000191## MPC5xx Systems
192#########################################################################
193
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400194LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk0db5bca2003-03-31 17:27:09 +0000195
196#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000197## MPC5xxx Systems
198#########################################################################
199
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200200LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk945af8d2003-07-16 21:53:01 +0000201
202#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200203## MPC512x Systems
204#########################################################################
205
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200206LIST_512x="$(boards_by_cpu mpc512x)"
wdenk7ebf7442002-11-02 23:17:16 +0000207
208#########################################################################
209## MPC8xx Systems
210#########################################################################
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400211
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200212LIST_8xx="$(boards_by_cpu mpc8xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000213
214#########################################################################
215## PPC4xx Systems
216#########################################################################
217
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200218LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000219
220#########################################################################
wdenk983fda82004-10-28 00:09:35 +0000221## MPC8220 Systems
222#########################################################################
223
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400224LIST_8220="$(boards_by_cpu mpc8220)"
wdenk983fda82004-10-28 00:09:35 +0000225
226#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000227## MPC824x Systems
228#########################################################################
229
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200230LIST_824x="$(boards_by_cpu mpc824x)"
wdenk592c5ca2003-06-21 00:17:24 +0000231
wdenk7ebf7442002-11-02 23:17:16 +0000232#########################################################################
wdenk7aa78612003-05-03 15:50:43 +0000233## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000234#########################################################################
235
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200236LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000237
238#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -0500239## MPC83xx Systems (includes 8349, etc.)
240#########################################################################
241
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200242LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Libertyf046ccd2005-07-28 10:08:46 -0500243
244#########################################################################
wdenk42d1f032003-10-15 23:53:47 +0000245## MPC85xx Systems (includes 8540, 8560 etc.)
246#########################################################################
247
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200248LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk42d1f032003-10-15 23:53:47 +0000249
250#########################################################################
Jon Loeliger822d5532007-05-23 14:09:46 -0500251## MPC86xx Systems
252#########################################################################
253
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200254LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger822d5532007-05-23 14:09:46 -0500255
256#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000257## 74xx/7xx Systems
258#########################################################################
259
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200260LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000261
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700262#########################################################################
263## PowerPC groups
264#########################################################################
265
266LIST_TSEC=" \
267 ${LIST_83xx} \
268 ${LIST_85xx} \
269 ${LIST_86xx} \
270"
271
Stefan Roesea47a12b2010-04-15 16:07:28 +0200272LIST_powerpc=" \
Kim Phillipsfb565792007-08-10 15:34:48 -0500273 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD3deca9d2007-11-25 22:39:25 +0100274 ${LIST_512x} \
Kim Phillipsfb565792007-08-10 15:34:48 -0500275 ${LIST_5xxx} \
276 ${LIST_8xx} \
277 ${LIST_8220} \
278 ${LIST_824x} \
279 ${LIST_8260} \
280 ${LIST_83xx} \
281 ${LIST_85xx} \
282 ${LIST_86xx} \
283 ${LIST_4xx} \
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200284 ${LIST_74xx_7xx}\
Kim Phillipsfb565792007-08-10 15:34:48 -0500285"
wdenk7ebf7442002-11-02 23:17:16 +0000286
Stefan Roesea47a12b2010-04-15 16:07:28 +0200287# Alias "ppc" -> "powerpc" to not break compatibility with older scripts
288# still using "ppc" instead of "powerpc"
289LIST_ppc=" \
290 ${LIST_powerpc} \
291"
292
wdenk7ebf7442002-11-02 23:17:16 +0000293#########################################################################
294## StrongARM Systems
295#########################################################################
296
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400297LIST_SA="$(boards_by_cpu sa1100)"
wdenk7ebf7442002-11-02 23:17:16 +0000298
299#########################################################################
300## ARM7 Systems
301#########################################################################
302
Kim Phillipsfb565792007-08-10 15:34:48 -0500303LIST_ARM7=" \
Kim Phillipsfb565792007-08-10 15:34:48 -0500304 armadillo \
305 B2 \
306 ep7312 \
307 evb4510 \
308 impa7 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500309 lpc2292sodimm \
310 modnet50 \
311 SMN42 \
Wolfgang Denk74f43042005-09-25 01:48:28 +0200312"
wdenk7ebf7442002-11-02 23:17:16 +0000313
314#########################################################################
315## ARM9 Systems
316#########################################################################
317
Kim Phillipsfb565792007-08-10 15:34:48 -0500318LIST_ARM9=" \
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800319 a320evb \
Prafulla Wadaskarc291e2f2010-11-29 17:01:27 +0530320 aspenite \
Sekhar Nori2819e132009-11-12 11:09:25 -0500321 da830evm \
Sudhakar Rajashekhara89b765c2010-06-10 15:18:15 +0530322 da850evm \
Matthias Kaehlckecf3c1422010-02-01 21:29:48 +0100323 edb9301 \
324 edb9302 \
325 edb9302a \
326 edb9307 \
327 edb9307a \
328 edb9312 \
329 edb9315 \
330 edb9315a \
Albert Aribaudce9c2272010-06-17 19:38:21 +0530331 edminiv2 \
Siddarth Gore16b76702010-03-18 20:25:40 +0530332 guruplug \
Ilya Yanok10bc2412009-08-11 02:32:09 +0400333 imx27lite \
Matthias Weisser18a056a2010-08-09 13:31:51 +0200334 jadecpu \
Holger Brunck83b40c32011-06-16 18:11:15 +0530335 km_kirkwood \
Kim Phillipsfb565792007-08-10 15:34:48 -0500336 lpd7a400 \
Heiko Schocherbbe31092010-03-05 07:36:33 +0100337 magnesium \
Prafulla Wadaskar4abc5bf2009-07-16 20:58:01 +0530338 mv88f6281gtw_ge \
Kim Phillipsfb565792007-08-10 15:34:48 -0500339 mx1ads \
340 mx1fs2 \
341 netstar \
Jean-Christophe PLAGNIOL-VILLARDceb70b42009-07-05 01:06:06 +0200342 nhk8815 \
343 nhk8815_onenand \
Kim Phillipsfb565792007-08-10 15:34:48 -0500344 omap1510inn \
345 omap1610h2 \
346 omap1610inn \
David Brownella3543d62008-01-18 12:45:45 -0800347 omap5912osk \
Kim Phillipsfb565792007-08-10 15:34:48 -0500348 omap730p2 \
Simon Kagstrome92daeb2009-09-22 04:01:01 +0530349 openrd_base \
Clint Adams21861f22011-05-06 22:06:47 +0530350 openrd_client \
351 openrd_ultimate \
Valentin Longchamp01fa4e82011-06-16 18:11:15 +0530352 portl2 \
Prafulla Wadaskarfbc83652009-07-16 21:02:24 +0530353 rd6281a \
Kim Phillipsfb565792007-08-10 15:34:48 -0500354 sbc2410x \
355 scb9328 \
Prafulla Wadaskar55dd4ba2009-07-16 20:58:00 +0530356 sheevaplug \
Kim Phillipsfb565792007-08-10 15:34:48 -0500357 smdk2400 \
358 smdk2410 \
Vipin KUMAR7e074152010-01-15 19:15:50 +0530359 spear300 \
Vipin KUMAR080cfee2010-01-15 19:15:52 +0530360 spear310 \
Vipin KUMAR7da69232010-01-15 19:15:53 +0530361 spear320 \
Vipin KUMAR566c9c12010-01-15 19:15:48 +0530362 spear600 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500363 VCMA9 \
364 versatile \
365 versatileab \
366 versatilepb \
367 voiceblue \
368 davinci_dvevm \
369 davinci_schmoogie \
Hugo Villeneuvec7f879e2008-05-21 13:58:41 -0400370 davinci_sffsdr \
Kim Phillipsfb565792007-08-10 15:34:48 -0500371 davinci_sonata \
David Brownell28b00322009-05-15 23:48:37 +0200372 davinci_dm355evm \
Sandeep Paulraj5df65cf2009-10-10 13:37:10 -0400373 davinci_dm355leopard \
Sandeep Paulraj3fca2922010-02-17 21:09:21 -0500374 davinci_dm365evm \
Sandeep Paulraj6ab176d2009-10-10 12:00:47 -0400375 davinci_dm6467evm \
wdenk6f213472003-08-29 22:00:43 +0000376"
wdenk7ebf7442002-11-02 23:17:16 +0000377
378#########################################################################
wdenk8ed96042005-01-09 23:16:25 +0000379## ARM11 Systems
380#########################################################################
Guennadi Liakhovetski0c692672009-03-25 11:36:50 +0100381LIST_ARM11=" \
Guennadi Liakhovetski0c692672009-03-25 11:36:50 +0100382 omap2420h4 \
383 apollon \
384 imx31_litekit \
385 imx31_phycore \
386 imx31_phycore_eet \
387 mx31ads \
Magnus Lilja8449f282009-07-01 01:07:55 +0200388 mx31pdk \
Magnus Liljad08e5ca2009-07-04 10:31:24 +0200389 mx31pdk_nand \
Guennadi Liakhovetski0c692672009-03-25 11:36:50 +0100390 qong \
391 smdk6400 \
Cyril Chemparathy5cc48f72010-06-07 14:13:36 -0400392 tnetv107x_evm \
Wolfgang Denk74f43042005-09-25 01:48:28 +0200393"
wdenk8ed96042005-01-09 23:16:25 +0000394
395#########################################################################
Steve Sakomanf56348a2010-06-17 21:50:01 -0700396## ARMV7 Systems
Dirk Behmef904cdb2009-01-27 18:19:12 +0100397#########################################################################
Dirk Behmef37586b2011-08-05 20:48:32 +0000398
399LIST_ARMV7="$(boards_by_cpu armv7)"
Dirk Behmef904cdb2009-01-27 18:19:12 +0100400
401#########################################################################
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200402## AT91 Systems
403#########################################################################
404
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +0000405LIST_at91="$(boards_by_soc at91)"
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200406
407#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000408## Xscale Systems
409#########################################################################
410
Marek Vasut7c957c02010-10-04 00:21:51 +0200411LIST_pxa="$(boards_by_cpu pxa)"
wdenk7ebf7442002-11-02 23:17:16 +0000412
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400413LIST_ixp="$(boards_by_cpu ixp)
Kim Phillipsfb565792007-08-10 15:34:48 -0500414 pdnb3 \
415 scpu \
416"
wdenk7ebf7442002-11-02 23:17:16 +0000417
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700418#########################################################################
419## ARM groups
420#########################################################################
wdenk2d5b5612003-10-14 19:43:55 +0000421
Dirk Behmef904cdb2009-01-27 18:19:12 +0100422LIST_arm=" \
423 ${LIST_SA} \
424 ${LIST_ARM7} \
425 ${LIST_ARM9} \
426 ${LIST_ARM10} \
427 ${LIST_ARM11} \
Steve Sakomanf56348a2010-06-17 21:50:01 -0700428 ${LIST_ARMV7} \
Dirk Behmef904cdb2009-01-27 18:19:12 +0100429 ${LIST_at91} \
430 ${LIST_pxa} \
431 ${LIST_ixp} \
wdenk8ed96042005-01-09 23:16:25 +0000432"
wdenk7ebf7442002-11-02 23:17:16 +0000433
wdenkc0218802003-03-27 12:09:35 +0000434#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200435## MIPS Systems (default = big endian)
wdenkc0218802003-03-27 12:09:35 +0000436#########################################################################
437
Kim Phillipsfb565792007-08-10 15:34:48 -0500438LIST_mips4kc=" \
439 incaip \
Vlad Lungu0764c162008-01-16 19:27:51 +0200440 qemu_mips \
Stefan Roese2a61eff2009-01-21 17:25:01 +0100441 vct_platinum \
442 vct_platinum_small \
443 vct_platinum_onenand \
444 vct_platinum_onenand_small \
445 vct_platinumavc \
446 vct_platinumavc_small \
447 vct_platinumavc_onenand \
448 vct_platinumavc_onenand_small \
449 vct_premium \
450 vct_premium_small \
451 vct_premium_onenand \
452 vct_premium_onenand_small \
Kim Phillipsfb565792007-08-10 15:34:48 -0500453"
wdenkc0218802003-03-27 12:09:35 +0000454
Daniel Schwierzeckb38a5692011-03-28 18:33:54 +0200455LIST_mips5kc=""
wdenk3e386912003-04-05 00:53:31 +0000456
Kim Phillipsfb565792007-08-10 15:34:48 -0500457LIST_au1xx0=" \
458 dbau1000 \
459 dbau1100 \
460 dbau1500 \
461 dbau1550 \
462 dbau1550_el \
463 gth2 \
464"
wdenk5da627a2003-10-09 20:09:04 +0000465
Kim Phillipsfb565792007-08-10 15:34:48 -0500466LIST_mips=" \
467 ${LIST_mips4kc} \
468 ${LIST_mips5kc} \
469 ${LIST_au1xx0} \
470"
wdenkc0218802003-03-27 12:09:35 +0000471
wdenk7a8e9bed2003-05-31 18:35:21 +0000472#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200473## MIPS Systems (little endian)
474#########################################################################
475
476LIST_mips4kc_el=""
477
478LIST_mips5kc_el=""
479
Kim Phillipsfb565792007-08-10 15:34:48 -0500480LIST_au1xx0_el=" \
481 dbau1550_el \
Shinya Kuribayashib09258c2007-10-27 15:00:25 +0900482 pb1000 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500483"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200484
Kim Phillipsfb565792007-08-10 15:34:48 -0500485LIST_mips_el=" \
486 ${LIST_mips4kc_el} \
487 ${LIST_mips5kc_el} \
488 ${LIST_au1xx0_el} \
489"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200490
491#########################################################################
Graeme Russfea25722011-04-13 19:43:28 +1000492## x86 Systems
wdenk7a8e9bed2003-05-31 18:35:21 +0000493#########################################################################
494
Graeme Russfea25722011-04-13 19:43:28 +1000495LIST_x86="$(boards_by_arch x86)"
wdenk7a8e9bed2003-05-31 18:35:21 +0000496
wdenkc935d3b2004-01-03 19:43:48 +0000497#########################################################################
wdenk5c952cf2004-10-10 21:27:30 +0000498## Nios-II Systems
499#########################################################################
500
Mike Frysinger4827d062011-06-26 23:00:19 -0400501LIST_nios2="$(boards_by_arch nios2)"
wdenk5c952cf2004-10-10 21:27:30 +0000502
503#########################################################################
wdenk857cad32004-07-10 23:48:41 +0000504## MicroBlaze Systems
505#########################################################################
506
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400507LIST_microblaze="$(boards_by_arch microblaze)"
wdenk857cad32004-07-10 23:48:41 +0000508
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500509#########################################################################
510## ColdFire Systems
511#########################################################################
512
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400513LIST_coldfire="$(boards_by_arch m68k)
Wolfgang Wegner9d79e572010-01-25 11:27:44 +0100514 astro_mcf5373l \
Kim Phillipsfb565792007-08-10 15:34:48 -0500515 cobra5272 \
516 EB+MCF-EV123 \
517 EB+MCF-EV123_internal \
TsiChungLiew1552af72008-01-14 17:43:33 -0600518 M52277EVB \
TsiChungLiew4a442d32007-08-16 19:23:50 -0500519 M5235EVB \
TsiChungLiewaa5f1f92008-01-14 17:23:08 -0600520 M5329AFEE \
521 M5373EVB \
TsiChung Liew05316f82008-08-11 13:41:49 +0000522 M54451EVB \
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500523 M54455EVB \
TsiChungLiew57a12722008-01-15 14:15:46 -0600524 M5475AFE \
525 M5485AFE \
Heiko Schocher9acb6262006-04-20 08:42:42 +0200526"
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500527
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200528#########################################################################
529## AVR32 Systems
530#########################################################################
531
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400532LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200533
Aubrey.Lief26a082007-03-09 13:40:56 +0800534#########################################################################
535## Blackfin Systems
536#########################################################################
537
Mike Frysinger36cf8cb2010-10-19 02:41:26 -0400538LIST_blackfin="$(boards_by_arch blackfin)"
Aubrey.Lief26a082007-03-09 13:40:56 +0800539
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100540#########################################################################
541## SH Systems
542#########################################################################
543
Nobuhiro Iwamatsue0f0e522010-10-20 01:22:25 +0900544LIST_sh2="$(boards_by_cpu sh2)"
Nobuhiro Iwamatsu3771c692010-10-20 01:28:29 +0900545LIST_sh3="$(boards_by_cpu sh3)"
Nobuhiro Iwamatsu03626be2010-10-20 01:35:28 +0900546LIST_sh4="$(boards_by_cpu sh4)"
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700547
Nobuhiro Iwamatsu03626be2010-10-20 01:35:28 +0900548LIST_sh="$(boards_by_arch sh)"
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100549
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100550#########################################################################
551## SPARC Systems
552#########################################################################
553
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400554LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000555
556#-----------------------------------------------------------------------
557
558build_target() {
559 target=$1
560
561 ${MAKE} distclean >/dev/null
Kim Phillipsd70d8cc2010-09-14 14:48:16 -0500562 ${MAKE} -s ${target}_config
Marian Balakowiczf9328632006-09-01 19:49:50 +0200563
564 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
565 | tee ${LOG_DIR}/$target.ERR
Peter Tyserf2352872009-12-06 23:58:28 -0600566
567 # Check for 'make' errors
568 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
569 RC=1
570 fi
571
Peter Tyser40a28f02009-09-21 12:04:32 -0500572 if [ -s ${LOG_DIR}/$target.ERR ] ; then
573 ERR_CNT=$((ERR_CNT + 1))
574 ERR_LIST="${ERR_LIST} $target"
575 else
576 rm ${LOG_DIR}/$target.ERR
577 fi
578
579 TOTAL_CNT=$((TOTAL_CNT + 1))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200580
Mike Frysinger208447f2008-01-28 05:56:19 -0500581 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200582 | tee -a ${LOG_DIR}/$target.MAKELOG
wdenk7ebf7442002-11-02 23:17:16 +0000583}
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400584build_targets() {
585 for t in "$@" ; do
586 # If a LIST_xxx var exists, use it. But avoid variable
587 # expansion in the eval when a board name contains certain
588 # characters that the shell interprets.
589 case ${t} in
590 *[-+=]*) list= ;;
591 *) list=$(eval echo '${LIST_'$t'}') ;;
592 esac
593 if [ -n "${list}" ] ; then
594 build_targets ${list}
595 else
596 build_target ${t}
597 fi
598 done
599}
wdenk7ebf7442002-11-02 23:17:16 +0000600
601#-----------------------------------------------------------------------
602
Peter Tyser40a28f02009-09-21 12:04:32 -0500603print_stats() {
604 echo ""
605 echo "--------------------- SUMMARY ----------------------------"
606 echo "Boards compiled: ${TOTAL_CNT}"
607 if [ ${ERR_CNT} -gt 0 ] ; then
608 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
609 fi
610 echo "----------------------------------------------------------"
Peter Tyserf2352872009-12-06 23:58:28 -0600611
612 exit $RC
Peter Tyser40a28f02009-09-21 12:04:32 -0500613}
wdenk7ebf7442002-11-02 23:17:16 +0000614
Peter Tyser40a28f02009-09-21 12:04:32 -0500615#-----------------------------------------------------------------------
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400616
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200617# Build target groups selected by options, plus any command line args
618set -- ${SELECTED} "$@"
619# run PowerPC by default
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400620[ $# = 0 ] && set -- powerpc
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400621build_targets "$@"