blob: fa0121ced26a4a6a811bbe6e2b3d41ac4152a55a [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
Marek Vasut7f79c6f2011-12-02 21:32:03 +000019 -l, --list List all targets to be built
Mike Frysingerd8e392d2011-04-21 22:01:43 +000020 -h, --help This help output
21
22 Selections by these options are logically ANDed; if the same option
23 is used repeatedly, such selections are ORed. So "-v FOO -v BAR"
24 will select all configurations where the vendor is either FOO or
25 BAR. Any additional arguments specified on the command line are
26 always build additionally. See the boards.cfg file for more info.
27
28 If no boards are specified, then the default is "powerpc".
29
30 Environment variables:
31 BUILD_NCPUS number of parallel make jobs (default: auto)
32 CROSS_COMPILE cross-compiler toolchain prefix (default: "")
33 MAKEALL_LOGDIR output all logs to here (default: ./LOG/)
34 BUILD_DIR output build directory (default: ./)
35
36 Examples:
37 - build all Power Architecture boards:
38 MAKEALL -a powerpc
39 MAKEALL --arch powerpc
40 MAKEALL powerpc
41 - build all PowerPC boards manufactured by vendor "esd":
42 MAKEALL -a powerpc -v esd
43 - build all PowerPC boards manufactured either by "keymile" or "siemens":
44 MAKEALL -a powerpc -v keymile -v siemens
45 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
46 MAKEALL -c mpc83xx -v freescale 4xx
47 EOF
48 exit ${ret}
49}
50
Marek Vasut7f79c6f2011-12-02 21:32:03 +000051SHORT_OPTS="ha:c:v:s:l"
52LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list"
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020053
54# Option processing based on util-linux-2.13/getopt-parse.bash
55
Wolfgang Denk071bc922010-10-27 22:48:30 +020056# Note that we use `"$@"' to let each command-line parameter expand to a
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020057# separate word. The quotes around `$@' are essential!
58# We need TEMP as the `eval set --' would nuke the return value of
59# getopt.
60TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
61 -n 'MAKEALL' -- "$@"`
62
Mike Frysingerd8e392d2011-04-21 22:01:43 +000063[ $? != 0 ] && usage 1
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020064
65# Note the quotes around `$TEMP': they are essential!
66eval set -- "$TEMP"
67
68SELECTED=''
Marek Vasut7f79c6f2011-12-02 21:32:03 +000069ONLY_LIST=''
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020070
71while true ; do
72 case "$1" in
73 -a|--arch)
74 # echo "Option ARCH: argument \`$2'"
75 if [ "$opt_a" ] ; then
76 opt_a="${opt_a%)} || \$2 == \"$2\")"
77 else
78 opt_a="(\$2 == \"$2\")"
79 fi
80 SELECTED='y'
81 shift 2 ;;
82 -c|--cpu)
83 # echo "Option CPU: argument \`$2'"
84 if [ "$opt_c" ] ; then
85 opt_c="${opt_c%)} || \$3 == \"$2\")"
86 else
87 opt_c="(\$3 == \"$2\")"
88 fi
89 SELECTED='y'
90 shift 2 ;;
91 -s|--soc)
92 # echo "Option SoC: argument \`$2'"
93 if [ "$opt_s" ] ; then
94 opt_s="${opt_s%)} || \$6 == \"$2\")"
95 else
96 opt_s="(\$6 == \"$2\")"
97 fi
98 SELECTED='y'
99 shift 2 ;;
100 -v|--vendor)
101 # echo "Option VENDOR: argument \`$2'"
102 if [ "$opt_v" ] ; then
103 opt_v="${opt_v%)} || \$5 == \"$2\")"
104 else
105 opt_v="(\$5 == \"$2\")"
106 fi
107 SELECTED='y'
108 shift 2 ;;
Marek Vasut7f79c6f2011-12-02 21:32:03 +0000109 -l|--list)
110 ONLY_LIST='y'
111 shift ;;
Mike Frysingerd8e392d2011-04-21 22:01:43 +0000112 -h|--help)
113 usage ;;
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200114 --)
115 shift ; break ;;
116 *)
117 echo "Internal error!" >&2 ; exit 1 ;;
118 esac
119done
120# echo "Remaining arguments:"
121# for arg do echo '--> '"\`$arg'" ; done
122
123FILTER="\$1 !~ /^#/"
124[ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
125[ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
126[ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
127[ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
128
129if [ "$SELECTED" ] ; then
130 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
Peter Tysercd57b0b2010-10-29 17:59:06 -0500131
132 # Make sure some boards from boards.cfg are actually found
133 if [ -z "$SELECTED" ] ; then
134 echo "Error: No boards selected, invalid arguments"
135 exit 1
136 fi
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200137fi
138
139#########################################################################
140
Peter Tyser40a28f02009-09-21 12:04:32 -0500141# Print statistics when we exit
142trap exit 1 2 3 15
143trap print_stats 0
144
Wolfgang Denk7fa6a2f2008-12-09 00:39:08 +0100145# Determine number of CPU cores if no default was set
146: ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
147
148if [ "$BUILD_NCPUS" -gt 1 ]
149then
Peter Tyser55f786d2009-09-21 12:04:33 -0500150 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denk7fa6a2f2008-12-09 00:39:08 +0100151else
152 JOBS=""
153fi
154
wdenka8c7c702003-12-06 19:49:23 +0000155
wdenk7ebf7442002-11-02 23:17:16 +0000156if [ "${CROSS_COMPILE}" ] ; then
157 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
158else
159 MAKE=make
160fi
161
Marian Balakowiczf9328632006-09-01 19:49:50 +0200162if [ "${MAKEALL_LOGDIR}" ] ; then
163 LOG_DIR=${MAKEALL_LOGDIR}
164else
165 LOG_DIR="LOG"
166fi
Stefan Roese887e2ec2006-09-07 11:51:23 +0200167
Marian Balakowiczf9328632006-09-01 19:49:50 +0200168if [ ! "${BUILD_DIR}" ] ; then
169 BUILD_DIR="."
170fi
171
Marian Balakowicz4f0645e2006-09-07 12:05:53 +0200172[ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1
wdenk7ebf7442002-11-02 23:17:16 +0000173
174LIST=""
175
Peter Tyser40a28f02009-09-21 12:04:32 -0500176# Keep track of the number of builds and errors
177ERR_CNT=0
178ERR_LIST=""
179TOTAL_CNT=0
Peter Tyserf2352872009-12-06 23:58:28 -0600180RC=0
Peter Tyser40a28f02009-09-21 12:04:32 -0500181
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400182# Helper funcs for parsing boards.cfg
183boards_by_field()
184{
185 awk \
186 -v field="$1" \
187 -v select="$2" \
188 '($1 !~ /^#/ && $field == select) { print $1 }' \
189 boards.cfg
190}
191boards_by_arch() { boards_by_field 2 "$@" ; }
192boards_by_cpu() { boards_by_field 3 "$@" ; }
Andreas Bießmann0a41eda2010-11-30 09:45:04 +0000193boards_by_soc() { boards_by_field 6 "$@" ; }
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400194
wdenk7ebf7442002-11-02 23:17:16 +0000195#########################################################################
wdenk0db5bca2003-03-31 17:27:09 +0000196## MPC5xx Systems
197#########################################################################
198
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400199LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk0db5bca2003-03-31 17:27:09 +0000200
201#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000202## MPC5xxx Systems
203#########################################################################
204
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200205LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk945af8d2003-07-16 21:53:01 +0000206
207#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200208## MPC512x Systems
209#########################################################################
210
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200211LIST_512x="$(boards_by_cpu mpc512x)"
wdenk7ebf7442002-11-02 23:17:16 +0000212
213#########################################################################
214## MPC8xx Systems
215#########################################################################
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400216
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200217LIST_8xx="$(boards_by_cpu mpc8xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000218
219#########################################################################
220## PPC4xx Systems
221#########################################################################
222
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200223LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000224
225#########################################################################
wdenk983fda82004-10-28 00:09:35 +0000226## MPC8220 Systems
227#########################################################################
228
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400229LIST_8220="$(boards_by_cpu mpc8220)"
wdenk983fda82004-10-28 00:09:35 +0000230
231#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000232## MPC824x Systems
233#########################################################################
234
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200235LIST_824x="$(boards_by_cpu mpc824x)"
wdenk592c5ca2003-06-21 00:17:24 +0000236
wdenk7ebf7442002-11-02 23:17:16 +0000237#########################################################################
wdenk7aa78612003-05-03 15:50:43 +0000238## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000239#########################################################################
240
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200241LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000242
243#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -0500244## MPC83xx Systems (includes 8349, etc.)
245#########################################################################
246
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200247LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Libertyf046ccd2005-07-28 10:08:46 -0500248
249#########################################################################
wdenk42d1f032003-10-15 23:53:47 +0000250## MPC85xx Systems (includes 8540, 8560 etc.)
251#########################################################################
252
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200253LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk42d1f032003-10-15 23:53:47 +0000254
255#########################################################################
Jon Loeliger822d5532007-05-23 14:09:46 -0500256## MPC86xx Systems
257#########################################################################
258
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200259LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger822d5532007-05-23 14:09:46 -0500260
261#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000262## 74xx/7xx Systems
263#########################################################################
264
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200265LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000266
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700267#########################################################################
268## PowerPC groups
269#########################################################################
270
271LIST_TSEC=" \
272 ${LIST_83xx} \
273 ${LIST_85xx} \
274 ${LIST_86xx} \
275"
276
Stefan Roesea47a12b2010-04-15 16:07:28 +0200277LIST_powerpc=" \
Kim Phillipsfb565792007-08-10 15:34:48 -0500278 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD3deca9d2007-11-25 22:39:25 +0100279 ${LIST_512x} \
Kim Phillipsfb565792007-08-10 15:34:48 -0500280 ${LIST_5xxx} \
281 ${LIST_8xx} \
282 ${LIST_8220} \
283 ${LIST_824x} \
284 ${LIST_8260} \
285 ${LIST_83xx} \
286 ${LIST_85xx} \
287 ${LIST_86xx} \
288 ${LIST_4xx} \
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200289 ${LIST_74xx_7xx}\
Kim Phillipsfb565792007-08-10 15:34:48 -0500290"
wdenk7ebf7442002-11-02 23:17:16 +0000291
Stefan Roesea47a12b2010-04-15 16:07:28 +0200292# Alias "ppc" -> "powerpc" to not break compatibility with older scripts
293# still using "ppc" instead of "powerpc"
294LIST_ppc=" \
295 ${LIST_powerpc} \
296"
297
wdenk7ebf7442002-11-02 23:17:16 +0000298#########################################################################
299## StrongARM Systems
300#########################################################################
301
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400302LIST_SA="$(boards_by_cpu sa1100)"
wdenk7ebf7442002-11-02 23:17:16 +0000303
304#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000305## ARM9 Systems
306#########################################################################
307
Wolfgang Denk6a8760d2011-09-08 05:01:24 +0000308LIST_ARM9="$(boards_by_cpu arm920t) \
309 $(boards_by_cpu arm926ejs) \
310 $(boards_by_cpu arm925t) \
Kim Phillipsfb565792007-08-10 15:34:48 -0500311 omap1610h2 \
312 omap1610inn \
313 omap730p2 \
wdenk6f213472003-08-29 22:00:43 +0000314"
wdenk7ebf7442002-11-02 23:17:16 +0000315
316#########################################################################
wdenk8ed96042005-01-09 23:16:25 +0000317## ARM11 Systems
318#########################################################################
Wolfgang Denk6a8760d2011-09-08 05:01:24 +0000319LIST_ARM11="$(boards_by_cpu arm1136) \
Guennadi Liakhovetski0c692672009-03-25 11:36:50 +0100320 apollon \
Guennadi Liakhovetski0c692672009-03-25 11:36:50 +0100321 imx31_phycore \
322 imx31_phycore_eet \
Magnus Lilja8449f282009-07-01 01:07:55 +0200323 mx31pdk \
Guennadi Liakhovetski0c692672009-03-25 11:36:50 +0100324 smdk6400 \
Wolfgang Denk74f43042005-09-25 01:48:28 +0200325"
wdenk8ed96042005-01-09 23:16:25 +0000326
327#########################################################################
Steve Sakomanf56348a2010-06-17 21:50:01 -0700328## ARMV7 Systems
Dirk Behmef904cdb2009-01-27 18:19:12 +0100329#########################################################################
Dirk Behmef37586b2011-08-05 20:48:32 +0000330
331LIST_ARMV7="$(boards_by_cpu armv7)"
Dirk Behmef904cdb2009-01-27 18:19:12 +0100332
333#########################################################################
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200334## AT91 Systems
335#########################################################################
336
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +0000337LIST_at91="$(boards_by_soc at91)"
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200338
339#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000340## Xscale Systems
341#########################################################################
342
Marek Vasut7c957c02010-10-04 00:21:51 +0200343LIST_pxa="$(boards_by_cpu pxa)"
wdenk7ebf7442002-11-02 23:17:16 +0000344
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400345LIST_ixp="$(boards_by_cpu ixp)
Kim Phillipsfb565792007-08-10 15:34:48 -0500346 pdnb3 \
347 scpu \
348"
wdenk7ebf7442002-11-02 23:17:16 +0000349
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700350#########################################################################
351## ARM groups
352#########################################################################
wdenk2d5b5612003-10-14 19:43:55 +0000353
Dirk Behmef904cdb2009-01-27 18:19:12 +0100354LIST_arm=" \
355 ${LIST_SA} \
Dirk Behmef904cdb2009-01-27 18:19:12 +0100356 ${LIST_ARM9} \
357 ${LIST_ARM10} \
358 ${LIST_ARM11} \
Steve Sakomanf56348a2010-06-17 21:50:01 -0700359 ${LIST_ARMV7} \
Dirk Behmef904cdb2009-01-27 18:19:12 +0100360 ${LIST_at91} \
361 ${LIST_pxa} \
362 ${LIST_ixp} \
wdenk8ed96042005-01-09 23:16:25 +0000363"
wdenk7ebf7442002-11-02 23:17:16 +0000364
wdenkc0218802003-03-27 12:09:35 +0000365#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200366## MIPS Systems (default = big endian)
wdenkc0218802003-03-27 12:09:35 +0000367#########################################################################
368
Kim Phillipsfb565792007-08-10 15:34:48 -0500369LIST_mips4kc=" \
370 incaip \
Vlad Lungu0764c162008-01-16 19:27:51 +0200371 qemu_mips \
Stefan Roese2a61eff2009-01-21 17:25:01 +0100372 vct_platinum \
373 vct_platinum_small \
374 vct_platinum_onenand \
375 vct_platinum_onenand_small \
376 vct_platinumavc \
377 vct_platinumavc_small \
378 vct_platinumavc_onenand \
379 vct_platinumavc_onenand_small \
380 vct_premium \
381 vct_premium_small \
382 vct_premium_onenand \
383 vct_premium_onenand_small \
Kim Phillipsfb565792007-08-10 15:34:48 -0500384"
wdenkc0218802003-03-27 12:09:35 +0000385
Daniel Schwierzeckb38a5692011-03-28 18:33:54 +0200386LIST_mips5kc=""
wdenk3e386912003-04-05 00:53:31 +0000387
Kim Phillipsfb565792007-08-10 15:34:48 -0500388LIST_au1xx0=" \
389 dbau1000 \
390 dbau1100 \
391 dbau1500 \
392 dbau1550 \
393 dbau1550_el \
394 gth2 \
395"
wdenk5da627a2003-10-09 20:09:04 +0000396
Kim Phillipsfb565792007-08-10 15:34:48 -0500397LIST_mips=" \
398 ${LIST_mips4kc} \
399 ${LIST_mips5kc} \
400 ${LIST_au1xx0} \
401"
wdenkc0218802003-03-27 12:09:35 +0000402
wdenk7a8e9bed2003-05-31 18:35:21 +0000403#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200404## MIPS Systems (little endian)
405#########################################################################
406
Xiangfu Liu3c945542011-10-12 12:24:06 +0800407LIST_mips4kc_el=" \
408 qi_lb60 \
409"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200410
411LIST_mips5kc_el=""
412
Kim Phillipsfb565792007-08-10 15:34:48 -0500413LIST_au1xx0_el=" \
414 dbau1550_el \
Shinya Kuribayashib09258c2007-10-27 15:00:25 +0900415 pb1000 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500416"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200417
Kim Phillipsfb565792007-08-10 15:34:48 -0500418LIST_mips_el=" \
419 ${LIST_mips4kc_el} \
420 ${LIST_mips5kc_el} \
421 ${LIST_au1xx0_el} \
422"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200423
424#########################################################################
Graeme Russfea25722011-04-13 19:43:28 +1000425## x86 Systems
wdenk7a8e9bed2003-05-31 18:35:21 +0000426#########################################################################
427
Graeme Russfea25722011-04-13 19:43:28 +1000428LIST_x86="$(boards_by_arch x86)"
wdenk7a8e9bed2003-05-31 18:35:21 +0000429
wdenkc935d3b2004-01-03 19:43:48 +0000430#########################################################################
wdenk5c952cf2004-10-10 21:27:30 +0000431## Nios-II Systems
432#########################################################################
433
Mike Frysinger4827d062011-06-26 23:00:19 -0400434LIST_nios2="$(boards_by_arch nios2)"
wdenk5c952cf2004-10-10 21:27:30 +0000435
436#########################################################################
wdenk857cad32004-07-10 23:48:41 +0000437## MicroBlaze Systems
438#########################################################################
439
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400440LIST_microblaze="$(boards_by_arch microblaze)"
wdenk857cad32004-07-10 23:48:41 +0000441
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500442#########################################################################
443## ColdFire Systems
444#########################################################################
445
Mike Frysingerc13f47b2011-09-25 19:27:19 +0000446LIST_m68k="$(boards_by_arch m68k)
Kim Phillipsfb565792007-08-10 15:34:48 -0500447 EB+MCF-EV123 \
448 EB+MCF-EV123_internal \
TsiChungLiew1552af72008-01-14 17:43:33 -0600449 M52277EVB \
TsiChungLiew4a442d32007-08-16 19:23:50 -0500450 M5235EVB \
TsiChung Liew05316f82008-08-11 13:41:49 +0000451 M54451EVB \
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500452 M54455EVB \
Heiko Schocher9acb6262006-04-20 08:42:42 +0200453"
Mike Frysingerc13f47b2011-09-25 19:27:19 +0000454LIST_coldfire=${LIST_m68k}
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500455
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200456#########################################################################
457## AVR32 Systems
458#########################################################################
459
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400460LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200461
Aubrey.Lief26a082007-03-09 13:40:56 +0800462#########################################################################
463## Blackfin Systems
464#########################################################################
465
Mike Frysinger36cf8cb2010-10-19 02:41:26 -0400466LIST_blackfin="$(boards_by_arch blackfin)"
Aubrey.Lief26a082007-03-09 13:40:56 +0800467
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100468#########################################################################
469## SH Systems
470#########################################################################
471
Nobuhiro Iwamatsue0f0e522010-10-20 01:22:25 +0900472LIST_sh2="$(boards_by_cpu sh2)"
Nobuhiro Iwamatsu3771c692010-10-20 01:28:29 +0900473LIST_sh3="$(boards_by_cpu sh3)"
Nobuhiro Iwamatsu03626be2010-10-20 01:35:28 +0900474LIST_sh4="$(boards_by_cpu sh4)"
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700475
Nobuhiro Iwamatsu03626be2010-10-20 01:35:28 +0900476LIST_sh="$(boards_by_arch sh)"
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100477
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100478#########################################################################
479## SPARC Systems
480#########################################################################
481
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400482LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000483
Macpaul Lin5f1719c2011-10-19 20:41:10 +0000484#########################################################################
485## NDS32 Systems
486#########################################################################
487
488LIST_nds32="$(boards_by_arch nds32)"
489
wdenk7ebf7442002-11-02 23:17:16 +0000490#-----------------------------------------------------------------------
491
492build_target() {
493 target=$1
494
Marek Vasut7f79c6f2011-12-02 21:32:03 +0000495 if [ "$ONLY_LIST" == 'y' ] ; then
496 echo "$target"
497 return
498 fi
499
wdenk7ebf7442002-11-02 23:17:16 +0000500 ${MAKE} distclean >/dev/null
Kim Phillipsd70d8cc2010-09-14 14:48:16 -0500501 ${MAKE} -s ${target}_config
Marian Balakowiczf9328632006-09-01 19:49:50 +0200502
503 ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \
504 | tee ${LOG_DIR}/$target.ERR
Peter Tyserf2352872009-12-06 23:58:28 -0600505
506 # Check for 'make' errors
507 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
508 RC=1
509 fi
510
Peter Tyser40a28f02009-09-21 12:04:32 -0500511 if [ -s ${LOG_DIR}/$target.ERR ] ; then
512 ERR_CNT=$((ERR_CNT + 1))
513 ERR_LIST="${ERR_LIST} $target"
514 else
515 rm ${LOG_DIR}/$target.ERR
516 fi
517
518 TOTAL_CNT=$((TOTAL_CNT + 1))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200519
Mike Frysinger208447f2008-01-28 05:56:19 -0500520 ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200521 | tee -a ${LOG_DIR}/$target.MAKELOG
wdenk7ebf7442002-11-02 23:17:16 +0000522}
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400523build_targets() {
524 for t in "$@" ; do
525 # If a LIST_xxx var exists, use it. But avoid variable
526 # expansion in the eval when a board name contains certain
527 # characters that the shell interprets.
528 case ${t} in
529 *[-+=]*) list= ;;
530 *) list=$(eval echo '${LIST_'$t'}') ;;
531 esac
532 if [ -n "${list}" ] ; then
533 build_targets ${list}
534 else
535 build_target ${t}
536 fi
537 done
538}
wdenk7ebf7442002-11-02 23:17:16 +0000539
540#-----------------------------------------------------------------------
541
Peter Tyser40a28f02009-09-21 12:04:32 -0500542print_stats() {
Marek Vasut7f79c6f2011-12-02 21:32:03 +0000543 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
Peter Tyser40a28f02009-09-21 12:04:32 -0500544 echo ""
545 echo "--------------------- SUMMARY ----------------------------"
546 echo "Boards compiled: ${TOTAL_CNT}"
547 if [ ${ERR_CNT} -gt 0 ] ; then
548 echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )"
549 fi
550 echo "----------------------------------------------------------"
Peter Tyserf2352872009-12-06 23:58:28 -0600551
552 exit $RC
Peter Tyser40a28f02009-09-21 12:04:32 -0500553}
wdenk7ebf7442002-11-02 23:17:16 +0000554
Peter Tyser40a28f02009-09-21 12:04:32 -0500555#-----------------------------------------------------------------------
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400556
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200557# Build target groups selected by options, plus any command line args
558set -- ${SELECTED} "$@"
559# run PowerPC by default
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400560[ $# = 0 ] && set -- powerpc
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400561build_targets "$@"