blob: ac7ca4a561989bfaed97770d1c273507b41fe6f0 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denk881a87e2006-02-21 17:33:04 +01002# (C) Copyright 2000-2006
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
Wolfgang Denk45a212c2006-07-19 17:52:30 +020010# published by the Free Software Foundatio; either version 2 of
wdenk7ebf7442002-11-02 23:17:16 +000011# 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
Wolfgang Denk881a87e2006-02-21 17:33:04 +010024VERSION = 1
25PATCHLEVEL = 1
Wolfgang Denkc5920042006-11-02 15:15:01 +010026SUBLEVEL = 6
Wolfgang Denk881a87e2006-02-21 17:33:04 +010027EXTRAVERSION =
28U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Marian Balakowiczf9328632006-09-01 19:49:50 +020029VERSION_FILE = $(obj)include/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010030
wdenk7ebf7442002-11-02 23:17:16 +000031HOSTARCH := $(shell uname -m | \
32 sed -e s/i.86/i386/ \
33 -e s/sun4u/sparc64/ \
34 -e s/arm.*/arm/ \
35 -e s/sa110/arm/ \
36 -e s/powerpc/ppc/ \
37 -e s/macppc/ppc/)
38
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020039HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000040 sed -e 's/\(cygwin\).*/cygwin/')
41
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020042export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000043
44# Deal with colliding definitions from tcsh etc.
45VENDOR=
46
47#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020048#
49# U-boot build supports producing a object files to the separate external
50# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020051#
Marian Balakowiczf9328632006-09-01 19:49:50 +020052# 1) Add O= to the make command line
53# 'make O=/tmp/build all'
54#
55# 2) Set environement variable BUILD_DIR to point to the desired location
56# 'export BUILD_DIR=/tmp/build'
57# 'make'
58#
59# The second approach can also be used with a MAKEALL script
60# 'export BUILD_DIR=/tmp/build'
61# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020062#
Marian Balakowiczf9328632006-09-01 19:49:50 +020063# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020064#
Marian Balakowiczf9328632006-09-01 19:49:50 +020065# When none of the above methods is used the local build is performed and
66# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020067#
wdenk7ebf7442002-11-02 23:17:16 +000068
Marian Balakowiczf9328632006-09-01 19:49:50 +020069ifdef O
70ifeq ("$(origin O)", "command line")
71BUILD_DIR := $(O)
72endif
73endif
wdenk7ebf7442002-11-02 23:17:16 +000074
Marian Balakowiczf9328632006-09-01 19:49:50 +020075ifneq ($(BUILD_DIR),)
76saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020077
78# Attempt to create a output directory.
79$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
80
Stefan Roesea73c8db2006-09-12 08:49:07 +020081# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +020082BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
83$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
84endif # ifneq ($(BUILD_DIR),)
85
86OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
87SRCTREE := $(CURDIR)
88TOPDIR := $(SRCTREE)
89LNDIR := $(OBJTREE)
90export TOPDIR SRCTREE OBJTREE
91
92MKCONFIG := $(SRCTREE)/mkconfig
93export MKCONFIG
94
95ifneq ($(OBJTREE),$(SRCTREE))
96REMOTE_BUILD := 1
97export REMOTE_BUILD
98endif
99
100# $(obj) and (src) are defined in config.mk but here in main Makefile
101# we also need them before config.mk is included which is the case for
102# some targets like unconfig, clean, clobber, distclean, etc.
103ifneq ($(OBJTREE),$(SRCTREE))
104obj := $(OBJTREE)/
105src := $(SRCTREE)/
106else
107obj :=
108src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200109endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200110export obj src
111
112#########################################################################
113
114ifeq ($(OBJTREE)/include/config.mk,$(wildcard $(OBJTREE)/include/config.mk))
115
wdenk7ebf7442002-11-02 23:17:16 +0000116# load ARCH, BOARD, and CPU configuration
Marian Balakowiczf9328632006-09-01 19:49:50 +0200117include $(OBJTREE)/include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000118export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200119
wdenk7ebf7442002-11-02 23:17:16 +0000120ifndef CROSS_COMPILE
121ifeq ($(HOSTARCH),ppc)
122CROSS_COMPILE =
123else
wdenk7ebf7442002-11-02 23:17:16 +0000124ifeq ($(ARCH),ppc)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500125CROSS_COMPILE = powerpc-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000126endif
127ifeq ($(ARCH),arm)
wdenkdc7c9a12003-03-26 06:55:25 +0000128CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000129endif
wdenk2262cfe2002-11-18 00:14:45 +0000130ifeq ($(ARCH),i386)
wdenk7a8e9bed2003-05-31 18:35:21 +0000131ifeq ($(HOSTARCH),i386)
132CROSS_COMPILE =
133else
134CROSS_COMPILE = i386-linux-
135endif
wdenk2262cfe2002-11-18 00:14:45 +0000136endif
wdenk43d96162003-03-06 00:02:04 +0000137ifeq ($(ARCH),mips)
138CROSS_COMPILE = mips_4KC-
139endif
wdenk4a551702003-10-08 23:26:14 +0000140ifeq ($(ARCH),nios)
141CROSS_COMPILE = nios-elf-
142endif
wdenk5c952cf2004-10-10 21:27:30 +0000143ifeq ($(ARCH),nios2)
144CROSS_COMPILE = nios2-elf-
145endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000146ifeq ($(ARCH),m68k)
147CROSS_COMPILE = m68k-elf-
148endif
wdenk507bbe32004-04-18 21:13:41 +0000149ifeq ($(ARCH),microblaze)
150CROSS_COMPILE = mb-
151endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100152ifeq ($(ARCH),blackfin)
153CROSS_COMPILE = bfin-elf-
154endif
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200155ifeq ($(ARCH),avr32)
156CROSS_COMPILE = avr32-
157endif
wdenk7ebf7442002-11-02 23:17:16 +0000158endif
159endif
160
161export CROSS_COMPILE
162
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100163# load other configuration
164include $(TOPDIR)/config.mk
165
wdenk7ebf7442002-11-02 23:17:16 +0000166#########################################################################
167# U-Boot objects....order is important (i.e. start must be first)
168
wdenk9fd5e312003-12-07 23:55:12 +0000169OBJS = cpu/$(CPU)/start.o
wdenk2262cfe2002-11-18 00:14:45 +0000170ifeq ($(CPU),i386)
wdenk9fd5e312003-12-07 23:55:12 +0000171OBJS += cpu/$(CPU)/start16.o
172OBJS += cpu/$(CPU)/reset.o
wdenk2262cfe2002-11-18 00:14:45 +0000173endif
wdenk7ebf7442002-11-02 23:17:16 +0000174ifeq ($(CPU),ppc4xx)
wdenk9fd5e312003-12-07 23:55:12 +0000175OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000176endif
wdenk42d1f032003-10-15 23:53:47 +0000177ifeq ($(CPU),mpc85xx)
178OBJS += cpu/$(CPU)/resetvec.o
179endif
Jon Loeligerdebb7352006-04-26 17:58:56 -0500180ifeq ($(CPU),mpc86xx)
181OBJS += cpu/$(CPU)/resetvec.o
182endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100183ifeq ($(CPU),bf533)
184OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
185OBJS += cpu/$(CPU)/cplbhdlr.o cpu/$(CPU)/cplbmgr.o cpu/$(CPU)/flush.o
186endif
wdenk7ebf7442002-11-02 23:17:16 +0000187
Marian Balakowiczf9328632006-09-01 19:49:50 +0200188OBJS := $(addprefix $(obj),$(OBJS))
189
wdenk9fd5e312003-12-07 23:55:12 +0000190LIBS = lib_generic/libgeneric.a
191LIBS += board/$(BOARDDIR)/lib$(BOARD).a
wdenk7ebf7442002-11-02 23:17:16 +0000192LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000193ifdef SOC
194LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
195endif
wdenk7ebf7442002-11-02 23:17:16 +0000196LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000197LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
stroesec419d1d2004-12-16 18:44:40 +0000198 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
wdenk7ebf7442002-11-02 23:17:16 +0000199LIBS += net/libnet.a
200LIBS += disk/libdisk.a
201LIBS += rtc/librtc.a
202LIBS += dtt/libdtt.a
203LIBS += drivers/libdrivers.a
Marian Balakowicz6db39702006-04-08 19:08:06 +0200204LIBS += drivers/nand/libnand.a
205LIBS += drivers/nand_legacy/libnand_legacy.a
wdenk7152b1d2003-09-05 23:19:14 +0000206LIBS += drivers/sk98lin/libsk98lin.a
wdenk7ebf7442002-11-02 23:17:16 +0000207LIBS += post/libpost.a post/cpu/libcpu.a
208LIBS += common/libcommon.a
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +0100209LIBS += $(BOARDLIBS)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200210
211LIBS := $(addprefix $(obj),$(LIBS))
wdenk9fd5e312003-12-07 23:55:12 +0000212.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000213
wdenk4f7cb082003-09-11 23:06:34 +0000214# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000215PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000216
wdenka8c7c702003-12-06 19:49:23 +0000217# The "tools" are needed early, so put this first
218# Don't include stuff already done in $(LIBS)
219SUBDIRS = tools \
220 examples \
221 post \
222 post/cpu
wdenkb028f712003-12-07 21:39:28 +0000223.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000224
Stefan Roese887e2ec2006-09-07 11:51:23 +0200225ifeq ($(CONFIG_NAND_U_BOOT),y)
226NAND_SPL = nand_spl
227U_BOOT_NAND = $(obj)u-boot-nand.bin
228endif
229
Marian Balakowiczf9328632006-09-01 19:49:50 +0200230__OBJS := $(subst $(obj),,$(OBJS))
231__LIBS := $(subst $(obj),,$(LIBS))
232
wdenk7ebf7442002-11-02 23:17:16 +0000233#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000234#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000235
Stefan Roese887e2ec2006-09-07 11:51:23 +0200236ALL = $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND)
wdenk7ebf7442002-11-02 23:17:16 +0000237
wdenkbdccc4f2003-08-05 17:43:17 +0000238all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000239
Marian Balakowiczf9328632006-09-01 19:49:50 +0200240$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000241 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
242
Marian Balakowiczf9328632006-09-01 19:49:50 +0200243$(obj)u-boot.srec: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000244 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
245
Marian Balakowiczf9328632006-09-01 19:49:50 +0200246$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000247 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
248
Marian Balakowiczf9328632006-09-01 19:49:50 +0200249$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000250 ./tools/mkimage -A $(ARCH) -T firmware -C none \
251 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100252 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000253 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
254 -d $< $@
255
Marian Balakowiczf9328632006-09-01 19:49:50 +0200256$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000257 $(OBJDUMP) -d $< > $@
258
Marian Balakowiczf9328632006-09-01 19:49:50 +0200259$(obj)u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
wdenk8bde7f72003-06-27 21:31:46 +0000260 UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200261 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
262 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000263 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000264
Marian Balakowiczf9328632006-09-01 19:49:50 +0200265$(OBJS):
266 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
267
wdenka8c7c702003-12-06 19:49:23 +0000268$(LIBS):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200269 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000270
271$(SUBDIRS):
wdenkb028f712003-12-07 21:39:28 +0000272 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000273
Stefan Roese887e2ec2006-09-07 11:51:23 +0200274$(NAND_SPL): version
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200275 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200276
277$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200278 cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
Stefan Roese887e2ec2006-09-07 11:51:23 +0200279
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100280version:
281 @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
282 echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
283 echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
284 $(TOPDIR)) >> $(VERSION_FILE); \
285 echo "\"" >> $(VERSION_FILE)
286
dzu8f713fd2003-08-07 14:20:31 +0000287gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200288 $(MAKE) -C tools/gdb all || exit 1
289
290updater:
291 $(MAKE) -C tools/updater all || exit 1
292
293env:
294 $(MAKE) -C tools/env all || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000295
wdenk7ebf7442002-11-02 23:17:16 +0000296depend dep:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200297 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000298
Marian Balakowiczf9328632006-09-01 19:49:50 +0200299tags ctags:
300 ctags -w -o $(OBJTREE)/ctags `find $(SUBDIRS) include \
wdenkbda6c8a2004-04-15 21:58:11 +0000301 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
302 fs/cramfs fs/fat fs/fdos fs/jffs2 \
303 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000304 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
305
306etags:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200307 etags -a -o $(OBJTREE)/etags `find $(SUBDIRS) include \
wdenkeedcd072004-09-08 22:03:11 +0000308 lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
309 fs/cramfs fs/fat fs/fdos fs/jffs2 \
310 net disk rtc dtt drivers drivers/sk98lin common \
wdenk7ebf7442002-11-02 23:17:16 +0000311 \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
312
Marian Balakowiczf9328632006-09-01 19:49:50 +0200313$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000314 @$(NM) $< | \
315 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200316 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000317
318#########################################################################
319else
Marian Balakowiczf9328632006-09-01 19:49:50 +0200320all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
321$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
322$(SUBDIRS) version gdbtools updater env depend \
323dep tags ctags etags $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000324 @echo "System not configured - see README" >&2
325 @ exit 1
326endif
327
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200328.PHONY : CHANGELOG
329CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400330 git log --no-merges U-Boot-1_1_5.. | \
331 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200332
wdenk7ebf7442002-11-02 23:17:16 +0000333#########################################################################
334
335unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200336 @rm -f $(obj)include/config.h $(obj)include/config.mk \
337 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000338
339#========================================================================
340# PowerPC
341#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000342
343#########################################################################
344## MPC5xx Systems
345#########################################################################
346
wdenk5e5f9ed2005-04-13 23:15:10 +0000347canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200348 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000349
wdenk0db5bca2003-03-31 17:27:09 +0000350cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200351 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000352
wdenkdb01a2e2004-04-15 23:14:49 +0000353PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200354 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000355
wdenk7ebf7442002-11-02 23:17:16 +0000356#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000357## MPC5xxx Systems
358#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000359
Wolfgang Denkdafba162005-08-12 00:22:49 +0200360aev_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200361 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200
Wolfgang Denkdafba162005-08-12 00:22:49 +0200362
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200363BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200364 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200365
Stefan Roese5e4b3362005-08-22 17:51:53 +0200366cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200367 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200368
wdenka87589d2005-06-10 10:00:19 +0000369hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200370 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000371
wdenke35745b2004-04-18 23:32:11 +0000372Lite5200_config \
373Lite5200_LOWBOOT_config \
374Lite5200_LOWBOOT08_config \
375icecube_5200_config \
376icecube_5200_LOWBOOT_config \
377icecube_5200_LOWBOOT08_config \
378icecube_5200_DDR_config \
379icecube_5200_DDR_LOWBOOT_config \
380icecube_5200_DDR_LOWBOOT08_config \
381icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200382 @mkdir -p $(obj)include
383 @mkdir -p $(obj)board/icecube
384 @ >$(obj)include/config.h
wdenk17d704e2004-04-10 20:43:50 +0000385 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
386 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200387 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
388 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000389 fi ; \
wdenk5cf9da42003-11-07 13:42:26 +0000390 echo "... with LOWBOOT configuration" ; \
391 }
392 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200393 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000394 echo "... with 8 MB flash only" ; \
wdenk17d704e2004-04-10 20:43:50 +0000395 echo "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000396 }
wdenkb2001f22003-12-20 22:45:10 +0000397 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200398 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +0000399 echo "... DDR memory revision" ; \
400 }
wdenkd4ca31c2004-01-02 14:00:00 +0000401 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200402 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000403 echo "... with MPC5200 processor" ; \
404 }
wdenka0f2fe52003-10-28 09:14:21 +0000405 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200406 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk945af8d2003-07-16 21:53:01 +0000407 echo "... with MGT5100 processor" ; \
408 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200409 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000410
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200411v38b_config: unconfig
Bartlomiej Sieka82d9c9e2006-11-01 01:34:29 +0100412 @./mkconfig -a v38b ppc mpc5xxx v38b
Bartlomiej Sieka4707fb52006-10-13 21:09:09 +0200413
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100414inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200415 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000416
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100417lite5200b_config \
418lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200419 @mkdir -p $(obj)include
420 @mkdir -p $(obj)board/icecube
421 @ >$(obj)include/config.h
422 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100423 @ echo "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200424 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
425 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100426 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200427 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100428 echo "... with LOWBOOT configuration" ; \
429 }
430 @ echo "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200431 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100432
Stefan Roesef1ee9822006-03-04 14:57:03 +0100433mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200434mcc200_SDRAM_config \
435mcc200_highboot_config \
436mcc200_COM12_config \
437mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200438mcc200_COM12_highboot_config \
439mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200440mcc200_highboot_SDRAM_config \
441prs200_config \
442prs200_DDR_config \
443prs200_highboot_config \
444prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200445 @mkdir -p $(obj)include
446 @mkdir -p $(obj)board/mcc200
447 @ >$(obj)include/config.h
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200448 @[ -n "$(findstring highboot,$@)" ] || \
449 { echo "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100450 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200451 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200452 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200453 echo "... with highboot configuration" ; \
454 }
455 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200456 { if [ -n "$(findstring mcc200,$@)" ]; \
457 then \
458 echo "... with DDR" ; \
459 else \
460 if [ -n "$(findstring _DDR,$@)" ];\
461 then \
462 echo "... with DDR" ; \
463 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200464 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200465 echo "... with SDRAM" ; \
466 fi; \
467 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200468 }
469 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200470 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200471 echo "... with SDRAM" ; \
472 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200473 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200474 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200475 echo "... with console on COM12" ; \
476 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200477 @[ -z "$(findstring prs200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200478 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200479 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200480 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100481
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200482o2dnt_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200483 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200484
Stefan Roese5e4b3362005-08-22 17:51:53 +0200485pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200486 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200487
wdenk89394042004-08-04 21:56:49 +0000488PM520_config \
489PM520_DDR_config \
490PM520_ROMBOOT_config \
491PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200492 @mkdir -p $(obj)include
493 @ >$(obj)include/config.h
wdenk89394042004-08-04 21:56:49 +0000494 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200495 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000496 echo "... DDR memory revision" ; \
497 }
498 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200499 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000500 echo "... booting from 8-bit flash" ; \
501 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200502 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000503
Wolfgang Denk6624b682006-02-22 10:25:39 +0100504smmaco4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200505 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100506
507spieval_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200508 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100509
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200510TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200511TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200512 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200513 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200514 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200515 echo "... with MPC5200B processor" ; \
516 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200517 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200518
wdenkd4ca31c2004-01-02 14:00:00 +0000519MINI5200_config \
520EVAL5200_config \
521TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200522 @mkdir -p $(obj)include
523 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
524 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000525
wdenk6c7a1402004-07-11 19:17:20 +0000526Total5100_config \
527Total5200_config \
528Total5200_lowboot_config \
529Total5200_Rev2_config \
530Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200531 @mkdir -p $(obj)include
532 @mkdir -p $(obj)board/total5200
533 @ >$(obj)include/config.h
wdenk6c7a1402004-07-11 19:17:20 +0000534 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200535 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000536 echo "... with MGT5100 processor" ; \
537 }
538 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200539 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000540 echo "... with MPC5200 processor" ; \
541 }
542 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200543 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000544 echo "... revision 1 board" ; \
545 }
546 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200547 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
wdenk6c7a1402004-07-11 19:17:20 +0000548 echo "... revision 2 board" ; \
549 }
550 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200551 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
wdenk6c7a1402004-07-11 19:17:20 +0000552 echo "... with lowboot configuration" ; \
553 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200554 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000555
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200556cam5200_config \
557fo300_config \
558MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200559TQM5200S_config \
560TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200561TQM5200_B_config \
562TQM5200_B_HIGHBOOT_config \
563TQM5200_config \
564TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200565 @mkdir -p $(obj)include
566 @mkdir -p $(obj)board/tqm5200
567 @ >$(obj)include/config.h
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200568 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200569 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
570 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
571 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200572 echo "... TQM5200S on Cam5200" ; \
573 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200574 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200575 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200576 echo "... TQM5200 on FO300" ; \
577 }
wdenk89394042004-08-04 21:56:49 +0000578 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200579 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
wdenk89394042004-08-04 21:56:49 +0000580 echo "... TQM5200_AC on MiniFAP" ; \
wdenk56523f12004-07-11 17:40:54 +0000581 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200582 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200583 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200584 echo "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000585 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200586 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200587 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200588 }
589 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200590 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
591 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200592 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200593 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200594 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200595 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200596 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200
wdenk56523f12004-07-11 17:40:54 +0000597
wdenk945af8d2003-07-16 21:53:01 +0000598#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000599## MPC8xx Systems
600#########################################################################
601
wdenk2d24a3a2004-06-09 21:50:45 +0000602Adder_config \
603Adder87x_config \
wdenk26238132004-07-09 22:51:01 +0000604AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000605 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200606 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000607 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200608 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
609 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000610
wdenk180d3f72004-01-04 16:28:35 +0000611ADS860_config \
wdenk180d3f72004-01-04 16:28:35 +0000612FADS823_config \
613FADS850SAR_config \
614MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000615MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000616FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200617 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000618
619AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200620 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000621
622c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200623 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000624
625CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200626 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000627
628cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200629 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000630
wdenk3bac3512003-03-12 10:41:04 +0000631ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200632 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000633
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100634EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200635 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100636
wdenk7ebf7442002-11-02 23:17:16 +0000637ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200638 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000639
640ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200641 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000642
wdenk7ebf7442002-11-02 23:17:16 +0000643FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200644 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000645
wdenk7aa78612003-05-03 15:50:43 +0000646xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
647
648GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000649GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200650 @mkdir -p $(obj)include
651 @ >$(obj)include/config.h
wdenk7aa78612003-05-03 15:50:43 +0000652 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200653 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
wdenk7aa78612003-05-03 15:50:43 +0000654 echo "With reduced H/W feature set (SC)..." ; \
655 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200656 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000657
658GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200659 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000660
661GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200662 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000663
664hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200665 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000666
wdenkc40b2952004-03-13 23:29:43 +0000667HMI10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200668 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenkc40b2952004-03-13 23:29:43 +0000669
wdenk7ebf7442002-11-02 23:17:16 +0000670IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200671 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000672
673xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
674
675ICU862_100MHz_config \
676ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200677 @mkdir -p $(obj)include
678 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000679 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200680 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000681 echo "... with 100MHz system clock" ; \
682 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200683 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000684
685IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200686 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000687
688IVML24_256_config \
689IVML24_128_config \
690IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200691 @mkdir -p $(obj)include
692 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000693 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200694 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000695 }
696 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200697 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000698 }
699 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200700 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000701 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200702 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000703
704IVMS8_256_config \
705IVMS8_128_config \
706IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200707 @mkdir -p $(obj)include
708 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000709 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200710 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000711 }
712 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200713 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000714 }
715 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200716 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000717 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200718 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000719
wdenk56f94be2002-11-05 16:35:14 +0000720KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200721 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000722
723KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200724 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000725
wdenk7ebf7442002-11-02 23:17:16 +0000726LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200727 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000728
729lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200730 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000731
732MBX_config \
733MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200734 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000735
736MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200737 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000738
739MVS1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200740 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mvs1
wdenk7ebf7442002-11-02 23:17:16 +0000741
wdenk993cad92003-06-26 22:04:09 +0000742xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
743
744NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000745NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200746 @mkdir -p $(obj)include
747 @ >$(obj)include/config.h
wdenk993cad92003-06-26 22:04:09 +0000748 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200749 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000750 echo "... Version 1" ; \
751 }
752 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200753 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
wdenk993cad92003-06-26 22:04:09 +0000754 echo "... Version 2" ; \
755 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200756 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000757
wdenkc26e4542004-04-18 10:13:26 +0000758xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
759
760NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000761NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200762 @mkdir -p $(obj)include
763 @ >$(obj)include/config.h
wdenkc26e4542004-04-18 10:13:26 +0000764 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200765 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000766 }
767 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200768 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000769 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200770 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000771
wdenk79fa88f2004-06-07 23:46:25 +0000772xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000773
wdenk79fa88f2004-06-07 23:46:25 +0000774NETTA_ISDN_6412_SWAPHOOK_config \
775NETTA_ISDN_SWAPHOOK_config \
776NETTA_6412_SWAPHOOK_config \
777NETTA_SWAPHOOK_config \
778NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000779NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000780NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000781NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200782 @mkdir -p $(obj)include
783 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000784 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200785 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000786 }
wdenk79fa88f2004-06-07 23:46:25 +0000787 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200788 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000789 }
790 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200791 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000792 }
793 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200794 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000795 }
796 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200797 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000798 }
799 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200800 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000801 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200802 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +0000803
wdenk79fa88f2004-06-07 23:46:25 +0000804xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
805
806NETTA2_V2_config \
807NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200808 @mkdir -p $(obj)include
809 @ >$(obj)include/config.h
wdenk79fa88f2004-06-07 23:46:25 +0000810 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200811 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000812 }
813 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200814 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000815 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200816 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +0000817
dzu@denx.dea367d422006-04-19 11:52:46 +0200818NC650_Rev1_config \
819NC650_Rev2_config \
820CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200821 @mkdir -p $(obj)include
822 @ >$(obj)include/config.h
dzu@denx.dea367d422006-04-19 11:52:46 +0200823 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200824 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
825 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200826 }
827 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200828 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200829 }
830 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200831 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +0200832 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200833 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +0000834
wdenk7ebf7442002-11-02 23:17:16 +0000835NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200836 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +0000837
838pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200839 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +0000840
wdenk3bbc8992003-12-07 22:27:15 +0000841QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200842 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000843
844QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200845 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +0000846
847QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200848 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +0000849
wdenkda93ed82004-09-29 11:02:56 +0000850quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200851 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +0000852
wdenk7ebf7442002-11-02 23:17:16 +0000853R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200854 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +0000855
wdenk682011f2003-06-03 23:54:09 +0000856RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200857 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +0000858
wdenk7ebf7442002-11-02 23:17:16 +0000859RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200860 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +0000861
862RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200863 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +0000864
wdenke63c8ee2004-06-09 21:04:48 +0000865RPXlite_DW_64_config \
866RPXlite_DW_LCD_config \
867RPXlite_DW_64_LCD_config \
868RPXlite_DW_NVRAM_config \
869RPXlite_DW_NVRAM_64_config \
870RPXlite_DW_NVRAM_LCD_config \
871RPXlite_DW_NVRAM_64_LCD_config \
872RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200873 @mkdir -p $(obj)include
874 @ >$(obj)include/config.h
wdenke63c8ee2004-06-09 21:04:48 +0000875 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200876 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000877 echo "... with 64MHz system clock ..."; \
878 }
879 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200880 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
881 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000882 echo "... with LCD display ..."; \
883 }
884 @[ -z "$(findstring _NVRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200885 { echo "#define CFG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
wdenke63c8ee2004-06-09 21:04:48 +0000886 echo "... with ENV in NVRAM ..."; \
887 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200888 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +0000889
wdenk73a8b272003-06-05 19:27:42 +0000890rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200891 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +0000892
wdenk7ebf7442002-11-02 23:17:16 +0000893RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200894 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000895
896RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200897 @mkdir -p $(obj)include
898 @echo "#define CONFIG_LCD" >$(obj)include/config.h
899 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
900 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +0000901
902SM850_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200903 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000904
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200905spc1920_config:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200906 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +0200907
wdenk7ebf7442002-11-02 23:17:16 +0000908SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200909 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +0000910
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200911stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200912 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +0200913
wdenkdc7c9a12003-03-26 06:55:25 +0000914svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200915 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +0000916
wdenk7ebf7442002-11-02 23:17:16 +0000917SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200918 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +0000919
wdenkdb2f721f2003-03-06 00:58:30 +0000920# EMK MPC8xx based modules
921TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200922 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +0000923
wdenk7ebf7442002-11-02 23:17:16 +0000924# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +0000925# Only 855 and 860 boards may come with FEC
926# and only 823 boards may have LCD support
927xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +0000928
929FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +0000930FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +0000931NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +0000932TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000933TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +0000934TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000935TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +0000936TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +0000937TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +0000938TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +0000939TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +0000940TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +0000941TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +0000942TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200943TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +0200944TQM885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +0200945virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200946 @mkdir -p $(obj)include
947 @ >$(obj)include/config.h
wdenk7ebf7442002-11-02 23:17:16 +0000948 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200949 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
950 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000951 echo "... with LCD display" ; \
952 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200953 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000954
955TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200956 @mkdir -p $(obj)include
957 @echo "#define CONFIG_LCD" >$(obj)include/config.h
958 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
959 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
wdenk7ebf7442002-11-02 23:17:16 +0000960
wdenkec0aee72004-12-19 09:58:11 +0000961uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200962 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +0000963
wdenk608c9142003-01-13 23:54:46 +0000964v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200965 @mkdir -p $(obj)include
966 @echo "#define CONFIG_LCD" >$(obj)include/config.h
967 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
968 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +0000969
dzu91e940d2003-09-25 22:32:40 +0000970wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200971 @mkdir -p $(obj)include
972 @echo "#define CONFIG_LCD" >$(obj)include/config.h
973 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
974 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx
dzu91e940d2003-09-25 22:32:40 +0000975
wdenk7ebf7442002-11-02 23:17:16 +0000976#########################################################################
977## PPC4xx Systems
978#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +0000979xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +0000980
981ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200982 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +0000983
Wolfgang Denk7521af12005-10-09 01:04:33 +0200984AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200985 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +0200986
stroesec419d1d2004-12-16 18:44:40 +0000987APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200988 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +0000989
wdenk7ebf7442002-11-02 23:17:16 +0000990AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200991 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +0000992
stroese549826e2003-05-23 11:41:44 +0000993ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200994 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +0000995
Stefan Roese8a316c92005-08-01 16:49:12 +0200996bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200997 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +0200998
999bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001000 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001001
wdenk7ebf7442002-11-02 23:17:16 +00001002CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001003 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001004
wdenk1d6f9722004-09-09 17:44:35 +00001005CATcenter_config \
1006CATcenter_25_config \
1007CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001008 @mkdir -p $(obj)include
1009 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1010 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001011 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001012 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001013 echo "SysClk = 25MHz" ; \
1014 }
1015 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001016 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001017 echo "SysClk = 33MHz" ; \
1018 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001019 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001020
Stefan Roese7644f162005-09-22 09:16:57 +02001021CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001022 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001023
stroese549826e2003-05-23 11:41:44 +00001024CPCI405_config \
1025CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001026CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001027CPCI405AB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001028 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
1029 @echo "BOARD_REVISION = $(@:_config=)" >> $(obj)include/config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001030
1031CPCI440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001032 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci440 esd
wdenk7ebf7442002-11-02 23:17:16 +00001033
1034CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001035 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001036
wdenkdb01a2e2004-04-15 23:14:49 +00001037CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001038 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001039
wdenkcd0a9de2004-02-23 20:48:38 +00001040csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001041 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001042
wdenkaa245092004-06-09 12:47:02 +00001043csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001044 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001045
wdenk7ebf7442002-11-02 23:17:16 +00001046DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001047 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001048
stroese72cd5aa2003-09-12 08:57:15 +00001049DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001050 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001051
wdenk7ebf7442002-11-02 23:17:16 +00001052DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001053 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001054
Stefan Roese8a316c92005-08-01 16:49:12 +02001055ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001056 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001057
wdenkdb01a2e2004-04-15 23:14:49 +00001058ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001059 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001060
wdenkdb01a2e2004-04-15 23:14:49 +00001061EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001062 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001063
stroesec419d1d2004-12-16 18:44:40 +00001064G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001065 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001066
1067HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001068 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001069
stroese72cd5aa2003-09-12 08:57:15 +00001070HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001071 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001072
wdenkdb01a2e2004-04-15 23:14:49 +00001073JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001074 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001075
Stefan Roeseb79316f2005-08-15 12:31:23 +02001076KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001077 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001078
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001079luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001080 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001081
Stefan Roeseb79316f2005-08-15 12:31:23 +02001082METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001083 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001084
wdenkdb01a2e2004-04-15 23:14:49 +00001085MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001086 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001087
wdenkdb01a2e2004-04-15 23:14:49 +00001088MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001089 @mkdir -p $(obj)include
1090 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
wdenkf3e0de62003-06-04 15:05:30 +00001091 @echo "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001092 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001093
wdenkdb01a2e2004-04-15 23:14:49 +00001094ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001095 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001096
wdenkdb01a2e2004-04-15 23:14:49 +00001097ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001098 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001099
Stefan Roese8a316c92005-08-01 16:49:12 +02001100ocotea_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001101 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocotea amcc
wdenk0e6d7982004-03-14 00:07:33 +00001102
wdenk7ebf7442002-11-02 23:17:16 +00001103OCRTC_config \
1104ORSG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001105 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ocrtc esd
wdenk7ebf7442002-11-02 23:17:16 +00001106
Stefan Roese5568e612005-11-22 13:20:42 +01001107p3p440_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001108 @$(MKCONFIG) $(@:_config=) ppc ppc4xx p3p440 prodrive
Stefan Roese5568e612005-11-22 13:20:42 +01001109
wdenk7ebf7442002-11-02 23:17:16 +00001110PCI405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001111 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001112
Stefan Roesea4c8d132006-06-02 16:18:04 +02001113pcs440ep_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001114 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pcs440ep
Stefan Roesea4c8d132006-06-02 16:18:04 +02001115
wdenkdb01a2e2004-04-15 23:14:49 +00001116PIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001117 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001118
stroese72cd5aa2003-09-12 08:57:15 +00001119PLU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001120 @$(MKCONFIG) $(@:_config=) ppc ppc4xx plu405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001121
stroese549826e2003-05-23 11:41:44 +00001122PMC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001123 @$(MKCONFIG) $(@:_config=) ppc ppc4xx pmc405 esd
stroese549826e2003-05-23 11:41:44 +00001124
wdenk281e00a2004-08-01 22:48:16 +00001125PPChameleonEVB_config \
wdenke55ca7e2004-07-01 21:40:08 +00001126PPChameleonEVB_BA_25_config \
1127PPChameleonEVB_ME_25_config \
1128PPChameleonEVB_HI_25_config \
1129PPChameleonEVB_BA_33_config \
1130PPChameleonEVB_ME_33_config \
1131PPChameleonEVB_HI_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001132 @mkdir -p $(obj)include
1133 @ >$(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001134 @[ -z "$(findstring EVB_BA,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001135 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001136 echo "... BASIC model" ; \
1137 }
wdenk1d6f9722004-09-09 17:44:35 +00001138 @[ -z "$(findstring EVB_ME,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001139 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001140 echo "... MEDIUM model" ; \
1141 }
wdenk1d6f9722004-09-09 17:44:35 +00001142 @[ -z "$(findstring EVB_HI,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001143 { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>$(obj)include/config.h ; \
wdenkfbe4b5c2003-10-06 21:55:32 +00001144 echo "... HIGH-END model" ; \
1145 }
wdenke55ca7e2004-07-01 21:40:08 +00001146 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001147 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001148 echo "SysClk = 25MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001149 }
1150 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001151 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>$(obj)include/config.h ; \
wdenk1d6f9722004-09-09 17:44:35 +00001152 echo "SysClk = 33MHz" ; \
wdenke55ca7e2004-07-01 21:40:08 +00001153 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001154 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk12f34242003-09-02 22:48:03 +00001155
Stefan Roese854bc8d2006-09-13 13:51:58 +02001156rainier_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001157 @mkdir -p $(obj)include
1158 @echo "#define CONFIG_RAINIER" > $(obj)include/config.h
Stefan Roese854bc8d2006-09-13 13:51:58 +02001159 @echo "Configuring for rainier board as subset of sequoia..."
1160 @$(MKCONFIG) -a sequoia ppc ppc4xx sequoia amcc
1161
1162rainier_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001163 @mkdir -p $(obj)include
1164 @mkdir -p $(obj)nand_spl
1165 @mkdir -p $(obj)board/amcc/sequoia
1166 @echo "#define CONFIG_RAINIER" > $(obj)include/config.h
Stefan Roese854bc8d2006-09-13 13:51:58 +02001167 @echo "Configuring for rainier board as subset of sequoia..."
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001168 @echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h
Stefan Roese854bc8d2006-09-13 13:51:58 +02001169 @echo "Compile NAND boot image for sequoia"
1170 @$(MKCONFIG) -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001171 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1172 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Stefan Roese854bc8d2006-09-13 13:51:58 +02001173
wdenk652a10c2005-01-09 23:48:14 +00001174sbc405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001175 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sbc405
wdenk652a10c2005-01-09 23:48:14 +00001176
Stefan Roese887e2ec2006-09-07 11:51:23 +02001177sequoia_config: unconfig
1178 @$(MKCONFIG) $(@:_config=) ppc ppc4xx sequoia amcc
1179
1180sequoia_nand_config: unconfig
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001181 @mkdir -p $(obj)include
1182 @mkdir -p $(obj)nand_spl
1183 @mkdir -p $(obj)board/amcc/sequoia
1184 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roese887e2ec2006-09-07 11:51:23 +02001185 @echo "Compile NAND boot image for sequoia"
1186 @$(MKCONFIG) -a sequoia ppc ppc4xx sequoia amcc
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02001187 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/sequoia/config.tmp
1188 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Stefan Roese887e2ec2006-09-07 11:51:23 +02001189
Stefan Roese8a316c92005-08-01 16:49:12 +02001190sycamore_config: unconfig
1191 @echo "Configuring for sycamore board as subset of walnut..."
Marian Balakowiczf9328632006-09-01 19:49:50 +02001192 @$(MKCONFIG) -a walnut ppc ppc4xx walnut amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001193
stroese72cd5aa2003-09-12 08:57:15 +00001194VOH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001195 @$(MKCONFIG) $(@:_config=) ppc ppc4xx voh405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001196
stroesec419d1d2004-12-16 18:44:40 +00001197VOM405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001198 @$(MKCONFIG) $(@:_config=) ppc ppc4xx vom405 esd
stroesec419d1d2004-12-16 18:44:40 +00001199
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001200CMS700_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001201 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
Stefan Roesefeaedfc2005-11-15 10:35:59 +01001202
wdenk7ebf7442002-11-02 23:17:16 +00001203W7OLMC_config \
1204W7OLMG_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001205 @$(MKCONFIG) $(@:_config=) ppc ppc4xx w7o
wdenk7ebf7442002-11-02 23:17:16 +00001206
Stefan Roese8a316c92005-08-01 16:49:12 +02001207walnut_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001208 @$(MKCONFIG) $(@:_config=) ppc ppc4xx walnut amcc
wdenk7ebf7442002-11-02 23:17:16 +00001209
stroesec419d1d2004-12-16 18:44:40 +00001210WUH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001211 @$(MKCONFIG) $(@:_config=) ppc ppc4xx wuh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001212
wdenkdb01a2e2004-04-15 23:14:49 +00001213XPEDITE1K_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001214 @$(MKCONFIG) $(@:_config=) ppc ppc4xx xpedite1k
wdenkba56f622004-02-06 23:19:44 +00001215
Stefan Roese8a316c92005-08-01 16:49:12 +02001216yosemite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001217 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yosemite amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001218
1219yellowstone_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001220 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yellowstone amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001221
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001222yucca_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001223 @$(MKCONFIG) $(@:_config=) ppc ppc4xx yucca amcc
Marian Balakowicz6c5879f2006-06-30 16:30:46 +02001224
wdenk7ebf7442002-11-02 23:17:16 +00001225#########################################################################
wdenk983fda82004-10-28 00:09:35 +00001226## MPC8220 Systems
1227#########################################################################
Wolfgang Denkdc17fb62005-08-03 22:32:02 +02001228
1229Alaska8220_config \
1230Yukon8220_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001231 @$(MKCONFIG) $(@:_config=) ppc mpc8220 alaska
wdenk983fda82004-10-28 00:09:35 +00001232
wdenk12b43d52005-04-05 21:57:18 +00001233sorcery_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001234 @$(MKCONFIG) $(@:_config=) ppc mpc8220 sorcery
wdenk12b43d52005-04-05 21:57:18 +00001235
wdenk983fda82004-10-28 00:09:35 +00001236#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001237## MPC824x Systems
1238#########################################################################
wdenkefa329c2004-03-23 20:18:25 +00001239xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
wdenk3bac3512003-03-12 10:41:04 +00001240
wdenk03329902003-06-20 22:36:30 +00001241A3000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001242 @$(MKCONFIG) $(@:_config=) ppc mpc824x a3000
wdenk03329902003-06-20 22:36:30 +00001243
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001244barco_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001245 @$(MKCONFIG) $(@:_config=) ppc mpc824x barco
Wolfgang Denk8e6f1a82005-09-25 18:59:36 +02001246
wdenk7ebf7442002-11-02 23:17:16 +00001247BMW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001248 @$(MKCONFIG) $(@:_config=) ppc mpc824x bmw
wdenk7ebf7442002-11-02 23:17:16 +00001249
wdenk3bac3512003-03-12 10:41:04 +00001250CPC45_config \
1251CPC45_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001252 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc824x cpc45
1253 @cd $(obj)include ; \
wdenk3bac3512003-03-12 10:41:04 +00001254 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1255 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1256 echo "... booting from 8-bit flash" ; \
1257 else \
1258 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1259 echo "... booting from 64-bit flash" ; \
1260 fi; \
1261 echo "export CONFIG_BOOT_ROM" >> config.mk;
1262
wdenk7ebf7442002-11-02 23:17:16 +00001263CU824_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001264 @$(MKCONFIG) $(@:_config=) ppc mpc824x cu824
wdenk7ebf7442002-11-02 23:17:16 +00001265
wdenk7abf0c52004-04-18 21:45:42 +00001266debris_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001267 @$(MKCONFIG) $(@:_config=) ppc mpc824x debris etin
wdenk7abf0c52004-04-18 21:45:42 +00001268
wdenk80885a92004-02-26 23:46:20 +00001269eXalion_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001270 @$(MKCONFIG) $(@:_config=) ppc mpc824x eXalion
wdenk80885a92004-02-26 23:46:20 +00001271
wdenk756f5862005-04-03 15:51:42 +00001272HIDDEN_DRAGON_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001273 @$(MKCONFIG) $(@:_config=) ppc mpc824x hidden_dragon
wdenk756f5862005-04-03 15:51:42 +00001274
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001275kvme080_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001276 @$(MKCONFIG) $(@:_config=) ppc mpc824x kvme080 etin
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +02001277
wdenk7ebf7442002-11-02 23:17:16 +00001278MOUSSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001279 @$(MKCONFIG) $(@:_config=) ppc mpc824x mousse
wdenk7ebf7442002-11-02 23:17:16 +00001280
1281MUSENKI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001282 @$(MKCONFIG) $(@:_config=) ppc mpc824x musenki
wdenk7ebf7442002-11-02 23:17:16 +00001283
wdenkb4676a22003-12-07 19:24:00 +00001284MVBLUE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001285 @$(MKCONFIG) $(@:_config=) ppc mpc824x mvblue
wdenkb4676a22003-12-07 19:24:00 +00001286
wdenk7ebf7442002-11-02 23:17:16 +00001287OXC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001288 @$(MKCONFIG) $(@:_config=) ppc mpc824x oxc
wdenk7ebf7442002-11-02 23:17:16 +00001289
1290PN62_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001291 @$(MKCONFIG) $(@:_config=) ppc mpc824x pn62
wdenk7ebf7442002-11-02 23:17:16 +00001292
1293Sandpoint8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001294 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001295
1296Sandpoint8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001297 @$(MKCONFIG) $(@:_config=) ppc mpc824x sandpoint
wdenk7ebf7442002-11-02 23:17:16 +00001298
wdenk466b7412004-07-10 22:35:59 +00001299sbc8240_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001300 @$(MKCONFIG) $(@:_config=) ppc mpc824x sbc8240
wdenk466b7412004-07-10 22:35:59 +00001301
wdenkd1cbe852003-06-28 17:24:46 +00001302SL8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001303 @$(MKCONFIG) $(@:_config=) ppc mpc824x sl8245
wdenkd1cbe852003-06-28 17:24:46 +00001304
wdenk7ebf7442002-11-02 23:17:16 +00001305utx8245_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001306 @$(MKCONFIG) $(@:_config=) ppc mpc824x utx8245
wdenk7ebf7442002-11-02 23:17:16 +00001307
1308#########################################################################
1309## MPC8260 Systems
1310#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001311
wdenk54387ac2003-10-08 22:45:44 +00001312atc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001313 @$(MKCONFIG) $(@:_config=) ppc mpc8260 atc
wdenk54387ac2003-10-08 22:45:44 +00001314
wdenk7ebf7442002-11-02 23:17:16 +00001315cogent_mpc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001316 @$(MKCONFIG) $(@:_config=) ppc mpc8260 cogent
wdenk7ebf7442002-11-02 23:17:16 +00001317
1318CPU86_config \
1319CPU86_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001320 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu86
1321 @cd $(obj)include ; \
wdenk7ebf7442002-11-02 23:17:16 +00001322 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1323 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1324 echo "... booting from 8-bit flash" ; \
1325 else \
1326 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1327 echo "... booting from 64-bit flash" ; \
1328 fi; \
1329 echo "export CONFIG_BOOT_ROM" >> config.mk;
1330
wdenk384cc682005-04-03 22:35:21 +00001331CPU87_config \
1332CPU87_ROMBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001333 @$(MKCONFIG) $(call xtract_82xx,$@) ppc mpc8260 cpu87
1334 @cd $(obj)include ; \
wdenk384cc682005-04-03 22:35:21 +00001335 if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1336 echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
1337 echo "... booting from 8-bit flash" ; \
1338 else \
1339 echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
1340 echo "... booting from 64-bit flash" ; \
1341 fi; \
1342 echo "export CONFIG_BOOT_ROM" >> config.mk;
1343
Wolfgang Denkf901a832005-08-06 01:42:58 +02001344ep8248_config \
1345ep8248E_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001346 @$(MKCONFIG) ep8248 ppc mpc8260 ep8248
Wolfgang Denkf901a832005-08-06 01:42:58 +02001347
wdenk7ebf7442002-11-02 23:17:16 +00001348ep8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001349 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ep8260
wdenk7ebf7442002-11-02 23:17:16 +00001350
Wolfgang Denk8d4ac792006-10-09 00:35:30 +02001351ep82xxm_config: unconfig
1352 @./mkconfig $(@:_config=) ppc mpc8260 ep82xxm
1353
wdenk7ebf7442002-11-02 23:17:16 +00001354gw8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001355 @$(MKCONFIG) $(@:_config=) ppc mpc8260 gw8260
wdenk7ebf7442002-11-02 23:17:16 +00001356
1357hymod_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001358 @$(MKCONFIG) $(@:_config=) ppc mpc8260 hymod
wdenk7ebf7442002-11-02 23:17:16 +00001359
wdenk9dd41a72005-05-12 22:48:09 +00001360IDS8247_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001361 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ids8247
wdenk9dd41a72005-05-12 22:48:09 +00001362
wdenk7ebf7442002-11-02 23:17:16 +00001363IPHASE4539_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001364 @$(MKCONFIG) $(@:_config=) ppc mpc8260 iphase4539
wdenk7ebf7442002-11-02 23:17:16 +00001365
wdenkc3c7f862004-06-09 14:47:54 +00001366ISPAN_config \
1367ISPAN_REVB_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001368 @mkdir -p $(obj)include
wdenkc3c7f862004-06-09 14:47:54 +00001369 @if [ "$(findstring _REVB_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001370 echo "#define CFG_REV_B" > $(obj)include/config.h ; \
wdenkc3c7f862004-06-09 14:47:54 +00001371 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001372 @$(MKCONFIG) -a ISPAN ppc mpc8260 ispan
wdenkc3c7f862004-06-09 14:47:54 +00001373
wdenk04a85b32004-04-15 18:22:41 +00001374MPC8260ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001375MPC8260ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001376MPC8260ADS_33MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001377MPC8260ADS_33MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001378MPC8260ADS_40MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001379MPC8260ADS_40MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001380MPC8272ADS_config \
wdenk901787d2005-04-03 23:22:21 +00001381MPC8272ADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001382PQ2FADS_config \
wdenk901787d2005-04-03 23:22:21 +00001383PQ2FADS_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001384PQ2FADS-VR_config \
wdenk901787d2005-04-03 23:22:21 +00001385PQ2FADS-VR_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001386PQ2FADS-ZU_config \
wdenk901787d2005-04-03 23:22:21 +00001387PQ2FADS-ZU_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001388PQ2FADS-ZU_66MHz_config \
wdenk901787d2005-04-03 23:22:21 +00001389PQ2FADS-ZU_66MHz_lowboot_config \
wdenk04a85b32004-04-15 18:22:41 +00001390 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001391 @mkdir -p $(obj)include
1392 @mkdir -p $(obj)board/mpc8260ads
wdenk04a85b32004-04-15 18:22:41 +00001393 $(if $(findstring PQ2FADS,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001394 @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > $(obj)include/config.h, \
1395 @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > $(obj)include/config.h)
wdenk04a85b32004-04-15 18:22:41 +00001396 $(if $(findstring MHz,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001397 @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> $(obj)include/config.h, \
wdenk04a85b32004-04-15 18:22:41 +00001398 $(if $(findstring VR,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001399 @echo "#define CONFIG_8260_CLKIN 66000000" >> $(obj)include/config.h))
wdenk901787d2005-04-03 23:22:21 +00001400 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001401 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/mpc8260ads/config.tmp ; \
wdenk901787d2005-04-03 23:22:21 +00001402 echo "... with lowboot configuration" ; \
1403 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001404 @$(MKCONFIG) -a MPC8260ADS ppc mpc8260 mpc8260ads
wdenk7ebf7442002-11-02 23:17:16 +00001405
wdenkdb2f721f2003-03-06 00:58:30 +00001406MPC8266ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001407 @$(MKCONFIG) $(@:_config=) ppc mpc8260 mpc8266ads
wdenkdb2f721f2003-03-06 00:58:30 +00001408
wdenkefa329c2004-03-23 20:18:25 +00001409# PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
wdenk10f67012003-03-25 18:06:06 +00001410PM825_config \
wdenkefa329c2004-03-23 20:18:25 +00001411PM825_ROMBOOT_config \
1412PM825_BIGFLASH_config \
1413PM825_ROMBOOT_BIGFLASH_config \
wdenk7ebf7442002-11-02 23:17:16 +00001414PM826_config \
wdenkefa329c2004-03-23 20:18:25 +00001415PM826_ROMBOOT_config \
1416PM826_BIGFLASH_config \
1417PM826_ROMBOOT_BIGFLASH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001418 @mkdir -p $(obj)include
1419 @mkdir -p $(obj)board/pm826
wdenkefa329c2004-03-23 20:18:25 +00001420 @if [ "$(findstring PM825_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001421 echo "#define CONFIG_PCI" >$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001422 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001423 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001424 fi
1425 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1426 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001427 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1428 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001429 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1430 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001431 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001432 fi; \
1433 else \
wdenk7ebf7442002-11-02 23:17:16 +00001434 echo "... booting from 64-bit flash" ; \
wdenkefa329c2004-03-23 20:18:25 +00001435 if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
1436 echo "... with 32 MB Flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001437 echo "#define CONFIG_FLASH_32MB" >>$(obj)include/config.h ; \
1438 echo "TEXT_BASE = 0x40000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001439 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001440 echo "TEXT_BASE = 0xFF000000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001441 fi; \
1442 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001443 @$(MKCONFIG) -a PM826 ppc mpc8260 pm826
wdenkefa329c2004-03-23 20:18:25 +00001444
1445PM828_config \
1446PM828_PCI_config \
1447PM828_ROMBOOT_config \
1448PM828_ROMBOOT_PCI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001449 @mkdir -p $(obj)include
1450 @mkdir -p $(obj)board/pm826
Marian Balakowicz17076262006-04-05 20:37:11 +02001451 @if [ "$(findstring _PCI_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001452 echo "#define CONFIG_PCI" >>$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001453 echo "... with PCI enabled" ; \
1454 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001455 >$(obj)include/config.h ; \
wdenkefa329c2004-03-23 20:18:25 +00001456 fi
1457 @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
1458 echo "... booting from 8-bit flash" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001459 echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
1460 echo "TEXT_BASE = 0xFF800000" >$(obj)board/pm826/config.tmp ; \
wdenkefa329c2004-03-23 20:18:25 +00001461 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001462 @$(MKCONFIG) -a PM828 ppc mpc8260 pm828
wdenk7ebf7442002-11-02 23:17:16 +00001463
1464ppmc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001465 @$(MKCONFIG) $(@:_config=) ppc mpc8260 ppmc8260
wdenk7ebf7442002-11-02 23:17:16 +00001466
wdenk8b0bfc62005-04-03 23:11:38 +00001467Rattler8248_config \
1468Rattler_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001469 @mkdir -p $(obj)include
wdenk8b0bfc62005-04-03 23:11:38 +00001470 $(if $(findstring 8248,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001471 @echo "#define CONFIG_MPC8248" > $(obj)include/config.h)
1472 @$(MKCONFIG) -a Rattler ppc mpc8260 rattler
wdenk8b0bfc62005-04-03 23:11:38 +00001473
wdenk7ebf7442002-11-02 23:17:16 +00001474RPXsuper_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001475 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rpxsuper
wdenk7ebf7442002-11-02 23:17:16 +00001476
1477rsdproto_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001478 @$(MKCONFIG) $(@:_config=) ppc mpc8260 rsdproto
wdenk7ebf7442002-11-02 23:17:16 +00001479
1480sacsng_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001481 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sacsng
wdenk7ebf7442002-11-02 23:17:16 +00001482
1483sbc8260_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001484 @$(MKCONFIG) $(@:_config=) ppc mpc8260 sbc8260
wdenk7ebf7442002-11-02 23:17:16 +00001485
1486SCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001487 @$(MKCONFIG) $(@:_config=) ppc mpc8260 SCM siemens
wdenk7ebf7442002-11-02 23:17:16 +00001488
wdenk27b207f2003-07-24 23:38:38 +00001489TQM8255_AA_config \
1490TQM8260_AA_config \
1491TQM8260_AB_config \
1492TQM8260_AC_config \
1493TQM8260_AD_config \
1494TQM8260_AE_config \
1495TQM8260_AF_config \
1496TQM8260_AG_config \
1497TQM8260_AH_config \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001498TQM8260_AI_config \
wdenk27b207f2003-07-24 23:38:38 +00001499TQM8265_AA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001500 @mkdir -p $(obj)include
wdenk27b207f2003-07-24 23:38:38 +00001501 @case "$@" in \
Wolfgang Denk1f62bc22006-03-07 00:32:07 +01001502 TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
1503 TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
1504 TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1505 TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
1506 TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1507 TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
1508 TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1509 TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
1510 TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
1511 TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
1512 TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
wdenk27b207f2003-07-24 23:38:38 +00001513 esac; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001514 >$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001515 if [ "$${CTYPE}" != "MPC8260" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001516 echo "#define CONFIG_$${CTYPE}" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001517 fi; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001518 echo "#define CONFIG_$${CFREQ}MHz" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001519 echo "... with $${CFREQ}MHz system clock" ; \
1520 if [ "$${CACHE}" == "yes" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001521 echo "#define CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001522 echo "... with L2 Cache support" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001523 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001524 echo "#undef CONFIG_L2_CACHE" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +00001525 echo "... without L2 Cache support" ; \
wdenk27b207f2003-07-24 23:38:38 +00001526 fi; \
1527 if [ "$${BMODE}" == "60x" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001528 echo "#define CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001529 echo "... with 60x Bus Mode" ; \
1530 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001531 echo "#undef CONFIG_BUSMODE_60x" >>$(obj)include/config.h ; \
wdenk27b207f2003-07-24 23:38:38 +00001532 echo "... without 60x Bus Mode" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001533 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001534 @$(MKCONFIG) -a TQM8260 ppc mpc8260 tqm8260
wdenk7ebf7442002-11-02 23:17:16 +00001535
wdenkba91e262005-05-30 23:55:42 +00001536VoVPN-GW_66MHz_config \
1537VoVPN-GW_100MHz_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001538 @mkdir -p $(obj)include
1539 @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > $(obj)include/config.h
1540 @$(MKCONFIG) -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
wdenkba91e262005-05-30 23:55:42 +00001541
wdenk54387ac2003-10-08 22:45:44 +00001542ZPC1900_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001543 @$(MKCONFIG) $(@:_config=) ppc mpc8260 zpc1900
wdenk7aa78612003-05-03 15:50:43 +00001544
wdenk4e5ca3e2003-12-08 01:34:36 +00001545#########################################################################
1546## Coldfire
1547#########################################################################
1548
Wolfgang Denk74812662005-12-12 16:06:05 +01001549cobra5272_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001550 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 cobra5272
Wolfgang Denk74812662005-12-12 16:06:05 +01001551
Wolfgang Denk4176c792006-06-10 19:27:47 +02001552EB+MCF-EV123_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001553 @mkdir -p $(obj)include
1554 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1555 @ >$(obj)include/config.h
1556 @echo "TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1557 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001558
1559EB+MCF-EV123_internal_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001560 @mkdir -p $(obj)include
1561 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
1562 @ >$(obj)include/config.h
1563 @echo "TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
1564 @$(MKCONFIG) EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
Wolfgang Denk4176c792006-06-10 19:27:47 +02001565
1566M5271EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001567 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5271evb
Wolfgang Denk4176c792006-06-10 19:27:47 +02001568
wdenk4e5ca3e2003-12-08 01:34:36 +00001569M5272C3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001570 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5272c3
wdenk4e5ca3e2003-12-08 01:34:36 +00001571
1572M5282EVB_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001573 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 m5282evb
wdenk4e5ca3e2003-12-08 01:34:36 +00001574
stroesec419d1d2004-12-16 18:44:40 +00001575TASREG_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001576 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 tasreg esd
stroesec419d1d2004-12-16 18:44:40 +00001577
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001578r5200_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001579 @$(MKCONFIG) $(@:_config=) m68k mcf52x2 r5200
Zachary P. Landau3a108ed2006-01-26 17:37:59 -05001580
wdenk7ebf7442002-11-02 23:17:16 +00001581#########################################################################
Eran Libertyf046ccd2005-07-28 10:08:46 -05001582## MPC83xx Systems
1583#########################################################################
1584
1585MPC8349ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001586 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349ads
Eran Libertyf046ccd2005-07-28 10:08:46 -05001587
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001588TQM834x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001589 @$(MKCONFIG) $(@:_config=) ppc mpc83xx tqm834x
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001590
Marian Balakowicz991425f2006-03-14 16:24:38 +01001591MPC8349EMDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001592 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349emds
Marian Balakowicz991425f2006-03-14 16:24:38 +01001593
Timur Tabi2ad6b512006-10-31 18:44:42 -06001594MPC8349ITX_config: unconfig
1595 @$(MKCONFIG) $(@:_config=) ppc mpc83xx mpc8349itx
1596
Eran Libertyf046ccd2005-07-28 10:08:46 -05001597#########################################################################
wdenk42d1f032003-10-15 23:53:47 +00001598## MPC85xx Systems
1599#########################################################################
1600
wdenk0ac6f8b2004-07-09 23:27:13 +00001601MPC8540ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001602 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8540ads
wdenk42d1f032003-10-15 23:53:47 +00001603
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001604MPC8540EVAL_config \
1605MPC8540EVAL_33_config \
1606MPC8540EVAL_66_config \
1607MPC8540EVAL_33_slave_config \
1608MPC8540EVAL_66_slave_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001609 @mkdir -p $(obj)include
1610 @echo "" >$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001611 if [ "$(findstring _33_,$@)" ] ; then \
1612 echo -n "... 33 MHz PCI" ; \
1613 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001614 echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001615 echo -n "... 66 MHz PCI" ; \
1616 fi ; \
1617 if [ "$(findstring _slave_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001618 echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001619 echo " slave" ; \
1620 else \
1621 echo " host" ; \
1622 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001623 @$(MKCONFIG) -a MPC8540EVAL ppc mpc85xx mpc8540eval
Lunsheng Wangb0e32942005-07-29 10:20:29 -05001624
wdenk0ac6f8b2004-07-09 23:27:13 +00001625MPC8560ADS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001626 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8560ads
wdenk42d1f032003-10-15 23:53:47 +00001627
wdenk03f5c552004-10-10 21:21:55 +00001628MPC8541CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001629 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8541cds cds
wdenk03f5c552004-10-10 21:21:55 +00001630
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001631MPC8548CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001632 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8548cds cds
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001633
wdenk03f5c552004-10-10 21:21:55 +00001634MPC8555CDS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001635 @$(MKCONFIG) $(@:_config=) ppc mpc85xx mpc8555cds cds
wdenk7abf0c52004-04-18 21:45:42 +00001636
wdenk384cc682005-04-03 22:35:21 +00001637PM854_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001638 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm854
wdenk384cc682005-04-03 22:35:21 +00001639
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001640PM856_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001641 @$(MKCONFIG) $(@:_config=) ppc mpc85xx pm856
Wolfgang Denkb20d0032005-08-05 12:19:30 +02001642
wdenkc15f3122004-10-10 22:44:24 +00001643sbc8540_config \
1644sbc8540_33_config \
1645sbc8540_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001646 @mkdir -p $(obj)include
wdenkc15f3122004-10-10 22:44:24 +00001647 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001648 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001649 echo "... 66 MHz PCI" ; \
1650 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001651 >$(obj)include/config.h ; \
wdenkc15f3122004-10-10 22:44:24 +00001652 echo "... 33 MHz PCI" ; \
1653 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001654 @$(MKCONFIG) -a SBC8540 ppc mpc85xx sbc8560
wdenkc15f3122004-10-10 22:44:24 +00001655
wdenk466b7412004-07-10 22:35:59 +00001656sbc8560_config \
1657sbc8560_33_config \
1658sbc8560_66_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001659 @mkdir -p $(obj)include
wdenk8b07a112004-07-10 21:45:47 +00001660 @if [ "$(findstring _66_,$@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001661 echo "#define CONFIG_PCI_66" >>$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001662 echo "... 66 MHz PCI" ; \
1663 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001664 >$(obj)include/config.h ; \
wdenk8b07a112004-07-10 21:45:47 +00001665 echo "... 33 MHz PCI" ; \
1666 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001667 @$(MKCONFIG) -a sbc8560 ppc mpc85xx sbc8560
wdenk8b07a112004-07-10 21:45:47 +00001668
wdenk03f5c552004-10-10 21:21:55 +00001669stxgp3_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001670 @$(MKCONFIG) $(@:_config=) ppc mpc85xx stxgp3
wdenk03f5c552004-10-10 21:21:55 +00001671
Stefan Roesed96f41e2005-11-30 13:06:40 +01001672TQM8540_config \
1673TQM8541_config \
1674TQM8555_config \
1675TQM8560_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001676 @mkdir -p $(obj)include
Wolfgang Denka889bd22005-12-06 15:02:31 +01001677 @CTYPE=$(subst TQM,,$(@:_config=)); \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001678 >$(obj)include/config.h ; \
Stefan Roesed96f41e2005-11-30 13:06:40 +01001679 echo "... TQM"$${CTYPE}; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001680 echo "#define CONFIG_MPC$${CTYPE}">>$(obj)include/config.h; \
1681 echo "#define CONFIG_TQM$${CTYPE}">>$(obj)include/config.h; \
1682 echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>$(obj)include/config.h; \
1683 echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>$(obj)include/config.h; \
1684 echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>$(obj)include/config.h
1685 @$(MKCONFIG) -a TQM85xx ppc mpc85xx tqm85xx
wdenkf5c5ef42005-04-05 16:26:47 +00001686
wdenk42d1f032003-10-15 23:53:47 +00001687#########################################################################
Jon Loeligerdebb7352006-04-26 17:58:56 -05001688## MPC86xx Systems
1689#########################################################################
1690
1691MPC8641HPCN_config: unconfig
1692 @./mkconfig $(@:_config=) ppc mpc86xx mpc8641hpcn
1693
1694
1695#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001696## 74xx/7xx Systems
1697#########################################################################
1698
wdenkc7de8292002-11-19 11:04:11 +00001699AmigaOneG3SE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001700 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
wdenkc7de8292002-11-19 11:04:11 +00001701
wdenk15647dc2003-10-09 19:00:25 +00001702BAB7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001703 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx bab7xx eltec
wdenk15647dc2003-10-09 19:00:25 +00001704
stroesec419d1d2004-12-16 18:44:40 +00001705CPCI750_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001706 @$(MKCONFIG) CPCI750 ppc 74xx_7xx cpci750 esd
stroesec419d1d2004-12-16 18:44:40 +00001707
wdenk3a473b22004-01-03 00:43:19 +00001708DB64360_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001709 @$(MKCONFIG) DB64360 ppc 74xx_7xx db64360 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001710
1711DB64460_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001712 @$(MKCONFIG) DB64460 ppc 74xx_7xx db64460 Marvell
wdenk3a473b22004-01-03 00:43:19 +00001713
wdenk15647dc2003-10-09 19:00:25 +00001714ELPPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001715 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx elppc eltec
wdenk15647dc2003-10-09 19:00:25 +00001716
wdenk7ebf7442002-11-02 23:17:16 +00001717EVB64260_config \
1718EVB64260_750CX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001719 @$(MKCONFIG) EVB64260 ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001720
wdenk15647dc2003-10-09 19:00:25 +00001721P3G4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001722 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk7ebf7442002-11-02 23:17:16 +00001723
1724PCIPPC2_config \
1725PCIPPC6_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001726 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx pcippc2
wdenk7ebf7442002-11-02 23:17:16 +00001727
wdenk15647dc2003-10-09 19:00:25 +00001728ZUMA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001729 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx evb64260
wdenk12f34242003-09-02 22:48:03 +00001730
Heiko Schocherf5e0d032006-06-19 11:02:41 +02001731ppmc7xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001732 @$(MKCONFIG) $(@:_config=) ppc 74xx_7xx ppmc7xx
Wolfgang Denkb87dfd22006-07-19 13:50:38 +02001733
wdenk7ebf7442002-11-02 23:17:16 +00001734#========================================================================
1735# ARM
1736#========================================================================
1737#########################################################################
1738## StrongARM Systems
1739#########################################################################
1740
wdenkea66bc82004-04-15 23:23:39 +00001741assabet_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001742 @$(MKCONFIG) $(@:_config=) arm sa1100 assabet
wdenkea66bc82004-04-15 23:23:39 +00001743
wdenk7ebf7442002-11-02 23:17:16 +00001744dnp1110_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001745 @$(MKCONFIG) $(@:_config=) arm sa1100 dnp1110
wdenk7ebf7442002-11-02 23:17:16 +00001746
wdenk855a4962004-03-14 18:23:55 +00001747gcplus_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001748 @$(MKCONFIG) $(@:_config=) arm sa1100 gcplus
wdenk855a4962004-03-14 18:23:55 +00001749
1750lart_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001751 @$(MKCONFIG) $(@:_config=) arm sa1100 lart
wdenk855a4962004-03-14 18:23:55 +00001752
wdenk7ebf7442002-11-02 23:17:16 +00001753shannon_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001754 @$(MKCONFIG) $(@:_config=) arm sa1100 shannon
wdenk7ebf7442002-11-02 23:17:16 +00001755
1756#########################################################################
wdenk2e5983d2003-07-15 20:04:06 +00001757## ARM92xT Systems
wdenk7ebf7442002-11-02 23:17:16 +00001758#########################################################################
1759
wdenkb0639ca2003-09-17 22:48:07 +00001760xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
wdenk43d96162003-03-06 00:02:04 +00001761
wdenk3ff02c22004-06-09 15:25:53 +00001762xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
wdenk63e73c92004-02-23 22:22:28 +00001763
wdenka56bd922004-06-06 23:13:55 +00001764xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
1765
wdenka85f9f22005-04-06 13:52:31 +00001766at91rm9200dk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001767 @$(MKCONFIG) $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001768
1769cmc_pu2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001770 @$(MKCONFIG) $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
wdenka85f9f22005-04-06 13:52:31 +00001771
Wolfgang Denk645da512005-10-05 02:00:09 +02001772csb637_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001773 @$(MKCONFIG) $(@:_config=) arm arm920t csb637 NULL at91rm9200
Wolfgang Denk645da512005-10-05 02:00:09 +02001774
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001775mp2usb_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001776 @$(MKCONFIG) $(@:_config=) arm arm920t mp2usb NULL at91rm9200
Wolfgang Denk0e4018d2005-09-26 01:14:38 +02001777
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001778
Wolfgang Denk74f43042005-09-25 01:48:28 +02001779########################################################################
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001780## ARM Integrator boards - see doc/README-integrator for more info.
1781integratorap_config \
1782ap_config \
1783ap966_config \
1784ap922_config \
1785ap922_XA10_config \
1786ap7_config \
1787ap720t_config \
1788ap920t_config \
1789ap926ejs_config \
1790ap946es_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001791 @board/integratorap/split_by_variant.sh $@
wdenk3d3befa2004-03-14 15:06:13 +00001792
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001793integratorcp_config \
1794cp_config \
1795cp920t_config \
1796cp926ejs_config \
1797cp946es_config \
1798cp1136_config \
1799cp966_config \
1800cp922_config \
1801cp922_XA10_config \
1802cp1026_config: unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001803 @board/integratorcp/split_by_variant.sh $@
wdenk25d67122004-12-10 11:40:40 +00001804
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001805kb9202_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001806 @$(MKCONFIG) $(@:_config=) arm arm920t kb9202 NULL at91rm9200
Wolfgang Denk99b0d282005-10-05 00:19:34 +02001807
wdenkf832d8a2004-06-10 21:55:33 +00001808lpd7a400_config \
1809lpd7a404_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001810 @$(MKCONFIG) $(@:_config=) arm lh7a40x lpd7a40x
wdenk3d3befa2004-03-14 15:06:13 +00001811
wdenk281e00a2004-08-01 22:48:16 +00001812mx1ads_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001813 @$(MKCONFIG) $(@:_config=) arm arm920t mx1ads NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001814
1815mx1fs2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001816 @$(MKCONFIG) $(@:_config=) arm arm920t mx1fs2 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001817
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001818netstar_32_config \
1819netstar_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001820 @mkdir -p $(obj)include
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001821 @if [ "$(findstring _32_,$@)" ] ; then \
1822 echo "... 32MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001823 echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001824 else \
1825 echo "... 64MB SDRAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001826 echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>$(obj)include/config.h ; \
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001827 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001828 @$(MKCONFIG) -a netstar arm arm925t netstar
Wolfgang Denkac7eb8a32005-09-14 23:53:32 +02001829
wdenk2e5983d2003-07-15 20:04:06 +00001830omap1510inn_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001831 @$(MKCONFIG) $(@:_config=) arm arm925t omap1510inn
wdenk2e5983d2003-07-15 20:04:06 +00001832
wdenk1eaeb582004-06-08 00:22:43 +00001833omap5912osk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001834 @$(MKCONFIG) $(@:_config=) arm arm926ejs omap5912osk NULL omap
wdenk1eaeb582004-06-08 00:22:43 +00001835
wdenk63e73c92004-02-23 22:22:28 +00001836omap1610inn_config \
1837omap1610inn_cs0boot_config \
1838omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001839omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +00001840omap1610h2_config \
1841omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +00001842omap1610h2_cs3boot_config \
1843omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001844 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +00001845 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001846 echo "#define CONFIG_CS0_BOOT" >> .$(obj)/include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001847 echo "... configured for CS0 boot"; \
wdenk3ff02c22004-06-09 15:25:53 +00001848 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001849 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)./include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +00001850 echo "... configured for CS_AUTO boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001851 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001852 echo "#define CONFIG_CS3_BOOT" >> $(obj)./include/config.h ; \
wdenkb79a11c2004-03-25 15:14:43 +00001853 echo "... configured for CS3 boot"; \
wdenk63e73c92004-02-23 22:22:28 +00001854 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001855 @$(MKCONFIG) -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
wdenk6f213472003-08-29 22:00:43 +00001856
wdenka56bd922004-06-06 23:13:55 +00001857omap730p2_config \
1858omap730p2_cs0boot_config \
1859omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001860 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +00001861 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001862 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001863 echo "... configured for CS0 boot"; \
1864 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001865 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +00001866 echo "... configured for CS3 boot"; \
1867 fi;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001868 @$(MKCONFIG) -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
wdenka56bd922004-06-06 23:13:55 +00001869
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001870sbc2410x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001871 @$(MKCONFIG) $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
Wolfgang Denk32cb2c72006-07-21 11:31:42 +02001872
wdenk281e00a2004-08-01 22:48:16 +00001873scb9328_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001874 @$(MKCONFIG) $(@:_config=) arm arm920t scb9328 NULL imx
wdenk281e00a2004-08-01 22:48:16 +00001875
wdenk7ebf7442002-11-02 23:17:16 +00001876smdk2400_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001877 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001878
1879smdk2410_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001880 @$(MKCONFIG) $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001881
wdenk2d24a3a2004-06-09 21:50:45 +00001882SX1_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001883 @$(MKCONFIG) $(@:_config=) arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +00001884
wdenkb2001f22003-12-20 22:45:10 +00001885# TRAB default configuration: 8 MB Flash, 32 MB RAM
wdenk43d96162003-03-06 00:02:04 +00001886trab_config \
wdenkb0639ca2003-09-17 22:48:07 +00001887trab_bigram_config \
1888trab_bigflash_config \
wdenkf54ebdf2003-09-17 15:10:32 +00001889trab_old_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001890 @mkdir -p $(obj)include
1891 @mkdir -p $(obj)board/trab
1892 @ >$(obj)include/config.h
wdenkb0639ca2003-09-17 22:48:07 +00001893 @[ -z "$(findstring _bigram,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001894 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
1895 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00001896 echo "... with 8 MB Flash, 32 MB RAM" ; \
1897 }
1898 @[ -z "$(findstring _bigflash,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001899 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
1900 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb0639ca2003-09-17 22:48:07 +00001901 echo "... with 16 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001902 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenkb0639ca2003-09-17 22:48:07 +00001903 }
wdenkf54ebdf2003-09-17 15:10:32 +00001904 @[ -z "$(findstring _old,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001905 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
1906 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
wdenkb2001f22003-12-20 22:45:10 +00001907 echo "... with 8 MB Flash, 16 MB RAM" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001908 echo "TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
wdenk43d96162003-03-06 00:02:04 +00001909 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001910 @$(MKCONFIG) -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
wdenk7ebf7442002-11-02 23:17:16 +00001911
wdenk1cb8e982003-03-06 21:55:29 +00001912VCMA9_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001913 @$(MKCONFIG) $(@:_config=) arm arm920t vcma9 mpl s3c24x0
wdenk1cb8e982003-03-06 21:55:29 +00001914
Wolfgang Denk87cb6862005-10-06 17:08:18 +02001915#========================================================================
1916# ARM supplied Versatile development boards
1917#========================================================================
1918versatile_config \
1919versatileab_config \
1920versatilepb_config : unconfig
Wolfgang Denk96782c62005-10-09 00:22:48 +02001921 @board/versatile/split_by_variant.sh $@
wdenk074cff02004-02-24 00:16:43 +00001922
wdenk3c2b3d42005-04-05 23:32:21 +00001923voiceblue_smallflash_config \
1924voiceblue_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001925 @mkdir -p $(obj)include
1926 @mkdir -p $(obj)board/voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00001927 @if [ "$(findstring _smallflash_,$@)" ] ; then \
1928 echo "... boot from lower flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001929 echo "#define VOICEBLUE_SMALL_FLASH" >>$(obj)include/config.h ; \
1930 echo "VOICEBLUE_SMALL_FLASH=y" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00001931 else \
1932 echo "... boot from upper flash bank" ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001933 >$(obj)include/config.h ; \
1934 echo "VOICEBLUE_SMALL_FLASH=n" >$(obj)board/voiceblue/config.tmp ; \
wdenk3c2b3d42005-04-05 23:32:21 +00001935 fi
Marian Balakowiczf9328632006-09-01 19:49:50 +02001936 @$(MKCONFIG) -a voiceblue arm arm925t voiceblue
wdenk3c2b3d42005-04-05 23:32:21 +00001937
wdenk16b013e2005-05-19 22:46:33 +00001938cm4008_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001939 @$(MKCONFIG) $(@:_config=) arm arm920t cm4008 NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00001940
1941cm41xx_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001942 @$(MKCONFIG) $(@:_config=) arm arm920t cm41xx NULL ks8695
wdenk16b013e2005-05-19 22:46:33 +00001943
Wolfgang Denk0c32d962006-06-16 17:32:31 +02001944gth2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001945 @mkdir -p $(obj)include
1946 @ >$(obj)include/config.h
1947 @echo "#define CONFIG_GTH2 1" >>$(obj)include/config.h
1948 @$(MKCONFIG) -a gth2 mips mips gth2
Wolfgang Denk0c32d962006-06-16 17:32:31 +02001949
wdenk074cff02004-02-24 00:16:43 +00001950#########################################################################
1951## S3C44B0 Systems
1952#########################################################################
1953
1954B2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001955 @$(MKCONFIG) $(@:_config=) arm s3c44b0 B2 dave
wdenk074cff02004-02-24 00:16:43 +00001956
wdenk7ebf7442002-11-02 23:17:16 +00001957#########################################################################
1958## ARM720T Systems
1959#########################################################################
1960
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02001961armadillo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001962 @$(MKCONFIG) $(@:_config=) arm arm720t armadillo
Wolfgang Denkc570b2f2005-09-26 01:06:33 +02001963
wdenk7ebf7442002-11-02 23:17:16 +00001964ep7312_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001965 @$(MKCONFIG) $(@:_config=) arm arm720t ep7312
wdenk7ebf7442002-11-02 23:17:16 +00001966
wdenk2d24a3a2004-06-09 21:50:45 +00001967impa7_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001968 @$(MKCONFIG) $(@:_config=) arm arm720t impa7
wdenk2d24a3a2004-06-09 21:50:45 +00001969
wdenk2d1a5372004-02-23 19:30:57 +00001970modnet50_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001971 @$(MKCONFIG) $(@:_config=) arm arm720t modnet50
wdenk2d1a5372004-02-23 19:30:57 +00001972
wdenk39539882004-07-01 16:30:44 +00001973evb4510_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001974 @$(MKCONFIG) $(@:_config=) arm arm720t evb4510
wdenk39539882004-07-01 16:30:44 +00001975
wdenk7ebf7442002-11-02 23:17:16 +00001976#########################################################################
wdenk43d96162003-03-06 00:02:04 +00001977## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +00001978#########################################################################
1979
wdenk20787e22005-04-06 00:04:16 +00001980adsvix_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001981 @$(MKCONFIG) $(@:_config=) arm pxa adsvix
wdenk20787e22005-04-06 00:04:16 +00001982
wdenkfabd46a2004-07-10 23:11:10 +00001983cerf250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001984 @$(MKCONFIG) $(@:_config=) arm pxa cerf250
wdenkfabd46a2004-07-10 23:11:10 +00001985
wdenk7ebf7442002-11-02 23:17:16 +00001986cradle_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001987 @$(MKCONFIG) $(@:_config=) arm pxa cradle
wdenk7ebf7442002-11-02 23:17:16 +00001988
1989csb226_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001990 @$(MKCONFIG) $(@:_config=) arm pxa csb226
wdenk7ebf7442002-11-02 23:17:16 +00001991
Wolfgang Denk0be248f2006-03-07 00:22:36 +01001992delta_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02001993 @$(MKCONFIG) $(@:_config=) arm pxa delta
Wolfgang Denk0be248f2006-03-07 00:22:36 +01001994
wdenk43d96162003-03-06 00:02:04 +00001995innokom_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001996 @$(MKCONFIG) $(@:_config=) arm pxa innokom
wdenk43d96162003-03-06 00:02:04 +00001997
wdenk2d5b5612003-10-14 19:43:55 +00001998ixdp425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001999 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
wdenk2d5b5612003-10-14 19:43:55 +00002000
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002001ixdpg425_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002002 @$(MKCONFIG) $(@:_config=) arm ixp ixdp425
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002003
wdenk43d96162003-03-06 00:02:04 +00002004lubbock_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002005 @$(MKCONFIG) $(@:_config=) arm pxa lubbock
wdenk43d96162003-03-06 00:02:04 +00002006
Heiko Schocher5720df72006-05-02 07:51:46 +02002007pleb2_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002008 @$(MKCONFIG) $(@:_config=) arm pxa pleb2
Heiko Schocher5720df72006-05-02 07:51:46 +02002009
wdenk52f52c12003-06-19 23:04:19 +00002010logodl_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002011 @$(MKCONFIG) $(@:_config=) arm pxa logodl
wdenk52f52c12003-06-19 23:04:19 +00002012
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002013pdnb3_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002014 @$(MKCONFIG) $(@:_config=) arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002015
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002016pxa255_idp_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002017 @$(MKCONFIG) $(@:_config=) arm pxa pxa255_idp
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02002018
wdenk3e386912003-04-05 00:53:31 +00002019wepep250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002020 @$(MKCONFIG) $(@:_config=) arm pxa wepep250
wdenk3e386912003-04-05 00:53:31 +00002021
wdenk4ec3a7f2004-09-28 16:44:41 +00002022xaeniax_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002023 @$(MKCONFIG) $(@:_config=) arm pxa xaeniax
wdenk4ec3a7f2004-09-28 16:44:41 +00002024
wdenkefa329c2004-03-23 20:18:25 +00002025xm250_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002026 @$(MKCONFIG) $(@:_config=) arm pxa xm250
wdenkefa329c2004-03-23 20:18:25 +00002027
wdenkca0e7742004-06-09 15:37:23 +00002028xsengine_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002029 @$(MKCONFIG) $(@:_config=) arm pxa xsengine
wdenkca0e7742004-06-09 15:37:23 +00002030
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002031zylonite_config :
Marian Balakowiczf9328632006-09-01 19:49:50 +02002032 @$(MKCONFIG) $(@:_config=) arm pxa zylonite
Markus Klotzbüchere0269572006-02-07 20:04:48 +01002033
wdenk8ed96042005-01-09 23:16:25 +00002034#########################################################################
2035## ARM1136 Systems
2036#########################################################################
2037omap2420h4_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002038 @$(MKCONFIG) $(@:_config=) arm arm1136 omap2420h4
wdenk8ed96042005-01-09 23:16:25 +00002039
wdenk2262cfe2002-11-18 00:14:45 +00002040#========================================================================
2041# i386
2042#========================================================================
2043#########################################################################
wdenk1cb8e982003-03-06 21:55:29 +00002044## AMD SC520 CDP
wdenk2262cfe2002-11-18 00:14:45 +00002045#########################################################################
2046sc520_cdp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002047 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_cdp
wdenk2262cfe2002-11-18 00:14:45 +00002048
wdenk7a8e9bed2003-05-31 18:35:21 +00002049sc520_spunk_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002050 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002051
2052sc520_spunk_rel_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002053 @$(MKCONFIG) $(@:_config=) i386 i386 sc520_spunk
wdenk7a8e9bed2003-05-31 18:35:21 +00002054
wdenk43d96162003-03-06 00:02:04 +00002055#========================================================================
2056# MIPS
2057#========================================================================
wdenk7ebf7442002-11-02 23:17:16 +00002058#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002059## MIPS32 4Kc
2060#########################################################################
2061
wdenke0ac62d2003-08-17 18:55:18 +00002062xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
2063
2064incaip_100MHz_config \
2065incaip_133MHz_config \
2066incaip_150MHz_config \
2067incaip_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002068 @mkdir -p $(obj)include
2069 @ >$(obj)include/config.h
wdenke0ac62d2003-08-17 18:55:18 +00002070 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002071 { echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002072 echo "... with 100MHz system clock" ; \
2073 }
2074 @[ -z "$(findstring _133MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002075 { echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002076 echo "... with 133MHz system clock" ; \
2077 }
2078 @[ -z "$(findstring _150MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002079 { echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h ; \
wdenke0ac62d2003-08-17 18:55:18 +00002080 echo "... with 150MHz system clock" ; \
2081 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002082 @$(MKCONFIG) -a $(call xtract_incaip,$@) mips mips incaip
wdenke0ac62d2003-08-17 18:55:18 +00002083
wdenkf4863a72004-02-07 01:27:10 +00002084tb0229_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002085 @$(MKCONFIG) $(@:_config=) mips mips tb0229
wdenkf4863a72004-02-07 01:27:10 +00002086
wdenke0ac62d2003-08-17 18:55:18 +00002087#########################################################################
wdenk69459792004-05-29 16:53:29 +00002088## MIPS32 AU1X00
2089#########################################################################
2090dbau1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002091 @mkdir -p $(obj)include
2092 @ >$(obj)include/config.h
2093 @echo "#define CONFIG_DBAU1000 1" >>$(obj)include/config.h
2094 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002095
2096dbau1100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002097 @mkdir -p $(obj)include
2098 @ >$(obj)include/config.h
2099 @echo "#define CONFIG_DBAU1100 1" >>$(obj)include/config.h
2100 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002101
2102dbau1500_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002103 @mkdir -p $(obj)include
2104 @ >$(obj)include/config.h
2105 @echo "#define CONFIG_DBAU1500 1" >>$(obj)include/config.h
2106 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenk69459792004-05-29 16:53:29 +00002107
wdenkff36fd82005-01-09 22:28:56 +00002108dbau1550_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002109 @mkdir -p $(obj)include
2110 @ >$(obj)include/config.h
2111 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2112 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002113
2114dbau1550_el_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002115 @mkdir -p $(obj)include
2116 @ >$(obj)include/config.h
2117 @echo "#define CONFIG_DBAU1550 1" >>$(obj)include/config.h
2118 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
wdenkff36fd82005-01-09 22:28:56 +00002119
Wolfgang Denk265817c2005-09-25 00:53:22 +02002120pb1000_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002121 @mkdir -p $(obj)include
2122 @ >$(obj)include/config.h
2123 @echo "#define CONFIG_PB1000 1" >>$(obj)include/config.h
2124 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
Wolfgang Denk265817c2005-09-25 00:53:22 +02002125
wdenk69459792004-05-29 16:53:29 +00002126#########################################################################
wdenke0ac62d2003-08-17 18:55:18 +00002127## MIPS64 5Kc
2128#########################################################################
wdenk43d96162003-03-06 00:02:04 +00002129
wdenk3e386912003-04-05 00:53:31 +00002130purple_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002131 @$(MKCONFIG) $(@:_config=) mips mips purple
wdenk43d96162003-03-06 00:02:04 +00002132
wdenk4a551702003-10-08 23:26:14 +00002133#========================================================================
2134# Nios
2135#========================================================================
2136#########################################################################
2137## Nios32
2138#########################################################################
2139
wdenkc935d3b2004-01-03 19:43:48 +00002140DK1C20_safe_32_config \
2141DK1C20_standard_32_config \
wdenk4a551702003-10-08 23:26:14 +00002142DK1C20_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002143 @mkdir -p $(obj)include
2144 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002145 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002146 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002147 echo "... NIOS 'safe_32' configuration" ; \
2148 }
2149 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002150 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002151 echo "... NIOS 'standard_32' configuration" ; \
2152 }
2153 @[ -z "$(findstring DK1C20_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002154 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002155 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2156 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002157 @$(MKCONFIG) -a DK1C20 nios nios dk1c20 altera
wdenkc935d3b2004-01-03 19:43:48 +00002158
2159DK1S10_safe_32_config \
2160DK1S10_standard_32_config \
wdenkec4c5442004-02-09 23:12:24 +00002161DK1S10_mtx_ldk_20_config \
wdenkc935d3b2004-01-03 19:43:48 +00002162DK1S10_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002163 @mkdir -p $(obj)include
2164 @ >$(obj)include/config.h
wdenkc935d3b2004-01-03 19:43:48 +00002165 @[ -z "$(findstring _safe_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002166 { echo "#define CONFIG_NIOS_SAFE_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002167 echo "... NIOS 'safe_32' configuration" ; \
2168 }
2169 @[ -z "$(findstring _standard_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002170 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002171 echo "... NIOS 'standard_32' configuration" ; \
2172 }
wdenkec4c5442004-02-09 23:12:24 +00002173 @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002174 { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>$(obj)include/config.h ; \
wdenkec4c5442004-02-09 23:12:24 +00002175 echo "... NIOS 'mtx_ldk_20' configuration" ; \
2176 }
wdenkc935d3b2004-01-03 19:43:48 +00002177 @[ -z "$(findstring DK1S10_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002178 { echo "#define CONFIG_NIOS_STANDARD_32 1" >>$(obj)include/config.h ; \
wdenkc935d3b2004-01-03 19:43:48 +00002179 echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
2180 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002181 @$(MKCONFIG) -a DK1S10 nios nios dk1s10 altera
wdenk4a551702003-10-08 23:26:14 +00002182
wdenkaaf224a2004-03-14 15:20:55 +00002183ADNPESC1_DNPEVA2_base_32_config \
2184ADNPESC1_base_32_config \
2185ADNPESC1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002186 @mkdir -p $(obj)include
2187 @ >$(obj)include/config.h
wdenkaaf224a2004-03-14 15:20:55 +00002188 @[ -z "$(findstring _DNPEVA2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002189 { echo "#define CONFIG_DNPEVA2 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002190 echo "... DNP/EVA2 configuration" ; \
2191 }
wdenkaaf224a2004-03-14 15:20:55 +00002192 @[ -z "$(findstring _base_32,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002193 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002194 echo "... NIOS 'base_32' configuration" ; \
2195 }
wdenkaaf224a2004-03-14 15:20:55 +00002196 @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002197 { echo "#define CONFIG_NIOS_BASE_32 1" >>$(obj)include/config.h ; \
wdenk42dfe7a2004-03-14 22:25:36 +00002198 echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
2199 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02002200 @$(MKCONFIG) -a ADNPESC1 nios nios adnpesc1 ssv
wdenkaaf224a2004-03-14 15:20:55 +00002201
wdenk5c952cf2004-10-10 21:27:30 +00002202#########################################################################
2203## Nios-II
2204#########################################################################
2205
Scott McNutt9cc83372006-06-08 13:37:39 -04002206EP1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002207 @$(MKCONFIG) EP1C20 nios2 nios2 ep1c20 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002208
2209EP1S10_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002210 @$(MKCONFIG) EP1S10 nios2 nios2 ep1s10 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002211
2212EP1S40_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002213 @$(MKCONFIG) EP1S40 nios2 nios2 ep1s40 altera
Scott McNutt9cc83372006-06-08 13:37:39 -04002214
wdenk5c952cf2004-10-10 21:27:30 +00002215PK1C20_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002216 @$(MKCONFIG) PK1C20 nios2 nios2 pk1c20 psyent
wdenk5c952cf2004-10-10 21:27:30 +00002217
2218PCI5441_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002219 @$(MKCONFIG) PCI5441 nios2 nios2 pci5441 psyent
wdenk4a551702003-10-08 23:26:14 +00002220
wdenk507bbe32004-04-18 21:13:41 +00002221#========================================================================
2222# MicroBlaze
2223#========================================================================
2224#########################################################################
2225## Microblaze
2226#########################################################################
2227suzaku_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002228 @mkdir -p $(obj)include
2229 @ >$(obj)include/config.h
2230 @echo "#define CONFIG_SUZAKU 1" >> $(obj)include/config.h
2231 @$(MKCONFIG) -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
wdenk507bbe32004-04-18 21:13:41 +00002232
wdenk3e386912003-04-05 00:53:31 +00002233#########################################################################
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002234## Blackfin
2235#########################################################################
2236ezkit533_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002237 @$(MKCONFIG) $(@:_config=) blackfin bf533 ezkit533
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002238
2239stamp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002240 @$(MKCONFIG) $(@:_config=) blackfin bf533 stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002241
2242dspstamp_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002243 @$(MKCONFIG) $(@:_config=) blackfin bf533 dsp_stamp
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002244
Haavard Skinnemoen5e3b0bc2006-10-25 15:48:59 +02002245#========================================================================
2246# AVR32
2247#========================================================================
2248#########################################################################
2249## AT32AP7xxx
2250#########################################################################
2251
2252atstk1002_config : unconfig
2253 @./mkconfig $(@:_config=) avr32 at32ap atstk1000 atmel at32ap7000
2254
Wolfgang Denk0afe5192006-03-12 02:10:00 +01002255#########################################################################
2256#########################################################################
wdenk3e386912003-04-05 00:53:31 +00002257#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002258
2259clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +02002260 find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +00002261 \( -name 'core' -o -name '*.bak' -o -name '*~' \
2262 -o -name '*.o' -o -name '*.a' \) -print \
2263 | xargs rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002264 rm -f $(obj)examples/hello_world $(obj)examples/timer \
2265 $(obj)examples/eepro100_eeprom $(obj)examples/sched \
2266 $(obj)examples/mem_to_mem_idma2intr $(obj)examples/82559_eeprom \
Wolfgang Denkd214fbb2006-09-13 10:29:32 +02002267 $(obj)examples/smc91111_eeprom $(obj)examples/interrupt \
Marian Balakowiczf9328632006-09-01 19:49:50 +02002268 $(obj)examples/test_burst
2269 rm -f $(obj)tools/img2srec $(obj)tools/mkimage $(obj)tools/envcrc \
2270 $(obj)tools/gen_eth_addr
2271 rm -f $(obj)tools/mpc86x_clk $(obj)tools/ncb
2272 rm -f $(obj)tools/easylogo/easylogo $(obj)tools/bmp_logo
2273 rm -f $(obj)tools/gdb/astest $(obj)tools/gdb/gdbcont $(obj)tools/gdb/gdbsend
2274 rm -f $(obj)tools/env/fw_printenv $(obj)tools/env/fw_setenv
2275 rm -f $(obj)board/cray/L1/bootscript.c $(obj)board/cray/L1/bootscript.image
2276 rm -f $(obj)board/netstar/eeprom $(obj)board/netstar/crcek $(obj)board/netstar/crcit
2277 rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
2278 rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
2279 rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
2280 rm -f $(obj)include/bmp_logo.h
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002281 rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
wdenk7ebf7442002-11-02 23:17:16 +00002282
2283clobber: clean
Marian Balakowiczf9328632006-09-01 19:49:50 +02002284 find $(OBJTREE) -type f \( -name .depend \
wdenk4c0d4c32004-06-09 17:34:58 +00002285 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
2286 -print0 \
2287 | xargs -0 rm -f
Marian Balakowiczf9328632006-09-01 19:49:50 +02002288 rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS $(obj)include/version_autogenerated.h
2289 rm -fr $(obj)*.*~
2290 rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
2291 rm -f $(obj)tools/crc32.c $(obj)tools/environment.c $(obj)tools/env/crc32.c
2292 rm -f $(obj)tools/inca-swap-bytes $(obj)cpu/mpc824x/bedbug_603e.c
2293 rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Marian Balakowicz8318fbf2006-10-23 22:17:05 +02002294 [ ! -d $(OBJTREE)/nand_spl ] || find $(obj)nand_spl -lname "*" -print | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00002295
Marian Balakowiczf9328632006-09-01 19:49:50 +02002296ifeq ($(OBJTREE),$(SRCTREE))
wdenk7ebf7442002-11-02 23:17:16 +00002297mrproper \
2298distclean: clobber unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02002299else
2300mrproper \
2301distclean: clobber unconfig
2302 rm -rf $(OBJTREE)/*
2303endif
wdenk7ebf7442002-11-02 23:17:16 +00002304
2305backup:
2306 F=`basename $(TOPDIR)` ; cd .. ; \
2307 gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
2308
2309#########################################################################