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