Peter Tyser | a5a27b9 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 1 | #!/bin/bash |
Wolfgang Denk | 7b74fec | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 2 | # Tool mainly for U-Boot Quality Assurance: build one or more board |
| 3 | # configurations with minimal verbosity, showing only warnings and |
| 4 | # errors. |
Mike Frysinger | ed63998 | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 5 | |
| 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 |
Marek Vasut | cc3e1cb | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 19 | -l, --list List all targets to be built |
Marek Vasut | 4f21ade | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 20 | -m, --maintainers List all targets and maintainer email |
| 21 | -M, --mails List all targets and all affilated emails |
Mike Frysinger | ed63998 | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 22 | -h, --help This help output |
| 23 | |
| 24 | Selections by these options are logically ANDed; if the same option |
| 25 | is used repeatedly, such selections are ORed. So "-v FOO -v BAR" |
| 26 | will select all configurations where the vendor is either FOO or |
| 27 | BAR. Any additional arguments specified on the command line are |
| 28 | always build additionally. See the boards.cfg file for more info. |
Wolfgang Denk | 7b74fec | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 29 | |
Mike Frysinger | ed63998 | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 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 Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 37 | BUILD_NBUILDS number of parallel targets (default: 1) |
Mike Frysinger | ed63998 | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 38 | |
| 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 Vasut | 4f21ade | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 54 | SHORT_OPTS="ha:c:v:s:lmM" |
| 55 | LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails" |
Wolfgang Denk | 7b74fec | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 56 | |
| 57 | # Option processing based on util-linux-2.13/getopt-parse.bash |
| 58 | |
Wolfgang Denk | 1136f69 | 2010-10-27 22:48:30 +0200 | [diff] [blame] | 59 | # Note that we use `"$@"' to let each command-line parameter expand to a |
Wolfgang Denk | 7b74fec | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 60 | # separate word. The quotes around `$@' are essential! |
| 61 | # We need TEMP as the `eval set --' would nuke the return value of |
| 62 | # getopt. |
| 63 | TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \ |
| 64 | -n 'MAKEALL' -- "$@"` |
| 65 | |
Mike Frysinger | ed63998 | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 66 | [ $? != 0 ] && usage 1 |
Wolfgang Denk | 7b74fec | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 67 | |
| 68 | # Note the quotes around `$TEMP': they are essential! |
| 69 | eval set -- "$TEMP" |
| 70 | |
| 71 | SELECTED='' |
Marek Vasut | cc3e1cb | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 72 | ONLY_LIST='' |
Marek Vasut | 4f21ade | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 73 | PRINT_MAINTS='' |
| 74 | MAINTAINERS_ONLY='' |
Wolfgang Denk | 7b74fec | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 75 | |
| 76 | while 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 |
| 90 | opt_c="${opt_c%)} || \$3 == \"$2\")" |
| 91 | else |
| 92 | opt_c="(\$3 == \"$2\")" |
| 93 | 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 Vasut | cc3e1cb | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 114 | -l|--list) |
| 115 | ONLY_LIST='y' |
| 116 | shift ;; |
Marek Vasut | 4f21ade | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 117 | -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 Frysinger | ed63998 | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 126 | -h|--help) |
| 127 | usage ;; |
Wolfgang Denk | 7b74fec | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 128 | --) |
| 129 | shift ; break ;; |
| 130 | *) |
| 131 | echo "Internal error!" >&2 ; exit 1 ;; |
| 132 | esac |
| 133 | done |
| 134 | # echo "Remaining arguments:" |
| 135 | # for arg do echo '--> '"\`$arg'" ; done |
| 136 | |
| 137 | FILTER="\$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 | |
| 143 | if [ "$SELECTED" ] ; then |
| 144 | SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg) |
Peter Tyser | 2f88760 | 2010-10-29 17:59:06 -0500 | [diff] [blame] | 145 | |
| 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 Denk | 7b74fec | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 151 | fi |
| 152 | |
| 153 | ######################################################################### |
| 154 | |
Peter Tyser | 23240d2 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 155 | # Print statistics when we exit |
| 156 | trap exit 1 2 3 15 |
| 157 | trap print_stats 0 |
| 158 | |
Wolfgang Denk | de5d660 | 2008-12-09 00:39:08 +0100 | [diff] [blame] | 159 | # Determine number of CPU cores if no default was set |
| 160 | : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"} |
| 161 | |
| 162 | if [ "$BUILD_NCPUS" -gt 1 ] |
| 163 | then |
Peter Tyser | 8a07f9a | 2009-09-21 12:04:33 -0500 | [diff] [blame] | 164 | JOBS="-j $((BUILD_NCPUS + 1))" |
Wolfgang Denk | de5d660 | 2008-12-09 00:39:08 +0100 | [diff] [blame] | 165 | else |
| 166 | JOBS="" |
| 167 | fi |
| 168 | |
wdenk | c0aa5c5 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 169 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 170 | if [ "${CROSS_COMPILE}" ] ; then |
| 171 | MAKE="make CROSS_COMPILE=${CROSS_COMPILE}" |
| 172 | else |
| 173 | MAKE=make |
| 174 | fi |
| 175 | |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 176 | if [ "${MAKEALL_LOGDIR}" ] ; then |
| 177 | LOG_DIR=${MAKEALL_LOGDIR} |
| 178 | else |
| 179 | LOG_DIR="LOG" |
| 180 | fi |
Stefan Roese | 42fbddd | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 181 | |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 182 | : ${BUILD_NBUILDS:=1} |
| 183 | BUILD_MANY=0 |
| 184 | |
| 185 | if [ "${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 Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 190 | fi |
| 191 | |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 192 | : ${BUILD_DIR:=.} |
| 193 | |
| 194 | OUTPUT_PREFIX="${BUILD_DIR}" |
| 195 | |
| 196 | [ -d ${LOG_DIR} ] || mkdir "${LOG_DIR}" || exit 1 |
| 197 | find "${LOG_DIR}/" -type f -exec rm -f {} + |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 198 | |
| 199 | LIST="" |
| 200 | |
Peter Tyser | 23240d2 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 201 | # Keep track of the number of builds and errors |
| 202 | ERR_CNT=0 |
| 203 | ERR_LIST="" |
| 204 | TOTAL_CNT=0 |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 205 | CURRENT_CNT=0 |
| 206 | OLDEST_IDX=1 |
Peter Tyser | a5a27b9 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 207 | RC=0 |
Peter Tyser | 23240d2 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 208 | |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 209 | # Helper funcs for parsing boards.cfg |
| 210 | boards_by_field() |
| 211 | { |
| 212 | awk \ |
| 213 | -v field="$1" \ |
| 214 | -v select="$2" \ |
| 215 | '($1 !~ /^#/ && $field == select) { print $1 }' \ |
| 216 | boards.cfg |
| 217 | } |
| 218 | boards_by_arch() { boards_by_field 2 "$@" ; } |
| 219 | boards_by_cpu() { boards_by_field 3 "$@" ; } |
Andreas Bießmann | bb96a8e | 2010-11-30 09:45:04 +0000 | [diff] [blame] | 220 | boards_by_soc() { boards_by_field 6 "$@" ; } |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 221 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 222 | ######################################################################### |
wdenk | 359733b | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 223 | ## MPC5xx Systems |
| 224 | ######################################################################### |
| 225 | |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 226 | LIST_5xx="$(boards_by_cpu mpc5xx)" |
wdenk | 359733b | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 227 | |
| 228 | ######################################################################### |
wdenk | 21136db | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 229 | ## MPC5xxx Systems |
| 230 | ######################################################################### |
| 231 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 232 | LIST_5xxx="$(boards_by_cpu mpc5xxx)" |
wdenk | 21136db | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 233 | |
| 234 | ######################################################################### |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 235 | ## MPC512x Systems |
| 236 | ######################################################################### |
| 237 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 238 | LIST_512x="$(boards_by_cpu mpc512x)" |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 239 | |
| 240 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 241 | ## MPC8xx Systems |
| 242 | ######################################################################### |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 243 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 244 | LIST_8xx="$(boards_by_cpu mpc8xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 245 | |
| 246 | ######################################################################### |
| 247 | ## PPC4xx Systems |
| 248 | ######################################################################### |
| 249 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 250 | LIST_4xx="$(boards_by_cpu ppc4xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 251 | |
| 252 | ######################################################################### |
wdenk | 337f565 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 253 | ## MPC8220 Systems |
| 254 | ######################################################################### |
| 255 | |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 256 | LIST_8220="$(boards_by_cpu mpc8220)" |
wdenk | 337f565 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 257 | |
| 258 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 259 | ## MPC824x Systems |
| 260 | ######################################################################### |
| 261 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 262 | LIST_824x="$(boards_by_cpu mpc824x)" |
wdenk | dbae504 | 2003-06-21 00:17:24 +0000 | [diff] [blame] | 263 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 264 | ######################################################################### |
wdenk | 541a76d | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 265 | ## MPC8260 Systems (includes 8250, 8255 etc.) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 266 | ######################################################################### |
| 267 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 268 | LIST_8260="$(boards_by_cpu mpc8260)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 269 | |
| 270 | ######################################################################### |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 271 | ## MPC83xx Systems (includes 8349, etc.) |
| 272 | ######################################################################### |
| 273 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 274 | LIST_83xx="$(boards_by_cpu mpc83xx)" |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 275 | |
| 276 | ######################################################################### |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 277 | ## MPC85xx Systems (includes 8540, 8560 etc.) |
| 278 | ######################################################################### |
| 279 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 280 | LIST_85xx="$(boards_by_cpu mpc85xx)" |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 281 | |
| 282 | ######################################################################### |
Jon Loeliger | 5fe3449 | 2007-05-23 14:09:46 -0500 | [diff] [blame] | 283 | ## MPC86xx Systems |
| 284 | ######################################################################### |
| 285 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 286 | LIST_86xx="$(boards_by_cpu mpc86xx)" |
Jon Loeliger | 5fe3449 | 2007-05-23 14:09:46 -0500 | [diff] [blame] | 287 | |
| 288 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 289 | ## 74xx/7xx Systems |
| 290 | ######################################################################### |
| 291 | |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 292 | LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 293 | |
Wolfgang Denk | 66549bd | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 294 | ######################################################################### |
| 295 | ## PowerPC groups |
| 296 | ######################################################################### |
| 297 | |
| 298 | LIST_TSEC=" \ |
| 299 | ${LIST_83xx} \ |
| 300 | ${LIST_85xx} \ |
| 301 | ${LIST_86xx} \ |
| 302 | " |
| 303 | |
Stefan Roese | 88fbf93 | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 304 | LIST_powerpc=" \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 305 | ${LIST_5xx} \ |
Jean-Christophe PLAGNIOL-VILLARD | 0912d31 | 2007-11-25 22:39:25 +0100 | [diff] [blame] | 306 | ${LIST_512x} \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 307 | ${LIST_5xxx} \ |
| 308 | ${LIST_8xx} \ |
| 309 | ${LIST_8220} \ |
| 310 | ${LIST_824x} \ |
| 311 | ${LIST_8260} \ |
| 312 | ${LIST_83xx} \ |
| 313 | ${LIST_85xx} \ |
| 314 | ${LIST_86xx} \ |
| 315 | ${LIST_4xx} \ |
Wolfgang Denk | 291ba1b | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 316 | ${LIST_74xx_7xx}\ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 317 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 318 | |
Stefan Roese | 88fbf93 | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 319 | # Alias "ppc" -> "powerpc" to not break compatibility with older scripts |
| 320 | # still using "ppc" instead of "powerpc" |
| 321 | LIST_ppc=" \ |
| 322 | ${LIST_powerpc} \ |
| 323 | " |
| 324 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 325 | ######################################################################### |
| 326 | ## StrongARM Systems |
| 327 | ######################################################################### |
| 328 | |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 329 | LIST_SA="$(boards_by_cpu sa1100)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 330 | |
| 331 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 332 | ## ARM9 Systems |
| 333 | ######################################################################### |
| 334 | |
Wolfgang Denk | 1076619 | 2011-09-08 05:01:24 +0000 | [diff] [blame] | 335 | LIST_ARM9="$(boards_by_cpu arm920t) \ |
| 336 | $(boards_by_cpu arm926ejs) \ |
| 337 | $(boards_by_cpu arm925t) \ |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 338 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 339 | |
| 340 | ######################################################################### |
wdenk | f806271 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 341 | ## ARM11 Systems |
| 342 | ######################################################################### |
Wolfgang Denk | 1076619 | 2011-09-08 05:01:24 +0000 | [diff] [blame] | 343 | LIST_ARM11="$(boards_by_cpu arm1136) \ |
Guennadi Liakhovetski | b093d8d | 2009-03-25 11:36:50 +0100 | [diff] [blame] | 344 | imx31_phycore \ |
| 345 | imx31_phycore_eet \ |
Magnus Lilja | 6eeb6f7 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 346 | mx31pdk \ |
Guennadi Liakhovetski | b093d8d | 2009-03-25 11:36:50 +0100 | [diff] [blame] | 347 | smdk6400 \ |
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 348 | " |
wdenk | f806271 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 349 | |
| 350 | ######################################################################### |
Steve Sakoman | 6329a8f | 2010-06-17 21:50:01 -0700 | [diff] [blame] | 351 | ## ARMV7 Systems |
Dirk Behme | 2781f80 | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 352 | ######################################################################### |
Dirk Behme | 1b787e3 | 2011-08-05 20:48:32 +0000 | [diff] [blame] | 353 | |
| 354 | LIST_ARMV7="$(boards_by_cpu armv7)" |
Dirk Behme | 2781f80 | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 355 | |
| 356 | ######################################################################### |
Jean-Christophe PLAGNIOL-VILLARD | 9a88fd1 | 2008-05-24 12:47:46 +0200 | [diff] [blame] | 357 | ## AT91 Systems |
| 358 | ######################################################################### |
| 359 | |
Thomas Petazzoni | a5e8576 | 2011-08-04 11:08:50 +0000 | [diff] [blame] | 360 | LIST_at91="$(boards_by_soc at91)" |
Jean-Christophe PLAGNIOL-VILLARD | 9a88fd1 | 2008-05-24 12:47:46 +0200 | [diff] [blame] | 361 | |
| 362 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 363 | ## Xscale Systems |
| 364 | ######################################################################### |
| 365 | |
Marek Vasut | 4ccaaef | 2010-10-04 00:21:51 +0200 | [diff] [blame] | 366 | LIST_pxa="$(boards_by_cpu pxa)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 367 | |
Andy Fleming | c96fa11 | 2012-04-25 09:36:13 +0000 | [diff] [blame^] | 368 | LIST_ixp="$(boards_by_cpu ixp)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 369 | |
Wolfgang Denk | 66549bd | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 370 | ######################################################################### |
| 371 | ## ARM groups |
| 372 | ######################################################################### |
wdenk | bd1575f | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 373 | |
Dirk Behme | 2781f80 | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 374 | LIST_arm=" \ |
| 375 | ${LIST_SA} \ |
Dirk Behme | 2781f80 | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 376 | ${LIST_ARM9} \ |
| 377 | ${LIST_ARM10} \ |
| 378 | ${LIST_ARM11} \ |
Steve Sakoman | 6329a8f | 2010-06-17 21:50:01 -0700 | [diff] [blame] | 379 | ${LIST_ARMV7} \ |
Dirk Behme | 2781f80 | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 380 | ${LIST_at91} \ |
| 381 | ${LIST_pxa} \ |
| 382 | ${LIST_ixp} \ |
wdenk | f806271 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 383 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 384 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 385 | ######################################################################### |
Wolfgang Denk | bc8c500 | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 386 | ## MIPS Systems (default = big endian) |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 387 | ######################################################################### |
| 388 | |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 389 | LIST_mips4kc=" \ |
| 390 | incaip \ |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 391 | qemu_mips \ |
Stefan Roese | ee7a6ba | 2009-01-21 17:25:01 +0100 | [diff] [blame] | 392 | vct_platinum \ |
| 393 | vct_platinum_small \ |
| 394 | vct_platinum_onenand \ |
| 395 | vct_platinum_onenand_small \ |
| 396 | vct_platinumavc \ |
| 397 | vct_platinumavc_small \ |
| 398 | vct_platinumavc_onenand \ |
| 399 | vct_platinumavc_onenand_small \ |
| 400 | vct_premium \ |
| 401 | vct_premium_small \ |
| 402 | vct_premium_onenand \ |
| 403 | vct_premium_onenand_small \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 404 | " |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 405 | |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 406 | LIST_au1xx0=" \ |
| 407 | dbau1000 \ |
| 408 | dbau1100 \ |
| 409 | dbau1500 \ |
| 410 | dbau1550 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 411 | gth2 \ |
| 412 | " |
wdenk | 9b7f384 | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 413 | |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 414 | LIST_mips=" \ |
| 415 | ${LIST_mips4kc} \ |
| 416 | ${LIST_mips5kc} \ |
| 417 | ${LIST_au1xx0} \ |
| 418 | " |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 419 | |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 420 | ######################################################################### |
Wolfgang Denk | bc8c500 | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 421 | ## MIPS Systems (little endian) |
| 422 | ######################################################################### |
| 423 | |
Daniel Schwierzeck | a10aa18 | 2011-11-24 03:57:56 +0000 | [diff] [blame] | 424 | LIST_xburst_el=" \ |
Xiangfu Liu | 7306ccb | 2011-10-12 12:24:06 +0800 | [diff] [blame] | 425 | qi_lb60 \ |
| 426 | " |
Wolfgang Denk | bc8c500 | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 427 | |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 428 | LIST_au1xx0_el=" \ |
| 429 | dbau1550_el \ |
Shinya Kuribayashi | 2437cfb | 2007-10-27 15:00:25 +0900 | [diff] [blame] | 430 | pb1000 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 431 | " |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 432 | LIST_mips_el=" \ |
Daniel Schwierzeck | a10aa18 | 2011-11-24 03:57:56 +0000 | [diff] [blame] | 433 | ${LIST_xburst_el} \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 434 | ${LIST_au1xx0_el} \ |
| 435 | " |
Stefan Kristiansson | c69cb3e | 2011-11-18 19:21:37 +0000 | [diff] [blame] | 436 | ######################################################################### |
| 437 | ## OpenRISC Systems |
| 438 | ######################################################################### |
| 439 | |
| 440 | LIST_openrisc="$(boards_by_arch openrisc)" |
Wolfgang Denk | bc8c500 | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 441 | |
| 442 | ######################################################################### |
Graeme Russ | cbfce1d | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 443 | ## x86 Systems |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 444 | ######################################################################### |
| 445 | |
Graeme Russ | cbfce1d | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 446 | LIST_x86="$(boards_by_arch x86)" |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 447 | |
wdenk | 3be717f | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 448 | ######################################################################### |
wdenk | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 449 | ## Nios-II Systems |
| 450 | ######################################################################### |
| 451 | |
Mike Frysinger | da6aa7c | 2011-06-26 23:00:19 -0400 | [diff] [blame] | 452 | LIST_nios2="$(boards_by_arch nios2)" |
wdenk | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 453 | |
| 454 | ######################################################################### |
wdenk | 20a6122 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 455 | ## MicroBlaze Systems |
| 456 | ######################################################################### |
| 457 | |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 458 | LIST_microblaze="$(boards_by_arch microblaze)" |
wdenk | 20a6122 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 459 | |
Zachary P. Landau | 1c3c096 | 2006-01-26 17:38:46 -0500 | [diff] [blame] | 460 | ######################################################################### |
| 461 | ## ColdFire Systems |
| 462 | ######################################################################### |
| 463 | |
Mike Frysinger | 6a9c023 | 2011-09-25 19:27:19 +0000 | [diff] [blame] | 464 | LIST_m68k="$(boards_by_arch m68k) |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 465 | EB+MCF-EV123 \ |
| 466 | EB+MCF-EV123_internal \ |
TsiChungLiew | 99b037a | 2008-01-14 17:43:33 -0600 | [diff] [blame] | 467 | M52277EVB \ |
TsiChungLiew | b859ef1 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 468 | M5235EVB \ |
TsiChung Liew | 3cdc00a | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 469 | M54451EVB \ |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 470 | M54455EVB \ |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 471 | " |
Mike Frysinger | 6a9c023 | 2011-09-25 19:27:19 +0000 | [diff] [blame] | 472 | LIST_coldfire=${LIST_m68k} |
Zachary P. Landau | 1c3c096 | 2006-01-26 17:38:46 -0500 | [diff] [blame] | 473 | |
Wolfgang Denk | 994ad96 | 2006-10-24 14:42:37 +0200 | [diff] [blame] | 474 | ######################################################################### |
| 475 | ## AVR32 Systems |
| 476 | ######################################################################### |
| 477 | |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 478 | LIST_avr32="$(boards_by_arch avr32)" |
Wolfgang Denk | 994ad96 | 2006-10-24 14:42:37 +0200 | [diff] [blame] | 479 | |
Aubrey.Li | 450c23e | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 480 | ######################################################################### |
| 481 | ## Blackfin Systems |
| 482 | ######################################################################### |
| 483 | |
Mike Frysinger | dd18ab6 | 2010-10-19 02:41:26 -0400 | [diff] [blame] | 484 | LIST_blackfin="$(boards_by_arch blackfin)" |
Aubrey.Li | 450c23e | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 485 | |
Jean-Christophe PLAGNIOL-VILLARD | ceee338 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 486 | ######################################################################### |
| 487 | ## SH Systems |
| 488 | ######################################################################### |
| 489 | |
Nobuhiro Iwamatsu | 0c4bcc7 | 2010-10-20 01:22:25 +0900 | [diff] [blame] | 490 | LIST_sh2="$(boards_by_cpu sh2)" |
Nobuhiro Iwamatsu | 06ea8cf | 2010-10-20 01:28:29 +0900 | [diff] [blame] | 491 | LIST_sh3="$(boards_by_cpu sh3)" |
Nobuhiro Iwamatsu | c4c6234 | 2010-10-20 01:35:28 +0900 | [diff] [blame] | 492 | LIST_sh4="$(boards_by_cpu sh4)" |
Jean-Christophe PLAGNIOL-VILLARD | ceee338 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 493 | |
Nobuhiro Iwamatsu | c4c6234 | 2010-10-20 01:35:28 +0900 | [diff] [blame] | 494 | LIST_sh="$(boards_by_arch sh)" |
Jean-Christophe PLAGNIOL-VILLARD | ceee338 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 495 | |
Daniel Hellstrom | 9d7c6b2 | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 496 | ######################################################################### |
| 497 | ## SPARC Systems |
| 498 | ######################################################################### |
| 499 | |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 500 | LIST_sparc="$(boards_by_arch sparc)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 501 | |
Macpaul Lin | e0eb35a | 2011-10-19 20:41:10 +0000 | [diff] [blame] | 502 | ######################################################################### |
| 503 | ## NDS32 Systems |
| 504 | ######################################################################### |
| 505 | |
| 506 | LIST_nds32="$(boards_by_arch nds32)" |
| 507 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 508 | #----------------------------------------------------------------------- |
| 509 | |
Marek Vasut | 4f21ade | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 510 | get_target_location() { |
| 511 | local target=$1 |
| 512 | local BOARD_NAME="" |
| 513 | local CONFIG_NAME="" |
| 514 | local board="" |
| 515 | local vendor="" |
| 516 | |
| 517 | # Automatic mode |
| 518 | local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg` |
| 519 | |
| 520 | if [ -z "${line}" ] ; then echo "" ; return ; fi |
| 521 | |
| 522 | set ${line} |
| 523 | |
| 524 | # add default board name if needed |
| 525 | [ $# = 3 ] && set ${line} ${1} |
| 526 | |
| 527 | CONFIG_NAME="${1%_config}" |
| 528 | |
| 529 | [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}" |
| 530 | |
| 531 | if [ "$4" = "-" ] ; then |
| 532 | board=${BOARD_NAME} |
| 533 | else |
| 534 | board="$4" |
| 535 | fi |
| 536 | |
| 537 | [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5" |
| 538 | [ $# -gt 6 ] && [ "$7" != "-" ] && { |
| 539 | tmp="${7%:*}" |
| 540 | if [ "$tmp" ] ; then |
| 541 | CONFIG_NAME="$tmp" |
| 542 | fi |
| 543 | } |
| 544 | |
| 545 | # Assign board directory to BOARDIR variable |
| 546 | if [ -z "${vendor}" ] ; then |
| 547 | BOARDDIR=${board} |
| 548 | else |
| 549 | BOARDDIR=${vendor}/${board} |
| 550 | fi |
| 551 | |
| 552 | echo "${CONFIG_NAME}:${BOARDDIR}" |
| 553 | } |
| 554 | |
| 555 | get_target_maintainers() { |
| 556 | local name=`echo $1 | cut -d : -f 1` |
| 557 | |
| 558 | if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then |
| 559 | echo "" |
| 560 | return ; |
| 561 | fi |
| 562 | |
| 563 | local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1` |
| 564 | local mail=`tac MAINTAINERS | tail -n +${line} | \ |
| 565 | sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \ |
| 566 | sed "s/^.*<//;s/>.*$//"` |
| 567 | echo "$mail" |
| 568 | } |
| 569 | |
| 570 | list_target() { |
| 571 | if [ "$PRINT_MAINTS" != 'y' ] ; then |
| 572 | echo "$1" |
| 573 | return |
| 574 | fi |
| 575 | |
| 576 | echo -n "$1:" |
| 577 | |
| 578 | local loc=`get_target_location $1` |
| 579 | |
| 580 | if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi |
| 581 | |
| 582 | local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"` |
| 583 | |
| 584 | if [ "$MAINTAINERS_ONLY" != 'y' ] ; then |
| 585 | |
| 586 | local dir=`echo ${loc} | cut -d ":" -f 2` |
| 587 | local cfg=`echo ${loc} | cut -d ":" -f 1` |
| 588 | local git_result=`git log --format=%aE board/${dir} \ |
| 589 | include/configs/${cfg}.h | grep "@"` |
| 590 | local git_result_recent=`echo ${git_result} | tr " " "\n" | \ |
| 591 | head -n 3` |
| 592 | local git_result_top=`echo ${git_result} | tr " " "\n" | \ |
| 593 | sort | uniq -c | sort -nr | head -n 3 | \ |
| 594 | sed "s/^ \+[0-9]\+ \+//"` |
| 595 | |
| 596 | echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \ |
| 597 | sort -u | tr "\n" " " | sed "s/ $//" ; |
| 598 | else |
| 599 | echo -e "$maintainers_result" | sort -u | tr "\n" " " | \ |
| 600 | sed "s/ $//" ; |
| 601 | fi |
| 602 | |
| 603 | echo "" |
| 604 | } |
| 605 | |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 606 | # Each finished build will have a file called ${donep}${n}, |
| 607 | # where n is the index of the build. Each build |
| 608 | # we've already noted as finished will have ${skipp}${n}. |
| 609 | # The code managing the build process will use this information |
| 610 | # to ensure that only BUILD_NBUILDS builds are in flight at once |
| 611 | donep="${LOG_DIR}/._done_" |
| 612 | skipp="${LOG_DIR}/._skip_" |
| 613 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 614 | build_target() { |
| 615 | target=$1 |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 616 | build_idx=$2 |
| 617 | |
| 618 | 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}" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 626 | |
Marek Vasut | cc3e1cb | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 627 | if [ "$ONLY_LIST" == 'y' ] ; then |
Marek Vasut | 4f21ade | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 628 | list_target ${target} |
Marek Vasut | cc3e1cb | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 629 | return |
| 630 | fi |
| 631 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 632 | ${MAKE} distclean >/dev/null |
Kim Phillips | 5ac3c12 | 2010-09-14 14:48:16 -0500 | [diff] [blame] | 633 | ${MAKE} -s ${target}_config |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 634 | |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 635 | ${MAKE} ${JOBS} all \ |
| 636 | >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR |
Peter Tyser | a5a27b9 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 637 | |
| 638 | # Check for 'make' errors |
| 639 | if [ ${PIPESTATUS[0]} -ne 0 ] ; then |
| 640 | RC=1 |
| 641 | fi |
| 642 | |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 643 | if [ $BUILD_MANY == 1 ] ; then |
| 644 | ${MAKE} tidy |
| 645 | |
| 646 | if [ -s ${LOG_DIR}/${target}.ERR ] ; then |
| 647 | touch ${OUTPUT_PREFIX}/ERR/${target} |
| 648 | else |
| 649 | rm ${LOG_DIR}/${target}.ERR |
| 650 | fi |
Peter Tyser | 23240d2 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 651 | else |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 652 | if [ -s ${LOG_DIR}/${target}.ERR ] ; then |
| 653 | : $(( ERR_CNT += 1 )) |
| 654 | ERR_LIST="${ERR_LIST} $target" |
| 655 | else |
| 656 | rm ${LOG_DIR}/${target}.ERR |
| 657 | fi |
Peter Tyser | 23240d2 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 658 | fi |
| 659 | |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 660 | 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 Wood | f8b3e23 | 2012-02-20 12:56:25 +0000 | [diff] [blame] | 663 | fi |
| 664 | |
| 665 | ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 666 | |
| 667 | [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR" |
| 668 | |
| 669 | #echo "Writing ${donep}${build_idx}" |
| 670 | touch "${donep}${build_idx}" |
| 671 | } |
| 672 | |
| 673 | manage_builds() { |
| 674 | search_idx=${OLDEST_IDX} |
| 675 | #echo "Searching ${OLDEST_IDX} to ${TOTAL_CNT}" |
| 676 | while true; do |
| 677 | if [ -e "${donep}${search_idx}" ] ; then |
| 678 | # echo "Found ${donep}${search_idx}" |
| 679 | : $(( CURRENT_CNT-- )) |
| 680 | [ ${OLDEST_IDX} -eq ${search_idx} ] && |
| 681 | : $(( OLDEST_IDX++ )) |
| 682 | |
| 683 | # Only want to count it once |
| 684 | rm -f "${donep}${search_idx}" |
| 685 | touch "${skipp}${search_idx}" |
| 686 | elif [ -e "${skipp}${search_idx}" ] ; then |
| 687 | [ ${OLDEST_IDX} -eq ${search_idx} ] && |
| 688 | : $(( OLDEST_IDX++ )) |
| 689 | fi |
| 690 | #echo "Checking search ${search_idx} vs ${TOTAL_CNT}" |
| 691 | : $(( search_idx++ )) |
| 692 | if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then |
| 693 | #echo "Checking current ${CURRENT_CNT} vs ${BUILD_NBUILDS}" |
| 694 | if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then |
| 695 | search_idx=${OLDEST_IDX} |
| 696 | sleep 1 |
| 697 | else |
| 698 | break |
| 699 | fi |
| 700 | fi |
| 701 | done |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 702 | } |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 703 | |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 704 | build_targets() { |
| 705 | for t in "$@" ; do |
| 706 | # If a LIST_xxx var exists, use it. But avoid variable |
| 707 | # expansion in the eval when a board name contains certain |
| 708 | # characters that the shell interprets. |
| 709 | case ${t} in |
| 710 | *[-+=]*) list= ;; |
| 711 | *) list=$(eval echo '${LIST_'$t'}') ;; |
| 712 | esac |
| 713 | if [ -n "${list}" ] ; then |
| 714 | build_targets ${list} |
| 715 | else |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 716 | : $((TOTAL_CNT += 1)) |
| 717 | : $((CURRENT_CNT += 1)) |
| 718 | rm -f "${donep}${TOTAL_CNT}" |
| 719 | rm -f "${skipp}${TOTAL_CNT}" |
| 720 | build_target ${t} ${TOTAL_CNT} & |
| 721 | fi |
| 722 | |
| 723 | # We maintain a running count of all the builds we have done. |
| 724 | # Each finished build will have a file called ${donep}${n}, |
| 725 | # where n is the index of the build. Each build |
| 726 | # we've already noted as finished will have ${skipp}${n}. |
| 727 | # We track the current index via TOTAL_CNT, and the oldest |
| 728 | # index. When we exceed the maximum number of parallel builds, |
| 729 | # We look from oldest to current for builds that have completed, |
| 730 | # and update the current count and oldest index as appropriate. |
| 731 | # If we've gone through the entire list, wait a second, and |
| 732 | # reprocess the entire list until we find a build that has |
| 733 | # completed |
| 734 | if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then |
| 735 | manage_builds |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 736 | fi |
| 737 | done |
| 738 | } |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 739 | |
| 740 | #----------------------------------------------------------------------- |
| 741 | |
Peter Tyser | 23240d2 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 742 | print_stats() { |
Marek Vasut | cc3e1cb | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 743 | if [ "$ONLY_LIST" == 'y' ] ; then return ; fi |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 744 | |
| 745 | rm -f ${donep}* ${skipp}* |
| 746 | |
| 747 | if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then |
| 748 | ERR_LIST=$(ls ${OUTPUT_PREFIX}/ERR/) |
| 749 | ERR_CNT=`ls -1 ${OUTPUT_PREFIX}/ERR/ | wc | awk '{print $1}'` |
| 750 | else |
| 751 | ERR_CNT=0 |
| 752 | fi |
| 753 | |
Peter Tyser | 23240d2 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 754 | echo "" |
| 755 | echo "--------------------- SUMMARY ----------------------------" |
| 756 | echo "Boards compiled: ${TOTAL_CNT}" |
| 757 | if [ ${ERR_CNT} -gt 0 ] ; then |
| 758 | echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )" |
| 759 | fi |
| 760 | echo "----------------------------------------------------------" |
Peter Tyser | a5a27b9 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 761 | |
| 762 | exit $RC |
Peter Tyser | 23240d2 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 763 | } |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 764 | |
Peter Tyser | 23240d2 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 765 | #----------------------------------------------------------------------- |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 766 | |
Wolfgang Denk | 7b74fec | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 767 | # Build target groups selected by options, plus any command line args |
| 768 | set -- ${SELECTED} "$@" |
| 769 | # run PowerPC by default |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 770 | [ $# = 0 ] && set -- powerpc |
Mike Frysinger | b374bdb | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 771 | build_targets "$@" |
Andy Fleming | af1cc31 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 772 | wait |