blob: 5b06c5477decafc2d18dafd0ad8520e96a572ca0 [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
Marek Vasutcc3e1cb2011-12-02 21:32:03 +000019 -l, --list List all targets to be built
Marek Vasut4f21ade2012-03-05 15:10:51 +000020 -m, --maintainers List all targets and maintainer email
21 -M, --mails List all targets and all affilated emails
Kim Phillips568ea612012-09-27 14:57:34 +000022 -C, --check Enable build checking
Joe Hershberger76c17542012-10-30 15:55:21 +000023 -n, --continue Continue (skip boards already built)
24 -r, --rebuild-errors Rebuild any boards that errored
Mike Frysingered639982011-04-21 22:01:43 +000025 -h, --help This help output
26
27 Selections by these options are logically ANDed; if the same option
28 is used repeatedly, such selections are ORed. So "-v FOO -v BAR"
29 will select all configurations where the vendor is either FOO or
30 BAR. Any additional arguments specified on the command line are
31 always build additionally. See the boards.cfg file for more info.
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020032
Mike Frysingered639982011-04-21 22:01:43 +000033 If no boards are specified, then the default is "powerpc".
34
35 Environment variables:
36 BUILD_NCPUS number of parallel make jobs (default: auto)
37 CROSS_COMPILE cross-compiler toolchain prefix (default: "")
38 MAKEALL_LOGDIR output all logs to here (default: ./LOG/)
39 BUILD_DIR output build directory (default: ./)
Andy Flemingaf1cc312012-04-24 19:33:51 +000040 BUILD_NBUILDS number of parallel targets (default: 1)
Mike Frysingered639982011-04-21 22:01:43 +000041
42 Examples:
43 - build all Power Architecture boards:
44 MAKEALL -a powerpc
45 MAKEALL --arch powerpc
46 MAKEALL powerpc
47 - build all PowerPC boards manufactured by vendor "esd":
48 MAKEALL -a powerpc -v esd
49 - build all PowerPC boards manufactured either by "keymile" or "siemens":
50 MAKEALL -a powerpc -v keymile -v siemens
51 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
52 MAKEALL -c mpc83xx -v freescale 4xx
53 EOF
54 exit ${ret}
55}
56
Joe Hershberger76c17542012-10-30 15:55:21 +000057SHORT_OPTS="ha:c:v:s:lmMCnr"
58LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails,check,continue,rebuild-errors"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020059
60# Option processing based on util-linux-2.13/getopt-parse.bash
61
Wolfgang Denk1136f692010-10-27 22:48:30 +020062# Note that we use `"$@"' to let each command-line parameter expand to a
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020063# separate word. The quotes around `$@' are essential!
64# We need TEMP as the `eval set --' would nuke the return value of
65# getopt.
66TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
67 -n 'MAKEALL' -- "$@"`
68
Mike Frysingered639982011-04-21 22:01:43 +000069[ $? != 0 ] && usage 1
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020070
71# Note the quotes around `$TEMP': they are essential!
72eval set -- "$TEMP"
73
74SELECTED=''
Marek Vasutcc3e1cb2011-12-02 21:32:03 +000075ONLY_LIST=''
Marek Vasut4f21ade2012-03-05 15:10:51 +000076PRINT_MAINTS=''
77MAINTAINERS_ONLY=''
Joe Hershberger76c17542012-10-30 15:55:21 +000078CONTINUE=''
79REBUILD_ERRORS=''
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020080
81while true ; do
82 case "$1" in
83 -a|--arch)
84 # echo "Option ARCH: argument \`$2'"
85 if [ "$opt_a" ] ; then
86 opt_a="${opt_a%)} || \$2 == \"$2\")"
87 else
88 opt_a="(\$2 == \"$2\")"
89 fi
90 SELECTED='y'
91 shift 2 ;;
92 -c|--cpu)
93 # echo "Option CPU: argument \`$2'"
94 if [ "$opt_c" ] ; then
Allen Martin43e92742012-08-31 08:30:06 +000095 opt_c="${opt_c%)} || \$3 == \"$2\" || \$3 ~ /$2:/)"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020096 else
Allen Martin43e92742012-08-31 08:30:06 +000097 opt_c="(\$3 == \"$2\" || \$3 ~ /$2:/)"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020098 fi
99 SELECTED='y'
100 shift 2 ;;
101 -s|--soc)
102 # echo "Option SoC: argument \`$2'"
103 if [ "$opt_s" ] ; then
104 opt_s="${opt_s%)} || \$6 == \"$2\")"
105 else
106 opt_s="(\$6 == \"$2\")"
107 fi
108 SELECTED='y'
109 shift 2 ;;
110 -v|--vendor)
111 # echo "Option VENDOR: argument \`$2'"
112 if [ "$opt_v" ] ; then
113 opt_v="${opt_v%)} || \$5 == \"$2\")"
114 else
115 opt_v="(\$5 == \"$2\")"
116 fi
117 SELECTED='y'
118 shift 2 ;;
Kim Phillips568ea612012-09-27 14:57:34 +0000119 -C|--check)
120 CHECK='C=1'
121 shift ;;
Joe Hershberger76c17542012-10-30 15:55:21 +0000122 -n|--continue)
123 CONTINUE='y'
124 shift ;;
125 -r|--rebuild-errors)
126 REBUILD_ERRORS='y'
127 shift ;;
Marek Vasutcc3e1cb2011-12-02 21:32:03 +0000128 -l|--list)
129 ONLY_LIST='y'
130 shift ;;
Marek Vasut4f21ade2012-03-05 15:10:51 +0000131 -m|--maintainers)
132 ONLY_LIST='y'
133 PRINT_MAINTS='y'
134 MAINTAINERS_ONLY='y'
135 shift ;;
136 -M|--mails)
137 ONLY_LIST='y'
138 PRINT_MAINTS='y'
139 shift ;;
Mike Frysingered639982011-04-21 22:01:43 +0000140 -h|--help)
141 usage ;;
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200142 --)
143 shift ; break ;;
144 *)
145 echo "Internal error!" >&2 ; exit 1 ;;
146 esac
147done
148# echo "Remaining arguments:"
149# for arg do echo '--> '"\`$arg'" ; done
150
151FILTER="\$1 !~ /^#/"
152[ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
153[ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
154[ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
155[ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
156
157if [ "$SELECTED" ] ; then
158 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
Peter Tyser2f887602010-10-29 17:59:06 -0500159
160 # Make sure some boards from boards.cfg are actually found
161 if [ -z "$SELECTED" ] ; then
162 echo "Error: No boards selected, invalid arguments"
163 exit 1
164 fi
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200165fi
166
167#########################################################################
168
Peter Tyser23240d22009-09-21 12:04:32 -0500169# Print statistics when we exit
170trap exit 1 2 3 15
171trap print_stats 0
172
Wolfgang Denkde5d6602008-12-09 00:39:08 +0100173# Determine number of CPU cores if no default was set
174: ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
175
176if [ "$BUILD_NCPUS" -gt 1 ]
177then
Peter Tyser8a07f9a2009-09-21 12:04:33 -0500178 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denkde5d6602008-12-09 00:39:08 +0100179else
180 JOBS=""
181fi
182
wdenkc0aa5c52003-12-06 19:49:23 +0000183
wdenk7ebf7442002-11-02 23:17:16 +0000184if [ "${CROSS_COMPILE}" ] ; then
185 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
186else
187 MAKE=make
188fi
189
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200190if [ "${MAKEALL_LOGDIR}" ] ; then
191 LOG_DIR=${MAKEALL_LOGDIR}
192else
193 LOG_DIR="LOG"
194fi
Stefan Roese42fbddd2006-09-07 11:51:23 +0200195
Andy Flemingaf1cc312012-04-24 19:33:51 +0000196: ${BUILD_NBUILDS:=1}
197BUILD_MANY=0
198
199if [ "${BUILD_NBUILDS}" -gt 1 ] ; then
200 BUILD_MANY=1
201 : ${BUILD_DIR:=./build}
202 mkdir -p "${BUILD_DIR}/ERR"
203 find "${BUILD_DIR}/ERR/" -type f -exec rm -f {} +
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200204fi
205
Andy Flemingaf1cc312012-04-24 19:33:51 +0000206: ${BUILD_DIR:=.}
207
208OUTPUT_PREFIX="${BUILD_DIR}"
209
210[ -d ${LOG_DIR} ] || mkdir "${LOG_DIR}" || exit 1
Joe Hershberger76c17542012-10-30 15:55:21 +0000211if [ "$CONTINUE" != 'y' -a "$REBUILD_ERRORS" != 'y' ] ; then
212 find "${LOG_DIR}/" -type f -exec rm -f {} +
213fi
wdenk7ebf7442002-11-02 23:17:16 +0000214
215LIST=""
216
Peter Tyser23240d22009-09-21 12:04:32 -0500217# Keep track of the number of builds and errors
218ERR_CNT=0
219ERR_LIST=""
Joe Hershberger67fc0592012-05-21 04:49:38 +0000220WRN_CNT=0
221WRN_LIST=""
Peter Tyser23240d22009-09-21 12:04:32 -0500222TOTAL_CNT=0
Joe Hershberger76c17542012-10-30 15:55:21 +0000223SKIP_CNT=0
Andy Flemingaf1cc312012-04-24 19:33:51 +0000224CURRENT_CNT=0
225OLDEST_IDX=1
Peter Tysera5a27b92009-12-06 23:58:28 -0600226RC=0
Peter Tyser23240d22009-09-21 12:04:32 -0500227
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400228# Helper funcs for parsing boards.cfg
229boards_by_field()
230{
Allen Martin43e92742012-08-31 08:30:06 +0000231 FS="[ \t]+"
232 [ -n "$3" ] && FS="$3"
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400233 awk \
234 -v field="$1" \
235 -v select="$2" \
Allen Martin43e92742012-08-31 08:30:06 +0000236 -F "$FS" \
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400237 '($1 !~ /^#/ && $field == select) { print $1 }' \
238 boards.cfg
239}
240boards_by_arch() { boards_by_field 2 "$@" ; }
Allen Martin43e92742012-08-31 08:30:06 +0000241boards_by_cpu() { boards_by_field 3 "$@" "[: \t]+" ; }
Andreas Bießmannbb96a8e2010-11-30 09:45:04 +0000242boards_by_soc() { boards_by_field 6 "$@" ; }
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400243
wdenk7ebf7442002-11-02 23:17:16 +0000244#########################################################################
wdenk359733b2003-03-31 17:27:09 +0000245## MPC5xx Systems
246#########################################################################
247
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400248LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk359733b2003-03-31 17:27:09 +0000249
250#########################################################################
wdenk21136db2003-07-16 21:53:01 +0000251## MPC5xxx Systems
252#########################################################################
253
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200254LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk21136db2003-07-16 21:53:01 +0000255
256#########################################################################
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200257## MPC512x Systems
258#########################################################################
259
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200260LIST_512x="$(boards_by_cpu mpc512x)"
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200261
262#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000263## MPC8xx Systems
264#########################################################################
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400265
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200266LIST_8xx="$(boards_by_cpu mpc8xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000267
268#########################################################################
269## PPC4xx Systems
270#########################################################################
271
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200272LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000273
274#########################################################################
wdenk337f5652004-10-28 00:09:35 +0000275## MPC8220 Systems
276#########################################################################
277
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400278LIST_8220="$(boards_by_cpu mpc8220)"
wdenk337f5652004-10-28 00:09:35 +0000279
280#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000281## MPC824x Systems
282#########################################################################
283
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200284LIST_824x="$(boards_by_cpu mpc824x)"
wdenkdbae5042003-06-21 00:17:24 +0000285
wdenk7ebf7442002-11-02 23:17:16 +0000286#########################################################################
wdenk541a76d2003-05-03 15:50:43 +0000287## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000288#########################################################################
289
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200290LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000291
292#########################################################################
Eran Liberty9095d4a2005-07-28 10:08:46 -0500293## MPC83xx Systems (includes 8349, etc.)
294#########################################################################
295
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200296LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Liberty9095d4a2005-07-28 10:08:46 -0500297
298#########################################################################
wdenk9c53f402003-10-15 23:53:47 +0000299## MPC85xx Systems (includes 8540, 8560 etc.)
300#########################################################################
301
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200302LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk9c53f402003-10-15 23:53:47 +0000303
304#########################################################################
Jon Loeliger5fe34492007-05-23 14:09:46 -0500305## MPC86xx Systems
306#########################################################################
307
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200308LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger5fe34492007-05-23 14:09:46 -0500309
310#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000311## 74xx/7xx Systems
312#########################################################################
313
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200314LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000315
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700316#########################################################################
317## PowerPC groups
318#########################################################################
319
320LIST_TSEC=" \
321 ${LIST_83xx} \
322 ${LIST_85xx} \
323 ${LIST_86xx} \
324"
325
Stefan Roese88fbf932010-04-15 16:07:28 +0200326LIST_powerpc=" \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500327 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD0912d312007-11-25 22:39:25 +0100328 ${LIST_512x} \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500329 ${LIST_5xxx} \
330 ${LIST_8xx} \
331 ${LIST_8220} \
332 ${LIST_824x} \
333 ${LIST_8260} \
334 ${LIST_83xx} \
335 ${LIST_85xx} \
336 ${LIST_86xx} \
337 ${LIST_4xx} \
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200338 ${LIST_74xx_7xx}\
Kim Phillips8c0c8932007-08-10 15:34:48 -0500339"
wdenk7ebf7442002-11-02 23:17:16 +0000340
Stefan Roese88fbf932010-04-15 16:07:28 +0200341# Alias "ppc" -> "powerpc" to not break compatibility with older scripts
342# still using "ppc" instead of "powerpc"
343LIST_ppc=" \
344 ${LIST_powerpc} \
345"
346
wdenk7ebf7442002-11-02 23:17:16 +0000347#########################################################################
348## StrongARM Systems
349#########################################################################
350
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400351LIST_SA="$(boards_by_cpu sa1100)"
wdenk7ebf7442002-11-02 23:17:16 +0000352
353#########################################################################
Allen Martinc0171ca2012-08-29 11:08:59 +0000354## ARM7 Systems
355#########################################################################
356
357LIST_ARM7="$(boards_by_cpu arm720t)"
358
359#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000360## ARM9 Systems
361#########################################################################
362
Wolfgang Denk10766192011-09-08 05:01:24 +0000363LIST_ARM9="$(boards_by_cpu arm920t) \
364 $(boards_by_cpu arm926ejs) \
365 $(boards_by_cpu arm925t) \
Allen Martinc0171ca2012-08-29 11:08:59 +0000366 $(boards_by_cpu arm946es) \
wdenk7eaacc52003-08-29 22:00:43 +0000367"
wdenk7ebf7442002-11-02 23:17:16 +0000368
369#########################################################################
wdenkf8062712005-01-09 23:16:25 +0000370## ARM11 Systems
371#########################################################################
Allen Martinc0171ca2012-08-29 11:08:59 +0000372LIST_ARM11="$(boards_by_cpu arm1136) \
373 $(boards_by_cpu arm1176) \
374"
wdenkf8062712005-01-09 23:16:25 +0000375
376#########################################################################
Steve Sakoman6329a8f2010-06-17 21:50:01 -0700377## ARMV7 Systems
Dirk Behme2781f802009-01-27 18:19:12 +0100378#########################################################################
Dirk Behme1b787e32011-08-05 20:48:32 +0000379
380LIST_ARMV7="$(boards_by_cpu armv7)"
Dirk Behme2781f802009-01-27 18:19:12 +0100381
382#########################################################################
Jean-Christophe PLAGNIOL-VILLARD9a88fd12008-05-24 12:47:46 +0200383## AT91 Systems
384#########################################################################
385
Thomas Petazzonia5e85762011-08-04 11:08:50 +0000386LIST_at91="$(boards_by_soc at91)"
Jean-Christophe PLAGNIOL-VILLARD9a88fd12008-05-24 12:47:46 +0200387
388#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000389## Xscale Systems
390#########################################################################
391
Marek Vasut4ccaaef2010-10-04 00:21:51 +0200392LIST_pxa="$(boards_by_cpu pxa)"
wdenk7ebf7442002-11-02 23:17:16 +0000393
Andy Flemingc96fa112012-04-25 09:36:13 +0000394LIST_ixp="$(boards_by_cpu ixp)"
wdenk7ebf7442002-11-02 23:17:16 +0000395
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700396#########################################################################
Stefan Roese8ab8f2a2012-05-30 22:59:43 +0000397## SPEAr Systems
398#########################################################################
399
400LIST_spear="$(boards_by_soc spear)"
401
402#########################################################################
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700403## ARM groups
404#########################################################################
wdenkbd1575f2003-10-14 19:43:55 +0000405
Allen Martinc0171ca2012-08-29 11:08:59 +0000406LIST_arm="$(boards_by_arch arm)"
wdenk7ebf7442002-11-02 23:17:16 +0000407
wdenkbb1b8262003-03-27 12:09:35 +0000408#########################################################################
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200409## MIPS Systems (default = big endian)
wdenkbb1b8262003-03-27 12:09:35 +0000410#########################################################################
411
Kim Phillips8c0c8932007-08-10 15:34:48 -0500412LIST_mips4kc=" \
413 incaip \
Allen Martinc0171ca2012-08-29 11:08:59 +0000414 incaip_100MHz \
415 incaip_133MHz \
416 incaip_150MHz \
Vlad Lungu635e76c2008-01-16 19:27:51 +0200417 qemu_mips \
Stefan Roeseee7a6ba2009-01-21 17:25:01 +0100418 vct_platinum \
419 vct_platinum_small \
420 vct_platinum_onenand \
421 vct_platinum_onenand_small \
422 vct_platinumavc \
423 vct_platinumavc_small \
424 vct_platinumavc_onenand \
425 vct_platinumavc_onenand_small \
426 vct_premium \
427 vct_premium_small \
428 vct_premium_onenand \
429 vct_premium_onenand_small \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500430"
wdenkbb1b8262003-03-27 12:09:35 +0000431
Kim Phillips8c0c8932007-08-10 15:34:48 -0500432LIST_au1xx0=" \
433 dbau1000 \
434 dbau1100 \
435 dbau1500 \
436 dbau1550 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500437"
wdenk9b7f3842003-10-09 20:09:04 +0000438
Kim Phillips8c0c8932007-08-10 15:34:48 -0500439LIST_mips=" \
440 ${LIST_mips4kc} \
441 ${LIST_mips5kc} \
442 ${LIST_au1xx0} \
443"
wdenkbb1b8262003-03-27 12:09:35 +0000444
wdenkabda5ca2003-05-31 18:35:21 +0000445#########################################################################
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200446## MIPS Systems (little endian)
447#########################################################################
448
Daniel Schwierzecka10aa182011-11-24 03:57:56 +0000449LIST_xburst_el=" \
Xiangfu Liu7306ccb2011-10-12 12:24:06 +0800450 qi_lb60 \
451"
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200452
Kim Phillips8c0c8932007-08-10 15:34:48 -0500453LIST_au1xx0_el=" \
454 dbau1550_el \
Shinya Kuribayashi2437cfb2007-10-27 15:00:25 +0900455 pb1000 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500456"
Kim Phillips8c0c8932007-08-10 15:34:48 -0500457LIST_mips_el=" \
Daniel Schwierzecka10aa182011-11-24 03:57:56 +0000458 ${LIST_xburst_el} \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500459 ${LIST_au1xx0_el} \
460"
Stefan Kristianssonc69cb3e2011-11-18 19:21:37 +0000461#########################################################################
462## OpenRISC Systems
463#########################################################################
464
465LIST_openrisc="$(boards_by_arch openrisc)"
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200466
467#########################################################################
Graeme Russcbfce1d2011-04-13 19:43:28 +1000468## x86 Systems
wdenkabda5ca2003-05-31 18:35:21 +0000469#########################################################################
470
Graeme Russcbfce1d2011-04-13 19:43:28 +1000471LIST_x86="$(boards_by_arch x86)"
wdenkabda5ca2003-05-31 18:35:21 +0000472
wdenk3be717f2004-01-03 19:43:48 +0000473#########################################################################
wdenkef3386f2004-10-10 21:27:30 +0000474## Nios-II Systems
475#########################################################################
476
Mike Frysingerda6aa7c2011-06-26 23:00:19 -0400477LIST_nios2="$(boards_by_arch nios2)"
wdenkef3386f2004-10-10 21:27:30 +0000478
479#########################################################################
wdenk20a61222004-07-10 23:48:41 +0000480## MicroBlaze Systems
481#########################################################################
482
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400483LIST_microblaze="$(boards_by_arch microblaze)"
wdenk20a61222004-07-10 23:48:41 +0000484
Zachary P. Landau1c3c0962006-01-26 17:38:46 -0500485#########################################################################
486## ColdFire Systems
487#########################################################################
488
Allen Martinc0171ca2012-08-29 11:08:59 +0000489LIST_m68k="$(boards_by_arch m68k)"
Mike Frysinger6a9c0232011-09-25 19:27:19 +0000490LIST_coldfire=${LIST_m68k}
Zachary P. Landau1c3c0962006-01-26 17:38:46 -0500491
Wolfgang Denk994ad962006-10-24 14:42:37 +0200492#########################################################################
493## AVR32 Systems
494#########################################################################
495
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400496LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk994ad962006-10-24 14:42:37 +0200497
Aubrey.Li450c23e2007-03-09 13:40:56 +0800498#########################################################################
499## Blackfin Systems
500#########################################################################
501
Mike Frysingerdd18ab62010-10-19 02:41:26 -0400502LIST_blackfin="$(boards_by_arch blackfin)"
Aubrey.Li450c23e2007-03-09 13:40:56 +0800503
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100504#########################################################################
505## SH Systems
506#########################################################################
507
Nobuhiro Iwamatsu0c4bcc72010-10-20 01:22:25 +0900508LIST_sh2="$(boards_by_cpu sh2)"
Nobuhiro Iwamatsu06ea8cf2010-10-20 01:28:29 +0900509LIST_sh3="$(boards_by_cpu sh3)"
Nobuhiro Iwamatsuc4c62342010-10-20 01:35:28 +0900510LIST_sh4="$(boards_by_cpu sh4)"
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100511
Nobuhiro Iwamatsuc4c62342010-10-20 01:35:28 +0900512LIST_sh="$(boards_by_arch sh)"
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100513
Daniel Hellstrom9d7c6b22008-03-28 09:47:00 +0100514#########################################################################
515## SPARC Systems
516#########################################################################
517
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400518LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000519
Macpaul Line0eb35a2011-10-19 20:41:10 +0000520#########################################################################
521## NDS32 Systems
522#########################################################################
523
524LIST_nds32="$(boards_by_arch nds32)"
525
wdenk7ebf7442002-11-02 23:17:16 +0000526#-----------------------------------------------------------------------
527
Marek Vasut4f21ade2012-03-05 15:10:51 +0000528get_target_location() {
529 local target=$1
530 local BOARD_NAME=""
531 local CONFIG_NAME=""
532 local board=""
533 local vendor=""
534
535 # Automatic mode
536 local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg`
537
538 if [ -z "${line}" ] ; then echo "" ; return ; fi
539
540 set ${line}
541
542 # add default board name if needed
543 [ $# = 3 ] && set ${line} ${1}
544
545 CONFIG_NAME="${1%_config}"
546
547 [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
548
549 if [ "$4" = "-" ] ; then
550 board=${BOARD_NAME}
551 else
552 board="$4"
553 fi
554
555 [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
556 [ $# -gt 6 ] && [ "$7" != "-" ] && {
557 tmp="${7%:*}"
558 if [ "$tmp" ] ; then
559 CONFIG_NAME="$tmp"
560 fi
561 }
562
563 # Assign board directory to BOARDIR variable
564 if [ -z "${vendor}" ] ; then
565 BOARDDIR=${board}
566 else
567 BOARDDIR=${vendor}/${board}
568 fi
569
570 echo "${CONFIG_NAME}:${BOARDDIR}"
571}
572
573get_target_maintainers() {
574 local name=`echo $1 | cut -d : -f 1`
575
576 if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then
577 echo ""
578 return ;
579 fi
580
581 local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1`
582 local mail=`tac MAINTAINERS | tail -n +${line} | \
583 sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \
584 sed "s/^.*<//;s/>.*$//"`
585 echo "$mail"
586}
587
588list_target() {
589 if [ "$PRINT_MAINTS" != 'y' ] ; then
590 echo "$1"
591 return
592 fi
593
594 echo -n "$1:"
595
596 local loc=`get_target_location $1`
597
598 if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi
599
600 local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"`
601
602 if [ "$MAINTAINERS_ONLY" != 'y' ] ; then
603
604 local dir=`echo ${loc} | cut -d ":" -f 2`
605 local cfg=`echo ${loc} | cut -d ":" -f 1`
606 local git_result=`git log --format=%aE board/${dir} \
607 include/configs/${cfg}.h | grep "@"`
608 local git_result_recent=`echo ${git_result} | tr " " "\n" | \
609 head -n 3`
610 local git_result_top=`echo ${git_result} | tr " " "\n" | \
611 sort | uniq -c | sort -nr | head -n 3 | \
612 sed "s/^ \+[0-9]\+ \+//"`
613
614 echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \
615 sort -u | tr "\n" " " | sed "s/ $//" ;
616 else
617 echo -e "$maintainers_result" | sort -u | tr "\n" " " | \
618 sed "s/ $//" ;
619 fi
620
621 echo ""
622}
623
Andy Flemingaf1cc312012-04-24 19:33:51 +0000624# Each finished build will have a file called ${donep}${n},
625# where n is the index of the build. Each build
626# we've already noted as finished will have ${skipp}${n}.
627# The code managing the build process will use this information
628# to ensure that only BUILD_NBUILDS builds are in flight at once
629donep="${LOG_DIR}/._done_"
630skipp="${LOG_DIR}/._skip_"
631
Joe Hershberger1a268c22012-10-30 15:55:20 +0000632build_target_killed() {
633 echo "Aborted $target build."
634 # Remove the logs for this board since it was aborted
635 rm -f ${LOG_DIR}/$target.MAKELOG ${LOG_DIR}/$target.ERR
636 exit
637}
638
wdenk7ebf7442002-11-02 23:17:16 +0000639build_target() {
640 target=$1
Andy Flemingaf1cc312012-04-24 19:33:51 +0000641 build_idx=$2
642
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000643 if [ "$ONLY_LIST" == 'y' ] ; then
644 list_target ${target}
645 return
646 fi
647
Andy Flemingaf1cc312012-04-24 19:33:51 +0000648 if [ $BUILD_MANY == 1 ] ; then
649 output_dir="${OUTPUT_PREFIX}/${target}"
650 mkdir -p "${output_dir}"
Joe Hershberger1a268c22012-10-30 15:55:20 +0000651 trap build_target_killed TERM
Andy Flemingaf1cc312012-04-24 19:33:51 +0000652 else
653 output_dir="${OUTPUT_PREFIX}"
654 fi
655
656 export BUILD_DIR="${output_dir}"
wdenk7ebf7442002-11-02 23:17:16 +0000657
658 ${MAKE} distclean >/dev/null
Kim Phillips5ac3c122010-09-14 14:48:16 -0500659 ${MAKE} -s ${target}_config
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200660
Kim Phillips568ea612012-09-27 14:57:34 +0000661 ${MAKE} ${JOBS} ${CHECK} all \
Andy Flemingaf1cc312012-04-24 19:33:51 +0000662 >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR
Peter Tysera5a27b92009-12-06 23:58:28 -0600663
664 # Check for 'make' errors
665 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
666 RC=1
667 fi
668
Andy Flemingaf1cc312012-04-24 19:33:51 +0000669 if [ $BUILD_MANY == 1 ] ; then
Joe Hershberger1a268c22012-10-30 15:55:20 +0000670 trap - TERM
671
Tom Rinid1e19062012-10-25 08:53:14 +0000672 ${MAKE} -s tidy
Andy Flemingaf1cc312012-04-24 19:33:51 +0000673
674 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
Joe Hershberger67fc0592012-05-21 04:49:38 +0000675 cp ${LOG_DIR}/${target}.ERR ${OUTPUT_PREFIX}/ERR/${target}
Andy Flemingaf1cc312012-04-24 19:33:51 +0000676 else
677 rm ${LOG_DIR}/${target}.ERR
678 fi
Peter Tyser23240d22009-09-21 12:04:32 -0500679 else
Andy Flemingaf1cc312012-04-24 19:33:51 +0000680 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
Joe Hershberger67fc0592012-05-21 04:49:38 +0000681 if grep -iw error ${LOG_DIR}/${target}.ERR ; then
682 : $(( ERR_CNT += 1 ))
683 ERR_LIST="${ERR_LIST} $target"
684 else
685 : $(( WRN_CNT += 1 ))
686 WRN_LIST="${WRN_LIST} $target"
687 fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000688 else
689 rm ${LOG_DIR}/${target}.ERR
690 fi
Peter Tyser23240d22009-09-21 12:04:32 -0500691 fi
692
Andy Flemingaf1cc312012-04-24 19:33:51 +0000693 OBJS=${output_dir}/u-boot
694 if [ -e ${output_dir}/spl/u-boot-spl ]; then
695 OBJS="${OBJS} ${output_dir}/spl/u-boot-spl"
Scott Woodf8b3e232012-02-20 12:56:25 +0000696 fi
697
698 ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG
Andy Flemingaf1cc312012-04-24 19:33:51 +0000699
700 [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR"
701
Andy Flemingaf1cc312012-04-24 19:33:51 +0000702 touch "${donep}${build_idx}"
703}
704
705manage_builds() {
706 search_idx=${OLDEST_IDX}
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000707 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
708
Andy Flemingaf1cc312012-04-24 19:33:51 +0000709 while true; do
710 if [ -e "${donep}${search_idx}" ] ; then
Andy Flemingaf1cc312012-04-24 19:33:51 +0000711 : $(( CURRENT_CNT-- ))
712 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
713 : $(( OLDEST_IDX++ ))
714
715 # Only want to count it once
716 rm -f "${donep}${search_idx}"
717 touch "${skipp}${search_idx}"
718 elif [ -e "${skipp}${search_idx}" ] ; then
719 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
720 : $(( OLDEST_IDX++ ))
721 fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000722 : $(( search_idx++ ))
723 if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then
Andy Flemingaf1cc312012-04-24 19:33:51 +0000724 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
725 search_idx=${OLDEST_IDX}
726 sleep 1
727 else
728 break
729 fi
730 fi
731 done
wdenk7ebf7442002-11-02 23:17:16 +0000732}
Andy Flemingaf1cc312012-04-24 19:33:51 +0000733
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400734build_targets() {
735 for t in "$@" ; do
736 # If a LIST_xxx var exists, use it. But avoid variable
737 # expansion in the eval when a board name contains certain
738 # characters that the shell interprets.
739 case ${t} in
740 *[-+=]*) list= ;;
741 *) list=$(eval echo '${LIST_'$t'}') ;;
742 esac
743 if [ -n "${list}" ] ; then
744 build_targets ${list}
745 else
Andy Flemingaf1cc312012-04-24 19:33:51 +0000746 : $((TOTAL_CNT += 1))
747 : $((CURRENT_CNT += 1))
748 rm -f "${donep}${TOTAL_CNT}"
749 rm -f "${skipp}${TOTAL_CNT}"
Joe Hershberger76c17542012-10-30 15:55:21 +0000750 if [ "$CONTINUE" = 'y' -a -e ${LOG_DIR}/$t.MAKELOG ] ; then
751 : $((SKIP_CNT += 1))
752 touch "${donep}${TOTAL_CNT}"
753 elif [ "$REBUILD_ERRORS" = 'y' -a ! -e ${LOG_DIR}/$t.ERR ] ; then
754 : $((SKIP_CNT += 1))
755 touch "${donep}${TOTAL_CNT}"
Joe Hershberger8536b692012-05-21 04:49:37 +0000756 else
Joe Hershberger76c17542012-10-30 15:55:21 +0000757 if [ $BUILD_MANY == 1 ] ; then
758 build_target ${t} ${TOTAL_CNT} &
759 else
760 CUR_TGT="${t}"
761 build_target ${t} ${TOTAL_CNT}
762 CUR_TGT=''
763 fi
Joe Hershberger8536b692012-05-21 04:49:37 +0000764 fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000765 fi
766
767 # We maintain a running count of all the builds we have done.
768 # Each finished build will have a file called ${donep}${n},
769 # where n is the index of the build. Each build
770 # we've already noted as finished will have ${skipp}${n}.
771 # We track the current index via TOTAL_CNT, and the oldest
772 # index. When we exceed the maximum number of parallel builds,
773 # We look from oldest to current for builds that have completed,
774 # and update the current count and oldest index as appropriate.
775 # If we've gone through the entire list, wait a second, and
776 # reprocess the entire list until we find a build that has
777 # completed
778 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
779 manage_builds
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400780 fi
781 done
782}
wdenk7ebf7442002-11-02 23:17:16 +0000783
784#-----------------------------------------------------------------------
785
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000786kill_children() {
Joe Hershberger1a268c22012-10-30 15:55:20 +0000787 local pgid=`ps -p $$ --no-headers -o "%r" | tr -d ' '`
788 local children=`pgrep -g $pgid | grep -v $$ | grep -v $pgid`
789
790 kill $children 2> /dev/null
791 wait $children 2> /dev/null
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000792
793 exit
794}
795
Peter Tyser23240d22009-09-21 12:04:32 -0500796print_stats() {
Marek Vasutcc3e1cb2011-12-02 21:32:03 +0000797 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000798
Joe Hershberger1a268c22012-10-30 15:55:20 +0000799 # Only count boards that completed
800 : $((TOTAL_CNT = `find ${skipp}* 2> /dev/null | wc -l`))
801
Andy Flemingaf1cc312012-04-24 19:33:51 +0000802 rm -f ${donep}* ${skipp}*
803
804 if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then
Andy Flemingc594fe82012-08-08 14:12:30 +0000805 ERR_LIST=`grep -riwl error ${OUTPUT_PREFIX}/ERR/`
Joe Hershberger67fc0592012-05-21 04:49:38 +0000806 ERR_LIST=`for f in $ERR_LIST ; do echo -n " $(basename $f)" ; done`
807 ERR_CNT=`echo $ERR_LIST | wc -w | awk '{print $1}'`
Andy Flemingc594fe82012-08-08 14:12:30 +0000808 WRN_LIST=`grep -riwL error ${OUTPUT_PREFIX}/ERR/`
Joe Hershberger67fc0592012-05-21 04:49:38 +0000809 WRN_LIST=`for f in $WRN_LIST ; do echo -n " $(basename $f)" ; done`
810 WRN_CNT=`echo $WRN_LIST | wc -w | awk '{print $1}'`
Joe Hershberger1a268c22012-10-30 15:55:20 +0000811 else
812 # Remove the logs for any board that was interrupted
813 rm -f ${LOG_DIR}/${CUR_TGT}.MAKELOG ${LOG_DIR}/${CUR_TGT}.ERR
Andy Flemingaf1cc312012-04-24 19:33:51 +0000814 fi
815
Joe Hershberger76c17542012-10-30 15:55:21 +0000816 : $((TOTAL_CNT -= ${SKIP_CNT}))
Peter Tyser23240d22009-09-21 12:04:32 -0500817 echo ""
818 echo "--------------------- SUMMARY ----------------------------"
Joe Hershberger76c17542012-10-30 15:55:21 +0000819 if [ "$CONTINUE" = 'y' -o "$REBUILD_ERRORS" = 'y' ] ; then
820 echo "Boards skipped: ${SKIP_CNT}"
821 fi
Peter Tyser23240d22009-09-21 12:04:32 -0500822 echo "Boards compiled: ${TOTAL_CNT}"
823 if [ ${ERR_CNT} -gt 0 ] ; then
Joe Hershberger67fc0592012-05-21 04:49:38 +0000824 echo "Boards with errors: ${ERR_CNT} (${ERR_LIST} )"
825 fi
826 if [ ${WRN_CNT} -gt 0 ] ; then
827 echo "Boards with warnings but no errors: ${WRN_CNT} (${WRN_LIST} )"
Peter Tyser23240d22009-09-21 12:04:32 -0500828 fi
829 echo "----------------------------------------------------------"
Peter Tysera5a27b92009-12-06 23:58:28 -0600830
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000831 if [ $BUILD_MANY == 1 ] ; then
Joe Hershberger1a268c22012-10-30 15:55:20 +0000832 kill_children
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000833 fi
834
Peter Tysera5a27b92009-12-06 23:58:28 -0600835 exit $RC
Peter Tyser23240d22009-09-21 12:04:32 -0500836}
wdenk7ebf7442002-11-02 23:17:16 +0000837
Peter Tyser23240d22009-09-21 12:04:32 -0500838#-----------------------------------------------------------------------
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400839
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200840# Build target groups selected by options, plus any command line args
841set -- ${SELECTED} "$@"
842# run PowerPC by default
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400843[ $# = 0 ] && set -- powerpc
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400844build_targets "$@"
Andy Flemingaf1cc312012-04-24 19:33:51 +0000845wait