Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 1 | #!/bin/bash |
Wolfgang Denk | 0777eaf | 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. |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 5 | |
Mike Frysinger | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 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 | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 19 | -l, --list List all targets to be built |
Marek Vasut | 9b96c6b | 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 | d8e392d | 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. |
| 29 | |
| 30 | If no boards are specified, then the default is "powerpc". |
| 31 | |
| 32 | Environment variables: |
| 33 | BUILD_NCPUS number of parallel make jobs (default: auto) |
| 34 | CROSS_COMPILE cross-compiler toolchain prefix (default: "") |
| 35 | MAKEALL_LOGDIR output all logs to here (default: ./LOG/) |
| 36 | BUILD_DIR output build directory (default: ./) |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 37 | BUILD_NBUILDS number of parallel targets (default: 1) |
Mike Frysinger | d8e392d | 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 | 9b96c6b | 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 | 0777eaf | 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 | 071bc92 | 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 | 0777eaf | 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 | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 66 | [ $? != 0 ] && usage 1 |
Wolfgang Denk | 0777eaf | 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 | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 72 | ONLY_LIST='' |
Marek Vasut | 9b96c6b | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 73 | PRINT_MAINTS='' |
| 74 | MAINTAINERS_ONLY='' |
Wolfgang Denk | 0777eaf | 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 |
Allen Martin | aa2e279 | 2012-08-31 08:30:06 +0000 | [diff] [blame] | 90 | opt_c="${opt_c%)} || \$3 == \"$2\" || \$3 ~ /$2:/)" |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 91 | else |
Allen Martin | aa2e279 | 2012-08-31 08:30:06 +0000 | [diff] [blame] | 92 | opt_c="(\$3 == \"$2\" || \$3 ~ /$2:/)" |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 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 | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 114 | -l|--list) |
| 115 | ONLY_LIST='y' |
| 116 | shift ;; |
Marek Vasut | 9b96c6b | 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 | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 126 | -h|--help) |
| 127 | usage ;; |
Wolfgang Denk | 0777eaf | 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 | cd57b0b | 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 | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 151 | fi |
| 152 | |
| 153 | ######################################################################### |
| 154 | |
Peter Tyser | 40a28f0 | 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 | 7fa6a2f | 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 | 55f786d | 2009-09-21 12:04:33 -0500 | [diff] [blame] | 164 | JOBS="-j $((BUILD_NCPUS + 1))" |
Wolfgang Denk | 7fa6a2f | 2008-12-09 00:39:08 +0100 | [diff] [blame] | 165 | else |
| 166 | JOBS="" |
| 167 | fi |
| 168 | |
wdenk | a8c7c70 | 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 | f932863 | 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 | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 181 | |
Andy Fleming | f588bb0 | 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 | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 190 | fi |
| 191 | |
Andy Fleming | f588bb0 | 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 | 40a28f0 | 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="" |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 204 | WRN_CNT=0 |
| 205 | WRN_LIST="" |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 206 | TOTAL_CNT=0 |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 207 | CURRENT_CNT=0 |
| 208 | OLDEST_IDX=1 |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 209 | RC=0 |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 210 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 211 | # Helper funcs for parsing boards.cfg |
| 212 | boards_by_field() |
| 213 | { |
Allen Martin | aa2e279 | 2012-08-31 08:30:06 +0000 | [diff] [blame] | 214 | FS="[ \t]+" |
| 215 | [ -n "$3" ] && FS="$3" |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 216 | awk \ |
| 217 | -v field="$1" \ |
| 218 | -v select="$2" \ |
Allen Martin | aa2e279 | 2012-08-31 08:30:06 +0000 | [diff] [blame] | 219 | -F "$FS" \ |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 220 | '($1 !~ /^#/ && $field == select) { print $1 }' \ |
| 221 | boards.cfg |
| 222 | } |
| 223 | boards_by_arch() { boards_by_field 2 "$@" ; } |
Allen Martin | aa2e279 | 2012-08-31 08:30:06 +0000 | [diff] [blame] | 224 | boards_by_cpu() { boards_by_field 3 "$@" "[: \t]+" ; } |
Andreas Bießmann | 0a41eda | 2010-11-30 09:45:04 +0000 | [diff] [blame] | 225 | boards_by_soc() { boards_by_field 6 "$@" ; } |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 226 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 227 | ######################################################################### |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 228 | ## MPC5xx Systems |
| 229 | ######################################################################### |
| 230 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 231 | LIST_5xx="$(boards_by_cpu mpc5xx)" |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 232 | |
| 233 | ######################################################################### |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 234 | ## MPC5xxx Systems |
| 235 | ######################################################################### |
| 236 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 237 | LIST_5xxx="$(boards_by_cpu mpc5xxx)" |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 238 | |
| 239 | ######################################################################### |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 240 | ## MPC512x Systems |
| 241 | ######################################################################### |
| 242 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 243 | LIST_512x="$(boards_by_cpu mpc512x)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 244 | |
| 245 | ######################################################################### |
| 246 | ## MPC8xx Systems |
| 247 | ######################################################################### |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 248 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 249 | LIST_8xx="$(boards_by_cpu mpc8xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 250 | |
| 251 | ######################################################################### |
| 252 | ## PPC4xx Systems |
| 253 | ######################################################################### |
| 254 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 255 | LIST_4xx="$(boards_by_cpu ppc4xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 256 | |
| 257 | ######################################################################### |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 258 | ## MPC8220 Systems |
| 259 | ######################################################################### |
| 260 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 261 | LIST_8220="$(boards_by_cpu mpc8220)" |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 262 | |
| 263 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 264 | ## MPC824x Systems |
| 265 | ######################################################################### |
| 266 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 267 | LIST_824x="$(boards_by_cpu mpc824x)" |
wdenk | 592c5ca | 2003-06-21 00:17:24 +0000 | [diff] [blame] | 268 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 269 | ######################################################################### |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 270 | ## MPC8260 Systems (includes 8250, 8255 etc.) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 271 | ######################################################################### |
| 272 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 273 | LIST_8260="$(boards_by_cpu mpc8260)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 274 | |
| 275 | ######################################################################### |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 276 | ## MPC83xx Systems (includes 8349, etc.) |
| 277 | ######################################################################### |
| 278 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 279 | LIST_83xx="$(boards_by_cpu mpc83xx)" |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 280 | |
| 281 | ######################################################################### |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 282 | ## MPC85xx Systems (includes 8540, 8560 etc.) |
| 283 | ######################################################################### |
| 284 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 285 | LIST_85xx="$(boards_by_cpu mpc85xx)" |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 286 | |
| 287 | ######################################################################### |
Jon Loeliger | 822d553 | 2007-05-23 14:09:46 -0500 | [diff] [blame] | 288 | ## MPC86xx Systems |
| 289 | ######################################################################### |
| 290 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 291 | LIST_86xx="$(boards_by_cpu mpc86xx)" |
Jon Loeliger | 822d553 | 2007-05-23 14:09:46 -0500 | [diff] [blame] | 292 | |
| 293 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 294 | ## 74xx/7xx Systems |
| 295 | ######################################################################### |
| 296 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 297 | LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 298 | |
Wolfgang Denk | d9a42c0 | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 299 | ######################################################################### |
| 300 | ## PowerPC groups |
| 301 | ######################################################################### |
| 302 | |
| 303 | LIST_TSEC=" \ |
| 304 | ${LIST_83xx} \ |
| 305 | ${LIST_85xx} \ |
| 306 | ${LIST_86xx} \ |
| 307 | " |
| 308 | |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 309 | LIST_powerpc=" \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 310 | ${LIST_5xx} \ |
Jean-Christophe PLAGNIOL-VILLARD | 3deca9d | 2007-11-25 22:39:25 +0100 | [diff] [blame] | 311 | ${LIST_512x} \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 312 | ${LIST_5xxx} \ |
| 313 | ${LIST_8xx} \ |
| 314 | ${LIST_8220} \ |
| 315 | ${LIST_824x} \ |
| 316 | ${LIST_8260} \ |
| 317 | ${LIST_83xx} \ |
| 318 | ${LIST_85xx} \ |
| 319 | ${LIST_86xx} \ |
| 320 | ${LIST_4xx} \ |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 321 | ${LIST_74xx_7xx}\ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 322 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 323 | |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 324 | # Alias "ppc" -> "powerpc" to not break compatibility with older scripts |
| 325 | # still using "ppc" instead of "powerpc" |
| 326 | LIST_ppc=" \ |
| 327 | ${LIST_powerpc} \ |
| 328 | " |
| 329 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 330 | ######################################################################### |
| 331 | ## StrongARM Systems |
| 332 | ######################################################################### |
| 333 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 334 | LIST_SA="$(boards_by_cpu sa1100)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 335 | |
| 336 | ######################################################################### |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 337 | ## ARM7 Systems |
| 338 | ######################################################################### |
| 339 | |
| 340 | LIST_ARM7="$(boards_by_cpu arm720t)" |
| 341 | |
| 342 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 343 | ## ARM9 Systems |
| 344 | ######################################################################### |
| 345 | |
Wolfgang Denk | 6a8760d | 2011-09-08 05:01:24 +0000 | [diff] [blame] | 346 | LIST_ARM9="$(boards_by_cpu arm920t) \ |
| 347 | $(boards_by_cpu arm926ejs) \ |
| 348 | $(boards_by_cpu arm925t) \ |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 349 | $(boards_by_cpu arm946es) \ |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 350 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 351 | |
| 352 | ######################################################################### |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 353 | ## ARM11 Systems |
| 354 | ######################################################################### |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 355 | LIST_ARM11="$(boards_by_cpu arm1136) \ |
| 356 | $(boards_by_cpu arm1176) \ |
| 357 | " |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 358 | |
| 359 | ######################################################################### |
Steve Sakoman | f56348a | 2010-06-17 21:50:01 -0700 | [diff] [blame] | 360 | ## ARMV7 Systems |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 361 | ######################################################################### |
Dirk Behme | f37586b | 2011-08-05 20:48:32 +0000 | [diff] [blame] | 362 | |
| 363 | LIST_ARMV7="$(boards_by_cpu armv7)" |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 364 | |
| 365 | ######################################################################### |
Jean-Christophe PLAGNIOL-VILLARD | 602cac1 | 2008-05-24 12:47:46 +0200 | [diff] [blame] | 366 | ## AT91 Systems |
| 367 | ######################################################################### |
| 368 | |
Thomas Petazzoni | 5cfeec5 | 2011-08-04 11:08:50 +0000 | [diff] [blame] | 369 | LIST_at91="$(boards_by_soc at91)" |
Jean-Christophe PLAGNIOL-VILLARD | 602cac1 | 2008-05-24 12:47:46 +0200 | [diff] [blame] | 370 | |
| 371 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 372 | ## Xscale Systems |
| 373 | ######################################################################### |
| 374 | |
Marek Vasut | 7c957c0 | 2010-10-04 00:21:51 +0200 | [diff] [blame] | 375 | LIST_pxa="$(boards_by_cpu pxa)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 376 | |
Andy Fleming | bb1c01e | 2012-04-25 09:36:13 +0000 | [diff] [blame] | 377 | LIST_ixp="$(boards_by_cpu ixp)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 378 | |
Wolfgang Denk | d9a42c0 | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 379 | ######################################################################### |
| 380 | ## ARM groups |
| 381 | ######################################################################### |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 382 | |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 383 | LIST_arm="$(boards_by_arch arm)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 384 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 385 | ######################################################################### |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 386 | ## MIPS Systems (default = big endian) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 387 | ######################################################################### |
| 388 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 389 | LIST_mips4kc=" \ |
| 390 | incaip \ |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 391 | incaip_100MHz \ |
| 392 | incaip_133MHz \ |
| 393 | incaip_150MHz \ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 394 | qemu_mips \ |
Stefan Roese | 2a61eff | 2009-01-21 17:25:01 +0100 | [diff] [blame] | 395 | vct_platinum \ |
| 396 | vct_platinum_small \ |
| 397 | vct_platinum_onenand \ |
| 398 | vct_platinum_onenand_small \ |
| 399 | vct_platinumavc \ |
| 400 | vct_platinumavc_small \ |
| 401 | vct_platinumavc_onenand \ |
| 402 | vct_platinumavc_onenand_small \ |
| 403 | vct_premium \ |
| 404 | vct_premium_small \ |
| 405 | vct_premium_onenand \ |
| 406 | vct_premium_onenand_small \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 407 | " |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 408 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 409 | LIST_au1xx0=" \ |
| 410 | dbau1000 \ |
| 411 | dbau1100 \ |
| 412 | dbau1500 \ |
| 413 | dbau1550 \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 414 | gth2 \ |
| 415 | " |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 416 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 417 | LIST_mips=" \ |
| 418 | ${LIST_mips4kc} \ |
| 419 | ${LIST_mips5kc} \ |
| 420 | ${LIST_au1xx0} \ |
| 421 | " |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 422 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 423 | ######################################################################### |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 424 | ## MIPS Systems (little endian) |
| 425 | ######################################################################### |
| 426 | |
Daniel Schwierzeck | 92b0909 | 2011-11-24 03:57:56 +0000 | [diff] [blame] | 427 | LIST_xburst_el=" \ |
Xiangfu Liu | 3c94554 | 2011-10-12 12:24:06 +0800 | [diff] [blame] | 428 | qi_lb60 \ |
| 429 | " |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 430 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 431 | LIST_au1xx0_el=" \ |
| 432 | dbau1550_el \ |
Shinya Kuribayashi | b09258c | 2007-10-27 15:00:25 +0900 | [diff] [blame] | 433 | pb1000 \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 434 | " |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 435 | LIST_mips_el=" \ |
Daniel Schwierzeck | 92b0909 | 2011-11-24 03:57:56 +0000 | [diff] [blame] | 436 | ${LIST_xburst_el} \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 437 | ${LIST_au1xx0_el} \ |
| 438 | " |
Stefan Kristiansson | deddf5d | 2011-11-18 19:21:37 +0000 | [diff] [blame] | 439 | ######################################################################### |
| 440 | ## OpenRISC Systems |
| 441 | ######################################################################### |
| 442 | |
| 443 | LIST_openrisc="$(boards_by_arch openrisc)" |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 444 | |
| 445 | ######################################################################### |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 446 | ## x86 Systems |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 447 | ######################################################################### |
| 448 | |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 449 | LIST_x86="$(boards_by_arch x86)" |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 450 | |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 451 | ######################################################################### |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 452 | ## Nios-II Systems |
| 453 | ######################################################################### |
| 454 | |
Mike Frysinger | 4827d06 | 2011-06-26 23:00:19 -0400 | [diff] [blame] | 455 | LIST_nios2="$(boards_by_arch nios2)" |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 456 | |
| 457 | ######################################################################### |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 458 | ## MicroBlaze Systems |
| 459 | ######################################################################### |
| 460 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 461 | LIST_microblaze="$(boards_by_arch microblaze)" |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 462 | |
Zachary P. Landau | f8c3b4f | 2006-01-26 17:38:46 -0500 | [diff] [blame] | 463 | ######################################################################### |
| 464 | ## ColdFire Systems |
| 465 | ######################################################################### |
| 466 | |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 467 | LIST_m68k="$(boards_by_arch m68k)" |
Mike Frysinger | c13f47b | 2011-09-25 19:27:19 +0000 | [diff] [blame] | 468 | LIST_coldfire=${LIST_m68k} |
Zachary P. Landau | f8c3b4f | 2006-01-26 17:38:46 -0500 | [diff] [blame] | 469 | |
Wolfgang Denk | 6ccec44 | 2006-10-24 14:42:37 +0200 | [diff] [blame] | 470 | ######################################################################### |
| 471 | ## AVR32 Systems |
| 472 | ######################################################################### |
| 473 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 474 | LIST_avr32="$(boards_by_arch avr32)" |
Wolfgang Denk | 6ccec44 | 2006-10-24 14:42:37 +0200 | [diff] [blame] | 475 | |
Aubrey.Li | ef26a08 | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 476 | ######################################################################### |
| 477 | ## Blackfin Systems |
| 478 | ######################################################################### |
| 479 | |
Mike Frysinger | 36cf8cb | 2010-10-19 02:41:26 -0400 | [diff] [blame] | 480 | LIST_blackfin="$(boards_by_arch blackfin)" |
Aubrey.Li | ef26a08 | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 481 | |
Jean-Christophe PLAGNIOL-VILLARD | c714437 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 482 | ######################################################################### |
| 483 | ## SH Systems |
| 484 | ######################################################################### |
| 485 | |
Nobuhiro Iwamatsu | e0f0e52 | 2010-10-20 01:22:25 +0900 | [diff] [blame] | 486 | LIST_sh2="$(boards_by_cpu sh2)" |
Nobuhiro Iwamatsu | 3771c69 | 2010-10-20 01:28:29 +0900 | [diff] [blame] | 487 | LIST_sh3="$(boards_by_cpu sh3)" |
Nobuhiro Iwamatsu | 03626be | 2010-10-20 01:35:28 +0900 | [diff] [blame] | 488 | LIST_sh4="$(boards_by_cpu sh4)" |
Wolfgang Denk | d9a42c0 | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 489 | |
Nobuhiro Iwamatsu | 03626be | 2010-10-20 01:35:28 +0900 | [diff] [blame] | 490 | LIST_sh="$(boards_by_arch sh)" |
Jean-Christophe PLAGNIOL-VILLARD | c714437 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 491 | |
Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 492 | ######################################################################### |
| 493 | ## SPARC Systems |
| 494 | ######################################################################### |
| 495 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 496 | LIST_sparc="$(boards_by_arch sparc)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 497 | |
Macpaul Lin | 5f1719c | 2011-10-19 20:41:10 +0000 | [diff] [blame] | 498 | ######################################################################### |
| 499 | ## NDS32 Systems |
| 500 | ######################################################################### |
| 501 | |
| 502 | LIST_nds32="$(boards_by_arch nds32)" |
| 503 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 504 | #----------------------------------------------------------------------- |
| 505 | |
Marek Vasut | 9b96c6b | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 506 | get_target_location() { |
| 507 | local target=$1 |
| 508 | local BOARD_NAME="" |
| 509 | local CONFIG_NAME="" |
| 510 | local board="" |
| 511 | local vendor="" |
| 512 | |
| 513 | # Automatic mode |
| 514 | local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg` |
| 515 | |
| 516 | if [ -z "${line}" ] ; then echo "" ; return ; fi |
| 517 | |
| 518 | set ${line} |
| 519 | |
| 520 | # add default board name if needed |
| 521 | [ $# = 3 ] && set ${line} ${1} |
| 522 | |
| 523 | CONFIG_NAME="${1%_config}" |
| 524 | |
| 525 | [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}" |
| 526 | |
| 527 | if [ "$4" = "-" ] ; then |
| 528 | board=${BOARD_NAME} |
| 529 | else |
| 530 | board="$4" |
| 531 | fi |
| 532 | |
| 533 | [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5" |
| 534 | [ $# -gt 6 ] && [ "$7" != "-" ] && { |
| 535 | tmp="${7%:*}" |
| 536 | if [ "$tmp" ] ; then |
| 537 | CONFIG_NAME="$tmp" |
| 538 | fi |
| 539 | } |
| 540 | |
| 541 | # Assign board directory to BOARDIR variable |
| 542 | if [ -z "${vendor}" ] ; then |
| 543 | BOARDDIR=${board} |
| 544 | else |
| 545 | BOARDDIR=${vendor}/${board} |
| 546 | fi |
| 547 | |
| 548 | echo "${CONFIG_NAME}:${BOARDDIR}" |
| 549 | } |
| 550 | |
| 551 | get_target_maintainers() { |
| 552 | local name=`echo $1 | cut -d : -f 1` |
| 553 | |
| 554 | if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then |
| 555 | echo "" |
| 556 | return ; |
| 557 | fi |
| 558 | |
| 559 | local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1` |
| 560 | local mail=`tac MAINTAINERS | tail -n +${line} | \ |
| 561 | sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \ |
| 562 | sed "s/^.*<//;s/>.*$//"` |
| 563 | echo "$mail" |
| 564 | } |
| 565 | |
| 566 | list_target() { |
| 567 | if [ "$PRINT_MAINTS" != 'y' ] ; then |
| 568 | echo "$1" |
| 569 | return |
| 570 | fi |
| 571 | |
| 572 | echo -n "$1:" |
| 573 | |
| 574 | local loc=`get_target_location $1` |
| 575 | |
| 576 | if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi |
| 577 | |
| 578 | local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"` |
| 579 | |
| 580 | if [ "$MAINTAINERS_ONLY" != 'y' ] ; then |
| 581 | |
| 582 | local dir=`echo ${loc} | cut -d ":" -f 2` |
| 583 | local cfg=`echo ${loc} | cut -d ":" -f 1` |
| 584 | local git_result=`git log --format=%aE board/${dir} \ |
| 585 | include/configs/${cfg}.h | grep "@"` |
| 586 | local git_result_recent=`echo ${git_result} | tr " " "\n" | \ |
| 587 | head -n 3` |
| 588 | local git_result_top=`echo ${git_result} | tr " " "\n" | \ |
| 589 | sort | uniq -c | sort -nr | head -n 3 | \ |
| 590 | sed "s/^ \+[0-9]\+ \+//"` |
| 591 | |
| 592 | echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \ |
| 593 | sort -u | tr "\n" " " | sed "s/ $//" ; |
| 594 | else |
| 595 | echo -e "$maintainers_result" | sort -u | tr "\n" " " | \ |
| 596 | sed "s/ $//" ; |
| 597 | fi |
| 598 | |
| 599 | echo "" |
| 600 | } |
| 601 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 602 | # Each finished build will have a file called ${donep}${n}, |
| 603 | # where n is the index of the build. Each build |
| 604 | # we've already noted as finished will have ${skipp}${n}. |
| 605 | # The code managing the build process will use this information |
| 606 | # to ensure that only BUILD_NBUILDS builds are in flight at once |
| 607 | donep="${LOG_DIR}/._done_" |
| 608 | skipp="${LOG_DIR}/._skip_" |
| 609 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 610 | build_target() { |
| 611 | target=$1 |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 612 | build_idx=$2 |
| 613 | |
Andy Fleming | f50bf50 | 2012-05-09 20:36:28 +0000 | [diff] [blame] | 614 | if [ "$ONLY_LIST" == 'y' ] ; then |
| 615 | list_target ${target} |
| 616 | return |
| 617 | fi |
| 618 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 619 | if [ $BUILD_MANY == 1 ] ; then |
| 620 | output_dir="${OUTPUT_PREFIX}/${target}" |
| 621 | mkdir -p "${output_dir}" |
| 622 | else |
| 623 | output_dir="${OUTPUT_PREFIX}" |
| 624 | fi |
| 625 | |
| 626 | export BUILD_DIR="${output_dir}" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 627 | |
| 628 | ${MAKE} distclean >/dev/null |
Kim Phillips | d70d8cc | 2010-09-14 14:48:16 -0500 | [diff] [blame] | 629 | ${MAKE} -s ${target}_config |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 630 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 631 | ${MAKE} ${JOBS} all \ |
| 632 | >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 633 | |
| 634 | # Check for 'make' errors |
| 635 | if [ ${PIPESTATUS[0]} -ne 0 ] ; then |
| 636 | RC=1 |
| 637 | fi |
| 638 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 639 | if [ $BUILD_MANY == 1 ] ; then |
| 640 | ${MAKE} tidy |
| 641 | |
| 642 | if [ -s ${LOG_DIR}/${target}.ERR ] ; then |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 643 | cp ${LOG_DIR}/${target}.ERR ${OUTPUT_PREFIX}/ERR/${target} |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 644 | else |
| 645 | rm ${LOG_DIR}/${target}.ERR |
| 646 | fi |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 647 | else |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 648 | if [ -s ${LOG_DIR}/${target}.ERR ] ; then |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 649 | if grep -iw error ${LOG_DIR}/${target}.ERR ; then |
| 650 | : $(( ERR_CNT += 1 )) |
| 651 | ERR_LIST="${ERR_LIST} $target" |
| 652 | else |
| 653 | : $(( WRN_CNT += 1 )) |
| 654 | WRN_LIST="${WRN_LIST} $target" |
| 655 | fi |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 656 | else |
| 657 | rm ${LOG_DIR}/${target}.ERR |
| 658 | fi |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 659 | fi |
| 660 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 661 | OBJS=${output_dir}/u-boot |
| 662 | if [ -e ${output_dir}/spl/u-boot-spl ]; then |
| 663 | OBJS="${OBJS} ${output_dir}/spl/u-boot-spl" |
Scott Wood | 0c18569 | 2012-02-20 12:56:25 +0000 | [diff] [blame] | 664 | fi |
| 665 | |
| 666 | ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 667 | |
| 668 | [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR" |
| 669 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 670 | touch "${donep}${build_idx}" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 671 | } |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 672 | |
| 673 | manage_builds() { |
| 674 | search_idx=${OLDEST_IDX} |
Andy Fleming | f50bf50 | 2012-05-09 20:36:28 +0000 | [diff] [blame] | 675 | if [ "$ONLY_LIST" == 'y' ] ; then return ; fi |
| 676 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 677 | while true; do |
| 678 | if [ -e "${donep}${search_idx}" ] ; then |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 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 |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 690 | : $(( search_idx++ )) |
| 691 | if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 692 | if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then |
| 693 | search_idx=${OLDEST_IDX} |
| 694 | sleep 1 |
| 695 | else |
| 696 | break |
| 697 | fi |
| 698 | fi |
| 699 | done |
| 700 | } |
| 701 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 702 | build_targets() { |
| 703 | for t in "$@" ; do |
| 704 | # If a LIST_xxx var exists, use it. But avoid variable |
| 705 | # expansion in the eval when a board name contains certain |
| 706 | # characters that the shell interprets. |
| 707 | case ${t} in |
| 708 | *[-+=]*) list= ;; |
| 709 | *) list=$(eval echo '${LIST_'$t'}') ;; |
| 710 | esac |
| 711 | if [ -n "${list}" ] ; then |
| 712 | build_targets ${list} |
| 713 | else |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 714 | : $((TOTAL_CNT += 1)) |
| 715 | : $((CURRENT_CNT += 1)) |
| 716 | rm -f "${donep}${TOTAL_CNT}" |
| 717 | rm -f "${skipp}${TOTAL_CNT}" |
Joe Hershberger | b594bd6 | 2012-05-21 04:49:37 +0000 | [diff] [blame] | 718 | if [ $BUILD_MANY == 1 ] ; then |
| 719 | build_target ${t} ${TOTAL_CNT} & |
| 720 | else |
| 721 | build_target ${t} ${TOTAL_CNT} |
| 722 | fi |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 723 | fi |
| 724 | |
| 725 | # We maintain a running count of all the builds we have done. |
| 726 | # Each finished build will have a file called ${donep}${n}, |
| 727 | # where n is the index of the build. Each build |
| 728 | # we've already noted as finished will have ${skipp}${n}. |
| 729 | # We track the current index via TOTAL_CNT, and the oldest |
| 730 | # index. When we exceed the maximum number of parallel builds, |
| 731 | # We look from oldest to current for builds that have completed, |
| 732 | # and update the current count and oldest index as appropriate. |
| 733 | # If we've gone through the entire list, wait a second, and |
| 734 | # reprocess the entire list until we find a build that has |
| 735 | # completed |
| 736 | if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then |
| 737 | manage_builds |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 738 | fi |
| 739 | done |
| 740 | } |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 741 | |
| 742 | #----------------------------------------------------------------------- |
| 743 | |
Andy Fleming | f50bf50 | 2012-05-09 20:36:28 +0000 | [diff] [blame] | 744 | kill_children() { |
| 745 | kill -- "-$1" |
| 746 | |
| 747 | exit |
| 748 | } |
| 749 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 750 | print_stats() { |
Marek Vasut | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 751 | if [ "$ONLY_LIST" == 'y' ] ; then return ; fi |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 752 | |
| 753 | rm -f ${donep}* ${skipp}* |
| 754 | |
| 755 | if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then |
Andy Fleming | 033220e | 2012-08-08 14:12:30 +0000 | [diff] [blame] | 756 | ERR_LIST=`grep -riwl error ${OUTPUT_PREFIX}/ERR/` |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 757 | ERR_LIST=`for f in $ERR_LIST ; do echo -n " $(basename $f)" ; done` |
| 758 | ERR_CNT=`echo $ERR_LIST | wc -w | awk '{print $1}'` |
Andy Fleming | 033220e | 2012-08-08 14:12:30 +0000 | [diff] [blame] | 759 | WRN_LIST=`grep -riwL error ${OUTPUT_PREFIX}/ERR/` |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 760 | WRN_LIST=`for f in $WRN_LIST ; do echo -n " $(basename $f)" ; done` |
| 761 | WRN_CNT=`echo $WRN_LIST | wc -w | awk '{print $1}'` |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 762 | fi |
| 763 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 764 | echo "" |
| 765 | echo "--------------------- SUMMARY ----------------------------" |
| 766 | echo "Boards compiled: ${TOTAL_CNT}" |
| 767 | if [ ${ERR_CNT} -gt 0 ] ; then |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 768 | echo "Boards with errors: ${ERR_CNT} (${ERR_LIST} )" |
| 769 | fi |
| 770 | if [ ${WRN_CNT} -gt 0 ] ; then |
| 771 | echo "Boards with warnings but no errors: ${WRN_CNT} (${WRN_LIST} )" |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 772 | fi |
| 773 | echo "----------------------------------------------------------" |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 774 | |
Andy Fleming | f50bf50 | 2012-05-09 20:36:28 +0000 | [diff] [blame] | 775 | if [ $BUILD_MANY == 1 ] ; then |
| 776 | kill_children $$ & |
| 777 | fi |
| 778 | |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 779 | exit $RC |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 780 | } |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 781 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 782 | #----------------------------------------------------------------------- |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 783 | |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 784 | # Build target groups selected by options, plus any command line args |
| 785 | set -- ${SELECTED} "$@" |
| 786 | # run PowerPC by default |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 787 | [ $# = 0 ] && set -- powerpc |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 788 | build_targets "$@" |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 789 | wait |