]>
Commit | Line | Data |
---|---|---|
f2352877 | 1 | #!/bin/bash |
0777eafb WD |
2 | # Tool mainly for U-Boot Quality Assurance: build one or more board |
3 | # configurations with minimal verbosity, showing only warnings and | |
4 | # errors. | |
0777eafb | 5 | |
d8e392d9 MF |
6 | usage() |
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 | |
7f79c6f2 | 19 | -l, --list List all targets to be built |
9b96c6b1 MV |
20 | -m, --maintainers List all targets and maintainer email |
21 | -M, --mails List all targets and all affilated emails | |
33f336d5 | 22 | -C, --check Enable build checking |
08510204 JH |
23 | -n, --continue Continue (skip boards already built) |
24 | -r, --rebuild-errors Rebuild any boards that errored | |
d8e392d9 MF |
25 | -h, --help This help output |
26 | ||
27 | Selections by these options are logically ANDed; if the same option | |
28 | is used repeatedly, such selections are ORed. So "-v FOO -v BAR" | |
29 | will select all configurations where the vendor is either FOO or | |
30 | BAR. Any additional arguments specified on the command line are | |
31 | always build additionally. See the boards.cfg file for more info. | |
32 | ||
33 | If no boards are specified, then the default is "powerpc". | |
34 | ||
35 | Environment variables: | |
36 | BUILD_NCPUS number of parallel make jobs (default: auto) | |
37 | CROSS_COMPILE cross-compiler toolchain prefix (default: "") | |
38 | MAKEALL_LOGDIR output all logs to here (default: ./LOG/) | |
39 | BUILD_DIR output build directory (default: ./) | |
f588bb03 | 40 | BUILD_NBUILDS number of parallel targets (default: 1) |
d8e392d9 MF |
41 | |
42 | Examples: | |
43 | - build all Power Architecture boards: | |
44 | MAKEALL -a powerpc | |
45 | MAKEALL --arch powerpc | |
46 | MAKEALL powerpc | |
47 | - build all PowerPC boards manufactured by vendor "esd": | |
48 | MAKEALL -a powerpc -v esd | |
49 | - build all PowerPC boards manufactured either by "keymile" or "siemens": | |
50 | MAKEALL -a powerpc -v keymile -v siemens | |
51 | - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards: | |
52 | MAKEALL -c mpc83xx -v freescale 4xx | |
53 | EOF | |
54 | exit ${ret} | |
55 | } | |
56 | ||
08510204 JH |
57 | SHORT_OPTS="ha:c:v:s:lmMCnr" |
58 | LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails,check,continue,rebuild-errors" | |
0777eafb WD |
59 | |
60 | # Option processing based on util-linux-2.13/getopt-parse.bash | |
61 | ||
071bc923 | 62 | # Note that we use `"$@"' to let each command-line parameter expand to a |
0777eafb WD |
63 | # separate word. The quotes around `$@' are essential! |
64 | # We need TEMP as the `eval set --' would nuke the return value of | |
65 | # getopt. | |
66 | TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \ | |
67 | -n 'MAKEALL' -- "$@"` | |
68 | ||
d8e392d9 | 69 | [ $? != 0 ] && usage 1 |
0777eafb WD |
70 | |
71 | # Note the quotes around `$TEMP': they are essential! | |
72 | eval set -- "$TEMP" | |
73 | ||
74 | SELECTED='' | |
7f79c6f2 | 75 | ONLY_LIST='' |
9b96c6b1 MV |
76 | PRINT_MAINTS='' |
77 | MAINTAINERS_ONLY='' | |
08510204 JH |
78 | CONTINUE='' |
79 | REBUILD_ERRORS='' | |
0777eafb WD |
80 | |
81 | while true ; do | |
82 | case "$1" in | |
83 | -a|--arch) | |
84 | # echo "Option ARCH: argument \`$2'" | |
85 | if [ "$opt_a" ] ; then | |
86 | opt_a="${opt_a%)} || \$2 == \"$2\")" | |
87 | else | |
88 | opt_a="(\$2 == \"$2\")" | |
89 | fi | |
90 | SELECTED='y' | |
91 | shift 2 ;; | |
92 | -c|--cpu) | |
93 | # echo "Option CPU: argument \`$2'" | |
94 | if [ "$opt_c" ] ; then | |
aa2e279d | 95 | opt_c="${opt_c%)} || \$3 == \"$2\" || \$3 ~ /$2:/)" |
0777eafb | 96 | else |
aa2e279d | 97 | opt_c="(\$3 == \"$2\" || \$3 ~ /$2:/)" |
0777eafb WD |
98 | fi |
99 | SELECTED='y' | |
100 | shift 2 ;; | |
101 | -s|--soc) | |
102 | # echo "Option SoC: argument \`$2'" | |
103 | if [ "$opt_s" ] ; then | |
104 | opt_s="${opt_s%)} || \$6 == \"$2\")" | |
105 | else | |
106 | opt_s="(\$6 == \"$2\")" | |
107 | fi | |
108 | SELECTED='y' | |
109 | shift 2 ;; | |
110 | -v|--vendor) | |
111 | # echo "Option VENDOR: argument \`$2'" | |
112 | if [ "$opt_v" ] ; then | |
113 | opt_v="${opt_v%)} || \$5 == \"$2\")" | |
114 | else | |
115 | opt_v="(\$5 == \"$2\")" | |
116 | fi | |
117 | SELECTED='y' | |
118 | shift 2 ;; | |
33f336d5 KP |
119 | -C|--check) |
120 | CHECK='C=1' | |
121 | shift ;; | |
08510204 JH |
122 | -n|--continue) |
123 | CONTINUE='y' | |
124 | shift ;; | |
125 | -r|--rebuild-errors) | |
126 | REBUILD_ERRORS='y' | |
127 | shift ;; | |
7f79c6f2 MV |
128 | -l|--list) |
129 | ONLY_LIST='y' | |
130 | shift ;; | |
9b96c6b1 MV |
131 | -m|--maintainers) |
132 | ONLY_LIST='y' | |
133 | PRINT_MAINTS='y' | |
134 | MAINTAINERS_ONLY='y' | |
135 | shift ;; | |
136 | -M|--mails) | |
137 | ONLY_LIST='y' | |
138 | PRINT_MAINTS='y' | |
139 | shift ;; | |
d8e392d9 MF |
140 | -h|--help) |
141 | usage ;; | |
0777eafb WD |
142 | --) |
143 | shift ; break ;; | |
144 | *) | |
145 | echo "Internal error!" >&2 ; exit 1 ;; | |
146 | esac | |
147 | done | |
148 | # echo "Remaining arguments:" | |
149 | # for arg do echo '--> '"\`$arg'" ; done | |
150 | ||
151 | FILTER="\$1 !~ /^#/" | |
152 | [ "$opt_a" ] && FILTER="${FILTER} && $opt_a" | |
153 | [ "$opt_c" ] && FILTER="${FILTER} && $opt_c" | |
154 | [ "$opt_s" ] && FILTER="${FILTER} && $opt_s" | |
155 | [ "$opt_v" ] && FILTER="${FILTER} && $opt_v" | |
156 | ||
157 | if [ "$SELECTED" ] ; then | |
158 | SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg) | |
cd57b0bb PT |
159 | |
160 | # Make sure some boards from boards.cfg are actually found | |
161 | if [ -z "$SELECTED" ] ; then | |
162 | echo "Error: No boards selected, invalid arguments" | |
163 | exit 1 | |
164 | fi | |
0777eafb WD |
165 | fi |
166 | ||
167 | ######################################################################### | |
168 | ||
40a28f08 PT |
169 | # Print statistics when we exit |
170 | trap exit 1 2 3 15 | |
171 | trap print_stats 0 | |
172 | ||
7fa6a2f3 WD |
173 | # Determine number of CPU cores if no default was set |
174 | : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"} | |
175 | ||
176 | if [ "$BUILD_NCPUS" -gt 1 ] | |
177 | then | |
55f786d8 | 178 | JOBS="-j $((BUILD_NCPUS + 1))" |
7fa6a2f3 WD |
179 | else |
180 | JOBS="" | |
181 | fi | |
182 | ||
a8c7c708 | 183 | |
7ebf7443 WD |
184 | if [ "${CROSS_COMPILE}" ] ; then |
185 | MAKE="make CROSS_COMPILE=${CROSS_COMPILE}" | |
186 | else | |
187 | MAKE=make | |
188 | fi | |
189 | ||
f9328639 MB |
190 | if [ "${MAKEALL_LOGDIR}" ] ; then |
191 | LOG_DIR=${MAKEALL_LOGDIR} | |
192 | else | |
193 | LOG_DIR="LOG" | |
194 | fi | |
887e2ec9 | 195 | |
f588bb03 AF |
196 | : ${BUILD_NBUILDS:=1} |
197 | BUILD_MANY=0 | |
198 | ||
199 | if [ "${BUILD_NBUILDS}" -gt 1 ] ; then | |
200 | BUILD_MANY=1 | |
201 | : ${BUILD_DIR:=./build} | |
202 | mkdir -p "${BUILD_DIR}/ERR" | |
203 | find "${BUILD_DIR}/ERR/" -type f -exec rm -f {} + | |
f9328639 MB |
204 | fi |
205 | ||
f588bb03 AF |
206 | : ${BUILD_DIR:=.} |
207 | ||
208 | OUTPUT_PREFIX="${BUILD_DIR}" | |
209 | ||
210 | [ -d ${LOG_DIR} ] || mkdir "${LOG_DIR}" || exit 1 | |
08510204 JH |
211 | if [ "$CONTINUE" != 'y' -a "$REBUILD_ERRORS" != 'y' ] ; then |
212 | find "${LOG_DIR}/" -type f -exec rm -f {} + | |
213 | fi | |
7ebf7443 WD |
214 | |
215 | LIST="" | |
216 | ||
40a28f08 PT |
217 | # Keep track of the number of builds and errors |
218 | ERR_CNT=0 | |
219 | ERR_LIST="" | |
b86a475c JH |
220 | WRN_CNT=0 |
221 | WRN_LIST="" | |
40a28f08 | 222 | TOTAL_CNT=0 |
08510204 | 223 | SKIP_CNT=0 |
f588bb03 AF |
224 | CURRENT_CNT=0 |
225 | OLDEST_IDX=1 | |
f2352877 | 226 | RC=0 |
40a28f08 | 227 | |
9ec49f8f MF |
228 | # Helper funcs for parsing boards.cfg |
229 | boards_by_field() | |
230 | { | |
aa2e279d AM |
231 | FS="[ \t]+" |
232 | [ -n "$3" ] && FS="$3" | |
9ec49f8f MF |
233 | awk \ |
234 | -v field="$1" \ | |
235 | -v select="$2" \ | |
aa2e279d | 236 | -F "$FS" \ |
9ec49f8f MF |
237 | '($1 !~ /^#/ && $field == select) { print $1 }' \ |
238 | boards.cfg | |
239 | } | |
240 | boards_by_arch() { boards_by_field 2 "$@" ; } | |
aa2e279d | 241 | boards_by_cpu() { boards_by_field 3 "$@" "[: \t]+" ; } |
0a41edaa | 242 | boards_by_soc() { boards_by_field 6 "$@" ; } |
9ec49f8f | 243 | |
0db5bca8 WD |
244 | ######################################################################### |
245 | ## MPC5xx Systems | |
246 | ######################################################################### | |
247 | ||
9ec49f8f | 248 | LIST_5xx="$(boards_by_cpu mpc5xx)" |
0db5bca8 | 249 | |
945af8d7 WD |
250 | ######################################################################### |
251 | ## MPC5xxx Systems | |
252 | ######################################################################### | |
253 | ||
2ae18241 | 254 | LIST_5xxx="$(boards_by_cpu mpc5xxx)" |
945af8d7 | 255 | |
8993e54b RJ |
256 | ######################################################################### |
257 | ## MPC512x Systems | |
258 | ######################################################################### | |
259 | ||
2ae18241 | 260 | LIST_512x="$(boards_by_cpu mpc512x)" |
945af8d7 | 261 | |
7ebf7443 WD |
262 | ######################################################################### |
263 | ## MPC8xx Systems | |
264 | ######################################################################### | |
9ec49f8f | 265 | |
2ae18241 | 266 | LIST_8xx="$(boards_by_cpu mpc8xx)" |
7ebf7443 WD |
267 | |
268 | ######################################################################### | |
269 | ## PPC4xx Systems | |
270 | ######################################################################### | |
271 | ||
2ae18241 | 272 | LIST_4xx="$(boards_by_cpu ppc4xx)" |
7ebf7443 | 273 | |
983fda83 WD |
274 | ######################################################################### |
275 | ## MPC8220 Systems | |
276 | ######################################################################### | |
277 | ||
9ec49f8f | 278 | LIST_8220="$(boards_by_cpu mpc8220)" |
983fda83 | 279 | |
7ebf7443 WD |
280 | ######################################################################### |
281 | ## MPC824x Systems | |
282 | ######################################################################### | |
283 | ||
2ae18241 | 284 | LIST_824x="$(boards_by_cpu mpc824x)" |
592c5cab | 285 | |
7ebf7443 | 286 | ######################################################################### |
7aa78614 | 287 | ## MPC8260 Systems (includes 8250, 8255 etc.) |
7ebf7443 WD |
288 | ######################################################################### |
289 | ||
2ae18241 | 290 | LIST_8260="$(boards_by_cpu mpc8260)" |
7ebf7443 | 291 | |
f046ccd1 EL |
292 | ######################################################################### |
293 | ## MPC83xx Systems (includes 8349, etc.) | |
294 | ######################################################################### | |
295 | ||
2ae18241 | 296 | LIST_83xx="$(boards_by_cpu mpc83xx)" |
f046ccd1 | 297 | |
42d1f039 WD |
298 | ######################################################################### |
299 | ## MPC85xx Systems (includes 8540, 8560 etc.) | |
300 | ######################################################################### | |
301 | ||
2ae18241 | 302 | LIST_85xx="$(boards_by_cpu mpc85xx)" |
42d1f039 | 303 | |
822d5536 JL |
304 | ######################################################################### |
305 | ## MPC86xx Systems | |
306 | ######################################################################### | |
307 | ||
2ae18241 | 308 | LIST_86xx="$(boards_by_cpu mpc86xx)" |
822d5536 | 309 | |
7ebf7443 WD |
310 | ######################################################################### |
311 | ## 74xx/7xx Systems | |
312 | ######################################################################### | |
313 | ||
2ae18241 | 314 | LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)" |
7ebf7443 | 315 | |
d9a42c0a WD |
316 | ######################################################################### |
317 | ## PowerPC groups | |
318 | ######################################################################### | |
319 | ||
320 | LIST_TSEC=" \ | |
321 | ${LIST_83xx} \ | |
322 | ${LIST_85xx} \ | |
323 | ${LIST_86xx} \ | |
324 | " | |
325 | ||
a47a12be | 326 | LIST_powerpc=" \ |
fb56579f | 327 | ${LIST_5xx} \ |
3deca9d4 | 328 | ${LIST_512x} \ |
fb56579f KP |
329 | ${LIST_5xxx} \ |
330 | ${LIST_8xx} \ | |
331 | ${LIST_8220} \ | |
332 | ${LIST_824x} \ | |
333 | ${LIST_8260} \ | |
334 | ${LIST_83xx} \ | |
335 | ${LIST_85xx} \ | |
336 | ${LIST_86xx} \ | |
337 | ${LIST_4xx} \ | |
2ae18241 | 338 | ${LIST_74xx_7xx}\ |
fb56579f | 339 | " |
7ebf7443 | 340 | |
a47a12be SR |
341 | # Alias "ppc" -> "powerpc" to not break compatibility with older scripts |
342 | # still using "ppc" instead of "powerpc" | |
343 | LIST_ppc=" \ | |
344 | ${LIST_powerpc} \ | |
345 | " | |
346 | ||
7ebf7443 WD |
347 | ######################################################################### |
348 | ## StrongARM Systems | |
349 | ######################################################################### | |
350 | ||
9ec49f8f | 351 | LIST_SA="$(boards_by_cpu sa1100)" |
7ebf7443 | 352 | |
cce5d210 AM |
353 | ######################################################################### |
354 | ## ARM7 Systems | |
355 | ######################################################################### | |
356 | ||
357 | LIST_ARM7="$(boards_by_cpu arm720t)" | |
358 | ||
7ebf7443 WD |
359 | ######################################################################### |
360 | ## ARM9 Systems | |
361 | ######################################################################### | |
362 | ||
6a8760d7 WD |
363 | LIST_ARM9="$(boards_by_cpu arm920t) \ |
364 | $(boards_by_cpu arm926ejs) \ | |
365 | $(boards_by_cpu arm925t) \ | |
cce5d210 | 366 | $(boards_by_cpu arm946es) \ |
6f21347d | 367 | " |
7ebf7443 | 368 | |
8ed96046 WD |
369 | ######################################################################### |
370 | ## ARM11 Systems | |
371 | ######################################################################### | |
cce5d210 AM |
372 | LIST_ARM11="$(boards_by_cpu arm1136) \ |
373 | $(boards_by_cpu arm1176) \ | |
374 | " | |
8ed96046 | 375 | |
f904cdbb | 376 | ######################################################################### |
f56348af | 377 | ## ARMV7 Systems |
f904cdbb | 378 | ######################################################################### |
f37586bb DB |
379 | |
380 | LIST_ARMV7="$(boards_by_cpu armv7)" | |
f904cdbb | 381 | |
602cac13 JCPV |
382 | ######################################################################### |
383 | ## AT91 Systems | |
384 | ######################################################################### | |
385 | ||
5cfeec51 | 386 | LIST_at91="$(boards_by_soc at91)" |
602cac13 | 387 | |
7ebf7443 WD |
388 | ######################################################################### |
389 | ## Xscale Systems | |
390 | ######################################################################### | |
391 | ||
7c957c0e | 392 | LIST_pxa="$(boards_by_cpu pxa)" |
7ebf7443 | 393 | |
bb1c01ea | 394 | LIST_ixp="$(boards_by_cpu ixp)" |
7ebf7443 | 395 | |
24dede48 SR |
396 | ######################################################################### |
397 | ## SPEAr Systems | |
398 | ######################################################################### | |
399 | ||
400 | LIST_spear="$(boards_by_soc spear)" | |
401 | ||
d9a42c0a WD |
402 | ######################################################################### |
403 | ## ARM groups | |
404 | ######################################################################### | |
2d5b561e | 405 | |
cce5d210 | 406 | LIST_arm="$(boards_by_arch arm)" |
7ebf7443 | 407 | |
c021880a | 408 | ######################################################################### |
b62bdffb | 409 | ## MIPS Systems (default = big endian) |
c021880a WD |
410 | ######################################################################### |
411 | ||
fb56579f KP |
412 | LIST_mips4kc=" \ |
413 | incaip \ | |
cce5d210 AM |
414 | incaip_100MHz \ |
415 | incaip_133MHz \ | |
416 | incaip_150MHz \ | |
0764c164 | 417 | qemu_mips \ |
2a61eff6 SR |
418 | vct_platinum \ |
419 | vct_platinum_small \ | |
420 | vct_platinum_onenand \ | |
421 | vct_platinum_onenand_small \ | |
422 | vct_platinumavc \ | |
423 | vct_platinumavc_small \ | |
424 | vct_platinumavc_onenand \ | |
425 | vct_platinumavc_onenand_small \ | |
426 | vct_premium \ | |
427 | vct_premium_small \ | |
428 | vct_premium_onenand \ | |
429 | vct_premium_onenand_small \ | |
fb56579f | 430 | " |
c021880a | 431 | |
fb56579f KP |
432 | LIST_au1xx0=" \ |
433 | dbau1000 \ | |
434 | dbau1100 \ | |
435 | dbau1500 \ | |
436 | dbau1550 \ | |
fb56579f | 437 | " |
5da627a4 | 438 | |
fb56579f KP |
439 | LIST_mips=" \ |
440 | ${LIST_mips4kc} \ | |
441 | ${LIST_mips5kc} \ | |
442 | ${LIST_au1xx0} \ | |
443 | " | |
c021880a | 444 | |
b62bdffb WD |
445 | ######################################################################### |
446 | ## MIPS Systems (little endian) | |
447 | ######################################################################### | |
448 | ||
92b09095 | 449 | LIST_xburst_el=" \ |
3c945542 XL |
450 | qi_lb60 \ |
451 | " | |
b62bdffb | 452 | |
fb56579f KP |
453 | LIST_au1xx0_el=" \ |
454 | dbau1550_el \ | |
b09258c5 | 455 | pb1000 \ |
fb56579f | 456 | " |
fb56579f | 457 | LIST_mips_el=" \ |
92b09095 | 458 | ${LIST_xburst_el} \ |
fb56579f KP |
459 | ${LIST_au1xx0_el} \ |
460 | " | |
deddf5d2 SK |
461 | ######################################################################### |
462 | ## OpenRISC Systems | |
463 | ######################################################################### | |
464 | ||
465 | LIST_openrisc="$(boards_by_arch openrisc)" | |
b62bdffb | 466 | |
7a8e9bed | 467 | ######################################################################### |
fea25720 | 468 | ## x86 Systems |
7a8e9bed WD |
469 | ######################################################################### |
470 | ||
fea25720 | 471 | LIST_x86="$(boards_by_arch x86)" |
7a8e9bed | 472 | |
5c952cf0 WD |
473 | ######################################################################### |
474 | ## Nios-II Systems | |
475 | ######################################################################### | |
476 | ||
4827d067 | 477 | LIST_nios2="$(boards_by_arch nios2)" |
5c952cf0 | 478 | |
857cad37 WD |
479 | ######################################################################### |
480 | ## MicroBlaze Systems | |
481 | ######################################################################### | |
482 | ||
9ec49f8f | 483 | LIST_microblaze="$(boards_by_arch microblaze)" |
857cad37 | 484 | |
f8c3b4f3 ZL |
485 | ######################################################################### |
486 | ## ColdFire Systems | |
487 | ######################################################################### | |
488 | ||
cce5d210 | 489 | LIST_m68k="$(boards_by_arch m68k)" |
c13f47b0 | 490 | LIST_coldfire=${LIST_m68k} |
f8c3b4f3 | 491 | |
6ccec449 WD |
492 | ######################################################################### |
493 | ## AVR32 Systems | |
494 | ######################################################################### | |
495 | ||
9ec49f8f | 496 | LIST_avr32="$(boards_by_arch avr32)" |
6ccec449 | 497 | |
ef26a08f AL |
498 | ######################################################################### |
499 | ## Blackfin Systems | |
500 | ######################################################################### | |
501 | ||
36cf8cb4 | 502 | LIST_blackfin="$(boards_by_arch blackfin)" |
ef26a08f | 503 | |
c7144373 JCPV |
504 | ######################################################################### |
505 | ## SH Systems | |
506 | ######################################################################### | |
507 | ||
e0f0e527 | 508 | LIST_sh2="$(boards_by_cpu sh2)" |
3771c69d | 509 | LIST_sh3="$(boards_by_cpu sh3)" |
03626be3 | 510 | LIST_sh4="$(boards_by_cpu sh4)" |
d9a42c0a | 511 | |
03626be3 | 512 | LIST_sh="$(boards_by_arch sh)" |
c7144373 | 513 | |
c2f02da2 DH |
514 | ######################################################################### |
515 | ## SPARC Systems | |
516 | ######################################################################### | |
517 | ||
9ec49f8f | 518 | LIST_sparc="$(boards_by_arch sparc)" |
7ebf7443 | 519 | |
5f1719c1 ML |
520 | ######################################################################### |
521 | ## NDS32 Systems | |
522 | ######################################################################### | |
523 | ||
524 | LIST_nds32="$(boards_by_arch nds32)" | |
525 | ||
7ebf7443 WD |
526 | #----------------------------------------------------------------------- |
527 | ||
9b96c6b1 MV |
528 | get_target_location() { |
529 | local target=$1 | |
530 | local BOARD_NAME="" | |
531 | local CONFIG_NAME="" | |
532 | local board="" | |
533 | local vendor="" | |
534 | ||
535 | # Automatic mode | |
536 | local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg` | |
537 | ||
538 | if [ -z "${line}" ] ; then echo "" ; return ; fi | |
539 | ||
540 | set ${line} | |
541 | ||
542 | # add default board name if needed | |
543 | [ $# = 3 ] && set ${line} ${1} | |
544 | ||
545 | CONFIG_NAME="${1%_config}" | |
546 | ||
547 | [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}" | |
548 | ||
549 | if [ "$4" = "-" ] ; then | |
550 | board=${BOARD_NAME} | |
551 | else | |
552 | board="$4" | |
553 | fi | |
554 | ||
555 | [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5" | |
556 | [ $# -gt 6 ] && [ "$7" != "-" ] && { | |
557 | tmp="${7%:*}" | |
558 | if [ "$tmp" ] ; then | |
559 | CONFIG_NAME="$tmp" | |
560 | fi | |
561 | } | |
562 | ||
563 | # Assign board directory to BOARDIR variable | |
564 | if [ -z "${vendor}" ] ; then | |
565 | BOARDDIR=${board} | |
566 | else | |
567 | BOARDDIR=${vendor}/${board} | |
568 | fi | |
569 | ||
570 | echo "${CONFIG_NAME}:${BOARDDIR}" | |
571 | } | |
572 | ||
573 | get_target_maintainers() { | |
574 | local name=`echo $1 | cut -d : -f 1` | |
575 | ||
576 | if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then | |
577 | echo "" | |
578 | return ; | |
579 | fi | |
580 | ||
581 | local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1` | |
582 | local mail=`tac MAINTAINERS | tail -n +${line} | \ | |
583 | sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \ | |
584 | sed "s/^.*<//;s/>.*$//"` | |
585 | echo "$mail" | |
586 | } | |
587 | ||
588 | list_target() { | |
589 | if [ "$PRINT_MAINTS" != 'y' ] ; then | |
590 | echo "$1" | |
591 | return | |
592 | fi | |
593 | ||
594 | echo -n "$1:" | |
595 | ||
596 | local loc=`get_target_location $1` | |
597 | ||
598 | if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi | |
599 | ||
600 | local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"` | |
601 | ||
602 | if [ "$MAINTAINERS_ONLY" != 'y' ] ; then | |
603 | ||
604 | local dir=`echo ${loc} | cut -d ":" -f 2` | |
605 | local cfg=`echo ${loc} | cut -d ":" -f 1` | |
606 | local git_result=`git log --format=%aE board/${dir} \ | |
607 | include/configs/${cfg}.h | grep "@"` | |
608 | local git_result_recent=`echo ${git_result} | tr " " "\n" | \ | |
609 | head -n 3` | |
610 | local git_result_top=`echo ${git_result} | tr " " "\n" | \ | |
611 | sort | uniq -c | sort -nr | head -n 3 | \ | |
612 | sed "s/^ \+[0-9]\+ \+//"` | |
613 | ||
614 | echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \ | |
615 | sort -u | tr "\n" " " | sed "s/ $//" ; | |
616 | else | |
617 | echo -e "$maintainers_result" | sort -u | tr "\n" " " | \ | |
618 | sed "s/ $//" ; | |
619 | fi | |
620 | ||
621 | echo "" | |
622 | } | |
623 | ||
f588bb03 AF |
624 | # Each finished build will have a file called ${donep}${n}, |
625 | # where n is the index of the build. Each build | |
626 | # we've already noted as finished will have ${skipp}${n}. | |
627 | # The code managing the build process will use this information | |
628 | # to ensure that only BUILD_NBUILDS builds are in flight at once | |
629 | donep="${LOG_DIR}/._done_" | |
630 | skipp="${LOG_DIR}/._skip_" | |
631 | ||
c97d59cb JH |
632 | build_target_killed() { |
633 | echo "Aborted $target build." | |
634 | # Remove the logs for this board since it was aborted | |
635 | rm -f ${LOG_DIR}/$target.MAKELOG ${LOG_DIR}/$target.ERR | |
636 | exit | |
637 | } | |
638 | ||
7ebf7443 WD |
639 | build_target() { |
640 | target=$1 | |
f588bb03 AF |
641 | build_idx=$2 |
642 | ||
f50bf50d AF |
643 | if [ "$ONLY_LIST" == 'y' ] ; then |
644 | list_target ${target} | |
645 | return | |
646 | fi | |
647 | ||
f588bb03 AF |
648 | if [ $BUILD_MANY == 1 ] ; then |
649 | output_dir="${OUTPUT_PREFIX}/${target}" | |
650 | mkdir -p "${output_dir}" | |
c97d59cb | 651 | trap build_target_killed TERM |
f588bb03 AF |
652 | else |
653 | output_dir="${OUTPUT_PREFIX}" | |
654 | fi | |
655 | ||
656 | export BUILD_DIR="${output_dir}" | |
7ebf7443 WD |
657 | |
658 | ${MAKE} distclean >/dev/null | |
d70d8ccc | 659 | ${MAKE} -s ${target}_config |
f9328639 | 660 | |
33f336d5 | 661 | ${MAKE} ${JOBS} ${CHECK} all \ |
f588bb03 | 662 | >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR |
f2352877 PT |
663 | |
664 | # Check for 'make' errors | |
665 | if [ ${PIPESTATUS[0]} -ne 0 ] ; then | |
666 | RC=1 | |
667 | fi | |
668 | ||
f588bb03 | 669 | if [ $BUILD_MANY == 1 ] ; then |
c97d59cb JH |
670 | trap - TERM |
671 | ||
ed296d20 | 672 | ${MAKE} -s tidy |
f588bb03 AF |
673 | |
674 | if [ -s ${LOG_DIR}/${target}.ERR ] ; then | |
b86a475c | 675 | cp ${LOG_DIR}/${target}.ERR ${OUTPUT_PREFIX}/ERR/${target} |
f588bb03 AF |
676 | else |
677 | rm ${LOG_DIR}/${target}.ERR | |
678 | fi | |
40a28f08 | 679 | else |
f588bb03 | 680 | if [ -s ${LOG_DIR}/${target}.ERR ] ; then |
b86a475c JH |
681 | if grep -iw error ${LOG_DIR}/${target}.ERR ; then |
682 | : $(( ERR_CNT += 1 )) | |
683 | ERR_LIST="${ERR_LIST} $target" | |
684 | else | |
685 | : $(( WRN_CNT += 1 )) | |
686 | WRN_LIST="${WRN_LIST} $target" | |
687 | fi | |
f588bb03 AF |
688 | else |
689 | rm ${LOG_DIR}/${target}.ERR | |
690 | fi | |
40a28f08 PT |
691 | fi |
692 | ||
f588bb03 AF |
693 | OBJS=${output_dir}/u-boot |
694 | if [ -e ${output_dir}/spl/u-boot-spl ]; then | |
695 | OBJS="${OBJS} ${output_dir}/spl/u-boot-spl" | |
0c185696 SW |
696 | fi |
697 | ||
698 | ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG | |
f588bb03 AF |
699 | |
700 | [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR" | |
701 | ||
f588bb03 | 702 | touch "${donep}${build_idx}" |
7ebf7443 | 703 | } |
f588bb03 AF |
704 | |
705 | manage_builds() { | |
706 | search_idx=${OLDEST_IDX} | |
f50bf50d AF |
707 | if [ "$ONLY_LIST" == 'y' ] ; then return ; fi |
708 | ||
f588bb03 AF |
709 | while true; do |
710 | if [ -e "${donep}${search_idx}" ] ; then | |
f588bb03 AF |
711 | : $(( CURRENT_CNT-- )) |
712 | [ ${OLDEST_IDX} -eq ${search_idx} ] && | |
713 | : $(( OLDEST_IDX++ )) | |
714 | ||
715 | # Only want to count it once | |
716 | rm -f "${donep}${search_idx}" | |
717 | touch "${skipp}${search_idx}" | |
718 | elif [ -e "${skipp}${search_idx}" ] ; then | |
719 | [ ${OLDEST_IDX} -eq ${search_idx} ] && | |
720 | : $(( OLDEST_IDX++ )) | |
721 | fi | |
f588bb03 AF |
722 | : $(( search_idx++ )) |
723 | if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then | |
f588bb03 AF |
724 | if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then |
725 | search_idx=${OLDEST_IDX} | |
726 | sleep 1 | |
727 | else | |
728 | break | |
729 | fi | |
730 | fi | |
731 | done | |
732 | } | |
733 | ||
9ec49f8f MF |
734 | build_targets() { |
735 | for t in "$@" ; do | |
736 | # If a LIST_xxx var exists, use it. But avoid variable | |
737 | # expansion in the eval when a board name contains certain | |
738 | # characters that the shell interprets. | |
739 | case ${t} in | |
740 | *[-+=]*) list= ;; | |
741 | *) list=$(eval echo '${LIST_'$t'}') ;; | |
742 | esac | |
743 | if [ -n "${list}" ] ; then | |
744 | build_targets ${list} | |
745 | else | |
f588bb03 AF |
746 | : $((TOTAL_CNT += 1)) |
747 | : $((CURRENT_CNT += 1)) | |
748 | rm -f "${donep}${TOTAL_CNT}" | |
749 | rm -f "${skipp}${TOTAL_CNT}" | |
08510204 JH |
750 | if [ "$CONTINUE" = 'y' -a -e ${LOG_DIR}/$t.MAKELOG ] ; then |
751 | : $((SKIP_CNT += 1)) | |
752 | touch "${donep}${TOTAL_CNT}" | |
753 | elif [ "$REBUILD_ERRORS" = 'y' -a ! -e ${LOG_DIR}/$t.ERR ] ; then | |
754 | : $((SKIP_CNT += 1)) | |
755 | touch "${donep}${TOTAL_CNT}" | |
b594bd6a | 756 | else |
08510204 JH |
757 | if [ $BUILD_MANY == 1 ] ; then |
758 | build_target ${t} ${TOTAL_CNT} & | |
759 | else | |
760 | CUR_TGT="${t}" | |
761 | build_target ${t} ${TOTAL_CNT} | |
762 | CUR_TGT='' | |
763 | fi | |
b594bd6a | 764 | fi |
f588bb03 AF |
765 | fi |
766 | ||
767 | # We maintain a running count of all the builds we have done. | |
768 | # Each finished build will have a file called ${donep}${n}, | |
769 | # where n is the index of the build. Each build | |
770 | # we've already noted as finished will have ${skipp}${n}. | |
771 | # We track the current index via TOTAL_CNT, and the oldest | |
772 | # index. When we exceed the maximum number of parallel builds, | |
773 | # We look from oldest to current for builds that have completed, | |
774 | # and update the current count and oldest index as appropriate. | |
775 | # If we've gone through the entire list, wait a second, and | |
776 | # reprocess the entire list until we find a build that has | |
777 | # completed | |
778 | if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then | |
779 | manage_builds | |
9ec49f8f MF |
780 | fi |
781 | done | |
782 | } | |
7ebf7443 WD |
783 | |
784 | #----------------------------------------------------------------------- | |
785 | ||
f50bf50d | 786 | kill_children() { |
c97d59cb JH |
787 | local pgid=`ps -p $$ --no-headers -o "%r" | tr -d ' '` |
788 | local children=`pgrep -g $pgid | grep -v $$ | grep -v $pgid` | |
789 | ||
790 | kill $children 2> /dev/null | |
791 | wait $children 2> /dev/null | |
f50bf50d AF |
792 | |
793 | exit | |
794 | } | |
795 | ||
40a28f08 | 796 | print_stats() { |
7f79c6f2 | 797 | if [ "$ONLY_LIST" == 'y' ] ; then return ; fi |
f588bb03 | 798 | |
c97d59cb JH |
799 | # Only count boards that completed |
800 | : $((TOTAL_CNT = `find ${skipp}* 2> /dev/null | wc -l`)) | |
801 | ||
f588bb03 AF |
802 | rm -f ${donep}* ${skipp}* |
803 | ||
804 | if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then | |
033220e7 | 805 | ERR_LIST=`grep -riwl error ${OUTPUT_PREFIX}/ERR/` |
b86a475c JH |
806 | ERR_LIST=`for f in $ERR_LIST ; do echo -n " $(basename $f)" ; done` |
807 | ERR_CNT=`echo $ERR_LIST | wc -w | awk '{print $1}'` | |
033220e7 | 808 | WRN_LIST=`grep -riwL error ${OUTPUT_PREFIX}/ERR/` |
b86a475c JH |
809 | WRN_LIST=`for f in $WRN_LIST ; do echo -n " $(basename $f)" ; done` |
810 | WRN_CNT=`echo $WRN_LIST | wc -w | awk '{print $1}'` | |
c97d59cb JH |
811 | else |
812 | # Remove the logs for any board that was interrupted | |
813 | rm -f ${LOG_DIR}/${CUR_TGT}.MAKELOG ${LOG_DIR}/${CUR_TGT}.ERR | |
f588bb03 AF |
814 | fi |
815 | ||
08510204 | 816 | : $((TOTAL_CNT -= ${SKIP_CNT})) |
40a28f08 PT |
817 | echo "" |
818 | echo "--------------------- SUMMARY ----------------------------" | |
08510204 JH |
819 | if [ "$CONTINUE" = 'y' -o "$REBUILD_ERRORS" = 'y' ] ; then |
820 | echo "Boards skipped: ${SKIP_CNT}" | |
821 | fi | |
40a28f08 PT |
822 | echo "Boards compiled: ${TOTAL_CNT}" |
823 | if [ ${ERR_CNT} -gt 0 ] ; then | |
b86a475c JH |
824 | echo "Boards with errors: ${ERR_CNT} (${ERR_LIST} )" |
825 | fi | |
826 | if [ ${WRN_CNT} -gt 0 ] ; then | |
827 | echo "Boards with warnings but no errors: ${WRN_CNT} (${WRN_LIST} )" | |
40a28f08 PT |
828 | fi |
829 | echo "----------------------------------------------------------" | |
f2352877 | 830 | |
f50bf50d | 831 | if [ $BUILD_MANY == 1 ] ; then |
c97d59cb | 832 | kill_children |
f50bf50d AF |
833 | fi |
834 | ||
f2352877 | 835 | exit $RC |
40a28f08 | 836 | } |
7ebf7443 | 837 | |
40a28f08 | 838 | #----------------------------------------------------------------------- |
9ec49f8f | 839 | |
0777eafb WD |
840 | # Build target groups selected by options, plus any command line args |
841 | set -- ${SELECTED} "$@" | |
842 | # run PowerPC by default | |
9ec49f8f | 843 | [ $# = 0 ] && set -- powerpc |
9ec49f8f | 844 | build_targets "$@" |
f588bb03 | 845 | wait |