blob: e72a019cea27d79ca6a17a96cd325007f6a5cbd0 [file] [log] [blame]
Peter Tysera5a27b92009-12-06 23:58:28 -06001#!/bin/bash
Wolfgang Denk7b74fec2010-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.
Mike Frysingered639982011-04-21 22:01:43 +00005
6usage()
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.
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020026
Mike Frysingered639982011-04-21 22:01:43 +000027 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 Denk7b74fec2010-10-17 12:26:48 +020052
53# Option processing based on util-linux-2.13/getopt-parse.bash
54
Wolfgang Denk1136f692010-10-27 22:48:30 +020055# Note that we use `"$@"' to let each command-line parameter expand to a
Wolfgang Denk7b74fec2010-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 Frysingered639982011-04-21 22:01:43 +000062[ $? != 0 ] && usage 1
Wolfgang Denk7b74fec2010-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 Frysingered639982011-04-21 22:01:43 +0000107 -h|--help)
108 usage ;;
Wolfgang Denk7b74fec2010-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 Tyser2f887602010-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 Denk7b74fec2010-10-17 12:26:48 +0200132fi
133
134#########################################################################
135
Peter Tyser23240d22009-09-21 12:04:32 -0500136# Print statistics when we exit
137trap exit 1 2 3 15
138trap print_stats 0
139
Wolfgang Denkde5d6602008-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 Tyser8a07f9a2009-09-21 12:04:33 -0500145 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denkde5d6602008-12-09 00:39:08 +0100146else
147 JOBS=""
148fi
149
wdenkc0aa5c52003-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 Balakowiczd62379d2006-09-01 19:49:50 +0200157if [ "${MAKEALL_LOGDIR}" ] ; then
158 LOG_DIR=${MAKEALL_LOGDIR}
159else
160 LOG_DIR="LOG"
161fi
Stefan Roese42fbddd2006-09-07 11:51:23 +0200162
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200163if [ ! "${BUILD_DIR}" ] ; then
164 BUILD_DIR="."
165fi
166
Marian Balakowicz7f783cb2006-09-07 12:05:53 +0200167[ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
wdenk7ebf7442002-11-02 23:17:16 +0000168
169LIST=""
170
Peter Tyser23240d22009-09-21 12:04:32 -0500171# Keep track of the number of builds and errors
172ERR_CNT=0
173ERR_LIST=""
174TOTAL_CNT=0
Peter Tysera5a27b92009-12-06 23:58:28 -0600175RC=0
Peter Tyser23240d22009-09-21 12:04:32 -0500176
Mike Frysingerb374bdb2010-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ßmannbb96a8e2010-11-30 09:45:04 +0000188boards_by_soc() { boards_by_field 6 "$@" ; }
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400189
wdenk7ebf7442002-11-02 23:17:16 +0000190#########################################################################
wdenk359733b2003-03-31 17:27:09 +0000191## MPC5xx Systems
192#########################################################################
193
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400194LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk359733b2003-03-31 17:27:09 +0000195
196#########################################################################
wdenk21136db2003-07-16 21:53:01 +0000197## MPC5xxx Systems
198#########################################################################
199
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200200LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk21136db2003-07-16 21:53:01 +0000201
202#########################################################################
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200203## MPC512x Systems
204#########################################################################
205
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200206LIST_512x="$(boards_by_cpu mpc512x)"
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200207
208#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000209## MPC8xx Systems
210#########################################################################
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400211
Wolfgang Denk291ba1b2010-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 Denk291ba1b2010-10-06 09:05:45 +0200218LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000219
220#########################################################################
wdenk337f5652004-10-28 00:09:35 +0000221## MPC8220 Systems
222#########################################################################
223
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400224LIST_8220="$(boards_by_cpu mpc8220)"
wdenk337f5652004-10-28 00:09:35 +0000225
226#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000227## MPC824x Systems
228#########################################################################
229
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200230LIST_824x="$(boards_by_cpu mpc824x)"
wdenkdbae5042003-06-21 00:17:24 +0000231
wdenk7ebf7442002-11-02 23:17:16 +0000232#########################################################################
wdenk541a76d2003-05-03 15:50:43 +0000233## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000234#########################################################################
235
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200236LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000237
238#########################################################################
Eran Liberty9095d4a2005-07-28 10:08:46 -0500239## MPC83xx Systems (includes 8349, etc.)
240#########################################################################
241
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200242LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Liberty9095d4a2005-07-28 10:08:46 -0500243
244#########################################################################
wdenk9c53f402003-10-15 23:53:47 +0000245## MPC85xx Systems (includes 8540, 8560 etc.)
246#########################################################################
247
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200248LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk9c53f402003-10-15 23:53:47 +0000249
250#########################################################################
Jon Loeliger5fe34492007-05-23 14:09:46 -0500251## MPC86xx Systems
252#########################################################################
253
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200254LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger5fe34492007-05-23 14:09:46 -0500255
256#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000257## 74xx/7xx Systems
258#########################################################################
259
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200260LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000261
Wolfgang Denk66549bd2008-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 Roese88fbf932010-04-15 16:07:28 +0200272LIST_powerpc=" \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500273 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD0912d312007-11-25 22:39:25 +0100274 ${LIST_512x} \
Kim Phillips8c0c8932007-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 Denk291ba1b2010-10-06 09:05:45 +0200284 ${LIST_74xx_7xx}\
Kim Phillips8c0c8932007-08-10 15:34:48 -0500285"
wdenk7ebf7442002-11-02 23:17:16 +0000286
Stefan Roese88fbf932010-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 Frysingerb374bdb2010-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 Phillips8c0c8932007-08-10 15:34:48 -0500303LIST_ARM7=" \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500304 ep7312 \
305 evb4510 \
306 impa7 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500307 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 \
Prafulla Wadaskarf22f8d62010-11-29 17:01:27 +0530318 aspenite \
Sekhar Nori5ffad632009-11-12 11:09:25 -0500319 da830evm \
Sudhakar Rajashekhara68921812010-06-10 15:18:15 +0530320 da850evm \
Albert Aribaudacc41ff2010-06-17 19:38:21 +0530321 edminiv2 \
Siddarth Gore11b10b02010-03-18 20:25:40 +0530322 guruplug \
Ilya Yanok016b7022009-08-11 02:32:09 +0400323 imx27lite \
Matthias Weisserdcf0dca2010-08-09 13:31:51 +0200324 jadecpu \
Holger Brunck1f974e92011-06-16 18:11:15 +0530325 km_kirkwood \
Heiko Schocherc8f51122010-03-05 07:36:33 +0100326 magnesium \
Prafulla Wadaskar60a04f92009-07-16 20:58:01 +0530327 mv88f6281gtw_ge \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500328 mx1ads \
Jean-Christophe PLAGNIOL-VILLARD871e4812009-07-05 01:06:06 +0200329 nhk8815 \
330 nhk8815_onenand \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500331 omap1510inn \
332 omap1610h2 \
333 omap1610inn \
David Brownell161f4112008-01-18 12:45:45 -0800334 omap5912osk \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500335 omap730p2 \
Simon Kagstrom258c3302009-09-22 04:01:01 +0530336 openrd_base \
Clint Adams5f56a672011-05-06 22:06:47 +0530337 openrd_client \
338 openrd_ultimate \
Valentin Longchamp2ec63ad2011-06-16 18:11:15 +0530339 portl2 \
Prafulla Wadaskar4aab4ae2009-07-16 21:02:24 +0530340 rd6281a \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500341 scb9328 \
Prafulla Wadaskar62634642009-07-16 20:58:00 +0530342 sheevaplug \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500343 smdk2410 \
Vipin KUMARb0ea0892010-01-15 19:15:50 +0530344 spear300 \
Vipin KUMAR6e2998f2010-01-15 19:15:52 +0530345 spear310 \
Vipin KUMARcc0da712010-01-15 19:15:53 +0530346 spear320 \
Vipin KUMAR7cc4c462010-01-15 19:15:48 +0530347 spear600 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500348 VCMA9 \
349 versatile \
350 versatileab \
351 versatilepb \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500352 davinci_dvevm \
353 davinci_schmoogie \
Hugo Villeneuve4f3f6712008-05-21 13:58:41 -0400354 davinci_sffsdr \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500355 davinci_sonata \
David Brownell7a846182009-05-15 23:48:37 +0200356 davinci_dm355evm \
Sandeep Paulraj2e584ec2009-10-10 13:37:10 -0400357 davinci_dm355leopard \
Sandeep Paulraj7c82bdc2010-02-17 21:09:21 -0500358 davinci_dm365evm \
Sandeep Paulraj1830bba2009-10-10 12:00:47 -0400359 davinci_dm6467evm \
wdenk7eaacc52003-08-29 22:00:43 +0000360"
wdenk7ebf7442002-11-02 23:17:16 +0000361
362#########################################################################
wdenkf8062712005-01-09 23:16:25 +0000363## ARM11 Systems
364#########################################################################
Guennadi Liakhovetskib093d8d2009-03-25 11:36:50 +0100365LIST_ARM11=" \
Guennadi Liakhovetskib093d8d2009-03-25 11:36:50 +0100366 omap2420h4 \
367 apollon \
368 imx31_litekit \
369 imx31_phycore \
370 imx31_phycore_eet \
371 mx31ads \
Magnus Lilja6eeb6f72009-07-01 01:07:55 +0200372 mx31pdk \
Magnus Lilja24f8b412009-07-04 10:31:24 +0200373 mx31pdk_nand \
Guennadi Liakhovetskib093d8d2009-03-25 11:36:50 +0100374 qong \
375 smdk6400 \
Cyril Chemparathy3d138062010-06-07 14:13:36 -0400376 tnetv107x_evm \
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200377"
wdenkf8062712005-01-09 23:16:25 +0000378
379#########################################################################
Steve Sakoman6329a8f2010-06-17 21:50:01 -0700380## ARMV7 Systems
Dirk Behme2781f802009-01-27 18:19:12 +0100381#########################################################################
Dirk Behme1b787e32011-08-05 20:48:32 +0000382
383LIST_ARMV7="$(boards_by_cpu armv7)"
Dirk Behme2781f802009-01-27 18:19:12 +0100384
385#########################################################################
Jean-Christophe PLAGNIOL-VILLARD9a88fd12008-05-24 12:47:46 +0200386## AT91 Systems
387#########################################################################
388
Thomas Petazzonia5e85762011-08-04 11:08:50 +0000389LIST_at91="$(boards_by_soc at91)"
Jean-Christophe PLAGNIOL-VILLARD9a88fd12008-05-24 12:47:46 +0200390
391#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000392## Xscale Systems
393#########################################################################
394
Marek Vasut4ccaaef2010-10-04 00:21:51 +0200395LIST_pxa="$(boards_by_cpu pxa)"
wdenk7ebf7442002-11-02 23:17:16 +0000396
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400397LIST_ixp="$(boards_by_cpu ixp)
Kim Phillips8c0c8932007-08-10 15:34:48 -0500398 pdnb3 \
399 scpu \
400"
wdenk7ebf7442002-11-02 23:17:16 +0000401
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700402#########################################################################
403## ARM groups
404#########################################################################
wdenkbd1575f2003-10-14 19:43:55 +0000405
Dirk Behme2781f802009-01-27 18:19:12 +0100406LIST_arm=" \
407 ${LIST_SA} \
408 ${LIST_ARM7} \
409 ${LIST_ARM9} \
410 ${LIST_ARM10} \
411 ${LIST_ARM11} \
Steve Sakoman6329a8f2010-06-17 21:50:01 -0700412 ${LIST_ARMV7} \
Dirk Behme2781f802009-01-27 18:19:12 +0100413 ${LIST_at91} \
414 ${LIST_pxa} \
415 ${LIST_ixp} \
wdenkf8062712005-01-09 23:16:25 +0000416"
wdenk7ebf7442002-11-02 23:17:16 +0000417
wdenkbb1b8262003-03-27 12:09:35 +0000418#########################################################################
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200419## MIPS Systems (default = big endian)
wdenkbb1b8262003-03-27 12:09:35 +0000420#########################################################################
421
Kim Phillips8c0c8932007-08-10 15:34:48 -0500422LIST_mips4kc=" \
423 incaip \
Vlad Lungu635e76c2008-01-16 19:27:51 +0200424 qemu_mips \
Stefan Roeseee7a6ba2009-01-21 17:25:01 +0100425 vct_platinum \
426 vct_platinum_small \
427 vct_platinum_onenand \
428 vct_platinum_onenand_small \
429 vct_platinumavc \
430 vct_platinumavc_small \
431 vct_platinumavc_onenand \
432 vct_platinumavc_onenand_small \
433 vct_premium \
434 vct_premium_small \
435 vct_premium_onenand \
436 vct_premium_onenand_small \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500437"
wdenkbb1b8262003-03-27 12:09:35 +0000438
Daniel Schwierzeck95a3e6f2011-03-28 18:33:54 +0200439LIST_mips5kc=""
wdenkb02744a2003-04-05 00:53:31 +0000440
Kim Phillips8c0c8932007-08-10 15:34:48 -0500441LIST_au1xx0=" \
442 dbau1000 \
443 dbau1100 \
444 dbau1500 \
445 dbau1550 \
446 dbau1550_el \
447 gth2 \
448"
wdenk9b7f3842003-10-09 20:09:04 +0000449
Kim Phillips8c0c8932007-08-10 15:34:48 -0500450LIST_mips=" \
451 ${LIST_mips4kc} \
452 ${LIST_mips5kc} \
453 ${LIST_au1xx0} \
454"
wdenkbb1b8262003-03-27 12:09:35 +0000455
wdenkabda5ca2003-05-31 18:35:21 +0000456#########################################################################
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200457## MIPS Systems (little endian)
458#########################################################################
459
460LIST_mips4kc_el=""
461
462LIST_mips5kc_el=""
463
Kim Phillips8c0c8932007-08-10 15:34:48 -0500464LIST_au1xx0_el=" \
465 dbau1550_el \
Shinya Kuribayashi2437cfb2007-10-27 15:00:25 +0900466 pb1000 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500467"
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200468
Kim Phillips8c0c8932007-08-10 15:34:48 -0500469LIST_mips_el=" \
470 ${LIST_mips4kc_el} \
471 ${LIST_mips5kc_el} \
472 ${LIST_au1xx0_el} \
473"
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200474
475#########################################################################
Graeme Russcbfce1d2011-04-13 19:43:28 +1000476## x86 Systems
wdenkabda5ca2003-05-31 18:35:21 +0000477#########################################################################
478
Graeme Russcbfce1d2011-04-13 19:43:28 +1000479LIST_x86="$(boards_by_arch x86)"
wdenkabda5ca2003-05-31 18:35:21 +0000480
wdenk3be717f2004-01-03 19:43:48 +0000481#########################################################################
wdenkef3386f2004-10-10 21:27:30 +0000482## Nios-II Systems
483#########################################################################
484
Mike Frysingerda6aa7c2011-06-26 23:00:19 -0400485LIST_nios2="$(boards_by_arch nios2)"
wdenkef3386f2004-10-10 21:27:30 +0000486
487#########################################################################
wdenk20a61222004-07-10 23:48:41 +0000488## MicroBlaze Systems
489#########################################################################
490
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400491LIST_microblaze="$(boards_by_arch microblaze)"
wdenk20a61222004-07-10 23:48:41 +0000492
Zachary P. Landau1c3c0962006-01-26 17:38:46 -0500493#########################################################################
494## ColdFire Systems
495#########################################################################
496
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400497LIST_coldfire="$(boards_by_arch m68k)
Wolfgang Wegner406471c2010-01-25 11:27:44 +0100498 astro_mcf5373l \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500499 cobra5272 \
500 EB+MCF-EV123 \
501 EB+MCF-EV123_internal \
TsiChungLiew99b037a2008-01-14 17:43:33 -0600502 M52277EVB \
TsiChungLiewb859ef12007-08-16 19:23:50 -0500503 M5235EVB \
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600504 M5329AFEE \
505 M5373EVB \
TsiChung Liew3cdc00a2008-08-11 13:41:49 +0000506 M54451EVB \
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -0500507 M54455EVB \
TsiChungLiew8cb946d2008-01-15 14:15:46 -0600508 M5475AFE \
509 M5485AFE \
Heiko Schocherac1956e2006-04-20 08:42:42 +0200510"
Zachary P. Landau1c3c0962006-01-26 17:38:46 -0500511
Wolfgang Denk994ad962006-10-24 14:42:37 +0200512#########################################################################
513## AVR32 Systems
514#########################################################################
515
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400516LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk994ad962006-10-24 14:42:37 +0200517
Aubrey.Li450c23e2007-03-09 13:40:56 +0800518#########################################################################
519## Blackfin Systems
520#########################################################################
521
Mike Frysingerdd18ab62010-10-19 02:41:26 -0400522LIST_blackfin="$(boards_by_arch blackfin)"
Aubrey.Li450c23e2007-03-09 13:40:56 +0800523
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100524#########################################################################
525## SH Systems
526#########################################################################
527
Nobuhiro Iwamatsu0c4bcc72010-10-20 01:22:25 +0900528LIST_sh2="$(boards_by_cpu sh2)"
Nobuhiro Iwamatsu06ea8cf2010-10-20 01:28:29 +0900529LIST_sh3="$(boards_by_cpu sh3)"
Nobuhiro Iwamatsuc4c62342010-10-20 01:35:28 +0900530LIST_sh4="$(boards_by_cpu sh4)"
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100531
Nobuhiro Iwamatsuc4c62342010-10-20 01:35:28 +0900532LIST_sh="$(boards_by_arch sh)"
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100533
Daniel Hellstrom9d7c6b22008-03-28 09:47:00 +0100534#########################################################################
535## SPARC Systems
536#########################################################################
537
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400538LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000539
540#-----------------------------------------------------------------------
541
542build_target() {
543 target=$1
544
545 ${MAKE} distclean >/dev/null
Kim Phillips5ac3c122010-09-14 14:48:16 -0500546 ${MAKE} -s ${target}_config
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200547
548 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
549 | tee ${LOG_DIR}/$target.ERR
Peter Tysera5a27b92009-12-06 23:58:28 -0600550
551 # Check for 'make' errors
552 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
553 RC=1
554 fi
555
Peter Tyser23240d22009-09-21 12:04:32 -0500556 if [ -s ${LOG_DIR}/$target.ERR ] ; then
557 ERR_CNT=$((ERR_CNT + 1))
558 ERR_LIST="${ERR_LIST} $target"
559 else
560 rm ${LOG_DIR}/$target.ERR
561 fi
562
563 TOTAL_CNT=$((TOTAL_CNT + 1))
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200564
Mike Frysinger119432a2008-01-28 05:56:19 -0500565 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200566 | tee -a ${LOG_DIR}/$target.MAKELOG
wdenk7ebf7442002-11-02 23:17:16 +0000567}
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400568build_targets() {
569 for t in "$@" ; do
570 # If a LIST_xxx var exists, use it. But avoid variable
571 # expansion in the eval when a board name contains certain
572 # characters that the shell interprets.
573 case ${t} in
574 *[-+=]*) list= ;;
575 *) list=$(eval echo '${LIST_'$t'}') ;;
576 esac
577 if [ -n "${list}" ] ; then
578 build_targets ${list}
579 else
580 build_target ${t}
581 fi
582 done
583}
wdenk7ebf7442002-11-02 23:17:16 +0000584
585#-----------------------------------------------------------------------
586
Peter Tyser23240d22009-09-21 12:04:32 -0500587print_stats() {
588 echo ""
589 echo "--------------------- SUMMARY ----------------------------"
590 echo "Boards compiled: ${TOTAL_CNT}"
591 if [ ${ERR_CNT} -gt 0 ] ; then
592 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
593 fi
594 echo "----------------------------------------------------------"
Peter Tysera5a27b92009-12-06 23:58:28 -0600595
596 exit $RC
Peter Tyser23240d22009-09-21 12:04:32 -0500597}
wdenk7ebf7442002-11-02 23:17:16 +0000598
Peter Tyser23240d22009-09-21 12:04:32 -0500599#-----------------------------------------------------------------------
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400600
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200601# Build target groups selected by options, plus any command line args
602set -- ${SELECTED} "$@"
603# run PowerPC by default
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400604[ $# = 0 ] && set -- powerpc
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400605build_targets "$@"