blob: 93b3eed56cdbd2f91003f0b9802f63441fa19c78 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denkae6d1052008-01-13 00:59:21 +01002# (C) Copyright 2000-2008
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
Wolfgang Denkf9301e12008-03-04 14:58:31 +010015# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk7ebf7442002-11-02 23:17:16 +000016# 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 Denkaced78d2008-12-16 23:48:27 +010024VERSION = 2009
25PATCHLEVEL = 01
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020026SUBLEVEL =
Wolfgang Denk72d15e72009-01-21 23:08:12 +010027EXTRAVERSION =
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020028ifneq "$(SUBLEVEL)" ""
Wolfgang Denk881a87e2006-02-21 17:33:04 +010029U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020030else
31U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
32endif
Peter Tyser561858e2008-11-03 09:30:59 -060033TIMESTAMP_FILE = $(obj)include/timestamp_autogenerated.h
Marian Balakowiczf9328632006-09-01 19:49:50 +020034VERSION_FILE = $(obj)include/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010035
wdenk7ebf7442002-11-02 23:17:16 +000036HOSTARCH := $(shell uname -m | \
37 sed -e s/i.86/i386/ \
38 -e s/sun4u/sparc64/ \
39 -e s/arm.*/arm/ \
40 -e s/sa110/arm/ \
41 -e s/powerpc/ppc/ \
Kumar Galaa2280642007-08-08 04:14:28 -050042 -e s/ppc64/ppc/ \
wdenk7ebf7442002-11-02 23:17:16 +000043 -e s/macppc/ppc/)
44
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020045HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000046 sed -e 's/\(cygwin\).*/cygwin/')
47
Peter Tysercf7a7b92008-11-12 12:33:20 -060048# Set shell to bash if possible, otherwise fall back to sh
49SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
50 else if [ -x /bin/bash ]; then echo /bin/bash; \
51 else echo sh; fi; fi)
52
53export HOSTARCH HOSTOS SHELL
wdenk7ebf7442002-11-02 23:17:16 +000054
55# Deal with colliding definitions from tcsh etc.
56VENDOR=
57
58#########################################################################
Wolfgang Denkae6d1052008-01-13 00:59:21 +010059# Allow for silent builds
60ifeq (,$(findstring s,$(MAKEFLAGS)))
61XECHO = echo
62else
63XECHO = :
64endif
65
66#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020067#
68# U-boot build supports producing a object files to the separate external
69# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020070#
Marian Balakowiczf9328632006-09-01 19:49:50 +020071# 1) Add O= to the make command line
72# 'make O=/tmp/build all'
73#
74# 2) Set environement variable BUILD_DIR to point to the desired location
75# 'export BUILD_DIR=/tmp/build'
76# 'make'
77#
78# The second approach can also be used with a MAKEALL script
79# 'export BUILD_DIR=/tmp/build'
80# './MAKEALL'
Stefan Roese887e2ec2006-09-07 11:51:23 +020081#
Marian Balakowiczf9328632006-09-01 19:49:50 +020082# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020083#
Marian Balakowiczf9328632006-09-01 19:49:50 +020084# When none of the above methods is used the local build is performed and
85# the object files are placed in the source directory.
Stefan Roese887e2ec2006-09-07 11:51:23 +020086#
wdenk7ebf7442002-11-02 23:17:16 +000087
Marian Balakowiczf9328632006-09-01 19:49:50 +020088ifdef O
89ifeq ("$(origin O)", "command line")
90BUILD_DIR := $(O)
91endif
92endif
wdenk7ebf7442002-11-02 23:17:16 +000093
Marian Balakowiczf9328632006-09-01 19:49:50 +020094ifneq ($(BUILD_DIR),)
95saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020096
97# Attempt to create a output directory.
98$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
99
Stefan Roesea73c8db2006-09-12 08:49:07 +0200100# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +0200101BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
102$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
103endif # ifneq ($(BUILD_DIR),)
104
105OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
106SRCTREE := $(CURDIR)
107TOPDIR := $(SRCTREE)
108LNDIR := $(OBJTREE)
109export TOPDIR SRCTREE OBJTREE
110
111MKCONFIG := $(SRCTREE)/mkconfig
112export MKCONFIG
113
114ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100115REMOTE_BUILD := 1
Marian Balakowiczf9328632006-09-01 19:49:50 +0200116export REMOTE_BUILD
117endif
118
119# $(obj) and (src) are defined in config.mk but here in main Makefile
120# we also need them before config.mk is included which is the case for
121# some targets like unconfig, clean, clobber, distclean, etc.
122ifneq ($(OBJTREE),$(SRCTREE))
123obj := $(OBJTREE)/
124src := $(SRCTREE)/
125else
126obj :=
127src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200128endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200129export obj src
130
Wolfgang Denk5013c092008-03-02 22:45:33 +0100131# Make sure CDPATH settings don't interfere
132unexport CDPATH
133
Marian Balakowiczf9328632006-09-01 19:49:50 +0200134#########################################################################
135
Kumar Galaf8f9dc92008-03-31 11:59:27 -0500136ifeq ($(ARCH),powerpc)
137ARCH = ppc
138endif
139
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100140ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200141
wdenk7ebf7442002-11-02 23:17:16 +0000142# load ARCH, BOARD, and CPU configuration
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100143include $(obj)include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000144export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200145
wdenk7ebf7442002-11-02 23:17:16 +0000146ifndef CROSS_COMPILE
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100147ifeq ($(HOSTARCH),$(ARCH))
wdenk7ebf7442002-11-02 23:17:16 +0000148CROSS_COMPILE =
149else
wdenk7ebf7442002-11-02 23:17:16 +0000150ifeq ($(ARCH),ppc)
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200151CROSS_COMPILE = ppc_8xx-
wdenk7ebf7442002-11-02 23:17:16 +0000152endif
153ifeq ($(ARCH),arm)
wdenkdc7c9a12003-03-26 06:55:25 +0000154CROSS_COMPILE = arm-linux-
wdenk7ebf7442002-11-02 23:17:16 +0000155endif
wdenk2262cfe2002-11-18 00:14:45 +0000156ifeq ($(ARCH),i386)
wdenk7a8e9bed2003-05-31 18:35:21 +0000157CROSS_COMPILE = i386-linux-
158endif
wdenk43d96162003-03-06 00:02:04 +0000159ifeq ($(ARCH),mips)
160CROSS_COMPILE = mips_4KC-
161endif
wdenk4a551702003-10-08 23:26:14 +0000162ifeq ($(ARCH),nios)
163CROSS_COMPILE = nios-elf-
164endif
wdenk5c952cf2004-10-10 21:27:30 +0000165ifeq ($(ARCH),nios2)
166CROSS_COMPILE = nios2-elf-
167endif
wdenk4e5ca3e2003-12-08 01:34:36 +0000168ifeq ($(ARCH),m68k)
169CROSS_COMPILE = m68k-elf-
170endif
wdenk507bbe32004-04-18 21:13:41 +0000171ifeq ($(ARCH),microblaze)
172CROSS_COMPILE = mb-
173endif
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100174ifeq ($(ARCH),blackfin)
Aubrey.Lief26a082007-03-09 13:40:56 +0800175CROSS_COMPILE = bfin-uclinux-
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100176endif
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200177ifeq ($(ARCH),avr32)
Haavard Skinnemoen5374b362006-11-18 17:24:31 +0100178CROSS_COMPILE = avr32-linux-
Wolfgang Denk7b64fef2006-10-24 14:21:16 +0200179endif
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900180ifeq ($(ARCH),sh)
181CROSS_COMPILE = sh4-linux-
Daniel Hellstromc2f02da2008-03-28 09:47:00 +0100182endif
183ifeq ($(ARCH),sparc)
184CROSS_COMPILE = sparc-elf-
185endif # sparc
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100186endif # HOSTARCH,ARCH
187endif # CROSS_COMPILE
wdenk7ebf7442002-11-02 23:17:16 +0000188
189export CROSS_COMPILE
190
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100191# load other configuration
192include $(TOPDIR)/config.mk
193
wdenk7ebf7442002-11-02 23:17:16 +0000194#########################################################################
195# U-Boot objects....order is important (i.e. start must be first)
196
wdenk9fd5e312003-12-07 23:55:12 +0000197OBJS = cpu/$(CPU)/start.o
wdenk2262cfe2002-11-18 00:14:45 +0000198ifeq ($(CPU),i386)
wdenk9fd5e312003-12-07 23:55:12 +0000199OBJS += cpu/$(CPU)/start16.o
Graeme Russ85ffbbd2008-12-07 10:28:58 +1100200OBJS += cpu/$(CPU)/resetvec.o
wdenk2262cfe2002-11-18 00:14:45 +0000201endif
wdenk7ebf7442002-11-02 23:17:16 +0000202ifeq ($(CPU),ppc4xx)
wdenk9fd5e312003-12-07 23:55:12 +0000203OBJS += cpu/$(CPU)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000204endif
wdenk42d1f032003-10-15 23:53:47 +0000205ifeq ($(CPU),mpc85xx)
206OBJS += cpu/$(CPU)/resetvec.o
207endif
wdenk7ebf7442002-11-02 23:17:16 +0000208
Marian Balakowiczf9328632006-09-01 19:49:50 +0200209OBJS := $(addprefix $(obj),$(OBJS))
210
wdenk9fd5e312003-12-07 23:55:12 +0000211LIBS = lib_generic/libgeneric.a
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200212LIBS += lib_generic/lzma/liblzma.a
Kim Phillips7608d752007-08-21 17:00:17 -0500213LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \
214 "board/$(VENDOR)/common/lib$(VENDOR).a"; fi)
wdenk7ebf7442002-11-02 23:17:16 +0000215LIBS += cpu/$(CPU)/lib$(CPU).a
wdenk1d9f4102004-10-09 22:21:29 +0000216ifdef SOC
217LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
218endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200219ifeq ($(CPU),ixp)
220LIBS += cpu/ixp/npe/libnpe.a
221endif
wdenk7ebf7442002-11-02 23:17:16 +0000222LIBS += lib_$(ARCH)/lib$(ARCH).a
wdenk518e2e12004-03-25 14:59:05 +0000223LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
William Juul43ea36f2007-11-19 14:46:00 +0100224 fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a fs/yaffs2/libyaffs2.a
wdenk7ebf7442002-11-02 23:17:16 +0000225LIBS += net/libnet.a
226LIBS += disk/libdisk.a
Jason Jin0f460a12007-07-13 12:14:58 +0800227LIBS += drivers/bios_emulator/libatibiosemu.a
Jean-Christophe PLAGNIOL-VILLARD33daf5b2007-11-24 21:13:59 +0100228LIBS += drivers/block/libblock.a
TsiChungLiew57a12722008-01-15 14:15:46 -0600229LIBS += drivers/dma/libdma.a
Jean-Christophe PLAGNIOL-VILLARDc8aa7df2008-10-31 12:26:55 +0100230LIBS += drivers/fpga/libfpga.a
Peter Tysere92739d2008-12-17 16:36:21 -0600231LIBS += drivers/gpio/libgpio.a
Jean-Christophe PLAGNIOL-VILLARDf868cc52007-11-24 20:14:44 +0100232LIBS += drivers/hwmon/libhwmon.a
Jean-Christophe PLAGNIOL-VILLARD080c6462007-11-20 20:14:18 +0100233LIBS += drivers/i2c/libi2c.a
Jean-Christophe PLAGNIOL-VILLARD16b195c2007-11-24 19:46:45 +0100234LIBS += drivers/input/libinput.a
Jean-Christophe PLAGNIOL-VILLARD318c0b92007-11-24 21:17:55 +0100235LIBS += drivers/misc/libmisc.a
Haavard Skinnemoen5ce13052008-06-12 19:27:56 +0200236LIBS += drivers/mmc/libmmc.a
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +0100237LIBS += drivers/mtd/libmtd.a
238LIBS += drivers/mtd/nand/libnand.a
239LIBS += drivers/mtd/nand_legacy/libnand_legacy.a
240LIBS += drivers/mtd/onenand/libonenand.a
Kyungmin Park58be3a12008-11-19 16:38:24 +0100241LIBS += drivers/mtd/ubi/libubi.a
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200242LIBS += drivers/mtd/spi/libspi_flash.a
TsiChung Liew8e585f02007-06-18 13:50:13 -0500243LIBS += drivers/net/libnet.a
Jean-Christophe PLAGNIOL-VILLARD55195772008-08-29 01:18:01 +0200244LIBS += drivers/net/phy/libphy.a
Jean-Christophe PLAGNIOL-VILLARD2439e4b2007-11-21 21:19:24 +0100245LIBS += drivers/net/sk98lin/libsk98lin.a
Jean-Christophe PLAGNIOL-VILLARD93a686e2007-11-20 20:28:09 +0100246LIBS += drivers/pci/libpci.a
Jean-Christophe PLAGNIOL-VILLARD73646212007-11-20 20:33:09 +0100247LIBS += drivers/pcmcia/libpcmcia.a
Ben Warren04a9e112008-01-16 22:37:35 -0500248LIBS += drivers/spi/libspi.a
Dave Liu7737d5c2006-11-03 12:11:15 -0600249ifeq ($(CPU),mpc83xx)
250LIBS += drivers/qe/qe.a
251endif
Andy Flemingda9d4612007-08-14 00:14:25 -0500252ifeq ($(CPU),mpc85xx)
253LIBS += drivers/qe/qe.a
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500254LIBS += cpu/mpc8xxx/ddr/libddr.a
Ed Swarthout5e981d62008-10-08 23:38:02 -0500255TAG_SUBDIRS += cpu/mpc8xxx
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500256endif
257ifeq ($(CPU),mpc86xx)
258LIBS += cpu/mpc8xxx/ddr/libddr.a
Ed Swarthout5e981d62008-10-08 23:38:02 -0500259TAG_SUBDIRS += cpu/mpc8xxx
Andy Flemingda9d4612007-08-14 00:14:25 -0500260endif
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +0100261LIBS += drivers/rtc/librtc.a
TsiChung Liew8e585f02007-06-18 13:50:13 -0500262LIBS += drivers/serial/libserial.a
Jean-Christophe PLAGNIOL-VILLARD59829cc2007-11-24 21:26:56 +0100263LIBS += drivers/usb/libusb.a
264LIBS += drivers/video/libvideo.a
wdenk7ebf7442002-11-02 23:17:16 +0000265LIBS += common/libcommon.a
Gerald Van Baren7651f8b2007-04-19 23:14:39 -0400266LIBS += libfdt/libfdt.a
Rafal Jaworowski500856e2008-01-09 19:39:36 +0100267LIBS += api/libapi.a
Yuri Tikhonov2d2b9942008-03-31 10:51:37 +0200268LIBS += post/libpost.a
Marian Balakowiczf9328632006-09-01 19:49:50 +0200269
270LIBS := $(addprefix $(obj),$(LIBS))
Peter Tyser561858e2008-11-03 09:30:59 -0600271.PHONY : $(LIBS) $(TIMESTAMP_FILE) $(VERSION_FILE)
wdenka8c7c702003-12-06 19:49:23 +0000272
Wolfgang Denkde109d92008-04-30 17:25:07 +0200273LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).a
274LIBBOARD := $(addprefix $(obj),$(LIBBOARD))
275
wdenk4f7cb082003-09-11 23:06:34 +0000276# Add GCC lib
wdenk1a344f22005-02-03 23:00:49 +0000277PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
wdenk3d3befa2004-03-14 15:06:13 +0000278
wdenka8c7c702003-12-06 19:49:23 +0000279# The "tools" are needed early, so put this first
280# Don't include stuff already done in $(LIBS)
281SUBDIRS = tools \
Rafal Jaworowski0dc1fc22008-01-29 16:57:38 +0100282 examples \
283 api_examples
Rafal Jaworowski500856e2008-01-09 19:39:36 +0100284
wdenkb028f712003-12-07 21:39:28 +0000285.PHONY : $(SUBDIRS)
wdenka8c7c702003-12-06 19:49:23 +0000286
Stefan Roese887e2ec2006-09-07 11:51:23 +0200287ifeq ($(CONFIG_NAND_U_BOOT),y)
288NAND_SPL = nand_spl
289U_BOOT_NAND = $(obj)u-boot-nand.bin
290endif
291
Kyungmin Park751b9b52008-01-17 16:43:25 +0900292ifeq ($(CONFIG_ONENAND_U_BOOT),y)
293ONENAND_IPL = onenand_ipl
294U_BOOT_ONENAND = $(obj)u-boot-onenand.bin
295endif
296
Marian Balakowiczf9328632006-09-01 19:49:50 +0200297__OBJS := $(subst $(obj),,$(OBJS))
Wolfgang Denkde109d92008-04-30 17:25:07 +0200298__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200299
wdenk7ebf7442002-11-02 23:17:16 +0000300#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000301#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000302
Kyungmin Park751b9b52008-01-17 16:43:25 +0900303ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND) $(U_BOOT_ONENAND)
Mike Frysinger94a91e22008-02-04 19:26:57 -0500304ifeq ($(ARCH),blackfin)
305ALL += $(obj)u-boot.ldr
306endif
wdenk7ebf7442002-11-02 23:17:16 +0000307
wdenkbdccc4f2003-08-05 17:43:17 +0000308all: $(ALL)
wdenk7ebf7442002-11-02 23:17:16 +0000309
Marian Balakowiczf9328632006-09-01 19:49:50 +0200310$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000311 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
312
Marian Balakowiczf9328632006-09-01 19:49:50 +0200313$(obj)u-boot.srec: $(obj)u-boot
Ricardo Ribalda Delgado0817d682008-09-07 17:10:27 -0400314 $(OBJCOPY) -O srec $< $@
wdenk7ebf7442002-11-02 23:17:16 +0000315
Marian Balakowiczf9328632006-09-01 19:49:50 +0200316$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000317 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
318
Mike Frysinger94a91e22008-02-04 19:26:57 -0500319$(obj)u-boot.ldr: $(obj)u-boot
320 $(LDR) -T $(CONFIG_BFIN_CPU) -f -c $@ $< $(LDR_FLAGS)
321
322$(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
323 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
324
325$(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
326 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
327
Marian Balakowiczf9328632006-09-01 19:49:50 +0200328$(obj)u-boot.img: $(obj)u-boot.bin
wdenkbdccc4f2003-08-05 17:43:17 +0000329 ./tools/mkimage -A $(ARCH) -T firmware -C none \
330 -a $(TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100331 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000332 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
333 -d $< $@
334
Heiko Schocher566a4942007-06-22 19:11:54 +0200335$(obj)u-boot.sha1: $(obj)u-boot.bin
Heiko Schocher01159532007-07-14 01:06:58 +0200336 $(obj)tools/ubsha1 $(obj)u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200337
Marian Balakowiczf9328632006-09-01 19:49:50 +0200338$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000339 $(OBJDUMP) -d $< > $@
340
Wolfgang Denkde109d92008-04-30 17:25:07 +0200341$(obj)u-boot: depend $(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT)
342 UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
343 sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Marian Balakowiczf9328632006-09-01 19:49:50 +0200344 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
345 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000346 -Map u-boot.map -o u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000347
Johannes Stezenbach88f72522008-01-29 00:11:25 +0100348$(OBJS): depend $(obj)include/autoconf.mk
Marian Balakowiczf9328632006-09-01 19:49:50 +0200349 $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@))
350
Jean-Christophe PLAGNIOL-VILLARD9ffd53d2009-01-06 21:15:57 +0100351$(LIBS): depend $(obj)include/autoconf.mk $(SUBDIRS)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200352 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000353
Wolfgang Denkde109d92008-04-30 17:25:07 +0200354$(LIBBOARD): depend $(LIBS) $(obj)include/autoconf.mk
355 $(MAKE) -C $(dir $(subst $(obj),,$@))
356
Johannes Stezenbach88f72522008-01-29 00:11:25 +0100357$(SUBDIRS): depend $(obj)include/autoconf.mk
wdenkb028f712003-12-07 21:39:28 +0000358 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000359
Mike Frysingerf65c9812008-02-16 02:12:37 -0500360$(LDSCRIPT): depend $(obj)include/autoconf.mk
361 $(MAKE) -C $(dir $@) $(notdir $@)
362
Peter Tyser561858e2008-11-03 09:30:59 -0600363$(NAND_SPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200364 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200365
Wolfgang Denkdd531aa2008-01-13 21:05:52 +0100366$(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin $(obj)include/autoconf.mk
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200367 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 +0200368
Peter Tyser561858e2008-11-03 09:30:59 -0600369$(ONENAND_IPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
Stefan Roesef2302d42008-08-06 14:05:38 +0200370 $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all
Kyungmin Park751b9b52008-01-17 16:43:25 +0900371
372$(U_BOOT_ONENAND): $(ONENAND_IPL) $(obj)u-boot.bin $(obj)include/autoconf.mk
373 cat $(obj)onenand_ipl/onenand-ipl-2k.bin $(obj)u-boot.bin > $(obj)u-boot-onenand.bin
Kyungmin Park1bb707c2008-03-17 08:54:06 +0900374 cat $(obj)onenand_ipl/onenand-ipl-4k.bin $(obj)u-boot.bin > $(obj)u-boot-flexonenand.bin
Kyungmin Park751b9b52008-01-17 16:43:25 +0900375
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100376$(VERSION_FILE):
Mike Frysingeraa737942008-05-02 21:45:12 -0400377 @( printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' "$(U_BOOT_VERSION)" \
Peter Tyser434c51a2008-11-12 13:06:48 -0600378 '$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ) > $@.tmp
Mike Frysinger0ec7a062008-02-04 17:44:23 -0500379 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100380
Peter Tyser561858e2008-11-03 09:30:59 -0600381$(TIMESTAMP_FILE):
382 @date +'#define U_BOOT_DATE "%b %d %C%y"' > $@
383 @date +'#define U_BOOT_TIME "%T"' >> $@
384
dzu8f713fd2003-08-07 14:20:31 +0000385gdbtools:
Marian Balakowiczf9328632006-09-01 19:49:50 +0200386 $(MAKE) -C tools/gdb all || exit 1
387
388updater:
389 $(MAKE) -C tools/updater all || exit 1
390
391env:
Markus Klotzbücher64b37272007-11-27 10:23:20 +0100392 $(MAKE) -C tools/env all MTD_VERSION=${MTD_VERSION} || exit 1
dzu8f713fd2003-08-07 14:20:31 +0000393
Peter Tyser561858e2008-11-03 09:30:59 -0600394depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200395 for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000396
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100397TAG_SUBDIRS += include
398TAG_SUBDIRS += lib_generic board/$(BOARDDIR)
399TAG_SUBDIRS += cpu/$(CPU)
400TAG_SUBDIRS += lib_$(ARCH)
401TAG_SUBDIRS += fs/cramfs
402TAG_SUBDIRS += fs/fat
403TAG_SUBDIRS += fs/fdos
404TAG_SUBDIRS += fs/jffs2
William Juul43ea36f2007-11-19 14:46:00 +0100405TAG_SUBDIRS += fs/yaffs2
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100406TAG_SUBDIRS += net
407TAG_SUBDIRS += disk
408TAG_SUBDIRS += common
409TAG_SUBDIRS += drivers/bios_emulator
410TAG_SUBDIRS += drivers/block
Peter Tysere92739d2008-12-17 16:36:21 -0600411TAG_SUBDIRS += drivers/gpio
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100412TAG_SUBDIRS += drivers/hwmon
413TAG_SUBDIRS += drivers/i2c
414TAG_SUBDIRS += drivers/input
415TAG_SUBDIRS += drivers/misc
Haavard Skinnemoen5ce13052008-06-12 19:27:56 +0200416TAG_SUBDIRS += drivers/mmc
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100417TAG_SUBDIRS += drivers/mtd
418TAG_SUBDIRS += drivers/mtd/nand
419TAG_SUBDIRS += drivers/mtd/nand_legacy
420TAG_SUBDIRS += drivers/mtd/onenand
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200421TAG_SUBDIRS += drivers/mtd/spi
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100422TAG_SUBDIRS += drivers/net
423TAG_SUBDIRS += drivers/net/sk98lin
424TAG_SUBDIRS += drivers/pci
425TAG_SUBDIRS += drivers/pcmcia
426TAG_SUBDIRS += drivers/qe
427TAG_SUBDIRS += drivers/rtc
428TAG_SUBDIRS += drivers/serial
Ben Warren04a9e112008-01-16 22:37:35 -0500429TAG_SUBDIRS += drivers/spi
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100430TAG_SUBDIRS += drivers/usb
431TAG_SUBDIRS += drivers/video
432
Marian Balakowiczf9328632006-09-01 19:49:50 +0200433tags ctags:
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100434 ctags -w -o $(obj)ctags `find $(SUBDIRS) $(TAG_SUBDIRS) \
Wolfgang Denk88fed9a2007-11-26 22:57:53 +0100435 -name '*.[ch]' -print`
wdenk7ebf7442002-11-02 23:17:16 +0000436
437etags:
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100438 etags -a -o $(obj)etags `find $(SUBDIRS) $(TAG_SUBDIRS) \
Wolfgang Denk88fed9a2007-11-26 22:57:53 +0100439 -name '*.[ch]' -print`
Li Yangffda5862008-02-29 11:46:05 +0800440cscope:
441 find $(SUBDIRS) $(TAG_SUBDIRS) -name '*.[ch]' -print \
442 > cscope.files
443 cscope -b -q -k
wdenk7ebf7442002-11-02 23:17:16 +0000444
Marian Balakowiczf9328632006-09-01 19:49:50 +0200445$(obj)System.map: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000446 @$(NM) $< | \
447 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200448 sort > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000449
Grant Likely2f155f62007-09-24 09:05:31 -0600450#
451# Auto-generate the autoconf.mk file (which is included by all makefiles)
452#
453# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
454# the dep file is only include in this top level makefile to determine when
455# to regenerate the autoconf.mk file.
Wolfgang Denk1510b822008-05-13 23:15:52 +0200456$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
457 @$(XECHO) Generating $@ ; \
Mike Frysinger16fe7772008-02-18 05:10:07 -0500458 set -e ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100459 : Generate the dependancies ; \
Wolfgang Denk1510b822008-05-13 23:15:52 +0200460 $(CC) -x c -DDO_DEPS_ONLY -M $(HOST_CFLAGS) $(CPPFLAGS) \
461 -MQ $(obj)include/autoconf.mk include/common.h > $@
462
463$(obj)include/autoconf.mk: $(obj)include/config.h
464 @$(XECHO) Generating $@ ; \
465 set -e ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100466 : Extract the config macros ; \
Wolfgang Denk1510b822008-05-13 23:15:52 +0200467 $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
Wolfgang Denk4a0f7532008-12-16 14:41:02 +0100468 sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
469 mv $@.tmp $@
Grant Likely2f155f62007-09-24 09:05:31 -0600470
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100471sinclude $(obj)include/autoconf.mk.dep
Grant Likely2f155f62007-09-24 09:05:31 -0600472
wdenk7ebf7442002-11-02 23:17:16 +0000473#########################################################################
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100474else # !config.mk
Marian Balakowiczf9328632006-09-01 19:49:50 +0200475all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
476$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
Peter Tyser561858e2008-11-03 09:30:59 -0600477$(SUBDIRS) $(TIMESTAMP_FILE) $(VERSION_FILE) gdbtools updater env depend \
Li Yangffda5862008-02-29 11:46:05 +0800478dep tags ctags etags cscope $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000479 @echo "System not configured - see README" >&2
480 @ exit 1
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100481endif # config.mk
wdenk7ebf7442002-11-02 23:17:16 +0000482
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200483.PHONY : CHANGELOG
484CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400485 git log --no-merges U-Boot-1_1_5.. | \
486 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200487
Harald Welte0a823aa2008-07-09 22:30:30 +0800488include/license.h: tools/bin2header COPYING
489 cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
wdenk7ebf7442002-11-02 23:17:16 +0000490#########################################################################
491
492unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200493 @rm -f $(obj)include/config.h $(obj)include/config.mk \
Grant Likely2f155f62007-09-24 09:05:31 -0600494 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
495 $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
wdenk7ebf7442002-11-02 23:17:16 +0000496
497#========================================================================
498# PowerPC
499#========================================================================
wdenk0db5bca2003-03-31 17:27:09 +0000500
501#########################################################################
502## MPC5xx Systems
503#########################################################################
504
wdenk5e5f9ed2005-04-13 23:15:10 +0000505canmb_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200506 @$(MKCONFIG) -a canmb ppc mpc5xxx canmb
wdenk5e5f9ed2005-04-13 23:15:10 +0000507
wdenk0db5bca2003-03-31 17:27:09 +0000508cmi_mpc5xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200509 @$(MKCONFIG) $(@:_config=) ppc mpc5xx cmi
wdenk0db5bca2003-03-31 17:27:09 +0000510
wdenkdb01a2e2004-04-15 23:14:49 +0000511PATI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200512 @$(MKCONFIG) $(@:_config=) ppc mpc5xx pati mpl
wdenkb6e4c402004-01-02 16:05:07 +0000513
wdenk7ebf7442002-11-02 23:17:16 +0000514#########################################################################
wdenk945af8d2003-07-16 21:53:01 +0000515## MPC5xxx Systems
516#########################################################################
wdenka87589d2005-06-10 10:00:19 +0000517
Wolfgang Denkdafba162005-08-12 00:22:49 +0200518aev_config: unconfig
Wolfgang Grandegger46779882008-06-04 13:52:17 +0200519 @$(MKCONFIG) -a aev ppc mpc5xxx tqm5200 tqc
Wolfgang Denkdafba162005-08-12 00:22:49 +0200520
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200521BC3450_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200522 @$(MKCONFIG) -a BC3450 ppc mpc5xxx bc3450
dzu@denx.de6ca24c62006-04-21 18:30:47 +0200523
Wolfgang Denk699f0512008-07-15 22:22:44 +0200524cm5200_config: unconfig
525 @$(MKCONFIG) -a cm5200 ppc mpc5xxx cm5200
526
Stefan Roese5e4b3362005-08-22 17:51:53 +0200527cpci5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200528 @$(MKCONFIG) -a cpci5200 ppc mpc5xxx cpci5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200529
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200530hmi1001_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200531 @$(MKCONFIG) hmi1001 ppc mpc5xxx hmi1001
wdenka87589d2005-06-10 10:00:19 +0000532
wdenke35745b2004-04-18 23:32:11 +0000533Lite5200_config \
534Lite5200_LOWBOOT_config \
535Lite5200_LOWBOOT08_config \
536icecube_5200_config \
537icecube_5200_LOWBOOT_config \
538icecube_5200_LOWBOOT08_config \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100539icecube_5200_DDR_config \
540icecube_5200_DDR_LOWBOOT_config \
wdenke35745b2004-04-18 23:32:11 +0000541icecube_5200_DDR_LOWBOOT08_config \
542icecube_5100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200543 @mkdir -p $(obj)include
544 @mkdir -p $(obj)board/icecube
wdenk17d704e2004-04-10 20:43:50 +0000545 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
546 { if [ "$(findstring DDR,$@)" ] ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200547 then echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
548 else echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
wdenk17d704e2004-04-10 20:43:50 +0000549 fi ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100550 $(XECHO) "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000551 }
552 @[ -z "$(findstring LOWBOOT08,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200553 { echo "TEXT_BASE = 0xFF800000" >$(obj)board/icecube/config.tmp ; \
wdenk5cf9da42003-11-07 13:42:26 +0000554 echo "... with 8 MB flash only" ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100555 $(XECHO) "... with LOWBOOT configuration" ; \
wdenk5cf9da42003-11-07 13:42:26 +0000556 }
wdenkb2001f22003-12-20 22:45:10 +0000557 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200558 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100559 $(XECHO) "... DDR memory revision" ; \
wdenkb2001f22003-12-20 22:45:10 +0000560 }
wdenkd4ca31c2004-01-02 14:00:00 +0000561 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200562 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100563 $(XECHO) "... with MPC5200 processor" ; \
wdenkd4ca31c2004-01-02 14:00:00 +0000564 }
wdenka0f2fe52003-10-28 09:14:21 +0000565 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200566 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100567 $(XECHO) "... with MGT5100 processor" ; \
wdenk945af8d2003-07-16 21:53:01 +0000568 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200569 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
wdenk945af8d2003-07-16 21:53:01 +0000570
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200571jupiter_config: unconfig
Heiko Schocher2605e902007-02-16 07:57:42 +0100572 @$(MKCONFIG) jupiter ppc mpc5xxx jupiter
573
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100574inka4x0_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200575 @$(MKCONFIG) inka4x0 ppc mpc5xxx inka4x0
wdenk138ff602004-12-16 15:52:40 +0000576
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100577lite5200b_config \
Domen Puncerd3832e82007-04-16 14:00:13 +0200578lite5200b_PM_config \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100579lite5200b_LOWBOOT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200580 @mkdir -p $(obj)include
581 @mkdir -p $(obj)board/icecube
Marian Balakowiczf9328632006-09-01 19:49:50 +0200582 @ echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100583 @ $(XECHO) "... DDR memory revision"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200584 @ echo "#define CONFIG_MPC5200" >>$(obj)include/config.h
585 @ echo "#define CONFIG_LITE5200B" >>$(obj)include/config.h
Domen Puncerd3832e82007-04-16 14:00:13 +0200586 @[ -z "$(findstring _PM_,$@)" ] || \
587 { echo "#define CONFIG_LITE5200B_PM" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100588 $(XECHO) "... with power management (low-power mode) support" ; \
Domen Puncerd3832e82007-04-16 14:00:13 +0200589 }
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100590 @[ -z "$(findstring LOWBOOT_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200591 { echo "TEXT_BASE = 0xFF000000" >$(obj)board/icecube/config.tmp ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100592 $(XECHO) "... with LOWBOOT configuration" ; \
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100593 }
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100594 @ $(XECHO) "... with MPC5200B processor"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200595 @$(MKCONFIG) -a IceCube ppc mpc5xxx icecube
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +0100596
Stefan Roesef1ee9822006-03-04 14:57:03 +0100597mcc200_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200598mcc200_SDRAM_config \
599mcc200_highboot_config \
600mcc200_COM12_config \
601mcc200_COM12_SDRAM_config \
Wolfgang Denk113f64e2006-08-25 01:38:04 +0200602mcc200_COM12_highboot_config \
603mcc200_COM12_highboot_SDRAM_config \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200604mcc200_highboot_SDRAM_config \
605prs200_config \
606prs200_DDR_config \
607prs200_highboot_config \
608prs200_highboot_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200609 @mkdir -p $(obj)include
610 @mkdir -p $(obj)board/mcc200
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200611 @[ -n "$(findstring highboot,$@)" ] || \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100612 { $(XECHO) "... with lowboot configuration" ; \
Stefan Roesef1ee9822006-03-04 14:57:03 +0100613 }
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200614 @[ -z "$(findstring highboot,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200615 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/mcc200/config.tmp ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100616 $(XECHO) "... with highboot configuration" ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200617 }
618 @[ -n "$(findstring _SDRAM,$@)" ] || \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200619 { if [ -n "$(findstring mcc200,$@)" ]; \
620 then \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100621 $(XECHO) "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200622 else \
623 if [ -n "$(findstring _DDR,$@)" ];\
624 then \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100625 $(XECHO) "... with DDR" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200626 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200627 echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ;\
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100628 $(XECHO) "... with SDRAM" ; \
Wolfgang Denked1cf842006-08-24 00:26:42 +0200629 fi; \
630 fi; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200631 }
632 @[ -z "$(findstring _SDRAM,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200633 { echo "#define CONFIG_MCC200_SDRAM" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100634 $(XECHO) "... with SDRAM" ; \
Wolfgang Denk4819fad2006-07-23 22:40:51 +0200635 }
Wolfgang Denk463764c2006-08-17 00:36:51 +0200636 @[ -z "$(findstring COM12,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200637 { echo "#define CONFIG_CONSOLE_COM12" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100638 $(XECHO) "... with console on COM12" ; \
Wolfgang Denk463764c2006-08-17 00:36:51 +0200639 }
Wolfgang Denked1cf842006-08-24 00:26:42 +0200640 @[ -z "$(findstring prs200,$@)" ] || \
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100641 { echo "#define CONFIG_PRS200" >>$(obj)include/config.h ;\
Wolfgang Denked1cf842006-08-24 00:26:42 +0200642 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200643 @$(MKCONFIG) -n $@ -a mcc200 ppc mpc5xxx mcc200
Wolfgang Denk86ea5f92006-02-22 00:43:16 +0100644
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100645mecp5200_config: unconfig
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100646 @$(MKCONFIG) mecp5200 ppc mpc5xxx mecp5200 esd
Stefan Roese8b7d1f02007-01-31 16:37:34 +0100647
Wolfgang Denk699f0512008-07-15 22:22:44 +0200648motionpro_config: unconfig
649 @$(MKCONFIG) motionpro ppc mpc5xxx motionpro
650
Heiko Schocher258c37b2008-08-21 20:44:49 +0200651mucmc52_config: unconfig
652 @$(MKCONFIG) mucmc52 ppc mpc5xxx mucmc52
653
Heiko Schocher6341d9d2008-01-11 15:15:14 +0100654munices_config: unconfig
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100655 @$(MKCONFIG) munices ppc mpc5xxx munices
Heiko Schocher6341d9d2008-01-11 15:15:14 +0100656
Wolfgang Denk699f0512008-07-15 22:22:44 +0200657MVBC_P_config: unconfig
658 @mkdir -p $(obj)include
659 @mkdir -p $(obj)board/mvbc_p
660 @ >$(obj)include/config.h
661 @[ -z "$(findstring MVBC_P,$@)" ] || \
662 { echo "#define CONFIG_MVBC_P" >>$(obj)include/config.h; }
663 @$(MKCONFIG) -n $@ -a MVBC_P ppc mpc5xxx mvbc_p matrix_vision
664
Jean-Christophe PLAGNIOL-VILLARD91c82072008-03-02 16:12:31 +0100665o2dnt_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200666 @$(MKCONFIG) o2dnt ppc mpc5xxx o2dnt
Wolfgang Denkdf04a3d2005-08-18 01:22:22 +0200667
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100668pf5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200669 @$(MKCONFIG) pf5200 ppc mpc5xxx pf5200 esd
Stefan Roese5e4b3362005-08-22 17:51:53 +0200670
wdenk89394042004-08-04 21:56:49 +0000671PM520_config \
672PM520_DDR_config \
673PM520_ROMBOOT_config \
674PM520_ROMBOOT_DDR_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200675 @mkdir -p $(obj)include
wdenk89394042004-08-04 21:56:49 +0000676 @[ -z "$(findstring DDR,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200677 { echo "#define CONFIG_MPC5200_DDR" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100678 $(XECHO) "... DDR memory revision" ; \
wdenk89394042004-08-04 21:56:49 +0000679 }
680 @[ -z "$(findstring ROMBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200681 { echo "#define CONFIG_BOOT_ROM" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100682 $(XECHO) "... booting from 8-bit flash" ; \
wdenk89394042004-08-04 21:56:49 +0000683 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200684 @$(MKCONFIG) -a PM520 ppc mpc5xxx pm520
wdenk89394042004-08-04 21:56:49 +0000685
Wolfgang Denk6624b682006-02-22 10:25:39 +0100686smmaco4_config: unconfig
Wolfgang Grandegger46779882008-06-04 13:52:17 +0200687 @$(MKCONFIG) -a smmaco4 ppc mpc5xxx tqm5200 tqc
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100688
689spieval_config: unconfig
Wolfgang Grandegger46779882008-06-04 13:52:17 +0200690 @$(MKCONFIG) -a spieval ppc mpc5xxx tqm5200 tqc
Wolfgang Denk9cdc8382006-02-22 01:59:13 +0100691
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200692TB5200_B_config \
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200693TB5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200694 @mkdir -p $(obj)include
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200695 @[ -z "$(findstring _B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200696 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100697 $(XECHO) "... with MPC5200B processor" ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200698 }
Wolfgang Grandegger46779882008-06-04 13:52:17 +0200699 @$(MKCONFIG) -n $@ -a TB5200 ppc mpc5xxx tqm5200 tqc
Wolfgang Denkb87dfd22006-07-19 13:50:38 +0200700
wdenkd4ca31c2004-01-02 14:00:00 +0000701MINI5200_config \
702EVAL5200_config \
703TOP5200_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200704 @mkdir -p $(obj)include
705 @ echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
706 @$(MKCONFIG) -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
wdenkd4ca31c2004-01-02 14:00:00 +0000707
wdenk6c7a1402004-07-11 19:17:20 +0000708Total5100_config \
709Total5200_config \
710Total5200_lowboot_config \
711Total5200_Rev2_config \
712Total5200_Rev2_lowboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200713 @mkdir -p $(obj)include
714 @mkdir -p $(obj)board/total5200
wdenk6c7a1402004-07-11 19:17:20 +0000715 @[ -z "$(findstring 5100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200716 { echo "#define CONFIG_MGT5100" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100717 $(XECHO) "... with MGT5100 processor" ; \
wdenk6c7a1402004-07-11 19:17:20 +0000718 }
719 @[ -z "$(findstring 5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200720 { echo "#define CONFIG_MPC5200" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100721 $(XECHO) "... with MPC5200 processor" ; \
wdenk6c7a1402004-07-11 19:17:20 +0000722 }
723 @[ -n "$(findstring Rev,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200724 { echo "#define CONFIG_TOTAL5200_REV 1" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100725 $(XECHO) "... revision 1 board" ; \
wdenk6c7a1402004-07-11 19:17:20 +0000726 }
727 @[ -z "$(findstring Rev2_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200728 { echo "#define CONFIG_TOTAL5200_REV 2" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100729 $(XECHO) "... revision 2 board" ; \
wdenk6c7a1402004-07-11 19:17:20 +0000730 }
731 @[ -z "$(findstring lowboot_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200732 { echo "TEXT_BASE = 0xFE000000" >$(obj)board/total5200/config.tmp ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100733 $(XECHO) "... with lowboot configuration" ; \
wdenk6c7a1402004-07-11 19:17:20 +0000734 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200735 @$(MKCONFIG) -a Total5200 ppc mpc5xxx total5200
wdenk6c7a1402004-07-11 19:17:20 +0000736
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200737cam5200_config \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100738cam5200_niosflash_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200739fo300_config \
740MiniFAP_config \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200741TQM5200S_config \
742TQM5200S_HIGHBOOT_config \
Wolfgang Denk5196a7a2006-08-18 23:27:33 +0200743TQM5200_B_config \
744TQM5200_B_HIGHBOOT_config \
745TQM5200_config \
746TQM5200_STK100_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200747 @mkdir -p $(obj)include
Wolfgang Grandegger46779882008-06-04 13:52:17 +0200748 @mkdir -p $(obj)board/tqc/tqm5200
Wolfgang Denk135ae002006-07-22 01:20:03 +0200749 @[ -z "$(findstring cam5200,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200750 { echo "#define CONFIG_CAM5200" >>$(obj)include/config.h ; \
751 echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
752 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100753 $(XECHO) "... TQM5200S on Cam5200" ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200754 }
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100755 @[ -z "$(findstring niosflash,$@)" ] || \
756 { echo "#define CONFIG_CAM5200_NIOSFLASH" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100757 $(XECHO) "... with NIOS flash driver" ; \
Marian Balakowiczd9384de2007-01-10 00:26:15 +0100758 }
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200759 @[ -z "$(findstring fo300,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200760 { echo "#define CONFIG_FO300" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100761 $(XECHO) "... TQM5200 on FO300" ; \
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +0200762 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200763 @[ -z "$(findstring MiniFAP,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200764 { echo "#define CONFIG_MINIFAP" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100765 $(XECHO) "... TQM5200_AC on MiniFAP" ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200766 }
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +0200767 @[ -z "$(findstring STK100,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200768 { echo "#define CONFIG_STK52XX_REV100" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100769 $(XECHO) "... on a STK52XX.100 base board" ; \
wdenk56523f12004-07-11 17:40:54 +0000770 }
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200771 @[ -z "$(findstring TQM5200_B,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200772 { echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk5078cce2006-07-21 11:16:34 +0200773 }
774 @[ -z "$(findstring TQM5200S,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200775 { echo "#define CONFIG_TQM5200S" >>$(obj)include/config.h ; \
776 echo "#define CONFIG_TQM5200_B" >>$(obj)include/config.h ; \
Wolfgang Denk45a212c2006-07-19 17:52:30 +0200777 }
Wolfgang Denk978b1092006-07-19 18:01:38 +0200778 @[ -z "$(findstring HIGHBOOT,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200779 { echo "TEXT_BASE = 0xFFF00000" >$(obj)board/tqm5200/config.tmp ; \
Wolfgang Denk978b1092006-07-19 18:01:38 +0200780 }
Wolfgang Grandegger46779882008-06-04 13:52:17 +0200781 @$(MKCONFIG) -n $@ -a TQM5200 ppc mpc5xxx tqm5200 tqc
Wolfgang Denk699f0512008-07-15 22:22:44 +0200782
Wolfgang Denk05bf4912007-10-21 01:01:17 +0200783uc101_config: unconfig
Heiko Schocher6dedf3d2006-12-21 16:14:48 +0100784 @$(MKCONFIG) uc101 ppc mpc5xxx uc101
Bartlomiej Sieka53d4a492007-02-09 10:45:42 +0100785
Wolfgang Denk699f0512008-07-15 22:22:44 +0200786v38b_config: unconfig
787 @$(MKCONFIG) -a v38b ppc mpc5xxx v38b
wdenk56523f12004-07-11 17:40:54 +0000788
wdenk945af8d2003-07-16 21:53:01 +0000789#########################################################################
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200790## MPC512x Systems
791#########################################################################
Wolfgang Denk699f0512008-07-15 22:22:44 +0200792
John Rigby5f91db72008-02-26 09:38:14 -0700793ads5121_config \
Martha Marxf31c49d2008-05-29 14:23:25 -0400794ads5121_rev2_config \
795 : unconfig
Wolfgang Denk210ed202008-03-09 00:06:09 +0100796 @mkdir -p $(obj)include
Martha Marxf31c49d2008-05-29 14:23:25 -0400797 @if [ "$(findstring rev2,$@)" ] ; then \
798 echo "#define CONFIG_ADS5121_REV2 1" > $(obj)include/config.h; \
John Rigby5f91db72008-02-26 09:38:14 -0700799 fi
800 @$(MKCONFIG) -a ads5121 ppc mpc512x ads5121
Rafal Jaworowski8993e542007-07-27 14:43:59 +0200801
802
803#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000804## MPC8xx Systems
805#########################################################################
806
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100807Adder_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000808Adder87x_config \
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100809AdderII_config \
wdenk2d24a3a2004-06-09 21:50:45 +0000810 : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200811 @mkdir -p $(obj)include
wdenk26238132004-07-09 22:51:01 +0000812 $(if $(findstring AdderII,$@), \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200813 @echo "#define CONFIG_MPC852T" > $(obj)include/config.h)
814 @$(MKCONFIG) -a Adder ppc mpc8xx adder
wdenk2d24a3a2004-06-09 21:50:45 +0000815
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200816AdderUSB_config: unconfig
Jean-Christophe PLAGNIOL-VILLARD91c82072008-03-02 16:12:31 +0100817 @$(MKCONFIG) -a AdderUSB ppc mpc8xx adder
Wolfgang Denk16c8d5e2006-06-14 17:45:53 +0200818
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100819ADS860_config \
820FADS823_config \
wdenk180d3f72004-01-04 16:28:35 +0000821FADS850SAR_config \
822MPC86xADS_config \
wdenk11142572004-06-06 21:35:06 +0000823MPC885ADS_config \
wdenk180d3f72004-01-04 16:28:35 +0000824FADS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200825 @$(MKCONFIG) $(@:_config=) ppc mpc8xx fads
wdenk7ebf7442002-11-02 23:17:16 +0000826
827AMX860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200828 @$(MKCONFIG) $(@:_config=) ppc mpc8xx amx860 westel
wdenk7ebf7442002-11-02 23:17:16 +0000829
830c2mon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200831 @$(MKCONFIG) $(@:_config=) ppc mpc8xx c2mon
wdenk7ebf7442002-11-02 23:17:16 +0000832
833CCM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200834 @$(MKCONFIG) $(@:_config=) ppc mpc8xx CCM siemens
wdenk7ebf7442002-11-02 23:17:16 +0000835
836cogent_mpc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200837 @$(MKCONFIG) $(@:_config=) ppc mpc8xx cogent
wdenk7ebf7442002-11-02 23:17:16 +0000838
wdenk3bac3512003-03-12 10:41:04 +0000839ELPT860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200840 @$(MKCONFIG) $(@:_config=) ppc mpc8xx elpt860 LEOX
wdenk3bac3512003-03-12 10:41:04 +0000841
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100842EP88x_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200843 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ep88x
Wolfgang Denk84c960c2006-03-12 23:17:31 +0100844
wdenk7ebf7442002-11-02 23:17:16 +0000845ESTEEM192E_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200846 @$(MKCONFIG) $(@:_config=) ppc mpc8xx esteem192e
wdenk7ebf7442002-11-02 23:17:16 +0000847
848ETX094_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200849 @$(MKCONFIG) $(@:_config=) ppc mpc8xx etx094
wdenk7ebf7442002-11-02 23:17:16 +0000850
wdenk7ebf7442002-11-02 23:17:16 +0000851FLAGADM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200852 @$(MKCONFIG) $(@:_config=) ppc mpc8xx flagadm
wdenk7ebf7442002-11-02 23:17:16 +0000853
wdenk7aa78612003-05-03 15:50:43 +0000854xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
855
856GEN860T_SC_config \
wdenk7ebf7442002-11-02 23:17:16 +0000857GEN860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200858 @mkdir -p $(obj)include
wdenk7aa78612003-05-03 15:50:43 +0000859 @[ -z "$(findstring _SC,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200860 { echo "#define CONFIG_SC" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100861 $(XECHO) "With reduced H/W feature set (SC)..." ; \
wdenk7aa78612003-05-03 15:50:43 +0000862 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200863 @$(MKCONFIG) -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
wdenk7ebf7442002-11-02 23:17:16 +0000864
865GENIETV_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200866 @$(MKCONFIG) $(@:_config=) ppc mpc8xx genietv
wdenk7ebf7442002-11-02 23:17:16 +0000867
868GTH_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200869 @$(MKCONFIG) $(@:_config=) ppc mpc8xx gth
wdenk7ebf7442002-11-02 23:17:16 +0000870
871hermes_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200872 @$(MKCONFIG) $(@:_config=) ppc mpc8xx hermes
wdenk7ebf7442002-11-02 23:17:16 +0000873
wdenkc40b2952004-03-13 23:29:43 +0000874HMI10_config : unconfig
Wolfgang Grandegger46779882008-06-04 13:52:17 +0200875 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx tqc
wdenkc40b2952004-03-13 23:29:43 +0000876
wdenk7ebf7442002-11-02 23:17:16 +0000877IAD210_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200878 @$(MKCONFIG) $(@:_config=) ppc mpc8xx IAD210 siemens
wdenk7ebf7442002-11-02 23:17:16 +0000879
880xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
881
882ICU862_100MHz_config \
883ICU862_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200884 @mkdir -p $(obj)include
wdenk7ebf7442002-11-02 23:17:16 +0000885 @[ -z "$(findstring _100MHz,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200886 { echo "#define CONFIG_100MHz" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100887 $(XECHO) "... with 100MHz system clock" ; \
wdenk7ebf7442002-11-02 23:17:16 +0000888 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200889 @$(MKCONFIG) -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
wdenk7ebf7442002-11-02 23:17:16 +0000890
891IP860_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200892 @$(MKCONFIG) $(@:_config=) ppc mpc8xx ip860
wdenk7ebf7442002-11-02 23:17:16 +0000893
894IVML24_256_config \
895IVML24_128_config \
896IVML24_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200897 @mkdir -p $(obj)include
wdenk7ebf7442002-11-02 23:17:16 +0000898 @[ -z "$(findstring IVML24_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200899 { echo "#define CONFIG_IVML24_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000900 }
901 @[ -z "$(findstring IVML24_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200902 { echo "#define CONFIG_IVML24_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000903 }
904 @[ -z "$(findstring IVML24_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200905 { echo "#define CONFIG_IVML24_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000906 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200907 @$(MKCONFIG) -a IVML24 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000908
909IVMS8_256_config \
910IVMS8_128_config \
911IVMS8_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200912 @mkdir -p $(obj)include
wdenk7ebf7442002-11-02 23:17:16 +0000913 @[ -z "$(findstring IVMS8_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200914 { echo "#define CONFIG_IVMS8_16M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000915 }
916 @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200917 { echo "#define CONFIG_IVMS8_32M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000918 }
919 @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200920 { echo "#define CONFIG_IVMS8_64M" >>$(obj)include/config.h ; \
wdenk7ebf7442002-11-02 23:17:16 +0000921 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200922 @$(MKCONFIG) -a IVMS8 ppc mpc8xx ivm
wdenk7ebf7442002-11-02 23:17:16 +0000923
wdenk56f94be2002-11-05 16:35:14 +0000924KUP4K_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200925 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4k kup
wdenk0608e042004-03-25 19:29:38 +0000926
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100927KUP4X_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200928 @$(MKCONFIG) $(@:_config=) ppc mpc8xx kup4x kup
wdenk56f94be2002-11-05 16:35:14 +0000929
wdenk7ebf7442002-11-02 23:17:16 +0000930LANTEC_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200931 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lantec
wdenk7ebf7442002-11-02 23:17:16 +0000932
933lwmon_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200934 @$(MKCONFIG) $(@:_config=) ppc mpc8xx lwmon
wdenk7ebf7442002-11-02 23:17:16 +0000935
936MBX_config \
937MBX860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200938 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mbx8xx
wdenk7ebf7442002-11-02 23:17:16 +0000939
Heiko Schocher381e4e62008-01-11 01:12:06 +0100940mgsuvd_config: unconfig
Heiko Schocher86e9cdf2008-10-15 09:32:25 +0200941 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mgsuvd keymile
Heiko Schocher381e4e62008-01-11 01:12:06 +0100942
wdenk7ebf7442002-11-02 23:17:16 +0000943MHPC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200944 @$(MKCONFIG) $(@:_config=) ppc mpc8xx mhpc eltec
wdenk7ebf7442002-11-02 23:17:16 +0000945
wdenk993cad92003-06-26 22:04:09 +0000946xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
947
948NETVIA_V2_config \
wdenk7ebf7442002-11-02 23:17:16 +0000949NETVIA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200950 @mkdir -p $(obj)include
wdenk993cad92003-06-26 22:04:09 +0000951 @[ -z "$(findstring NETVIA_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200952 { echo "#define CONFIG_NETVIA_VERSION 1" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100953 $(XECHO) "... Version 1" ; \
wdenk993cad92003-06-26 22:04:09 +0000954 }
955 @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200956 { echo "#define CONFIG_NETVIA_VERSION 2" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100957 $(XECHO) "... Version 2" ; \
wdenk993cad92003-06-26 22:04:09 +0000958 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200959 @$(MKCONFIG) -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
wdenk7ebf7442002-11-02 23:17:16 +0000960
wdenkc26e4542004-04-18 10:13:26 +0000961xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
962
963NETPHONE_V2_config \
wdenk04a85b32004-04-15 18:22:41 +0000964NETPHONE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200965 @mkdir -p $(obj)include
wdenkc26e4542004-04-18 10:13:26 +0000966 @[ -z "$(findstring NETPHONE_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200967 { echo "#define CONFIG_NETPHONE_VERSION 1" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000968 }
969 @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200970 { echo "#define CONFIG_NETPHONE_VERSION 2" >>$(obj)include/config.h ; \
wdenkc26e4542004-04-18 10:13:26 +0000971 }
Marian Balakowiczf9328632006-09-01 19:49:50 +0200972 @$(MKCONFIG) -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
wdenk04a85b32004-04-15 18:22:41 +0000973
wdenk79fa88f2004-06-07 23:46:25 +0000974xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
wdenk04a85b32004-04-15 18:22:41 +0000975
wdenk79fa88f2004-06-07 23:46:25 +0000976NETTA_ISDN_6412_SWAPHOOK_config \
977NETTA_ISDN_SWAPHOOK_config \
978NETTA_6412_SWAPHOOK_config \
979NETTA_SWAPHOOK_config \
980NETTA_ISDN_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000981NETTA_ISDN_config \
wdenk79fa88f2004-06-07 23:46:25 +0000982NETTA_6412_config \
wdenk04a85b32004-04-15 18:22:41 +0000983NETTA_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200984 @mkdir -p $(obj)include
wdenk79fa88f2004-06-07 23:46:25 +0000985 @[ -z "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200986 { echo "#define CONFIG_NETTA_ISDN 1" >>$(obj)include/config.h ; \
wdenk04a85b32004-04-15 18:22:41 +0000987 }
wdenk79fa88f2004-06-07 23:46:25 +0000988 @[ -n "$(findstring ISDN_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200989 { echo "#undef CONFIG_NETTA_ISDN" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000990 }
991 @[ -z "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200992 { echo "#define CONFIG_NETTA_6412 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000993 }
994 @[ -n "$(findstring 6412_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200995 { echo "#undef CONFIG_NETTA_6412" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000996 }
997 @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200998 { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +0000999 }
1000 @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001001 { echo "#undef CONFIG_NETTA_SWAPHOOK" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +00001002 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001003 @$(MKCONFIG) -a $(call xtract_NETTA,$@) ppc mpc8xx netta
wdenk04a85b32004-04-15 18:22:41 +00001004
wdenk79fa88f2004-06-07 23:46:25 +00001005xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
1006
1007NETTA2_V2_config \
1008NETTA2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001009 @mkdir -p $(obj)include
wdenk79fa88f2004-06-07 23:46:25 +00001010 @[ -z "$(findstring NETTA2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001011 { echo "#define CONFIG_NETTA2_VERSION 1" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +00001012 }
1013 @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001014 { echo "#define CONFIG_NETTA2_VERSION 2" >>$(obj)include/config.h ; \
wdenk79fa88f2004-06-07 23:46:25 +00001015 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001016 @$(MKCONFIG) -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
wdenk79fa88f2004-06-07 23:46:25 +00001017
dzu@denx.dea367d422006-04-19 11:52:46 +02001018NC650_Rev1_config \
1019NC650_Rev2_config \
1020CP850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001021 @mkdir -p $(obj)include
dzu@denx.dea367d422006-04-19 11:52:46 +02001022 @[ -z "$(findstring CP850,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001023 { echo "#define CONFIG_CP850 1" >>$(obj)include/config.h ; \
1024 echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +02001025 }
1026 @[ -z "$(findstring Rev1,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001027 { echo "#define CONFIG_IDS852_REV1 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +02001028 }
1029 @[ -z "$(findstring Rev2,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001030 { echo "#define CONFIG_IDS852_REV2 1" >>$(obj)include/config.h ; \
dzu@denx.dea367d422006-04-19 11:52:46 +02001031 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001032 @$(MKCONFIG) -a NC650 ppc mpc8xx nc650
wdenk7ca202f2004-08-28 22:45:57 +00001033
wdenk7ebf7442002-11-02 23:17:16 +00001034NX823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001035 @$(MKCONFIG) $(@:_config=) ppc mpc8xx nx823
wdenk7ebf7442002-11-02 23:17:16 +00001036
1037pcu_e_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001038 @$(MKCONFIG) $(@:_config=) ppc mpc8xx pcu_e siemens
wdenk7ebf7442002-11-02 23:17:16 +00001039
wdenk3bbc8992003-12-07 22:27:15 +00001040QS850_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001041 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +00001042
1043QS823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001044 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs850 snmc
wdenk3bbc8992003-12-07 22:27:15 +00001045
1046QS860T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001047 @$(MKCONFIG) $(@:_config=) ppc mpc8xx qs860t snmc
wdenk3bbc8992003-12-07 22:27:15 +00001048
wdenkda93ed82004-09-29 11:02:56 +00001049quantum_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001050 @$(MKCONFIG) $(@:_config=) ppc mpc8xx quantum
wdenkda93ed82004-09-29 11:02:56 +00001051
wdenk7ebf7442002-11-02 23:17:16 +00001052R360MPI_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001053 @$(MKCONFIG) $(@:_config=) ppc mpc8xx r360mpi
wdenk7ebf7442002-11-02 23:17:16 +00001054
wdenk682011f2003-06-03 23:54:09 +00001055RBC823_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001056 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rbc823
wdenk682011f2003-06-03 23:54:09 +00001057
wdenk7ebf7442002-11-02 23:17:16 +00001058RPXClassic_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001059 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXClassic
wdenk7ebf7442002-11-02 23:17:16 +00001060
1061RPXlite_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001062 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RPXlite
wdenk7ebf7442002-11-02 23:17:16 +00001063
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001064RPXlite_DW_64_config \
1065RPXlite_DW_LCD_config \
1066RPXlite_DW_64_LCD_config \
wdenke63c8ee2004-06-09 21:04:48 +00001067RPXlite_DW_NVRAM_config \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01001068RPXlite_DW_NVRAM_64_config \
wdenke63c8ee2004-06-09 21:04:48 +00001069RPXlite_DW_NVRAM_LCD_config \
Wolfgang Denkf9301e12008-03-04 14:58:31 +01001070RPXlite_DW_NVRAM_64_LCD_config \
Wolfgang Denk05bf4912007-10-21 01:01:17 +02001071RPXlite_DW_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001072 @mkdir -p $(obj)include
wdenke63c8ee2004-06-09 21:04:48 +00001073 @[ -z "$(findstring _64,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001074 { echo "#define RPXlite_64MHz" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001075 $(XECHO) "... with 64MHz system clock ..."; \
wdenke63c8ee2004-06-09 21:04:48 +00001076 }
1077 @[ -z "$(findstring _LCD,$@)" ] || \
Wolfgang Denkdd520bf2006-11-30 18:02:20 +01001078 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001079 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001080 $(XECHO) "... with LCD display ..."; \
wdenke63c8ee2004-06-09 21:04:48 +00001081 }
1082 @[ -z "$(findstring _NVRAM,$@)" ] || \
Jean-Christophe PLAGNIOL-VILLARD9314cee2008-09-10 22:47:59 +02001083 { echo "#define CONFIG_ENV_IS_IN_NVRAM" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001084 $(XECHO) "... with ENV in NVRAM ..."; \
wdenke63c8ee2004-06-09 21:04:48 +00001085 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001086 @$(MKCONFIG) -a RPXlite_DW ppc mpc8xx RPXlite_dw
wdenke63c8ee2004-06-09 21:04:48 +00001087
wdenk73a8b272003-06-05 19:27:42 +00001088rmu_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001089 @$(MKCONFIG) $(@:_config=) ppc mpc8xx rmu
wdenk73a8b272003-06-05 19:27:42 +00001090
wdenk7ebf7442002-11-02 23:17:16 +00001091RRvision_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001092 @$(MKCONFIG) $(@:_config=) ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +00001093
1094RRvision_LCD_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001095 @mkdir -p $(obj)include
1096 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1097 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
1098 @$(MKCONFIG) -a RRvision ppc mpc8xx RRvision
wdenk7ebf7442002-11-02 23:17:16 +00001099
1100SM850_config : unconfig
Wolfgang Grandegger46779882008-06-04 13:52:17 +02001101 @$(MKCONFIG) $(@:_config=) ppc mpc8xx tqm8xx tqc
wdenk7ebf7442002-11-02 23:17:16 +00001102
Jean-Christophe PLAGNIOL-VILLARD91c82072008-03-02 16:12:31 +01001103spc1920_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001104 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spc1920
Markus Klotzbuecherb02d0172006-07-12 08:48:24 +02001105
wdenk7ebf7442002-11-02 23:17:16 +00001106SPD823TS_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001107 @$(MKCONFIG) $(@:_config=) ppc mpc8xx spd8xx
wdenk7ebf7442002-11-02 23:17:16 +00001108
Wolfgang Denk6bdf4302005-08-15 15:55:00 +02001109stxxtc_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001110 @$(MKCONFIG) $(@:_config=) ppc mpc8xx stxxtc
Wolfgang Denk6bdf4302005-08-15 15:55:00 +02001111
wdenkdc7c9a12003-03-26 06:55:25 +00001112svm_sc8xx_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001113 @$(MKCONFIG) $(@:_config=) ppc mpc8xx svm_sc8xx
wdenkdc7c9a12003-03-26 06:55:25 +00001114
wdenk7ebf7442002-11-02 23:17:16 +00001115SXNI855T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001116 @$(MKCONFIG) $(@:_config=) ppc mpc8xx sixnet
wdenk7ebf7442002-11-02 23:17:16 +00001117
wdenkdb2f721f2003-03-06 00:58:30 +00001118# EMK MPC8xx based modules
1119TOP860_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001120 @$(MKCONFIG) $(@:_config=) ppc mpc8xx top860 emk
wdenkdb2f721f2003-03-06 00:58:30 +00001121
wdenk7ebf7442002-11-02 23:17:16 +00001122# Play some tricks for configuration selection
wdenke9132ea2004-04-24 23:23:30 +00001123# Only 855 and 860 boards may come with FEC
1124# and only 823 boards may have LCD support
1125xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
wdenk7ebf7442002-11-02 23:17:16 +00001126
1127FPS850L_config \
wdenk384ae022002-11-05 00:17:55 +00001128FPS860L_config \
wdenkf12e5682003-07-07 20:07:54 +00001129NSCU_config \
wdenk7ebf7442002-11-02 23:17:16 +00001130TQM823L_config \
wdenk7ebf7442002-11-02 23:17:16 +00001131TQM823L_LCD_config \
wdenk7ebf7442002-11-02 23:17:16 +00001132TQM850L_config \
wdenk7ebf7442002-11-02 23:17:16 +00001133TQM855L_config \
wdenk7ebf7442002-11-02 23:17:16 +00001134TQM860L_config \
wdenkd126bfb2003-04-10 11:18:18 +00001135TQM862L_config \
wdenkae3af052003-08-07 22:18:11 +00001136TQM823M_config \
wdenkae3af052003-08-07 22:18:11 +00001137TQM850M_config \
wdenkf12e5682003-07-07 20:07:54 +00001138TQM855M_config \
wdenkf12e5682003-07-07 20:07:54 +00001139TQM860M_config \
wdenkf12e5682003-07-07 20:07:54 +00001140TQM862M_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +02001141TQM866M_config \
Markus Klotzbuecher090eb732006-07-12 15:26:01 +02001142TQM885D_config \
Guennadi Liakhovetskiefc6f442008-01-10 17:59:07 +01001143TK885D_config \
Wolfgang Denk8cba0902006-05-12 16:15:46 +02001144virtlab2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001145 @mkdir -p $(obj)include
wdenk7ebf7442002-11-02 23:17:16 +00001146 @[ -z "$(findstring _LCD,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001147 { echo "#define CONFIG_LCD" >>$(obj)include/config.h ; \
1148 echo "#define CONFIG_NEC_NL6448BC20" >>$(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001149 $(XECHO) "... with LCD display" ; \
wdenk7ebf7442002-11-02 23:17:16 +00001150 }
Wolfgang Grandegger46779882008-06-04 13:52:17 +02001151 @$(MKCONFIG) -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx tqc
wdenk7ebf7442002-11-02 23:17:16 +00001152
1153TTTech_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001154 @mkdir -p $(obj)include
1155 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1156 @echo "#define CONFIG_SHARP_LQ104V7DS01" >>$(obj)include/config.h
Wolfgang Grandegger46779882008-06-04 13:52:17 +02001157 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx tqc
wdenk7ebf7442002-11-02 23:17:16 +00001158
wdenkec0aee72004-12-19 09:58:11 +00001159uc100_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001160 @$(MKCONFIG) $(@:_config=) ppc mpc8xx uc100
wdenkf7d15722004-12-18 22:35:43 +00001161
wdenk608c9142003-01-13 23:54:46 +00001162v37_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001163 @mkdir -p $(obj)include
1164 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1165 @echo "#define CONFIG_SHARP_LQ084V1DG21" >>$(obj)include/config.h
1166 @$(MKCONFIG) $(@:_config=) ppc mpc8xx v37
wdenk608c9142003-01-13 23:54:46 +00001167
dzu91e940d2003-09-25 22:32:40 +00001168wtk_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001169 @mkdir -p $(obj)include
1170 @echo "#define CONFIG_LCD" >$(obj)include/config.h
1171 @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>$(obj)include/config.h
Wolfgang Grandegger46779882008-06-04 13:52:17 +02001172 @$(MKCONFIG) -a TQM823L ppc mpc8xx tqm8xx tqc
dzu91e940d2003-09-25 22:32:40 +00001173
wdenk7ebf7442002-11-02 23:17:16 +00001174#########################################################################
1175## PPC4xx Systems
1176#########################################################################
wdenke55ca7e2004-07-01 21:40:08 +00001177xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
wdenk7ebf7442002-11-02 23:17:16 +00001178
Stefan Roese16c0cc12007-03-21 13:39:57 +01001179acadia_config: unconfig
1180 @$(MKCONFIG) $(@:_config=) ppc ppc4xx acadia amcc
1181
Stefan Roesec440bfe2007-06-06 11:42:13 +02001182acadia_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001183 @mkdir -p $(obj)include $(obj)board/amcc/acadia
1184 @mkdir -p $(obj)nand_spl/board/amcc/acadia
Stefan Roesec440bfe2007-06-06 11:42:13 +02001185 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
1186 @$(MKCONFIG) -n $@ -a acadia ppc ppc4xx acadia amcc
1187 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/acadia/config.tmp
1188 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1189
wdenk7ebf7442002-11-02 23:17:16 +00001190ADCIOP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001191 @$(MKCONFIG) $(@:_config=) ppc ppc4xx adciop esd
wdenk7ebf7442002-11-02 23:17:16 +00001192
Stefan Roese899620c2006-08-15 14:22:35 +02001193alpr_config: unconfig
Stefan Roese35d22f92007-08-10 10:42:25 +02001194 @$(MKCONFIG) $(@:_config=) ppc ppc4xx alpr prodrive
Stefan Roese899620c2006-08-15 14:22:35 +02001195
Wolfgang Denk7521af12005-10-09 01:04:33 +02001196AP1000_config:unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001197 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ap1000 amirix
Wolfgang Denk7521af12005-10-09 01:04:33 +02001198
stroesec419d1d2004-12-16 18:44:40 +00001199APC405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001200 @$(MKCONFIG) $(@:_config=) ppc ppc4xx apc405 esd
stroesec419d1d2004-12-16 18:44:40 +00001201
wdenk7ebf7442002-11-02 23:17:16 +00001202AR405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001203 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ar405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001204
stroese549826e2003-05-23 11:41:44 +00001205ASH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001206 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ash405 esd
stroese549826e2003-05-23 11:41:44 +00001207
Stefan Roese8a316c92005-08-01 16:49:12 +02001208bamboo_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001209 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bamboo amcc
Stefan Roese8a316c92005-08-01 16:49:12 +02001210
Stefan Roesecf959c72007-06-01 15:27:11 +02001211bamboo_nand_config: unconfig
Wolfgang Denk63e22762007-08-02 10:11:18 +02001212 @mkdir -p $(obj)include $(obj)board/amcc/bamboo
1213 @mkdir -p $(obj)nand_spl/board/amcc/bamboo
Stefan Roesecf959c72007-06-01 15:27:11 +02001214 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesef3679aa2007-06-01 16:15:34 +02001215 @$(MKCONFIG) -n $@ -a bamboo ppc ppc4xx bamboo amcc
Stefan Roesecf959c72007-06-01 15:27:11 +02001216 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/bamboo/config.tmp
1217 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1218
Stefan Roese8a316c92005-08-01 16:49:12 +02001219bubinga_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001220 @$(MKCONFIG) $(@:_config=) ppc ppc4xx bubinga amcc
stroese549826e2003-05-23 11:41:44 +00001221
wdenk7ebf7442002-11-02 23:17:16 +00001222CANBT_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001223 @$(MKCONFIG) $(@:_config=) ppc ppc4xx canbt esd
wdenk7ebf7442002-11-02 23:17:16 +00001224
Adam Grahamf09f09d2008-10-08 10:12:53 -07001225# Arches, Canyonlands & Glacier use different U-Boot images
1226arches_config \
Stefan Roese4c9e8552008-03-19 16:20:49 +01001227canyonlands_config \
1228glacier_config: unconfig
1229 @mkdir -p $(obj)include
1230 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_config=)) | \
1231 tr '[:lower:]' '[:upper:]')" >$(obj)include/config.h
1232 @$(MKCONFIG) -n $@ -a canyonlands ppc ppc4xx canyonlands amcc
Stefan Roesec813f1f2008-03-11 16:53:00 +01001233
Stefan Roesefe7c0db2008-04-08 10:33:27 +02001234canyonlands_nand_config \
1235glacier_nand_config: unconfig
Stefan Roese71665eb2008-03-03 17:27:02 +01001236 @mkdir -p $(obj)include $(obj)board/amcc/canyonlands
1237 @mkdir -p $(obj)nand_spl/board/amcc/canyonlands
1238 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Stefan Roesefe7c0db2008-04-08 10:33:27 +02001239 @echo "#define CONFIG_$$(echo $(subst ,,$(@:_nand_config=)) | \
1240 tr '[:lower:]' '[:upper:]')" >> $(obj)include/config.h
Stefan Roese71665eb2008-03-03 17:27:02 +01001241 @$(MKCONFIG) -n $@ -a canyonlands ppc ppc4xx canyonlands amcc
1242 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/canyonlands/config.tmp
1243 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1244
wdenk1d6f9722004-09-09 17:44:35 +00001245CATcenter_config \
1246CATcenter_25_config \
1247CATcenter_33_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001248 @mkdir -p $(obj)include
1249 @ echo "/* CATcenter uses PPChameleon Model ME */" > $(obj)include/config.h
1250 @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> $(obj)include/config.h
wdenk1d6f9722004-09-09 17:44:35 +00001251 @[ -z "$(findstring _25,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001252 { echo "#define CONFIG_PPCHAMELEON_CLK_25" >> $(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001253 $(XECHO) "SysClk = 25MHz" ; \
wdenk1d6f9722004-09-09 17:44:35 +00001254 }
1255 @[ -z "$(findstring _33,$@)" ] || \
Marian Balakowiczf9328632006-09-01 19:49:50 +02001256 { echo "#define CONFIG_PPCHAMELEON_CLK_33" >> $(obj)include/config.h ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001257 $(XECHO) "SysClk = 33MHz" ; \
wdenk1d6f9722004-09-09 17:44:35 +00001258 }
Marian Balakowiczf9328632006-09-01 19:49:50 +02001259 @$(MKCONFIG) -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
wdenk10767cc2004-05-13 13:23:58 +00001260
Wolfgang Denk699f0512008-07-15 22:22:44 +02001261CMS700_config: unconfig
1262 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cms700 esd
1263
Stefan Roese7644f162005-09-22 09:16:57 +02001264CPCI2DP_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001265 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci2dp esd
Stefan Roese7644f162005-09-22 09:16:57 +02001266
Matthias Fuchs1951f842008-12-10 14:41:25 +01001267CPCI405_config \
Matthias Fuchs767f9152008-09-05 15:34:02 +02001268CPCI4052_config \
stroesec419d1d2004-12-16 18:44:40 +00001269CPCI405DT_config \
stroese549826e2003-05-23 11:41:44 +00001270CPCI405AB_config: unconfig
Matthias Fuchsdd794322008-09-09 09:50:24 +02001271 @mkdir -p $(obj)board/esd/cpci405
Marian Balakowiczf9328632006-09-01 19:49:50 +02001272 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpci405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001273
wdenk7ebf7442002-11-02 23:17:16 +00001274CPCIISER4_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001275 @$(MKCONFIG) $(@:_config=) ppc ppc4xx cpciiser4 esd
wdenk7ebf7442002-11-02 23:17:16 +00001276
wdenkdb01a2e2004-04-15 23:14:49 +00001277CRAYL1_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001278 @$(MKCONFIG) $(@:_config=) ppc ppc4xx L1 cray
wdenk7ebf7442002-11-02 23:17:16 +00001279
wdenkcd0a9de2004-02-23 20:48:38 +00001280csb272_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001281 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb272
wdenkcd0a9de2004-02-23 20:48:38 +00001282
wdenkaa245092004-06-09 12:47:02 +00001283csb472_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001284 @$(MKCONFIG) $(@:_config=) ppc ppc4xx csb472
wdenkaa245092004-06-09 12:47:02 +00001285
wdenk7ebf7442002-11-02 23:17:16 +00001286DASA_SIM_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001287 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dasa_sim esd
wdenk7ebf7442002-11-02 23:17:16 +00001288
stroese72cd5aa2003-09-12 08:57:15 +00001289DP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001290 @$(MKCONFIG) $(@:_config=) ppc ppc4xx dp405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001291
wdenk7ebf7442002-11-02 23:17:16 +00001292DU405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001293 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du405 esd
wdenk7ebf7442002-11-02 23:17:16 +00001294
Matthias Fuchs1a3ac862008-01-17 10:53:08 +01001295DU440_config: unconfig
1296 @$(MKCONFIG) $(@:_config=) ppc ppc4xx du440 esd
1297
Stefan Roese8a316c92005-08-01 16:49:12 +02001298ebony_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001299 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ebony amcc
wdenk7ebf7442002-11-02 23:17:16 +00001300
wdenkdb01a2e2004-04-15 23:14:49 +00001301ERIC_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001302 @$(MKCONFIG) $(@:_config=) ppc ppc4xx eric
wdenk7ebf7442002-11-02 23:17:16 +00001303
wdenkdb01a2e2004-04-15 23:14:49 +00001304EXBITGEN_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001305 @$(MKCONFIG) $(@:_config=) ppc ppc4xx exbitgen
wdenkd1cbe852003-06-28 17:24:46 +00001306
Georg Schardt5deb8022008-10-24 13:51:52 +02001307fx12mm_flash_config: unconfig
1308 @mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic
1309 @mkdir -p $(obj)include $(obj)board/avnet/fx12mm
1310 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-rom.lds"\
1311 > $(obj)board/avnet/fx12mm/config.tmp
1312 @echo "TEXT_BASE := 0xFFCB0000" \
1313 >> $(obj)board/avnet/fx12mm/config.tmp
1314 @$(MKCONFIG) fx12mm ppc ppc4xx fx12mm avnet
1315
1316fx12mm_config: unconfig
1317 @mkdir -p $(obj)include $(obj)board/xilinx/ppc405-generic
1318 @mkdir -p $(obj)include $(obj)board/avnet/fx12mm
1319 @echo "LDSCRIPT:=$(SRCTREE)/board/xilinx/ppc405-generic/u-boot-ram.lds"\
1320 > $(obj)board/avnet/fx12mm/config.tmp
1321 @echo "TEXT_BASE := 0x03000000" \
1322 >> $(obj)board/avnet/fx12mm/config.tmp
1323 @$(MKCONFIG) fx12mm ppc ppc4xx fx12mm avnet
1324
stroesec419d1d2004-12-16 18:44:40 +00001325G2000_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001326 @$(MKCONFIG) $(@:_config=) ppc ppc4xx g2000
stroesec419d1d2004-12-16 18:44:40 +00001327
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001328hcu4_config: unconfig
Niklaus Gigerb7f61932008-02-05 10:26:42 +01001329 @mkdir -p $(obj)board/netstal/common
Stefan Roese35d22f92007-08-10 10:42:25 +02001330 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hcu4 netstal
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001331
1332hcu5_config: unconfig
Niklaus Gigerb7f61932008-02-05 10:26:42 +01001333 @mkdir -p $(obj)board/netstal/common
Stefan Roese35d22f92007-08-10 10:42:25 +02001334 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hcu5 netstal
Niklaus Gigerac982ea2007-07-27 11:28:44 +02001335
stroesec419d1d2004-12-16 18:44:40 +00001336HH405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001337 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hh405 esd
stroesec419d1d2004-12-16 18:44:40 +00001338
stroese72cd5aa2003-09-12 08:57:15 +00001339HUB405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001340 @$(MKCONFIG) $(@:_config=) ppc ppc4xx hub405 esd
stroese72cd5aa2003-09-12 08:57:15 +00001341
wdenkdb01a2e2004-04-15 23:14:49 +00001342JSE_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001343 @$(MKCONFIG) $(@:_config=) ppc ppc4xx jse
wdenkdb01a2e2004-04-15 23:14:49 +00001344
Stefan Roeseb79316f2005-08-15 12:31:23 +02001345KAREF_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001346 @$(MKCONFIG) $(@:_config=) ppc ppc4xx karef sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001347
Stefan Roese4745aca2007-02-20 10:57:08 +01001348katmai_config: unconfig
1349 @$(MKCONFIG) $(@:_config=) ppc ppc4xx katmai amcc
1350
Stefan Roese353f2682007-10-23 10:10:08 +02001351# Kilauea & Haleakala images are identical (recognized via PVR)
1352kilauea_config \
1353haleakala_config: unconfig
1354 @$(MKCONFIG) -n $@ -a kilauea ppc ppc4xx kilauea amcc
Stefan Roese566806c2007-10-05 17:11:30 +02001355
Stefan Roese3d6cb3b2007-11-03 12:08:28 +01001356kilauea_nand_config \
1357haleakala_nand_config: unconfig
1358 @mkdir -p $(obj)include $(obj)board/amcc/kilauea
1359 @mkdir -p $(obj)nand_spl/board/amcc/kilauea
1360 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
1361 @$(MKCONFIG) -n $@ -a kilauea ppc ppc4xx kilauea amcc
1362 @echo "TEXT_BASE = 0x01000000" > $(obj)board/amcc/kilauea/config.tmp
1363 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1364
Larry Johnsonc591dff2007-12-27 11:28:51 -05001365korat_config: unconfig
1366 @$(MKCONFIG) $(@:_config=) ppc ppc4xx korat
1367
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001368luan_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001369 @$(MKCONFIG) $(@:_config=) ppc ppc4xx luan amcc
Stefan Roese6e7fb6e2005-11-29 18:18:21 +01001370
Stefan Roeseb765ffb2007-06-15 08:18:01 +02001371lwmon5_config: unconfig
1372 @$(MKCONFIG) $(@:_config=) ppc ppc4xx lwmon5
1373
Stefan Roese211ea912007-10-22 07:34:34 +02001374makalu_config: unconfig
1375 @$(MKCONFIG) $(@:_config=) ppc ppc4xx makalu amcc
1376
Niklaus Gigerb05f3542008-02-25 18:46:41 +01001377mcu25_config: unconfig
1378 @mkdir -p $(obj)board/netstal/common
1379 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mcu25 netstal
1380
Stefan Roeseb79316f2005-08-15 12:31:23 +02001381METROBOX_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001382 @$(MKCONFIG) $(@:_config=) ppc ppc4xx metrobox sandburst
Stefan Roeseb79316f2005-08-15 12:31:23 +02001383
wdenkdb01a2e2004-04-15 23:14:49 +00001384MIP405_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001385 @$(MKCONFIG) $(@:_config=) ppc ppc4xx mip405 mpl
wdenk7ebf7442002-11-02 23:17:16 +00001386
wdenkdb01a2e2004-04-15 23:14:49 +00001387MIP405T_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001388 @mkdir -p $(obj)include
1389 @echo "#define CONFIG_MIP405T" >$(obj)include/config.h
Wolfgang Denkae6d1052008-01-13 00:59:21 +01001390 @$(XECHO) "Enable subset config for MIP405T"
Marian Balakowiczf9328632006-09-01 19:49:50 +02001391 @$(MKCONFIG) -a MIP405 ppc ppc4xx mip405 mpl
wdenkf3e0de62003-06-04 15:05:30 +00001392
wdenkdb01a2e2004-04-15 23:14:49 +00001393ML2_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001394 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml2
wdenk7ebf7442002-11-02 23:17:16 +00001395
wdenkdb01a2e2004-04-15 23:14:49 +00001396ml300_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +02001397 @$(MKCONFIG) $(@:_config=) ppc ppc4xx ml300 xilinx
wdenk028ab6b2004-02-23 23:54:43 +00001398
Ricardo Ribalda Delgadoe07f4a82008-09-01 13:09:39 -04001399ml507_flash_config: unconfig
Ricardo Ribalda Delgado880f6a52008-09-09 10:00:33 -04001400 @mkdir -p $(obj)include $(obj)board/xilinx/ppc440-generic
Ricardo Ribalda Delgado01a00432008-07-21 20:30:07 +0200