blob: 685331b0a7b4098516aee682155fcb69534309d7 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
wdenk1ebf41e2004-01-02 14:00:00 +00002# (C) Copyright 2000-2004
wdenk7ebf7442002-11-02 23:17:16 +00003# 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)
wdenkc8434db2003-03-26 06:55:25 +000060CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +000061endif
wdenk591dda52002-11-18 00:14:45 +000062ifeq ($(ARCH),i386)
wdenkabda5ca2003-05-31 18:35:21 +000063ifeq ($(HOSTARCH),i386)
64CROSS_COMPILE =
65else
66CROSS_COMPILE = i386-linux-
67endif
wdenk7ebf7442002-11-02 23:17:16 +000068endif
wdenk4a5c8a72003-03-06 00:02:04 +000069ifeq ($(ARCH),mips)
70CROSS_COMPILE = mips_4KC-
wdenk7ebf7442002-11-02 23:17:16 +000071endif
wdenk60164a82003-10-08 23:26:14 +000072ifeq ($(ARCH),nios)
73CROSS_COMPILE = nios-elf-
wdenk591dda52002-11-18 00:14:45 +000074endif
wdenkabf7a7c2003-12-08 01:34:36 +000075ifeq ($(ARCH),m68k)
76CROSS_COMPILE = m68k-elf-
wdenk4a5c8a72003-03-06 00:02:04 +000077endif
wdenk60164a82003-10-08 23:26:14 +000078endif
wdenkabf7a7c2003-12-08 01:34:36 +000079endif
wdenk7ebf7442002-11-02 23:17:16 +000080
81export CROSS_COMPILE
82
wdenk7ebf7442002-11-02 23:17:16 +000083#########################################################################
84# U-Boot objects....order is important (i.e. start must be first)
85
wdenk7f00b942003-12-07 23:55:12 +000086OBJS = cpu/$(CPU)/start.o
wdenk591dda52002-11-18 00:14:45 +000087ifeq ($(CPU),i386)
wdenk7f00b942003-12-07 23:55:12 +000088OBJS += cpu/$(CPU)/start16.o
89OBJS += cpu/$(CPU)/reset.o
wdenk591dda52002-11-18 00:14:45 +000090endif
wdenk7ebf7442002-11-02 23:17:16 +000091ifeq ($(CPU),ppc4xx)
wdenk7f00b942003-12-07 23:55:12 +000092OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +000093endif
wdenk9c53f402003-10-15 23:53:47 +000094ifeq ($(CPU),mpc85xx)
95OBJS += cpu/$(CPU)/resetvec.o
96endif
wdenk7ebf7442002-11-02 23:17:16 +000097
wdenk7f00b942003-12-07 23:55:12 +000098LIBS = lib_generic/libgeneric.a
99LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000100LIBS += cpu/$(CPU)/lib$(CPU).a
101LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk4d01d9e2004-03-25 14:59:05 +0000102LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
wdenkd3602132004-03-25 15:14:43 +0000103 fs/reiserfs/libreiserfs.a
wdenk7ebf7442002-11-02 23:17:16 +0000104LIBS += net/libnet.a
105LIBS += disk/libdisk.a
106LIBS += rtc/librtc.a
107LIBS += dtt/libdtt.a
108LIBS += drivers/libdrivers.a
wdenkeb20ad32003-09-05 23:19:14 +0000109LIBS += drivers/sk98lin/libsk98lin.a
wdenk7ebf7442002-11-02 23:17:16 +0000110LIBS += post/libpost.a post/cpu/libcpu.a
111LIBS += common/libcommon.a
wdenk7f00b942003-12-07 23:55:12 +0000112.PHONY : $(LIBS)
wdenkc0aa5c52003-12-06 19:49:23 +0000113
wdenk4cc02a82003-09-11 23:06:34 +0000114# Add GCC lib
wdenk4989f872004-03-14 15:06:13 +0000115PLATFORM_LIBS += --no-warn-mismatch -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
116
wdenk7ebf7442002-11-02 23:17:16 +0000117
wdenkc0aa5c52003-12-06 19:49:23 +0000118# The "tools" are needed early, so put this first
119# Don't include stuff already done in $(LIBS)
120SUBDIRS = tools \
121 examples \
122 post \
123 post/cpu
wdenk444f22b2003-12-07 21:39:28 +0000124.PHONY : $(SUBDIRS)
wdenkc0aa5c52003-12-06 19:49:23 +0000125
wdenk7ebf7442002-11-02 23:17:16 +0000126#########################################################################
wdenk0a658552003-08-05 17:43:17 +0000127#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000128
wdenk0a658552003-08-05 17:43:17 +0000129ALL = u-boot.srec u-boot.bin System.map
wdenk7ebf7442002-11-02 23:17:16 +0000130
wdenk0a658552003-08-05 17:43:17 +0000131all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000132
133u-boot.srec: u-boot
134 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
135
136u-boot.bin: u-boot
137 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
138
wdenk0a658552003-08-05 17:43:17 +0000139u-boot.img: u-boot.bin
140 ./tools/mkimage -A $(ARCH) -T firmware -C none \
141 -a $(TEXT_BASE) -e 0 \
142 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' include/version.h | \
143 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
144 -d $< $@
145
wdenk7ebf7442002-11-02 23:17:16 +0000146u-boot.dis: u-boot
147 $(OBJDUMP) -d $< > $@
148
wdenkc0aa5c52003-12-06 19:49:23 +0000149u-boot: depend $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk57b2d802003-06-27 21:31:46 +0000150 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
151 $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
wdenkeb20ad32003-09-05 23:19:14 +0000152 --start-group $(LIBS) $(PLATFORM_LIBS) --end-group \
wdenk67ff36c2002-11-19 23:01:07 +0000153 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000154
wdenkc0aa5c52003-12-06 19:49:23 +0000155$(LIBS):
156 $(MAKE) -C `dirname $@`
157
158$(SUBDIRS):
wdenk444f22b2003-12-07 21:39:28 +0000159 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000160
dzu9b10ef982003-08-07 14:20:31 +0000161gdbtools:
162 $(MAKE) -C tools/gdb || exit 1
163
wdenk7ebf7442002-11-02 23:17:16 +0000164depend dep:
165 @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
166
167tags:
168 ctags -w `find $(SUBDIRS) include \
wdenk270a8bd2004-04-15 21:58:11 +0000169 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
170 fs/cramfs fs/fat fs/fdos fs/jffs2 \
171 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000172 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
173
174etags:
175 etags -a `find $(SUBDIRS) include \
176 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
177
178System.map: u-boot
179 @$(NM) $< | \
180 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
181 sort > System.map
182
183#########################################################################
184else
185all install u-boot u-boot.srec depend dep:
186 @echo "System not configured - see README" >&2
187 @ exit 1
188endif
189
190#########################################################################
191
192unconfig:
wdenk9c07bf62004-04-10 20:43:50 +0000193 @rm -f include/config.h include/config.mk board/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000194
195#========================================================================
196# PowerPC
197#========================================================================
wdenk359733b2003-03-31 17:27:09 +0000198
199#########################################################################
200## MPC5xx Systems
201#########################################################################
202
203cmi_mpc5xx_config: unconfig
204 @./mkconfig $(@:_config=) ppc mpc5xx cmi
205
wdenk634d2f72004-04-15 23:14:49 +0000206PATI_config: unconfig
wdenkbc01dd52004-01-02 16:05:07 +0000207 @./mkconfig $(@:_config=) ppc mpc5xx pati mpl
208
wdenk7ebf7442002-11-02 23:17:16 +0000209#########################################################################
wdenk21136db2003-07-16 21:53:01 +0000210## MPC5xxx Systems
211#########################################################################
wdenk4b16c2e2003-11-07 13:42:26 +0000212MPC5200LITE_config \
213MPC5200LITE_LOWBOOT_config \
214MPC5200LITE_LOWBOOT08_config \
wdenk236d3fc2003-12-20 22:45:10 +0000215icecube_5200_DDR_config \
216IceCube_5200_DDR_config \
wdenk0a12b752004-03-11 22:46:36 +0000217icecube_5200_DDR_LOWBOOT_config \
218icecube_5200_DDR_LOWBOOT08_config \
wdenk4b16c2e2003-11-07 13:42:26 +0000219icecube_5200_config \
220IceCube_5200_config \
wdenk21136db2003-07-16 21:53:01 +0000221IceCube_5100_config: unconfig
222 @ >include/config.h
wdenk9c07bf62004-04-10 20:43:50 +0000223 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
224 { if [ "$(findstring DDR,$@)" ] ; \
225 then echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
226 else echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
227 fi ; \
wdenk4b16c2e2003-11-07 13:42:26 +0000228 echo "... with LOWBOOT configuration" ; \
229 }
230 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
231 { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
232 echo "... with 8 MB flash only" ; \
wdenk9c07bf62004-04-10 20:43:50 +0000233 echo "... with LOWBOOT configuration" ; \
wdenk4b16c2e2003-11-07 13:42:26 +0000234 }
wdenk236d3fc2003-12-20 22:45:10 +0000235 @[ -z "$(findstring DDR,$@)" ] || \
236 { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
237 echo "... DDR memory revision" ; \
238 }
wdenk1ebf41e2004-01-02 14:00:00 +0000239 @[ -z "$(findstring 5200,$@)" ] || \
240 { echo "#define CONFIG_MPC5200" >>include/config.h ; \
241 echo "... with MPC5200 processor" ; \
242 }
wdenk55618472003-10-28 09:14:21 +0000243 @[ -z "$(findstring 5100,$@)" ] || \
wdenk21136db2003-07-16 21:53:01 +0000244 { echo "#define CONFIG_MGT5100" >>include/config.h ; \
245 echo "... with MGT5100 processor" ; \
246 }
247 @./mkconfig -a IceCube ppc mpc5xxx icecube
248
wdenk1ebf41e2004-01-02 14:00:00 +0000249MINI5200_config \
250EVAL5200_config \
251TOP5200_config: unconfig
252 @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
253 @./mkconfig -a TOP5200 ppc mpc5xxx top5200 emk
254
wdenkc12081a2004-03-23 20:18:25 +0000255PM520_config: unconfig
256 @./mkconfig $(@:_config=) ppc mpc5xxx pm520
257
wdenk21136db2003-07-16 21:53:01 +0000258#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000259## MPC8xx Systems
260#########################################################################
261
wdenk84650f52003-08-30 00:05:50 +0000262AdderII_config: unconfig
263 @./mkconfig $(@:_config=) ppc mpc8xx adderII
264
wdenkad276f22004-01-04 16:28:35 +0000265ADS860_config \
266DUET_ADS_config \
267FADS823_config \
268FADS850SAR_config \
269MPC86xADS_config \
270FADS860T_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000271 @./mkconfig $(@:_config=) ppc mpc8xx fads
272
273AMX860_config : unconfig
274 @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
275
276c2mon_config: unconfig
277 @./mkconfig $(@:_config=) ppc mpc8xx c2mon
278
279CCM_config: unconfig
280 @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
281
282cogent_mpc8xx_config: unconfig
283 @./mkconfig $(@:_config=) ppc mpc8xx cogent
284
wdenkef5fe752003-03-12 10:41:04 +0000285ELPT860_config: unconfig
286 @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
287
wdenk7ebf7442002-11-02 23:17:16 +0000288ESTEEM192E_config: unconfig
289 @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
290
291ETX094_config : unconfig
292 @./mkconfig $(@:_config=) ppc mpc8xx etx094
293
wdenk7ebf7442002-11-02 23:17:16 +0000294FLAGADM_config: unconfig
295 @./mkconfig $(@:_config=) ppc mpc8xx flagadm
296
wdenk541a76d2003-05-03 15:50:43 +0000297xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
298
299GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000300GEN860T_config: unconfig
wdenk541a76d2003-05-03 15:50:43 +0000301 @ >include/config.h
302 @[ -z "$(findstring _SC,$@)" ] || \
303 { echo "#define CONFIG_SC" >>include/config.h ; \
304 echo "With reduced H/W feature set (SC)..." ; \
305 }
306 @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000307
308GENIETV_config: unconfig
309 @./mkconfig $(@:_config=) ppc mpc8xx genietv
310
311GTH_config: unconfig
312 @./mkconfig $(@:_config=) ppc mpc8xx gth
313
314hermes_config : unconfig
315 @./mkconfig $(@:_config=) ppc mpc8xx hermes
316
wdenkf602aa02004-03-13 23:29:43 +0000317HMI10_config : unconfig
318 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
319
wdenk7ebf7442002-11-02 23:17:16 +0000320IAD210_config: unconfig
321 @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
322
323xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
324
325ICU862_100MHz_config \
326ICU862_config: unconfig
327 @ >include/config.h
328 @[ -z "$(findstring _100MHz,$@)" ] || \
329 { echo "#define CONFIG_100MHz" >>include/config.h ; \
330 echo "... with 100MHz system clock" ; \
331 }
332 @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
333
334IP860_config : unconfig
335 @./mkconfig $(@:_config=) ppc mpc8xx ip860
336
337IVML24_256_config \
338IVML24_128_config \
339IVML24_config: unconfig
340 @ >include/config.h
341 @[ -z "$(findstring IVML24_config,$@)" ] || \
342 { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
343 }
344 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
345 { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
346 }
347 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
348 { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
349 }
350 @./mkconfig -a IVML24 ppc mpc8xx ivm
351
352IVMS8_256_config \
353IVMS8_128_config \
354IVMS8_config: unconfig
355 @ >include/config.h
356 @[ -z "$(findstring IVMS8_config,$@)" ] || \
357 { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
358 }
359 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
360 { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
361 }
362 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
363 { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
364 }
365 @./mkconfig -a IVMS8 ppc mpc8xx ivm
366
wdenk56f94be2002-11-05 16:35:14 +0000367KUP4K_config : unconfig
wdenk65faef92004-03-25 19:29:38 +0000368 @./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
369
370KUP4X_config : unconfig
371 @./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000372
wdenk7ebf7442002-11-02 23:17:16 +0000373LANTEC_config : unconfig
374 @./mkconfig $(@:_config=) ppc mpc8xx lantec
375
376lwmon_config: unconfig
377 @./mkconfig $(@:_config=) ppc mpc8xx lwmon
378
379MBX_config \
380MBX860T_config: unconfig
381 @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
382
383MHPC_config: unconfig
384 @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
385
386MVS1_config : unconfig
387 @./mkconfig $(@:_config=) ppc mpc8xx mvs1
388
wdenk70764a32003-06-26 22:04:09 +0000389xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
390
391NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000392NETVIA_config: unconfig
wdenk70764a32003-06-26 22:04:09 +0000393 @ >include/config.h
394 @[ -z "$(findstring NETVIA_config,$@)" ] || \
395 { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
396 echo "... Version 1" ; \
397 }
398 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
399 { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
400 echo "... Version 2" ; \
401 }
402 @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000403
wdenk6203e402004-04-18 10:13:26 +0000404xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
405
406NETPHONE_V2_config \
wdenk3902d702004-04-15 18:22:41 +0000407NETPHONE_config: unconfig
wdenk6203e402004-04-18 10:13:26 +0000408 @ >include/config.h
409 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
410 { echo "#define CONFIG_NETPHONE_VERSION 1" >>include/config.h ; \
411 }
412 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
413 { echo "#define CONFIG_NETPHONE_VERSION 2" >>include/config.h ; \
414 }
415 @./mkconfig -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk3902d702004-04-15 18:22:41 +0000416
417xtract_NETTA = $(subst _ISDN,,$(subst _config,,$1))
418
419NETTA_ISDN_config \
420NETTA_config: unconfig
421 @ >include/config.h
422 @[ -z "$(findstring NETTA_config,$@)" ] || \
423 { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
424 }
425 @[ -z "$(findstring NETTA_ISDN_config,$@)" ] || \
426 { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
427 }
428 @./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
429
wdenk7ebf7442002-11-02 23:17:16 +0000430NX823_config: unconfig
431 @./mkconfig $(@:_config=) ppc mpc8xx nx823
432
433pcu_e_config: unconfig
434 @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
435
wdenk174e0e52003-12-07 22:27:15 +0000436QS850_config: unconfig
437 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
438
439QS823_config: unconfig
440 @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
441
442QS860T_config: unconfig
443 @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
444
wdenk7ebf7442002-11-02 23:17:16 +0000445R360MPI_config: unconfig
446 @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
447
wdenk4e112c12003-06-03 23:54:09 +0000448RBC823_config: unconfig
449 @./mkconfig $(@:_config=) ppc mpc8xx rbc823
450
wdenk7ebf7442002-11-02 23:17:16 +0000451RPXClassic_config: unconfig
452 @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
453
454RPXlite_config: unconfig
455 @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
456
wdenke6466f62003-06-05 19:27:42 +0000457rmu_config: unconfig
458 @./mkconfig $(@:_config=) ppc mpc8xx rmu
459
wdenk7ebf7442002-11-02 23:17:16 +0000460RRvision_config: unconfig
461 @./mkconfig $(@:_config=) ppc mpc8xx RRvision
462
463RRvision_LCD_config: unconfig
464 @echo "#define CONFIG_LCD" >include/config.h
465 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
466 @./mkconfig -a RRvision ppc mpc8xx RRvision
467
468SM850_config : unconfig
469 @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
470
471SPD823TS_config: unconfig
472 @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
473
wdenkc8434db2003-03-26 06:55:25 +0000474svm_sc8xx_config: unconfig
475 @ >include/config.h
476 @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
477
wdenk7ebf7442002-11-02 23:17:16 +0000478SXNI855T_config: unconfig
479 @./mkconfig $(@:_config=) ppc mpc8xx sixnet
480
wdenkb666c8f2003-03-06 00:58:30 +0000481# EMK MPC8xx based modules
482TOP860_config: unconfig
483 @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
484
wdenk7ebf7442002-11-02 23:17:16 +0000485# Play some tricks for configuration selection
wdenke6466f62003-06-05 19:27:42 +0000486# All boards can come with 50 MHz (default), 66MHz, 80MHz or 100 MHz clock,
wdenk7ebf7442002-11-02 23:17:16 +0000487# but only 855 and 860 boards may come with FEC
488# and 823 boards may have LCD support
wdenk1ebf41e2004-01-02 14:00:00 +0000489xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _100MHz,,$(subst _133MHz,,$(subst _LCD,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +0000490
491FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000492FPS860L_config \
wdenk69141282003-07-07 20:07:54 +0000493NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000494TQM823L_config \
495TQM823L_66MHz_config \
496TQM823L_80MHz_config \
497TQM823L_LCD_config \
498TQM823L_LCD_66MHz_config \
499TQM823L_LCD_80MHz_config \
500TQM850L_config \
501TQM850L_66MHz_config \
502TQM850L_80MHz_config \
503TQM855L_config \
504TQM855L_66MHz_config \
505TQM855L_80MHz_config \
wdenk7ebf7442002-11-02 23:17:16 +0000506TQM860L_config \
507TQM860L_66MHz_config \
508TQM860L_80MHz_config \
wdenk6bd14892003-04-10 11:18:18 +0000509TQM862L_config \
510TQM862L_66MHz_config \
wdenke6466f62003-06-05 19:27:42 +0000511TQM862L_80MHz_config \
wdenkfb229ae2003-08-07 22:18:11 +0000512TQM823M_config \
513TQM823M_66MHz_config \
514TQM823M_80MHz_config \
515TQM850M_config \
516TQM850M_66MHz_config \
517TQM850M_80MHz_config \
wdenk69141282003-07-07 20:07:54 +0000518TQM855M_config \
519TQM855M_66MHz_config \
520TQM855M_80MHz_config \
521TQM860M_config \
522TQM860M_66MHz_config \
523TQM860M_80MHz_config \
524TQM862M_config \
525TQM862M_66MHz_config \
526TQM862M_80MHz_config \
wdenk1ebf41e2004-01-02 14:00:00 +0000527TQM862M_100MHz_config \
wdenkb50cde52004-01-24 20:25:54 +0000528TQM866M_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000529 @ >include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000530 @[ -z "$(findstring _66MHz,$@)" ] || \
531 { echo "#define CONFIG_66MHz" >>include/config.h ; \
532 echo "... with 66MHz system clock" ; \
533 }
534 @[ -z "$(findstring _80MHz,$@)" ] || \
535 { echo "#define CONFIG_80MHz" >>include/config.h ; \
536 echo "... with 80MHz system clock" ; \
537 }
wdenke6466f62003-06-05 19:27:42 +0000538 @[ -z "$(findstring _100MHz,$@)" ] || \
539 { echo "#define CONFIG_100MHz" >>include/config.h ; \
540 echo "... with 100MHz system clock" ; \
541 }
wdenk1ebf41e2004-01-02 14:00:00 +0000542 @[ -z "$(findstring _133MHz,$@)" ] || \
543 { echo "#define CONFIG_133MHz" >>include/config.h ; \
544 echo "... with 133MHz system clock" ; \
545 }
wdenk7ebf7442002-11-02 23:17:16 +0000546 @[ -z "$(findstring _LCD,$@)" ] || \
547 { echo "#define CONFIG_LCD" >>include/config.h ; \
wdenkc0d54ae2003-11-25 16:55:19 +0000548 echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000549 echo "... with LCD display" ; \
550 }
551 @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
552
553TTTech_config: unconfig
554 @echo "#define CONFIG_LCD" >include/config.h
555 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
556 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
557
wdenk2dad91b2003-01-13 23:54:46 +0000558v37_config: unconfig
559 @echo "#define CONFIG_LCD" >include/config.h
560 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
561 @./mkconfig $(@:_config=) ppc mpc8xx v37
562
dzu69438f62003-09-25 22:32:40 +0000563wtk_config: unconfig
564 @echo "#define CONFIG_LCD" >include/config.h
565 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
566 @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
567
wdenk7ebf7442002-11-02 23:17:16 +0000568#########################################################################
569## PPC4xx Systems
570#########################################################################
wdenk7182b0f2003-10-06 21:55:32 +0000571xtract_4xx = $(subst _MODEL_BA,,$(subst _MODEL_ME,,$(subst _MODEL_HI,,$(subst _config,,$1))))
wdenk7ebf7442002-11-02 23:17:16 +0000572
573ADCIOP_config: unconfig
574 @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
575
576AR405_config: unconfig
577 @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
578
stroesebfcc82b2003-05-23 11:41:44 +0000579ASH405_config: unconfig
580 @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
581
wdenk634d2f72004-04-15 23:14:49 +0000582BUBINGA405EP_config: unconfig
stroesebfcc82b2003-05-23 11:41:44 +0000583 @./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep
584
wdenk7ebf7442002-11-02 23:17:16 +0000585CANBT_config: unconfig
586 @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
587
stroesebfcc82b2003-05-23 11:41:44 +0000588CPCI405_config \
589CPCI4052_config \
590CPCI405AB_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000591 @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
592 @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
593
594CPCI440_config: unconfig
595 @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
596
597CPCIISER4_config: unconfig
598 @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
599
wdenk634d2f72004-04-15 23:14:49 +0000600CRAYL1_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000601 @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
602
wdenkf70cbb22004-02-23 20:48:38 +0000603csb272_config: unconfig
604 @./mkconfig $(@:_config=) ppc ppc4xx csb272
605
wdenk7ebf7442002-11-02 23:17:16 +0000606DASA_SIM_config: unconfig
607 @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
608
stroese3361eb72003-09-12 08:57:15 +0000609DP405_config: unconfig
610 @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
611
wdenk7ebf7442002-11-02 23:17:16 +0000612DU405_config: unconfig
613 @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
614
wdenk634d2f72004-04-15 23:14:49 +0000615EBONY_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000616 @./mkconfig $(@:_config=) ppc ppc4xx ebony
617
wdenk634d2f72004-04-15 23:14:49 +0000618ERIC_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000619 @./mkconfig $(@:_config=) ppc ppc4xx eric
620
wdenk634d2f72004-04-15 23:14:49 +0000621EXBITGEN_config: unconfig
wdenkd9fce812003-06-28 17:24:46 +0000622 @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
623
stroese3361eb72003-09-12 08:57:15 +0000624HUB405_config: unconfig
625 @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
626
wdenk634d2f72004-04-15 23:14:49 +0000627JSE_config: unconfig
628 @./mkconfig $(@:_config=) ppc ppc4xx jse
629
630MIP405_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000631 @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
632
wdenk634d2f72004-04-15 23:14:49 +0000633MIP405T_config: unconfig
wdenke39c2842003-06-04 15:05:30 +0000634 @echo "#define CONFIG_MIP405T" >include/config.h
635 @echo "Enable subset config for MIP405T"
636 @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
637
wdenk634d2f72004-04-15 23:14:49 +0000638ML2_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000639 @./mkconfig $(@:_config=) ppc ppc4xx ml2
640
wdenk634d2f72004-04-15 23:14:49 +0000641ml300_config: unconfig
wdenke537b3b2004-02-23 23:54:43 +0000642 @./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
643
wdenk634d2f72004-04-15 23:14:49 +0000644OCOTEA_config: unconfig
wdenk00fe1612004-03-14 00:07:33 +0000645 @./mkconfig $(@:_config=) ppc ppc4xx ocotea
646
wdenk7ebf7442002-11-02 23:17:16 +0000647OCRTC_config \
648ORSG_config: unconfig
649 @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
650
651PCI405_config: unconfig
652 @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
653
wdenk634d2f72004-04-15 23:14:49 +0000654PIP405_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000655 @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
656
stroese3361eb72003-09-12 08:57:15 +0000657PLU405_config: unconfig
658 @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
659
stroesebfcc82b2003-05-23 11:41:44 +0000660PMC405_config: unconfig
661 @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
662
wdenk7182b0f2003-10-06 21:55:32 +0000663PPChameleonEVB_MODEL_BA_config \
664PPChameleonEVB_MODEL_ME_config \
665PPChameleonEVB_MODEL_HI_config \
wdenk232fe0b2003-09-02 22:48:03 +0000666PPChameleonEVB_config: unconfig
wdenk7182b0f2003-10-06 21:55:32 +0000667 @ >include/config.h
668 @[ -z "$(findstring _MODEL_BA,$@)" ] || \
669 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
670 echo "... BASIC model" ; \
671 }
672 @[ -z "$(findstring _MODEL_ME,$@)" ] || \
673 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
674 echo "... MEDIUM model" ; \
675 }
676 @[ -z "$(findstring _MODEL_HI,$@)" ] || \
677 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
678 echo "... HIGH-END model" ; \
679 }
680 @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk232fe0b2003-09-02 22:48:03 +0000681
stroese3361eb72003-09-12 08:57:15 +0000682VOH405_config: unconfig
683 @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
684
wdenk7ebf7442002-11-02 23:17:16 +0000685W7OLMC_config \
686W7OLMG_config: unconfig
687 @./mkconfig $(@:_config=) ppc ppc4xx w7o
688
wdenk634d2f72004-04-15 23:14:49 +0000689WALNUT405_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000690 @./mkconfig $(@:_config=) ppc ppc4xx walnut405
691
wdenk634d2f72004-04-15 23:14:49 +0000692XPEDITE1K_config: unconfig
wdenk544e9732004-02-06 23:19:44 +0000693 @./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
694
wdenk7ebf7442002-11-02 23:17:16 +0000695#########################################################################
696## MPC824x Systems
697#########################################################################
wdenkc12081a2004-03-23 20:18:25 +0000698xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenkef5fe752003-03-12 10:41:04 +0000699
wdenk8aeb24e2003-06-20 22:36:30 +0000700A3000_config: unconfig
701 @./mkconfig $(@:_config=) ppc mpc824x a3000
702
wdenk7ebf7442002-11-02 23:17:16 +0000703BMW_config: unconfig
704 @./mkconfig $(@:_config=) ppc mpc824x bmw
705
wdenkef5fe752003-03-12 10:41:04 +0000706CPC45_config \
707CPC45_ROMBOOT_config: unconfig
708 @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
709 @cd ./include ; \
710 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
711 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
712 echo "... booting from 8-bit flash" ; \
713 else \
714 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
715 echo "... booting from 64-bit flash" ; \
716 fi; \
717 echo "export CONFIG_BOOT_ROM" >> config.mk;
718
wdenk7ebf7442002-11-02 23:17:16 +0000719CU824_config: unconfig
720 @./mkconfig $(@:_config=) ppc mpc824x cu824
721
wdenk5f495752004-02-26 23:46:20 +0000722eXalion_config: unconfig
723 @./mkconfig $(@:_config=) ppc mpc824x eXalion
724
wdenk7ebf7442002-11-02 23:17:16 +0000725MOUSSE_config: unconfig
726 @./mkconfig $(@:_config=) ppc mpc824x mousse
727
728MUSENKI_config: unconfig
729 @./mkconfig $(@:_config=) ppc mpc824x musenki
730
wdenk4e7a58a2003-12-07 19:24:00 +0000731MVBLUE_config: unconfig
732 @./mkconfig $(@:_config=) ppc mpc824x mvblue
733
wdenk7ebf7442002-11-02 23:17:16 +0000734OXC_config: unconfig
735 @./mkconfig $(@:_config=) ppc mpc824x oxc
736
737PN62_config: unconfig
738 @./mkconfig $(@:_config=) ppc mpc824x pn62
739
740Sandpoint8240_config: unconfig
741 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
742
743Sandpoint8245_config: unconfig
744 @./mkconfig $(@:_config=) ppc mpc824x sandpoint
745
wdenkd9fce812003-06-28 17:24:46 +0000746SL8245_config: unconfig
747 @./mkconfig $(@:_config=) ppc mpc824x sl8245
748
wdenk7ebf7442002-11-02 23:17:16 +0000749utx8245_config: unconfig
750 @./mkconfig $(@:_config=) ppc mpc824x utx8245
751
752#########################################################################
753## MPC8260 Systems
754#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000755
wdenk2f0812d2003-10-08 22:45:44 +0000756atc_config: unconfig
757 @./mkconfig $(@:_config=) ppc mpc8260 atc
758
wdenk7ebf7442002-11-02 23:17:16 +0000759cogent_mpc8260_config: unconfig
760 @./mkconfig $(@:_config=) ppc mpc8260 cogent
761
762CPU86_config \
763CPU86_ROMBOOT_config: unconfig
764 @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
765 @cd ./include ; \
766 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
767 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
768 echo "... booting from 8-bit flash" ; \
769 else \
770 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
771 echo "... booting from 64-bit flash" ; \
772 fi; \
773 echo "export CONFIG_BOOT_ROM" >> config.mk;
774
775ep8260_config: unconfig
776 @./mkconfig $(@:_config=) ppc mpc8260 ep8260
777
778gw8260_config: unconfig
779 @./mkconfig $(@:_config=) ppc mpc8260 gw8260
780
781hymod_config: unconfig
782 @./mkconfig $(@:_config=) ppc mpc8260 hymod
783
784IPHASE4539_config: unconfig
785 @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
786
wdenk3902d702004-04-15 18:22:41 +0000787MPC8260ADS_config \
788MPC8260ADS_33MHz_config \
789MPC8260ADS_40MHz_config \
790MPC8272ADS_config \
791PQ2FADS_config \
792PQ2FADS-VR_config \
793PQ2FADS-ZU_config \
794PQ2FADS-ZU_66MHz_config \
795 : unconfig
796 $(if $(findstring PQ2FADS,$@), \
797 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
798 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
799 $(if $(findstring MHz,$@), \
800 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
801 $(if $(findstring VR,$@), \
802 @echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
803 @./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +0000804
wdenkb666c8f2003-03-06 00:58:30 +0000805MPC8266ADS_config: unconfig
806 @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
807
wdenkc12081a2004-03-23 20:18:25 +0000808# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk4b57dcc2003-03-25 18:06:06 +0000809PM825_config \
wdenkc12081a2004-03-23 20:18:25 +0000810PM825_ROMBOOT_config \
811PM825_BIGFLASH_config \
812PM825_ROMBOOT_BIGFLASH_config \
813PM826_config \
814PM826_ROMBOOT_config \
815PM826_BIGFLASH_config \
816PM826_ROMBOOT_BIGFLASH_config: unconfig
817 @if [ "$(findstring PM825_,$@)" ] ; then \
818 echo "#define CONFIG_PCI" >include/config.h ; \
819 else \
820 >include/config.h ; \
821 fi
822 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
wdenk4b57dcc2003-03-25 18:06:06 +0000823 echo "... booting from 8-bit flash" ; \
wdenkc12081a2004-03-23 20:18:25 +0000824 echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
825 echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
826 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
827 echo "... with 32 MB Flash" ; \
828 echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
829 fi; \
wdenk4b57dcc2003-03-25 18:06:06 +0000830 else \
wdenk4b57dcc2003-03-25 18:06:06 +0000831 echo "... booting from 64-bit flash" ; \
wdenkc12081a2004-03-23 20:18:25 +0000832 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
833 echo "... with 32 MB Flash" ; \
834 echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
835 echo "TEXT_BASE = 0x40000000" >board/pm826/config.tmp ; \
836 else \
837 echo "TEXT_BASE = 0xFF000000" >board/pm826/config.tmp ; \
838 fi; \
839 fi
840 @./mkconfig -a PM826 ppc mpc8260 pm826
wdenk4b57dcc2003-03-25 18:06:06 +0000841
wdenkc12081a2004-03-23 20:18:25 +0000842PM828_config \
843PM828_PCI_config \
844PM828_ROMBOOT_config \
845PM828_ROMBOOT_PCI_config: unconfig
846 @if [ -z "$(findstring _PCI_,$@)" ] ; then \
847 echo "#define CONFIG_PCI" >>include/config.h ; \
848 echo "... with PCI enabled" ; \
wdenk7ebf7442002-11-02 23:17:16 +0000849 else \
wdenkc12081a2004-03-23 20:18:25 +0000850 >include/config.h ; \
851 fi
852 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
853 echo "... booting from 8-bit flash" ; \
854 echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
855 echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
856 fi
857 @./mkconfig -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +0000858
859ppmc8260_config: unconfig
860 @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
861
862RPXsuper_config: unconfig
863 @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
864
865rsdproto_config: unconfig
866 @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
867
868sacsng_config: unconfig
869 @./mkconfig $(@:_config=) ppc mpc8260 sacsng
870
871sbc8260_config: unconfig
872 @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
873
874SCM_config: unconfig
875 @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
876
wdenk874ac262003-07-24 23:38:38 +0000877TQM8255_AA_config \
878TQM8260_AA_config \
879TQM8260_AB_config \
880TQM8260_AC_config \
881TQM8260_AD_config \
882TQM8260_AE_config \
883TQM8260_AF_config \
884TQM8260_AG_config \
885TQM8260_AH_config \
886TQM8265_AA_config: unconfig
887 @case "$@" in \
888 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
889 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
890 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
891 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
892 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
893 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
894 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
895 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
896 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
897 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
898 esac; \
899 >include/config.h ; \
900 if [ "$${CTYPE}" != "MPC8260" ] ; then \
901 echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
902 fi; \
903 echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \
904 echo "... with $${CFREQ}MHz system clock" ; \
905 if [ "$${CACHE}" == "yes" ] ; then \
wdenk7ebf7442002-11-02 23:17:16 +0000906 echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
wdenk874ac262003-07-24 23:38:38 +0000907 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +0000908 else \
909 echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
910 echo "... without L2 Cache support" ; \
wdenk874ac262003-07-24 23:38:38 +0000911 fi; \
912 if [ "$${BMODE}" == "60x" ] ; then \
913 echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
914 echo "... with 60x Bus Mode" ; \
915 else \
916 echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \
917 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +0000918 fi
wdenkc08f1582003-04-27 22:52:51 +0000919 @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +0000920
wdenk2f0812d2003-10-08 22:45:44 +0000921ZPC1900_config: unconfig
922 @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
wdenk541a76d2003-05-03 15:50:43 +0000923
wdenkabf7a7c2003-12-08 01:34:36 +0000924#========================================================================
925# M68K
926#========================================================================
927#########################################################################
928## Coldfire
929#########################################################################
930
931M5272C3_config : unconfig
wdenke65527f2004-02-12 00:47:09 +0000932 @./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
wdenkabf7a7c2003-12-08 01:34:36 +0000933
934M5282EVB_config : unconfig
wdenke65527f2004-02-12 00:47:09 +0000935 @./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
wdenkabf7a7c2003-12-08 01:34:36 +0000936
wdenk7ebf7442002-11-02 23:17:16 +0000937#########################################################################
wdenk9c53f402003-10-15 23:53:47 +0000938## MPC85xx Systems
939#########################################################################
940
941MPC8540ADS_config: unconfig
942 @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
943
944MPC8560ADS_config: unconfig
945 @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
946
947#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000948## 74xx/7xx Systems
949#########################################################################
950
wdenk452cfd62002-11-19 11:04:11 +0000951AmigaOneG3SE_config: unconfig
952 @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
953
wdenk9f837932003-10-09 19:00:25 +0000954BAB7xx_config: unconfig
955 @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
956
wdenk5da7f2f2004-01-03 00:43:19 +0000957DB64360_config: unconfig
958 @./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
959
960DB64460_config: unconfig
961 @./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
962
wdenk9f837932003-10-09 19:00:25 +0000963debris_config: unconfig
964 @./mkconfig $(@:_config=) ppc mpc824x debris etin
965
966ELPPC_config: unconfig
967 @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
968
wdenk7ebf7442002-11-02 23:17:16 +0000969EVB64260_config \
970EVB64260_750CX_config: unconfig
971 @./mkconfig EVB64260 ppc 74xx_7xx evb64260
972
wdenk9f837932003-10-09 19:00:25 +0000973P3G4_config: unconfig
wdenk7ebf7442002-11-02 23:17:16 +0000974 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
975
976PCIPPC2_config \
977PCIPPC6_config: unconfig
978 @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
979
wdenk9f837932003-10-09 19:00:25 +0000980ZUMA_config: unconfig
wdenk232fe0b2003-09-02 22:48:03 +0000981 @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
982
wdenk7ebf7442002-11-02 23:17:16 +0000983#========================================================================
984# ARM
985#========================================================================
986#########################################################################
987## StrongARM Systems
988#########################################################################
989
wdenke5cda752004-04-15 23:23:39 +0000990assabet_config : unconfig
991 @./mkconfig $(@:_config=) arm sa1100 assabet
992
wdenk7ebf7442002-11-02 23:17:16 +0000993dnp1110_config : unconfig
994 @./mkconfig $(@:_config=) arm sa1100 dnp1110
995
wdenked2ac4b2004-03-14 18:23:55 +0000996gcplus_config : unconfig
997 @./mkconfig $(@:_config=) arm sa1100 gcplus
998
999lart_config : unconfig
1000 @./mkconfig $(@:_config=) arm sa1100 lart
1001
wdenk7ebf7442002-11-02 23:17:16 +00001002shannon_config : unconfig
1003 @./mkconfig $(@:_config=) arm sa1100 shannon
1004
1005#########################################################################
wdenkf6f96f72003-07-15 20:04:06 +00001006## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001007#########################################################################
1008
wdenkb6b2f0e2003-09-17 22:48:07 +00001009xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk4a5c8a72003-03-06 00:02:04 +00001010
wdenke97d3d92004-02-23 22:22:28 +00001011xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1012
wdenk29e7f5a2004-03-12 00:14:09 +00001013SX1_config : unconfig
1014 @./mkconfig $(@:_config=) arm arm925t sx1
1015
wdenk4989f872004-03-14 15:06:13 +00001016integratorcp_config : unconfig
1017 @./mkconfig $(@:_config=) arm arm926ejs integratorcp
1018
1019integratorap_config : unconfig
1020 @./mkconfig $(@:_config=) arm arm926ejs integratorap
1021
1022versatile_config : unconfig
1023 @./mkconfig $(@:_config=) arm arm926ejs versatile
1024
wdenkf6f96f72003-07-15 20:04:06 +00001025omap1510inn_config : unconfig
1026 @./mkconfig $(@:_config=) arm arm925t omap1510inn
1027
wdenke97d3d92004-02-23 22:22:28 +00001028omap1610inn_config \
1029omap1610inn_cs0boot_config \
1030omap1610inn_cs3boot_config \
1031omap1610h2_config \
1032omap1610h2_cs0boot_config \
1033omap1610h2_cs3boot_config : unconfig
1034 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
1035 echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
wdenkd3602132004-03-25 15:14:43 +00001036 echo "... configured for CS0 boot"; \
wdenke97d3d92004-02-23 22:22:28 +00001037 else \
1038 echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
wdenkd3602132004-03-25 15:14:43 +00001039 echo "... configured for CS3 boot"; \
wdenke97d3d92004-02-23 22:22:28 +00001040 fi;
1041 @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn
wdenk7eaacc52003-08-29 22:00:43 +00001042
wdenk7ebf7442002-11-02 23:17:16 +00001043smdk2400_config : unconfig
1044 @./mkconfig $(@:_config=) arm arm920t smdk2400
1045
1046smdk2410_config : unconfig
1047 @./mkconfig $(@:_config=) arm arm920t smdk2410
1048
wdenk236d3fc2003-12-20 22:45:10 +00001049# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk4a5c8a72003-03-06 00:02:04 +00001050trab_config \
wdenkb6b2f0e2003-09-17 22:48:07 +00001051trab_bigram_config \
1052trab_bigflash_config \
wdenkf6a6ac12003-09-17 15:10:32 +00001053trab_old_config: unconfig
wdenk4a5c8a72003-03-06 00:02:04 +00001054 @ >include/config.h
wdenkb6b2f0e2003-09-17 22:48:07 +00001055 @[ -z "$(findstring _bigram,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001056 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
1057 echo "#define CONFIG_RAM_32MB" >>include/config.h ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001058 echo "... with 8 MB Flash, 32 MB RAM" ; \
1059 }
1060 @[ -z "$(findstring _bigflash,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001061 { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
1062 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001063 echo "... with 16 MB Flash, 16 MB RAM" ; \
wdenkc0aa5c52003-12-06 19:49:23 +00001064 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
wdenkb6b2f0e2003-09-17 22:48:07 +00001065 }
wdenkf6a6ac12003-09-17 15:10:32 +00001066 @[ -z "$(findstring _old,$@)" ] || \
wdenk236d3fc2003-12-20 22:45:10 +00001067 { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
1068 echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
1069 echo "... with 8 MB Flash, 16 MB RAM" ; \
wdenkc0aa5c52003-12-06 19:49:23 +00001070 echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
wdenk4a5c8a72003-03-06 00:02:04 +00001071 }
1072 @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab
wdenk7ebf7442002-11-02 23:17:16 +00001073
wdenk1fe2c702003-03-06 21:55:29 +00001074VCMA9_config : unconfig
1075 @./mkconfig $(@:_config=) arm arm920t vcma9 mpl
1076
wdenkb98ac282004-02-24 00:16:43 +00001077
1078#########################################################################
1079## S3C44B0 Systems
1080#########################################################################
1081
1082B2_config : unconfig
1083 @./mkconfig $(@:_config=) arm s3c44b0 B2 dave
1084
wdenk7ebf7442002-11-02 23:17:16 +00001085#########################################################################
1086## ARM720T Systems
1087#########################################################################
1088
1089impa7_config : unconfig
1090 @./mkconfig $(@:_config=) arm arm720t impa7
1091
1092ep7312_config : unconfig
1093 @./mkconfig $(@:_config=) arm arm720t ep7312
1094
wdenk2ebee312004-02-23 19:30:57 +00001095modnet50_config : unconfig
1096 @./mkconfig $(@:_config=) arm arm720t modnet50
1097
wdenk7ebf7442002-11-02 23:17:16 +00001098#########################################################################
wdenk0ef49462004-03-15 09:00:01 +00001099## AT91RM9200 Systems
1100#########################################################################
1101
1102at91rm9200dk_config : unconfig
1103 @./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk
1104
1105#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001106## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00001107#########################################################################
1108
wdenk7ebf7442002-11-02 23:17:16 +00001109cradle_config : unconfig
wdenk57b2d802003-06-27 21:31:46 +00001110 @./mkconfig $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00001111
1112csb226_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001113 @./mkconfig $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00001114
wdenk4a5c8a72003-03-06 00:02:04 +00001115innokom_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001116 @./mkconfig $(@:_config=) arm pxa innokom
wdenk4a5c8a72003-03-06 00:02:04 +00001117
wdenkbd1575f2003-10-14 19:43:55 +00001118ixdp425_config : unconfig
1119 @./mkconfig $(@:_config=) arm ixp ixdp425
1120
wdenk4a5c8a72003-03-06 00:02:04 +00001121lubbock_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001122 @./mkconfig $(@:_config=) arm pxa lubbock
wdenk4a5c8a72003-03-06 00:02:04 +00001123
wdenk88e72a32003-06-19 23:04:19 +00001124logodl_config : unconfig
1125 @./mkconfig $(@:_config=) arm pxa logodl
1126
wdenkb02744a2003-04-05 00:53:31 +00001127wepep250_config : unconfig
wdenk0463e042003-05-23 12:36:20 +00001128 @./mkconfig $(@:_config=) arm pxa wepep250
wdenkb02744a2003-04-05 00:53:31 +00001129
wdenkc12081a2004-03-23 20:18:25 +00001130xm250_config : unconfig
1131 @./mkconfig $(@:_config=) arm pxa xm250
1132
wdenk591dda52002-11-18 00:14:45 +00001133#========================================================================
1134# i386
1135#========================================================================
1136#########################################################################
wdenk1fe2c702003-03-06 21:55:29 +00001137## AMD SC520 CDP
wdenk591dda52002-11-18 00:14:45 +00001138#########################################################################
1139sc520_cdp_config : unconfig
1140 @./mkconfig $(@:_config=) i386 i386 sc520_cdp
1141
wdenkabda5ca2003-05-31 18:35:21 +00001142sc520_spunk_config : unconfig
1143 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1144
1145sc520_spunk_rel_config : unconfig
1146 @./mkconfig $(@:_config=) i386 i386 sc520_spunk
1147
wdenk4a5c8a72003-03-06 00:02:04 +00001148#========================================================================
1149# MIPS
1150#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00001151#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001152## MIPS32 4Kc
1153#########################################################################
1154
wdenk5d841732003-08-17 18:55:18 +00001155xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
1156
1157incaip_100MHz_config \
1158incaip_133MHz_config \
1159incaip_150MHz_config \
1160incaip_config: unconfig
1161 @ >include/config.h
1162 @[ -z "$(findstring _100MHz,$@)" ] || \
1163 { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
1164 echo "... with 100MHz system clock" ; \
1165 }
1166 @[ -z "$(findstring _133MHz,$@)" ] || \
1167 { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
1168 echo "... with 133MHz system clock" ; \
1169 }
1170 @[ -z "$(findstring _150MHz,$@)" ] || \
1171 { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
1172 echo "... with 150MHz system clock" ; \
1173 }
1174 @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
1175
wdenk5401de42004-02-07 01:27:10 +00001176tb0229_config: unconfig
1177 @./mkconfig $(@:_config=) mips mips tb0229
1178
wdenk5d841732003-08-17 18:55:18 +00001179#########################################################################
1180## MIPS64 5Kc
1181#########################################################################
wdenk4a5c8a72003-03-06 00:02:04 +00001182
wdenkb02744a2003-04-05 00:53:31 +00001183purple_config : unconfig
1184 @./mkconfig $(@:_config=) mips mips purple
wdenk4a5c8a72003-03-06 00:02:04 +00001185
wdenk60164a82003-10-08 23:26:14 +00001186#========================================================================
1187# Nios
1188#========================================================================
1189#########################################################################
1190## Nios32
1191#########################################################################
1192
wdenk3be717f2004-01-03 19:43:48 +00001193DK1C20_safe_32_config \
1194DK1C20_standard_32_config \
wdenk60164a82003-10-08 23:26:14 +00001195DK1C20_config: unconfig
wdenk3be717f2004-01-03 19:43:48 +00001196 @ >include/config.h
1197 @[ -z "$(findstring _safe_32,$@)" ] || \
1198 { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1199 echo "... NIOS 'safe_32' configuration" ; \
1200 }
1201 @[ -z "$(findstring _standard_32,$@)" ] || \
1202 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1203 echo "... NIOS 'standard_32' configuration" ; \
1204 }
1205 @[ -z "$(findstring DK1C20_config,$@)" ] || \
1206 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1207 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1208 }
1209 @./mkconfig -a DK1C20 nios nios dk1c20 altera
1210
1211DK1S10_safe_32_config \
1212DK1S10_standard_32_config \
wdenkc0bc2e12004-02-09 23:12:24 +00001213DK1S10_mtx_ldk_20_config \
wdenk3be717f2004-01-03 19:43:48 +00001214DK1S10_config: unconfig
1215 @ >include/config.h
1216 @[ -z "$(findstring _safe_32,$@)" ] || \
1217 { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
1218 echo "... NIOS 'safe_32' configuration" ; \
1219 }
1220 @[ -z "$(findstring _standard_32,$@)" ] || \
1221 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1222 echo "... NIOS 'standard_32' configuration" ; \
1223 }
wdenkc0bc2e12004-02-09 23:12:24 +00001224 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
1225 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>include/config.h ; \
1226 echo "... NIOS 'mtx_ldk_20' configuration" ; \
1227 }
wdenk3be717f2004-01-03 19:43:48 +00001228 @[ -z "$(findstring DK1S10_config,$@)" ] || \
1229 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
1230 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
1231 }
1232 @./mkconfig -a DK1S10 nios nios dk1s10 altera
wdenk60164a82003-10-08 23:26:14 +00001233
wdenke28cf632004-03-14 15:20:55 +00001234ADNPESC1_DNPEVA2_base_32_config \
1235ADNPESC1_base_32_config \
1236ADNPESC1_config: unconfig
1237 @ >include/config.h
1238 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001239 { echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
1240 echo "... DNP/EVA2 configuration" ; \
1241 }
wdenke28cf632004-03-14 15:20:55 +00001242 @[ -z "$(findstring _base_32,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001243 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1244 echo "... NIOS 'base_32' configuration" ; \
1245 }
wdenke28cf632004-03-14 15:20:55 +00001246 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
wdenkc35ba4e2004-03-14 22:25:36 +00001247 { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
1248 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
1249 }
wdenke28cf632004-03-14 15:20:55 +00001250 @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
1251
wdenk60164a82003-10-08 23:26:14 +00001252
wdenkb02744a2003-04-05 00:53:31 +00001253#########################################################################
wdenk4ea537d2003-12-07 18:32:37 +00001254## MIPS32 AU1X00
wdenk9b7f3842003-10-09 20:09:04 +00001255#########################################################################
wdenk4ea537d2003-12-07 18:32:37 +00001256dbau1000_config : unconfig
1257 @ >include/config.h
1258 @echo "#define CONFIG_DBAU1000 1" >>include/config.h
1259 @./mkconfig -a dbau1x00 mips mips dbau1x00
1260
1261dbau1100_config : unconfig
1262 @ >include/config.h
1263 @echo "#define CONFIG_DBAU1100 1" >>include/config.h
1264 @./mkconfig -a dbau1x00 mips mips dbau1x00
1265
1266dbau1500_config : unconfig
1267 @ >include/config.h
1268 @echo "#define CONFIG_DBAU1500 1" >>include/config.h
1269 @./mkconfig -a dbau1x00 mips mips dbau1x00
wdenk9b7f3842003-10-09 20:09:04 +00001270
1271#########################################################################
wdenkb02744a2003-04-05 00:53:31 +00001272#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001273
1274clean:
1275 find . -type f \
1276 \( -name 'core' -o -name '*.bak' -o -name '*~' \
1277 -o -name '*.o' -o -name '*.a' \) -print \
1278 | xargs rm -f
wdenk8dba0502003-03-31 16:34:49 +00001279 rm -f examples/hello_world examples/timer \
wdenkb02744a2003-04-05 00:53:31 +00001280 examples/eepro100_eeprom examples/sched \
wdenkabda5ca2003-05-31 18:35:21 +00001281 examples/mem_to_mem_idma2intr examples/82559_eeprom
wdenk7ebf7442002-11-02 23:17:16 +00001282 rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
wdenk270a8bd2004-04-15 21:58:11 +00001283 rm -f tools/mpc86x_clk
wdenk7ebf7442002-11-02 23:17:16 +00001284 rm -f tools/easylogo/easylogo tools/bmp_logo
1285 rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
wdenk9dfa8d12002-12-08 09:53:23 +00001286 rm -f tools/env/fw_printenv tools/env/fw_setenv
wdenk0893c472003-05-20 14:25:27 +00001287 rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
wdenka09491a2004-04-08 22:31:29 +00001288 rm -f board/trab/trab_fkt
wdenk7ebf7442002-11-02 23:17:16 +00001289
1290clobber: clean
1291 find . -type f \
1292 \( -name .depend -o -name '*.srec' -o -name '*.bin' \) \
1293 -print \
1294 | xargs rm -f
1295 rm -f $(OBJS) *.bak tags TAGS
1296 rm -fr *.*~
wdenk0a658552003-08-05 17:43:17 +00001297 rm -f u-boot u-boot.map $(ALL)
wdenk9dfa8d12002-12-08 09:53:23 +00001298 rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
wdenkb02744a2003-04-05 00:53:31 +00001299 rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
wdenkbb2d9272003-06-25 22:26:29 +00001300 rm -f include/asm/proc include/asm/arch include/asm
wdenk7ebf7442002-11-02 23:17:16 +00001301
1302mrproper \
1303distclean: clobber unconfig
1304
1305backup:
1306 F=`basename $(TOPDIR)` ; cd .. ; \
1307 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
1308
1309#########################################################################