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 |
Mike Frysinger | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 20 | -h, --help This help output |
| 21 | |
| 22 | Selections by these options are logically ANDed; if the same option |
| 23 | is used repeatedly, such selections are ORed. So "-v FOO -v BAR" |
| 24 | will select all configurations where the vendor is either FOO or |
| 25 | BAR. Any additional arguments specified on the command line are |
| 26 | always build additionally. See the boards.cfg file for more info. |
| 27 | |
| 28 | If no boards are specified, then the default is "powerpc". |
| 29 | |
| 30 | Environment variables: |
| 31 | BUILD_NCPUS number of parallel make jobs (default: auto) |
| 32 | CROSS_COMPILE cross-compiler toolchain prefix (default: "") |
| 33 | MAKEALL_LOGDIR output all logs to here (default: ./LOG/) |
| 34 | BUILD_DIR output build directory (default: ./) |
| 35 | |
| 36 | Examples: |
| 37 | - build all Power Architecture boards: |
| 38 | MAKEALL -a powerpc |
| 39 | MAKEALL --arch powerpc |
| 40 | MAKEALL powerpc |
| 41 | - build all PowerPC boards manufactured by vendor "esd": |
| 42 | MAKEALL -a powerpc -v esd |
| 43 | - build all PowerPC boards manufactured either by "keymile" or "siemens": |
| 44 | MAKEALL -a powerpc -v keymile -v siemens |
| 45 | - build all Freescale boards with MPC83xx CPUs, plus all 4xx boards: |
| 46 | MAKEALL -c mpc83xx -v freescale 4xx |
| 47 | EOF |
| 48 | exit ${ret} |
| 49 | } |
| 50 | |
Marek Vasut | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 51 | SHORT_OPTS="ha:c:v:s:l" |
| 52 | LONG_OPTS="help,arch:,cpu:,vendor:,soc:,list" |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 53 | |
| 54 | # Option processing based on util-linux-2.13/getopt-parse.bash |
| 55 | |
Wolfgang Denk | 071bc92 | 2010-10-27 22:48:30 +0200 | [diff] [blame] | 56 | # 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] | 57 | # separate word. The quotes around `$@' are essential! |
| 58 | # We need TEMP as the `eval set --' would nuke the return value of |
| 59 | # getopt. |
| 60 | TEMP=`getopt -o ${SHORT_OPTS} --long ${LONG_OPTS} \ |
| 61 | -n 'MAKEALL' -- "$@"` |
| 62 | |
Mike Frysinger | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 63 | [ $? != 0 ] && usage 1 |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 64 | |
| 65 | # Note the quotes around `$TEMP': they are essential! |
| 66 | eval set -- "$TEMP" |
| 67 | |
| 68 | SELECTED='' |
Marek Vasut | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 69 | ONLY_LIST='' |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 70 | |
| 71 | while true ; do |
| 72 | case "$1" in |
| 73 | -a|--arch) |
| 74 | # echo "Option ARCH: argument \`$2'" |
| 75 | if [ "$opt_a" ] ; then |
| 76 | opt_a="${opt_a%)} || \$2 == \"$2\")" |
| 77 | else |
| 78 | opt_a="(\$2 == \"$2\")" |
| 79 | fi |
| 80 | SELECTED='y' |
| 81 | shift 2 ;; |
| 82 | -c|--cpu) |
| 83 | # echo "Option CPU: argument \`$2'" |
| 84 | if [ "$opt_c" ] ; then |
| 85 | opt_c="${opt_c%)} || \$3 == \"$2\")" |
| 86 | else |
| 87 | opt_c="(\$3 == \"$2\")" |
| 88 | fi |
| 89 | SELECTED='y' |
| 90 | shift 2 ;; |
| 91 | -s|--soc) |
| 92 | # echo "Option SoC: argument \`$2'" |
| 93 | if [ "$opt_s" ] ; then |
| 94 | opt_s="${opt_s%)} || \$6 == \"$2\")" |
| 95 | else |
| 96 | opt_s="(\$6 == \"$2\")" |
| 97 | fi |
| 98 | SELECTED='y' |
| 99 | shift 2 ;; |
| 100 | -v|--vendor) |
| 101 | # echo "Option VENDOR: argument \`$2'" |
| 102 | if [ "$opt_v" ] ; then |
| 103 | opt_v="${opt_v%)} || \$5 == \"$2\")" |
| 104 | else |
| 105 | opt_v="(\$5 == \"$2\")" |
| 106 | fi |
| 107 | SELECTED='y' |
| 108 | shift 2 ;; |
Marek Vasut | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 109 | -l|--list) |
| 110 | ONLY_LIST='y' |
| 111 | shift ;; |
Mike Frysinger | d8e392d | 2011-04-21 22:01:43 +0000 | [diff] [blame] | 112 | -h|--help) |
| 113 | usage ;; |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 114 | --) |
| 115 | shift ; break ;; |
| 116 | *) |
| 117 | echo "Internal error!" >&2 ; exit 1 ;; |
| 118 | esac |
| 119 | done |
| 120 | # echo "Remaining arguments:" |
| 121 | # for arg do echo '--> '"\`$arg'" ; done |
| 122 | |
| 123 | FILTER="\$1 !~ /^#/" |
| 124 | [ "$opt_a" ] && FILTER="${FILTER} && $opt_a" |
| 125 | [ "$opt_c" ] && FILTER="${FILTER} && $opt_c" |
| 126 | [ "$opt_s" ] && FILTER="${FILTER} && $opt_s" |
| 127 | [ "$opt_v" ] && FILTER="${FILTER} && $opt_v" |
| 128 | |
| 129 | if [ "$SELECTED" ] ; then |
| 130 | SELECTED=$(awk '('"$FILTER"') { print $1 }' boards.cfg) |
Peter Tyser | cd57b0b | 2010-10-29 17:59:06 -0500 | [diff] [blame] | 131 | |
| 132 | # Make sure some boards from boards.cfg are actually found |
| 133 | if [ -z "$SELECTED" ] ; then |
| 134 | echo "Error: No boards selected, invalid arguments" |
| 135 | exit 1 |
| 136 | fi |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 137 | fi |
| 138 | |
| 139 | ######################################################################### |
| 140 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 141 | # Print statistics when we exit |
| 142 | trap exit 1 2 3 15 |
| 143 | trap print_stats 0 |
| 144 | |
Wolfgang Denk | 7fa6a2f | 2008-12-09 00:39:08 +0100 | [diff] [blame] | 145 | # Determine number of CPU cores if no default was set |
| 146 | : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"} |
| 147 | |
| 148 | if [ "$BUILD_NCPUS" -gt 1 ] |
| 149 | then |
Peter Tyser | 55f786d | 2009-09-21 12:04:33 -0500 | [diff] [blame] | 150 | JOBS="-j $((BUILD_NCPUS + 1))" |
Wolfgang Denk | 7fa6a2f | 2008-12-09 00:39:08 +0100 | [diff] [blame] | 151 | else |
| 152 | JOBS="" |
| 153 | fi |
| 154 | |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 155 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 156 | if [ "${CROSS_COMPILE}" ] ; then |
| 157 | MAKE="make CROSS_COMPILE=${CROSS_COMPILE}" |
| 158 | else |
| 159 | MAKE=make |
| 160 | fi |
| 161 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 162 | if [ "${MAKEALL_LOGDIR}" ] ; then |
| 163 | LOG_DIR=${MAKEALL_LOGDIR} |
| 164 | else |
| 165 | LOG_DIR="LOG" |
| 166 | fi |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 167 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 168 | if [ ! "${BUILD_DIR}" ] ; then |
| 169 | BUILD_DIR="." |
| 170 | fi |
| 171 | |
Marian Balakowicz | 4f0645e | 2006-09-07 12:05:53 +0200 | [diff] [blame] | 172 | [ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 173 | |
| 174 | LIST="" |
| 175 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 176 | # Keep track of the number of builds and errors |
| 177 | ERR_CNT=0 |
| 178 | ERR_LIST="" |
| 179 | TOTAL_CNT=0 |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 180 | RC=0 |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 181 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 182 | # Helper funcs for parsing boards.cfg |
| 183 | boards_by_field() |
| 184 | { |
| 185 | awk \ |
| 186 | -v field="$1" \ |
| 187 | -v select="$2" \ |
| 188 | '($1 !~ /^#/ && $field == select) { print $1 }' \ |
| 189 | boards.cfg |
| 190 | } |
| 191 | boards_by_arch() { boards_by_field 2 "$@" ; } |
| 192 | boards_by_cpu() { boards_by_field 3 "$@" ; } |
Andreas Bießmann | 0a41eda | 2010-11-30 09:45:04 +0000 | [diff] [blame] | 193 | boards_by_soc() { boards_by_field 6 "$@" ; } |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 194 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 195 | ######################################################################### |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 196 | ## MPC5xx Systems |
| 197 | ######################################################################### |
| 198 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 199 | LIST_5xx="$(boards_by_cpu mpc5xx)" |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 200 | |
| 201 | ######################################################################### |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 202 | ## MPC5xxx Systems |
| 203 | ######################################################################### |
| 204 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 205 | LIST_5xxx="$(boards_by_cpu mpc5xxx)" |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 206 | |
| 207 | ######################################################################### |
Rafal Jaworowski | 8993e54 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 208 | ## MPC512x Systems |
| 209 | ######################################################################### |
| 210 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 211 | LIST_512x="$(boards_by_cpu mpc512x)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 212 | |
| 213 | ######################################################################### |
| 214 | ## MPC8xx Systems |
| 215 | ######################################################################### |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 216 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 217 | LIST_8xx="$(boards_by_cpu mpc8xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 218 | |
| 219 | ######################################################################### |
| 220 | ## PPC4xx Systems |
| 221 | ######################################################################### |
| 222 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 223 | LIST_4xx="$(boards_by_cpu ppc4xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 224 | |
| 225 | ######################################################################### |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 226 | ## MPC8220 Systems |
| 227 | ######################################################################### |
| 228 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 229 | LIST_8220="$(boards_by_cpu mpc8220)" |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 230 | |
| 231 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 232 | ## MPC824x Systems |
| 233 | ######################################################################### |
| 234 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 235 | LIST_824x="$(boards_by_cpu mpc824x)" |
wdenk | 592c5ca | 2003-06-21 00:17:24 +0000 | [diff] [blame] | 236 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 237 | ######################################################################### |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 238 | ## MPC8260 Systems (includes 8250, 8255 etc.) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 239 | ######################################################################### |
| 240 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 241 | LIST_8260="$(boards_by_cpu mpc8260)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 242 | |
| 243 | ######################################################################### |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 244 | ## MPC83xx Systems (includes 8349, etc.) |
| 245 | ######################################################################### |
| 246 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 247 | LIST_83xx="$(boards_by_cpu mpc83xx)" |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 248 | |
| 249 | ######################################################################### |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 250 | ## MPC85xx Systems (includes 8540, 8560 etc.) |
| 251 | ######################################################################### |
| 252 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 253 | LIST_85xx="$(boards_by_cpu mpc85xx)" |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 254 | |
| 255 | ######################################################################### |
Jon Loeliger | 822d553 | 2007-05-23 14:09:46 -0500 | [diff] [blame] | 256 | ## MPC86xx Systems |
| 257 | ######################################################################### |
| 258 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 259 | LIST_86xx="$(boards_by_cpu mpc86xx)" |
Jon Loeliger | 822d553 | 2007-05-23 14:09:46 -0500 | [diff] [blame] | 260 | |
| 261 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 262 | ## 74xx/7xx Systems |
| 263 | ######################################################################### |
| 264 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 265 | LIST_74xx_7xx="$(boards_by_cpu 74xx_7xx)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 266 | |
Wolfgang Denk | d9a42c0 | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 267 | ######################################################################### |
| 268 | ## PowerPC groups |
| 269 | ######################################################################### |
| 270 | |
| 271 | LIST_TSEC=" \ |
| 272 | ${LIST_83xx} \ |
| 273 | ${LIST_85xx} \ |
| 274 | ${LIST_86xx} \ |
| 275 | " |
| 276 | |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 277 | LIST_powerpc=" \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 278 | ${LIST_5xx} \ |
Jean-Christophe PLAGNIOL-VILLARD | 3deca9d | 2007-11-25 22:39:25 +0100 | [diff] [blame] | 279 | ${LIST_512x} \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 280 | ${LIST_5xxx} \ |
| 281 | ${LIST_8xx} \ |
| 282 | ${LIST_8220} \ |
| 283 | ${LIST_824x} \ |
| 284 | ${LIST_8260} \ |
| 285 | ${LIST_83xx} \ |
| 286 | ${LIST_85xx} \ |
| 287 | ${LIST_86xx} \ |
| 288 | ${LIST_4xx} \ |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 289 | ${LIST_74xx_7xx}\ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 290 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 291 | |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 292 | # Alias "ppc" -> "powerpc" to not break compatibility with older scripts |
| 293 | # still using "ppc" instead of "powerpc" |
| 294 | LIST_ppc=" \ |
| 295 | ${LIST_powerpc} \ |
| 296 | " |
| 297 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 298 | ######################################################################### |
| 299 | ## StrongARM Systems |
| 300 | ######################################################################### |
| 301 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 302 | LIST_SA="$(boards_by_cpu sa1100)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 303 | |
| 304 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 305 | ## ARM9 Systems |
| 306 | ######################################################################### |
| 307 | |
Wolfgang Denk | 6a8760d | 2011-09-08 05:01:24 +0000 | [diff] [blame] | 308 | LIST_ARM9="$(boards_by_cpu arm920t) \ |
| 309 | $(boards_by_cpu arm926ejs) \ |
| 310 | $(boards_by_cpu arm925t) \ |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 311 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 312 | |
| 313 | ######################################################################### |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 314 | ## ARM11 Systems |
| 315 | ######################################################################### |
Wolfgang Denk | 6a8760d | 2011-09-08 05:01:24 +0000 | [diff] [blame] | 316 | LIST_ARM11="$(boards_by_cpu arm1136) \ |
Guennadi Liakhovetski | 0c69267 | 2009-03-25 11:36:50 +0100 | [diff] [blame] | 317 | imx31_phycore \ |
| 318 | imx31_phycore_eet \ |
Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 319 | mx31pdk \ |
Guennadi Liakhovetski | 0c69267 | 2009-03-25 11:36:50 +0100 | [diff] [blame] | 320 | smdk6400 \ |
Wolfgang Denk | 74f4304 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 321 | " |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 322 | |
| 323 | ######################################################################### |
Steve Sakoman | f56348a | 2010-06-17 21:50:01 -0700 | [diff] [blame] | 324 | ## ARMV7 Systems |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 325 | ######################################################################### |
Dirk Behme | f37586b | 2011-08-05 20:48:32 +0000 | [diff] [blame] | 326 | |
| 327 | LIST_ARMV7="$(boards_by_cpu armv7)" |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 328 | |
| 329 | ######################################################################### |
Jean-Christophe PLAGNIOL-VILLARD | 602cac1 | 2008-05-24 12:47:46 +0200 | [diff] [blame] | 330 | ## AT91 Systems |
| 331 | ######################################################################### |
| 332 | |
Thomas Petazzoni | 5cfeec5 | 2011-08-04 11:08:50 +0000 | [diff] [blame] | 333 | LIST_at91="$(boards_by_soc at91)" |
Jean-Christophe PLAGNIOL-VILLARD | 602cac1 | 2008-05-24 12:47:46 +0200 | [diff] [blame] | 334 | |
| 335 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 336 | ## Xscale Systems |
| 337 | ######################################################################### |
| 338 | |
Marek Vasut | 7c957c0 | 2010-10-04 00:21:51 +0200 | [diff] [blame] | 339 | LIST_pxa="$(boards_by_cpu pxa)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 340 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 341 | LIST_ixp="$(boards_by_cpu ixp) |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 342 | pdnb3 \ |
| 343 | scpu \ |
| 344 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 345 | |
Wolfgang Denk | d9a42c0 | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 346 | ######################################################################### |
| 347 | ## ARM groups |
| 348 | ######################################################################### |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 349 | |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 350 | LIST_arm=" \ |
| 351 | ${LIST_SA} \ |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 352 | ${LIST_ARM9} \ |
| 353 | ${LIST_ARM10} \ |
| 354 | ${LIST_ARM11} \ |
Steve Sakoman | f56348a | 2010-06-17 21:50:01 -0700 | [diff] [blame] | 355 | ${LIST_ARMV7} \ |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 356 | ${LIST_at91} \ |
| 357 | ${LIST_pxa} \ |
| 358 | ${LIST_ixp} \ |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 359 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 360 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 361 | ######################################################################### |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 362 | ## MIPS Systems (default = big endian) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 363 | ######################################################################### |
| 364 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 365 | LIST_mips4kc=" \ |
| 366 | incaip \ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 367 | qemu_mips \ |
Stefan Roese | 2a61eff | 2009-01-21 17:25:01 +0100 | [diff] [blame] | 368 | vct_platinum \ |
| 369 | vct_platinum_small \ |
| 370 | vct_platinum_onenand \ |
| 371 | vct_platinum_onenand_small \ |
| 372 | vct_platinumavc \ |
| 373 | vct_platinumavc_small \ |
| 374 | vct_platinumavc_onenand \ |
| 375 | vct_platinumavc_onenand_small \ |
| 376 | vct_premium \ |
| 377 | vct_premium_small \ |
| 378 | vct_premium_onenand \ |
| 379 | vct_premium_onenand_small \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 380 | " |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 381 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 382 | LIST_au1xx0=" \ |
| 383 | dbau1000 \ |
| 384 | dbau1100 \ |
| 385 | dbau1500 \ |
| 386 | dbau1550 \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 387 | gth2 \ |
| 388 | " |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 389 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 390 | LIST_mips=" \ |
| 391 | ${LIST_mips4kc} \ |
| 392 | ${LIST_mips5kc} \ |
| 393 | ${LIST_au1xx0} \ |
| 394 | " |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 395 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 396 | ######################################################################### |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 397 | ## MIPS Systems (little endian) |
| 398 | ######################################################################### |
| 399 | |
Daniel Schwierzeck | 92b0909 | 2011-11-24 03:57:56 +0000 | [diff] [blame] | 400 | LIST_xburst_el=" \ |
Xiangfu Liu | 3c94554 | 2011-10-12 12:24:06 +0800 | [diff] [blame] | 401 | qi_lb60 \ |
| 402 | " |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 403 | |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 404 | LIST_au1xx0_el=" \ |
| 405 | dbau1550_el \ |
Shinya Kuribayashi | b09258c | 2007-10-27 15:00:25 +0900 | [diff] [blame] | 406 | pb1000 \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 407 | " |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 408 | LIST_mips_el=" \ |
Daniel Schwierzeck | 92b0909 | 2011-11-24 03:57:56 +0000 | [diff] [blame] | 409 | ${LIST_xburst_el} \ |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 410 | ${LIST_au1xx0_el} \ |
| 411 | " |
Stefan Kristiansson | deddf5d | 2011-11-18 19:21:37 +0000 | [diff] [blame] | 412 | ######################################################################### |
| 413 | ## OpenRISC Systems |
| 414 | ######################################################################### |
| 415 | |
| 416 | LIST_openrisc="$(boards_by_arch openrisc)" |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 417 | |
| 418 | ######################################################################### |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 419 | ## x86 Systems |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 420 | ######################################################################### |
| 421 | |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 422 | LIST_x86="$(boards_by_arch x86)" |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 423 | |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 424 | ######################################################################### |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 425 | ## Nios-II Systems |
| 426 | ######################################################################### |
| 427 | |
Mike Frysinger | 4827d06 | 2011-06-26 23:00:19 -0400 | [diff] [blame] | 428 | LIST_nios2="$(boards_by_arch nios2)" |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 429 | |
| 430 | ######################################################################### |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 431 | ## MicroBlaze Systems |
| 432 | ######################################################################### |
| 433 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 434 | LIST_microblaze="$(boards_by_arch microblaze)" |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 435 | |
Zachary P. Landau | f8c3b4f | 2006-01-26 17:38:46 -0500 | [diff] [blame] | 436 | ######################################################################### |
| 437 | ## ColdFire Systems |
| 438 | ######################################################################### |
| 439 | |
Mike Frysinger | c13f47b | 2011-09-25 19:27:19 +0000 | [diff] [blame] | 440 | LIST_m68k="$(boards_by_arch m68k) |
Kim Phillips | fb56579 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 441 | EB+MCF-EV123 \ |
| 442 | EB+MCF-EV123_internal \ |
TsiChungLiew | 1552af7 | 2008-01-14 17:43:33 -0600 | [diff] [blame] | 443 | M52277EVB \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 444 | M5235EVB \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 445 | M54451EVB \ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 446 | M54455EVB \ |
Heiko Schocher | 9acb626 | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 447 | " |
Mike Frysinger | c13f47b | 2011-09-25 19:27:19 +0000 | [diff] [blame] | 448 | LIST_coldfire=${LIST_m68k} |
Zachary P. Landau | f8c3b4f | 2006-01-26 17:38:46 -0500 | [diff] [blame] | 449 | |
Wolfgang Denk | 6ccec44 | 2006-10-24 14:42:37 +0200 | [diff] [blame] | 450 | ######################################################################### |
| 451 | ## AVR32 Systems |
| 452 | ######################################################################### |
| 453 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 454 | LIST_avr32="$(boards_by_arch avr32)" |
Wolfgang Denk | 6ccec44 | 2006-10-24 14:42:37 +0200 | [diff] [blame] | 455 | |
Aubrey.Li | ef26a08 | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 456 | ######################################################################### |
| 457 | ## Blackfin Systems |
| 458 | ######################################################################### |
| 459 | |
Mike Frysinger | 36cf8cb | 2010-10-19 02:41:26 -0400 | [diff] [blame] | 460 | LIST_blackfin="$(boards_by_arch blackfin)" |
Aubrey.Li | ef26a08 | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 461 | |
Jean-Christophe PLAGNIOL-VILLARD | c714437 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 462 | ######################################################################### |
| 463 | ## SH Systems |
| 464 | ######################################################################### |
| 465 | |
Nobuhiro Iwamatsu | e0f0e52 | 2010-10-20 01:22:25 +0900 | [diff] [blame] | 466 | LIST_sh2="$(boards_by_cpu sh2)" |
Nobuhiro Iwamatsu | 3771c69 | 2010-10-20 01:28:29 +0900 | [diff] [blame] | 467 | LIST_sh3="$(boards_by_cpu sh3)" |
Nobuhiro Iwamatsu | 03626be | 2010-10-20 01:35:28 +0900 | [diff] [blame] | 468 | LIST_sh4="$(boards_by_cpu sh4)" |
Wolfgang Denk | d9a42c0 | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 469 | |
Nobuhiro Iwamatsu | 03626be | 2010-10-20 01:35:28 +0900 | [diff] [blame] | 470 | LIST_sh="$(boards_by_arch sh)" |
Jean-Christophe PLAGNIOL-VILLARD | c714437 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 471 | |
Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 472 | ######################################################################### |
| 473 | ## SPARC Systems |
| 474 | ######################################################################### |
| 475 | |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 476 | LIST_sparc="$(boards_by_arch sparc)" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 477 | |
Macpaul Lin | 5f1719c | 2011-10-19 20:41:10 +0000 | [diff] [blame] | 478 | ######################################################################### |
| 479 | ## NDS32 Systems |
| 480 | ######################################################################### |
| 481 | |
| 482 | LIST_nds32="$(boards_by_arch nds32)" |
| 483 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 484 | #----------------------------------------------------------------------- |
| 485 | |
| 486 | build_target() { |
| 487 | target=$1 |
| 488 | |
Marek Vasut | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 489 | if [ "$ONLY_LIST" == 'y' ] ; then |
| 490 | echo "$target" |
| 491 | return |
| 492 | fi |
| 493 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 494 | ${MAKE} distclean >/dev/null |
Kim Phillips | d70d8cc | 2010-09-14 14:48:16 -0500 | [diff] [blame] | 495 | ${MAKE} -s ${target}_config |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 496 | |
| 497 | ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \ |
| 498 | | tee ${LOG_DIR}/$target.ERR |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 499 | |
| 500 | # Check for 'make' errors |
| 501 | if [ ${PIPESTATUS[0]} -ne 0 ] ; then |
| 502 | RC=1 |
| 503 | fi |
| 504 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 505 | if [ -s ${LOG_DIR}/$target.ERR ] ; then |
| 506 | ERR_CNT=$((ERR_CNT + 1)) |
| 507 | ERR_LIST="${ERR_LIST} $target" |
| 508 | else |
| 509 | rm ${LOG_DIR}/$target.ERR |
| 510 | fi |
| 511 | |
| 512 | TOTAL_CNT=$((TOTAL_CNT + 1)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 513 | |
Mike Frysinger | 208447f | 2008-01-28 05:56:19 -0500 | [diff] [blame] | 514 | ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 515 | | tee -a ${LOG_DIR}/$target.MAKELOG |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 516 | } |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 517 | build_targets() { |
| 518 | for t in "$@" ; do |
| 519 | # If a LIST_xxx var exists, use it. But avoid variable |
| 520 | # expansion in the eval when a board name contains certain |
| 521 | # characters that the shell interprets. |
| 522 | case ${t} in |
| 523 | *[-+=]*) list= ;; |
| 524 | *) list=$(eval echo '${LIST_'$t'}') ;; |
| 525 | esac |
| 526 | if [ -n "${list}" ] ; then |
| 527 | build_targets ${list} |
| 528 | else |
| 529 | build_target ${t} |
| 530 | fi |
| 531 | done |
| 532 | } |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 533 | |
| 534 | #----------------------------------------------------------------------- |
| 535 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 536 | print_stats() { |
Marek Vasut | 7f79c6f | 2011-12-02 21:32:03 +0000 | [diff] [blame] | 537 | if [ "$ONLY_LIST" == 'y' ] ; then return ; fi |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 538 | echo "" |
| 539 | echo "--------------------- SUMMARY ----------------------------" |
| 540 | echo "Boards compiled: ${TOTAL_CNT}" |
| 541 | if [ ${ERR_CNT} -gt 0 ] ; then |
| 542 | echo "Boards with warnings or errors: ${ERR_CNT} (${ERR_LIST} )" |
| 543 | fi |
| 544 | echo "----------------------------------------------------------" |
Peter Tyser | f235287 | 2009-12-06 23:58:28 -0600 | [diff] [blame] | 545 | |
| 546 | exit $RC |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 547 | } |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 548 | |
Peter Tyser | 40a28f0 | 2009-09-21 12:04:32 -0500 | [diff] [blame] | 549 | #----------------------------------------------------------------------- |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 550 | |
Wolfgang Denk | 0777eaf | 2010-10-17 12:26:48 +0200 | [diff] [blame] | 551 | # Build target groups selected by options, plus any command line args |
| 552 | set -- ${SELECTED} "$@" |
| 553 | # run PowerPC by default |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 554 | [ $# = 0 ] && set -- powerpc |
Mike Frysinger | 9ec49f8 | 2010-08-19 13:05:06 -0400 | [diff] [blame] | 555 | build_targets "$@" |