blob: a80340eed35f5e590e26635fd6c49c4ccb9d7ce6 [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: "")
Allen Martin4b29aed2013-01-29 14:34:58 +000038 CROSS_COMPILE_<ARCH> cross-compiler toolchain prefix for
39 architecture "ARCH". Substitute "ARCH" for any
40 supported architecture (default: "")
Mike Frysingered639982011-04-21 22:01:43 +000041 MAKEALL_LOGDIR output all logs to here (default: ./LOG/)
42 BUILD_DIR output build directory (default: ./)
Andy Flemingaf1cc312012-04-24 19:33:51 +000043 BUILD_NBUILDS number of parallel targets (default: 1)
Mike Frysingered639982011-04-21 22:01:43 +000044
45 Examples:
46 - build all Power Architecture boards:
47 MAKEALL -a powerpc
48 MAKEALL --arch powerpc
49 MAKEALL powerpc
50 - build all PowerPC boards manufactured by vendor "esd":
51 MAKEALL -a powerpc -v esd
52 - build all PowerPC boards manufactured either by "keymile" or "siemens":
53 MAKEALL -a powerpc -v keymile -v siemens
54 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
55 MAKEALL -c mpc83xx -v freescale 4xx
56 EOF
57 exit ${ret}
58}
59
Joe Hershberger76c17542012-10-30 15:55:21 +000060SHORT_OPTS="ha:c:v:s:lmMCnr"
61LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails,check,continue,rebuild-errors"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020062
63# Option processing based on util-linux-2.13/getopt-parse.bash
64
Wolfgang Denk1136f692010-10-27 22:48:30 +020065# Note that we use `"$@"' to let each command-line parameter expand to a
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020066# separate word. The quotes around `$@' are essential!
67# We need TEMP as the `eval set --' would nuke the return value of
68# getopt.
69TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
70 -n 'MAKEALL' -- "$@"`
71
Mike Frysingered639982011-04-21 22:01:43 +000072[ $? != 0 ] && usage 1
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020073
74# Note the quotes around `$TEMP': they are essential!
75eval set -- "$TEMP"
76
77SELECTED=''
Marek Vasutcc3e1cb2011-12-02 21:32:03 +000078ONLY_LIST=''
Marek Vasut4f21ade2012-03-05 15:10:51 +000079PRINT_MAINTS=''
80MAINTAINERS_ONLY=''
Joe Hershberger76c17542012-10-30 15:55:21 +000081CONTINUE=''
82REBUILD_ERRORS=''
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020083
84while true ; do
85 case "$1" in
86 -a|--arch)
87 # echo "Option ARCH: argument \`$2'"
88 if [ "$opt_a" ] ; then
89 opt_a="${opt_a%)} || \$2 == \"$2\")"
90 else
91 opt_a="(\$2 == \"$2\")"
92 fi
93 SELECTED='y'
94 shift 2 ;;
95 -c|--cpu)
96 # echo "Option CPU: argument \`$2'"
97 if [ "$opt_c" ] ; then
Allen Martin43e92742012-08-31 08:30:06 +000098 opt_c="${opt_c%)} || \$3 == \"$2\" || \$3 ~ /$2:/)"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020099 else
Allen Martin43e92742012-08-31 08:30:06 +0000100 opt_c="(\$3 == \"$2\" || \$3 ~ /$2:/)"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200101 fi
102 SELECTED='y'
103 shift 2 ;;
104 -s|--soc)
105 # echo "Option SoC: argument \`$2'"
106 if [ "$opt_s" ] ; then
Stephen Warrend9282f12013-03-05 11:15:01 +0000107 opt_s="${opt_s%)} || \$6 == \"$2\" || \$6 ~ /$2/)"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200108 else
Stephen Warrend9282f12013-03-05 11:15:01 +0000109 opt_s="(\$6 == \"$2\" || \$6 ~ /$2/)"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200110 fi
111 SELECTED='y'
112 shift 2 ;;
113 -v|--vendor)
114 # echo "Option VENDOR: argument \`$2'"
115 if [ "$opt_v" ] ; then
116 opt_v="${opt_v%)} || \$5 == \"$2\")"
117 else
118 opt_v="(\$5 == \"$2\")"
119 fi
120 SELECTED='y'
121 shift 2 ;;
Kim Phillips568ea612012-09-27 14:57:34 +0000122 -C|--check)
123 CHECK='C=1'
124 shift ;;
Joe Hershberger76c17542012-10-30 15:55:21 +0000125 -n|--continue)
126 CONTINUE='y'
127 shift ;;
128 -r|--rebuild-errors)
129 REBUILD_ERRORS='y'
130 shift ;;
Marek Vasutcc3e1cb2011-12-02 21:32:03 +0000131 -l|--list)
132 ONLY_LIST='y'
133 shift ;;
Marek Vasut4f21ade2012-03-05 15:10:51 +0000134 -m|--maintainers)
135 ONLY_LIST='y'
136 PRINT_MAINTS='y'
137 MAINTAINERS_ONLY='y'
138 shift ;;
139 -M|--mails)
140 ONLY_LIST='y'
141 PRINT_MAINTS='y'
142 shift ;;
Mike Frysingered639982011-04-21 22:01:43 +0000143 -h|--help)
144 usage ;;
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200145 --)
146 shift ; break ;;
147 *)
148 echo "Internal error!" >&2 ; exit 1 ;;
149 esac
150done
151# echo "Remaining arguments:"
152# for arg do echo '--> '"\`$arg'" ; done
153
154FILTER="\$1 !~ /^#/"
155[ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
156[ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
157[ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
158[ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
159
160if [ "$SELECTED" ] ; then
161 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
Peter Tyser2f887602010-10-29 17:59:06 -0500162
163 # Make sure some boards from boards.cfg are actually found
164 if [ -z "$SELECTED" ] ; then
165 echo "Error: No boards selected, invalid arguments"
166 exit 1
167 fi
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200168fi
169
170#########################################################################
171
Peter Tyser23240d22009-09-21 12:04:32 -0500172# Print statistics when we exit
173trap exit 1 2 3 15
174trap print_stats 0
175
Wolfgang Denkde5d6602008-12-09 00:39:08 +0100176# Determine number of CPU cores if no default was set
177: ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
178
179if [ "$BUILD_NCPUS" -gt 1 ]
180then
Peter Tyser8a07f9a2009-09-21 12:04:33 -0500181 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denkde5d6602008-12-09 00:39:08 +0100182else
183 JOBS=""
184fi
185
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200186if [ "${MAKEALL_LOGDIR}" ] ; then
187 LOG_DIR=${MAKEALL_LOGDIR}
188else
189 LOG_DIR="LOG"
190fi
Stefan Roese42fbddd2006-09-07 11:51:23 +0200191
Andy Flemingaf1cc312012-04-24 19:33:51 +0000192: ${BUILD_NBUILDS:=1}
193BUILD_MANY=0
194
195if [ "${BUILD_NBUILDS}" -gt 1 ] ; then
196 BUILD_MANY=1
197 : ${BUILD_DIR:=./build}
198 mkdir -p "${BUILD_DIR}/ERR"
199 find "${BUILD_DIR}/ERR/" -type f -exec rm -f {} +
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200200fi
201
Andy Flemingaf1cc312012-04-24 19:33:51 +0000202: ${BUILD_DIR:=.}
203
204OUTPUT_PREFIX="${BUILD_DIR}"
205
206[ -d ${LOG_DIR} ] || mkdir "${LOG_DIR}" || exit 1
Joe Hershberger76c17542012-10-30 15:55:21 +0000207if [ "$CONTINUE" != 'y' -a "$REBUILD_ERRORS" != 'y' ] ; then
208 find "${LOG_DIR}/" -type f -exec rm -f {} +
209fi
wdenk7ebf7442002-11-02 23:17:16 +0000210
211LIST=""
212
Peter Tyser23240d22009-09-21 12:04:32 -0500213# Keep track of the number of builds and errors
214ERR_CNT=0
215ERR_LIST=""
Joe Hershberger67fc0592012-05-21 04:49:38 +0000216WRN_CNT=0
217WRN_LIST=""
Peter Tyser23240d22009-09-21 12:04:32 -0500218TOTAL_CNT=0
Joe Hershberger76c17542012-10-30 15:55:21 +0000219SKIP_CNT=0
Andy Flemingaf1cc312012-04-24 19:33:51 +0000220CURRENT_CNT=0
221OLDEST_IDX=1
Peter Tysera5a27b92009-12-06 23:58:28 -0600222RC=0
Peter Tyser23240d22009-09-21 12:04:32 -0500223
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400224# Helper funcs for parsing boards.cfg
225boards_by_field()
226{
Allen Martin43e92742012-08-31 08:30:06 +0000227 FS="[ \t]+"
228 [ -n "$3" ] && FS="$3"
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400229 awk \
230 -v field="$1" \
231 -v select="$2" \
Allen Martin43e92742012-08-31 08:30:06 +0000232 -F "$FS" \
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400233 '($1 !~ /^#/ && $field == select) { print $1 }' \
234 boards.cfg
235}
236boards_by_arch() { boards_by_field 2 "$@" ; }
Allen Martin43e92742012-08-31 08:30:06 +0000237boards_by_cpu() { boards_by_field 3 "$@" "[: \t]+" ; }
Andreas Bießmannbb96a8e2010-11-30 09:45:04 +0000238boards_by_soc() { boards_by_field 6 "$@" ; }
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400239
wdenk7ebf7442002-11-02 23:17:16 +0000240#########################################################################
wdenk359733b2003-03-31 17:27:09 +0000241## MPC5xx Systems
242#########################################################################
243
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400244LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk359733b2003-03-31 17:27:09 +0000245
246#########################################################################
wdenk21136db2003-07-16 21:53:01 +0000247## MPC5xxx Systems
248#########################################################################
249
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200250LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk21136db2003-07-16 21:53:01 +0000251
252#########################################################################
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200253## MPC512x Systems
254#########################################################################
255
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200256LIST_512x="$(boards_by_cpu mpc512x)"
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200257
258#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000259## MPC8xx Systems
260#########################################################################
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400261
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200262LIST_8xx="$(boards_by_cpu mpc8xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000263
264#########################################################################
265## PPC4xx Systems
266#########################################################################
267
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200268LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000269
270#########################################################################
271## MPC824x Systems
272#########################################################################
273
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200274LIST_824x="$(boards_by_cpu mpc824x)"
wdenkdbae5042003-06-21 00:17:24 +0000275
wdenk7ebf7442002-11-02 23:17:16 +0000276#########################################################################
wdenk541a76d2003-05-03 15:50:43 +0000277## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000278#########################################################################
279
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200280LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000281
282#########################################################################
Eran Liberty9095d4a2005-07-28 10:08:46 -0500283## MPC83xx Systems (includes 8349, etc.)
284#########################################################################
285
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200286LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Liberty9095d4a2005-07-28 10:08:46 -0500287
288#########################################################################
wdenk9c53f402003-10-15 23:53:47 +0000289## MPC85xx Systems (includes 8540, 8560 etc.)
290#########################################################################
291
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200292LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk9c53f402003-10-15 23:53:47 +0000293
294#########################################################################
Jon Loeliger5fe34492007-05-23 14:09:46 -0500295## MPC86xx Systems
296#########################################################################
297
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200298LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger5fe34492007-05-23 14:09:46 -0500299
300#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000301## 74xx/7xx Systems
302#########################################################################
303
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200304LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000305
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700306#########################################################################
307## PowerPC groups
308#########################################################################
309
310LIST_TSEC=" \
311 ${LIST_83xx} \
312 ${LIST_85xx} \
313 ${LIST_86xx} \
314"
315
Stefan Roese88fbf932010-04-15 16:07:28 +0200316LIST_powerpc=" \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500317 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD0912d312007-11-25 22:39:25 +0100318 ${LIST_512x} \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500319 ${LIST_5xxx} \
320 ${LIST_8xx} \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500321 ${LIST_824x} \
322 ${LIST_8260} \
323 ${LIST_83xx} \
324 ${LIST_85xx} \
325 ${LIST_86xx} \
326 ${LIST_4xx} \
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200327 ${LIST_74xx_7xx}\
Kim Phillips8c0c8932007-08-10 15:34:48 -0500328"
wdenk7ebf7442002-11-02 23:17:16 +0000329
Stefan Roese88fbf932010-04-15 16:07:28 +0200330# Alias "ppc" -> "powerpc" to not break compatibility with older scripts
331# still using "ppc" instead of "powerpc"
332LIST_ppc=" \
333 ${LIST_powerpc} \
334"
335
wdenk7ebf7442002-11-02 23:17:16 +0000336#########################################################################
337## StrongARM Systems
338#########################################################################
339
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400340LIST_SA="$(boards_by_cpu sa1100)"
wdenk7ebf7442002-11-02 23:17:16 +0000341
342#########################################################################
Allen Martinc0171ca2012-08-29 11:08:59 +0000343## ARM7 Systems
344#########################################################################
345
346LIST_ARM7="$(boards_by_cpu arm720t)"
347
348#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000349## ARM9 Systems
350#########################################################################
351
Wolfgang Denk10766192011-09-08 05:01:24 +0000352LIST_ARM9="$(boards_by_cpu arm920t) \
353 $(boards_by_cpu arm926ejs) \
354 $(boards_by_cpu arm925t) \
Allen Martinc0171ca2012-08-29 11:08:59 +0000355 $(boards_by_cpu arm946es) \
wdenk7eaacc52003-08-29 22:00:43 +0000356"
wdenk7ebf7442002-11-02 23:17:16 +0000357
358#########################################################################
wdenkf8062712005-01-09 23:16:25 +0000359## ARM11 Systems
360#########################################################################
Allen Martinc0171ca2012-08-29 11:08:59 +0000361LIST_ARM11="$(boards_by_cpu arm1136) \
362 $(boards_by_cpu arm1176) \
363"
wdenkf8062712005-01-09 23:16:25 +0000364
365#########################################################################
Steve Sakoman6329a8f2010-06-17 21:50:01 -0700366## ARMV7 Systems
Dirk Behme2781f802009-01-27 18:19:12 +0100367#########################################################################
Dirk Behme1b787e32011-08-05 20:48:32 +0000368
369LIST_ARMV7="$(boards_by_cpu armv7)"
Dirk Behme2781f802009-01-27 18:19:12 +0100370
371#########################################################################
Jean-Christophe PLAGNIOL-VILLARD9a88fd12008-05-24 12:47:46 +0200372## AT91 Systems
373#########################################################################
374
Thomas Petazzonia5e85762011-08-04 11:08:50 +0000375LIST_at91="$(boards_by_soc at91)"
Jean-Christophe PLAGNIOL-VILLARD9a88fd12008-05-24 12:47:46 +0200376
377#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000378## Xscale Systems
379#########################################################################
380
Marek Vasut4ccaaef2010-10-04 00:21:51 +0200381LIST_pxa="$(boards_by_cpu pxa)"
wdenk7ebf7442002-11-02 23:17:16 +0000382
Andy Flemingc96fa112012-04-25 09:36:13 +0000383LIST_ixp="$(boards_by_cpu ixp)"
wdenk7ebf7442002-11-02 23:17:16 +0000384
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700385#########################################################################
Stefan Roese8ab8f2a2012-05-30 22:59:43 +0000386## SPEAr Systems
387#########################################################################
388
389LIST_spear="$(boards_by_soc spear)"
390
391#########################################################################
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700392## ARM groups
393#########################################################################
wdenkbd1575f2003-10-14 19:43:55 +0000394
Allen Martinc0171ca2012-08-29 11:08:59 +0000395LIST_arm="$(boards_by_arch arm)"
wdenk7ebf7442002-11-02 23:17:16 +0000396
wdenkbb1b8262003-03-27 12:09:35 +0000397#########################################################################
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200398## MIPS Systems (default = big endian)
wdenkbb1b8262003-03-27 12:09:35 +0000399#########################################################################
400
Kim Phillips8c0c8932007-08-10 15:34:48 -0500401LIST_mips4kc=" \
402 incaip \
Allen Martinc0171ca2012-08-29 11:08:59 +0000403 incaip_100MHz \
404 incaip_133MHz \
405 incaip_150MHz \
Vlad Lungu635e76c2008-01-16 19:27:51 +0200406 qemu_mips \
Stefan Roeseee7a6ba2009-01-21 17:25:01 +0100407 vct_platinum \
408 vct_platinum_small \
409 vct_platinum_onenand \
410 vct_platinum_onenand_small \
411 vct_platinumavc \
412 vct_platinumavc_small \
413 vct_platinumavc_onenand \
414 vct_platinumavc_onenand_small \
415 vct_premium \
416 vct_premium_small \
417 vct_premium_onenand \
418 vct_premium_onenand_small \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500419"
wdenkbb1b8262003-03-27 12:09:35 +0000420
Kim Phillips8c0c8932007-08-10 15:34:48 -0500421LIST_au1xx0=" \
422 dbau1000 \
423 dbau1100 \
424 dbau1500 \
425 dbau1550 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500426"
wdenk9b7f3842003-10-09 20:09:04 +0000427
Kim Phillips8c0c8932007-08-10 15:34:48 -0500428LIST_mips=" \
429 ${LIST_mips4kc} \
430 ${LIST_mips5kc} \
431 ${LIST_au1xx0} \
432"
wdenkbb1b8262003-03-27 12:09:35 +0000433
wdenkabda5ca2003-05-31 18:35:21 +0000434#########################################################################
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200435## MIPS Systems (little endian)
436#########################################################################
437
Kim Phillips8c0c8932007-08-10 15:34:48 -0500438LIST_au1xx0_el=" \
439 dbau1550_el \
Shinya Kuribayashi2437cfb2007-10-27 15:00:25 +0900440 pb1000 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500441"
Kim Phillips8c0c8932007-08-10 15:34:48 -0500442LIST_mips_el=" \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500443 ${LIST_au1xx0_el} \
444"
Stefan Kristianssonc69cb3e2011-11-18 19:21:37 +0000445#########################################################################
446## OpenRISC Systems
447#########################################################################
448
449LIST_openrisc="$(boards_by_arch openrisc)"
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200450
451#########################################################################
Graeme Russcbfce1d2011-04-13 19:43:28 +1000452## x86 Systems
wdenkabda5ca2003-05-31 18:35:21 +0000453#########################################################################
454
Graeme Russcbfce1d2011-04-13 19:43:28 +1000455LIST_x86="$(boards_by_arch x86)"
wdenkabda5ca2003-05-31 18:35:21 +0000456
wdenk3be717f2004-01-03 19:43:48 +0000457#########################################################################
wdenkef3386f2004-10-10 21:27:30 +0000458## Nios-II Systems
459#########################################################################
460
Mike Frysingerda6aa7c2011-06-26 23:00:19 -0400461LIST_nios2="$(boards_by_arch nios2)"
wdenkef3386f2004-10-10 21:27:30 +0000462
463#########################################################################
wdenk20a61222004-07-10 23:48:41 +0000464## MicroBlaze Systems
465#########################################################################
466
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400467LIST_microblaze="$(boards_by_arch microblaze)"
wdenk20a61222004-07-10 23:48:41 +0000468
Zachary P. Landau1c3c0962006-01-26 17:38:46 -0500469#########################################################################
470## ColdFire Systems
471#########################################################################
472
Allen Martinc0171ca2012-08-29 11:08:59 +0000473LIST_m68k="$(boards_by_arch m68k)"
Mike Frysinger6a9c0232011-09-25 19:27:19 +0000474LIST_coldfire=${LIST_m68k}
Zachary P. Landau1c3c0962006-01-26 17:38:46 -0500475
Wolfgang Denk994ad962006-10-24 14:42:37 +0200476#########################################################################
477## AVR32 Systems
478#########################################################################
479
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400480LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk994ad962006-10-24 14:42:37 +0200481
Aubrey.Li450c23e2007-03-09 13:40:56 +0800482#########################################################################
483## Blackfin Systems
484#########################################################################
485
Mike Frysingerdd18ab62010-10-19 02:41:26 -0400486LIST_blackfin="$(boards_by_arch blackfin)"
Aubrey.Li450c23e2007-03-09 13:40:56 +0800487
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100488#########################################################################
489## SH Systems
490#########################################################################
491
Nobuhiro Iwamatsu0c4bcc72010-10-20 01:22:25 +0900492LIST_sh2="$(boards_by_cpu sh2)"
Nobuhiro Iwamatsu06ea8cf2010-10-20 01:28:29 +0900493LIST_sh3="$(boards_by_cpu sh3)"
Nobuhiro Iwamatsuc4c62342010-10-20 01:35:28 +0900494LIST_sh4="$(boards_by_cpu sh4)"
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100495
Nobuhiro Iwamatsuc4c62342010-10-20 01:35:28 +0900496LIST_sh="$(boards_by_arch sh)"
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100497
Daniel Hellstrom9d7c6b22008-03-28 09:47:00 +0100498#########################################################################
499## SPARC Systems
500#########################################################################
501
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400502LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000503
Macpaul Line0eb35a2011-10-19 20:41:10 +0000504#########################################################################
505## NDS32 Systems
506#########################################################################
507
508LIST_nds32="$(boards_by_arch nds32)"
509
wdenk7ebf7442002-11-02 23:17:16 +0000510#-----------------------------------------------------------------------
511
Marek Vasut4f21ade2012-03-05 15:10:51 +0000512get_target_location() {
513 local target=$1
514 local BOARD_NAME=""
515 local CONFIG_NAME=""
516 local board=""
517 local vendor=""
518
519 # Automatic mode
520 local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg`
521
522 if [ -z "${line}" ] ; then echo "" ; return ; fi
523
524 set ${line}
525
526 # add default board name if needed
527 [ $# = 3 ] && set ${line} ${1}
528
529 CONFIG_NAME="${1%_config}"
530
531 [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
532
533 if [ "$4" = "-" ] ; then
534 board=${BOARD_NAME}
535 else
536 board="$4"
537 fi
538
539 [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
540 [ $# -gt 6 ] && [ "$7" != "-" ] && {
541 tmp="${7%:*}"
542 if [ "$tmp" ] ; then
543 CONFIG_NAME="$tmp"
544 fi
545 }
546
547 # Assign board directory to BOARDIR variable
548 if [ -z "${vendor}" ] ; then
549 BOARDDIR=${board}
550 else
551 BOARDDIR=${vendor}/${board}
552 fi
553
554 echo "${CONFIG_NAME}:${BOARDDIR}"
555}
556
557get_target_maintainers() {
558 local name=`echo $1 | cut -d : -f 1`
559
560 if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then
561 echo ""
562 return ;
563 fi
564
565 local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1`
566 local mail=`tac MAINTAINERS | tail -n +${line} | \
567 sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \
568 sed "s/^.*<//;s/>.*$//"`
569 echo "$mail"
570}
571
Allen Martin4b29aed2013-01-29 14:34:58 +0000572get_target_arch() {
573 local target=$1
574
575 # Automatic mode
576 local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg`
577
578 if [ -z "${line}" ] ; then echo "" ; return ; fi
579
580 set ${line}
581 echo "$2"
582}
583
Marek Vasut4f21ade2012-03-05 15:10:51 +0000584list_target() {
585 if [ "$PRINT_MAINTS" != 'y' ] ; then
586 echo "$1"
587 return
588 fi
589
590 echo -n "$1:"
591
592 local loc=`get_target_location $1`
593
594 if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi
595
596 local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"`
597
598 if [ "$MAINTAINERS_ONLY" != 'y' ] ; then
599
600 local dir=`echo ${loc} | cut -d ":" -f 2`
601 local cfg=`echo ${loc} | cut -d ":" -f 1`
602 local git_result=`git log --format=%aE board/${dir} \
603 include/configs/${cfg}.h | grep "@"`
604 local git_result_recent=`echo ${git_result} | tr " " "\n" | \
605 head -n 3`
606 local git_result_top=`echo ${git_result} | tr " " "\n" | \
607 sort | uniq -c | sort -nr | head -n 3 | \
608 sed "s/^ \+[0-9]\+ \+//"`
609
610 echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \
611 sort -u | tr "\n" " " | sed "s/ $//" ;
612 else
613 echo -e "$maintainers_result" | sort -u | tr "\n" " " | \
614 sed "s/ $//" ;
615 fi
616
617 echo ""
618}
619
Andy Flemingaf1cc312012-04-24 19:33:51 +0000620# Each finished build will have a file called ${donep}${n},
621# where n is the index of the build. Each build
622# we've already noted as finished will have ${skipp}${n}.
623# The code managing the build process will use this information
624# to ensure that only BUILD_NBUILDS builds are in flight at once
625donep="${LOG_DIR}/._done_"
626skipp="${LOG_DIR}/._skip_"
627
Joe Hershberger1a268c22012-10-30 15:55:20 +0000628build_target_killed() {
629 echo "Aborted $target build."
630 # Remove the logs for this board since it was aborted
631 rm -f ${LOG_DIR}/$target.MAKELOG ${LOG_DIR}/$target.ERR
632 exit
633}
634
wdenk7ebf7442002-11-02 23:17:16 +0000635build_target() {
636 target=$1
Andy Flemingaf1cc312012-04-24 19:33:51 +0000637 build_idx=$2
638
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000639 if [ "$ONLY_LIST" == 'y' ] ; then
640 list_target ${target}
641 return
642 fi
643
Andy Flemingaf1cc312012-04-24 19:33:51 +0000644 if [ $BUILD_MANY == 1 ] ; then
645 output_dir="${OUTPUT_PREFIX}/${target}"
646 mkdir -p "${output_dir}"
Joe Hershberger1a268c22012-10-30 15:55:20 +0000647 trap build_target_killed TERM
Andy Flemingaf1cc312012-04-24 19:33:51 +0000648 else
649 output_dir="${OUTPUT_PREFIX}"
650 fi
651
652 export BUILD_DIR="${output_dir}"
wdenk7ebf7442002-11-02 23:17:16 +0000653
Allen Martin4b29aed2013-01-29 14:34:58 +0000654 target_arch=$(get_target_arch ${target})
York Sune493ee72013-03-22 07:37:03 +0000655 eval cross_toolchain=\$CROSS_COMPILE_`echo $target_arch | tr '[:lower:]' '[:upper:]'`
Allen Martin4b29aed2013-01-29 14:34:58 +0000656 if [ "${cross_toolchain}" ] ; then
657 MAKE="make CROSS_COMPILE=${cross_toolchain}"
658 elif [ "${CROSS_COMPILE}" ] ; then
659 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
660 else
661 MAKE=make
662 fi
663
wdenk7ebf7442002-11-02 23:17:16 +0000664 ${MAKE} distclean >/dev/null
Kim Phillips5ac3c122010-09-14 14:48:16 -0500665 ${MAKE} -s ${target}_config
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200666
Kim Phillips568ea612012-09-27 14:57:34 +0000667 ${MAKE} ${JOBS} ${CHECK} all \
Andy Flemingaf1cc312012-04-24 19:33:51 +0000668 >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR
Peter Tysera5a27b92009-12-06 23:58:28 -0600669
670 # Check for 'make' errors
671 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
672 RC=1
673 fi
674
Andy Flemingaf1cc312012-04-24 19:33:51 +0000675 if [ $BUILD_MANY == 1 ] ; then
Joe Hershberger1a268c22012-10-30 15:55:20 +0000676 trap - TERM
677
Tom Rinid1e19062012-10-25 08:53:14 +0000678 ${MAKE} -s tidy
Andy Flemingaf1cc312012-04-24 19:33:51 +0000679
680 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
Joe Hershberger67fc0592012-05-21 04:49:38 +0000681 cp ${LOG_DIR}/${target}.ERR ${OUTPUT_PREFIX}/ERR/${target}
Andy Flemingaf1cc312012-04-24 19:33:51 +0000682 else
683 rm ${LOG_DIR}/${target}.ERR
684 fi
Peter Tyser23240d22009-09-21 12:04:32 -0500685 else
Andy Flemingaf1cc312012-04-24 19:33:51 +0000686 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
Joe Hershberger67fc0592012-05-21 04:49:38 +0000687 if grep -iw error ${LOG_DIR}/${target}.ERR ; then
688 : $(( ERR_CNT += 1 ))
689 ERR_LIST="${ERR_LIST} $target"
690 else
691 : $(( WRN_CNT += 1 ))
692 WRN_LIST="${WRN_LIST} $target"
693 fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000694 else
695 rm ${LOG_DIR}/${target}.ERR
696 fi
Peter Tyser23240d22009-09-21 12:04:32 -0500697 fi
698
Andy Flemingaf1cc312012-04-24 19:33:51 +0000699 OBJS=${output_dir}/u-boot
700 if [ -e ${output_dir}/spl/u-boot-spl ]; then
701 OBJS="${OBJS} ${output_dir}/spl/u-boot-spl"
Scott Woodf8b3e232012-02-20 12:56:25 +0000702 fi
703
704 ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG
Andy Flemingaf1cc312012-04-24 19:33:51 +0000705
706 [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR"
707
Andy Flemingaf1cc312012-04-24 19:33:51 +0000708 touch "${donep}${build_idx}"
709}
710
711manage_builds() {
712 search_idx=${OLDEST_IDX}
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000713 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
714
Andy Flemingaf1cc312012-04-24 19:33:51 +0000715 while true; do
716 if [ -e "${donep}${search_idx}" ] ; then
Andy Flemingaf1cc312012-04-24 19:33:51 +0000717 : $(( CURRENT_CNT-- ))
718 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
719 : $(( OLDEST_IDX++ ))
720
721 # Only want to count it once
722 rm -f "${donep}${search_idx}"
723 touch "${skipp}${search_idx}"
724 elif [ -e "${skipp}${search_idx}" ] ; then
725 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
726 : $(( OLDEST_IDX++ ))
727 fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000728 : $(( search_idx++ ))
729 if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then
Andy Flemingaf1cc312012-04-24 19:33:51 +0000730 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
731 search_idx=${OLDEST_IDX}
732 sleep 1
733 else
734 break
735 fi
736 fi
737 done
wdenk7ebf7442002-11-02 23:17:16 +0000738}
Andy Flemingaf1cc312012-04-24 19:33:51 +0000739
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400740build_targets() {
741 for t in "$@" ; do
742 # If a LIST_xxx var exists, use it. But avoid variable
743 # expansion in the eval when a board name contains certain
744 # characters that the shell interprets.
745 case ${t} in
746 *[-+=]*) list= ;;
747 *) list=$(eval echo '${LIST_'$t'}') ;;
748 esac
749 if [ -n "${list}" ] ; then
750 build_targets ${list}
751 else
Andy Flemingaf1cc312012-04-24 19:33:51 +0000752 : $((TOTAL_CNT += 1))
753 : $((CURRENT_CNT += 1))
754 rm -f "${donep}${TOTAL_CNT}"
755 rm -f "${skipp}${TOTAL_CNT}"
Joe Hershberger76c17542012-10-30 15:55:21 +0000756 if [ "$CONTINUE" = 'y' -a -e ${LOG_DIR}/$t.MAKELOG ] ; then
757 : $((SKIP_CNT += 1))
758 touch "${donep}${TOTAL_CNT}"
759 elif [ "$REBUILD_ERRORS" = 'y' -a ! -e ${LOG_DIR}/$t.ERR ] ; then
760 : $((SKIP_CNT += 1))
761 touch "${donep}${TOTAL_CNT}"
Joe Hershberger8536b692012-05-21 04:49:37 +0000762 else
Joe Hershberger76c17542012-10-30 15:55:21 +0000763 if [ $BUILD_MANY == 1 ] ; then
764 build_target ${t} ${TOTAL_CNT} &
765 else
766 CUR_TGT="${t}"
767 build_target ${t} ${TOTAL_CNT}
768 CUR_TGT=''
769 fi
Joe Hershberger8536b692012-05-21 04:49:37 +0000770 fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000771 fi
772
773 # We maintain a running count of all the builds we have done.
774 # Each finished build will have a file called ${donep}${n},
775 # where n is the index of the build. Each build
776 # we've already noted as finished will have ${skipp}${n}.
777 # We track the current index via TOTAL_CNT, and the oldest
778 # index. When we exceed the maximum number of parallel builds,
779 # We look from oldest to current for builds that have completed,
780 # and update the current count and oldest index as appropriate.
781 # If we've gone through the entire list, wait a second, and
782 # reprocess the entire list until we find a build that has
783 # completed
784 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
785 manage_builds
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400786 fi
787 done
788}
wdenk7ebf7442002-11-02 23:17:16 +0000789
790#-----------------------------------------------------------------------
791
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000792kill_children() {
Andreas Bießmann125a1712013-02-07 22:35:57 +0000793 local OS=$(uname -s)
794 local children=""
795 case "${OS}" in
796 "Darwin")
797 # Mac OS X is known to have BSD style ps
798 local pgid=$(ps -p $$ -o pgid | sed -e "/PGID/d")
799 children=$(ps -g $pgid -o pid | sed -e "/PID\|$$\|$pgid/d")
800 ;;
801 *)
802 # everything else tries the GNU style
803 local pgid=$(ps -p $$ --no-headers -o "%r" | tr -d ' ')
804 children=$(pgrep -g $pgid | sed -e "/$$\|$pgid/d")
805 ;;
806 esac
Joe Hershberger1a268c22012-10-30 15:55:20 +0000807
808 kill $children 2> /dev/null
809 wait $children 2> /dev/null
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000810
811 exit
812}
813
Peter Tyser23240d22009-09-21 12:04:32 -0500814print_stats() {
Marek Vasutcc3e1cb2011-12-02 21:32:03 +0000815 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000816
Joe Hershberger1a268c22012-10-30 15:55:20 +0000817 # Only count boards that completed
818 : $((TOTAL_CNT = `find ${skipp}* 2> /dev/null | wc -l`))
819
Andy Flemingaf1cc312012-04-24 19:33:51 +0000820 rm -f ${donep}* ${skipp}*
821
822 if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then
Andy Flemingc594fe82012-08-08 14:12:30 +0000823 ERR_LIST=`grep -riwl error ${OUTPUT_PREFIX}/ERR/`
Joe Hershberger67fc0592012-05-21 04:49:38 +0000824 ERR_LIST=`for f in $ERR_LIST ; do echo -n " $(basename $f)" ; done`
825 ERR_CNT=`echo $ERR_LIST | wc -w | awk '{print $1}'`
Andy Flemingc594fe82012-08-08 14:12:30 +0000826 WRN_LIST=`grep -riwL error ${OUTPUT_PREFIX}/ERR/`
Joe Hershberger67fc0592012-05-21 04:49:38 +0000827 WRN_LIST=`for f in $WRN_LIST ; do echo -n " $(basename $f)" ; done`
828 WRN_CNT=`echo $WRN_LIST | wc -w | awk '{print $1}'`
Joe Hershberger1a268c22012-10-30 15:55:20 +0000829 else
830 # Remove the logs for any board that was interrupted
831 rm -f ${LOG_DIR}/${CUR_TGT}.MAKELOG ${LOG_DIR}/${CUR_TGT}.ERR
Andy Flemingaf1cc312012-04-24 19:33:51 +0000832 fi
833
Joe Hershberger76c17542012-10-30 15:55:21 +0000834 : $((TOTAL_CNT -= ${SKIP_CNT}))
Peter Tyser23240d22009-09-21 12:04:32 -0500835 echo ""
836 echo "--------------------- SUMMARY ----------------------------"
Joe Hershberger76c17542012-10-30 15:55:21 +0000837 if [ "$CONTINUE" = 'y' -o "$REBUILD_ERRORS" = 'y' ] ; then
838 echo "Boards skipped: ${SKIP_CNT}"
839 fi
Peter Tyser23240d22009-09-21 12:04:32 -0500840 echo "Boards compiled: ${TOTAL_CNT}"
841 if [ ${ERR_CNT} -gt 0 ] ; then
Joe Hershberger67fc0592012-05-21 04:49:38 +0000842 echo "Boards with errors: ${ERR_CNT} (${ERR_LIST} )"
843 fi
844 if [ ${WRN_CNT} -gt 0 ] ; then
845 echo "Boards with warnings but no errors: ${WRN_CNT} (${WRN_LIST} )"
Peter Tyser23240d22009-09-21 12:04:32 -0500846 fi
847 echo "----------------------------------------------------------"
Peter Tysera5a27b92009-12-06 23:58:28 -0600848
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000849 if [ $BUILD_MANY == 1 ] ; then
Joe Hershberger1a268c22012-10-30 15:55:20 +0000850 kill_children
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000851 fi
852
Peter Tysera5a27b92009-12-06 23:58:28 -0600853 exit $RC
Peter Tyser23240d22009-09-21 12:04:32 -0500854}
wdenk7ebf7442002-11-02 23:17:16 +0000855
Peter Tyser23240d22009-09-21 12:04:32 -0500856#-----------------------------------------------------------------------
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400857
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200858# Build target groups selected by options, plus any command line args
859set -- ${SELECTED} "$@"
860# run PowerPC by default
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400861[ $# = 0 ] && set -- powerpc
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400862build_targets "$@"
Andy Flemingaf1cc312012-04-24 19:33:51 +0000863wait