]>
Commit | Line | Data |
---|---|---|
7ebf7443 WD |
1 | # |
2 | # (C) Copyright 2000, 2001, 2002 | |
3 | # Wolfgang Denk, DENX Software Engineering, [email protected]. | |
4 | # | |
5 | # See file CREDITS for list of people who contributed to this | |
6 | # project. | |
7 | # | |
8 | # This program is free software; you can redistribute it and/or | |
9 | # modify it under the terms of the GNU General Public License as | |
10 | # published by the Free Software Foundation; either version 2 of | |
11 | # the License, or (at your option) any later version. | |
12 | # | |
13 | # This program is distributed in the hope that it will be useful, | |
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | # GNU General Public License for more details. | |
17 | # | |
18 | # You should have received a copy of the GNU General Public License | |
19 | # along with this program; if not, write to the Free Software | |
20 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, | |
21 | # MA 02111-1307 USA | |
22 | # | |
23 | ||
24 | HOSTARCH := $(shell uname -m | \ | |
25 | sed -e s/i.86/i386/ \ | |
26 | -e s/sun4u/sparc64/ \ | |
27 | -e s/arm.*/arm/ \ | |
28 | -e s/sa110/arm/ \ | |
29 | -e s/powerpc/ppc/ \ | |
30 | -e s/macppc/ppc/) | |
31 | ||
32 | HOSTOS := $(shell uname -s | tr A-Z a-z | \ | |
33 | sed -e 's/\(cygwin\).*/cygwin/') | |
34 | ||
35 | export HOSTARCH | |
36 | ||
37 | # Deal with colliding definitions from tcsh etc. | |
38 | VENDOR= | |
39 | ||
40 | ######################################################################### | |
41 | ||
42 | TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi) | |
43 | export TOPDIR | |
44 | ||
45 | ifeq (include/config.mk,$(wildcard include/config.mk)) | |
46 | # load ARCH, BOARD, and CPU configuration | |
47 | include include/config.mk | |
48 | export ARCH CPU BOARD VENDOR | |
49 | # load other configuration | |
50 | include $(TOPDIR)/config.mk | |
51 | ||
52 | ifndef CROSS_COMPILE | |
53 | ifeq ($(HOSTARCH),ppc) | |
54 | CROSS_COMPILE = | |
55 | else | |
7ebf7443 WD |
56 | ifeq ($(ARCH),ppc) |
57 | CROSS_COMPILE = ppc_8xx- | |
58 | endif | |
59 | ifeq ($(ARCH),arm) | |
dc7c9a1a | 60 | CROSS_COMPILE = arm-linux- |
7ebf7443 | 61 | endif |
2262cfee WD |
62 | ifeq ($(ARCH),i386) |
63 | #CROSS_COMPILE = i386-elf- | |
64 | endif | |
43d9616c WD |
65 | ifeq ($(ARCH),mips) |
66 | CROSS_COMPILE = mips_4KC- | |
67 | endif | |
7ebf7443 WD |
68 | endif |
69 | endif | |
70 | ||
71 | export CROSS_COMPILE | |
72 | ||
73 | # The "tools" are needed early, so put this first | |
74 | SUBDIRS = tools \ | |
75 | lib_generic \ | |
76 | lib_$(ARCH) \ | |
77 | cpu/$(CPU) \ | |
78 | board/$(BOARDDIR) \ | |
79 | common \ | |
80 | disk \ | |
81 | fs \ | |
82 | net \ | |
83 | rtc \ | |
84 | dtt \ | |
85 | drivers \ | |
86 | post \ | |
87 | post/cpu \ | |
88 | examples | |
89 | ||
90 | ######################################################################### | |
91 | # U-Boot objects....order is important (i.e. start must be first) | |
92 | ||
93 | OBJS = cpu/$(CPU)/start.o | |
2262cfee WD |
94 | ifeq ($(CPU),i386) |
95 | OBJS += cpu/$(CPU)/start16.o | |
96 | OBJS += cpu/$(CPU)/reset.o | |
97 | endif | |
7ebf7443 WD |
98 | ifeq ($(CPU),ppc4xx) |
99 | OBJS += cpu/$(CPU)/resetvec.o | |
100 | endif | |
101 | ||
102 | LIBS = board/$(BOARDDIR)/lib$(BOARD).a | |
103 | LIBS += cpu/$(CPU)/lib$(CPU).a | |
104 | LIBS += lib_$(ARCH)/lib$(ARCH).a | |
2262cfee | 105 | LIBS += fs/jffs2/libjffs2.a fs/fdos/libfdos.a |
7ebf7443 WD |
106 | LIBS += net/libnet.a |
107 | LIBS += disk/libdisk.a | |
108 | LIBS += rtc/librtc.a | |
109 | LIBS += dtt/libdtt.a | |
110 | LIBS += drivers/libdrivers.a | |
111 | LIBS += post/libpost.a post/cpu/libcpu.a | |
112 | LIBS += common/libcommon.a | |
113 | LIBS += lib_generic/libgeneric.a | |
114 | ||
115 | ######################################################################### | |
116 | ||
117 | all: u-boot.srec u-boot.bin System.map | |
118 | ||
119 | install: all | |
43d9616c WD |
120 | -cp u-boot.bin /tftpboot/u-boot.bin |
121 | -cp u-boot.bin /net/denx/tftpboot/u-boot.bin | |
7ebf7443 WD |
122 | |
123 | u-boot.srec: u-boot | |
124 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ | |
125 | ||
126 | u-boot.bin: u-boot | |
127 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ | |
128 | ||
129 | u-boot.dis: u-boot | |
130 | $(OBJDUMP) -d $< > $@ | |
131 | ||
132 | u-boot: depend subdirs $(OBJS) $(LIBS) $(LDSCRIPT) | |
b2184c31 WD |
133 | $(LD) $(LDFLAGS) $(OBJS) \ |
134 | --start-group $(LIBS) --end-group \ | |
135 | -Map u-boot.map -o u-boot | |
7ebf7443 WD |
136 | |
137 | subdirs: | |
138 | @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir || exit 1 ; done | |
139 | ||
140 | depend dep: | |
141 | @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done | |
142 | ||
143 | tags: | |
144 | ctags -w `find $(SUBDIRS) include \ | |
145 | \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` | |
146 | ||
147 | etags: | |
148 | etags -a `find $(SUBDIRS) include \ | |
149 | \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` | |
150 | ||
151 | System.map: u-boot | |
152 | @$(NM) $< | \ | |
153 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ | |
154 | sort > System.map | |
155 | ||
156 | ######################################################################### | |
157 | else | |
158 | all install u-boot u-boot.srec depend dep: | |
159 | @echo "System not configured - see README" >&2 | |
160 | @ exit 1 | |
161 | endif | |
162 | ||
163 | ######################################################################### | |
164 | ||
165 | unconfig: | |
166 | rm -f include/config.h include/config.mk | |
167 | ||
168 | #======================================================================== | |
169 | # PowerPC | |
170 | #======================================================================== | |
0db5bca8 WD |
171 | |
172 | ######################################################################### | |
173 | ## MPC5xx Systems | |
174 | ######################################################################### | |
175 | ||
176 | cmi_mpc5xx_config: unconfig | |
177 | @./mkconfig $(@:_config=) ppc mpc5xx cmi | |
178 | ||
7ebf7443 WD |
179 | ######################################################################### |
180 | ## MPC8xx Systems | |
181 | ######################################################################### | |
182 | ||
183 | ADS860_config: unconfig | |
184 | @./mkconfig $(@:_config=) ppc mpc8xx fads | |
185 | ||
186 | AMX860_config : unconfig | |
187 | @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel | |
188 | ||
189 | c2mon_config: unconfig | |
190 | @./mkconfig $(@:_config=) ppc mpc8xx c2mon | |
191 | ||
192 | CCM_config: unconfig | |
193 | @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens | |
194 | ||
195 | cogent_mpc8xx_config: unconfig | |
196 | @./mkconfig $(@:_config=) ppc mpc8xx cogent | |
197 | ||
3bac3513 WD |
198 | ELPT860_config: unconfig |
199 | @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX | |
200 | ||
7ebf7443 WD |
201 | ESTEEM192E_config: unconfig |
202 | @./mkconfig $(@:_config=) ppc mpc8xx esteem192e | |
203 | ||
204 | ETX094_config : unconfig | |
205 | @./mkconfig $(@:_config=) ppc mpc8xx etx094 | |
206 | ||
207 | FADS823_config \ | |
208 | FADS850SAR_config \ | |
209 | FADS860T_config: unconfig | |
210 | @./mkconfig $(@:_config=) ppc mpc8xx fads | |
211 | ||
212 | FLAGADM_config: unconfig | |
213 | @./mkconfig $(@:_config=) ppc mpc8xx flagadm | |
214 | ||
7aa78614 WD |
215 | xtract_GEN860T = $(subst _SC,,$(subst _config,,$1)) |
216 | ||
217 | GEN860T_SC_config \ | |
7ebf7443 | 218 | GEN860T_config: unconfig |
7aa78614 WD |
219 | @ >include/config.h |
220 | @[ -z "$(findstring _SC,$@)" ] || \ | |
221 | { echo "#define CONFIG_SC" >>include/config.h ; \ | |
222 | echo "With reduced H/W feature set (SC)..." ; \ | |
223 | } | |
224 | @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t | |
7ebf7443 WD |
225 | |
226 | GENIETV_config: unconfig | |
227 | @./mkconfig $(@:_config=) ppc mpc8xx genietv | |
228 | ||
229 | GTH_config: unconfig | |
230 | @./mkconfig $(@:_config=) ppc mpc8xx gth | |
231 | ||
232 | hermes_config : unconfig | |
233 | @./mkconfig $(@:_config=) ppc mpc8xx hermes | |
234 | ||
235 | IAD210_config: unconfig | |
236 | @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens | |
237 | ||
238 | xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1)) | |
239 | ||
240 | ICU862_100MHz_config \ | |
241 | ICU862_config: unconfig | |
242 | @ >include/config.h | |
243 | @[ -z "$(findstring _100MHz,$@)" ] || \ | |
244 | { echo "#define CONFIG_100MHz" >>include/config.h ; \ | |
245 | echo "... with 100MHz system clock" ; \ | |
246 | } | |
247 | @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862 | |
248 | ||
249 | IP860_config : unconfig | |
250 | @./mkconfig $(@:_config=) ppc mpc8xx ip860 | |
251 | ||
252 | IVML24_256_config \ | |
253 | IVML24_128_config \ | |
254 | IVML24_config: unconfig | |
255 | @ >include/config.h | |
256 | @[ -z "$(findstring IVML24_config,$@)" ] || \ | |
257 | { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \ | |
258 | } | |
259 | @[ -z "$(findstring IVML24_128_config,$@)" ] || \ | |
260 | { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \ | |
261 | } | |
262 | @[ -z "$(findstring IVML24_256_config,$@)" ] || \ | |
263 | { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \ | |
264 | } | |
265 | @./mkconfig -a IVML24 ppc mpc8xx ivm | |
266 | ||
267 | IVMS8_256_config \ | |
268 | IVMS8_128_config \ | |
269 | IVMS8_config: unconfig | |
270 | @ >include/config.h | |
271 | @[ -z "$(findstring IVMS8_config,$@)" ] || \ | |
272 | { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \ | |
273 | } | |
274 | @[ -z "$(findstring IVMS8_128_config,$@)" ] || \ | |
275 | { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \ | |
276 | } | |
277 | @[ -z "$(findstring IVMS8_256_config,$@)" ] || \ | |
278 | { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \ | |
279 | } | |
280 | @./mkconfig -a IVMS8 ppc mpc8xx ivm | |
281 | ||
56f94be3 WD |
282 | KUP4K_config : unconfig |
283 | @./mkconfig $(@:_config=) ppc mpc8xx kup4k | |
284 | ||
7ebf7443 WD |
285 | LANTEC_config : unconfig |
286 | @./mkconfig $(@:_config=) ppc mpc8xx lantec | |
287 | ||
288 | lwmon_config: unconfig | |
289 | @./mkconfig $(@:_config=) ppc mpc8xx lwmon | |
290 | ||
291 | MBX_config \ | |
292 | MBX860T_config: unconfig | |
293 | @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx | |
294 | ||
295 | MHPC_config: unconfig | |
296 | @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec | |
297 | ||
298 | MVS1_config : unconfig | |
299 | @./mkconfig $(@:_config=) ppc mpc8xx mvs1 | |
300 | ||
301 | NETVIA_config: unconfig | |
302 | @./mkconfig $(@:_config=) ppc mpc8xx netvia | |
303 | ||
304 | NX823_config: unconfig | |
305 | @./mkconfig $(@:_config=) ppc mpc8xx nx823 | |
306 | ||
307 | pcu_e_config: unconfig | |
308 | @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens | |
309 | ||
310 | R360MPI_config: unconfig | |
311 | @./mkconfig $(@:_config=) ppc mpc8xx r360mpi | |
312 | ||
313 | RPXClassic_config: unconfig | |
314 | @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic | |
315 | ||
316 | RPXlite_config: unconfig | |
317 | @./mkconfig $(@:_config=) ppc mpc8xx RPXlite | |
318 | ||
319 | RRvision_config: unconfig | |
320 | @./mkconfig $(@:_config=) ppc mpc8xx RRvision | |
321 | ||
322 | RRvision_LCD_config: unconfig | |
323 | @echo "#define CONFIG_LCD" >include/config.h | |
324 | @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h | |
325 | @./mkconfig -a RRvision ppc mpc8xx RRvision | |
326 | ||
327 | SM850_config : unconfig | |
328 | @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx | |
329 | ||
330 | SPD823TS_config: unconfig | |
331 | @./mkconfig $(@:_config=) ppc mpc8xx spd8xx | |
332 | ||
dc7c9a1a WD |
333 | svm_sc8xx_config: unconfig |
334 | @ >include/config.h | |
335 | @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx | |
336 | ||
7ebf7443 WD |
337 | SXNI855T_config: unconfig |
338 | @./mkconfig $(@:_config=) ppc mpc8xx sixnet | |
339 | ||
db2f721f WD |
340 | # EMK MPC8xx based modules |
341 | TOP860_config: unconfig | |
342 | @./mkconfig $(@:_config=) ppc mpc8xx top860 emk | |
343 | ||
7ebf7443 WD |
344 | # Play some tricks for configuration selection |
345 | # All boards can come with 50 MHz (default), 66MHz or 80MHz clock, | |
346 | # but only 855 and 860 boards may come with FEC | |
347 | # and 823 boards may have LCD support | |
824a1ebf | 348 | xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _LCD,,$(subst _config,,$1)))) |
7ebf7443 WD |
349 | |
350 | FPS850L_config \ | |
384ae025 | 351 | FPS860L_config \ |
7ebf7443 WD |
352 | TQM823L_config \ |
353 | TQM823L_66MHz_config \ | |
354 | TQM823L_80MHz_config \ | |
355 | TQM823L_LCD_config \ | |
356 | TQM823L_LCD_66MHz_config \ | |
357 | TQM823L_LCD_80MHz_config \ | |
358 | TQM850L_config \ | |
359 | TQM850L_66MHz_config \ | |
360 | TQM850L_80MHz_config \ | |
361 | TQM855L_config \ | |
362 | TQM855L_66MHz_config \ | |
363 | TQM855L_80MHz_config \ | |
7ebf7443 WD |
364 | TQM860L_config \ |
365 | TQM860L_66MHz_config \ | |
366 | TQM860L_80MHz_config \ | |
d126bfbd WD |
367 | TQM862L_config \ |
368 | TQM862L_66MHz_config \ | |
369 | TQM862L_80MHz_config: unconfig | |
7ebf7443 | 370 | @ >include/config.h |
7ebf7443 WD |
371 | @[ -z "$(findstring _66MHz,$@)" ] || \ |
372 | { echo "#define CONFIG_66MHz" >>include/config.h ; \ | |
373 | echo "... with 66MHz system clock" ; \ | |
374 | } | |
375 | @[ -z "$(findstring _80MHz,$@)" ] || \ | |
376 | { echo "#define CONFIG_80MHz" >>include/config.h ; \ | |
377 | echo "... with 80MHz system clock" ; \ | |
378 | } | |
379 | @[ -z "$(findstring _LCD,$@)" ] || \ | |
380 | { echo "#define CONFIG_LCD" >>include/config.h ; \ | |
381 | echo "#define CONFIG_NEC_NL6648BC20" >>include/config.h ; \ | |
382 | echo "... with LCD display" ; \ | |
383 | } | |
384 | @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx | |
385 | ||
386 | TTTech_config: unconfig | |
387 | @echo "#define CONFIG_LCD" >include/config.h | |
388 | @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h | |
389 | @./mkconfig -a TQM823L ppc mpc8xx tqm8xx | |
390 | ||
608c9146 WD |
391 | v37_config: unconfig |
392 | @echo "#define CONFIG_LCD" >include/config.h | |
393 | @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h | |
394 | @./mkconfig $(@:_config=) ppc mpc8xx v37 | |
395 | ||
7ebf7443 WD |
396 | ######################################################################### |
397 | ## PPC4xx Systems | |
398 | ######################################################################### | |
399 | ||
400 | ADCIOP_config: unconfig | |
401 | @./mkconfig $(@:_config=) ppc ppc4xx adciop esd | |
402 | ||
403 | AR405_config: unconfig | |
404 | @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd | |
405 | ||
549826ea SR |
406 | ASH405_config: unconfig |
407 | @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd | |
408 | ||
409 | BUBINGA405EP_config:unconfig | |
410 | @./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep | |
411 | ||
7ebf7443 WD |
412 | CANBT_config: unconfig |
413 | @./mkconfig $(@:_config=) ppc ppc4xx canbt esd | |
414 | ||
549826ea SR |
415 | CPCI405_config \ |
416 | CPCI4052_config \ | |
417 | CPCI405AB_config: unconfig | |
7ebf7443 WD |
418 | @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd |
419 | @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk | |
420 | ||
421 | CPCI440_config: unconfig | |
422 | @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd | |
423 | ||
424 | CPCIISER4_config: unconfig | |
425 | @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd | |
426 | ||
427 | CRAYL1_config:unconfig | |
428 | @./mkconfig $(@:_config=) ppc ppc4xx L1 cray | |
429 | ||
430 | DASA_SIM_config: unconfig | |
431 | @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd | |
432 | ||
433 | DU405_config: unconfig | |
434 | @./mkconfig $(@:_config=) ppc ppc4xx du405 esd | |
435 | ||
436 | EBONY_config:unconfig | |
437 | @./mkconfig $(@:_config=) ppc ppc4xx ebony | |
438 | ||
439 | ERIC_config:unconfig | |
440 | @./mkconfig $(@:_config=) ppc ppc4xx eric | |
441 | ||
442 | MIP405_config:unconfig | |
443 | @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl | |
444 | ||
445 | ML2_config:unconfig | |
446 | @./mkconfig $(@:_config=) ppc ppc4xx ml2 | |
447 | ||
448 | OCRTC_config \ | |
449 | ORSG_config: unconfig | |
450 | @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd | |
451 | ||
452 | PCI405_config: unconfig | |
453 | @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd | |
454 | ||
455 | PIP405_config:unconfig | |
456 | @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl | |
457 | ||
549826ea SR |
458 | PMC405_config: unconfig |
459 | @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd | |
460 | ||
7ebf7443 WD |
461 | W7OLMC_config \ |
462 | W7OLMG_config: unconfig | |
463 | @./mkconfig $(@:_config=) ppc ppc4xx w7o | |
464 | ||
465 | WALNUT405_config:unconfig | |
466 | @./mkconfig $(@:_config=) ppc ppc4xx walnut405 | |
467 | ||
468 | ######################################################################### | |
469 | ## MPC824x Systems | |
470 | ######################################################################### | |
3bac3513 WD |
471 | xtract_82xx = $(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))) |
472 | ||
7ebf7443 WD |
473 | BMW_config: unconfig |
474 | @./mkconfig $(@:_config=) ppc mpc824x bmw | |
475 | ||
3bac3513 WD |
476 | CPC45_config \ |
477 | CPC45_ROMBOOT_config: unconfig | |
478 | @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45 | |
479 | @cd ./include ; \ | |
480 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ | |
481 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ | |
482 | echo "... booting from 8-bit flash" ; \ | |
483 | else \ | |
484 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ | |
485 | echo "... booting from 64-bit flash" ; \ | |
486 | fi; \ | |
487 | echo "export CONFIG_BOOT_ROM" >> config.mk; | |
488 | ||
7ebf7443 WD |
489 | CU824_config: unconfig |
490 | @./mkconfig $(@:_config=) ppc mpc824x cu824 | |
491 | ||
492 | MOUSSE_config: unconfig | |
493 | @./mkconfig $(@:_config=) ppc mpc824x mousse | |
494 | ||
495 | MUSENKI_config: unconfig | |
496 | @./mkconfig $(@:_config=) ppc mpc824x musenki | |
497 | ||
498 | OXC_config: unconfig | |
499 | @./mkconfig $(@:_config=) ppc mpc824x oxc | |
500 | ||
501 | PN62_config: unconfig | |
502 | @./mkconfig $(@:_config=) ppc mpc824x pn62 | |
503 | ||
504 | Sandpoint8240_config: unconfig | |
505 | @./mkconfig $(@:_config=) ppc mpc824x sandpoint | |
506 | ||
507 | Sandpoint8245_config: unconfig | |
508 | @./mkconfig $(@:_config=) ppc mpc824x sandpoint | |
509 | ||
510 | utx8245_config: unconfig | |
511 | @./mkconfig $(@:_config=) ppc mpc824x utx8245 | |
512 | ||
513 | ######################################################################### | |
514 | ## MPC8260 Systems | |
515 | ######################################################################### | |
7ebf7443 WD |
516 | |
517 | cogent_mpc8260_config: unconfig | |
518 | @./mkconfig $(@:_config=) ppc mpc8260 cogent | |
519 | ||
520 | CPU86_config \ | |
521 | CPU86_ROMBOOT_config: unconfig | |
522 | @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86 | |
523 | @cd ./include ; \ | |
524 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ | |
525 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ | |
526 | echo "... booting from 8-bit flash" ; \ | |
527 | else \ | |
528 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ | |
529 | echo "... booting from 64-bit flash" ; \ | |
530 | fi; \ | |
531 | echo "export CONFIG_BOOT_ROM" >> config.mk; | |
532 | ||
533 | ep8260_config: unconfig | |
534 | @./mkconfig $(@:_config=) ppc mpc8260 ep8260 | |
535 | ||
536 | gw8260_config: unconfig | |
537 | @./mkconfig $(@:_config=) ppc mpc8260 gw8260 | |
538 | ||
539 | hymod_config: unconfig | |
540 | @./mkconfig $(@:_config=) ppc mpc8260 hymod | |
541 | ||
542 | IPHASE4539_config: unconfig | |
543 | @./mkconfig $(@:_config=) ppc mpc8260 iphase4539 | |
544 | ||
545 | MPC8260ADS_config: unconfig | |
546 | @./mkconfig $(@:_config=) ppc mpc8260 mpc8260ads | |
547 | ||
db2f721f WD |
548 | MPC8266ADS_config: unconfig |
549 | @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads | |
550 | ||
10f67017 WD |
551 | PM825_config \ |
552 | PM825_ROMBOOT_config: unconfig | |
553 | @echo "#define CONFIG_PCI" >include/config.h | |
554 | @./mkconfig -a PM826 ppc mpc8260 pm826 | |
555 | @cd ./include ; \ | |
556 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ | |
557 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ | |
558 | echo "... booting from 8-bit flash" ; \ | |
559 | else \ | |
560 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ | |
561 | echo "... booting from 64-bit flash" ; \ | |
562 | fi; \ | |
563 | echo "export CONFIG_BOOT_ROM" >> config.mk; \ | |
564 | ||
7ebf7443 WD |
565 | PM826_config \ |
566 | PM826_ROMBOOT_config: unconfig | |
567 | @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 pm826 | |
568 | @cd ./include ; \ | |
569 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ | |
570 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ | |
571 | echo "... booting from 8-bit flash" ; \ | |
572 | else \ | |
573 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ | |
574 | echo "... booting from 64-bit flash" ; \ | |
575 | fi; \ | |
576 | echo "export CONFIG_BOOT_ROM" >> config.mk; \ | |
577 | ||
578 | ppmc8260_config: unconfig | |
579 | @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260 | |
580 | ||
581 | RPXsuper_config: unconfig | |
582 | @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper | |
583 | ||
584 | rsdproto_config: unconfig | |
585 | @./mkconfig $(@:_config=) ppc mpc8260 rsdproto | |
586 | ||
587 | sacsng_config: unconfig | |
588 | @./mkconfig $(@:_config=) ppc mpc8260 sacsng | |
589 | ||
590 | sbc8260_config: unconfig | |
591 | @./mkconfig $(@:_config=) ppc mpc8260 sbc8260 | |
592 | ||
593 | SCM_config: unconfig | |
594 | @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens | |
595 | ||
7aa78614 | 596 | TQM8255_config \ |
7ebf7443 WD |
597 | TQM8260_config \ |
598 | TQM8260_L2_config \ | |
4532cb69 | 599 | TQM8255_266MHz_config \ |
7ebf7443 WD |
600 | TQM8260_266MHz_config \ |
601 | TQM8260_L2_266MHz_config \ | |
7aa78614 | 602 | TQM8255_300MHz_config \ |
7ebf7443 WD |
603 | TQM8260_300MHz_config: unconfig |
604 | @ >include/config.h | |
605 | @if [ "$(findstring _L2_,$@)" ] ; then \ | |
606 | echo "#define CONFIG_L2_CACHE" >>include/config.h ; \ | |
607 | echo "... with L2 Cache support (60x Bus Mode)" ; \ | |
608 | else \ | |
609 | echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \ | |
610 | echo "... without L2 Cache support" ; \ | |
611 | fi | |
612 | @[ -z "$(findstring _266MHz,$@)" ] || \ | |
613 | { echo "#define CONFIG_266MHz" >>include/config.h ; \ | |
614 | echo "... with 266MHz system clock" ; \ | |
615 | } | |
616 | @[ -z "$(findstring _300MHz,$@)" ] || \ | |
617 | { echo "#define CONFIG_300MHz" >>include/config.h ; \ | |
618 | echo "... with 300MHz system clock" ; \ | |
619 | } | |
4532cb69 WD |
620 | @[ -z "$(findstring TQM8255_,$@)" ] || \ |
621 | { echo "#define CONFIG_MPC8255" >>include/config.h ; } | |
622 | @./mkconfig -a TQM8260 ppc mpc8260 tqm8260 | |
7ebf7443 | 623 | |
7aa78614 WD |
624 | atc_config: unconfig |
625 | @./mkconfig $(@:_config=) ppc mpc8260 atc | |
626 | ||
7ebf7443 WD |
627 | ######################################################################### |
628 | ## 74xx/7xx Systems | |
629 | ######################################################################### | |
630 | ||
c7de829c WD |
631 | AmigaOneG3SE_config: unconfig |
632 | @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI | |
633 | ||
7ebf7443 WD |
634 | EVB64260_config \ |
635 | EVB64260_750CX_config: unconfig | |
636 | @./mkconfig EVB64260 ppc 74xx_7xx evb64260 | |
637 | ||
638 | ZUMA_config: unconfig | |
639 | @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260 | |
640 | ||
641 | PCIPPC2_config \ | |
642 | PCIPPC6_config: unconfig | |
643 | @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2 | |
644 | ||
645 | BAB7xx_config: unconfig | |
646 | @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec | |
647 | ||
648 | ELPPC_config: unconfig | |
649 | @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec | |
650 | ||
651 | #======================================================================== | |
652 | # ARM | |
653 | #======================================================================== | |
654 | ######################################################################### | |
655 | ## StrongARM Systems | |
656 | ######################################################################### | |
657 | ||
dc7c9a1a WD |
658 | at91rm9200dk_config : unconfig |
659 | @./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk | |
660 | ||
7ebf7443 WD |
661 | lart_config : unconfig |
662 | @./mkconfig $(@:_config=) arm sa1100 lart | |
663 | ||
664 | dnp1110_config : unconfig | |
665 | @./mkconfig $(@:_config=) arm sa1100 dnp1110 | |
666 | ||
667 | shannon_config : unconfig | |
668 | @./mkconfig $(@:_config=) arm sa1100 shannon | |
669 | ||
670 | ######################################################################### | |
671 | ## ARM920T Systems | |
672 | ######################################################################### | |
673 | ||
43d9616c WD |
674 | xtract_trab = $(subst _big_flash,,$(subst _config,,$1)) |
675 | ||
7ebf7443 WD |
676 | smdk2400_config : unconfig |
677 | @./mkconfig $(@:_config=) arm arm920t smdk2400 | |
678 | ||
679 | smdk2410_config : unconfig | |
680 | @./mkconfig $(@:_config=) arm arm920t smdk2410 | |
681 | ||
43d9616c WD |
682 | trab_config \ |
683 | trab_big_flash_config: unconfig | |
684 | @ >include/config.h | |
685 | @[ -z "$(findstring _big_flash,$@)" ] || \ | |
686 | { echo "#define CONFIG_BIG_FLASH" >>include/config.h ; \ | |
687 | echo "... with big flash support" ; \ | |
688 | } | |
689 | @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab | |
7ebf7443 | 690 | |
1cb8e980 WD |
691 | VCMA9_config : unconfig |
692 | @./mkconfig $(@:_config=) arm arm920t vcma9 mpl | |
693 | ||
7ebf7443 WD |
694 | ######################################################################### |
695 | ## ARM720T Systems | |
696 | ######################################################################### | |
697 | ||
698 | impa7_config : unconfig | |
699 | @./mkconfig $(@:_config=) arm arm720t impa7 | |
700 | ||
701 | ep7312_config : unconfig | |
702 | @./mkconfig $(@:_config=) arm arm720t ep7312 | |
703 | ||
704 | ######################################################################### | |
43d9616c | 705 | ## XScale Systems |
7ebf7443 WD |
706 | ######################################################################### |
707 | ||
7ebf7443 | 708 | cradle_config : unconfig |
4c3b21a5 | 709 | @./mkconfig $(@:_config=) arm pxa cradle |
7ebf7443 WD |
710 | |
711 | csb226_config : unconfig | |
4c3b21a5 | 712 | @./mkconfig $(@:_config=) arm pxa csb226 |
7ebf7443 | 713 | |
43d9616c | 714 | innokom_config : unconfig |
4c3b21a5 | 715 | @./mkconfig $(@:_config=) arm pxa innokom |
43d9616c WD |
716 | |
717 | lubbock_config : unconfig | |
4c3b21a5 | 718 | @./mkconfig $(@:_config=) arm pxa lubbock |
43d9616c | 719 | |
3e38691e | 720 | wepep250_config : unconfig |
4c3b21a5 | 721 | @./mkconfig $(@:_config=) arm pxa wepep250 |
3e38691e | 722 | |
2262cfee WD |
723 | #======================================================================== |
724 | # i386 | |
725 | #======================================================================== | |
726 | ######################################################################### | |
1cb8e980 | 727 | ## AMD SC520 CDP |
2262cfee WD |
728 | ######################################################################### |
729 | sc520_cdp_config : unconfig | |
730 | @./mkconfig $(@:_config=) i386 i386 sc520_cdp | |
731 | ||
43d9616c WD |
732 | #======================================================================== |
733 | # MIPS | |
734 | #======================================================================== | |
7ebf7443 | 735 | ######################################################################### |
43d9616c WD |
736 | ## MIPS32 4Kc |
737 | ######################################################################### | |
738 | ||
739 | incaip_config : unconfig | |
740 | @./mkconfig $(@:_config=) mips mips incaip | |
741 | ||
3e38691e WD |
742 | purple_config : unconfig |
743 | @./mkconfig $(@:_config=) mips mips purple | |
43d9616c | 744 | |
3e38691e WD |
745 | ######################################################################### |
746 | ######################################################################### | |
7ebf7443 WD |
747 | |
748 | clean: | |
749 | find . -type f \ | |
750 | \( -name 'core' -o -name '*.bak' -o -name '*~' \ | |
751 | -o -name '*.o' -o -name '*.a' \) -print \ | |
752 | | xargs rm -f | |
85ec0bcc | 753 | rm -f examples/hello_world examples/timer \ |
3e38691e WD |
754 | examples/eepro100_eeprom examples/sched \ |
755 | examples/mem_to_mem_idma2intr | |
7ebf7443 WD |
756 | rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr |
757 | rm -f tools/easylogo/easylogo tools/bmp_logo | |
758 | rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend | |
228f29ac | 759 | rm -f tools/env/fw_printenv tools/env/fw_setenv |
7f70e853 | 760 | rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image |
7ebf7443 WD |
761 | |
762 | clobber: clean | |
763 | find . -type f \ | |
764 | \( -name .depend -o -name '*.srec' -o -name '*.bin' \) \ | |
765 | -print \ | |
766 | | xargs rm -f | |
767 | rm -f $(OBJS) *.bak tags TAGS | |
768 | rm -fr *.*~ | |
d126bfbd | 769 | rm -f u-boot u-boot.bin u-boot.srec u-boot.map System.map |
228f29ac | 770 | rm -f tools/crc32.c tools/environment.c tools/env/crc32.c |
3e38691e | 771 | rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c |
7ebf7443 WD |
772 | rm -f include/asm/arch include/asm |
773 | ||
774 | mrproper \ | |
775 | distclean: clobber unconfig | |
776 | ||
777 | backup: | |
778 | F=`basename $(TOPDIR)` ; cd .. ; \ | |
779 | gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F | |
780 | ||
781 | ######################################################################### |