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 |
Kim Phillips | 33f336d | 2012-09-27 14:57:34 +0000 | [diff] [blame] | 22 | -C, --check Enable build checking |
Joe Hershberger | 0851020 | 2012-10-30 15:55:21 +0000 | [diff] [blame] | 23 | -n, --continue Continue (skip boards already built) |
| 24 | -r, --rebuild-errors Rebuild any boards that errored |
Mike Frysinger | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 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: "") |
Allen Martin | 47104c3 | 2013-01-29 14:34:58 +0000 | [diff] [blame] | 38 | CROSS_COMPILE_<ARCH> cross-compiler toolchain prefix for |
| 39 | architecture "ARCH". Substitute "ARCH" for any |
| 40 | supported architecture (default: "") |
Mike Frysinger | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 41 | MAKEALL_LOGDIR output all logs to here (default: ./LOG/) |
| 42 | BUILD_DIR output build directory (default: ./) |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 43 | BUILD_NBUILDS number of parallel targets (default: 1) |
Mike Frysinger | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 44 | |
| 45 | Examples: |
| 46 | - build all Power Architecture boards: |
| 47 | MAKEALL -a powerpc |
| 48 | MAKEALL --arch powerpc |
| 49 | MAKEALL powerpc |
| 50 | - build all PowerPC boards manufactured by vendor "esd": |
| 51 | MAKEALL -a powerpc -v esd |
| 52 | - build all PowerPC boards manufactured either by "keymile" or "siemens": |
| 53 | MAKEALL -a powerpc -v keymile -v siemens |
| 54 | - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards: |
| 55 | MAKEALL -c mpc83xx -v freescale 4xx |
| 56 | EOF |
| 57 | exit ${ret} |
| 58 | } |
| 59 | |
Joe Hershberger | 0851020 | 2012-10-30 15:55:21 +0000 | [diff] [blame] | 60 | SHORT_OPTS="ha:c:v:s:lmMCnr" |
| 61 | LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list,maintainers,mails,check,continue,rebuild-errors" |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 62 | |
| 63 | # Option processing based on util-linux-2.13/getopt-parse.bash |
| 64 | |
Wolfgang Denk | 071bc92 | 2010-10-27 22:48:30 +0200 | [diff] [blame] | 65 | # 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] | 66 | # separate word. The quotes around `$@' are essential! |
| 67 | # We need TEMP as the `eval set --' would nuke the return value of |
| 68 | # getopt. |
| 69 | TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \ |
| 70 | -n 'MAKEALL' -- "$@"` |
| 71 | |
Mike Frysinger | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 72 | [ $? != 0 ] && usage 1 |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 73 | |
| 74 | # Note the quotes around `$TEMP': they are essential! |
| 75 | eval set -- "$TEMP" |
| 76 | |
| 77 | SELECTED='' |
Marek Vasut | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 78 | ONLY_LIST='' |
Marek Vasut | 9b96c6b | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 79 | PRINT_MAINTS='' |
| 80 | MAINTAINERS_ONLY='' |
Joe Hershberger | 0851020 | 2012-10-30 15:55:21 +0000 | [diff] [blame] | 81 | CONTINUE='' |
| 82 | REBUILD_ERRORS='' |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 83 | |
| 84 | while true ; do |
| 85 | case "$1" in |
| 86 | -a|--arch) |
| 87 | # echo "Option ARCH: argument \`$2'" |
| 88 | if [ "$opt_a" ] ; then |
| 89 | opt_a="${opt_a%)} || \$2 == \"$2\")" |
| 90 | else |
| 91 | opt_a="(\$2 == \"$2\")" |
| 92 | fi |
| 93 | SELECTED='y' |
| 94 | shift 2 ;; |
| 95 | -c|--cpu) |
| 96 | # echo "Option CPU: argument \`$2'" |
| 97 | if [ "$opt_c" ] ; then |
Allen Martin | aa2e279 | 2012-08-31 08:30:06 +0000 | [diff] [blame] | 98 | opt_c="${opt_c%)} || \$3 == \"$2\" || \$3 ~ /$2:/)" |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 99 | else |
Allen Martin | aa2e279 | 2012-08-31 08:30:06 +0000 | [diff] [blame] | 100 | opt_c="(\$3 == \"$2\" || \$3 ~ /$2:/)" |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 101 | fi |
| 102 | SELECTED='y' |
| 103 | shift 2 ;; |
| 104 | -s|--soc) |
| 105 | # echo "Option SoC: argument \`$2'" |
| 106 | if [ "$opt_s" ] ; then |
Stephen Warren | f32c08d | 2013-03-05 11:15:01 +0000 | [diff] [blame] | 107 | opt_s="${opt_s%)} || \$6 == \"$2\" || \$6 ~ /$2/)" |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 108 | else |
Stephen Warren | f32c08d | 2013-03-05 11:15:01 +0000 | [diff] [blame] | 109 | opt_s="(\$6 == \"$2\" || \$6 ~ /$2/)" |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 110 | fi |
| 111 | SELECTED='y' |
| 112 | shift 2 ;; |
| 113 | -v|--vendor) |
| 114 | # echo "Option VENDOR: argument \`$2'" |
| 115 | if [ "$opt_v" ] ; then |
| 116 | opt_v="${opt_v%)} || \$5 == \"$2\")" |
| 117 | else |
| 118 | opt_v="(\$5 == \"$2\")" |
| 119 | fi |
| 120 | SELECTED='y' |
| 121 | shift 2 ;; |
Kim Phillips | 33f336d | 2012-09-27 14:57:34 +0000 | [diff] [blame] | 122 | -C|--check) |
| 123 | CHECK='C=1' |
| 124 | shift ;; |
Joe Hershberger | 0851020 | 2012-10-30 15:55:21 +0000 | [diff] [blame] | 125 | -n|--continue) |
| 126 | CONTINUE='y' |
| 127 | shift ;; |
| 128 | -r|--rebuild-errors) |
| 129 | REBUILD_ERRORS='y' |
| 130 | shift ;; |
Marek Vasut | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 131 | -l|--list) |
| 132 | ONLY_LIST='y' |
| 133 | shift ;; |
Marek Vasut | 9b96c6b | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 134 | -m|--maintainers) |
| 135 | ONLY_LIST='y' |
| 136 | PRINT_MAINTS='y' |
| 137 | MAINTAINERS_ONLY='y' |
| 138 | shift ;; |
| 139 | -M|--mails) |
| 140 | ONLY_LIST='y' |
| 141 | PRINT_MAINTS='y' |
| 142 | shift ;; |
Mike Frysinger | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 143 | -h|--help) |
| 144 | usage ;; |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 145 | --) |
| 146 | shift ; break ;; |
| 147 | *) |
| 148 | echo "Internal error!" >&2 ; exit 1 ;; |
| 149 | esac |
| 150 | done |
| 151 | # echo "Remaining arguments:" |
| 152 | # for arg do echo '--> '"\`$arg'" ; done |
| 153 | |
| 154 | FILTER="\$1 !~ /^#/" |
| 155 | [ "$opt_a" ] && FILTER="${FILTER} && $opt_a" |
| 156 | [ "$opt_c" ] && FILTER="${FILTER} && $opt_c" |
| 157 | [ "$opt_s" ] && FILTER="${FILTER} && $opt_s" |
| 158 | [ "$opt_v" ] && FILTER="${FILTER} && $opt_v" |
| 159 | |
| 160 | if [ "$SELECTED" ] ; then |
| 161 | SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg) |
Peter Tyser | cd57b0b | 2010-10-29 17:59:06 -0500 | [diff] [blame] | 162 | |
| 163 | # Make sure some boards from boards.cfg are actually found |
| 164 | if [ -z "$SELECTED" ] ; then |
| 165 | echo "Error: No boards selected, invalid arguments" |
| 166 | exit 1 |
| 167 | fi |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 168 | fi |
| 169 | |
| 170 | ######################################################################### |
| 171 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 172 | # Print statistics when we exit |
| 173 | trap exit 1 2 3 15 |
| 174 | trap print_stats 0 |
| 175 | |
Wolfgang Denk | 7fa6a2f | 2008-12-09 00:39:08 +0100 | [diff] [blame] | 176 | # Determine number of CPU cores if no default was set |
| 177 | : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"} |
| 178 | |
| 179 | if [ "$BUILD_NCPUS" -gt 1 ] |
| 180 | then |
Peter Tyser | 55f786d | 2009-09-21 12:04:33 -0500 | [diff] [blame] | 181 | JOBS="-j $((BUILD_NCPUS + 1))" |
Wolfgang Denk | 7fa6a2f | 2008-12-09 00:39:08 +0100 | [diff] [blame] | 182 | else |
| 183 | JOBS="" |
| 184 | fi |
| 185 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 186 | if [ "${MAKEALL_LOGDIR}" ] ; then |
| 187 | LOG_DIR=${MAKEALL_LOGDIR} |
| 188 | else |
| 189 | LOG_DIR="LOG" |
| 190 | fi |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 191 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 192 | : ${BUILD_NBUILDS:=1} |
| 193 | BUILD_MANY=0 |
| 194 | |
| 195 | if [ "${BUILD_NBUILDS}" -gt 1 ] ; then |
| 196 | BUILD_MANY=1 |
| 197 | : ${BUILD_DIR:=./build} |
| 198 | mkdir -p "${BUILD_DIR}/ERR" |
| 199 | find "${BUILD_DIR}/ERR/" -type f -exec rm -f {} + |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 200 | fi |
| 201 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 202 | : ${BUILD_DIR:=.} |
| 203 | |
| 204 | OUTPUT_PREFIX="${BUILD_DIR}" |
| 205 | |
| 206 | [ -d ${LOG_DIR} ] || mkdir "${LOG_DIR}" || exit 1 |
Joe Hershberger | 0851020 | 2012-10-30 15:55:21 +0000 | [diff] [blame] | 207 | if [ "$CONTINUE" != 'y' -a "$REBUILD_ERRORS" != 'y' ] ; then |
| 208 | find "${LOG_DIR}/" -type f -exec rm -f {} + |
| 209 | fi |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 210 | |
| 211 | LIST="" |
| 212 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 213 | # Keep track of the number of builds and errors |
| 214 | ERR_CNT=0 |
| 215 | ERR_LIST="" |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 216 | WRN_CNT=0 |
| 217 | WRN_LIST="" |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 218 | TOTAL_CNT=0 |
Joe Hershberger | 0851020 | 2012-10-30 15:55:21 +0000 | [diff] [blame] | 219 | SKIP_CNT=0 |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 220 | CURRENT_CNT=0 |
| 221 | OLDEST_IDX=1 |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 222 | RC=0 |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 223 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 224 | # Helper funcs for parsing boards.cfg |
| 225 | boards_by_field() |
| 226 | { |
Allen Martin | aa2e279 | 2012-08-31 08:30:06 +0000 | [diff] [blame] | 227 | FS="[ \t]+" |
| 228 | [ -n "$3" ] && FS="$3" |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 229 | awk \ |
| 230 | -v field="$1" \ |
| 231 | -v select="$2" \ |
Allen Martin | aa2e279 | 2012-08-31 08:30:06 +0000 | [diff] [blame] | 232 | -F "$FS" \ |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 233 | '($1 !~ /^#/ && $field == select) { print $1 }' \ |
| 234 | boards.cfg |
| 235 | } |
| 236 | boards_by_arch() { boards_by_field 2 "$@" ; } |
Allen Martin | aa2e279 | 2012-08-31 08:30:06 +0000 | [diff] [blame] | 237 | boards_by_cpu() { boards_by_field 3 "$@" "[: \t]+" ; } |
Andreas Bießmann | 0a41eda | 2010-11-30 09:45:04 +0000 | [diff] [blame] | 238 | boards_by_soc() { boards_by_field 6 "$@" ; } |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 239 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 240 | ######################################################################### |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 241 | ## MPC5xx Systems |
| 242 | ######################################################################### |
| 243 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 244 | LIST_5xx="$(boards_by_cpu mpc5xx)" |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 245 | |
| 246 | ######################################################################### |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 247 | ## MPC5xxx Systems |
| 248 | ######################################################################### |
| 249 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 250 | LIST_5xxx="$(boards_by_cpu mpc5xxx)" |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 251 | |
| 252 | ######################################################################### |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 253 | ## MPC512x Systems |
| 254 | ######################################################################### |
| 255 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 256 | LIST_512x="$(boards_by_cpu mpc512x)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 257 | |
| 258 | ######################################################################### |
| 259 | ## MPC8xx Systems |
| 260 | ######################################################################### |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 261 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 262 | LIST_8xx="$(boards_by_cpu mpc8xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 263 | |
| 264 | ######################################################################### |
| 265 | ## PPC4xx Systems |
| 266 | ######################################################################### |
| 267 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 268 | LIST_4xx="$(boards_by_cpu ppc4xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 269 | |
| 270 | ######################################################################### |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 271 | ## MPC8220 Systems |
| 272 | ######################################################################### |
| 273 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 274 | LIST_8220="$(boards_by_cpu mpc8220)" |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 275 | |
| 276 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 277 | ## MPC824x Systems |
| 278 | ######################################################################### |
| 279 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 280 | LIST_824x="$(boards_by_cpu mpc824x)" |
wdenk | 592c5ca | 2003-06-21 00:17:24 +0000 | [diff] [blame] | 281 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 282 | ######################################################################### |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 283 | ## MPC8260 Systems (includes 8250, 8255 etc.) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 284 | ######################################################################### |
| 285 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 286 | LIST_8260="$(boards_by_cpu mpc8260)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 287 | |
| 288 | ######################################################################### |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 289 | ## MPC83xx Systems (includes 8349, etc.) |
| 290 | ######################################################################### |
| 291 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 292 | LIST_83xx="$(boards_by_cpu mpc83xx)" |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 293 | |
| 294 | ######################################################################### |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 295 | ## MPC85xx Systems (includes 8540, 8560 etc.) |
| 296 | ######################################################################### |
| 297 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 298 | LIST_85xx="$(boards_by_cpu mpc85xx)" |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 299 | |
| 300 | ######################################################################### |
Jon Loeliger | 822d553 | 2007-05-23 14:09:46 -0500 | [diff] [blame] | 301 | ## MPC86xx Systems |
| 302 | ######################################################################### |
| 303 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 304 | LIST_86xx="$(boards_by_cpu mpc86xx)" |
Jon Loeliger | 822d553 | 2007-05-23 14:09:46 -0500 | [diff] [blame] | 305 | |
| 306 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 307 | ## 74xx/7xx Systems |
| 308 | ######################################################################### |
| 309 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 310 | LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 311 | |
Wolfgang Denk | d9a42c0 | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 312 | ######################################################################### |
| 313 | ## PowerPC groups |
| 314 | ######################################################################### |
| 315 | |
| 316 | LIST_TSEC=" \ |
| 317 | ${LIST_83xx} \ |
| 318 | ${LIST_85xx} \ |
| 319 | ${LIST_86xx} \ |
| 320 | " |
| 321 | |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 322 | LIST_powerpc=" \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 323 | ${LIST_5xx} \ |
Jean-Christophe PLAGNIOL-VILLARD | 3deca9d | 2007-11-25 22:39:25 +0100 | [diff] [blame] | 324 | ${LIST_512x} \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 325 | ${LIST_5xxx} \ |
| 326 | ${LIST_8xx} \ |
| 327 | ${LIST_8220} \ |
| 328 | ${LIST_824x} \ |
| 329 | ${LIST_8260} \ |
| 330 | ${LIST_83xx} \ |
| 331 | ${LIST_85xx} \ |
| 332 | ${LIST_86xx} \ |
| 333 | ${LIST_4xx} \ |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 334 | ${LIST_74xx_7xx}\ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 335 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 336 | |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 337 | # Alias "ppc" -> "powerpc" to not break compatibility with older scripts |
| 338 | # still using "ppc" instead of "powerpc" |
| 339 | LIST_ppc=" \ |
| 340 | ${LIST_powerpc} \ |
| 341 | " |
| 342 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 343 | ######################################################################### |
| 344 | ## StrongARM Systems |
| 345 | ######################################################################### |
| 346 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 347 | LIST_SA="$(boards_by_cpu sa1100)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 348 | |
| 349 | ######################################################################### |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 350 | ## ARM7 Systems |
| 351 | ######################################################################### |
| 352 | |
| 353 | LIST_ARM7="$(boards_by_cpu arm720t)" |
| 354 | |
| 355 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 356 | ## ARM9 Systems |
| 357 | ######################################################################### |
| 358 | |
Wolfgang Denk | 6a8760d | 2011-09-08 05:01:24 +0000 | [diff] [blame] | 359 | LIST_ARM9="$(boards_by_cpu arm920t) \ |
| 360 | $(boards_by_cpu arm926ejs) \ |
| 361 | $(boards_by_cpu arm925t) \ |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 362 | $(boards_by_cpu arm946es) \ |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 363 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 364 | |
| 365 | ######################################################################### |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 366 | ## ARM11 Systems |
| 367 | ######################################################################### |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 368 | LIST_ARM11="$(boards_by_cpu arm1136) \ |
| 369 | $(boards_by_cpu arm1176) \ |
| 370 | " |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 371 | |
| 372 | ######################################################################### |
Steve Sakoman | f56348a | 2010-06-17 21:50:01 -0700 | [diff] [blame] | 373 | ## ARMV7 Systems |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 374 | ######################################################################### |
Dirk Behme | f37586b | 2011-08-05 20:48:32 +0000 | [diff] [blame] | 375 | |
| 376 | LIST_ARMV7="$(boards_by_cpu armv7)" |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 377 | |
| 378 | ######################################################################### |
Jean-Christophe PLAGNIOL-VILLARD | 602cac1 | 2008-05-24 12:47:46 +0200 | [diff] [blame] | 379 | ## AT91 Systems |
| 380 | ######################################################################### |
| 381 | |
Thomas Petazzoni | 5cfeec5 | 2011-08-04 11:08:50 +0000 | [diff] [blame] | 382 | LIST_at91="$(boards_by_soc at91)" |
Jean-Christophe PLAGNIOL-VILLARD | 602cac1 | 2008-05-24 12:47:46 +0200 | [diff] [blame] | 383 | |
| 384 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 385 | ## Xscale Systems |
| 386 | ######################################################################### |
| 387 | |
Marek Vasut | 7c957c0 | 2010-10-04 00:21:51 +0200 | [diff] [blame] | 388 | LIST_pxa="$(boards_by_cpu pxa)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 389 | |
Andy Fleming | bb1c01e | 2012-04-25 09:36:13 +0000 | [diff] [blame] | 390 | LIST_ixp="$(boards_by_cpu ixp)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 391 | |
Wolfgang Denk | d9a42c0 | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 392 | ######################################################################### |
Stefan Roese | 24dede4 | 2012-05-30 22:59:43 +0000 | [diff] [blame] | 393 | ## SPEAr Systems |
| 394 | ######################################################################### |
| 395 | |
| 396 | LIST_spear="$(boards_by_soc spear)" |
| 397 | |
| 398 | ######################################################################### |
Wolfgang Denk | d9a42c0 | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 399 | ## ARM groups |
| 400 | ######################################################################### |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 401 | |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 402 | LIST_arm="$(boards_by_arch arm)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 403 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 404 | ######################################################################### |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 405 | ## MIPS Systems (default = big endian) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 406 | ######################################################################### |
| 407 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 408 | LIST_mips4kc=" \ |
| 409 | incaip \ |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 410 | incaip_100MHz \ |
| 411 | incaip_133MHz \ |
| 412 | incaip_150MHz \ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 413 | qemu_mips \ |
Stefan Roese | 2a61eff | 2009-01-21 17:25:01 +0100 | [diff] [blame] | 414 | vct_platinum \ |
| 415 | vct_platinum_small \ |
| 416 | vct_platinum_onenand \ |
| 417 | vct_platinum_onenand_small \ |
| 418 | vct_platinumavc \ |
| 419 | vct_platinumavc_small \ |
| 420 | vct_platinumavc_onenand \ |
| 421 | vct_platinumavc_onenand_small \ |
| 422 | vct_premium \ |
| 423 | vct_premium_small \ |
| 424 | vct_premium_onenand \ |
| 425 | vct_premium_onenand_small \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 426 | " |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 427 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 428 | LIST_au1xx0=" \ |
| 429 | dbau1000 \ |
| 430 | dbau1100 \ |
| 431 | dbau1500 \ |
| 432 | dbau1550 \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 433 | " |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 434 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 435 | LIST_mips=" \ |
| 436 | ${LIST_mips4kc} \ |
| 437 | ${LIST_mips5kc} \ |
| 438 | ${LIST_au1xx0} \ |
| 439 | " |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 440 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 441 | ######################################################################### |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 442 | ## MIPS Systems (little endian) |
| 443 | ######################################################################### |
| 444 | |
Daniel Schwierzeck | 92b0909 | 2011-11-24 03:57:56 +0000 | [diff] [blame] | 445 | LIST_xburst_el=" \ |
Xiangfu Liu | 3c94554 | 2011-10-12 12:24:06 +0800 | [diff] [blame] | 446 | qi_lb60 \ |
| 447 | " |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 448 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 449 | LIST_au1xx0_el=" \ |
| 450 | dbau1550_el \ |
Shinya Kuribayashi | b09258c | 2007-10-27 15:00:25 +0900 | [diff] [blame] | 451 | pb1000 \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 452 | " |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 453 | LIST_mips_el=" \ |
Daniel Schwierzeck | 92b0909 | 2011-11-24 03:57:56 +0000 | [diff] [blame] | 454 | ${LIST_xburst_el} \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 455 | ${LIST_au1xx0_el} \ |
| 456 | " |
Stefan Kristiansson | deddf5d | 2011-11-18 19:21:37 +0000 | [diff] [blame] | 457 | ######################################################################### |
| 458 | ## OpenRISC Systems |
| 459 | ######################################################################### |
| 460 | |
| 461 | LIST_openrisc="$(boards_by_arch openrisc)" |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 462 | |
| 463 | ######################################################################### |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 464 | ## x86 Systems |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 465 | ######################################################################### |
| 466 | |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 467 | LIST_x86="$(boards_by_arch x86)" |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 468 | |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 469 | ######################################################################### |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 470 | ## Nios-II Systems |
| 471 | ######################################################################### |
| 472 | |
Mike Frysinger | 4827d06 | 2011-06-26 23:00:19 -0400 | [diff] [blame] | 473 | LIST_nios2="$(boards_by_arch nios2)" |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 474 | |
| 475 | ######################################################################### |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 476 | ## MicroBlaze Systems |
| 477 | ######################################################################### |
| 478 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 479 | LIST_microblaze="$(boards_by_arch microblaze)" |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 480 | |
Zachary P. Landau | f8c3b4f | 2006-01-26 17:38:46 -0500 | [diff] [blame] | 481 | ######################################################################### |
| 482 | ## ColdFire Systems |
| 483 | ######################################################################### |
| 484 | |
Allen Martin | cce5d21 | 2012-08-29 11:08:59 +0000 | [diff] [blame] | 485 | LIST_m68k="$(boards_by_arch m68k)" |
Mike Frysinger | c13f47b | 2011-09-25 19:27:19 +0000 | [diff] [blame] | 486 | LIST_coldfire=${LIST_m68k} |
Zachary P. Landau | f8c3b4f | 2006-01-26 17:38:46 -0500 | [diff] [blame] | 487 | |
Wolfgang Denk | 6ccec44 | 2006-10-24 14:42:37 +0200 | [diff] [blame] | 488 | ######################################################################### |
| 489 | ## AVR32 Systems |
| 490 | ######################################################################### |
| 491 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 492 | LIST_avr32="$(boards_by_arch avr32)" |
Wolfgang Denk | 6ccec44 | 2006-10-24 14:42:37 +0200 | [diff] [blame] | 493 | |
Aubrey.Li | ef26a08 | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 494 | ######################################################################### |
| 495 | ## Blackfin Systems |
| 496 | ######################################################################### |
| 497 | |
Mike Frysinger | 36cf8cb | 2010-10-19 02:41:26 -0400 | [diff] [blame] | 498 | LIST_blackfin="$(boards_by_arch blackfin)" |
Aubrey.Li | ef26a08 | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 499 | |
Jean-Christophe PLAGNIOL-VILLARD | c714437 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 500 | ######################################################################### |
| 501 | ## SH Systems |
| 502 | ######################################################################### |
| 503 | |
Nobuhiro Iwamatsu | e0f0e52 | 2010-10-20 01:22:25 +0900 | [diff] [blame] | 504 | LIST_sh2="$(boards_by_cpu sh2)" |
Nobuhiro Iwamatsu | 3771c69 | 2010-10-20 01:28:29 +0900 | [diff] [blame] | 505 | LIST_sh3="$(boards_by_cpu sh3)" |
Nobuhiro Iwamatsu | 03626be | 2010-10-20 01:35:28 +0900 | [diff] [blame] | 506 | LIST_sh4="$(boards_by_cpu sh4)" |
Wolfgang Denk | d9a42c0 | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 507 | |
Nobuhiro Iwamatsu | 03626be | 2010-10-20 01:35:28 +0900 | [diff] [blame] | 508 | LIST_sh="$(boards_by_arch sh)" |
Jean-Christophe PLAGNIOL-VILLARD | c714437 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 509 | |
Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 510 | ######################################################################### |
| 511 | ## SPARC Systems |
| 512 | ######################################################################### |
| 513 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 514 | LIST_sparc="$(boards_by_arch sparc)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 515 | |
Macpaul Lin | 5f1719c | 2011-10-19 20:41:10 +0000 | [diff] [blame] | 516 | ######################################################################### |
| 517 | ## NDS32 Systems |
| 518 | ######################################################################### |
| 519 | |
| 520 | LIST_nds32="$(boards_by_arch nds32)" |
| 521 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 522 | #----------------------------------------------------------------------- |
| 523 | |
Marek Vasut | 9b96c6b | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 524 | get_target_location() { |
| 525 | local target=$1 |
| 526 | local BOARD_NAME="" |
| 527 | local CONFIG_NAME="" |
| 528 | local board="" |
| 529 | local vendor="" |
| 530 | |
| 531 | # Automatic mode |
| 532 | local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg` |
| 533 | |
| 534 | if [ -z "${line}" ] ; then echo "" ; return ; fi |
| 535 | |
| 536 | set ${line} |
| 537 | |
| 538 | # add default board name if needed |
| 539 | [ $# = 3 ] && set ${line} ${1} |
| 540 | |
| 541 | CONFIG_NAME="${1%_config}" |
| 542 | |
| 543 | [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}" |
| 544 | |
| 545 | if [ "$4" = "-" ] ; then |
| 546 | board=${BOARD_NAME} |
| 547 | else |
| 548 | board="$4" |
| 549 | fi |
| 550 | |
| 551 | [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5" |
| 552 | [ $# -gt 6 ] && [ "$7" != "-" ] && { |
| 553 | tmp="${7%:*}" |
| 554 | if [ "$tmp" ] ; then |
| 555 | CONFIG_NAME="$tmp" |
| 556 | fi |
| 557 | } |
| 558 | |
| 559 | # Assign board directory to BOARDIR variable |
| 560 | if [ -z "${vendor}" ] ; then |
| 561 | BOARDDIR=${board} |
| 562 | else |
| 563 | BOARDDIR=${vendor}/${board} |
| 564 | fi |
| 565 | |
| 566 | echo "${CONFIG_NAME}:${BOARDDIR}" |
| 567 | } |
| 568 | |
| 569 | get_target_maintainers() { |
| 570 | local name=`echo $1 | cut -d : -f 1` |
| 571 | |
| 572 | if ! grep -qsi "[[:blank:]]${name}[[:blank:]]" MAINTAINERS ; then |
| 573 | echo "" |
| 574 | return ; |
| 575 | fi |
| 576 | |
| 577 | local line=`tac MAINTAINERS | grep -ni "[[:blank:]]${name}[[:blank:]]" | cut -d : -f 1` |
| 578 | local mail=`tac MAINTAINERS | tail -n +${line} | \ |
| 579 | sed -n ":start /.*@.*/ { b mail } ; n ; b start ; :mail /.*@.*/ { p ; n ; b mail } ; q" | \ |
| 580 | sed "s/^.*<//;s/>.*$//"` |
| 581 | echo "$mail" |
| 582 | } |
| 583 | |
Allen Martin | 47104c3 | 2013-01-29 14:34:58 +0000 | [diff] [blame] | 584 | get_target_arch() { |
| 585 | local target=$1 |
| 586 | |
| 587 | # Automatic mode |
| 588 | local line=`egrep -i "^[[:space:]]*${target}[[:space:]]" boards.cfg` |
| 589 | |
| 590 | if [ -z "${line}" ] ; then echo "" ; return ; fi |
| 591 | |
| 592 | set ${line} |
| 593 | echo "$2" |
| 594 | } |
| 595 | |
Marek Vasut | 9b96c6b | 2012-03-05 15:10:51 +0000 | [diff] [blame] | 596 | list_target() { |
| 597 | if [ "$PRINT_MAINTS" != 'y' ] ; then |
| 598 | echo "$1" |
| 599 | return |
| 600 | fi |
| 601 | |
| 602 | echo -n "$1:" |
| 603 | |
| 604 | local loc=`get_target_location $1` |
| 605 | |
| 606 | if [ -z "${loc}" ] ; then echo "ERROR" ; return ; fi |
| 607 | |
| 608 | local maintainers_result=`get_target_maintainers ${loc} | tr " " "\n"` |
| 609 | |
| 610 | if [ "$MAINTAINERS_ONLY" != 'y' ] ; then |
| 611 | |
| 612 | local dir=`echo ${loc} | cut -d ":" -f 2` |
| 613 | local cfg=`echo ${loc} | cut -d ":" -f 1` |
| 614 | local git_result=`git log --format=%aE board/${dir} \ |
| 615 | include/configs/${cfg}.h | grep "@"` |
| 616 | local git_result_recent=`echo ${git_result} | tr " " "\n" | \ |
| 617 | head -n 3` |
| 618 | local git_result_top=`echo ${git_result} | tr " " "\n" | \ |
| 619 | sort | uniq -c | sort -nr | head -n 3 | \ |
| 620 | sed "s/^ \+[0-9]\+ \+//"` |
| 621 | |
| 622 | echo -e "$git_result_recent\n$git_result_top\n$maintainers_result" | \ |
| 623 | sort -u | tr "\n" " " | sed "s/ $//" ; |
| 624 | else |
| 625 | echo -e "$maintainers_result" | sort -u | tr "\n" " " | \ |
| 626 | sed "s/ $//" ; |
| 627 | fi |
| 628 | |
| 629 | echo "" |
| 630 | } |
| 631 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 632 | # Each finished build will have a file called ${donep}${n}, |
| 633 | # where n is the index of the build. Each build |
| 634 | # we've already noted as finished will have ${skipp}${n}. |
| 635 | # The code managing the build process will use this information |
| 636 | # to ensure that only BUILD_NBUILDS builds are in flight at once |
| 637 | donep="${LOG_DIR}/._done_" |
| 638 | skipp="${LOG_DIR}/._skip_" |
| 639 | |
Joe Hershberger | c97d59c | 2012-10-30 15:55:20 +0000 | [diff] [blame] | 640 | build_target_killed() { |
| 641 | echo "Aborted $target build." |
| 642 | # Remove the logs for this board since it was aborted |
| 643 | rm -f ${LOG_DIR}/$target.MAKELOG ${LOG_DIR}/$target.ERR |
| 644 | exit |
| 645 | } |
| 646 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 647 | build_target() { |
| 648 | target=$1 |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 649 | build_idx=$2 |
| 650 | |
Andy Fleming | f50bf50 | 2012-05-09 20:36:28 +0000 | [diff] [blame] | 651 | if [ "$ONLY_LIST" == 'y' ] ; then |
| 652 | list_target ${target} |
| 653 | return |
| 654 | fi |
| 655 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 656 | if [ $BUILD_MANY == 1 ] ; then |
| 657 | output_dir="${OUTPUT_PREFIX}/${target}" |
| 658 | mkdir -p "${output_dir}" |
Joe Hershberger | c97d59c | 2012-10-30 15:55:20 +0000 | [diff] [blame] | 659 | trap build_target_killed TERM |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 660 | else |
| 661 | output_dir="${OUTPUT_PREFIX}" |
| 662 | fi |
| 663 | |
| 664 | export BUILD_DIR="${output_dir}" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 665 | |
Allen Martin | 47104c3 | 2013-01-29 14:34:58 +0000 | [diff] [blame] | 666 | target_arch=$(get_target_arch ${target}) |
| 667 | eval cross_toolchain=\$CROSS_COMPILE_${target_arch^^} |
| 668 | if [ "${cross_toolchain}" ] ; then |
| 669 | MAKE="make CROSS_COMPILE=${cross_toolchain}" |
| 670 | elif [ "${CROSS_COMPILE}" ] ; then |
| 671 | MAKE="make CROSS_COMPILE=${CROSS_COMPILE}" |
| 672 | else |
| 673 | MAKE=make |
| 674 | fi |
| 675 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 676 | ${MAKE} distclean >/dev/null |
Kim Phillips | d70d8cc | 2010-09-14 14:48:16 -0500 | [diff] [blame] | 677 | ${MAKE} -s ${target}_config |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 678 | |
Kim Phillips | 33f336d | 2012-09-27 14:57:34 +0000 | [diff] [blame] | 679 | ${MAKE} ${JOBS} ${CHECK} all \ |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 680 | >${LOG_DIR}/$target.MAKELOG 2> ${LOG_DIR}/$target.ERR |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 681 | |
| 682 | # Check for 'make' errors |
| 683 | if [ ${PIPESTATUS[0]} -ne 0 ] ; then |
| 684 | RC=1 |
| 685 | fi |
| 686 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 687 | if [ $BUILD_MANY == 1 ] ; then |
Joe Hershberger | c97d59c | 2012-10-30 15:55:20 +0000 | [diff] [blame] | 688 | trap - TERM |
| 689 | |
Tom Rini | ed296d2 | 2012-10-25 08:53:14 +0000 | [diff] [blame] | 690 | ${MAKE} -s tidy |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 691 | |
| 692 | if [ -s ${LOG_DIR}/${target}.ERR ] ; then |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 693 | cp ${LOG_DIR}/${target}.ERR ${OUTPUT_PREFIX}/ERR/${target} |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 694 | else |
| 695 | rm ${LOG_DIR}/${target}.ERR |
| 696 | fi |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 697 | else |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 698 | if [ -s ${LOG_DIR}/${target}.ERR ] ; then |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 699 | if grep -iw error ${LOG_DIR}/${target}.ERR ; then |
| 700 | : $(( ERR_CNT += 1 )) |
| 701 | ERR_LIST="${ERR_LIST} $target" |
| 702 | else |
| 703 | : $(( WRN_CNT += 1 )) |
| 704 | WRN_LIST="${WRN_LIST} $target" |
| 705 | fi |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 706 | else |
| 707 | rm ${LOG_DIR}/${target}.ERR |
| 708 | fi |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 709 | fi |
| 710 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 711 | OBJS=${output_dir}/u-boot |
| 712 | if [ -e ${output_dir}/spl/u-boot-spl ]; then |
| 713 | OBJS="${OBJS} ${output_dir}/spl/u-boot-spl" |
Scott Wood | 0c18569 | 2012-02-20 12:56:25 +0000 | [diff] [blame] | 714 | fi |
| 715 | |
| 716 | ${CROSS_COMPILE}size ${OBJS} | tee -a ${LOG_DIR}/$target.MAKELOG |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 717 | |
| 718 | [ -e "${LOG_DIR}/${target}.ERR" ] && cat "${LOG_DIR}/${target}.ERR" |
| 719 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 720 | touch "${donep}${build_idx}" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 721 | } |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 722 | |
| 723 | manage_builds() { |
| 724 | search_idx=${OLDEST_IDX} |
Andy Fleming | f50bf50 | 2012-05-09 20:36:28 +0000 | [diff] [blame] | 725 | if [ "$ONLY_LIST" == 'y' ] ; then return ; fi |
| 726 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 727 | while true; do |
| 728 | if [ -e "${donep}${search_idx}" ] ; then |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 729 | : $(( CURRENT_CNT-- )) |
| 730 | [ ${OLDEST_IDX} -eq ${search_idx} ] && |
| 731 | : $(( OLDEST_IDX++ )) |
| 732 | |
| 733 | # Only want to count it once |
| 734 | rm -f "${donep}${search_idx}" |
| 735 | touch "${skipp}${search_idx}" |
| 736 | elif [ -e "${skipp}${search_idx}" ] ; then |
| 737 | [ ${OLDEST_IDX} -eq ${search_idx} ] && |
| 738 | : $(( OLDEST_IDX++ )) |
| 739 | fi |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 740 | : $(( search_idx++ )) |
| 741 | if [ ${search_idx} -gt ${TOTAL_CNT} ] ; then |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 742 | if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then |
| 743 | search_idx=${OLDEST_IDX} |
| 744 | sleep 1 |
| 745 | else |
| 746 | break |
| 747 | fi |
| 748 | fi |
| 749 | done |
| 750 | } |
| 751 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 752 | build_targets() { |
| 753 | for t in "$@" ; do |
| 754 | # If a LIST_xxx var exists, use it. But avoid variable |
| 755 | # expansion in the eval when a board name contains certain |
| 756 | # characters that the shell interprets. |
| 757 | case ${t} in |
| 758 | *[-+=]*) list= ;; |
| 759 | *) list=$(eval echo '${LIST_'$t'}') ;; |
| 760 | esac |
| 761 | if [ -n "${list}" ] ; then |
| 762 | build_targets ${list} |
| 763 | else |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 764 | : $((TOTAL_CNT += 1)) |
| 765 | : $((CURRENT_CNT += 1)) |
| 766 | rm -f "${donep}${TOTAL_CNT}" |
| 767 | rm -f "${skipp}${TOTAL_CNT}" |
Joe Hershberger | 0851020 | 2012-10-30 15:55:21 +0000 | [diff] [blame] | 768 | if [ "$CONTINUE" = 'y' -a -e ${LOG_DIR}/$t.MAKELOG ] ; then |
| 769 | : $((SKIP_CNT += 1)) |
| 770 | touch "${donep}${TOTAL_CNT}" |
| 771 | elif [ "$REBUILD_ERRORS" = 'y' -a ! -e ${LOG_DIR}/$t.ERR ] ; then |
| 772 | : $((SKIP_CNT += 1)) |
| 773 | touch "${donep}${TOTAL_CNT}" |
Joe Hershberger | b594bd6 | 2012-05-21 04:49:37 +0000 | [diff] [blame] | 774 | else |
Joe Hershberger | 0851020 | 2012-10-30 15:55:21 +0000 | [diff] [blame] | 775 | if [ $BUILD_MANY == 1 ] ; then |
| 776 | build_target ${t} ${TOTAL_CNT} & |
| 777 | else |
| 778 | CUR_TGT="${t}" |
| 779 | build_target ${t} ${TOTAL_CNT} |
| 780 | CUR_TGT='' |
| 781 | fi |
Joe Hershberger | b594bd6 | 2012-05-21 04:49:37 +0000 | [diff] [blame] | 782 | fi |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 783 | fi |
| 784 | |
| 785 | # We maintain a running count of all the builds we have done. |
| 786 | # Each finished build will have a file called ${donep}${n}, |
| 787 | # where n is the index of the build. Each build |
| 788 | # we've already noted as finished will have ${skipp}${n}. |
| 789 | # We track the current index via TOTAL_CNT, and the oldest |
| 790 | # index. When we exceed the maximum number of parallel builds, |
| 791 | # We look from oldest to current for builds that have completed, |
| 792 | # and update the current count and oldest index as appropriate. |
| 793 | # If we've gone through the entire list, wait a second, and |
| 794 | # reprocess the entire list until we find a build that has |
| 795 | # completed |
| 796 | if [ ${CURRENT_CNT} -ge ${BUILD_NBUILDS} ] ; then |
| 797 | manage_builds |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 798 | fi |
| 799 | done |
| 800 | } |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 801 | |
| 802 | #----------------------------------------------------------------------- |
| 803 | |
Andy Fleming | f50bf50 | 2012-05-09 20:36:28 +0000 | [diff] [blame] | 804 | kill_children() { |
Andreas Bießmann | 6bdd9f8 | 2013-02-07 22:35:57 +0000 | [diff] [blame] | 805 | local OS=$(uname -s) |
| 806 | local children="" |
| 807 | case "${OS}" in |
| 808 | "Darwin") |
| 809 | # Mac OS X is known to have BSD style ps |
| 810 | local pgid=$(ps -p $$ -o pgid | sed -e "/PGID/d") |
| 811 | children=$(ps -g $pgid -o pid | sed -e "/PID\|$$\|$pgid/d") |
| 812 | ;; |
| 813 | *) |
| 814 | # everything else tries the GNU style |
| 815 | local pgid=$(ps -p $$ --no-headers -o "%r" | tr -d ' ') |
| 816 | children=$(pgrep -g $pgid | sed -e "/$$\|$pgid/d") |
| 817 | ;; |
| 818 | esac |
Joe Hershberger | c97d59c | 2012-10-30 15:55:20 +0000 | [diff] [blame] | 819 | |
| 820 | kill $children 2> /dev/null |
| 821 | wait $children 2> /dev/null |
Andy Fleming | f50bf50 | 2012-05-09 20:36:28 +0000 | [diff] [blame] | 822 | |
| 823 | exit |
| 824 | } |
| 825 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 826 | print_stats() { |
Marek Vasut | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 827 | if [ "$ONLY_LIST" == 'y' ] ; then return ; fi |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 828 | |
Joe Hershberger | c97d59c | 2012-10-30 15:55:20 +0000 | [diff] [blame] | 829 | # Only count boards that completed |
| 830 | : $((TOTAL_CNT = `find ${skipp}* 2> /dev/null | wc -l`)) |
| 831 | |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 832 | rm -f ${donep}* ${skipp}* |
| 833 | |
| 834 | if [ $BUILD_MANY == 1 ] && [ -e "${OUTPUT_PREFIX}/ERR" ] ; then |
Andy Fleming | 033220e | 2012-08-08 14:12:30 +0000 | [diff] [blame] | 835 | ERR_LIST=`grep -riwl error ${OUTPUT_PREFIX}/ERR/` |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 836 | ERR_LIST=`for f in $ERR_LIST ; do echo -n " $(basename $f)" ; done` |
| 837 | ERR_CNT=`echo $ERR_LIST | wc -w | awk '{print $1}'` |
Andy Fleming | 033220e | 2012-08-08 14:12:30 +0000 | [diff] [blame] | 838 | WRN_LIST=`grep -riwL error ${OUTPUT_PREFIX}/ERR/` |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 839 | WRN_LIST=`for f in $WRN_LIST ; do echo -n " $(basename $f)" ; done` |
| 840 | WRN_CNT=`echo $WRN_LIST | wc -w | awk '{print $1}'` |
Joe Hershberger | c97d59c | 2012-10-30 15:55:20 +0000 | [diff] [blame] | 841 | else |
| 842 | # Remove the logs for any board that was interrupted |
| 843 | rm -f ${LOG_DIR}/${CUR_TGT}.MAKELOG ${LOG_DIR}/${CUR_TGT}.ERR |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 844 | fi |
| 845 | |
Joe Hershberger | 0851020 | 2012-10-30 15:55:21 +0000 | [diff] [blame] | 846 | : $((TOTAL_CNT -= ${SKIP_CNT})) |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 847 | echo "" |
| 848 | echo "--------------------- SUMMARY ----------------------------" |
Joe Hershberger | 0851020 | 2012-10-30 15:55:21 +0000 | [diff] [blame] | 849 | if [ "$CONTINUE" = 'y' -o "$REBUILD_ERRORS" = 'y' ] ; then |
| 850 | echo "Boards skipped: ${SKIP_CNT}" |
| 851 | fi |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 852 | echo "Boards compiled: ${TOTAL_CNT}" |
| 853 | if [ ${ERR_CNT} -gt 0 ] ; then |
Joe Hershberger | b86a475 | 2012-05-21 04:49:38 +0000 | [diff] [blame] | 854 | echo "Boards with errors: ${ERR_CNT} (${ERR_LIST} )" |
| 855 | fi |
| 856 | if [ ${WRN_CNT} -gt 0 ] ; then |
| 857 | echo "Boards with warnings but no errors: ${WRN_CNT} (${WRN_LIST} )" |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 858 | fi |
| 859 | echo "----------------------------------------------------------" |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 860 | |
Andy Fleming | f50bf50 | 2012-05-09 20:36:28 +0000 | [diff] [blame] | 861 | if [ $BUILD_MANY == 1 ] ; then |
Joe Hershberger | c97d59c | 2012-10-30 15:55:20 +0000 | [diff] [blame] | 862 | kill_children |
Andy Fleming | f50bf50 | 2012-05-09 20:36:28 +0000 | [diff] [blame] | 863 | fi |
| 864 | |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 865 | exit $RC |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 866 | } |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 867 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 868 | #----------------------------------------------------------------------- |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 869 | |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 870 | # Build target groups selected by options, plus any command line args |
| 871 | set -- ${SELECTED} "$@" |
| 872 | # run PowerPC by default |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 873 | [ $# = 0 ] && set -- powerpc |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 874 | build_targets "$@" |
Andy Fleming | f588bb0 | 2012-04-24 19:33:51 +0000 | [diff] [blame] | 875 | wait |