blob: eb7dd027d3704491840054d1fce895cfa4509d9a [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
Mike Frysingered639982011-04-21 22:01:43 +000022 -h, --help This help output
23
24 Selections by these options are logically ANDed; if the same option
25 is used repeatedly, such selections are ORed. So "-v FOO -v BAR"
26 will select all configurations where the vendor is either FOO or
27 BAR. Any additional arguments specified on the command line are
28 always build additionally. See the boards.cfg file for more info.
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020029
Mike Frysingered639982011-04-21 22:01:43 +000030 If no boards are specified, then the default is "powerpc".
31
32 Environment variables:
33 BUILD_NCPUS number of parallel make jobs (default: auto)
34 CROSS_COMPILE cross-compiler toolchain prefix (default: "")
35 MAKEALL_LOGDIR output all logs to here (default: ./LOG/)
36 BUILD_DIR output build directory (default: ./)
Andy Flemingaf1cc312012-04-24 19:33:51 +000037 BUILD_NBUILDS number of parallel targets (default: 1)
Mike Frysingered639982011-04-21 22:01:43 +000038
39 Examples:
40 - build all Power Architecture boards:
41 MAKEALL -a powerpc
42 MAKEALL --arch powerpc
43 MAKEALL powerpc
44 - build all PowerPC boards manufactured by vendor "esd":
45 MAKEALL -a powerpc -v esd
46 - build all PowerPC boards manufactured either by "keymile" or "siemens":
47 MAKEALL -a powerpc -v keymile -v siemens
48 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
49 MAKEALL -c mpc83xx -v freescale 4xx
50 EOF
51 exit ${ret}
52}
53
Marek Vasut4f21ade2012-03-05 15:10:51 +000054SHORT_OPTS="ha:c:v:s:lmM"
55LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020056
57# Option processing based on util-linux-2.13/getopt-parse.bash
58
Wolfgang Denk1136f692010-10-27 22:48:30 +020059# Note that we use `"$@"' to let each command-line parameter expand to a
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020060# separate word. The quotes around `$@' are essential!
61# We need TEMP as the `eval set --' would nuke the return value of
62# getopt.
63TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
64 -n 'MAKEALL' -- "$@"`
65
Mike Frysingered639982011-04-21 22:01:43 +000066[ $? != 0 ] && usage 1
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020067
68# Note the quotes around `$TEMP': they are essential!
69eval set -- "$TEMP"
70
71SELECTED=''
Marek Vasutcc3e1cb2011-12-02 21:32:03 +000072ONLY_LIST=''
Marek Vasut4f21ade2012-03-05 15:10:51 +000073PRINT_MAINTS=''
74MAINTAINERS_ONLY=''
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020075
76while true ; do
77 case "$1" in
78 -a|--arch)
79 # echo "Option ARCH: argument \`$2'"
80 if [ "$opt_a" ] ; then
81 opt_a="${opt_a%)} || \$2 == \"$2\")"
82 else
83 opt_a="(\$2 == \"$2\")"
84 fi
85 SELECTED='y'
86 shift 2 ;;
87 -c|--cpu)
88 # echo "Option CPU: argument \`$2'"
89 if [ "$opt_c" ] ; then
Allen Martin43e92742012-08-31 08:30:06 +000090 opt_c="${opt_c%)} || \$3 == \"$2\" || \$3 ~ /$2:/)"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020091 else
Allen Martin43e92742012-08-31 08:30:06 +000092 opt_c="(\$3 == \"$2\" || \$3 ~ /$2:/)"
Wolfgang Denk7b74fec2010-10-17 12:26:48 +020093 fi
94 SELECTED='y'
95 shift 2 ;;
96 -s|--soc)
97 # echo "Option SoC: argument \`$2'"
98 if [ "$opt_s" ] ; then
99 opt_s="${opt_s%)} || \$6 == \"$2\")"
100 else
101 opt_s="(\$6 == \"$2\")"
102 fi
103 SELECTED='y'
104 shift 2 ;;
105 -v|--vendor)
106 # echo "Option VENDOR: argument \`$2'"
107 if [ "$opt_v" ] ; then
108 opt_v="${opt_v%)} || \$5 == \"$2\")"
109 else
110 opt_v="(\$5 == \"$2\")"
111 fi
112 SELECTED='y'
113 shift 2 ;;
Marek Vasutcc3e1cb2011-12-02 21:32:03 +0000114 -l|--list)
115 ONLY_LIST='y'
116 shift ;;
Marek Vasut4f21ade2012-03-05 15:10:51 +0000117 -m|--maintainers)
118 ONLY_LIST='y'
119 PRINT_MAINTS='y'
120 MAINTAINERS_ONLY='y'
121 shift ;;
122 -M|--mails)
123 ONLY_LIST='y'
124 PRINT_MAINTS='y'
125 shift ;;
Mike Frysingered639982011-04-21 22:01:43 +0000126 -h|--help)
127 usage ;;
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200128 --)
129 shift ; break ;;
130 *)
131 echo "Internal error!" >&2 ; exit 1 ;;
132 esac
133done
134# echo "Remaining arguments:"
135# for arg do echo '--> '"\`$arg'" ; done
136
137FILTER="\$1 !~ /^#/"
138[ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
139[ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
140[ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
141[ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
142
143if [ "$SELECTED" ] ; then
144 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
Peter Tyser2f887602010-10-29 17:59:06 -0500145
146 # Make sure some boards from boards.cfg are actually found
147 if [ -z "$SELECTED" ] ; then
148 echo "Error: No boards selected, invalid arguments"
149 exit 1
150 fi
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200151fi
152
153#########################################################################
154
Peter Tyser23240d22009-09-21 12:04:32 -0500155# Print statistics when we exit
156trap exit 1 2 3 15
157trap print_stats 0
158
Wolfgang Denkde5d6602008-12-09 00:39:08 +0100159# Determine number of CPU cores if no default was set
160: ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
161
162if [ "$BUILD_NCPUS" -gt 1 ]
163then
Peter Tyser8a07f9a2009-09-21 12:04:33 -0500164 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denkde5d6602008-12-09 00:39:08 +0100165else
166 JOBS=""
167fi
168
wdenkc0aa5c52003-12-06 19:49:23 +0000169
wdenk7ebf7442002-11-02 23:17:16 +0000170if [ "${CROSS_COMPILE}" ] ; then
171 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
172else
173 MAKE=make
174fi
175
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200176if [ "${MAKEALL_LOGDIR}" ] ; then
177 LOG_DIR=${MAKEALL_LOGDIR}
178else
179 LOG_DIR="LOG"
180fi
Stefan Roese42fbddd2006-09-07 11:51:23 +0200181
Andy Flemingaf1cc312012-04-24 19:33:51 +0000182: ${BUILD_NBUILDS:=1}
183BUILD_MANY=0
184
185if [ "${BUILD_NBUILDS}" -gt 1 ] ; then
186 BUILD_MANY=1
187 : ${BUILD_DIR:=./build}
188 mkdir -p "${BUILD_DIR}/ERR"
189 find "${BUILD_DIR}/ERR/" -type f -exec rm -f {} +
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200190fi
191
Andy Flemingaf1cc312012-04-24 19:33:51 +0000192: ${BUILD_DIR:=.}
193
194OUTPUT_PREFIX="${BUILD_DIR}"
195
196[ -d ${LOG_DIR} ] || mkdir "${LOG_DIR}" || exit 1
197find "${LOG_DIR}/" -type f -exec rm -f {} +
wdenk7ebf7442002-11-02 23:17:16 +0000198
199LIST=""
200
Peter Tyser23240d22009-09-21 12:04:32 -0500201# Keep track of the number of builds and errors
202ERR_CNT=0
203ERR_LIST=""
Joe Hershberger67fc0592012-05-21 04:49:38 +0000204WRN_CNT=0
205WRN_LIST=""
Peter Tyser23240d22009-09-21 12:04:32 -0500206TOTAL_CNT=0
Andy Flemingaf1cc312012-04-24 19:33:51 +0000207CURRENT_CNT=0
208OLDEST_IDX=1
Peter Tysera5a27b92009-12-06 23:58:28 -0600209RC=0
Peter Tyser23240d22009-09-21 12:04:32 -0500210
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400211# Helper funcs for parsing boards.cfg
212boards_by_field()
213{
Allen Martin43e92742012-08-31 08:30:06 +0000214 FS="[ \t]+"
215 [ -n "$3" ] && FS="$3"
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400216 awk \
217 -v field="$1" \
218 -v select="$2" \
Allen Martin43e92742012-08-31 08:30:06 +0000219 -F "$FS" \
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400220 '($1 !~ /^#/ && $field == select) { print $1 }' \
221 boards.cfg
222}
223boards_by_arch() { boards_by_field 2 "$@" ; }
Allen Martin43e92742012-08-31 08:30:06 +0000224boards_by_cpu() { boards_by_field 3 "$@" "[: \t]+" ; }
Andreas Bießmannbb96a8e2010-11-30 09:45:04 +0000225boards_by_soc() { boards_by_field 6 "$@" ; }
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400226
wdenk7ebf7442002-11-02 23:17:16 +0000227#########################################################################
wdenk359733b2003-03-31 17:27:09 +0000228## MPC5xx Systems
229#########################################################################
230
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400231LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk359733b2003-03-31 17:27:09 +0000232
233#########################################################################
wdenk21136db2003-07-16 21:53:01 +0000234## MPC5xxx Systems
235#########################################################################
236
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200237LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk21136db2003-07-16 21:53:01 +0000238
239#########################################################################
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200240## MPC512x Systems
241#########################################################################
242
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200243LIST_512x="$(boards_by_cpu mpc512x)"
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200244
245#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000246## MPC8xx Systems
247#########################################################################
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400248
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200249LIST_8xx="$(boards_by_cpu mpc8xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000250
251#########################################################################
252## PPC4xx Systems
253#########################################################################
254
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200255LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000256
257#########################################################################
wdenk337f5652004-10-28 00:09:35 +0000258## MPC8220 Systems
259#########################################################################
260
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400261LIST_8220="$(boards_by_cpu mpc8220)"
wdenk337f5652004-10-28 00:09:35 +0000262
263#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000264## MPC824x Systems
265#########################################################################
266
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200267LIST_824x="$(boards_by_cpu mpc824x)"
wdenkdbae5042003-06-21 00:17:24 +0000268
wdenk7ebf7442002-11-02 23:17:16 +0000269#########################################################################
wdenk541a76d2003-05-03 15:50:43 +0000270## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000271#########################################################################
272
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200273LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000274
275#########################################################################
Eran Liberty9095d4a2005-07-28 10:08:46 -0500276## MPC83xx Systems (includes 8349, etc.)
277#########################################################################
278
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200279LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Liberty9095d4a2005-07-28 10:08:46 -0500280
281#########################################################################
wdenk9c53f402003-10-15 23:53:47 +0000282## MPC85xx Systems (includes 8540, 8560 etc.)
283#########################################################################
284
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200285LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk9c53f402003-10-15 23:53:47 +0000286
287#########################################################################
Jon Loeliger5fe34492007-05-23 14:09:46 -0500288## MPC86xx Systems
289#########################################################################
290
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200291LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger5fe34492007-05-23 14:09:46 -0500292
293#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000294## 74xx/7xx Systems
295#########################################################################
296
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200297LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000298
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700299#########################################################################
300## PowerPC groups
301#########################################################################
302
303LIST_TSEC=" \
304 ${LIST_83xx} \
305 ${LIST_85xx} \
306 ${LIST_86xx} \
307"
308
Stefan Roese88fbf932010-04-15 16:07:28 +0200309LIST_powerpc=" \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500310 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD0912d312007-11-25 22:39:25 +0100311 ${LIST_512x} \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500312 ${LIST_5xxx} \
313 ${LIST_8xx} \
314 ${LIST_8220} \
315 ${LIST_824x} \
316 ${LIST_8260} \
317 ${LIST_83xx} \
318 ${LIST_85xx} \
319 ${LIST_86xx} \
320 ${LIST_4xx} \
Wolfgang Denk291ba1b2010-10-06 09:05:45 +0200321 ${LIST_74xx_7xx}\
Kim Phillips8c0c8932007-08-10 15:34:48 -0500322"
wdenk7ebf7442002-11-02 23:17:16 +0000323
Stefan Roese88fbf932010-04-15 16:07:28 +0200324# Alias "ppc" -> "powerpc" to not break compatibility with older scripts
325# still using "ppc" instead of "powerpc"
326LIST_ppc=" \
327 ${LIST_powerpc} \
328"
329
wdenk7ebf7442002-11-02 23:17:16 +0000330#########################################################################
331## StrongARM Systems
332#########################################################################
333
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400334LIST_SA="$(boards_by_cpu sa1100)"
wdenk7ebf7442002-11-02 23:17:16 +0000335
336#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000337## ARM9 Systems
338#########################################################################
339
Wolfgang Denk10766192011-09-08 05:01:24 +0000340LIST_ARM9="$(boards_by_cpu arm920t) \
341 $(boards_by_cpu arm926ejs) \
342 $(boards_by_cpu arm925t) \
wdenk7eaacc52003-08-29 22:00:43 +0000343"
wdenk7ebf7442002-11-02 23:17:16 +0000344
345#########################################################################
wdenkf8062712005-01-09 23:16:25 +0000346## ARM11 Systems
347#########################################################################
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000348LIST_ARM11="$(boards_by_cpu arm1136)"
wdenkf8062712005-01-09 23:16:25 +0000349
350#########################################################################
Steve Sakoman6329a8f2010-06-17 21:50:01 -0700351## ARMV7 Systems
Dirk Behme2781f802009-01-27 18:19:12 +0100352#########################################################################
Dirk Behme1b787e32011-08-05 20:48:32 +0000353
354LIST_ARMV7="$(boards_by_cpu armv7)"
Dirk Behme2781f802009-01-27 18:19:12 +0100355
356#########################################################################
Jean-Christophe PLAGNIOL-VILLARD9a88fd12008-05-24 12:47:46 +0200357## AT91 Systems
358#########################################################################
359
Thomas Petazzonia5e85762011-08-04 11:08:50 +0000360LIST_at91="$(boards_by_soc at91)"
Jean-Christophe PLAGNIOL-VILLARD9a88fd12008-05-24 12:47:46 +0200361
362#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000363## Xscale Systems
364#########################################################################
365
Marek Vasut4ccaaef2010-10-04 00:21:51 +0200366LIST_pxa="$(boards_by_cpu pxa)"
wdenk7ebf7442002-11-02 23:17:16 +0000367
Andy Flemingc96fa112012-04-25 09:36:13 +0000368LIST_ixp="$(boards_by_cpu ixp)"
wdenk7ebf7442002-11-02 23:17:16 +0000369
Wolfgang Denk66549bd2008-04-20 15:35:52 -0700370#########################################################################
371## ARM groups
372#########################################################################
wdenkbd1575f2003-10-14 19:43:55 +0000373
Dirk Behme2781f802009-01-27 18:19:12 +0100374LIST_arm=" \
375 ${LIST_SA} \
Dirk Behme2781f802009-01-27 18:19:12 +0100376 ${LIST_ARM9} \
377 ${LIST_ARM10} \
378 ${LIST_ARM11} \
Steve Sakoman6329a8f2010-06-17 21:50:01 -0700379 ${LIST_ARMV7} \
Dirk Behme2781f802009-01-27 18:19:12 +0100380 ${LIST_at91} \
381 ${LIST_pxa} \
382 ${LIST_ixp} \
wdenkf8062712005-01-09 23:16:25 +0000383"
wdenk7ebf7442002-11-02 23:17:16 +0000384
wdenkbb1b8262003-03-27 12:09:35 +0000385#########################################################################
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200386## MIPS Systems (default = big endian)
wdenkbb1b8262003-03-27 12:09:35 +0000387#########################################################################
388
Kim Phillips8c0c8932007-08-10 15:34:48 -0500389LIST_mips4kc=" \
390 incaip \
Vlad Lungu635e76c2008-01-16 19:27:51 +0200391 qemu_mips \
Stefan Roeseee7a6ba2009-01-21 17:25:01 +0100392 vct_platinum \
393 vct_platinum_small \
394 vct_platinum_onenand \
395 vct_platinum_onenand_small \
396 vct_platinumavc \
397 vct_platinumavc_small \
398 vct_platinumavc_onenand \
399 vct_platinumavc_onenand_small \
400 vct_premium \
401 vct_premium_small \
402 vct_premium_onenand \
403 vct_premium_onenand_small \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500404"
wdenkbb1b8262003-03-27 12:09:35 +0000405
Kim Phillips8c0c8932007-08-10 15:34:48 -0500406LIST_au1xx0=" \
407 dbau1000 \
408 dbau1100 \
409 dbau1500 \
410 dbau1550 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500411 gth2 \
412"
wdenk9b7f3842003-10-09 20:09:04 +0000413
Kim Phillips8c0c8932007-08-10 15:34:48 -0500414LIST_mips=" \
415 ${LIST_mips4kc} \
416 ${LIST_mips5kc} \
417 ${LIST_au1xx0} \
418"
wdenkbb1b8262003-03-27 12:09:35 +0000419
wdenkabda5ca2003-05-31 18:35:21 +0000420#########################################################################
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200421## MIPS Systems (little endian)
422#########################################################################
423
Daniel Schwierzecka10aa182011-11-24 03:57:56 +0000424LIST_xburst_el=" \
Xiangfu Liu7306ccb2011-10-12 12:24:06 +0800425 qi_lb60 \
426"
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200427
Kim Phillips8c0c8932007-08-10 15:34:48 -0500428LIST_au1xx0_el=" \
429 dbau1550_el \
Shinya Kuribayashi2437cfb2007-10-27 15:00:25 +0900430 pb1000 \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500431"
Kim Phillips8c0c8932007-08-10 15:34:48 -0500432LIST_mips_el=" \
Daniel Schwierzecka10aa182011-11-24 03:57:56 +0000433 ${LIST_xburst_el} \
Kim Phillips8c0c8932007-08-10 15:34:48 -0500434 ${LIST_au1xx0_el} \
435"
Stefan Kristianssonc69cb3e2011-11-18 19:21:37 +0000436#########################################################################
437## OpenRISC Systems
438#########################################################################
439
440LIST_openrisc="$(boards_by_arch openrisc)"
Wolfgang Denkbc8c5002005-08-14 00:27:00 +0200441
442#########################################################################
Graeme Russcbfce1d2011-04-13 19:43:28 +1000443## x86 Systems
wdenkabda5ca2003-05-31 18:35:21 +0000444#########################################################################
445
Graeme Russcbfce1d2011-04-13 19:43:28 +1000446LIST_x86="$(boards_by_arch x86)"
wdenkabda5ca2003-05-31 18:35:21 +0000447
wdenk3be717f2004-01-03 19:43:48 +0000448#########################################################################
wdenkef3386f2004-10-10 21:27:30 +0000449## Nios-II Systems
450#########################################################################
451
Mike Frysingerda6aa7c2011-06-26 23:00:19 -0400452LIST_nios2="$(boards_by_arch nios2)"
wdenkef3386f2004-10-10 21:27:30 +0000453
454#########################################################################
wdenk20a61222004-07-10 23:48:41 +0000455## MicroBlaze Systems
456#########################################################################
457
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400458LIST_microblaze="$(boards_by_arch microblaze)"
wdenk20a61222004-07-10 23:48:41 +0000459
Zachary P. Landau1c3c0962006-01-26 17:38:46 -0500460#########################################################################
461## ColdFire Systems
462#########################################################################
463
Mike Frysinger6a9c0232011-09-25 19:27:19 +0000464LIST_m68k="$(boards_by_arch m68k)
Kim Phillips8c0c8932007-08-10 15:34:48 -0500465 EB+MCF-EV123 \
466 EB+MCF-EV123_internal \
TsiChungLiew99b037a2008-01-14 17:43:33 -0600467 M52277EVB \
TsiChungLiewb859ef12007-08-16 19:23:50 -0500468 M5235EVB \
TsiChung Liew3cdc00a2008-08-11 13:41:49 +0000469 M54451EVB \
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -0500470 M54455EVB \
Heiko Schocherac1956e2006-04-20 08:42:42 +0200471"
Mike Frysinger6a9c0232011-09-25 19:27:19 +0000472LIST_coldfire=${LIST_m68k}
Zachary P. Landau1c3c0962006-01-26 17:38:46 -0500473
Wolfgang Denk994ad962006-10-24 14:42:37 +0200474#########################################################################
475## AVR32 Systems
476#########################################################################
477
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400478LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk994ad962006-10-24 14:42:37 +0200479
Aubrey.Li450c23e2007-03-09 13:40:56 +0800480#########################################################################
481## Blackfin Systems
482#########################################################################
483
Mike Frysingerdd18ab62010-10-19 02:41:26 -0400484LIST_blackfin="$(boards_by_arch blackfin)"
Aubrey.Li450c23e2007-03-09 13:40:56 +0800485
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100486#########################################################################
487## SH Systems
488#########################################################################
489
Nobuhiro Iwamatsu0c4bcc72010-10-20 01:22:25 +0900490LIST_sh2="$(boards_by_cpu sh2)"
Nobuhiro Iwamatsu06ea8cf2010-10-20 01:28:29 +0900491LIST_sh3="$(boards_by_cpu sh3)"
Nobuhiro Iwamatsuc4c62342010-10-20 01:35:28 +0900492LIST_sh4="$(boards_by_cpu sh4)"
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100493
Nobuhiro Iwamatsuc4c62342010-10-20 01:35:28 +0900494LIST_sh="$(boards_by_arch sh)"
Jean-Christophe PLAGNIOL-VILLARDceee3382007-11-27 09:44:53 +0100495
Daniel Hellstrom9d7c6b22008-03-28 09:47:00 +0100496#########################################################################
497## SPARC Systems
498#########################################################################
499
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400500LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000501
Macpaul Line0eb35a2011-10-19 20:41:10 +0000502#########################################################################
503## NDS32 Systems
504#########################################################################
505
506LIST_nds32="$(boards_by_arch nds32)"
507
wdenk7ebf7442002-11-02 23:17:16 +0000508#-----------------------------------------------------------------------
509
Marek Vasut4f21ade2012-03-05 15:10:51 +0000510get_target_location() {
511 local target=$1
512 local BOARD_NAME=""
513 local CONFIG_NAME=""
514 local board=""
515 local vendor=""
516
517 # Automatic mode
518 local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg`
519
520 if [ -z "${line}" ] ; then echo "" ; return ; fi
521
522 set ${line}
523
524 # add default board name if needed
525 [ $# = 3 ] && set ${line} ${1}
526
527 CONFIG_NAME="${1%_config}"
528
529 [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
530
531 if [ "$4" = "-" ] ; then
532 board=${BOARD_NAME}
533 else
534 board="$4"
535 fi
536
537 [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
538 [ $# -gt 6 ] && [ "$7" != "-" ] && {
539 tmp="${7%:*}"
540 if [ "$tmp" ] ; then
541 CONFIG_NAME="$tmp"
542 fi
543 }
544
545 # Assign board directory to BOARDIR variable
546 if [ -z "${vendor}" ] ; then
547 BOARDDIR=${board}
548 else
549 BOARDDIR=${vendor}/${board}
550 fi
551
552 echo "${CONFIG_NAME}:${BOARDDIR}"
553}
554
555get_target_maintainers() {
556 local name=`echo $1 | cut -d : -f 1`
557
558 if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then
559 echo ""
560 return ;
561 fi
562
563 local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1`
564 local mail=`tac MAINTAINERS | tail -n +${line} | \
565 sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \
566 sed "s/^.*<//;s/>.*$//"`
567 echo "$mail"
568}
569
570list_target() {
571 if [ "$PRINT_MAINTS" != 'y' ] ; then
572 echo "$1"
573 return
574 fi
575
576 echo -n "$1:"
577
578 local loc=`get_target_location $1`
579
580 if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi
581
582 local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"`
583
584 if [ "$MAINTAINERS_ONLY" != 'y' ] ; then
585
586 local dir=`echo ${loc} | cut -d ":" -f 2`
587 local cfg=`echo ${loc} | cut -d ":" -f 1`
588 local git_result=`git log --format=%aE board/${dir} \
589 include/configs/${cfg}.h | grep "@"`
590 local git_result_recent=`echo ${git_result} | tr " " "\n" | \
591 head -n 3`
592 local git_result_top=`echo ${git_result} | tr " " "\n" | \
593 sort | uniq -c | sort -nr | head -n 3 | \
594 sed "s/^ \+[0-9]\+ \+//"`
595
596 echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \
597 sort -u | tr "\n" " " | sed "s/ $//" ;
598 else
599 echo -e "$maintainers_result" | sort -u | tr "\n" " " | \
600 sed "s/ $//" ;
601 fi
602
603 echo ""
604}
605
Andy Flemingaf1cc312012-04-24 19:33:51 +0000606# Each finished build will have a file called ${donep}${n},
607# where n is the index of the build. Each build
608# we've already noted as finished will have ${skipp}${n}.
609# The code managing the build process will use this information
610# to ensure that only BUILD_NBUILDS builds are in flight at once
611donep="${LOG_DIR}/._done_"
612skipp="${LOG_DIR}/._skip_"
613
wdenk7ebf7442002-11-02 23:17:16 +0000614build_target() {
615 target=$1
Andy Flemingaf1cc312012-04-24 19:33:51 +0000616 build_idx=$2
617
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000618 if [ "$ONLY_LIST" == 'y' ] ; then
619 list_target ${target}
620 return
621 fi
622
Andy Flemingaf1cc312012-04-24 19:33:51 +0000623 if [ $BUILD_MANY == 1 ] ; then
624 output_dir="${OUTPUT_PREFIX}/${target}"
625 mkdir -p "${output_dir}"
626 else
627 output_dir="${OUTPUT_PREFIX}"
628 fi
629
630 export BUILD_DIR="${output_dir}"
wdenk7ebf7442002-11-02 23:17:16 +0000631
632 ${MAKE} distclean >/dev/null
Kim Phillips5ac3c122010-09-14 14:48:16 -0500633 ${MAKE} -s ${target}_config
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200634
Andy Flemingaf1cc312012-04-24 19:33:51 +0000635 ${MAKE} ${JOBS} all \
636 >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR
Peter Tysera5a27b92009-12-06 23:58:28 -0600637
638 # Check for 'make' errors
639 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
640 RC=1
641 fi
642
Andy Flemingaf1cc312012-04-24 19:33:51 +0000643 if [ $BUILD_MANY == 1 ] ; then
644 ${MAKE} tidy
645
646 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
Joe Hershberger67fc0592012-05-21 04:49:38 +0000647 cp ${LOG_DIR}/${target}.ERR ${OUTPUT_PREFIX}/ERR/${target}
Andy Flemingaf1cc312012-04-24 19:33:51 +0000648 else
649 rm ${LOG_DIR}/${target}.ERR
650 fi
Peter Tyser23240d22009-09-21 12:04:32 -0500651 else
Andy Flemingaf1cc312012-04-24 19:33:51 +0000652 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
Joe Hershberger67fc0592012-05-21 04:49:38 +0000653 if grep -iw error ${LOG_DIR}/${target}.ERR ; then
654 : $(( ERR_CNT += 1 ))
655 ERR_LIST="${ERR_LIST} $target"
656 else
657 : $(( WRN_CNT += 1 ))
658 WRN_LIST="${WRN_LIST} $target"
659 fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000660 else
661 rm ${LOG_DIR}/${target}.ERR
662 fi
Peter Tyser23240d22009-09-21 12:04:32 -0500663 fi
664
Andy Flemingaf1cc312012-04-24 19:33:51 +0000665 OBJS=${output_dir}/u-boot
666 if [ -e ${output_dir}/spl/u-boot-spl ]; then
667 OBJS="${OBJS} ${output_dir}/spl/u-boot-spl"
Scott Woodf8b3e232012-02-20 12:56:25 +0000668 fi
669
670 ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG
Andy Flemingaf1cc312012-04-24 19:33:51 +0000671
672 [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR"
673
Andy Flemingaf1cc312012-04-24 19:33:51 +0000674 touch "${donep}${build_idx}"
675}
676
677manage_builds() {
678 search_idx=${OLDEST_IDX}
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000679 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
680
Andy Flemingaf1cc312012-04-24 19:33:51 +0000681 while true; do
682 if [ -e "${donep}${search_idx}" ] ; then
Andy Flemingaf1cc312012-04-24 19:33:51 +0000683 : $(( CURRENT_CNT-- ))
684 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
685 : $(( OLDEST_IDX++ ))
686
687 # Only want to count it once
688 rm -f "${donep}${search_idx}"
689 touch "${skipp}${search_idx}"
690 elif [ -e "${skipp}${search_idx}" ] ; then
691 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
692 : $(( OLDEST_IDX++ ))
693 fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000694 : $(( search_idx++ ))
695 if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then
Andy Flemingaf1cc312012-04-24 19:33:51 +0000696 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
697 search_idx=${OLDEST_IDX}
698 sleep 1
699 else
700 break
701 fi
702 fi
703 done
wdenk7ebf7442002-11-02 23:17:16 +0000704}
Andy Flemingaf1cc312012-04-24 19:33:51 +0000705
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400706build_targets() {
707 for t in "$@" ; do
708 # If a LIST_xxx var exists, use it. But avoid variable
709 # expansion in the eval when a board name contains certain
710 # characters that the shell interprets.
711 case ${t} in
712 *[-+=]*) list= ;;
713 *) list=$(eval echo '${LIST_'$t'}') ;;
714 esac
715 if [ -n "${list}" ] ; then
716 build_targets ${list}
717 else
Andy Flemingaf1cc312012-04-24 19:33:51 +0000718 : $((TOTAL_CNT += 1))
719 : $((CURRENT_CNT += 1))
720 rm -f "${donep}${TOTAL_CNT}"
721 rm -f "${skipp}${TOTAL_CNT}"
Joe Hershberger8536b692012-05-21 04:49:37 +0000722 if [ $BUILD_MANY == 1 ] ; then
723 build_target ${t} ${TOTAL_CNT} &
724 else
725 build_target ${t} ${TOTAL_CNT}
726 fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000727 fi
728
729 # We maintain a running count of all the builds we have done.
730 # Each finished build will have a file called ${donep}${n},
731 # where n is the index of the build. Each build
732 # we've already noted as finished will have ${skipp}${n}.
733 # We track the current index via TOTAL_CNT, and the oldest
734 # index. When we exceed the maximum number of parallel builds,
735 # We look from oldest to current for builds that have completed,
736 # and update the current count and oldest index as appropriate.
737 # If we've gone through the entire list, wait a second, and
738 # reprocess the entire list until we find a build that has
739 # completed
740 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
741 manage_builds
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400742 fi
743 done
744}
wdenk7ebf7442002-11-02 23:17:16 +0000745
746#-----------------------------------------------------------------------
747
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000748kill_children() {
749 kill -- "-$1"
750
751 exit
752}
753
Peter Tyser23240d22009-09-21 12:04:32 -0500754print_stats() {
Marek Vasutcc3e1cb2011-12-02 21:32:03 +0000755 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
Andy Flemingaf1cc312012-04-24 19:33:51 +0000756
757 rm -f ${donep}* ${skipp}*
758
759 if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then
Andy Flemingc594fe82012-08-08 14:12:30 +0000760 ERR_LIST=`grep -riwl error ${OUTPUT_PREFIX}/ERR/`
Joe Hershberger67fc0592012-05-21 04:49:38 +0000761 ERR_LIST=`for f in $ERR_LIST ; do echo -n " $(basename $f)" ; done`
762 ERR_CNT=`echo $ERR_LIST | wc -w | awk '{print $1}'`
Andy Flemingc594fe82012-08-08 14:12:30 +0000763 WRN_LIST=`grep -riwL error ${OUTPUT_PREFIX}/ERR/`
Joe Hershberger67fc0592012-05-21 04:49:38 +0000764 WRN_LIST=`for f in $WRN_LIST ; do echo -n " $(basename $f)" ; done`
765 WRN_CNT=`echo $WRN_LIST | wc -w | awk '{print $1}'`
Andy Flemingaf1cc312012-04-24 19:33:51 +0000766 fi
767
Peter Tyser23240d22009-09-21 12:04:32 -0500768 echo ""
769 echo "--------------------- SUMMARY ----------------------------"
770 echo "Boards compiled: ${TOTAL_CNT}"
771 if [ ${ERR_CNT} -gt 0 ] ; then
Joe Hershberger67fc0592012-05-21 04:49:38 +0000772 echo "Boards with errors: ${ERR_CNT} (${ERR_LIST} )"
773 fi
774 if [ ${WRN_CNT} -gt 0 ] ; then
775 echo "Boards with warnings but no errors: ${WRN_CNT} (${WRN_LIST} )"
Peter Tyser23240d22009-09-21 12:04:32 -0500776 fi
777 echo "----------------------------------------------------------"
Peter Tysera5a27b92009-12-06 23:58:28 -0600778
Andy Fleming2f36f0a2012-05-09 20:36:28 +0000779 if [ $BUILD_MANY == 1 ] ; then
780 kill_children $$ &
781 fi
782
Peter Tysera5a27b92009-12-06 23:58:28 -0600783 exit $RC
Peter Tyser23240d22009-09-21 12:04:32 -0500784}
wdenk7ebf7442002-11-02 23:17:16 +0000785
Peter Tyser23240d22009-09-21 12:04:32 -0500786#-----------------------------------------------------------------------
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400787
Wolfgang Denk7b74fec2010-10-17 12:26:48 +0200788# Build target groups selected by options, plus any command line args
789set -- ${SELECTED} "$@"
790# run PowerPC by default
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400791[ $# = 0 ] && set -- powerpc
Mike Frysingerb374bdb2010-08-19 13:05:06 -0400792build_targets "$@"
Andy Flemingaf1cc312012-04-24 19:33:51 +0000793wait