blob: fc941c043602fd7b233f721101e2123475f39cc2 [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
Kim Phillips33f336d2012-09-27 14:57:34 +000022 -C, --check Enable build checking
Mike Frysingerd8e392d2011-04-21 22:01:43 +000023 -h, --help This help output
24
25 Selections by these options are logically ANDed; if the same option
26 is used repeatedly, such selections are ORed. So "-v FOO -v BAR"
27 will select all configurations where the vendor is either FOO or
28 BAR. Any additional arguments specified on the command line are
29 always build additionally. See the boards.cfg file for more info.
30
31 If no boards are specified, then the default is "powerpc".
32
33 Environment variables:
34 BUILD_NCPUS number of parallel make jobs (default: auto)
35 CROSS_COMPILE cross-compiler toolchain prefix (default: "")
36 MAKEALL_LOGDIR output all logs to here (default: ./LOG/)
37 BUILD_DIR output build directory (default: ./)
Andy Flemingf588bb02012-04-24 19:33:51 +000038 BUILD_NBUILDS number of parallel targets (default: 1)
Mike Frysingerd8e392d2011-04-21 22:01:43 +000039
40 Examples:
41 - build all Power Architecture boards:
42 MAKEALL -a powerpc
43 MAKEALL --arch powerpc
44 MAKEALL powerpc
45 - build all PowerPC boards manufactured by vendor "esd":
46 MAKEALL -a powerpc -v esd
47 - build all PowerPC boards manufactured either by "keymile" or "siemens":
48 MAKEALL -a powerpc -v keymile -v siemens
49 - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards:
50 MAKEALL -c mpc83xx -v freescale 4xx
51 EOF
52 exit ${ret}
53}
54
Kim Phillips33f336d2012-09-27 14:57:34 +000055SHORT_OPTS="ha:c:v:s:lmMC"
56LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails,check"
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020057
58# Option processing based on util-linux-2.13/getopt-parse.bash
59
Wolfgang Denk071bc922010-10-27 22:48:30 +020060# Note that we use `"$@"' to let each command-line parameter expand to a
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020061# separate word. The quotes around `$@' are essential!
62# We need TEMP as the `eval set --' would nuke the return value of
63# getopt.
64TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \
65 -n 'MAKEALL' -- "$@"`
66
Mike Frysingerd8e392d2011-04-21 22:01:43 +000067[ $? != 0 ] && usage 1
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020068
69# Note the quotes around `$TEMP': they are essential!
70eval set -- "$TEMP"
71
72SELECTED=''
Marek Vasut7f79c6f2011-12-02 21:32:03 +000073ONLY_LIST=''
Marek Vasut9b96c6b2012-03-05 15:10:51 +000074PRINT_MAINTS=''
75MAINTAINERS_ONLY=''
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020076
77while true ; do
78 case "$1" in
79 -a|--arch)
80 # echo "Option ARCH: argument \`$2'"
81 if [ "$opt_a" ] ; then
82 opt_a="${opt_a%)} || \$2 == \"$2\")"
83 else
84 opt_a="(\$2 == \"$2\")"
85 fi
86 SELECTED='y'
87 shift 2 ;;
88 -c|--cpu)
89 # echo "Option CPU: argument \`$2'"
90 if [ "$opt_c" ] ; then
Allen Martinaa2e2792012-08-31 08:30:06 +000091 opt_c="${opt_c%)} || \$3 == \"$2\" || \$3 ~ /$2:/)"
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020092 else
Allen Martinaa2e2792012-08-31 08:30:06 +000093 opt_c="(\$3 == \"$2\" || \$3 ~ /$2:/)"
Wolfgang Denk0777eaf2010-10-17 12:26:48 +020094 fi
95 SELECTED='y'
96 shift 2 ;;
97 -s|--soc)
98 # echo "Option SoC: argument \`$2'"
99 if [ "$opt_s" ] ; then
100 opt_s="${opt_s%)} || \$6 == \"$2\")"
101 else
102 opt_s="(\$6 == \"$2\")"
103 fi
104 SELECTED='y'
105 shift 2 ;;
106 -v|--vendor)
107 # echo "Option VENDOR: argument \`$2'"
108 if [ "$opt_v" ] ; then
109 opt_v="${opt_v%)} || \$5 == \"$2\")"
110 else
111 opt_v="(\$5 == \"$2\")"
112 fi
113 SELECTED='y'
114 shift 2 ;;
Kim Phillips33f336d2012-09-27 14:57:34 +0000115 -C|--check)
116 CHECK='C=1'
117 shift ;;
Marek Vasut7f79c6f2011-12-02 21:32:03 +0000118 -l|--list)
119 ONLY_LIST='y'
120 shift ;;
Marek Vasut9b96c6b2012-03-05 15:10:51 +0000121 -m|--maintainers)
122 ONLY_LIST='y'
123 PRINT_MAINTS='y'
124 MAINTAINERS_ONLY='y'
125 shift ;;
126 -M|--mails)
127 ONLY_LIST='y'
128 PRINT_MAINTS='y'
129 shift ;;
Mike Frysingerd8e392d2011-04-21 22:01:43 +0000130 -h|--help)
131 usage ;;
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200132 --)
133 shift ; break ;;
134 *)
135 echo "Internal error!" >&2 ; exit 1 ;;
136 esac
137done
138# echo "Remaining arguments:"
139# for arg do echo '--> '"\`$arg'" ; done
140
141FILTER="\$1 !~ /^#/"
142[ "$opt_a" ] && FILTER="${FILTER} && $opt_a"
143[ "$opt_c" ] && FILTER="${FILTER} && $opt_c"
144[ "$opt_s" ] && FILTER="${FILTER} && $opt_s"
145[ "$opt_v" ] && FILTER="${FILTER} && $opt_v"
146
147if [ "$SELECTED" ] ; then
148 SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg)
Peter Tysercd57b0b2010-10-29 17:59:06 -0500149
150 # Make sure some boards from boards.cfg are actually found
151 if [ -z "$SELECTED" ] ; then
152 echo "Error: No boards selected, invalid arguments"
153 exit 1
154 fi
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200155fi
156
157#########################################################################
158
Peter Tyser40a28f02009-09-21 12:04:32 -0500159# Print statistics when we exit
160trap exit 1 2 3 15
161trap print_stats 0
162
Wolfgang Denk7fa6a2f2008-12-09 00:39:08 +0100163# Determine number of CPU cores if no default was set
164: ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"}
165
166if [ "$BUILD_NCPUS" -gt 1 ]
167then
Peter Tyser55f786d2009-09-21 12:04:33 -0500168 JOBS="-j $((BUILD_NCPUS + 1))"
Wolfgang Denk7fa6a2f2008-12-09 00:39:08 +0100169else
170 JOBS=""
171fi
172
wdenka8c7c702003-12-06 19:49:23 +0000173
wdenk7ebf7442002-11-02 23:17:16 +0000174if [ "${CROSS_COMPILE}" ] ; then
175 MAKE="make CROSS_COMPILE=${CROSS_COMPILE}"
176else
177 MAKE=make
178fi
179
Marian Balakowiczf9328632006-09-01 19:49:50 +0200180if [ "${MAKEALL_LOGDIR}" ] ; then
181 LOG_DIR=${MAKEALL_LOGDIR}
182else
183 LOG_DIR="LOG"
184fi
Stefan Roese887e2ec2006-09-07 11:51:23 +0200185
Andy Flemingf588bb02012-04-24 19:33:51 +0000186: ${BUILD_NBUILDS:=1}
187BUILD_MANY=0
188
189if [ "${BUILD_NBUILDS}" -gt 1 ] ; then
190 BUILD_MANY=1
191 : ${BUILD_DIR:=./build}
192 mkdir -p "${BUILD_DIR}/ERR"
193 find "${BUILD_DIR}/ERR/" -type f -exec rm -f {} +
Marian Balakowiczf9328632006-09-01 19:49:50 +0200194fi
195
Andy Flemingf588bb02012-04-24 19:33:51 +0000196: ${BUILD_DIR:=.}
197
198OUTPUT_PREFIX="${BUILD_DIR}"
199
200[ -d ${LOG_DIR} ] || mkdir "${LOG_DIR}" || exit 1
201find "${LOG_DIR}/" -type f -exec rm -f {} +
wdenk7ebf7442002-11-02 23:17:16 +0000202
203LIST=""
204
Peter Tyser40a28f02009-09-21 12:04:32 -0500205# Keep track of the number of builds and errors
206ERR_CNT=0
207ERR_LIST=""
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000208WRN_CNT=0
209WRN_LIST=""
Peter Tyser40a28f02009-09-21 12:04:32 -0500210TOTAL_CNT=0
Andy Flemingf588bb02012-04-24 19:33:51 +0000211CURRENT_CNT=0
212OLDEST_IDX=1
Peter Tyserf2352872009-12-06 23:58:28 -0600213RC=0
Peter Tyser40a28f02009-09-21 12:04:32 -0500214
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400215# Helper funcs for parsing boards.cfg
216boards_by_field()
217{
Allen Martinaa2e2792012-08-31 08:30:06 +0000218 FS="[ \t]+"
219 [ -n "$3" ] && FS="$3"
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400220 awk \
221 -v field="$1" \
222 -v select="$2" \
Allen Martinaa2e2792012-08-31 08:30:06 +0000223 -F "$FS" \
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400224 '($1 !~ /^#/ && $field == select) { print $1 }' \
225 boards.cfg
226}
227boards_by_arch() { boards_by_field 2 "$@" ; }
Allen Martinaa2e2792012-08-31 08:30:06 +0000228boards_by_cpu() { boards_by_field 3 "$@" "[: \t]+" ; }
Andreas Bießmann0a41eda2010-11-30 09:45:04 +0000229boards_by_soc() { boards_by_field 6 "$@" ; }
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400230
wdenk7ebf7442002-11-02 23:17:16 +0000231#########################################################################
wdenk0db5bca2003-03-31 17:27:09 +0000232## MPC5xx Systems
233#########################################################################
234
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400235LIST_5xx="$(boards_by_cpu mpc5xx)"
wdenk0db5bca2003-03-31 17:27:09 +0000236
237#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000238## MPC5xxx Systems
239#########################################################################
240
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200241LIST_5xxx="$(boards_by_cpu mpc5xxx)"
wdenk945af8d2003-07-16 21:53:01 +0000242
243#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200244## MPC512x Systems
245#########################################################################
246
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200247LIST_512x="$(boards_by_cpu mpc512x)"
wdenk7ebf7442002-11-02 23:17:16 +0000248
249#########################################################################
250## MPC8xx Systems
251#########################################################################
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400252
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200253LIST_8xx="$(boards_by_cpu mpc8xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000254
255#########################################################################
256## PPC4xx Systems
257#########################################################################
258
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200259LIST_4xx="$(boards_by_cpu ppc4xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000260
261#########################################################################
wdenk983fda82004-10-28 00:09:35 +0000262## MPC8220 Systems
263#########################################################################
264
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400265LIST_8220="$(boards_by_cpu mpc8220)"
wdenk983fda82004-10-28 00:09:35 +0000266
267#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000268## MPC824x Systems
269#########################################################################
270
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200271LIST_824x="$(boards_by_cpu mpc824x)"
wdenk592c5ca2003-06-21 00:17:24 +0000272
wdenk7ebf7442002-11-02 23:17:16 +0000273#########################################################################
wdenk7aa78612003-05-03 15:50:43 +0000274## MPC8260 Systems (includes 8250, 8255 etc.)
wdenk7ebf7442002-11-02 23:17:16 +0000275#########################################################################
276
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200277LIST_8260="$(boards_by_cpu mpc8260)"
wdenk7ebf7442002-11-02 23:17:16 +0000278
279#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -0500280## MPC83xx Systems (includes 8349, etc.)
281#########################################################################
282
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200283LIST_83xx="$(boards_by_cpu mpc83xx)"
Eran Libertyf046ccd2005-07-28 10:08:46 -0500284
285#########################################################################
wdenk42d1f032003-10-15 23:53:47 +0000286## MPC85xx Systems (includes 8540, 8560 etc.)
287#########################################################################
288
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200289LIST_85xx="$(boards_by_cpu mpc85xx)"
wdenk42d1f032003-10-15 23:53:47 +0000290
291#########################################################################
Jon Loeliger822d5532007-05-23 14:09:46 -0500292## MPC86xx Systems
293#########################################################################
294
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200295LIST_86xx="$(boards_by_cpu mpc86xx)"
Jon Loeliger822d5532007-05-23 14:09:46 -0500296
297#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000298## 74xx/7xx Systems
299#########################################################################
300
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200301LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)"
wdenk7ebf7442002-11-02 23:17:16 +0000302
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700303#########################################################################
304## PowerPC groups
305#########################################################################
306
307LIST_TSEC=" \
308 ${LIST_83xx} \
309 ${LIST_85xx} \
310 ${LIST_86xx} \
311"
312
Stefan Roesea47a12b2010-04-15 16:07:28 +0200313LIST_powerpc=" \
Kim Phillipsfb565792007-08-10 15:34:48 -0500314 ${LIST_5xx} \
Jean-Christophe PLAGNIOL-VILLARD3deca9d2007-11-25 22:39:25 +0100315 ${LIST_512x} \
Kim Phillipsfb565792007-08-10 15:34:48 -0500316 ${LIST_5xxx} \
317 ${LIST_8xx} \
318 ${LIST_8220} \
319 ${LIST_824x} \
320 ${LIST_8260} \
321 ${LIST_83xx} \
322 ${LIST_85xx} \
323 ${LIST_86xx} \
324 ${LIST_4xx} \
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200325 ${LIST_74xx_7xx}\
Kim Phillipsfb565792007-08-10 15:34:48 -0500326"
wdenk7ebf7442002-11-02 23:17:16 +0000327
Stefan Roesea47a12b2010-04-15 16:07:28 +0200328# Alias "ppc" -> "powerpc" to not break compatibility with older scripts
329# still using "ppc" instead of "powerpc"
330LIST_ppc=" \
331 ${LIST_powerpc} \
332"
333
wdenk7ebf7442002-11-02 23:17:16 +0000334#########################################################################
335## StrongARM Systems
336#########################################################################
337
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400338LIST_SA="$(boards_by_cpu sa1100)"
wdenk7ebf7442002-11-02 23:17:16 +0000339
340#########################################################################
Allen Martincce5d212012-08-29 11:08:59 +0000341## ARM7 Systems
342#########################################################################
343
344LIST_ARM7="$(boards_by_cpu arm720t)"
345
346#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000347## ARM9 Systems
348#########################################################################
349
Wolfgang Denk6a8760d2011-09-08 05:01:24 +0000350LIST_ARM9="$(boards_by_cpu arm920t) \
351 $(boards_by_cpu arm926ejs) \
352 $(boards_by_cpu arm925t) \
Allen Martincce5d212012-08-29 11:08:59 +0000353 $(boards_by_cpu arm946es) \
wdenk6f213472003-08-29 22:00:43 +0000354"
wdenk7ebf7442002-11-02 23:17:16 +0000355
356#########################################################################
wdenk8ed96042005-01-09 23:16:25 +0000357## ARM11 Systems
358#########################################################################
Allen Martincce5d212012-08-29 11:08:59 +0000359LIST_ARM11="$(boards_by_cpu arm1136) \
360 $(boards_by_cpu arm1176) \
361"
wdenk8ed96042005-01-09 23:16:25 +0000362
363#########################################################################
Steve Sakomanf56348a2010-06-17 21:50:01 -0700364## ARMV7 Systems
Dirk Behmef904cdb2009-01-27 18:19:12 +0100365#########################################################################
Dirk Behmef37586b2011-08-05 20:48:32 +0000366
367LIST_ARMV7="$(boards_by_cpu armv7)"
Dirk Behmef904cdb2009-01-27 18:19:12 +0100368
369#########################################################################
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200370## AT91 Systems
371#########################################################################
372
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +0000373LIST_at91="$(boards_by_soc at91)"
Jean-Christophe PLAGNIOL-VILLARD602cac12008-05-24 12:47:46 +0200374
375#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000376## Xscale Systems
377#########################################################################
378
Marek Vasut7c957c02010-10-04 00:21:51 +0200379LIST_pxa="$(boards_by_cpu pxa)"
wdenk7ebf7442002-11-02 23:17:16 +0000380
Andy Flemingbb1c01e2012-04-25 09:36:13 +0000381LIST_ixp="$(boards_by_cpu ixp)"
wdenk7ebf7442002-11-02 23:17:16 +0000382
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700383#########################################################################
Stefan Roese24dede42012-05-30 22:59:43 +0000384## SPEAr Systems
385#########################################################################
386
387LIST_spear="$(boards_by_soc spear)"
388
389#########################################################################
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700390## ARM groups
391#########################################################################
wdenk2d5b5612003-10-14 19:43:55 +0000392
Allen Martincce5d212012-08-29 11:08:59 +0000393LIST_arm="$(boards_by_arch arm)"
wdenk7ebf7442002-11-02 23:17:16 +0000394
wdenkc0218802003-03-27 12:09:35 +0000395#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200396## MIPS Systems (default = big endian)
wdenkc0218802003-03-27 12:09:35 +0000397#########################################################################
398
Kim Phillipsfb565792007-08-10 15:34:48 -0500399LIST_mips4kc=" \
400 incaip \
Allen Martincce5d212012-08-29 11:08:59 +0000401 incaip_100MHz \
402 incaip_133MHz \
403 incaip_150MHz \
Vlad Lungu0764c162008-01-16 19:27:51 +0200404 qemu_mips \
Stefan Roese2a61eff2009-01-21 17:25:01 +0100405 vct_platinum \
406 vct_platinum_small \
407 vct_platinum_onenand \
408 vct_platinum_onenand_small \
409 vct_platinumavc \
410 vct_platinumavc_small \
411 vct_platinumavc_onenand \
412 vct_platinumavc_onenand_small \
413 vct_premium \
414 vct_premium_small \
415 vct_premium_onenand \
416 vct_premium_onenand_small \
Kim Phillipsfb565792007-08-10 15:34:48 -0500417"
wdenkc0218802003-03-27 12:09:35 +0000418
Kim Phillipsfb565792007-08-10 15:34:48 -0500419LIST_au1xx0=" \
420 dbau1000 \
421 dbau1100 \
422 dbau1500 \
423 dbau1550 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500424"
wdenk5da627a2003-10-09 20:09:04 +0000425
Kim Phillipsfb565792007-08-10 15:34:48 -0500426LIST_mips=" \
427 ${LIST_mips4kc} \
428 ${LIST_mips5kc} \
429 ${LIST_au1xx0} \
430"
wdenkc0218802003-03-27 12:09:35 +0000431
wdenk7a8e9bed2003-05-31 18:35:21 +0000432#########################################################################
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200433## MIPS Systems (little endian)
434#########################################################################
435
Daniel Schwierzeck92b09092011-11-24 03:57:56 +0000436LIST_xburst_el=" \
Xiangfu Liu3c945542011-10-12 12:24:06 +0800437 qi_lb60 \
438"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200439
Kim Phillipsfb565792007-08-10 15:34:48 -0500440LIST_au1xx0_el=" \
441 dbau1550_el \
Shinya Kuribayashib09258c2007-10-27 15:00:25 +0900442 pb1000 \
Kim Phillipsfb565792007-08-10 15:34:48 -0500443"
Kim Phillipsfb565792007-08-10 15:34:48 -0500444LIST_mips_el=" \
Daniel Schwierzeck92b09092011-11-24 03:57:56 +0000445 ${LIST_xburst_el} \
Kim Phillipsfb565792007-08-10 15:34:48 -0500446 ${LIST_au1xx0_el} \
447"
Stefan Kristianssondeddf5d2011-11-18 19:21:37 +0000448#########################################################################
449## OpenRISC Systems
450#########################################################################
451
452LIST_openrisc="$(boards_by_arch openrisc)"
Wolfgang Denkb62bdff2005-08-14 00:27:00 +0200453
454#########################################################################
Graeme Russfea25722011-04-13 19:43:28 +1000455## x86 Systems
wdenk7a8e9bed2003-05-31 18:35:21 +0000456#########################################################################
457
Graeme Russfea25722011-04-13 19:43:28 +1000458LIST_x86="$(boards_by_arch x86)"
wdenk7a8e9bed2003-05-31 18:35:21 +0000459
wdenkc935d3b2004-01-03 19:43:48 +0000460#########################################################################
wdenk5c952cf2004-10-10 21:27:30 +0000461## Nios-II Systems
462#########################################################################
463
Mike Frysinger4827d062011-06-26 23:00:19 -0400464LIST_nios2="$(boards_by_arch nios2)"
wdenk5c952cf2004-10-10 21:27:30 +0000465
466#########################################################################
wdenk857cad32004-07-10 23:48:41 +0000467## MicroBlaze Systems
468#########################################################################
469
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400470LIST_microblaze="$(boards_by_arch microblaze)"
wdenk857cad32004-07-10 23:48:41 +0000471
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500472#########################################################################
473## ColdFire Systems
474#########################################################################
475
Allen Martincce5d212012-08-29 11:08:59 +0000476LIST_m68k="$(boards_by_arch m68k)"
Mike Frysingerc13f47b2011-09-25 19:27:19 +0000477LIST_coldfire=${LIST_m68k}
Zachary P. Landauf8c3b4f2006-01-26 17:38:46 -0500478
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200479#########################################################################
480## AVR32 Systems
481#########################################################################
482
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400483LIST_avr32="$(boards_by_arch avr32)"
Wolfgang Denk6ccec442006-10-24 14:42:37 +0200484
Aubrey.Lief26a082007-03-09 13:40:56 +0800485#########################################################################
486## Blackfin Systems
487#########################################################################
488
Mike Frysinger36cf8cb2010-10-19 02:41:26 -0400489LIST_blackfin="$(boards_by_arch blackfin)"
Aubrey.Lief26a082007-03-09 13:40:56 +0800490
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100491#########################################################################
492## SH Systems
493#########################################################################
494
Nobuhiro Iwamatsue0f0e522010-10-20 01:22:25 +0900495LIST_sh2="$(boards_by_cpu sh2)"
Nobuhiro Iwamatsu3771c692010-10-20 01:28:29 +0900496LIST_sh3="$(boards_by_cpu sh3)"
Nobuhiro Iwamatsu03626be2010-10-20 01:35:28 +0900497LIST_sh4="$(boards_by_cpu sh4)"
Wolfgang Denkd9a42c02008-04-20 15:35:52 -0700498
Nobuhiro Iwamatsu03626be2010-10-20 01:35:28 +0900499LIST_sh="$(boards_by_arch sh)"
Jean-Christophe PLAGNIOL-VILLARDc7144372007-11-27 09:44:53 +0100500
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100501#########################################################################
502## SPARC Systems
503#########################################################################
504
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400505LIST_sparc="$(boards_by_arch sparc)"
wdenk7ebf7442002-11-02 23:17:16 +0000506
Macpaul Lin5f1719c2011-10-19 20:41:10 +0000507#########################################################################
508## NDS32 Systems
509#########################################################################
510
511LIST_nds32="$(boards_by_arch nds32)"
512
wdenk7ebf7442002-11-02 23:17:16 +0000513#-----------------------------------------------------------------------
514
Marek Vasut9b96c6b2012-03-05 15:10:51 +0000515get_target_location() {
516 local target=$1
517 local BOARD_NAME=""
518 local CONFIG_NAME=""
519 local board=""
520 local vendor=""
521
522 # Automatic mode
523 local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg`
524
525 if [ -z "${line}" ] ; then echo "" ; return ; fi
526
527 set ${line}
528
529 # add default board name if needed
530 [ $# = 3 ] && set ${line} ${1}
531
532 CONFIG_NAME="${1%_config}"
533
534 [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
535
536 if [ "$4" = "-" ] ; then
537 board=${BOARD_NAME}
538 else
539 board="$4"
540 fi
541
542 [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
543 [ $# -gt 6 ] && [ "$7" != "-" ] && {
544 tmp="${7%:*}"
545 if [ "$tmp" ] ; then
546 CONFIG_NAME="$tmp"
547 fi
548 }
549
550 # Assign board directory to BOARDIR variable
551 if [ -z "${vendor}" ] ; then
552 BOARDDIR=${board}
553 else
554 BOARDDIR=${vendor}/${board}
555 fi
556
557 echo "${CONFIG_NAME}:${BOARDDIR}"
558}
559
560get_target_maintainers() {
561 local name=`echo $1 | cut -d : -f 1`
562
563 if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then
564 echo ""
565 return ;
566 fi
567
568 local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1`
569 local mail=`tac MAINTAINERS | tail -n +${line} | \
570 sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \
571 sed "s/^.*<//;s/>.*$//"`
572 echo "$mail"
573}
574
575list_target() {
576 if [ "$PRINT_MAINTS" != 'y' ] ; then
577 echo "$1"
578 return
579 fi
580
581 echo -n "$1:"
582
583 local loc=`get_target_location $1`
584
585 if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi
586
587 local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"`
588
589 if [ "$MAINTAINERS_ONLY" != 'y' ] ; then
590
591 local dir=`echo ${loc} | cut -d ":" -f 2`
592 local cfg=`echo ${loc} | cut -d ":" -f 1`
593 local git_result=`git log --format=%aE board/${dir} \
594 include/configs/${cfg}.h | grep "@"`
595 local git_result_recent=`echo ${git_result} | tr " " "\n" | \
596 head -n 3`
597 local git_result_top=`echo ${git_result} | tr " " "\n" | \
598 sort | uniq -c | sort -nr | head -n 3 | \
599 sed "s/^ \+[0-9]\+ \+//"`
600
601 echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \
602 sort -u | tr "\n" " " | sed "s/ $//" ;
603 else
604 echo -e "$maintainers_result" | sort -u | tr "\n" " " | \
605 sed "s/ $//" ;
606 fi
607
608 echo ""
609}
610
Andy Flemingf588bb02012-04-24 19:33:51 +0000611# Each finished build will have a file called ${donep}${n},
612# where n is the index of the build. Each build
613# we've already noted as finished will have ${skipp}${n}.
614# The code managing the build process will use this information
615# to ensure that only BUILD_NBUILDS builds are in flight at once
616donep="${LOG_DIR}/._done_"
617skipp="${LOG_DIR}/._skip_"
618
Joe Hershbergerc97d59c2012-10-30 15:55:20 +0000619build_target_killed() {
620 echo "Aborted $target build."
621 # Remove the logs for this board since it was aborted
622 rm -f ${LOG_DIR}/$target.MAKELOG ${LOG_DIR}/$target.ERR
623 exit
624}
625
wdenk7ebf7442002-11-02 23:17:16 +0000626build_target() {
627 target=$1
Andy Flemingf588bb02012-04-24 19:33:51 +0000628 build_idx=$2
629
Andy Flemingf50bf502012-05-09 20:36:28 +0000630 if [ "$ONLY_LIST" == 'y' ] ; then
631 list_target ${target}
632 return
633 fi
634
Andy Flemingf588bb02012-04-24 19:33:51 +0000635 if [ $BUILD_MANY == 1 ] ; then
636 output_dir="${OUTPUT_PREFIX}/${target}"
637 mkdir -p "${output_dir}"
Joe Hershbergerc97d59c2012-10-30 15:55:20 +0000638 trap build_target_killed TERM
Andy Flemingf588bb02012-04-24 19:33:51 +0000639 else
640 output_dir="${OUTPUT_PREFIX}"
641 fi
642
643 export BUILD_DIR="${output_dir}"
wdenk7ebf7442002-11-02 23:17:16 +0000644
645 ${MAKE} distclean >/dev/null
Kim Phillipsd70d8cc2010-09-14 14:48:16 -0500646 ${MAKE} -s ${target}_config
Marian Balakowiczf9328632006-09-01 19:49:50 +0200647
Kim Phillips33f336d2012-09-27 14:57:34 +0000648 ${MAKE} ${JOBS} ${CHECK} all \
Andy Flemingf588bb02012-04-24 19:33:51 +0000649 >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR
Peter Tyserf2352872009-12-06 23:58:28 -0600650
651 # Check for 'make' errors
652 if [ ${PIPESTATUS[0]} -ne 0 ] ; then
653 RC=1
654 fi
655
Andy Flemingf588bb02012-04-24 19:33:51 +0000656 if [ $BUILD_MANY == 1 ] ; then
Joe Hershbergerc97d59c2012-10-30 15:55:20 +0000657 trap - TERM
658
Tom Rinied296d22012-10-25 08:53:14 +0000659 ${MAKE} -s tidy
Andy Flemingf588bb02012-04-24 19:33:51 +0000660
661 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000662 cp ${LOG_DIR}/${target}.ERR ${OUTPUT_PREFIX}/ERR/${target}
Andy Flemingf588bb02012-04-24 19:33:51 +0000663 else
664 rm ${LOG_DIR}/${target}.ERR
665 fi
Peter Tyser40a28f02009-09-21 12:04:32 -0500666 else
Andy Flemingf588bb02012-04-24 19:33:51 +0000667 if [ -s ${LOG_DIR}/${target}.ERR ] ; then
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000668 if grep -iw error ${LOG_DIR}/${target}.ERR ; then
669 : $(( ERR_CNT += 1 ))
670 ERR_LIST="${ERR_LIST} $target"
671 else
672 : $(( WRN_CNT += 1 ))
673 WRN_LIST="${WRN_LIST} $target"
674 fi
Andy Flemingf588bb02012-04-24 19:33:51 +0000675 else
676 rm ${LOG_DIR}/${target}.ERR
677 fi
Peter Tyser40a28f02009-09-21 12:04:32 -0500678 fi
679
Andy Flemingf588bb02012-04-24 19:33:51 +0000680 OBJS=${output_dir}/u-boot
681 if [ -e ${output_dir}/spl/u-boot-spl ]; then
682 OBJS="${OBJS} ${output_dir}/spl/u-boot-spl"
Scott Wood0c185692012-02-20 12:56:25 +0000683 fi
684
685 ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG
Andy Flemingf588bb02012-04-24 19:33:51 +0000686
687 [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR"
688
Andy Flemingf588bb02012-04-24 19:33:51 +0000689 touch "${donep}${build_idx}"
wdenk7ebf7442002-11-02 23:17:16 +0000690}
Andy Flemingf588bb02012-04-24 19:33:51 +0000691
692manage_builds() {
693 search_idx=${OLDEST_IDX}
Andy Flemingf50bf502012-05-09 20:36:28 +0000694 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
695
Andy Flemingf588bb02012-04-24 19:33:51 +0000696 while true; do
697 if [ -e "${donep}${search_idx}" ] ; then
Andy Flemingf588bb02012-04-24 19:33:51 +0000698 : $(( CURRENT_CNT-- ))
699 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
700 : $(( OLDEST_IDX++ ))
701
702 # Only want to count it once
703 rm -f "${donep}${search_idx}"
704 touch "${skipp}${search_idx}"
705 elif [ -e "${skipp}${search_idx}" ] ; then
706 [ ${OLDEST_IDX} -eq ${search_idx} ] &&
707 : $(( OLDEST_IDX++ ))
708 fi
Andy Flemingf588bb02012-04-24 19:33:51 +0000709 : $(( search_idx++ ))
710 if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then
Andy Flemingf588bb02012-04-24 19:33:51 +0000711 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
712 search_idx=${OLDEST_IDX}
713 sleep 1
714 else
715 break
716 fi
717 fi
718 done
719}
720
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400721build_targets() {
722 for t in "$@" ; do
723 # If a LIST_xxx var exists, use it. But avoid variable
724 # expansion in the eval when a board name contains certain
725 # characters that the shell interprets.
726 case ${t} in
727 *[-+=]*) list= ;;
728 *) list=$(eval echo '${LIST_'$t'}') ;;
729 esac
730 if [ -n "${list}" ] ; then
731 build_targets ${list}
732 else
Andy Flemingf588bb02012-04-24 19:33:51 +0000733 : $((TOTAL_CNT += 1))
734 : $((CURRENT_CNT += 1))
735 rm -f "${donep}${TOTAL_CNT}"
736 rm -f "${skipp}${TOTAL_CNT}"
Joe Hershbergerb594bd62012-05-21 04:49:37 +0000737 if [ $BUILD_MANY == 1 ] ; then
738 build_target ${t} ${TOTAL_CNT} &
739 else
Joe Hershbergerc97d59c2012-10-30 15:55:20 +0000740 CUR_TGT="${t}"
Joe Hershbergerb594bd62012-05-21 04:49:37 +0000741 build_target ${t} ${TOTAL_CNT}
Joe Hershbergerc97d59c2012-10-30 15:55:20 +0000742 CUR_TGT=''
Joe Hershbergerb594bd62012-05-21 04:49:37 +0000743 fi
Andy Flemingf588bb02012-04-24 19:33:51 +0000744 fi
745
746 # We maintain a running count of all the builds we have done.
747 # Each finished build will have a file called ${donep}${n},
748 # where n is the index of the build. Each build
749 # we've already noted as finished will have ${skipp}${n}.
750 # We track the current index via TOTAL_CNT, and the oldest
751 # index. When we exceed the maximum number of parallel builds,
752 # We look from oldest to current for builds that have completed,
753 # and update the current count and oldest index as appropriate.
754 # If we've gone through the entire list, wait a second, and
755 # reprocess the entire list until we find a build that has
756 # completed
757 if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then
758 manage_builds
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400759 fi
760 done
761}
wdenk7ebf7442002-11-02 23:17:16 +0000762
763#-----------------------------------------------------------------------
764
Andy Flemingf50bf502012-05-09 20:36:28 +0000765kill_children() {
Joe Hershbergerc97d59c2012-10-30 15:55:20 +0000766 local pgid=`ps -p $$ --no-headers -o "%r" | tr -d ' '`
767 local children=`pgrep -g $pgid | grep -v $$ | grep -v $pgid`
768
769 kill $children 2> /dev/null
770 wait $children 2> /dev/null
Andy Flemingf50bf502012-05-09 20:36:28 +0000771
772 exit
773}
774
Peter Tyser40a28f02009-09-21 12:04:32 -0500775print_stats() {
Marek Vasut7f79c6f2011-12-02 21:32:03 +0000776 if [ "$ONLY_LIST" == 'y' ] ; then return ; fi
Andy Flemingf588bb02012-04-24 19:33:51 +0000777
Joe Hershbergerc97d59c2012-10-30 15:55:20 +0000778 # Only count boards that completed
779 : $((TOTAL_CNT = `find ${skipp}* 2> /dev/null | wc -l`))
780
Andy Flemingf588bb02012-04-24 19:33:51 +0000781 rm -f ${donep}* ${skipp}*
782
783 if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then
Andy Fleming033220e2012-08-08 14:12:30 +0000784 ERR_LIST=`grep -riwl error ${OUTPUT_PREFIX}/ERR/`
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000785 ERR_LIST=`for f in $ERR_LIST ; do echo -n " $(basename $f)" ; done`
786 ERR_CNT=`echo $ERR_LIST | wc -w | awk '{print $1}'`
Andy Fleming033220e2012-08-08 14:12:30 +0000787 WRN_LIST=`grep -riwL error ${OUTPUT_PREFIX}/ERR/`
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000788 WRN_LIST=`for f in $WRN_LIST ; do echo -n " $(basename $f)" ; done`
789 WRN_CNT=`echo $WRN_LIST | wc -w | awk '{print $1}'`
Joe Hershbergerc97d59c2012-10-30 15:55:20 +0000790 else
791 # Remove the logs for any board that was interrupted
792 rm -f ${LOG_DIR}/${CUR_TGT}.MAKELOG ${LOG_DIR}/${CUR_TGT}.ERR
Andy Flemingf588bb02012-04-24 19:33:51 +0000793 fi
794
Peter Tyser40a28f02009-09-21 12:04:32 -0500795 echo ""
796 echo "--------------------- SUMMARY ----------------------------"
797 echo "Boards compiled: ${TOTAL_CNT}"
798 if [ ${ERR_CNT} -gt 0 ] ; then
Joe Hershbergerb86a4752012-05-21 04:49:38 +0000799 echo "Boards with errors: ${ERR_CNT} (${ERR_LIST} )"
800 fi
801 if [ ${WRN_CNT} -gt 0 ] ; then
802 echo "Boards with warnings but no errors: ${WRN_CNT} (${WRN_LIST} )"
Peter Tyser40a28f02009-09-21 12:04:32 -0500803 fi
804 echo "----------------------------------------------------------"
Peter Tyserf2352872009-12-06 23:58:28 -0600805
Andy Flemingf50bf502012-05-09 20:36:28 +0000806 if [ $BUILD_MANY == 1 ] ; then
Joe Hershbergerc97d59c2012-10-30 15:55:20 +0000807 kill_children
Andy Flemingf50bf502012-05-09 20:36:28 +0000808 fi
809
Peter Tyserf2352872009-12-06 23:58:28 -0600810 exit $RC
Peter Tyser40a28f02009-09-21 12:04:32 -0500811}
wdenk7ebf7442002-11-02 23:17:16 +0000812
Peter Tyser40a28f02009-09-21 12:04:32 -0500813#-----------------------------------------------------------------------
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400814
Wolfgang Denk0777eaf2010-10-17 12:26:48 +0200815# Build target groups selected by options, plus any command line args
816set -- ${SELECTED} "$@"
817# run PowerPC by default
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400818[ $# = 0 ] && set -- powerpc
Mike Frysinger9ec49f82010-08-19 13:05:06 -0400819build_targets "$@"
Andy Flemingf588bb02012-04-24 19:33:51 +0000820wait