blob: 6e6a44d33471d4db55452def24b40d88871d4420 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
2# (C) Copyright 2000, 2001, 2002
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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
24HOSTARCH := $(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
32HOSTOS := $(shell uname -s | tr A-Z a-z | \
33 sed -e 's/\(cygwin\).*/cygwin/')
34
35export HOSTARCH
36
37# Deal with colliding definitions from tcsh etc.
38VENDOR=
39
40#########################################################################
41
42TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
43export TOPDIR
44
45ifeq (include/config.mk,$(wildcard include/config.mk))
46# load ARCH, BOARD, and CPU configuration
47include include/config.mk
48export ARCH CPU BOARD VENDOR
49# load other configuration
50include $(TOPDIR)/config.mk
51
52ifndef CROSS_COMPILE
53ifeq ($(HOSTARCH),ppc)
54CROSS_COMPILE =
55else
wdenk7ebf7442002-11-02 23:17:16 +000056ifeq ($(ARCH),ppc)
57CROSS_COMPILE = ppc_8xx-
58endif
59ifeq ($(ARCH),arm)
60CROSS_COMPILE = arm_920TDI-
61endif
wdenk2262cfe2002-11-18 00:14:45 +000062ifeq ($(ARCH),i386)
63#CROSS_COMPILE = i386-elf-
64endif
wdenk43d96162003-03-06 00:02:04 +000065ifeq ($(ARCH),mips)
66CROSS_COMPILE = mips_4KC-
67endif
wdenk7ebf7442002-11-02 23:17:16 +000068endif
69endif
70
71export CROSS_COMPILE
72
73# The "tools" are needed early, so put this first
74SUBDIRS = 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
93OBJS = cpu/$(CPU)/start.o
wdenk2262cfe2002-11-18 00:14:45 +000094ifeq ($(CPU),i386)
95OBJS += cpu/$(CPU)/start16.o
96OBJS += cpu/$(CPU)/reset.o
97endif
wdenk7ebf7442002-11-02 23:17:16 +000098ifeq ($(CPU),ppc4xx)
99OBJS += cpu/$(CPU)/resetvec.o
100endif
101
102LIBS = board/$(BOARDDIR)/lib$(BOARD).a
103LIBS += cpu/$(CPU)/lib$(CPU).a
104LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk2262cfe2002-11-18 00:14:45 +0000105LIBS += fs/jffs2/libjffs2.a fs/fdos/libfdos.a
wdenk7ebf7442002-11-02 23:17:16 +0000106LIBS += net/libnet.a
107LIBS += disk/libdisk.a
108LIBS += rtc/librtc.a
109LIBS += dtt/libdtt.a
110LIBS += drivers/libdrivers.a
111LIBS += post/libpost.a post/cpu/libcpu.a
112LIBS += common/libcommon.a
113LIBS += lib_generic/libgeneric.a
114
115#########################################################################
116
117all: u-boot.srec u-boot.bin System.map
118
119install: all
wdenk43d96162003-03-06 00:02:04 +0000120 -cp u-boot.bin /tftpboot/u-boot.bin
121 -cp u-boot.bin /net/denx/tftpboot/u-boot.bin
wdenk7ebf7442002-11-02 23:17:16 +0000122
123u-boot.srec: u-boot
124 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
125
126u-boot.bin: u-boot
127 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
128
129u-boot.dis: u-boot
130 $(OBJDUMP) -d $< > $@
131
132u-boot: depend subdirs $(OBJS) $(LIBS) $(LDSCRIPT)
wdenkb2184c32002-11-19 23:01:07 +0000133 $(LD) $(LDFLAGS) $(OBJS) \
134 --start-group $(LIBS) --end-group \
135 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000136
137subdirs:
138 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir || exit 1 ; done
139
140depend dep:
141 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
142
143tags:
144 ctags -w `find $(SUBDIRS) include \
145 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
146
147etags:
148 etags -a `find $(SUBDIRS) include \
149 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
150
151System.map: u-boot
152 @$(NM) $< | \
153 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
154 sort > System.map
155
156#########################################################################
157else
158all install u-boot u-boot.srec depend dep:
159 @echo "System not configured - see README" >&2
160 @ exit 1
161endif
162
163#########################################################################
164
165unconfig:
166 rm -f include/config.h include/config.mk
167
168#========================================================================
169# PowerPC
170#========================================================================
171#########################################################################
172## MPC8xx Systems
173#########################################################################
174
175ADS860_config: unconfig
176 @./mkconfig $(@:_config=) ppc mpc8xx fads
177
178AMX860_config : unconfig
179 @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
180
181c2mon_config: unconfig
182 @./mkconfig $(@:_config=) ppc mpc8xx c2mon
183
184CCM_config: unconfig
185 @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
186
187cogent_mpc8xx_config: unconfig
188 @./mkconfig $(@:_config=) ppc mpc8xx cogent
189
wdenk3bac3512003-03-12 10:41:04 +0000190ELPT860_config: unconfig
191 @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
192
wdenk7ebf7442002-11-02 23:17:16 +0000193ESTEEM192E_config: unconfig
194 @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
195
196ETX094_config : unconfig
197 @./mkconfig $(@:_config=) ppc mpc8xx etx094
198
199FADS823_config \
200FADS850SAR_config \
201FADS860T_config: unconfig
202 @./mkconfig $(@:_config=) ppc mpc8xx fads
203
204FLAGADM_config: unconfig
205 @./mkconfig $(@:_config=) ppc mpc8xx flagadm
206
207GEN860T_config: unconfig
208 @./mkconfig $(@:_config=) ppc mpc8xx gen860t
209
210GENIETV_config: unconfig
211 @./mkconfig $(@:_config=) ppc mpc8xx genietv
212
213GTH_config: unconfig
214 @./mkconfig $(@:_config=) ppc mpc8xx gth
215
216hermes_config : unconfig
217 @./mkconfig $(@:_config=) ppc mpc8xx hermes
218
219IAD210_config: unconfig
220 @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
221
222xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
223
224ICU862_100MHz_config \
225ICU862_config: unconfig
226 @ >include/config.h
227 @[ -z "$(findstring _100MHz,$@)" ] || \
228 { echo "#define CONFIG_100MHz" >>include/config.h ; \
229 echo "... with 100MHz system clock" ; \
230 }
231 @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
232
233IP860_config : unconfig
234 @./mkconfig $(@:_config=) ppc mpc8xx ip860
235
236IVML24_256_config \
237IVML24_128_config \
238IVML24_config: unconfig
239 @ >include/config.h
240 @[ -z "$(findstring IVML24_config,$@)" ] || \
241 { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
242 }
243 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
244 { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
245 }
246 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
247 { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
248 }
249 @./mkconfig -a IVML24 ppc mpc8xx ivm
250
251IVMS8_256_config \
252IVMS8_128_config \
253IVMS8_config: unconfig
254 @ >include/config.h
255 @[ -z "$(findstring IVMS8_config,$@)" ] || \
256 { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
257 }
258 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
259 { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
260 }
261 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
262 { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
263 }
264 @./mkconfig -a IVMS8 ppc mpc8xx ivm
265
wdenk56f94be2002-11-05 16:35:14 +0000266KUP4K_config : unconfig
267 @./mkconfig $(@:_config=) ppc mpc8xx kup4k
268
wdenk7ebf7442002-11-02 23:17:16 +0000269LANTEC_config : unconfig
270 @./mkconfig $(@:_config=) ppc mpc8xx lantec
271
272lwmon_config: unconfig
273 @./mkconfig $(@:_config=) ppc mpc8xx lwmon
274
275MBX_config \
276MBX860T_config: unconfig
277 @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
278
279MHPC_config: unconfig
280 @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
281
282MVS1_config : unconfig
283 @./mkconfig $(@:_config=) ppc mpc8xx mvs1
284
285NETVIA_config: unconfig
286 @./mkconfig $(@:_config=) ppc mpc8xx netvia
287
288NX823_config: unconfig
289 @./mkconfig $(@:_config=) ppc mpc8xx nx823
290
291pcu_e_config: unconfig
292 @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
293
294R360MPI_config: unconfig
295 @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
296
297RPXClassic_config: unconfig
298 @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
299
300RPXlite_config: unconfig
301 @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
302
303RRvision_config: unconfig
304 @./mkconfig $(@:_config=) ppc mpc8xx RRvision
305
306RRvision_LCD_config: unconfig
307 @echo "#define CONFIG_LCD" >include/config.h
308 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
309 @./mkconfig -a RRvision ppc mpc8xx RRvision
310
311SM850_config : unconfig
312 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
313
314SPD823TS_config: unconfig
315 @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
316
317SXNI855T_config: unconfig
318 @./mkconfig $(@:_config=) ppc mpc8xx sixnet
319
wdenkdb2f721f2003-03-06 00:58:30 +0000320# EMK MPC8xx based modules
321TOP860_config: unconfig
322 @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
323
wdenk7ebf7442002-11-02 23:17:16 +0000324# Play some tricks for configuration selection
325# All boards can come with 50 MHz (default), 66MHz or 80MHz clock,
326# but only 855 and 860 boards may come with FEC
327# and 823 boards may have LCD support
328xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _LCD,,$(subst _FEC,,$(subst _config,,$1)))))
329
330FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000331FPS860L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000332TQM823L_config \
333TQM823L_66MHz_config \
334TQM823L_80MHz_config \
335TQM823L_LCD_config \
336TQM823L_LCD_66MHz_config \
337TQM823L_LCD_80MHz_config \
338TQM850L_config \
339TQM850L_66MHz_config \
340TQM850L_80MHz_config \
341TQM855L_config \
342TQM855L_66MHz_config \
343TQM855L_80MHz_config \
344TQM855L_FEC_config \
345TQM855L_FEC_66MHz_config \
346TQM855L_FEC_80MHz_config \
347TQM860L_config \
348TQM860L_66MHz_config \
349TQM860L_80MHz_config \
350TQM860L_FEC_config \
351TQM860L_FEC_66MHz_config \
352TQM860L_FEC_80MHz_config: unconfig
353 @ >include/config.h
354 @[ -z "$(findstring _FEC,$@)" ] || \
355 { echo "#define CONFIG_FEC_ENET" >>include/config.h ; \
356 echo "... with FEC support" ; \
357 }
358 @[ -z "$(findstring _66MHz,$@)" ] || \
359 { echo "#define CONFIG_66MHz" >>include/config.h ; \
360 echo "... with 66MHz system clock" ; \
361 }
362 @[ -z "$(findstring _80MHz,$@)" ] || \
363 { echo "#define CONFIG_80MHz" >>include/config.h ; \
364 echo "... with 80MHz system clock" ; \
365 }
366 @[ -z "$(findstring _LCD,$@)" ] || \
367 { echo "#define CONFIG_LCD" >>include/config.h ; \
368 echo "#define CONFIG_NEC_NL6648BC20" >>include/config.h ; \
369 echo "... with LCD display" ; \
370 }
371 @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
372
373TTTech_config: unconfig
374 @echo "#define CONFIG_LCD" >include/config.h
375 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
376 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
377
wdenk608c9142003-01-13 23:54:46 +0000378v37_config: unconfig
379 @echo "#define CONFIG_LCD" >include/config.h
380 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
381 @./mkconfig $(@:_config=) ppc mpc8xx v37
382
wdenk7ebf7442002-11-02 23:17:16 +0000383#########################################################################
384## PPC4xx Systems
385#########################################################################
386
387ADCIOP_config: unconfig
388 @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
389
390AR405_config: unconfig
391 @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
392
393CANBT_config: unconfig
394 @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
395
396CPCI405_config \
397CPCI4052_config: unconfig
398 @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
399 @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
400
401CPCI440_config: unconfig
402 @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
403
404CPCIISER4_config: unconfig
405 @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
406
407CRAYL1_config:unconfig
408 @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
409
410DASA_SIM_config: unconfig
411 @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
412
413DU405_config: unconfig
414 @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
415
416EBONY_config:unconfig
417 @./mkconfig $(@:_config=) ppc ppc4xx ebony
418
419ERIC_config:unconfig
420 @./mkconfig $(@:_config=) ppc ppc4xx eric
421
422MIP405_config:unconfig
423 @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
424
425ML2_config:unconfig
426 @./mkconfig $(@:_config=) ppc ppc4xx ml2
427
428OCRTC_config \
429ORSG_config: unconfig
430 @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
431
432PCI405_config: unconfig
433 @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
434
435PIP405_config:unconfig
436 @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
437
438W7OLMC_config \
439W7OLMG_config: unconfig
440 @./mkconfig $(@:_config=) ppc ppc4xx w7o
441
442WALNUT405_config:unconfig
443 @./mkconfig $(@:_config=) ppc ppc4xx walnut405
444
445#########################################################################
446## MPC824x Systems
447#########################################################################
wdenk3bac3512003-03-12 10:41:04 +0000448xtract_82xx = $(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1)))))
449
wdenk7ebf7442002-11-02 23:17:16 +0000450BMW_config: unconfig
451 @./mkconfig $(@:_config=) ppc mpc824x bmw
452
wdenk3bac3512003-03-12 10:41:04 +0000453CPC45_config \
454CPC45_ROMBOOT_config: unconfig
455 @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
456 @cd ./include ; \
457 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
458 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
459 echo "... booting from 8-bit flash" ; \
460 else \
461 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
462 echo "... booting from 64-bit flash" ; \
463 fi; \
464 echo "export CONFIG_BOOT_ROM" >> config.mk;
465
wdenk7ebf7442002-11-02 23:17:16 +0000466CU824_config: unconfig
467 @./mkconfig $(@:_config=) ppc mpc824x cu824
468
469MOUSSE_config: unconfig
470 @./mkconfig $(@:_config=) ppc mpc824x mousse
471
472MUSENKI_config: unconfig
473 @./mkconfig $(@:_config=) ppc mpc824x musenki
474
475OXC_config: unconfig
476 @./mkconfig $(@:_config=) ppc mpc824x oxc
477
478PN62_config: unconfig
479 @./mkconfig $(@:_config=) ppc mpc824x pn62
480
481Sandpoint8240_config: unconfig
482 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
483
484Sandpoint8245_config: unconfig
485 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
486
487utx8245_config: unconfig
488 @./mkconfig $(@:_config=) ppc mpc824x utx8245
489
490#########################################################################
491## MPC8260 Systems
492#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000493
494cogent_mpc8260_config: unconfig
495 @./mkconfig $(@:_config=) ppc mpc8260 cogent
496
497CPU86_config \
498CPU86_ROMBOOT_config: unconfig
499 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
500 @cd ./include ; \
501 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
502 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
503 echo "... booting from 8-bit flash" ; \
504 else \
505 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
506 echo "... booting from 64-bit flash" ; \
507 fi; \
508 echo "export CONFIG_BOOT_ROM" >> config.mk;
509
510ep8260_config: unconfig
511 @./mkconfig $(@:_config=) ppc mpc8260 ep8260
512
513gw8260_config: unconfig
514 @./mkconfig $(@:_config=) ppc mpc8260 gw8260
515
516hymod_config: unconfig
517 @./mkconfig $(@:_config=) ppc mpc8260 hymod
518
519IPHASE4539_config: unconfig
520 @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
521
522MPC8260ADS_config: unconfig
523 @./mkconfig $(@:_config=) ppc mpc8260 mpc8260ads
524
wdenkdb2f721f2003-03-06 00:58:30 +0000525MPC8266ADS_config: unconfig
526 @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
527
wdenk7ebf7442002-11-02 23:17:16 +0000528PM826_config \
529PM826_ROMBOOT_config: unconfig
530 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 pm826
531 @cd ./include ; \
532 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
533 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
534 echo "... booting from 8-bit flash" ; \
535 else \
536 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
537 echo "... booting from 64-bit flash" ; \
538 fi; \
539 echo "export CONFIG_BOOT_ROM" >> config.mk; \
540
541ppmc8260_config: unconfig
542 @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
543
544RPXsuper_config: unconfig
545 @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
546
547rsdproto_config: unconfig
548 @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
549
550sacsng_config: unconfig
551 @./mkconfig $(@:_config=) ppc mpc8260 sacsng
552
553sbc8260_config: unconfig
554 @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
555
556SCM_config: unconfig
557 @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
558
559TQM8260_config \
560TQM8260_L2_config \
561TQM8260_266MHz_config \
562TQM8260_L2_266MHz_config \
563TQM8260_300MHz_config: unconfig
564 @ >include/config.h
565 @if [ "$(findstring _L2_,$@)" ] ; then \
566 echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
567 echo "... with L2 Cache support (60x Bus Mode)" ; \
568 else \
569 echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
570 echo "... without L2 Cache support" ; \
571 fi
572 @[ -z "$(findstring _266MHz,$@)" ] || \
573 { echo "#define CONFIG_266MHz" >>include/config.h ; \
574 echo "... with 266MHz system clock" ; \
575 }
576 @[ -z "$(findstring _300MHz,$@)" ] || \
577 { echo "#define CONFIG_300MHz" >>include/config.h ; \
578 echo "... with 300MHz system clock" ; \
579 }
580 @./mkconfig -a $(call xtract_82xx,$@) ppc mpc8260 tqm8260
581
582#########################################################################
583## 74xx/7xx Systems
584#########################################################################
585
wdenkc7de8292002-11-19 11:04:11 +0000586AmigaOneG3SE_config: unconfig
587 @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
588
wdenk7ebf7442002-11-02 23:17:16 +0000589EVB64260_config \
590EVB64260_750CX_config: unconfig
591 @./mkconfig EVB64260 ppc 74xx_7xx evb64260
592
593ZUMA_config: unconfig
594 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
595
596PCIPPC2_config \
597PCIPPC6_config: unconfig
598 @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
599
600BAB7xx_config: unconfig
601 @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
602
603ELPPC_config: unconfig
604 @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
605
606#========================================================================
607# ARM
608#========================================================================
609#########################################################################
610## StrongARM Systems
611#########################################################################
612
613lart_config : unconfig
614 @./mkconfig $(@:_config=) arm sa1100 lart
615
616dnp1110_config : unconfig
617 @./mkconfig $(@:_config=) arm sa1100 dnp1110
618
619shannon_config : unconfig
620 @./mkconfig $(@:_config=) arm sa1100 shannon
621
622#########################################################################
623## ARM920T Systems
624#########################################################################
625
wdenk43d96162003-03-06 00:02:04 +0000626xtract_trab = $(subst _big_flash,,$(subst _config,,$1))
627
wdenk7ebf7442002-11-02 23:17:16 +0000628smdk2400_config : unconfig
629 @./mkconfig $(@:_config=) arm arm920t smdk2400
630
631smdk2410_config : unconfig
632 @./mkconfig $(@:_config=) arm arm920t smdk2410
633
wdenk43d96162003-03-06 00:02:04 +0000634trab_config \
635trab_big_flash_config: unconfig
636 @ >include/config.h
637 @[ -z "$(findstring _big_flash,$@)" ] || \
638 { echo "#define CONFIG_BIG_FLASH" >>include/config.h ; \
639 echo "... with big flash support" ; \
640 }
641 @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab
wdenk7ebf7442002-11-02 23:17:16 +0000642
wdenk1cb8e982003-03-06 21:55:29 +0000643VCMA9_config : unconfig
644 @./mkconfig $(@:_config=) arm arm920t vcma9 mpl
645
wdenk7ebf7442002-11-02 23:17:16 +0000646#########################################################################
647## ARM720T Systems
648#########################################################################
649
650impa7_config : unconfig
651 @./mkconfig $(@:_config=) arm arm720t impa7
652
653ep7312_config : unconfig
654 @./mkconfig $(@:_config=) arm arm720t ep7312
655
656#########################################################################
wdenk43d96162003-03-06 00:02:04 +0000657## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +0000658#########################################################################
659
wdenk7ebf7442002-11-02 23:17:16 +0000660cradle_config : unconfig
661 @./mkconfig $(@:_config=) arm xscale cradle
662
663csb226_config : unconfig
664 @./mkconfig $(@:_config=) arm xscale csb226
665
wdenk43d96162003-03-06 00:02:04 +0000666innokom_config : unconfig
667 @./mkconfig $(@:_config=) arm xscale innokom
668
669lubbock_config : unconfig
670 @./mkconfig $(@:_config=) arm xscale lubbock
671
wdenk2262cfe2002-11-18 00:14:45 +0000672#========================================================================
673# i386
674#========================================================================
675#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +0000676## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +0000677#########################################################################
678sc520_cdp_config : unconfig
679 @./mkconfig $(@:_config=) i386 i386 sc520_cdp
680
wdenk43d96162003-03-06 00:02:04 +0000681#========================================================================
682# MIPS
683#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +0000684#########################################################################
wdenk43d96162003-03-06 00:02:04 +0000685## MIPS32 4Kc
686#########################################################################
687
688incaip_config : unconfig
689 @./mkconfig $(@:_config=) mips mips incaip
690
691
wdenk7ebf7442002-11-02 23:17:16 +0000692
693clean:
694 find . -type f \
695 \( -name 'core' -o -name '*.bak' -o -name '*~' \
696 -o -name '*.o' -o -name '*.a' \) -print \
697 | xargs rm -f
698 rm -f examples/hello_world examples/timer examples/eepro100_eeprom
699 rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
700 rm -f tools/easylogo/easylogo tools/bmp_logo
701 rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
wdenk228f29a2002-12-08 09:53:23 +0000702 rm -f tools/env/fw_printenv tools/env/fw_setenv
wdenk7ebf7442002-11-02 23:17:16 +0000703
704clobber: clean
705 find . -type f \
706 \( -name .depend -o -name '*.srec' -o -name '*.bin' \) \
707 -print \
708 | xargs rm -f
709 rm -f $(OBJS) *.bak tags TAGS
710 rm -fr *.*~
711 rm -f u-boot u-boot.bin u-boot.elf u-boot.srec u-boot.map System.map
wdenk228f29a2002-12-08 09:53:23 +0000712 rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
wdenk43d96162003-03-06 00:02:04 +0000713 rm -f cpu/mpc824x/bedbug_603e.c
wdenk7ebf7442002-11-02 23:17:16 +0000714 rm -f include/asm/arch include/asm
715
716mrproper \
717distclean: clobber unconfig
718
719backup:
720 F=`basename $(TOPDIR)` ; cd .. ; \
721 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
722
723#########################################################################