wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 3 | : ${JOBS:=} |
| 4 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 5 | if [ "${CROSS_COMPILE}" ] ; then |
| 6 | MAKE="make CROSS_COMPILE=${CROSS_COMPILE}" |
| 7 | else |
| 8 | MAKE=make |
| 9 | fi |
| 10 | |
| 11 | [ -d LOG ] || mkdir LOG || exit 1 |
| 12 | |
| 13 | LIST="" |
| 14 | |
| 15 | ######################################################################### |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 16 | ## MPC5xx Systems |
| 17 | ######################################################################### |
| 18 | |
| 19 | LIST_5xx=" \ |
| 20 | cmi_mpc5xx \ |
| 21 | " |
| 22 | |
| 23 | ######################################################################### |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 24 | ## MPC5xxx Systems |
| 25 | ######################################################################### |
| 26 | |
| 27 | LIST_5xxx=" \ |
wdenk | e35745b | 2004-04-18 23:32:11 +0000 | [diff] [blame] | 28 | icecube_5100 icecube_5200 EVAL5200 PM520 \ |
wdenk | 8f0b7cb | 2005-03-27 23:41:39 +0000 | [diff] [blame] | 29 | Total5100 Total5200 Total5200_Rev2 TQM5200_auto \ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 30 | " |
| 31 | |
| 32 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 33 | ## MPC8xx Systems |
| 34 | ######################################################################### |
| 35 | |
| 36 | LIST_8xx=" \ |
wdenk | da93ed8 | 2004-09-29 11:02:56 +0000 | [diff] [blame] | 37 | Adder87x GENIETV MBX860T R360MPI \ |
| 38 | AdderII GTH MHPC RBC823 \ |
| 39 | ADS860 hermes MPC86xADS rmu \ |
| 40 | AMX860 IAD210 MPC885ADS RPXClassic \ |
| 41 | c2mon ICU862_100MHz MVS1 RPXlite \ |
| 42 | CCM IP860 NETPHONE RPXlite_DW \ |
| 43 | cogent_mpc8xx IVML24 NETTA RRvision \ |
| 44 | ELPT860 IVML24_128 NETTA2 SM850 \ |
| 45 | ESTEEM192E IVML24_256 NETTA_ISDN SPD823TS \ |
| 46 | ETX094 IVMS8 NETVIA svm_sc8xx \ |
| 47 | FADS823 IVMS8_128 NETVIA_V2 SXNI855T \ |
| 48 | FADS850SAR IVMS8_256 NX823 TOP860 \ |
| 49 | FADS860T KUP4K pcu_e TQM823L \ |
| 50 | FLAGADM KUP4X QS823 TQM823L_LCD \ |
| 51 | FPS850L LANTEC QS850 TQM850L \ |
| 52 | GEN860T lwmon QS860T TQM855L \ |
| 53 | GEN860T_SC MBX quantum TQM860L \ |
wdenk | ec0aee7 | 2004-12-19 09:58:11 +0000 | [diff] [blame] | 54 | uc100 \ |
| 55 | v37 \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 56 | " |
| 57 | |
| 58 | ######################################################################### |
| 59 | ## PPC4xx Systems |
| 60 | ######################################################################### |
| 61 | |
| 62 | LIST_4xx=" \ |
Wolfgang Denk | 3d078ce | 2005-08-15 16:03:56 +0200 | [diff] [blame] | 63 | ADCIOP AR405 ASH405 bubinga \ |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 64 | CANBT CPCI405 CPCI4052 CPCI405AB \ |
| 65 | CPCI440 CPCIISER4 CRAYL1 csb272 \ |
wdenk | aa24509 | 2004-06-09 12:47:02 +0000 | [diff] [blame] | 66 | csb472 DASA_SIM DP405 DU405 \ |
Stefan Roese | 8a316c9 | 2005-08-01 16:49:12 +0200 | [diff] [blame] | 67 | ebony ERIC EXBITGEN HUB405 \ |
Wolfgang Denk | 3d078ce | 2005-08-15 16:03:56 +0200 | [diff] [blame] | 68 | JSE KAREF METROBOX MIP405 \ |
| 69 | MIP405T ML2 ml300 ocotea \ |
| 70 | OCRTC ORSG PCI405 PIP405 \ |
| 71 | PLU405 PMC405 PPChameleonEVB VOH405 \ |
| 72 | W7OLMC W7OLMG walnut WUH405 \ |
| 73 | XPEDITE1K yellowstone yosemite \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 74 | " |
| 75 | |
| 76 | ######################################################################### |
wdenk | 983fda8 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 77 | ## MPC8220 Systems |
| 78 | ######################################################################### |
| 79 | |
| 80 | LIST_8220=" \ |
| 81 | Alaska8220 Yukon8220 \ |
| 82 | " |
| 83 | |
| 84 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 85 | ## MPC824x Systems |
| 86 | ######################################################################### |
| 87 | |
| 88 | LIST_824x=" \ |
wdenk | cd0a9de | 2004-02-23 20:48:38 +0000 | [diff] [blame] | 89 | A3000 BMW CPC45 CU824 \ |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 90 | debris eXalion HIDDEN_DRAGON MOUSSE \ |
| 91 | MUSENKI MVBLUE OXC PN62 \ |
| 92 | Sandpoint8240 Sandpoint8245 SL8245 utx8245 \ |
Wolfgang Denk | 3d078ce | 2005-08-15 16:03:56 +0200 | [diff] [blame] | 93 | sbc8240 \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 94 | " |
wdenk | 592c5ca | 2003-06-21 00:17:24 +0000 | [diff] [blame] | 95 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 96 | ######################################################################### |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 97 | ## MPC8260 Systems (includes 8250, 8255 etc.) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 98 | ######################################################################### |
| 99 | |
| 100 | LIST_8260=" \ |
wdenk | 384cc68 | 2005-04-03 22:35:21 +0000 | [diff] [blame] | 101 | atc cogent_mpc8260 CPU86 CPU87 \ |
Wolfgang Denk | f901a83 | 2005-08-06 01:42:58 +0200 | [diff] [blame] | 102 | ep8248 ep8260 gw8260 hymod \ |
| 103 | IPHASE4539 ISPAN MPC8260ADS MPC8266ADS \ |
| 104 | MPC8272ADS PM826 PM828 ppmc8260 \ |
| 105 | Rattler8248 RPXsuper rsdproto sacsng \ |
| 106 | sbc8260 SCM TQM8260_AC TQM8260_AD \ |
| 107 | TQM8260_AE ZPC1900 \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 108 | " |
| 109 | |
| 110 | ######################################################################### |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 111 | ## MPC83xx Systems (includes 8349, etc.) |
| 112 | ######################################################################### |
| 113 | |
| 114 | LIST_83xx=" \ |
| 115 | MPC8349ADS \ |
| 116 | " |
| 117 | |
| 118 | |
| 119 | ######################################################################### |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 120 | ## MPC85xx Systems (includes 8540, 8560 etc.) |
| 121 | ######################################################################### |
| 122 | |
| 123 | LIST_85xx=" \ |
Lunsheng Wang | b0e3294 | 2005-07-29 10:20:29 -0500 | [diff] [blame] | 124 | MPC8540ADS MPC8540EVAL MPC8541CDS MPC8548CDS \ |
Wolfgang Denk | b4f15fd | 2005-08-05 20:03:38 +0200 | [diff] [blame] | 125 | MPC8555CDS MPC8560ADS PM854 PM856 \ |
| 126 | sbc8540 sbc8560 stxgp3 TQM8540 \ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 127 | " |
| 128 | |
| 129 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 130 | ## 74xx/7xx Systems |
| 131 | ######################################################################### |
| 132 | |
| 133 | LIST_74xx=" \ |
wdenk | 3a473b2 | 2004-01-03 00:43:19 +0000 | [diff] [blame] | 134 | DB64360 DB64460 EVB64260 P3G4 \ |
| 135 | PCIPPC2 PCIPPC6 ZUMA \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 136 | " |
| 137 | |
| 138 | LIST_7xx=" \ |
stroese | c419d1d | 2004-12-16 18:44:40 +0000 | [diff] [blame] | 139 | BAB7xx CPCI750 ELPPC \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 140 | " |
| 141 | |
wdenk | 342717f | 2005-06-27 13:30:03 +0000 | [diff] [blame] | 142 | LIST_ppc="${LIST_5xx} ${LIST_5xxx} \ |
| 143 | ${LIST_8xx} \ |
| 144 | ${LIST_8220} ${LIST_824x} ${LIST_8260} \ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 145 | ${LIST_83xx} \ |
wdenk | 342717f | 2005-06-27 13:30:03 +0000 | [diff] [blame] | 146 | ${LIST_85xx} \ |
| 147 | ${LIST_4xx} \ |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 148 | ${LIST_74xx} ${LIST_7xx}" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 149 | |
| 150 | ######################################################################### |
| 151 | ## StrongARM Systems |
| 152 | ######################################################################### |
| 153 | |
wdenk | ea66bc8 | 2004-04-15 23:23:39 +0000 | [diff] [blame] | 154 | LIST_SA="assabet dnp1110 gcplus lart shannon" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 155 | |
| 156 | ######################################################################### |
| 157 | ## ARM7 Systems |
| 158 | ######################################################################### |
| 159 | |
wdenk | 3953988 | 2004-07-01 16:30:44 +0000 | [diff] [blame] | 160 | LIST_ARM7="B2 ep7312 evb4510 impa7 modnet50" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 161 | |
| 162 | ######################################################################### |
| 163 | ## ARM9 Systems |
| 164 | ######################################################################### |
| 165 | |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 166 | LIST_ARM9=" \ |
Wolfgang Denk | 3d078ce | 2005-08-15 16:03:56 +0200 | [diff] [blame] | 167 | at91rm9200dk cmc_pu2 integratorcp integratorap \ |
wdenk | cf33678 | 2004-10-10 20:23:57 +0000 | [diff] [blame] | 168 | lpd7a400 mx1ads mx1fs2 omap1510inn \ |
| 169 | omap1610h2 omap1610inn omap730p2 scb9328 \ |
| 170 | smdk2400 smdk2410 trab VCMA9 \ |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 171 | versatile voiceblue \ |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 172 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 173 | |
| 174 | ######################################################################### |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 175 | ## ARM11 Systems |
| 176 | ######################################################################### |
| 177 | LIST_ARM11="omap2420h4" |
| 178 | |
| 179 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 180 | ## Xscale Systems |
| 181 | ######################################################################### |
| 182 | |
wdenk | 4ec3a7f | 2004-09-28 16:44:41 +0000 | [diff] [blame] | 183 | LIST_pxa=" \ |
wdenk | 20787e2 | 2005-04-06 00:04:16 +0000 | [diff] [blame] | 184 | adsvix cerf250 cradle csb226 \ |
| 185 | innokom lubbock wepep250 xaeniax \ |
| 186 | xm250 xsengine \ |
wdenk | 4ec3a7f | 2004-09-28 16:44:41 +0000 | [diff] [blame] | 187 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 188 | |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 189 | LIST_ixp="ixdp425" |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 190 | |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 191 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 192 | LIST_arm=" \ |
| 193 | ${LIST_SA} \ |
| 194 | ${LIST_ARM7} ${LIST_ARM9} ${LIST_ARM11} \ |
| 195 | ${LIST_pxa} ${LIST_ixp} \ |
| 196 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 197 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 198 | ######################################################################### |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 199 | ## MIPS Systems (default = big endian) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 200 | ######################################################################### |
| 201 | |
| 202 | LIST_mips4kc="incaip" |
| 203 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 204 | LIST_mips5kc="purple" |
| 205 | |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 206 | LIST_au1xx0="dbau1000 dbau1100 dbau1500 dbau1550 dbau1550_el" |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 207 | |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 208 | LIST_mips="${LIST_mips4kc} ${LIST_mips5kc} ${LIST_au1xx0}" |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 209 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 210 | ######################################################################### |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 211 | ## MIPS Systems (little endian) |
| 212 | ######################################################################### |
| 213 | |
| 214 | LIST_mips4kc_el="" |
| 215 | |
| 216 | LIST_mips5kc_el="" |
| 217 | |
| 218 | LIST_au1xx0_el="dbau1550_el" |
| 219 | |
| 220 | LIST_mips_el="${LIST_mips4kc_el} ${LIST_mips5kc_el} ${LIST_au1xx0_el}" |
| 221 | |
| 222 | ######################################################################### |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 223 | ## i386 Systems |
| 224 | ######################################################################### |
| 225 | |
| 226 | LIST_I486="sc520_cdp sc520_spunk sc520_spunk_rel" |
| 227 | |
| 228 | LIST_x86="${LIST_I486}" |
| 229 | |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 230 | ######################################################################### |
| 231 | ## NIOS Systems |
| 232 | ######################################################################### |
| 233 | |
| 234 | LIST_nios=" \ |
wdenk | aaf224a | 2004-03-14 15:20:55 +0000 | [diff] [blame] | 235 | ADNPESC1 ADNPESC1_base_32 \ |
| 236 | ADNPESC1_DNPEVA2_base_32 \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 237 | DK1C20 DK1C20_standard_32 \ |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 238 | DK1S10 DK1S10_standard_32 DK1S10_mtx_ldk_20 \ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 239 | " |
| 240 | |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 241 | ######################################################################### |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 242 | ## Nios-II Systems |
| 243 | ######################################################################### |
| 244 | |
| 245 | LIST_nios2="PCI5441 PK1C20" |
| 246 | |
| 247 | ######################################################################### |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 248 | ## MicroBlaze Systems |
| 249 | ######################################################################### |
| 250 | |
| 251 | LIST_microblaze="suzaku" |
| 252 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 253 | #----------------------------------------------------------------------- |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 254 | |
| 255 | #----- for now, just run PPC by default ----- |
| 256 | [ $# = 0 ] && set $LIST_ppc |
| 257 | |
| 258 | #----------------------------------------------------------------------- |
| 259 | |
| 260 | build_target() { |
| 261 | target=$1 |
| 262 | |
| 263 | ${MAKE} distclean >/dev/null |
| 264 | ${MAKE} ${target}_config |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 265 | ${MAKE} ${JOBS} all 2>&1 >LOG/$target.MAKELOG | tee LOG/$target.ERR |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 266 | ${CROSS_COMPILE:-ppc_8xx-}size u-boot | tee -a LOG/$target.MAKELOG |
| 267 | } |
| 268 | |
| 269 | #----------------------------------------------------------------------- |
| 270 | |
| 271 | |
| 272 | for arg in $@ |
| 273 | do |
| 274 | case "$arg" in |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 275 | ppc|5xx|5xxx|8xx|8220|824x|8260|83xx|85xx|4xx|7xx|74xx| \ |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 276 | arm|SA|ARM7|ARM9|ARM11|pxa|ixp| \ |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 277 | microblaze| \ |
Wolfgang Denk | b62bdff | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 278 | mips|mips_el| \ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 279 | nios|nios2| \ |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 280 | x86|I486) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 281 | for target in `eval echo '$LIST_'${arg}` |
| 282 | do |
| 283 | build_target ${target} |
| 284 | done |
| 285 | ;; |
| 286 | *) build_target ${arg} |
| 287 | ;; |
| 288 | esac |
| 289 | done |