wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
Wolfgang Denk | de5d660 | 2008-12-09 00:39:08 +0100 | [diff] [blame] | 3 | # Determine number of CPU cores if no default was set |
4 | : ${BUILD_NCPUS:="`getconf _NPROCESSORS_ONLN`"} | ||||
5 | |||||
6 | if [ "$BUILD_NCPUS" -gt 1 ] | ||||
7 | then | ||||
8 | JOBS=-j`expr "$BUILD_NCPUS" + 1` | ||||
9 | else | ||||
10 | JOBS="" | ||||
11 | fi | ||||
12 | |||||
wdenk | c0aa5c5 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 13 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 14 | if [ "${CROSS_COMPILE}" ] ; then |
15 | MAKE="make CROSS_COMPILE=${CROSS_COMPILE}" | ||||
16 | else | ||||
17 | MAKE=make | ||||
18 | fi | ||||
19 | |||||
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 20 | if [ "${MAKEALL_LOGDIR}" ] ; then |
21 | LOG_DIR=${MAKEALL_LOGDIR} | ||||
22 | else | ||||
23 | LOG_DIR="LOG" | ||||
24 | fi | ||||
Stefan Roese | 42fbddd | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 25 | |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 26 | if [ ! "${BUILD_DIR}" ] ; then |
27 | BUILD_DIR="." | ||||
28 | fi | ||||
29 | |||||
Marian Balakowicz | 7f783cb | 2006-09-07 12:05:53 +0200 | [diff] [blame] | 30 | [ -d ${LOG_DIR} ] || mkdir ${LOG_DIR} || exit 1 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 31 | |
32 | LIST="" | ||||
33 | |||||
34 | ######################################################################### | ||||
wdenk | 359733b | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 35 | ## MPC5xx Systems |
36 | ######################################################################### | ||||
37 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 38 | LIST_5xx=" \ |
39 | cmi_mpc5xx \ | ||||
wdenk | 359733b | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 40 | " |
41 | |||||
42 | ######################################################################### | ||||
wdenk | 21136db | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 43 | ## MPC5xxx Systems |
44 | ######################################################################### | ||||
45 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 46 | LIST_5xxx=" \ |
47 | BC3450 \ | ||||
48 | cm5200 \ | ||||
49 | cpci5200 \ | ||||
Grzegorz Bernacki | afc9d6d | 2009-03-17 10:06:40 +0100 | [diff] [blame] | 50 | digsy_mtc \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 51 | EVAL5200 \ |
52 | fo300 \ | ||||
53 | icecube_5100 \ | ||||
54 | icecube_5200 \ | ||||
Wolfgang Denk | e103e9f | 2008-05-05 12:52:36 +0200 | [diff] [blame] | 55 | inka4x0 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 56 | lite5200b \ |
57 | mcc200 \ | ||||
58 | mecp5200 \ | ||||
59 | motionpro \ | ||||
Heiko Schocher | 23cd0b1 | 2008-01-11 15:15:14 +0100 | [diff] [blame] | 60 | munices \ |
Andre Schwarz | 2a29329 | 2008-07-09 18:30:44 +0200 | [diff] [blame] | 61 | MVBC_P \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 62 | o2dnt \ |
Jon Smirl | bc03df9 | 2009-06-14 18:21:28 -0400 | [diff] [blame] | 63 | pcm030 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 64 | pf5200 \ |
65 | PM520 \ | ||||
66 | TB5200 \ | ||||
67 | Total5100 \ | ||||
68 | Total5200 \ | ||||
69 | Total5200_Rev2 \ | ||||
70 | TQM5200 \ | ||||
71 | TQM5200_B \ | ||||
72 | TQM5200S \ | ||||
73 | v38b \ | ||||
wdenk | 21136db | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 74 | " |
75 | |||||
76 | ######################################################################### | ||||
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 77 | ## MPC512x Systems |
78 | ######################################################################### | ||||
79 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 80 | LIST_512x=" \ |
Wolfgang Denk | 190ab73 | 2009-05-16 10:47:46 +0200 | [diff] [blame] | 81 | aria \ |
Stefan Roese | abbd0da | 2009-06-09 11:50:40 +0200 | [diff] [blame] | 82 | mecp5123 \ |
Wolfgang Denk | bbcbb32 | 2009-05-16 10:47:41 +0200 | [diff] [blame] | 83 | mpc5121ads \ |
Rafal Jaworowski | d3a02c3 | 2007-07-27 14:43:59 +0200 | [diff] [blame] | 84 | " |
85 | |||||
86 | ######################################################################### | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 87 | ## MPC8xx Systems |
88 | ######################################################################### | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 89 | LIST_8xx=" \ |
90 | Adder87x \ | ||||
91 | AdderII \ | ||||
92 | ADS860 \ | ||||
93 | AMX860 \ | ||||
94 | c2mon \ | ||||
95 | CCM \ | ||||
96 | cogent_mpc8xx \ | ||||
97 | ELPT860 \ | ||||
98 | EP88x \ | ||||
99 | ESTEEM192E \ | ||||
100 | ETX094 \ | ||||
101 | FADS823 \ | ||||
102 | FADS850SAR \ | ||||
103 | FADS860T \ | ||||
104 | FLAGADM \ | ||||
105 | FPS850L \ | ||||
106 | GEN860T \ | ||||
107 | GEN860T_SC \ | ||||
108 | GENIETV \ | ||||
109 | GTH \ | ||||
110 | hermes \ | ||||
111 | IAD210 \ | ||||
112 | ICU862_100MHz \ | ||||
113 | IP860 \ | ||||
114 | IVML24 \ | ||||
115 | IVML24_128 \ | ||||
116 | IVML24_256 \ | ||||
117 | IVMS8 \ | ||||
118 | IVMS8_128 \ | ||||
119 | IVMS8_256 \ | ||||
120 | KUP4K \ | ||||
121 | KUP4X \ | ||||
122 | LANTEC \ | ||||
123 | lwmon \ | ||||
Heiko Schocher | 643e7c0 | 2009-03-12 07:37:34 +0100 | [diff] [blame] | 124 | kmsupx4 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 125 | MBX \ |
126 | MBX860T \ | ||||
Heiko Schocher | 30c0feb | 2008-01-11 01:12:06 +0100 | [diff] [blame] | 127 | mgsuvd \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 128 | MHPC \ |
129 | MPC86xADS \ | ||||
130 | MPC885ADS \ | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 131 | NETPHONE \ |
132 | NETTA \ | ||||
133 | NETTA2 \ | ||||
134 | NETTA_ISDN \ | ||||
135 | NETVIA \ | ||||
136 | NETVIA_V2 \ | ||||
137 | NX823 \ | ||||
138 | pcu_e \ | ||||
139 | QS823 \ | ||||
140 | QS850 \ | ||||
141 | QS860T \ | ||||
142 | quantum \ | ||||
143 | R360MPI \ | ||||
144 | RBC823 \ | ||||
145 | rmu \ | ||||
146 | RPXClassic \ | ||||
147 | RPXlite \ | ||||
148 | RPXlite_DW \ | ||||
149 | RRvision \ | ||||
150 | SM850 \ | ||||
151 | spc1920 \ | ||||
152 | SPD823TS \ | ||||
153 | svm_sc8xx \ | ||||
154 | SXNI855T \ | ||||
Guennadi Liakhovetski | 7a90bb9 | 2008-01-10 17:59:07 +0100 | [diff] [blame] | 155 | TK885D \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 156 | TOP860 \ |
157 | TQM823L \ | ||||
158 | TQM823L_LCD \ | ||||
159 | TQM850L \ | ||||
160 | TQM855L \ | ||||
161 | TQM860L \ | ||||
162 | TQM885D \ | ||||
163 | uc100 \ | ||||
164 | v37 \ | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 165 | " |
166 | |||||
167 | ######################################################################### | ||||
168 | ## PPC4xx Systems | ||||
169 | ######################################################################### | ||||
170 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 171 | LIST_4xx=" \ |
172 | acadia \ | ||||
173 | acadia_nand \ | ||||
174 | ADCIOP \ | ||||
175 | alpr \ | ||||
176 | AP1000 \ | ||||
177 | AR405 \ | ||||
Adam Graham | 4900ed2 | 2008-10-08 10:12:53 -0700 | [diff] [blame] | 178 | arches \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 179 | ASH405 \ |
180 | bamboo \ | ||||
181 | bamboo_nand \ | ||||
182 | bubinga \ | ||||
183 | CANBT \ | ||||
Stefan Roese | 075f7a2 | 2008-03-11 16:53:00 +0100 | [diff] [blame] | 184 | canyonlands \ |
Stefan Roese | 0b86db7 | 2008-03-03 17:27:02 +0100 | [diff] [blame] | 185 | canyonlands_nand \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 186 | CMS700 \ |
187 | CPCI2DP \ | ||||
188 | CPCI405 \ | ||||
189 | CPCI4052 \ | ||||
190 | CPCI405AB \ | ||||
191 | CPCI405DT \ | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 192 | CPCIISER4 \ |
193 | CRAYL1 \ | ||||
194 | csb272 \ | ||||
195 | csb472 \ | ||||
196 | DASA_SIM \ | ||||
Dirk Eibach | 9658024 | 2009-07-17 14:16:40 +0200 | [diff] [blame^] | 197 | dlvision \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 198 | DP405 \ |
199 | DU405 \ | ||||
Matthias Fuchs | 69df55b | 2008-01-17 10:53:08 +0100 | [diff] [blame] | 200 | DU440 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 201 | ebony \ |
202 | ERIC \ | ||||
203 | EXBITGEN \ | ||||
Georg Schardt | 3ce59a1 | 2008-10-24 13:51:52 +0200 | [diff] [blame] | 204 | fx12mm \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 205 | G2000 \ |
Dirk Eibach | 43fed3c | 2008-12-09 13:12:40 +0100 | [diff] [blame] | 206 | gdppc440etx \ |
Stefan Roese | 52df419 | 2008-03-19 16:20:49 +0100 | [diff] [blame] | 207 | glacier \ |
Stefan Roese | 1566805 | 2007-10-23 10:10:08 +0200 | [diff] [blame] | 208 | haleakala \ |
Stefan Roese | 720c585 | 2007-11-03 12:08:28 +0100 | [diff] [blame] | 209 | haleakala_nand \ |
Stefan Roese | 75a3d5d | 2007-08-14 16:36:29 +0200 | [diff] [blame] | 210 | hcu4 \ |
211 | hcu5 \ | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 212 | HH405 \ |
213 | HUB405 \ | ||||
214 | JSE \ | ||||
215 | KAREF \ | ||||
216 | katmai \ | ||||
Stefan Roese | 7de9fc7 | 2007-10-05 17:11:30 +0200 | [diff] [blame] | 217 | kilauea \ |
Stefan Roese | 720c585 | 2007-11-03 12:08:28 +0100 | [diff] [blame] | 218 | kilauea_nand \ |
Larry Johnson | 667a3d4 | 2007-12-27 11:28:51 -0500 | [diff] [blame] | 219 | korat \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 220 | luan \ |
221 | lwmon5 \ | ||||
Stefan Roese | e3c7358 | 2007-10-22 07:34:34 +0200 | [diff] [blame] | 222 | makalu \ |
Niklaus Giger | 3fdbc1c | 2008-02-25 18:46:41 +0100 | [diff] [blame] | 223 | mcu25 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 224 | METROBOX \ |
225 | MIP405 \ | ||||
226 | MIP405T \ | ||||
227 | ML2 \ | ||||
228 | ml300 \ | ||||
Ricardo Ribalda Delgado | a8822a7 | 2008-07-17 12:47:09 +0200 | [diff] [blame] | 229 | ml507 \ |
Ricardo Ribalda Delgado | 2a019eb | 2008-07-21 20:30:07 +0200 | [diff] [blame] | 230 | ml507_flash \ |
Dirk Eibach | 3397ec6 | 2008-10-08 15:37:50 +0200 | [diff] [blame] | 231 | neo \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 232 | ocotea \ |
233 | OCRTC \ | ||||
234 | ORSG \ | ||||
235 | p3p440 \ | ||||
236 | PCI405 \ | ||||
237 | pcs440ep \ | ||||
238 | PIP405 \ | ||||
239 | PLU405 \ | ||||
240 | PMC405 \ | ||||
Matthias Fuchs | e139c0a | 2007-12-28 17:07:24 +0100 | [diff] [blame] | 241 | PMC440 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 242 | PPChameleonEVB \ |
Gary Jennejohn | 0ec4f30 | 2008-04-28 14:04:32 +0200 | [diff] [blame] | 243 | quad100hd \ |
Stefan Roese | 8ad6cda | 2007-08-16 09:54:51 +0200 | [diff] [blame] | 244 | rainier \ |
Feng Kan | bc42971 | 2008-07-08 22:48:42 -0700 | [diff] [blame] | 245 | redwood \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 246 | sbc405 \ |
247 | sc3 \ | ||||
248 | sequoia \ | ||||
249 | sequoia_nand \ | ||||
Stefan Roese | 75a3d5d | 2007-08-14 16:36:29 +0200 | [diff] [blame] | 250 | taihu \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 251 | taishan \ |
Ricardo Ribalda Delgado | f84496a | 2008-09-01 13:09:39 -0400 | [diff] [blame] | 252 | v5fx30teval \ |
253 | v5fx30teval_flash \ | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 254 | VOH405 \ |
255 | VOM405 \ | ||||
256 | W7OLMC \ | ||||
257 | W7OLMG \ | ||||
258 | walnut \ | ||||
259 | WUH405 \ | ||||
Ricardo Ribalda Delgado | f84496a | 2008-09-01 13:09:39 -0400 | [diff] [blame] | 260 | xilinx-ppc440-generic \ |
261 | xilinx-ppc440-generic_flash \ | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 262 | XPEDITE1K \ |
263 | yellowstone \ | ||||
264 | yosemite \ | ||||
265 | yucca \ | ||||
Stefan Roese | 75a3d5d | 2007-08-14 16:36:29 +0200 | [diff] [blame] | 266 | zeus \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 267 | " |
268 | |||||
269 | ######################################################################### | ||||
wdenk | 337f565 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 270 | ## MPC8220 Systems |
271 | ######################################################################### | ||||
272 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 273 | LIST_8220=" \ |
274 | Alaska8220 \ | ||||
275 | Yukon8220 \ | ||||
wdenk | 337f565 | 2004-10-28 00:09:35 +0000 | [diff] [blame] | 276 | " |
277 | |||||
278 | ######################################################################### | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 279 | ## MPC824x Systems |
280 | ######################################################################### | ||||
281 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 282 | LIST_824x=" \ |
283 | A3000 \ | ||||
284 | barco \ | ||||
285 | BMW \ | ||||
286 | CPC45 \ | ||||
287 | CU824 \ | ||||
288 | debris \ | ||||
289 | eXalion \ | ||||
290 | HIDDEN_DRAGON \ | ||||
Heiko Schocher | 04de951 | 2009-04-28 07:48:39 +0200 | [diff] [blame] | 291 | IDS8247 \ |
Guennadi Liakhovetski | 40c26b2 | 2008-03-31 01:32:15 +0200 | [diff] [blame] | 292 | linkstation_HGLAN \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 293 | MOUSSE \ |
294 | MUSENKI \ | ||||
295 | MVBLUE \ | ||||
296 | OXC \ | ||||
297 | PN62 \ | ||||
298 | Sandpoint8240 \ | ||||
299 | Sandpoint8245 \ | ||||
300 | sbc8240 \ | ||||
301 | SL8245 \ | ||||
302 | utx8245 \ | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 303 | " |
wdenk | dbae504 | 2003-06-21 00:17:24 +0000 | [diff] [blame] | 304 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 305 | ######################################################################### |
wdenk | 541a76d | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 306 | ## MPC8260 Systems (includes 8250, 8255 etc.) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 307 | ######################################################################### |
308 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 309 | LIST_8260=" \ |
310 | atc \ | ||||
311 | cogent_mpc8260 \ | ||||
312 | CPU86 \ | ||||
313 | CPU87 \ | ||||
314 | ep8248 \ | ||||
315 | ep8260 \ | ||||
316 | ep82xxm \ | ||||
317 | gw8260 \ | ||||
318 | hymod \ | ||||
319 | IPHASE4539 \ | ||||
320 | ISPAN \ | ||||
Heiko Schocher | 30de2ed | 2008-01-11 01:12:08 +0100 | [diff] [blame] | 321 | mgcoge \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 322 | MPC8260ADS \ |
323 | MPC8266ADS \ | ||||
324 | MPC8272ADS \ | ||||
325 | PM826 \ | ||||
326 | PM828 \ | ||||
327 | ppmc8260 \ | ||||
328 | Rattler8248 \ | ||||
329 | RPXsuper \ | ||||
330 | rsdproto \ | ||||
331 | sacsng \ | ||||
332 | sbc8260 \ | ||||
333 | SCM \ | ||||
334 | TQM8260_AC \ | ||||
335 | TQM8260_AD \ | ||||
336 | TQM8260_AE \ | ||||
Wolfgang Denk | c6868e7 | 2008-05-15 00:42:45 +0200 | [diff] [blame] | 337 | TQM8272 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 338 | ZPC1900 \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 339 | " |
340 | |||||
341 | ######################################################################### | ||||
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 342 | ## MPC83xx Systems (includes 8349, etc.) |
343 | ######################################################################### | ||||
344 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 345 | LIST_83xx=" \ |
Heiko Schocher | 3f8dcb5 | 2008-11-20 09:57:47 +0100 | [diff] [blame] | 346 | kmeter1 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 347 | MPC8313ERDB_33 \ |
Nick Spence | 120097e | 2008-09-02 15:21:16 -0500 | [diff] [blame] | 348 | MPC8313ERDB_NAND_66 \ |
Dave Liu | 19b247e | 2008-01-11 18:48:24 +0800 | [diff] [blame] | 349 | MPC8315ERDB \ |
Kim Phillips | b19af45 | 2007-08-15 22:30:05 -0500 | [diff] [blame] | 350 | MPC8323ERDB \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 351 | MPC832XEMDS \ |
Tony Li | c5c40d8 | 2007-10-18 17:47:19 +0800 | [diff] [blame] | 352 | MPC832XEMDS_ATM \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 353 | MPC8349EMDS \ |
354 | MPC8349ITX \ | ||||
355 | MPC8349ITXGP \ | ||||
356 | MPC8360EMDS \ | ||||
Tony Li | c5c40d8 | 2007-10-18 17:47:19 +0800 | [diff] [blame] | 357 | MPC8360EMDS_ATM \ |
Anton Vorontsov | b6678de | 2008-01-09 20:57:47 +0300 | [diff] [blame] | 358 | MPC8360ERDK_33 \ |
359 | MPC8360ERDK_66 \ | ||||
Dave Liu | dc9e4bb | 2007-09-18 12:40:21 +0800 | [diff] [blame] | 360 | MPC837XEMDS \ |
Kim Phillips | 1cb07e6 | 2008-01-16 00:38:05 -0600 | [diff] [blame] | 361 | MPC837XERDB \ |
Andre Schwarz | b2de424 | 2008-06-10 09:14:05 +0200 | [diff] [blame] | 362 | MVBLM7 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 363 | sbc8349 \ |
Ron Madrid | 9ff89b7 | 2009-01-22 15:05:24 -0800 | [diff] [blame] | 364 | SIMPC8313_LP \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 365 | TQM834x \ |
Eran Liberty | 9095d4a | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 366 | " |
367 | |||||
368 | |||||
369 | ######################################################################### | ||||
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 370 | ## MPC85xx Systems (includes 8540, 8560 etc.) |
371 | ######################################################################### | ||||
372 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 373 | LIST_85xx=" \ |
robert lazarski | a36f555 | 2007-12-21 10:36:37 -0500 | [diff] [blame] | 374 | ATUM8548 \ |
Kumar Gala | fd83aa8 | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 375 | MPC8536DS \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 376 | MPC8540ADS \ |
377 | MPC8540EVAL \ | ||||
378 | MPC8541CDS \ | ||||
379 | MPC8544DS \ | ||||
380 | MPC8548CDS \ | ||||
381 | MPC8555CDS \ | ||||
382 | MPC8560ADS \ | ||||
383 | MPC8568MDS \ | ||||
Haiying Wang | bd25537 | 2009-03-27 17:02:45 -0400 | [diff] [blame] | 384 | MPC8569MDS \ |
Kumar Gala | 3ab0b2d | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 385 | MPC8572DS \ |
Kumar Gala | e0f9741 | 2009-01-23 14:22:14 -0600 | [diff] [blame] | 386 | MPC8572DS_36BIT \ |
Srikanth Srinivasan | 949a2d5 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 387 | P2020DS \ |
388 | P2020DS_36BIT \ | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 389 | PM854 \ |
390 | PM856 \ | ||||
391 | sbc8540 \ | ||||
Joe Hamman | ccefae4 | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 392 | sbc8548 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 393 | sbc8560 \ |
Sergei Poselenov | f2bf96c | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 394 | socrates \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 395 | stxgp3 \ |
396 | stxssa \ | ||||
397 | TQM8540 \ | ||||
398 | TQM8541 \ | ||||
Wolfgang Grandegger | 328c6ec | 2008-06-05 13:12:07 +0200 | [diff] [blame] | 399 | TQM8548 \ |
Wolfgang Grandegger | 7ebcfec | 2009-02-11 18:38:22 +0100 | [diff] [blame] | 400 | TQM8548_AG \ |
Wolfgang Grandegger | e85bbc6 | 2009-02-11 18:38:21 +0100 | [diff] [blame] | 401 | TQM8548_BE \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 402 | TQM8555 \ |
403 | TQM8560 \ | ||||
Peter Tyser | 59b5fdf | 2008-12-01 13:47:13 -0600 | [diff] [blame] | 404 | XPEDITE5200 \ |
Peter Tyser | 1c2b329 | 2008-12-17 16:36:23 -0600 | [diff] [blame] | 405 | XPEDITE5370 \ |
wdenk | 9c53f40 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 406 | " |
407 | |||||
408 | ######################################################################### | ||||
Jon Loeliger | 5fe3449 | 2007-05-23 14:09:46 -0500 | [diff] [blame] | 409 | ## MPC86xx Systems |
410 | ######################################################################### | ||||
411 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 412 | LIST_86xx=" \ |
Jon Loeliger | edf4bc6 | 2007-10-16 15:27:43 -0500 | [diff] [blame] | 413 | MPC8610HPCD \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 414 | MPC8641HPCN \ |
Wolfgang Denk | 8dc9a1e | 2007-09-07 17:43:36 +0200 | [diff] [blame] | 415 | sbc8641d \ |
Peter Tyser | edb9d59 | 2009-06-30 17:26:01 -0500 | [diff] [blame] | 416 | XPEDITE5170 \ |
Jon Loeliger | 5fe3449 | 2007-05-23 14:09:46 -0500 | [diff] [blame] | 417 | " |
418 | |||||
419 | ######################################################################### | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 420 | ## 74xx/7xx Systems |
421 | ######################################################################### | ||||
422 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 423 | LIST_74xx=" \ |
424 | DB64360 \ | ||||
425 | DB64460 \ | ||||
426 | EVB64260 \ | ||||
427 | mpc7448hpc2 \ | ||||
428 | P3G4 \ | ||||
429 | p3m7448 \ | ||||
430 | PCIPPC2 \ | ||||
431 | PCIPPC6 \ | ||||
432 | ZUMA \ | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 433 | " |
434 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 435 | LIST_7xx=" \ |
436 | BAB7xx \ | ||||
437 | CPCI750 \ | ||||
438 | ELPPC \ | ||||
439 | p3m750 \ | ||||
440 | ppmc7xx \ | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 441 | " |
442 | |||||
Wolfgang Denk | 66549bd | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 443 | ######################################################################### |
444 | ## PowerPC groups | ||||
445 | ######################################################################### | ||||
446 | |||||
447 | LIST_TSEC=" \ | ||||
448 | ${LIST_83xx} \ | ||||
449 | ${LIST_85xx} \ | ||||
450 | ${LIST_86xx} \ | ||||
451 | " | ||||
452 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 453 | LIST_ppc=" \ |
454 | ${LIST_5xx} \ | ||||
Jean-Christophe PLAGNIOL-VILLARD | 0912d31 | 2007-11-25 22:39:25 +0100 | [diff] [blame] | 455 | ${LIST_512x} \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 456 | ${LIST_5xxx} \ |
457 | ${LIST_8xx} \ | ||||
458 | ${LIST_8220} \ | ||||
459 | ${LIST_824x} \ | ||||
460 | ${LIST_8260} \ | ||||
461 | ${LIST_83xx} \ | ||||
462 | ${LIST_85xx} \ | ||||
463 | ${LIST_86xx} \ | ||||
464 | ${LIST_4xx} \ | ||||
465 | ${LIST_74xx} \ | ||||
466 | ${LIST_7xx} \ | ||||
467 | " | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 468 | |
469 | ######################################################################### | ||||
470 | ## StrongARM Systems | ||||
471 | ######################################################################### | ||||
472 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 473 | LIST_SA=" \ |
474 | assabet \ | ||||
475 | dnp1110 \ | ||||
476 | gcplus \ | ||||
477 | lart \ | ||||
478 | shannon \ | ||||
479 | " | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 480 | |
481 | ######################################################################### | ||||
482 | ## ARM7 Systems | ||||
483 | ######################################################################### | ||||
484 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 485 | LIST_ARM7=" \ |
486 | ap7 \ | ||||
487 | ap720t \ | ||||
488 | armadillo \ | ||||
489 | B2 \ | ||||
490 | ep7312 \ | ||||
491 | evb4510 \ | ||||
492 | impa7 \ | ||||
493 | integratorap \ | ||||
494 | lpc2292sodimm \ | ||||
495 | modnet50 \ | ||||
496 | SMN42 \ | ||||
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 497 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 498 | |
499 | ######################################################################### | ||||
500 | ## ARM9 Systems | ||||
501 | ######################################################################### | ||||
502 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 503 | LIST_ARM9=" \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 504 | ap920t \ |
505 | ap922_XA10 \ | ||||
506 | ap926ejs \ | ||||
507 | ap946es \ | ||||
508 | ap966 \ | ||||
509 | cp920t \ | ||||
510 | cp922_XA10 \ | ||||
511 | cp926ejs \ | ||||
512 | cp946es \ | ||||
513 | cp966 \ | ||||
514 | lpd7a400 \ | ||||
Prafulla Wadaskar | 60a04f9 | 2009-07-16 20:58:01 +0530 | [diff] [blame] | 515 | mv88f6281gtw_ge \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 516 | mx1ads \ |
517 | mx1fs2 \ | ||||
518 | netstar \ | ||||
Jean-Christophe PLAGNIOL-VILLARD | 871e481 | 2009-07-05 01:06:06 +0200 | [diff] [blame] | 519 | nhk8815 \ |
520 | nhk8815_onenand \ | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 521 | omap1510inn \ |
522 | omap1610h2 \ | ||||
523 | omap1610inn \ | ||||
David Brownell | 161f411 | 2008-01-18 12:45:45 -0800 | [diff] [blame] | 524 | omap5912osk \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 525 | omap730p2 \ |
Prafulla Wadaskar | 4aab4ae | 2009-07-16 21:02:24 +0530 | [diff] [blame] | 526 | rd6281a \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 527 | sbc2410x \ |
528 | scb9328 \ | ||||
Prafulla Wadaskar | 6263464 | 2009-07-16 20:58:00 +0530 | [diff] [blame] | 529 | sheevaplug \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 530 | smdk2400 \ |
531 | smdk2410 \ | ||||
532 | trab \ | ||||
533 | VCMA9 \ | ||||
534 | versatile \ | ||||
535 | versatileab \ | ||||
536 | versatilepb \ | ||||
537 | voiceblue \ | ||||
538 | davinci_dvevm \ | ||||
539 | davinci_schmoogie \ | ||||
Hugo Villeneuve | 4f3f671 | 2008-05-21 13:58:41 -0400 | [diff] [blame] | 540 | davinci_sffsdr \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 541 | davinci_sonata \ |
David Brownell | 7a84618 | 2009-05-15 23:48:37 +0200 | [diff] [blame] | 542 | davinci_dm355evm \ |
wdenk | 7eaacc5 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 543 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 544 | |
545 | ######################################################################### | ||||
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 546 | ## ARM10 Systems |
547 | ######################################################################### | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 548 | LIST_ARM10=" \ |
549 | integratorcp \ | ||||
550 | cp1026 \ | ||||
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 551 | " |
552 | |||||
553 | ######################################################################### | ||||
wdenk | f806271 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 554 | ## ARM11 Systems |
555 | ######################################################################### | ||||
Guennadi Liakhovetski | b093d8d | 2009-03-25 11:36:50 +0100 | [diff] [blame] | 556 | LIST_ARM11=" \ |
557 | cp1136 \ | ||||
558 | omap2420h4 \ | ||||
559 | apollon \ | ||||
560 | imx31_litekit \ | ||||
561 | imx31_phycore \ | ||||
562 | imx31_phycore_eet \ | ||||
563 | mx31ads \ | ||||
Magnus Lilja | 6eeb6f7 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 564 | mx31pdk \ |
Magnus Lilja | 24f8b41 | 2009-07-04 10:31:24 +0200 | [diff] [blame] | 565 | mx31pdk_nand \ |
Guennadi Liakhovetski | b093d8d | 2009-03-25 11:36:50 +0100 | [diff] [blame] | 566 | qong \ |
567 | smdk6400 \ | ||||
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 568 | " |
wdenk | f806271 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 569 | |
570 | ######################################################################### | ||||
Dirk Behme | 2781f80 | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 571 | ## ARM Cortex-A8 Systems |
572 | ######################################################################### | ||||
573 | LIST_ARM_CORTEX_A8=" \ | ||||
574 | omap3_beagle \ | ||||
Dirk Behme | 220faba | 2009-01-28 21:39:57 +0100 | [diff] [blame] | 575 | omap3_overo \ |
Dirk Behme | bb732be | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 576 | omap3_evm \ |
Dirk Behme | 7b84a7b | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 577 | omap3_pandora \ |
Dirk Behme | bab104e | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 578 | omap3_zoom1 \ |
Tom Rix | 0419d91 | 2009-05-15 23:48:36 +0200 | [diff] [blame] | 579 | omap3_zoom2 \ |
Dirk Behme | 2781f80 | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 580 | " |
581 | |||||
582 | ######################################################################### | ||||
Jean-Christophe PLAGNIOL-VILLARD | 9a88fd1 | 2008-05-24 12:47:46 +0200 | [diff] [blame] | 583 | ## AT91 Systems |
584 | ######################################################################### | ||||
585 | |||||
Sedji Gaouaou | 538566d | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 586 | LIST_at91=" \ |
587 | afeb9260 \ | ||||
588 | at91cap9adk \ | ||||
589 | at91rm9200dk \ | ||||
590 | at91rm9200ek \ | ||||
591 | at91sam9260ek \ | ||||
592 | at91sam9261ek \ | ||||
593 | at91sam9263ek \ | ||||
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 594 | at91sam9g10ek \ |
Sedji Gaouaou | 538566d | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 595 | at91sam9g20ek \ |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 596 | at91sam9m10g45ek \ |
Sedji Gaouaou | 538566d | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 597 | at91sam9rlek \ |
598 | cmc_pu2 \ | ||||
599 | csb637 \ | ||||
600 | kb9202 \ | ||||
601 | meesc \ | ||||
602 | mp2usb \ | ||||
603 | m501sk \ | ||||
604 | pm9261 \ | ||||
605 | pm9263 \ | ||||
Jean-Christophe PLAGNIOL-VILLARD | 9a88fd1 | 2008-05-24 12:47:46 +0200 | [diff] [blame] | 606 | " |
607 | |||||
608 | ######################################################################### | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 609 | ## Xscale Systems |
610 | ######################################################################### | ||||
611 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 612 | LIST_pxa=" \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 613 | cerf250 \ |
614 | cradle \ | ||||
615 | csb226 \ | ||||
616 | delta \ | ||||
617 | innokom \ | ||||
618 | lubbock \ | ||||
619 | pleb2 \ | ||||
Stefano Babic | e33f804 | 2009-07-01 20:40:41 +0200 | [diff] [blame] | 620 | polaris \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 621 | pxa255_idp \ |
Stefano Babic | e33f804 | 2009-07-01 20:40:41 +0200 | [diff] [blame] | 622 | trizepsiv \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 623 | wepep250 \ |
624 | xaeniax \ | ||||
625 | xm250 \ | ||||
626 | xsengine \ | ||||
627 | zylonite \ | ||||
wdenk | fa89d7c | 2004-09-28 16:44:41 +0000 | [diff] [blame] | 628 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 629 | |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 630 | LIST_ixp=" \ |
Michael Schwingen | a31f259 | 2008-01-18 00:04:28 +0100 | [diff] [blame] | 631 | actux1 \ |
632 | actux2 \ | ||||
633 | actux3 \ | ||||
634 | actux4 \ | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 635 | ixdp425 \ |
636 | ixdpg425 \ | ||||
637 | pdnb3 \ | ||||
638 | scpu \ | ||||
639 | " | ||||
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 640 | |
Wolfgang Denk | 66549bd | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 641 | ######################################################################### |
642 | ## ARM groups | ||||
643 | ######################################################################### | ||||
wdenk | bd1575f | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 644 | |
Dirk Behme | 2781f80 | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 645 | LIST_arm=" \ |
646 | ${LIST_SA} \ | ||||
647 | ${LIST_ARM7} \ | ||||
648 | ${LIST_ARM9} \ | ||||
649 | ${LIST_ARM10} \ | ||||
650 | ${LIST_ARM11} \ | ||||
651 | ${LIST_ARM_CORTEX_A8} \ | ||||
652 | ${LIST_at91} \ | ||||
653 | ${LIST_pxa} \ | ||||
654 | ${LIST_ixp} \ | ||||
wdenk | f806271 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 655 | " |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 656 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 657 | ######################################################################### |
Wolfgang Denk | bc8c500 | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 658 | ## MIPS Systems (default = big endian) |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 659 | ######################################################################### |
660 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 661 | LIST_mips4kc=" \ |
662 | incaip \ | ||||
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 663 | qemu_mips \ |
Stefan Roese | ee7a6ba | 2009-01-21 17:25:01 +0100 | [diff] [blame] | 664 | vct_platinum \ |
665 | vct_platinum_small \ | ||||
666 | vct_platinum_onenand \ | ||||
667 | vct_platinum_onenand_small \ | ||||
668 | vct_platinumavc \ | ||||
669 | vct_platinumavc_small \ | ||||
670 | vct_platinumavc_onenand \ | ||||
671 | vct_platinumavc_onenand_small \ | ||||
672 | vct_premium \ | ||||
673 | vct_premium_small \ | ||||
674 | vct_premium_onenand \ | ||||
675 | vct_premium_onenand_small \ | ||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 676 | " |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 677 | |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 678 | LIST_mips5kc=" \ |
679 | purple \ | ||||
680 | " | ||||
wdenk | b02744a | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 681 | |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 682 | LIST_au1xx0=" \ |
683 | dbau1000 \ | ||||
684 | dbau1100 \ | ||||
685 | dbau1500 \ | ||||
686 | dbau1550 \ | ||||
687 | dbau1550_el \ | ||||
688 | gth2 \ | ||||
689 | " | ||||
wdenk | 9b7f384 | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 690 | |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 691 | LIST_mips=" \ |
692 | ${LIST_mips4kc} \ | ||||
693 | ${LIST_mips5kc} \ | ||||
694 | ${LIST_au1xx0} \ | ||||
695 | " | ||||
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 696 | |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 697 | ######################################################################### |
Wolfgang Denk | bc8c500 | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 698 | ## MIPS Systems (little endian) |
699 | ######################################################################### | ||||
700 | |||||
701 | LIST_mips4kc_el="" | ||||
702 | |||||
703 | LIST_mips5kc_el="" | ||||
704 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 705 | LIST_au1xx0_el=" \ |
706 | dbau1550_el \ | ||||
Shinya Kuribayashi | 2437cfb | 2007-10-27 15:00:25 +0900 | [diff] [blame] | 707 | pb1000 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 708 | " |
Wolfgang Denk | bc8c500 | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 709 | |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 710 | LIST_mips_el=" \ |
711 | ${LIST_mips4kc_el} \ | ||||
712 | ${LIST_mips5kc_el} \ | ||||
713 | ${LIST_au1xx0_el} \ | ||||
714 | " | ||||
Wolfgang Denk | bc8c500 | 2005-08-14 00:27:00 +0200 | [diff] [blame] | 715 | |
716 | ######################################################################### | ||||
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 717 | ## i386 Systems |
718 | ######################################################################### | ||||
719 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 720 | LIST_I486=" \ |
721 | sc520_cdp \ | ||||
Graeme Russ | e56d397 | 2008-12-07 10:28:57 +1100 | [diff] [blame] | 722 | sc520_eNET \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 723 | sc520_spunk \ |
724 | sc520_spunk_rel \ | ||||
725 | " | ||||
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 726 | |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 727 | LIST_x86=" \ |
728 | ${LIST_I486} \ | ||||
729 | " | ||||
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 730 | |
wdenk | 3be717f | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 731 | ######################################################################### |
732 | ## NIOS Systems | ||||
733 | ######################################################################### | ||||
734 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 735 | LIST_nios=" \ |
736 | ADNPESC1 \ | ||||
737 | ADNPESC1_base_32 \ | ||||
738 | ADNPESC1_DNPEVA2_base_32\ | ||||
739 | DK1C20 \ | ||||
740 | DK1C20_standard_32 \ | ||||
741 | DK1S10 \ | ||||
742 | DK1S10_standard_32 \ | ||||
743 | DK1S10_mtx_ldk_20 \ | ||||
wdenk | 3be717f | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 744 | " |
745 | |||||
wdenk | 20a6122 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 746 | ######################################################################### |
wdenk | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 747 | ## Nios-II Systems |
748 | ######################################################################### | ||||
749 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 750 | LIST_nios2=" \ |
751 | EP1C20 \ | ||||
752 | EP1S10 \ | ||||
753 | EP1S40 \ | ||||
754 | PCI5441 \ | ||||
755 | PK1C20 \ | ||||
Wolfgang Denk | b4b1c46 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 756 | " |
wdenk | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 757 | |
758 | ######################################################################### | ||||
wdenk | 20a6122 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 759 | ## MicroBlaze Systems |
760 | ######################################################################### | ||||
761 | |||||
Michal Simek | 87ed95b | 2008-12-19 13:14:05 +0100 | [diff] [blame] | 762 | LIST_microblaze=" \ |
763 | microblaze-generic \ | ||||
764 | suzaku \ | ||||
Wolfgang Denk | b4b1c46 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 765 | " |
wdenk | 20a6122 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 766 | |
Zachary P. Landau | 1c3c096 | 2006-01-26 17:38:46 -0500 | [diff] [blame] | 767 | ######################################################################### |
768 | ## ColdFire Systems | ||||
769 | ######################################################################### | ||||
770 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 771 | LIST_coldfire=" \ |
772 | cobra5272 \ | ||||
773 | EB+MCF-EV123 \ | ||||
774 | EB+MCF-EV123_internal \ | ||||
775 | idmr \ | ||||
TsiChungLiew | 99b037a | 2008-01-14 17:43:33 -0600 | [diff] [blame] | 776 | M52277EVB \ |
TsiChungLiew | b859ef1 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 777 | M5235EVB \ |
TsiChungLiew | 3467469 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 778 | M5249EVB \ |
TsiChung Liew | dd8513c | 2008-07-23 17:11:47 -0500 | [diff] [blame] | 779 | M5253DEMO \ |
TsiChung Liew | ad9a86d | 2008-07-09 15:25:01 -0500 | [diff] [blame] | 780 | M5253EVBE \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 781 | M5271EVB \ |
782 | M5272C3 \ | ||||
Matthew Fettke | 9f3b3bb | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 783 | M5275EVB \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 784 | M5282EVB \ |
TsiChung Liew | e7e4fc8 | 2008-10-22 11:38:21 +0000 | [diff] [blame] | 785 | M53017EVB \ |
TsiChungLiew | 6f8a0a3 | 2008-01-14 17:23:08 -0600 | [diff] [blame] | 786 | M5329AFEE \ |
787 | M5373EVB \ | ||||
TsiChung Liew | 3cdc00a | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 788 | M54451EVB \ |
TsiChungLiew | fc3ca3b | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 789 | M54455EVB \ |
TsiChungLiew | 8cb946d | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 790 | M5475AFE \ |
791 | M5485AFE \ | ||||
Stefan Roese | a06fd37 | 2007-08-15 14:51:27 +0200 | [diff] [blame] | 792 | TASREG \ |
Heiko Schocher | ac1956e | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 793 | " |
Zachary P. Landau | 1c3c096 | 2006-01-26 17:38:46 -0500 | [diff] [blame] | 794 | |
Wolfgang Denk | 994ad96 | 2006-10-24 14:42:37 +0200 | [diff] [blame] | 795 | ######################################################################### |
796 | ## AVR32 Systems | ||||
797 | ######################################################################### | ||||
798 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 799 | LIST_avr32=" \ |
800 | atstk1002 \ | ||||
Haavard Skinnemoen | d347f44 | 2007-10-29 13:02:54 +0100 | [diff] [blame] | 801 | atstk1003 \ |
Haavard Skinnemoen | 787ef7b | 2007-10-29 13:02:54 +0100 | [diff] [blame] | 802 | atstk1004 \ |
Haavard Skinnemoen | 1ba3b74 | 2007-11-22 12:14:11 +0100 | [diff] [blame] | 803 | atstk1006 \ |
Haavard Skinnemoen | b62a431 | 2007-04-14 17:11:49 +0200 | [diff] [blame] | 804 | atngw100 \ |
Hans-Christian Egtvedt | d4b48b8 | 2008-08-06 14:42:13 +0200 | [diff] [blame] | 805 | favr-32-ezkit \ |
Julien May | 72646d2 | 2008-06-23 13:57:52 +0200 | [diff] [blame] | 806 | hammerhead \ |
Mark Jackson | 1744f5b | 2008-07-30 13:07:27 +0100 | [diff] [blame] | 807 | mimc200 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 808 | " |
Wolfgang Denk | 994ad96 | 2006-10-24 14:42:37 +0200 | [diff] [blame] | 809 | |
Aubrey.Li | 450c23e | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 810 | ######################################################################### |
811 | ## Blackfin Systems | ||||
812 | ######################################################################### | ||||
813 | |||||
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 814 | LIST_blackfin=" \ |
Mike Frysinger | 4752c19 | 2008-10-12 21:32:52 -0400 | [diff] [blame] | 815 | bf518f-ezbrd \ |
Mike Frysinger | 0378355 | 2008-10-12 21:30:48 -0400 | [diff] [blame] | 816 | bf526-ezbrd \ |
Mike Frysinger | 3cced46 | 2008-10-12 20:59:12 -0400 | [diff] [blame] | 817 | bf527-ezkit \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 818 | bf533-ezkit \ |
819 | bf533-stamp \ | ||||
Mike Frysinger | b704a20 | 2008-10-12 23:16:52 -0400 | [diff] [blame] | 820 | bf537-minotaur \ |
Mike Frysinger | 22e89bf | 2008-10-12 23:08:03 -0400 | [diff] [blame] | 821 | bf537-pnav \ |
Mike Frysinger | 9771c0c | 2008-10-12 23:22:25 -0400 | [diff] [blame] | 822 | bf537-srv1 \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 823 | bf537-stamp \ |
Mike Frysinger | cc24408 | 2008-10-12 21:25:33 -0400 | [diff] [blame] | 824 | bf538f-ezkit \ |
Mike Frysinger | 979294f | 2008-10-12 05:05:42 -0400 | [diff] [blame] | 825 | bf548-ezkit \ |
Kim Phillips | 8c0c893 | 2007-08-10 15:34:48 -0500 | [diff] [blame] | 826 | bf561-ezkit \ |
Mike Frysinger | a57f684 | 2008-10-12 23:28:33 -0400 | [diff] [blame] | 827 | blackstamp \ |
Mike Frysinger | 07f8227 | 2008-10-12 21:55:45 -0400 | [diff] [blame] | 828 | cm-bf527 \ |
Mike Frysinger | 9768ab9 | 2008-10-12 21:36:22 -0400 | [diff] [blame] | 829 | cm-bf533 \ |
Mike Frysinger | d014e35 | 2008-10-12 21:41:06 -0400 | [diff] [blame] | 830 | cm-bf537e \ |
Mike Frysinger | fa23a1b | 2008-10-12 21:54:07 -0400 | [diff] [blame] | 831 | cm-bf548 \ |
Mike Frysinger | 6c79dea | 2008-10-12 21:45:05 -0400 | [diff] [blame] | 832 | cm-bf561 \ |
Hoan Hoang | a13b05b | 2009-01-18 22:44:17 -0500 | [diff] [blame] | 833 | ibf-dsp561 \ |
Mike Frysinger | 252ca97 | 2008-10-12 21:49:28 -0400 | [diff] [blame] | 834 | tcm-bf537 \ |
Aubrey.Li | 450c23e | 2007-03-09 13:40:56 +0800 | [diff] [blame] | 835 | " |
836 | |||||
Jean-Christophe PLAGNIOL-VILLARD | ceee338 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 837 | ######################################################################### |
838 | ## SH Systems | ||||
839 | ######################################################################### | ||||
840 | |||||
Nobuhiro Iwamatsu | 6f7d436 | 2008-08-31 23:02:04 +0900 | [diff] [blame] | 841 | LIST_sh2=" \ |
842 | rsk7203 \ | ||||
843 | " | ||||
Wolfgang Denk | 66549bd | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 844 | LIST_sh3=" \ |
845 | mpr2 \ | ||||
846 | ms7720se \ | ||||
847 | " | ||||
848 | |||||
Jean-Christophe PLAGNIOL-VILLARD | ceee338 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 849 | LIST_sh4=" \ |
Nobuhiro Iwamatsu | a2943f0 | 2007-11-29 00:13:04 +0900 | [diff] [blame] | 850 | ms7750se \ |
Jean-Christophe PLAGNIOL-VILLARD | ceee338 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 851 | ms7722se \ |
Nobuhiro Iwamatsu | 0121325 | 2008-07-08 12:03:24 +0900 | [diff] [blame] | 852 | MigoR \ |
Yusuke Goda | cf23602 | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 853 | r7780mp \ |
Nobuhiro Iwamatsu | 868b52b | 2008-03-25 17:11:24 +0900 | [diff] [blame] | 854 | r2dplus \ |
Nobuhiro Iwamatsu | 113a37e | 2008-06-09 13:39:57 +0900 | [diff] [blame] | 855 | sh7763rdp \ |
Nobuhiro Iwamatsu | 52f73c0 | 2008-08-31 22:45:08 +0900 | [diff] [blame] | 856 | sh7785lcr \ |
Nobuhiro Iwamatsu | 3e59043 | 2008-08-22 17:39:09 +0900 | [diff] [blame] | 857 | ap325rxa \ |
Nobuhiro Iwamatsu | d1f2a0c | 2009-06-25 16:31:26 +0900 | [diff] [blame] | 858 | espt \ |
Jean-Christophe PLAGNIOL-VILLARD | ceee338 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 859 | " |
860 | |||||
Jean-Christophe PLAGNIOL-VILLARD | ceee338 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 861 | LIST_sh=" \ |
Nobuhiro Iwamatsu | 3e59043 | 2008-08-22 17:39:09 +0900 | [diff] [blame] | 862 | ${LIST_sh2} \ |
Jean-Christophe PLAGNIOL-VILLARD | ceee338 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 863 | ${LIST_sh3} \ |
864 | ${LIST_sh4} \ | ||||
865 | " | ||||
866 | |||||
Daniel Hellstrom | 9d7c6b2 | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 867 | ######################################################################### |
868 | ## SPARC Systems | ||||
869 | ######################################################################### | ||||
870 | |||||
Daniel Hellstrom | 73caf57 | 2008-03-28 10:20:43 +0100 | [diff] [blame] | 871 | LIST_sparc="gr_xc3s_1500 gr_cpci_ax2000 gr_ep2s60 grsim grsim_leon2" |
Daniel Hellstrom | 9d7c6b2 | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 872 | |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 873 | #----------------------------------------------------------------------- |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 874 | |
875 | #----- for now, just run PPC by default ----- | ||||
876 | [ $# = 0 ] && set $LIST_ppc | ||||
877 | |||||
878 | #----------------------------------------------------------------------- | ||||
879 | |||||
880 | build_target() { | ||||
881 | target=$1 | ||||
882 | |||||
883 | ${MAKE} distclean >/dev/null | ||||
884 | ${MAKE} ${target}_config | ||||
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 885 | |
886 | ${MAKE} ${JOBS} all 2>&1 >${LOG_DIR}/$target.MAKELOG \ | ||||
887 | | tee ${LOG_DIR}/$target.ERR | ||||
888 | |||||
Mike Frysinger | 119432a | 2008-01-28 05:56:19 -0500 | [diff] [blame] | 889 | ${CROSS_COMPILE}size ${BUILD_DIR}/u-boot \ |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 890 | | tee -a ${LOG_DIR}/$target.MAKELOG |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 891 | } |
892 | |||||
893 | #----------------------------------------------------------------------- | ||||
894 | |||||
895 | |||||
896 | for arg in $@ | ||||
897 | do | ||||
898 | case "$arg" in | ||||
Dirk Behme | 2781f80 | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 899 | arm|SA|ARM7|ARM9|ARM10|ARM11|ARM_CORTEX_A8|at91|ixp|pxa \ |
Wolfgang Denk | 66549bd | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 900 | |avr32 \ |
901 | |blackfin \ | ||||
902 | |coldfire \ | ||||
903 | |microblaze \ | ||||
904 | |mips|mips_el \ | ||||
905 | |nios|nios2 \ | ||||
906 | |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \ | ||||
Nobuhiro Iwamatsu | df05822 | 2008-08-28 14:50:52 +0900 | [diff] [blame] | 907 | |sh|sh2|sh3|sh4 \ |
Wolfgang Denk | 66549bd | 2008-04-20 15:35:52 -0700 | [diff] [blame] | 908 | |sparc \ |
909 | |x86|I486 \ | ||||
Jean-Christophe PLAGNIOL-VILLARD | ceee338 | 2007-11-27 09:44:53 +0100 | [diff] [blame] | 910 | ) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 911 | for target in `eval echo '$LIST_'${arg}` |
912 | do | ||||
913 | build_target ${target} | ||||
914 | done | ||||
915 | ;; | ||||
916 | *) build_target ${arg} | ||||
917 | ;; | ||||
918 | esac | ||||
919 | done |