blob: 0b0aeb1b5a0bedbf8f0cebfcc0026f2d68d0d9e7 [file] [log] [blame]
Peter Tyserf2352872009-12-06 23:58:28 -06001#!/bin/bash
Wolfgang Denk0777eaf2010-10-17 12:26:48 +02002# Tool mainly for U-Boot Quality Assurance: build one or more board
3# configurations with minimal verbosity, showing only warnings and
4# errors.
Wolfgang Denk0777eaf2010-10-17 12:26:48 +02005
Mike Frysingerd8e392d2011-04-21 22:01:43 +00006usage()
7{
8 # if exiting with 0, write to stdout, else write to stderr
9 local ret=${1:-0}
10 [ "${ret}" -eq 1 ] && exec 1>&2
11 cat <<-EOF
12 Usage: MAKEALL [options] [--] [boards-to-build]
13
14 Options:
15 -a ARCH, --arch ARCH Build all boards with arch ARCH
16 -c CPU, --cpu CPU Build all boards with cpu CPU
17 -v VENDOR, --vendor VENDOR Build all boards with vendor VENDOR
18 -s SOC, --soc SOC Build all boards with soc SOC
Marek Vasut7f79c6f2011-12-02 21:32:03 +000019 -l, --list List all targets to be built
Marek Vasut9b96c6b2012-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 Frysingerd8e392d2011-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.
29
30 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 Flemingf588bb02012-04-24 19:33:51 +000037 BUILD_NBUILDS number of parallel targets (default: 1)
Mike Frysingerd8e392d2011-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 Vasut9b96c6b2012-03-05 15:10:51 +000054SHORT_OPTS="ha:c:v:s:lmM"
55LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails"
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020056
57# Option processing based on util-linux-2.13/getopt-parse.bash
58
Wolfgang Denk071bc922010-10-27 22:48:30 +020059# Note that we use `"$@"' to let each command-line parameter expand to a
Wolfgang Denk0777eaf2010-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 Frysingerd8e392d2011-04-21 22:01:43 +000066[ $? != 0 ] && usage 1
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020067
68# Note the quotes around `$TEMP': they are essential!
69eval set -- "$TEMP"
70
71SELECTED=''
Marek Vasut7f79c6f2011-12-02 21:32:03 +000072ONLY_LIST=''
Marek Vasut9b96c6b2012-03-05 15:10:51 +000073PRINT_MAINTS=''
74MAINTAINERS_ONLY=''
Wolfgang Denk0777eaf2010-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 Martinaa2e2792012-08-31 08:30:06 +000090 opt_c="${opt_c%)} || \$3 == \"$2\" || \$3 ~ /$2:/)"
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020091 else
Allen Martinaa2e2792012-08-31 08:30:06 +000092 opt_c="(\$3 == \"$2\" || \$3 ~ /$2:/)"
Wolfgang Denk0777eaf2010-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 Vasut7f79c6f2011-12-02 21:32:03 +0000114 -l|--list)
115 ONLY_LIST='y'
116 shift ;;
Marek Vasut9b96c6b2012-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 Frysingerd8e392d2011-04-21 22:01:43 +0000126 -h|--help)
127 usage ;;
Wolfgang Denk0777eaf2010-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 Tysercd57b0b2010-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 Denk0777eaf2010-10-17 12:26:48 +0200151fi
152
153#########################################################################
154
Peter Tyser40a28f02009-09-21 12:04:32 -0500155# Print statistics when we exit
156trap exit 1 2 3 15
157trap print_stats 0
158
Wolfgang Denk7fa6a2f2008-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 Tyser55f786d2009-09-21 12:04:33 -0500164 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denk7fa6a2f2008-12-09 00:39:08 +0100165else
166 JOBS=""
167fi
168
wdenka8c7c702003-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 Balakowiczf9328632006-09-01 19:49:50 +0200176if [ "${MAKEALL_LOGDIR}" ] ; then
177 LOG_DIR=${MAKEALL_LOGDIR}
178else
179 LOG_DIR="LOG"
180fi
Stefan Roese887e2ec2006-09-07 11:51:23 +0200181
Andy Flemingf588bb02012-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 Balakowiczf9328632006-09-01 19:49:50 +0200190fi
191
Andy Flemingf588bb02012-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 Tyser40a28f02009-09-21 12:04:32 -0500201# Keep track of the number of builds and errors
202ERR_CNT=0
203ERR_LIST=""
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000204WRN_CNT=0
205WRN_LIST=""
Peter Tyser40a28f02009-09-21 12:04:32 -0500206TOTAL_CNT=0
Andy Flemingf588bb02012-04-24 19:33:51 +0000207CURRENT_CNT=0
208OLDEST_IDX=1
Peter Tyserf2352872009-12-06 23:58:28 -0600209RC=0
Peter Tyser40a28f02009-09-21 12:04:32 -0500210
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400211# Helper funcs for parsing boards.cfg
212boards_by_field()
213{
Allen Martinaa2e2792012-08-31 08:30:06 +0000214 FS="[ \t]+"
215 [ -n "$3" ] && FS="$3"
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400216 awk \
217 -v field="$1" \
218 -v select="$2" \
Allen Martinaa2e2792012-08-31 08:30:06 +0000219 -F "$FS" \
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400220 '($1 !~ /^#/ && $field == select) { print $1 }' \
221 boards.cfg
222}
223boards_by_arch() { boards_by_field 2 "$@" ; }
Allen Martinaa2e2792012-08-31 08:30:06 +0000224boards_by_cpu() { boards_by_field 3 "$@" "[: \t]+" ; }
Andreas Bießmann0a41eda2010-11-30 09:45:04 +0000225boards_by_soc() { boards_by_field 6 "$@" ; }
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400226
wdenk7ebf7442002-11-02 23:17:16 +0000227#########################################################################
wdenk0db5bca2003-03-31 17:27:09 +0000228## MPC5xx Systems
229#########################################################################
230
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400231LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk0db5bca2003-03-31 17:27:09 +0000232
233#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000234## MPC5xxx Systems
235#########################################################################
236
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200237LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk945af8d2003-07-16 21:53:01 +0000238
239#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200240## MPC512x Systems
241#########################################################################
242
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200243LIST_512x="$(boards_by_cpu mpc512x)"
wdenk7ebf7442002-11-02 23:17:16 +0000244
245#########################################################################
246## MPC8xx Systems
247#########################################################################
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400248
Wolfgang Denk2ae18242010-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 Denk2ae18242010-10-06 09:05:45 +0200255LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000256
257#########################################################################
wdenk983fda82004-10-28 00:09:35 +0000258## MPC8220 Systems
259#########################################################################
260
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400261LIST_8220="$(boards_by_cpu mpc8220)"
wdenk983fda82004-10-28 00:09:35 +0000262
263#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000264## MPC824x Systems
265#########################################################################
266
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200267LIST_824x="$(boards_by_cpu mpc824x)"
wdenk592c5ca2003-06-21 00:17:24 +0000268
wdenk7ebf7442002-11-02 23:17:16 +0000269#########################################################################
wdenk7aa78612003-05-03 15:50:43 +0000270## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000271#########################################################################
272
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200273LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000274
275#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -0500276## MPC83xx Systems (includes 8349, etc.)
277#########################################################################
278
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200279LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Libertyf046ccd2005-07-28 10:08:46 -0500280
281#########################################################################
wdenk42d1f032003-10-15 23:53:47 +0000282## MPC85xx Systems (includes 8540, 8560 etc.)
283#########################################################################
284
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200285LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk42d1f032003-10-15 23:53:47 +0000286
287#########################################################################
Jon Loeliger822d5532007-05-23 14:09:46 -0500288## MPC86xx Systems
289#########################################################################
290
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200291LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger822d5532007-05-23 14:09:46 -0500292
293#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000294## 74xx/7xx Systems
295#########################################################################
296
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200297LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000298
Wolfgang Denkd9a42c02008-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 Roesea47a12b2010-04-15 16:07:28 +0200309LIST_powerpc=" \
Kim Phillipsfb565792007-08-10 15:34:48 -0500310 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD3deca9d2007-11-25 22:39:25 +0100311 ${LIST_512x} \
Kim Phillipsfb565792007-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 Denk2ae18242010-10-06 09:05:45 +0200321 ${LIST_74xx_7xx}\
Kim Phillipsfb565792007-08-10 15:34:48 -0500322"
wdenk7ebf7442002-11-02 23:17:16 +0000323
Stefan Roesea47a12b2010-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 Frysinger9ec49f82010-08-19 13:05:06 -0400334LIST_SA="$(boards_by_cpu sa1100)"
wdenk7ebf7442002-11-02 23:17:16 +0000335
336#########################################################################
Allen Martincce5d212012-08-29 11:08:59 +0000337## ARM7 Systems
338#########################################################################
339
340LIST_ARM7="$(boards_by_cpu arm720t)"
341
342#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000343## ARM9 Systems
344#########################################################################
345
Wolfgang Denk6a8760d2011-09-08 05:01:24 +0000346LIST_ARM9="$(boards_by_cpu arm920t) \
347 $(boards_by_cpu arm926ejs) \
348 $(boards_by_cpu arm925t) \
Allen Martincce5d212012-08-29 11:08:59 +0000349 $(boards_by_cpu arm946es) \
wdenk6f213472003-08-29 22:00:43 +0000350"
wdenk7ebf7442002-11-02 23:17:16 +0000351
352#########################################################################
wdenk8ed96042005-01-09 23:16:25 +0000353## ARM11 Systems
354#########################################################################
Allen Martincce5d212012-08-29 11:08:59 +0000355LIST_ARM11="$(boards_by_cpu arm1136) \
356 $(boards_by_cpu arm1176) \
357"
wdenk8ed96042005-01-09 23:16:25 +0000358
359#########################################################################
Steve Sakomanf56348a2010-06-17 21:50:01 -0700360## ARMV7 Systems
Dirk Behmef904cdb2009-01-27 18:19:12 +0100361#########################################################################
Dirk Behmef37586b2011-08-05 20:48:32 +0000362
363LIST_ARMV7="$(boards_by_cpu armv7)"
Dirk Behmef904cdb2009-01-27 18:19:12 +0100364
365#########################################################################
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200366## AT91 Systems
367#########################################################################
368
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +0000369LIST_at91="$(boards_by_soc at91)"
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200370
371#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000372## Xscale Systems
373#########################################################################
374
Marek Vasut7c957c02010-10-04 00:21:51 +0200375LIST_pxa="$(boards_by_cpu pxa)"
wdenk7ebf7442002-11-02 23:17:16 +0000376
Andy Flemingbb1c01e2012-04-25 09:36:13 +0000377LIST_ixp="$(boards_by_cpu ixp)"
wdenk7ebf7442002-11-02 23:17:16 +0000378
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700379#########################################################################
380## ARM groups
381#########################################################################
wdenk2d5b5612003-10-14 19:43:55 +0000382
Allen Martincce5d212012-08-29 11:08:59 +0000383LIST_arm="$(boards_by_arch arm)"
wdenk7ebf7442002-11-02 23:17:16 +0000384
wdenkc0218802003-03-27 12:09:35 +0000385#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200386## MIPS Systems (default = big endian)
wdenkc0218802003-03-27 12:09:35 +0000387#########################################################################
388
Kim Phillipsfb565792007-08-10 15:34:48 -0500389LIST_mips4kc=" \
390 incaip \
Allen Martincce5d212012-08-29 11:08:59 +0000391 incaip_100MHz \
392 incaip_133MHz \
393 incaip_150MHz \
Vlad Lungu0764c162008-01-16 19:27:51 +0200394 qemu_mips \
Stefan Roese2a61eff2009-01-21 17:25:01 +0100395 vct_platinum \
396 vct_platinum_small \
397 vct_platinum_onenand \
398 vct_platinum_onenand_small \
399 vct_platinumavc \
400 vct_platinumavc_small \
401 vct_platinumavc_onenand \
402 vct_platinumavc_onenand_small \
403 vct_premium \
404 vct_premium_small \
405 vct_premium_onenand \
406 vct_premium_onenand_small \
Kim Phillipsfb565792007-08-10 15:34:48 -0500407"
wdenkc0218802003-03-27 12:09:35 +0000408
Kim Phillipsfb565792007-08-10 15:34:48 -0500409LIST_au1xx0=" \
410 dbau1000 \
411 dbau1100 \
412 dbau1500 \
413 dbau1550 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500414"
wdenk5da627a2003-10-09 20:09:04 +0000415
Kim Phillipsfb565792007-08-10 15:34:48 -0500416LIST_mips=" \
417 ${LIST_mips4kc} \
418 ${LIST_mips5kc} \
419 ${LIST_au1xx0} \
420"
wdenkc0218802003-03-27 12:09:35 +0000421
wdenk7a8e9bed2003-05-31 18:35:21 +0000422#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200423## MIPS Systems (little endian)
424#########################################################################
425
Daniel Schwierzeck92b09092011-11-24 03:57:56 +0000426LIST_xburst_el=" \
Xiangfu Liu3c945542011-10-12 12:24:06 +0800427 qi_lb60 \
428"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200429
Kim Phillipsfb565792007-08-10 15:34:48 -0500430LIST_au1xx0_el=" \
431 dbau1550_el \
Shinya Kuribayashib09258c2007-10-27 15:00:25 +0900432 pb1000 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500433"
Kim Phillipsfb565792007-08-10 15:34:48 -0500434LIST_mips_el=" \
Daniel Schwierzeck92b09092011-11-24 03:57:56 +0000435 ${LIST_xburst_el} \
Kim Phillipsfb565792007-08-10 15:34:48 -0500436 ${LIST_au1xx0_el} \
437"
Stefan Kristianssondeddf5d2011-11-18 19:21:37 +0000438#########################################################################
439## OpenRISC Systems
440#########################################################################
441
442LIST_openrisc="$(boards_by_arch openrisc)"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200443
444#########################################################################
Graeme Russfea25722011-04-13 19:43:28 +1000445## x86 Systems
wdenk7a8e9bed2003-05-31 18:35:21 +0000446#########################################################################
447
Graeme Russfea25722011-04-13 19:43:28 +1000448LIST_x86="$(boards_by_arch x86)"
wdenk7a8e9bed2003-05-31 18:35:21 +0000449
wdenkc935d3b2004-01-03 19:43:48 +0000450#########################################################################
wdenk5c952cf2004-10-10 21:27:30 +0000451## Nios-II Systems
452#########################################################################
453
Mike Frysinger4827d062011-06-26 23:00:19 -0400454LIST_nios2="$(boards_by_arch nios2)"
wdenk5c952cf2004-10-10 21:27:30 +0000455
456#########################################################################
wdenk857cad32004-07-10 23:48:41 +0000457## MicroBlaze Systems
458#########################################################################
459
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400460LIST_microblaze="$(boards_by_arch microblaze)"
wdenk857cad32004-07-10 23:48:41 +0000461
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500462#########################################################################
463## ColdFire Systems
464#########################################################################
465
Allen Martincce5d212012-08-29 11:08:59 +0000466LIST_m68k="$(boards_by_arch m68k)"
Mike Frysingerc13f47b2011-09-25 19:27:19 +0000467LIST_coldfire=${LIST_m68k}
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500468
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200469#########################################################################
470## AVR32 Systems
471#########################################################################
472
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400473LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200474
Aubrey.Lief26a082007-03-09 13:40:56 +0800475#########################################################################
476## Blackfin Systems
477#########################################################################
478
Mike Frysinger36cf8cb2010-10-19 02:41:26 -0400479LIST_blackfin="$(boards_by_arch blackfin)"
Aubrey.Lief26a082007-03-09 13:40:56 +0800480
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100481#########################################################################
482## SH Systems
483#########################################################################
484
Nobuhiro Iwamatsue0f0e522010-10-20 01:22:25 +0900485LIST_sh2="$(boards_by_cpu sh2)"
Nobuhiro Iwamatsu3771c692010-10-20 01:28:29 +0900486LIST_sh3="$(boards_by_cpu sh3)"
Nobuhiro Iwamatsu03626be2010-10-20 01:35:28 +0900487LIST_sh4="$(boards_by_cpu sh4)"
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700488
Nobuhiro Iwamatsu03626be2010-10-20 01:35:28 +0900489LIST_sh="$(boards_by_arch sh)"
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100490
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100491#########################################################################
492## SPARC Systems
493#########################################################################
494
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400495LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000496
Macpaul Lin5f1719c2011-10-19 20:41:10 +0000497#########################################################################
498## NDS32 Systems
499#########################################################################
500
501LIST_nds32="$(boards_by_arch nds32)"
502
wdenk7ebf7442002-11-02 23:17:16 +0000503#-----------------------------------------------------------------------
504
Marek Vasut9b96c6b2012-03-05 15:10:51 +0000505get_target_location() {
506 local target=$1
507 local BOARD_NAME=""
508 local CONFIG_NAME=""
509 local board=""
510 local vendor=""
511
512 # Automatic mode
513 local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg`
514
515 if [ -z "${line}" ] ; then echo "" ; return ; fi
516
517 set ${line}
518
519 # add default board name if needed
520 [ $# = 3 ] && set ${line} ${1}
521
522 CONFIG_NAME="${1%_config}"
523
524 [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
525
526 if [ "$4" = "-" ] ; then
527 board=${BOARD_NAME}
528 else
529 board="$4"
530 fi
531
532 [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
533 [ $# -gt 6 ] && [ "$7" != "-" ] && {
534 tmp="${7%:*}"
535 if [ "$tmp" ] ; then
536 CONFIG_NAME="$tmp"
537 fi
538 }
539
540 # Assign board directory to BOARDIR variable
541 if [ -z "${vendor}" ] ; then
542 BOARDDIR=${board}
543 else
544 BOARDDIR=${vendor}/${board}
545 fi
546
547 echo "${CONFIG_NAME}:${BOARDDIR}"
548}
549
550get_target_maintainers() {
551 local name=`echo $1 | cut -d : -f 1`
552
553 if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then
554 echo ""
555 return ;
556 fi
557
558 local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1`
559 local mail=`tac MAINTAINERS | tail -n +${line} | \
560 sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \
561 sed "s/^.*<//;s/>.*$//"`
562 echo "$mail"
563}
564
565list_target() {
566 if [ "$PRINT_MAINTS" != 'y' ] ; then
567 echo "$1"
568 return
569 fi
570
571 echo -n "$1:"
572
573 local loc=`get_target_location $1`
574
575 if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi
576
577 local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"`
578
579 if [ "$MAINTAINERS_ONLY" != 'y' ] ; then
580
581 local dir=`echo ${loc} | cut -d ":" -f 2`
582 local cfg=`echo ${loc} | cut -d ":" -f 1`
583 local git_result=`git log --format=%aE board/${dir} \
584 include/configs/${cfg}.h | grep "@"`
585 local git_result_recent=`echo ${git_result} | tr " " "\n" | \
586 head -n 3`
587 local git_result_top=`echo ${git_result} | tr " " "\n" | \
588 sort | uniq -c | sort -nr | head -n 3 | \
589 sed "s/^ \+[0-9]\+ \+//"`
590
591 echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \
592 sort -u | tr "\n" " " | sed "s/ $//" ;
593 else
594 echo -e "$maintainers_result" | sort -u | tr "\n" " " | \
595 sed "s/ $//" ;
596 fi
597
598 echo ""
599}
600
Andy Flemingf588bb02012-04-24 19:33:51 +0000601# Each finished build will have a file called ${donep}${n},
602# where n is the index of the build. Each build
603# we've already noted as finished will have ${skipp}${n}.
604# The code managing the build process will use this information
605# to ensure that only BUILD_NBUILDS builds are in flight at once
606donep="${LOG_DIR}/._done_"
607skipp="${LOG_DIR}/._skip_"
608
wdenk7ebf7442002-11-02 23:17:16 +0000609build_target() {
610 target=$1
Andy Flemingf588bb02012-04-24 19:33:51 +0000611 build_idx=$2
612
Andy Flemingf50bf502012-05-09 20:36:28 +0000613 if [ "$ONLY_LIST" == 'y' ] ; then
614 list_target ${target}
615 return
616 fi
617
Andy Flemingf588bb02012-04-24 19:33:51 +0000618 if [ $BUILD_MANY == 1 ] ; then
619 output_dir="${OUTPUT_PREFIX}/${target}"
620 mkdir -p "${output_dir}"
621 else
622 output_dir="${OUTPUT_PREFIX}"
623 fi
624
625 export BUILD_DIR="${output_dir}"
wdenk7ebf7442002-11-02 23:17:16 +0000626
627 ${MAKE} distclean >/dev/null
Kim Phillipsd70d8cc2010-09-14 14:48:16 -0500628 ${MAKE} -s ${target}_config
Marian Balakowiczf9328632006-09-01 19:49:50 +0200629
Andy Flemingf588bb02012-04-24 19:33:51 +0000630 ${MAKE} ${JOBS} all \
631 >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR
Peter Tyserf2352872009-12-06 23:58:28 -0600632
633 # Check for 'make' errors
634 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
635 RC=1
636 fi
637
Andy Flemingf588bb02012-04-24 19:33:51 +0000638 if [ $BUILD_MANY == 1 ] ; then
639 ${MAKE} tidy
640
641 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000642 cp ${LOG_DIR}/${target}.ERR ${OUTPUT_PREFIX}/ERR/${target}
Andy Flemingf588bb02012-04-24 19:33:51 +0000643 else
644 rm ${LOG_DIR}/${target}.ERR
645 fi
Peter Tyser40a28f02009-09-21 12:04:32 -0500646 else
Andy Flemingf588bb02012-04-24 19:33:51 +0000647 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000648 if grep -iw error ${LOG_DIR}/${target}.ERR ; then
649 : $(( ERR_CNT += 1 ))
650 ERR_LIST="${ERR_LIST} $target"
651 else
652 : $(( WRN_CNT += 1 ))
653 WRN_LIST="${WRN_LIST} $target"
654 fi
Andy Flemingf588bb02012-04-24 19:33:51 +0000655 else
656 rm ${LOG_DIR}/${target}.ERR
657 fi
Peter Tyser40a28f02009-09-21 12:04:32 -0500658 fi
659
Andy Flemingf588bb02012-04-24 19:33:51 +0000660 OBJS=${output_dir}/u-boot
661 if [ -e ${output_dir}/spl/u-boot-spl ]; then
662 OBJS="${OBJS} ${output_dir}/spl/u-boot-spl"
Scott Wood0c185692012-02-20 12:56:25 +0000663 fi
664
665 ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG
Andy Flemingf588bb02012-04-24 19:33:51 +0000666
667 [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR"
668
Andy Flemingf588bb02012-04-24 19:33:51 +0000669 touch "${donep}${build_idx}"
wdenk7ebf7442002-11-02 23:17:16 +0000670}
Andy Flemingf588bb02012-04-24 19:33:51 +0000671
672manage_builds() {
673 search_idx=${OLDEST_IDX}
Andy Flemingf50bf502012-05-09 20:36:28 +0000674 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
675
Andy Flemingf588bb02012-04-24 19:33:51 +0000676 while true; do
677 if [ -e "${donep}${search_idx}" ] ; then
Andy Flemingf588bb02012-04-24 19:33:51 +0000678 : $(( CURRENT_CNT-- ))
679 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
680 : $(( OLDEST_IDX++ ))
681
682 # Only want to count it once
683 rm -f "${donep}${search_idx}"
684 touch "${skipp}${search_idx}"
685 elif [ -e "${skipp}${search_idx}" ] ; then
686 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
687 : $(( OLDEST_IDX++ ))
688 fi
Andy Flemingf588bb02012-04-24 19:33:51 +0000689 : $(( search_idx++ ))
690 if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then
Andy Flemingf588bb02012-04-24 19:33:51 +0000691 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
692 search_idx=${OLDEST_IDX}
693 sleep 1
694 else
695 break
696 fi
697 fi
698 done
699}
700
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400701build_targets() {
702 for t in "$@" ; do
703 # If a LIST_xxx var exists, use it. But avoid variable
704 # expansion in the eval when a board name contains certain
705 # characters that the shell interprets.
706 case ${t} in
707 *[-+=]*) list= ;;
708 *) list=$(eval echo '${LIST_'$t'}') ;;
709 esac
710 if [ -n "${list}" ] ; then
711 build_targets ${list}
712 else
Andy Flemingf588bb02012-04-24 19:33:51 +0000713 : $((TOTAL_CNT += 1))
714 : $((CURRENT_CNT += 1))
715 rm -f "${donep}${TOTAL_CNT}"
716 rm -f "${skipp}${TOTAL_CNT}"
Joe Hershbergerb594bd62012-05-21 04:49:37 +0000717 if [ $BUILD_MANY == 1 ] ; then
718 build_target ${t} ${TOTAL_CNT} &
719 else
720 build_target ${t} ${TOTAL_CNT}
721 fi
Andy Flemingf588bb02012-04-24 19:33:51 +0000722 fi
723
724 # We maintain a running count of all the builds we have done.
725 # Each finished build will have a file called ${donep}${n},
726 # where n is the index of the build. Each build
727 # we've already noted as finished will have ${skipp}${n}.
728 # We track the current index via TOTAL_CNT, and the oldest
729 # index. When we exceed the maximum number of parallel builds,
730 # We look from oldest to current for builds that have completed,
731 # and update the current count and oldest index as appropriate.
732 # If we've gone through the entire list, wait a second, and
733 # reprocess the entire list until we find a build that has
734 # completed
735 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
736 manage_builds
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400737 fi
738 done
739}
wdenk7ebf7442002-11-02 23:17:16 +0000740
741#-----------------------------------------------------------------------
742
Andy Flemingf50bf502012-05-09 20:36:28 +0000743kill_children() {
744 kill -- "-$1"
745
746 exit
747}
748
Peter Tyser40a28f02009-09-21 12:04:32 -0500749print_stats() {
Marek Vasut7f79c6f2011-12-02 21:32:03 +0000750 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
Andy Flemingf588bb02012-04-24 19:33:51 +0000751
752 rm -f ${donep}* ${skipp}*
753
754 if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then
Andy Fleming033220e2012-08-08 14:12:30 +0000755 ERR_LIST=`grep -riwl error ${OUTPUT_PREFIX}/ERR/`
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000756 ERR_LIST=`for f in $ERR_LIST ; do echo -n " $(basename $f)" ; done`
757 ERR_CNT=`echo $ERR_LIST | wc -w | awk '{print $1}'`
Andy Fleming033220e2012-08-08 14:12:30 +0000758 WRN_LIST=`grep -riwL error ${OUTPUT_PREFIX}/ERR/`
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000759 WRN_LIST=`for f in $WRN_LIST ; do echo -n " $(basename $f)" ; done`
760 WRN_CNT=`echo $WRN_LIST | wc -w | awk '{print $1}'`
Andy Flemingf588bb02012-04-24 19:33:51 +0000761 fi
762
Peter Tyser40a28f02009-09-21 12:04:32 -0500763 echo ""
764 echo "--------------------- SUMMARY ----------------------------"
765 echo "Boards compiled: ${TOTAL_CNT}"
766 if [ ${ERR_CNT} -gt 0 ] ; then
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000767 echo "Boards with errors: ${ERR_CNT} (${ERR_LIST} )"
768 fi
769 if [ ${WRN_CNT} -gt 0 ] ; then
770 echo "Boards with warnings but no errors: ${WRN_CNT} (${WRN_LIST} )"
Peter Tyser40a28f02009-09-21 12:04:32 -0500771 fi
772 echo "----------------------------------------------------------"
Peter Tyserf2352872009-12-06 23:58:28 -0600773
Andy Flemingf50bf502012-05-09 20:36:28 +0000774 if [ $BUILD_MANY == 1 ] ; then
775 kill_children $$ &
776 fi
777
Peter Tyserf2352872009-12-06 23:58:28 -0600778 exit $RC
Peter Tyser40a28f02009-09-21 12:04:32 -0500779}
wdenk7ebf7442002-11-02 23:17:16 +0000780
Peter Tyser40a28f02009-09-21 12:04:32 -0500781#-----------------------------------------------------------------------
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400782
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200783# Build target groups selected by options, plus any command line args
784set -- ${SELECTED} "$@"
785# run PowerPC by default
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400786[ $# = 0 ] && set -- powerpc
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400787build_targets "$@"
Andy Flemingf588bb02012-04-24 19:33:51 +0000788wait