wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1 | # |
Detlev Zundel | fd428c0 | 2010-03-12 10:01:12 +0100 | [diff] [blame] | 2 | # (C) Copyright 2000-2010 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
| 5 | # See file CREDITS for list of people who contributed to this |
| 6 | # project. |
| 7 | # |
| 8 | # This program is free software; you can redistribute it and/or |
| 9 | # modify it under the terms of the GNU General Public License as |
Wolfgang Denk | 45a212c | 2006-07-19 17:52:30 +0200 | [diff] [blame] | 10 | # published by the Free Software Foundatio; either version 2 of |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 11 | # the License, or (at your option) any later version. |
| 12 | # |
| 13 | # This program is distributed in the hope that it will be useful, |
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 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 Denk | 93910ed | 2010-03-12 23:06:04 +0100 | [diff] [blame] | 24 | VERSION = 2010 |
Wolfgang Denk | 2d941de | 2010-09-10 00:16:19 +0200 | [diff] [blame] | 25 | PATCHLEVEL = 09 |
Wolfgang Denk | 8b9e478 | 2008-09-09 23:55:18 +0200 | [diff] [blame] | 26 | SUBLEVEL = |
Wolfgang Denk | 1e4e5ef | 2010-09-28 23:20:55 +0200 | [diff] [blame] | 27 | EXTRAVERSION = |
Wolfgang Denk | 8b9e478 | 2008-09-09 23:55:18 +0200 | [diff] [blame] | 28 | ifneq "$(SUBLEVEL)" "" |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 29 | U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) |
Wolfgang Denk | 8b9e478 | 2008-09-09 23:55:18 +0200 | [diff] [blame] | 30 | else |
| 31 | U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION) |
| 32 | endif |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 33 | TIMESTAMP_FILE = $(obj)include/timestamp_autogenerated.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 34 | VERSION_FILE = $(obj)include/version_autogenerated.h |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 35 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 36 | HOSTARCH := $(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/ \ |
Kumar Gala | d017908 | 2010-04-28 02:52:02 -0500 | [diff] [blame] | 41 | -e s/ppc64/powerpc/ \ |
| 42 | -e s/ppc/powerpc/ \ |
Nobuhiro Iwamatsu | 8d1f635 | 2010-06-16 07:59:17 +0900 | [diff] [blame] | 43 | -e s/macppc/powerpc/\ |
| 44 | -e s/sh.*/sh/) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 45 | |
Wolfgang Denk | f9d77ed | 2005-08-12 23:23:46 +0200 | [diff] [blame] | 46 | HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 47 | sed -e 's/\(cygwin\).*/cygwin/') |
| 48 | |
Peter Tyser | cf7a7b9 | 2008-11-12 12:33:20 -0600 | [diff] [blame] | 49 | # Set shell to bash if possible, otherwise fall back to sh |
| 50 | SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ |
| 51 | else if [ -x /bin/bash ]; then echo /bin/bash; \ |
| 52 | else echo sh; fi; fi) |
| 53 | |
| 54 | export HOSTARCH HOSTOS SHELL |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 55 | |
| 56 | # Deal with colliding definitions from tcsh etc. |
| 57 | VENDOR= |
| 58 | |
| 59 | ######################################################################### |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 60 | # Allow for silent builds |
| 61 | ifeq (,$(findstring s,$(MAKEFLAGS))) |
| 62 | XECHO = echo |
| 63 | else |
| 64 | XECHO = : |
| 65 | endif |
| 66 | |
| 67 | ######################################################################### |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 68 | # |
| 69 | # U-boot build supports producing a object files to the separate external |
| 70 | # directory. Two use cases are supported: |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 71 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 72 | # 1) Add O= to the make command line |
| 73 | # 'make O=/tmp/build all' |
| 74 | # |
| 75 | # 2) Set environement variable BUILD_DIR to point to the desired location |
| 76 | # 'export BUILD_DIR=/tmp/build' |
| 77 | # 'make' |
| 78 | # |
| 79 | # The second approach can also be used with a MAKEALL script |
| 80 | # 'export BUILD_DIR=/tmp/build' |
| 81 | # './MAKEALL' |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 82 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 83 | # Command line 'O=' setting overrides BUILD_DIR environent variable. |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 84 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 85 | # When none of the above methods is used the local build is performed and |
| 86 | # the object files are placed in the source directory. |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 87 | # |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 88 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 89 | ifdef O |
| 90 | ifeq ("$(origin O)", "command line") |
| 91 | BUILD_DIR := $(O) |
| 92 | endif |
| 93 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 94 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 95 | ifneq ($(BUILD_DIR),) |
| 96 | saved-output := $(BUILD_DIR) |
Marian Balakowicz | 4f0645e | 2006-09-07 12:05:53 +0200 | [diff] [blame] | 97 | |
| 98 | # Attempt to create a output directory. |
| 99 | $(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}) |
| 100 | |
Stefan Roese | a73c8db | 2006-09-12 08:49:07 +0200 | [diff] [blame] | 101 | # Verify if it was successful. |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 102 | BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd) |
| 103 | $(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist)) |
| 104 | endif # ifneq ($(BUILD_DIR),) |
| 105 | |
| 106 | OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR)) |
| 107 | SRCTREE := $(CURDIR) |
| 108 | TOPDIR := $(SRCTREE) |
| 109 | LNDIR := $(OBJTREE) |
| 110 | export TOPDIR SRCTREE OBJTREE |
| 111 | |
| 112 | MKCONFIG := $(SRCTREE)/mkconfig |
| 113 | export MKCONFIG |
| 114 | |
| 115 | ifneq ($(OBJTREE),$(SRCTREE)) |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 116 | REMOTE_BUILD := 1 |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 117 | export REMOTE_BUILD |
| 118 | endif |
| 119 | |
| 120 | # $(obj) and (src) are defined in config.mk but here in main Makefile |
| 121 | # we also need them before config.mk is included which is the case for |
| 122 | # some targets like unconfig, clean, clobber, distclean, etc. |
| 123 | ifneq ($(OBJTREE),$(SRCTREE)) |
| 124 | obj := $(OBJTREE)/ |
| 125 | src := $(SRCTREE)/ |
| 126 | else |
| 127 | obj := |
| 128 | src := |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 129 | endif |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 130 | export obj src |
| 131 | |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 132 | # Make sure CDPATH settings don't interfere |
| 133 | unexport CDPATH |
| 134 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 135 | ######################################################################### |
| 136 | |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 137 | # The "tools" are needed early, so put this first |
| 138 | # Don't include stuff already done in $(LIBS) |
| 139 | SUBDIRS = tools \ |
Peter Tyser | 1bc1538 | 2009-07-10 11:03:19 -0500 | [diff] [blame] | 140 | examples/standalone \ |
Peter Tyser | d4abc75 | 2009-07-20 19:02:21 -0500 | [diff] [blame] | 141 | examples/api |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 142 | |
| 143 | .PHONY : $(SUBDIRS) |
| 144 | |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 145 | ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 146 | |
Mike Frysinger | 2632c00 | 2009-07-21 22:59:36 -0400 | [diff] [blame] | 147 | # Include autoconf.mk before config.mk so that the config options are available |
| 148 | # to all top level build files. We need the dummy all: target to prevent the |
| 149 | # dependency target in autoconf.mk.dep from being the default. |
| 150 | all: |
| 151 | sinclude $(obj)include/autoconf.mk.dep |
| 152 | sinclude $(obj)include/autoconf.mk |
| 153 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 154 | # load ARCH, BOARD, and CPU configuration |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 155 | include $(obj)include/config.mk |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 156 | export ARCH CPU BOARD VENDOR SOC |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 157 | |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 158 | # set default to nothing for native builds |
Wolfgang Denk | a5284ef | 2007-03-06 18:01:47 +0100 | [diff] [blame] | 159 | ifeq ($(HOSTARCH),$(ARCH)) |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 160 | CROSS_COMPILE ?= |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 161 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 162 | |
Wolfgang Denk | 92b197f | 2006-03-12 01:37:50 +0100 | [diff] [blame] | 163 | # load other configuration |
| 164 | include $(TOPDIR)/config.mk |
| 165 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 166 | ######################################################################### |
| 167 | # U-Boot objects....order is important (i.e. start must be first) |
| 168 | |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 169 | OBJS = $(CPUDIR)/start.o |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 170 | ifeq ($(CPU),i386) |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 171 | OBJS += $(CPUDIR)/start16.o |
| 172 | OBJS += $(CPUDIR)/resetvec.o |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 173 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 174 | ifeq ($(CPU),ppc4xx) |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 175 | OBJS += $(CPUDIR)/resetvec.o |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 176 | endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 177 | ifeq ($(CPU),mpc85xx) |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 178 | OBJS += $(CPUDIR)/resetvec.o |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 179 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 180 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 181 | OBJS := $(addprefix $(obj),$(OBJS)) |
| 182 | |
Peter Tyser | 78acc47 | 2010-04-12 22:28:05 -0500 | [diff] [blame] | 183 | LIBS = lib/libgeneric.a |
| 184 | LIBS += lib/lzma/liblzma.a |
| 185 | LIBS += lib/lzo/liblzo.a |
Kim Phillips | 7608d75 | 2007-08-21 17:00:17 -0500 | [diff] [blame] | 186 | LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \ |
| 187 | "board/$(VENDOR)/common/lib$(VENDOR).a"; fi) |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 188 | LIBS += $(CPUDIR)/lib$(CPU).a |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 189 | ifdef SOC |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 190 | LIBS += $(CPUDIR)/$(SOC)/lib$(SOC).a |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 191 | endif |
Stefan Roese | 323bfa8 | 2007-04-23 12:00:22 +0200 | [diff] [blame] | 192 | ifeq ($(CPU),ixp) |
Peter Tyser | 84ad688 | 2010-04-12 22:28:11 -0500 | [diff] [blame] | 193 | LIBS += arch/arm/cpu/ixp/npe/libnpe.a |
Stefan Roese | 323bfa8 | 2007-04-23 12:00:22 +0200 | [diff] [blame] | 194 | endif |
Peter Tyser | ea0364f | 2010-04-12 22:28:04 -0500 | [diff] [blame] | 195 | LIBS += arch/$(ARCH)/lib/lib$(ARCH).a |
wdenk | 518e2e1 | 2004-03-25 14:59:05 +0000 | [diff] [blame] | 196 | LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \ |
Stefan Roese | 9eefe2a | 2009-03-19 15:35:05 +0100 | [diff] [blame] | 197 | fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a fs/yaffs2/libyaffs2.a \ |
| 198 | fs/ubifs/libubifs.a |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 199 | LIBS += net/libnet.a |
| 200 | LIBS += disk/libdisk.a |
Jason Jin | 0f460a1 | 2007-07-13 12:14:58 +0800 | [diff] [blame] | 201 | LIBS += drivers/bios_emulator/libatibiosemu.a |
Jean-Christophe PLAGNIOL-VILLARD | 33daf5b | 2007-11-24 21:13:59 +0100 | [diff] [blame] | 202 | LIBS += drivers/block/libblock.a |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 203 | LIBS += drivers/dma/libdma.a |
Jean-Christophe PLAGNIOL-VILLARD | c8aa7df | 2008-10-31 12:26:55 +0100 | [diff] [blame] | 204 | LIBS += drivers/fpga/libfpga.a |
Peter Tyser | e92739d | 2008-12-17 16:36:21 -0600 | [diff] [blame] | 205 | LIBS += drivers/gpio/libgpio.a |
Jean-Christophe PLAGNIOL-VILLARD | f868cc5 | 2007-11-24 20:14:44 +0100 | [diff] [blame] | 206 | LIBS += drivers/hwmon/libhwmon.a |
Jean-Christophe PLAGNIOL-VILLARD | 080c646 | 2007-11-20 20:14:18 +0100 | [diff] [blame] | 207 | LIBS += drivers/i2c/libi2c.a |
Jean-Christophe PLAGNIOL-VILLARD | 16b195c | 2007-11-24 19:46:45 +0100 | [diff] [blame] | 208 | LIBS += drivers/input/libinput.a |
Jean-Christophe PLAGNIOL-VILLARD | 318c0b9 | 2007-11-24 21:17:55 +0100 | [diff] [blame] | 209 | LIBS += drivers/misc/libmisc.a |
Haavard Skinnemoen | 5ce1305 | 2008-06-12 19:27:56 +0200 | [diff] [blame] | 210 | LIBS += drivers/mmc/libmmc.a |
Jean-Christophe PLAGNIOL-VILLARD | 59829cc | 2007-11-24 21:26:56 +0100 | [diff] [blame] | 211 | LIBS += drivers/mtd/libmtd.a |
| 212 | LIBS += drivers/mtd/nand/libnand.a |
Jean-Christophe PLAGNIOL-VILLARD | 59829cc | 2007-11-24 21:26:56 +0100 | [diff] [blame] | 213 | LIBS += drivers/mtd/onenand/libonenand.a |
Kyungmin Park | 58be3a1 | 2008-11-19 16:38:24 +0100 | [diff] [blame] | 214 | LIBS += drivers/mtd/ubi/libubi.a |
Haavard Skinnemoen | d25ce7d | 2008-05-16 11:10:33 +0200 | [diff] [blame] | 215 | LIBS += drivers/mtd/spi/libspi_flash.a |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 216 | LIBS += drivers/net/libnet.a |
Jean-Christophe PLAGNIOL-VILLARD | 5519577 | 2008-08-29 01:18:01 +0200 | [diff] [blame] | 217 | LIBS += drivers/net/phy/libphy.a |
Jean-Christophe PLAGNIOL-VILLARD | 93a686e | 2007-11-20 20:28:09 +0100 | [diff] [blame] | 218 | LIBS += drivers/pci/libpci.a |
Jean-Christophe PLAGNIOL-VILLARD | 7364621 | 2007-11-20 20:33:09 +0100 | [diff] [blame] | 219 | LIBS += drivers/pcmcia/libpcmcia.a |
Tom Rix | cd78263 | 2009-06-28 12:52:29 -0500 | [diff] [blame] | 220 | LIBS += drivers/power/libpower.a |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 221 | LIBS += drivers/spi/libspi.a |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 222 | ifeq ($(CPU),mpc83xx) |
| 223 | LIBS += drivers/qe/qe.a |
Kim Phillips | 5d0c3b5 | 2010-05-28 08:00:14 +0000 | [diff] [blame] | 224 | LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.a |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 225 | endif |
Andy Fleming | da9d461 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 226 | ifeq ($(CPU),mpc85xx) |
| 227 | LIBS += drivers/qe/qe.a |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 228 | LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.a |
| 229 | LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.a |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 230 | endif |
| 231 | ifeq ($(CPU),mpc86xx) |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 232 | LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.a |
| 233 | LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.a |
Andy Fleming | da9d461 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 234 | endif |
Jean-Christophe PLAGNIOL-VILLARD | 59829cc | 2007-11-24 21:26:56 +0100 | [diff] [blame] | 235 | LIBS += drivers/rtc/librtc.a |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 236 | LIBS += drivers/serial/libserial.a |
Detlev Zundel | 572e617 | 2009-03-30 00:31:32 +0200 | [diff] [blame] | 237 | LIBS += drivers/twserial/libtws.a |
Jean-Christophe PLAGNIOL-VILLARD | 2731b9a | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 238 | LIBS += drivers/usb/gadget/libusb_gadget.a |
| 239 | LIBS += drivers/usb/host/libusb_host.a |
| 240 | LIBS += drivers/usb/musb/libusb_musb.a |
Tom Rix | bffbb2a | 2009-10-31 12:37:40 -0500 | [diff] [blame] | 241 | LIBS += drivers/usb/phy/libusb_phy.a |
Jean-Christophe PLAGNIOL-VILLARD | 59829cc | 2007-11-24 21:26:56 +0100 | [diff] [blame] | 242 | LIBS += drivers/video/libvideo.a |
Jean-Christophe PLAGNIOL-VILLARD | 843a265 | 2009-03-27 23:26:42 +0100 | [diff] [blame] | 243 | LIBS += drivers/watchdog/libwatchdog.a |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 244 | LIBS += common/libcommon.a |
Peter Tyser | 0de71d5 | 2010-04-12 22:28:06 -0500 | [diff] [blame] | 245 | LIBS += lib/libfdt/libfdt.a |
Rafal Jaworowski | 500856e | 2008-01-09 19:39:36 +0100 | [diff] [blame] | 246 | LIBS += api/libapi.a |
Yuri Tikhonov | 2d2b994 | 2008-03-31 10:51:37 +0200 | [diff] [blame] | 247 | LIBS += post/libpost.a |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 248 | |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 249 | ifeq ($(SOC),omap3) |
| 250 | LIBS += $(CPUDIR)/omap-common/libomap-common.a |
| 251 | endif |
| 252 | ifeq ($(SOC),omap4) |
| 253 | LIBS += $(CPUDIR)/omap-common/libomap-common.a |
| 254 | endif |
| 255 | |
Minkyu Kang | 852bd07 | 2010-08-19 13:48:11 +0900 | [diff] [blame] | 256 | ifeq ($(SOC),s5pc1xx) |
| 257 | LIBS += $(CPUDIR)/s5p-common/libs5p-common.a |
| 258 | endif |
| 259 | ifeq ($(SOC),s5pc2xx) |
| 260 | LIBS += $(CPUDIR)/s5p-common/libs5p-common.a |
| 261 | endif |
| 262 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 263 | LIBS := $(addprefix $(obj),$(LIBS)) |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 264 | .PHONY : $(LIBS) $(TIMESTAMP_FILE) $(VERSION_FILE) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 265 | |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 266 | LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).a |
| 267 | LIBBOARD := $(addprefix $(obj),$(LIBBOARD)) |
| 268 | |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 269 | # Add GCC lib |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 270 | ifdef USE_PRIVATE_LIBGCC |
| 271 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") |
Peter Tyser | ea0364f | 2010-04-12 22:28:04 -0500 | [diff] [blame] | 272 | PLATFORM_LIBGCC = -L $(OBJTREE)/arch/$(ARCH)/lib -lgcc |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 273 | else |
| 274 | PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc |
| 275 | endif |
| 276 | else |
| 277 | PLATFORM_LIBGCC = -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc |
| 278 | endif |
| 279 | PLATFORM_LIBS += $(PLATFORM_LIBGCC) |
| 280 | export PLATFORM_LIBS |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 281 | |
Mike Frysinger | 6ac9f47 | 2009-08-23 02:47:59 -0400 | [diff] [blame] | 282 | # Special flags for CPP when processing the linker script. |
| 283 | # Pass the version down so we can handle backwards compatibility |
| 284 | # on the fly. |
| 285 | LDPPFLAGS += \ |
| 286 | -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ |
| 287 | $(shell $(LD) --version | \ |
| 288 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') |
| 289 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 290 | ifeq ($(CONFIG_NAND_U_BOOT),y) |
| 291 | NAND_SPL = nand_spl |
| 292 | U_BOOT_NAND = $(obj)u-boot-nand.bin |
| 293 | endif |
| 294 | |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 295 | ifeq ($(CONFIG_ONENAND_U_BOOT),y) |
| 296 | ONENAND_IPL = onenand_ipl |
| 297 | U_BOOT_ONENAND = $(obj)u-boot-onenand.bin |
Kyungmin Park | ca6189d | 2009-09-22 09:05:00 +0900 | [diff] [blame] | 298 | ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 299 | endif |
| 300 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 301 | __OBJS := $(subst $(obj),,$(OBJS)) |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 302 | __LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 303 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 304 | ######################################################################### |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 305 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 306 | |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame^] | 307 | ifneq ($(CONFIG_BOARD_SIZE_LIMIT),) |
| 308 | BOARD_SIZE_CHECK = \ |
| 309 | @actual=`wc -c $@ | awk '{print $$1}'`; \ |
| 310 | limit=$(CONFIG_BOARD_SIZE_LIMIT); \ |
| 311 | if test $$actual -gt $$limit; then \ |
| 312 | echo "$@ exceeds file size limit:"; \ |
| 313 | echo " limit: $$limit bytes"; \ |
| 314 | echo " actual: $$actual bytes"; \ |
| 315 | echo " excess: $$((actual - limit)) bytes"; \ |
| 316 | exit 1; \ |
| 317 | fi |
| 318 | else |
| 319 | BOARD_SIZE_CHECK = |
| 320 | endif |
| 321 | |
Mike Frysinger | 3e88337 | 2009-06-15 00:25:19 -0400 | [diff] [blame] | 322 | # Always append ALL so that arch config.mk's can add custom ones |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 323 | ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND) $(U_BOOT_ONENAND) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 324 | |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 325 | all: $(ALL) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 326 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 327 | $(obj)u-boot.hex: $(obj)u-boot |
wdenk | 6310eb9 | 2005-01-09 21:28:15 +0000 | [diff] [blame] | 328 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ |
| 329 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 330 | $(obj)u-boot.srec: $(obj)u-boot |
Ricardo Ribalda Delgado | 0817d68 | 2008-09-07 17:10:27 -0400 | [diff] [blame] | 331 | $(OBJCOPY) -O srec $< $@ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 332 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 333 | $(obj)u-boot.bin: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 334 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame^] | 335 | $(BOARD_SIZE_CHECK) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 336 | |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 337 | $(obj)u-boot.ldr: $(obj)u-boot |
Mike Frysinger | 76d8218 | 2009-07-21 22:17:36 -0400 | [diff] [blame] | 338 | $(CREATE_LDR_ENV) |
Mike Frysinger | 68e5632 | 2008-08-07 18:56:56 -0400 | [diff] [blame] | 339 | $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS) |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame^] | 340 | $(BOARD_SIZE_CHECK) |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 341 | |
| 342 | $(obj)u-boot.ldr.hex: $(obj)u-boot.ldr |
| 343 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary |
| 344 | |
| 345 | $(obj)u-boot.ldr.srec: $(obj)u-boot.ldr |
| 346 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary |
| 347 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 348 | $(obj)u-boot.img: $(obj)u-boot.bin |
Wolfgang Denk | a2a0a71 | 2010-05-15 21:23:51 +0200 | [diff] [blame] | 349 | $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 350 | -a $(CONFIG_SYS_TEXT_BASE) -e 0 \ |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 351 | -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 352 | sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ |
| 353 | -d $< $@ |
| 354 | |
Stefano Babic | 8edcde5 | 2010-01-20 18:19:10 +0100 | [diff] [blame] | 355 | $(obj)u-boot.imx: $(obj)u-boot.bin |
| 356 | $(obj)tools/mkimage -n $(IMX_CONFIG) -T imximage \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 357 | -e $(CONFIG_SYS_TEXT_BASE) -d $< $@ |
Stefano Babic | 8edcde5 | 2010-01-20 18:19:10 +0100 | [diff] [blame] | 358 | |
Prafulla Wadaskar | aa0c7a8 | 2009-09-07 15:05:02 +0530 | [diff] [blame] | 359 | $(obj)u-boot.kwb: $(obj)u-boot.bin |
| 360 | $(obj)tools/mkimage -n $(KWD_CONFIG) -T kwbimage \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 361 | -a $(CONFIG_SYS_TEXT_BASE) -e $(TEXT_BASE) -d $< $@ |
Prafulla Wadaskar | aa0c7a8 | 2009-09-07 15:05:02 +0530 | [diff] [blame] | 362 | |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 363 | $(obj)u-boot.sha1: $(obj)u-boot.bin |
Heiko Schocher | 0115953 | 2007-07-14 01:06:58 +0200 | [diff] [blame] | 364 | $(obj)tools/ubsha1 $(obj)u-boot.bin |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 365 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 366 | $(obj)u-boot.dis: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 367 | $(OBJDUMP) -d $< > $@ |
| 368 | |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 369 | GEN_UBOOT = \ |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 370 | UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \ |
| 371 | sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 372 | cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \ |
| 373 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
wdenk | b2184c3 | 2002-11-19 23:01:07 +0000 | [diff] [blame] | 374 | -Map u-boot.map -o u-boot |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 375 | $(obj)u-boot: depend $(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 376 | $(GEN_UBOOT) |
| 377 | ifeq ($(CONFIG_KALLSYMS),y) |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 378 | smap=`$(call SYSTEM_MAP,u-boot) | \ |
| 379 | awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \ |
| 380 | $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \ |
| 381 | -c common/system_map.c -o $(obj)common/system_map.o |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 382 | $(GEN_UBOOT) $(obj)common/system_map.o |
| 383 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 384 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 385 | $(OBJS): depend |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 386 | $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 387 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 388 | $(LIBS): depend $(SUBDIRS) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 389 | $(MAKE) -C $(dir $(subst $(obj),,$@)) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 390 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 391 | $(LIBBOARD): depend $(LIBS) |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 392 | $(MAKE) -C $(dir $(subst $(obj),,$@)) |
| 393 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 394 | $(SUBDIRS): depend |
wdenk | b028f71 | 2003-12-07 21:39:28 +0000 | [diff] [blame] | 395 | $(MAKE) -C $@ all |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 396 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 397 | $(LDSCRIPT): depend |
Mike Frysinger | f65c981 | 2008-02-16 02:12:37 -0500 | [diff] [blame] | 398 | $(MAKE) -C $(dir $@) $(notdir $@) |
| 399 | |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 400 | $(obj)u-boot.lds: $(LDSCRIPT) |
| 401 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@ |
| 402 | |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 403 | $(NAND_SPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 404 | $(MAKE) -C nand_spl/board/$(BOARDDIR) all |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 405 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 406 | $(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 407 | cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 408 | |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 409 | $(ONENAND_IPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 410 | $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 411 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 412 | $(U_BOOT_ONENAND): $(ONENAND_IPL) $(obj)u-boot.bin |
Kyungmin Park | ca6189d | 2009-09-22 09:05:00 +0900 | [diff] [blame] | 413 | cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 414 | |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 415 | $(VERSION_FILE): |
Mike Frysinger | aa73794 | 2008-05-02 21:45:12 -0400 | [diff] [blame] | 416 | @( printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' "$(U_BOOT_VERSION)" \ |
Peter Tyser | 434c51a | 2008-11-12 13:06:48 -0600 | [diff] [blame] | 417 | '$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ) > $@.tmp |
Mike Frysinger | 0ec7a06 | 2008-02-04 17:44:23 -0500 | [diff] [blame] | 418 | @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 419 | |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 420 | $(TIMESTAMP_FILE): |
Ilya Yanok | d6b9371 | 2010-06-21 18:13:21 +0400 | [diff] [blame] | 421 | @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@ |
| 422 | @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@ |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 423 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 424 | updater: |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 425 | $(MAKE) -C tools/updater all |
dzu | 8f713fd | 2003-08-07 14:20:31 +0000 | [diff] [blame] | 426 | |
Daniel Hobi | 2a99879 | 2010-01-18 18:13:39 +0100 | [diff] [blame] | 427 | # Explicitly make _depend in subdirs containing multiple targets to prevent |
| 428 | # parallel sub-makes creating .depend files simultaneously. |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 429 | depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 430 | for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \ |
Daniel Hobi | 2a99879 | 2010-01-18 18:13:39 +0100 | [diff] [blame] | 431 | $(MAKE) -C $$dir _depend ; done |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 432 | |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 433 | TAG_SUBDIRS = $(SUBDIRS) |
| 434 | TAG_SUBDIRS += $(dir $(__LIBS)) |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 435 | TAG_SUBDIRS += include |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 436 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 437 | tags ctags: |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 438 | ctags -w -o $(obj)ctags `find $(TAG_SUBDIRS) \ |
| 439 | -name '*.[chS]' -print` |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 440 | |
| 441 | etags: |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 442 | etags -a -o $(obj)etags `find $(TAG_SUBDIRS) \ |
| 443 | -name '*.[chS]' -print` |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 444 | cscope: |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 445 | find $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 446 | cscope -b -q -k |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 447 | |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 448 | SYSTEM_MAP = \ |
| 449 | $(NM) $1 | \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 450 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 451 | LC_ALL=C sort |
| 452 | $(obj)System.map: $(obj)u-boot |
| 453 | @$(call SYSTEM_MAP,$<) > $(obj)System.map |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 454 | |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 455 | # |
| 456 | # Auto-generate the autoconf.mk file (which is included by all makefiles) |
| 457 | # |
| 458 | # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep. |
| 459 | # the dep file is only include in this top level makefile to determine when |
| 460 | # to regenerate the autoconf.mk file. |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 461 | $(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h |
| 462 | @$(XECHO) Generating $@ ; \ |
Mike Frysinger | 16fe777 | 2008-02-18 05:10:07 -0500 | [diff] [blame] | 463 | set -e ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 464 | : Generate the dependancies ; \ |
Mike Frysinger | 9aef738 | 2009-07-19 15:17:03 -0400 | [diff] [blame] | 465 | $(CC) -x c -DDO_DEPS_ONLY -M $(HOSTCFLAGS) $(CPPFLAGS) \ |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 466 | -MQ $(obj)include/autoconf.mk include/common.h > $@ |
| 467 | |
| 468 | $(obj)include/autoconf.mk: $(obj)include/config.h |
| 469 | @$(XECHO) Generating $@ ; \ |
| 470 | set -e ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 471 | : Extract the config macros ; \ |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 472 | $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \ |
Wolfgang Denk | 4a0f753 | 2008-12-16 14:41:02 +0100 | [diff] [blame] | 473 | sed -n -f tools/scripts/define2mk.sed > $@.tmp && \ |
| 474 | mv $@.tmp $@ |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 475 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 476 | ######################################################################### |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 477 | else # !config.mk |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 478 | all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \ |
| 479 | $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \ |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 480 | $(filter-out tools,$(SUBDIRS)) $(TIMESTAMP_FILE) $(VERSION_FILE) \ |
| 481 | updater depend dep tags ctags etags cscope $(obj)System.map: |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 482 | @echo "System not configured - see README" >&2 |
| 483 | @ exit 1 |
Mike Frysinger | c7c0d54 | 2010-01-21 04:03:22 -0500 | [diff] [blame] | 484 | |
| 485 | tools: |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 486 | $(MAKE) -C $@ all |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 487 | endif # config.mk |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 488 | |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 489 | easylogo env gdb: |
| 490 | $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION} |
| 491 | gdbtools: gdb |
| 492 | |
| 493 | tools-all: easylogo env gdb |
| 494 | $(MAKE) -C tools HOST_TOOLS_ALL=y |
| 495 | |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 496 | .PHONY : CHANGELOG |
| 497 | CHANGELOG: |
Ben Warren | b985b5d | 2006-10-26 14:38:25 -0400 | [diff] [blame] | 498 | git log --no-merges U-Boot-1_1_5.. | \ |
| 499 | unexpand -a | sed -e 's/\s\s*$$//' > $@ |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 500 | |
Harald Welte | 0a823aa | 2008-07-09 22:30:30 +0800 | [diff] [blame] | 501 | include/license.h: tools/bin2header COPYING |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 502 | cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 503 | ######################################################################### |
| 504 | |
| 505 | unconfig: |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 506 | @rm -f $(obj)include/config.h $(obj)include/config.mk \ |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 507 | $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \ |
| 508 | $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 509 | |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 510 | %_config:: unconfig |
| 511 | @$(MKCONFIG) -A $(@:_config=) |
| 512 | |
Mike Frysinger | 727ebd9 | 2010-08-11 18:52:36 -0400 | [diff] [blame] | 513 | sinclude .boards.depend |
| 514 | .boards.depend: boards.cfg |
| 515 | awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@ |
Mike Frysinger | 9f4a420 | 2009-10-01 12:11:54 -0400 | [diff] [blame] | 516 | |
Wolfgang Denk | 8c99463 | 2010-05-27 23:18:35 +0200 | [diff] [blame] | 517 | # |
| 518 | # Functions to generate common board directory names |
| 519 | # |
| 520 | lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/') |
| 521 | ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/') |
| 522 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 523 | ######################################################################### |
| 524 | ## Coldfire |
| 525 | ######################################################################### |
| 526 | |
Wolfgang Wegner | 9d79e57 | 2010-01-25 11:27:44 +0100 | [diff] [blame] | 527 | astro_mcf5373l_config \ |
| 528 | astro_mcf5373l_RAM_config : unconfig |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 529 | @$(MKCONFIG) -n $@ -t $@ astro_mcf5373l m68k mcf532x mcf5373l astro |
Wolfgang Wegner | 9d79e57 | 2010-01-25 11:27:44 +0100 | [diff] [blame] | 530 | |
TsiChung Liew | a21d0c2 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 531 | M52277EVB_config \ |
| 532 | M52277EVB_spansion_config \ |
| 533 | M52277EVB_stmicro_config : unconfig |
| 534 | @case "$@" in \ |
| 535 | M52277EVB_config) FLASH=SPANSION;; \ |
| 536 | M52277EVB_spansion_config) FLASH=SPANSION;; \ |
| 537 | M52277EVB_stmicro_config) FLASH=STMICRO;; \ |
| 538 | esac; \ |
| 539 | if [ "$${FLASH}" = "SPANSION" ] ; then \ |
| 540 | echo "#define CONFIG_SYS_SPANSION_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 541 | echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m52277evb/config.tmp ; \ |
TsiChung Liew | a21d0c2 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 542 | cp $(obj)board/freescale/m52277evb/u-boot.spa $(obj)board/freescale/m52277evb/u-boot.lds ; \ |
TsiChung Liew | a21d0c2 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 543 | fi; \ |
| 544 | if [ "$${FLASH}" = "STMICRO" ] ; then \ |
| 545 | echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \ |
| 546 | echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 547 | echo "CONFIG_SYS_TEXT_BASE = 0x43E00000" > $(obj)board/freescale/m52277evb/config.tmp ; \ |
TsiChung Liew | a21d0c2 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 548 | cp $(obj)board/freescale/m52277evb/u-boot.stm $(obj)board/freescale/m52277evb/u-boot.lds ; \ |
TsiChung Liew | a21d0c2 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 549 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 550 | @$(MKCONFIG) -n $@ -a M52277EVB m68k mcf5227x m52277evb freescale |
TsiChungLiew | 1552af7 | 2008-01-14 17:43:33 -0600 | [diff] [blame] | 551 | |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 552 | M5235EVB_config \ |
| 553 | M5235EVB_Flash16_config \ |
| 554 | M5235EVB_Flash32_config: unconfig |
| 555 | @case "$@" in \ |
| 556 | M5235EVB_config) FLASH=16;; \ |
| 557 | M5235EVB_Flash16_config) FLASH=16;; \ |
| 558 | M5235EVB_Flash32_config) FLASH=32;; \ |
| 559 | esac; \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 560 | if [ "$${FLASH}" != "16" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 561 | echo "#define NORFLASH_PS32BIT 1" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 562 | echo "CONFIG_SYS_TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 563 | cp $(obj)board/freescale/m5235evb/u-boot.32 $(obj)board/freescale/m5235evb/u-boot.lds ; \ |
| 564 | else \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 565 | echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 566 | cp $(obj)board/freescale/m5235evb/u-boot.16 $(obj)board/freescale/m5235evb/u-boot.lds ; \ |
| 567 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 568 | @$(MKCONFIG) -n $@ -a M5235EVB m68k mcf523x m5235evb freescale |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 569 | |
Wolfgang Denk | 7481266 | 2005-12-12 16:06:05 +0100 | [diff] [blame] | 570 | cobra5272_config : unconfig |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 571 | @$(MKCONFIG) $@ m68k mcf52x2 cobra5272 |
Wolfgang Denk | 7481266 | 2005-12-12 16:06:05 +0100 | [diff] [blame] | 572 | |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 573 | EB+MCF-EV123_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 574 | @mkdir -p $(obj)include |
| 575 | @mkdir -p $(obj)board/BuS/EB+MCF-EV123 |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 576 | @echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 577 | @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 578 | |
| 579 | EB+MCF-EV123_internal_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 580 | @mkdir -p $(obj)include |
| 581 | @mkdir -p $(obj)board/BuS/EB+MCF-EV123 |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 582 | @echo "CONFIG_SYS_TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 583 | @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 584 | |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 585 | M5329AFEE_config \ |
| 586 | M5329BFEE_config : unconfig |
| 587 | @case "$@" in \ |
| 588 | M5329AFEE_config) NAND=0;; \ |
| 589 | M5329BFEE_config) NAND=16;; \ |
| 590 | esac; \ |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 591 | if [ "$${NAND}" != "0" ] ; then \ |
TsiChungLiew | ab77bc5 | 2007-08-15 15:39:17 -0500 | [diff] [blame] | 592 | echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \ |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 593 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 594 | @$(MKCONFIG) -n $@ -a M5329EVB m68k mcf532x m5329evb freescale |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 595 | |
TsiChungLiew | aa5f1f9 | 2008-01-14 17:23:08 -0600 | [diff] [blame] | 596 | M5373EVB_config : unconfig |
| 597 | @case "$@" in \ |
| 598 | M5373EVB_config) NAND=16;; \ |
| 599 | esac; \ |
TsiChungLiew | aa5f1f9 | 2008-01-14 17:23:08 -0600 | [diff] [blame] | 600 | if [ "$${NAND}" != "0" ] ; then \ |
| 601 | echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \ |
| 602 | fi |
| 603 | @$(MKCONFIG) -a M5373EVB m68k mcf532x m5373evb freescale |
| 604 | |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 605 | M54451EVB_config \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 606 | M54451EVB_stmicro_config : unconfig |
| 607 | @case "$@" in \ |
TsiChung Liew | 709b384 | 2009-06-11 15:39:57 +0000 | [diff] [blame] | 608 | M54451EVB_config) FLASH=NOR;; \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 609 | M54451EVB_stmicro_config) FLASH=STMICRO;; \ |
| 610 | esac; \ |
TsiChung Liew | 709b384 | 2009-06-11 15:39:57 +0000 | [diff] [blame] | 611 | if [ "$${FLASH}" = "NOR" ] ; then \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 612 | echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54451evb/config.tmp ; \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 613 | cp $(obj)board/freescale/m54451evb/u-boot.spa $(obj)board/freescale/m54451evb/u-boot.lds ; \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 614 | fi; \ |
| 615 | if [ "$${FLASH}" = "STMICRO" ] ; then \ |
| 616 | echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 617 | echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 618 | echo "CONFIG_SYS_TEXT_BASE = 0x47E00000" > $(obj)board/freescale/m54451evb/config.tmp ; \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 619 | cp $(obj)board/freescale/m54451evb/u-boot.stm $(obj)board/freescale/m54451evb/u-boot.lds ; \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 620 | fi; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 621 | echo "#define CONFIG_SYS_INPUT_CLKSRC 24000000" >> $(obj)include/config.h ; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 622 | @$(MKCONFIG) -n $@ -a M54451EVB m68k mcf5445x m54451evb freescale |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 623 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 624 | M54455EVB_config \ |
| 625 | M54455EVB_atmel_config \ |
| 626 | M54455EVB_intel_config \ |
| 627 | M54455EVB_a33_config \ |
| 628 | M54455EVB_a66_config \ |
| 629 | M54455EVB_i33_config \ |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 630 | M54455EVB_i66_config \ |
| 631 | M54455EVB_stm33_config : unconfig |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 632 | @case "$@" in \ |
| 633 | M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \ |
| 634 | M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \ |
| 635 | M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \ |
| 636 | M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \ |
| 637 | M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \ |
| 638 | M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \ |
| 639 | M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \ |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 640 | M54455EVB_stm33_config) FLASH=STMICRO; FREQ=33333333;; \ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 641 | esac; \ |
Wolfgang Denk | 1aaab9b | 2008-01-02 15:54:45 +0100 | [diff] [blame] | 642 | if [ "$${FLASH}" = "INTEL" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 643 | echo "#define CONFIG_SYS_INTEL_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 644 | echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \ |
TsiChungLiew | e8ee8f3 | 2007-10-25 17:16:22 -0500 | [diff] [blame] | 645 | cp $(obj)board/freescale/m54455evb/u-boot.int $(obj)board/freescale/m54455evb/u-boot.lds ; \ |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 646 | fi; \ |
| 647 | if [ "$${FLASH}" = "ATMEL" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 648 | echo "#define CONFIG_SYS_ATMEL_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 649 | echo "CONFIG_SYS_TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \ |
TsiChungLiew | e8ee8f3 | 2007-10-25 17:16:22 -0500 | [diff] [blame] | 650 | cp $(obj)board/freescale/m54455evb/u-boot.atm $(obj)board/freescale/m54455evb/u-boot.lds ; \ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 651 | fi; \ |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 652 | if [ "$${FLASH}" = "STMICRO" ] ; then \ |
| 653 | echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 654 | echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 655 | echo "CONFIG_SYS_TEXT_BASE = 0x4FE00000" > $(obj)board/freescale/m54455evb/config.tmp ; \ |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 656 | cp $(obj)board/freescale/m54455evb/u-boot.stm $(obj)board/freescale/m54455evb/u-boot.lds ; \ |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 657 | fi; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 658 | echo "#define CONFIG_SYS_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 659 | @$(MKCONFIG) -n $@ -a M54455EVB m68k mcf5445x m54455evb freescale |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 660 | |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 661 | M5475AFE_config \ |
| 662 | M5475BFE_config \ |
| 663 | M5475CFE_config \ |
| 664 | M5475DFE_config \ |
| 665 | M5475EFE_config \ |
| 666 | M5475FFE_config \ |
| 667 | M5475GFE_config : unconfig |
| 668 | @case "$@" in \ |
| 669 | M5475AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 670 | M5475BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 671 | M5475CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 672 | M5475DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \ |
| 673 | M5475EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 674 | M5475FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \ |
| 675 | M5475GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 676 | esac; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 677 | echo "#define CONFIG_SYS_BUSCLK 133333333" > $(obj)include/config.h ; \ |
| 678 | echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \ |
| 679 | echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 680 | if [ "$${RAM1}" != "0" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 681 | echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 682 | fi; \ |
| 683 | if [ "$${CODE}" != "0" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 684 | echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 685 | fi; \ |
| 686 | if [ "$${VID}" == "1" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 687 | echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 688 | fi; \ |
| 689 | if [ "$${USB}" == "1" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 690 | echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 691 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 692 | @$(MKCONFIG) -n $@ -a M5475EVB m68k mcf547x_8x m547xevb freescale |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 693 | |
| 694 | M5485AFE_config \ |
| 695 | M5485BFE_config \ |
| 696 | M5485CFE_config \ |
| 697 | M5485DFE_config \ |
| 698 | M5485EFE_config \ |
| 699 | M5485FFE_config \ |
| 700 | M5485GFE_config \ |
| 701 | M5485HFE_config : unconfig |
| 702 | @case "$@" in \ |
| 703 | M5485AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 704 | M5485BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 705 | M5485CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 706 | M5485DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \ |
| 707 | M5485EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 708 | M5485FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \ |
| 709 | M5485GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
TsiChungLiew | 4d264ef | 2008-01-30 15:08:15 -0600 | [diff] [blame] | 710 | M5485HFE_config) BOOT=2;CODE=16;VID=1;USB=0;RAM=64;RAM1=0;; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 711 | esac; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 712 | echo "#define CONFIG_SYS_BUSCLK 100000000" > $(obj)include/config.h ; \ |
| 713 | echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \ |
| 714 | echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 715 | if [ "$${RAM1}" != "0" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 716 | echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 717 | fi; \ |
| 718 | if [ "$${CODE}" != "0" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 719 | echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 720 | fi; \ |
| 721 | if [ "$${VID}" == "1" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 722 | echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 723 | fi; \ |
| 724 | if [ "$${USB}" == "1" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 725 | echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 726 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 727 | @$(MKCONFIG) -n $@ -a M5485EVB m68k mcf547x_8x m548xevb freescale |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 728 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 729 | #======================================================================== |
| 730 | # ARM |
| 731 | #======================================================================== |
Po-Yu Chuang | 43a5f0d | 2009-11-11 17:27:30 +0800 | [diff] [blame] | 732 | |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 733 | ######################################################################### |
| 734 | ## Atmel AT91RM9200 Systems |
| 735 | ######################################################################### |
Stelian Pop | 20b197c | 2008-01-20 19:49:21 +0000 | [diff] [blame] | 736 | |
Tom Rix | d8380c9 | 2009-09-27 07:47:24 -0500 | [diff] [blame] | 737 | CPUAT91_RAM_config \ |
| 738 | CPUAT91_config : unconfig |
| 739 | @mkdir -p $(obj)include |
| 740 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h |
Eric Bénard | af4b8b4 | 2010-08-09 11:50:45 +0200 | [diff] [blame] | 741 | @$(MKCONFIG) -n $@ -a cpuat91 arm arm920t cpuat91 eukrea at91 |
Tom Rix | d8380c9 | 2009-09-27 07:47:24 -0500 | [diff] [blame] | 742 | |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 743 | ######################################################################### |
Matthias Weisser | 34be106 | 2010-01-18 10:58:13 +0100 | [diff] [blame] | 744 | ## ARM926EJ-S Systems |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 745 | ######################################################################### |
| 746 | |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 747 | at91sam9260ek_nandflash_config \ |
| 748 | at91sam9260ek_dataflash_cs0_config \ |
| 749 | at91sam9260ek_dataflash_cs1_config \ |
Nicolas Ferre | df486b1 | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 750 | at91sam9260ek_config \ |
| 751 | at91sam9g20ek_nandflash_config \ |
| 752 | at91sam9g20ek_dataflash_cs0_config \ |
| 753 | at91sam9g20ek_dataflash_cs1_config \ |
| 754 | at91sam9g20ek_config : unconfig |
Jean-Christophe PLAGNIOL-VILLARD | e12d9a8 | 2009-01-03 17:22:24 +0100 | [diff] [blame] | 755 | @mkdir -p $(obj)include |
Nicolas Ferre | df486b1 | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 756 | @if [ "$(findstring 9g20,$@)" ] ; then \ |
| 757 | echo "#define CONFIG_AT91SAM9G20EK 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | df486b1 | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 758 | else \ |
| 759 | echo "#define CONFIG_AT91SAM9260EK 1" >>$(obj)include/config.h ; \ |
| 760 | fi; |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 761 | @if [ "$(findstring _nandflash,$@)" ] ; then \ |
| 762 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 763 | elif [ "$(findstring dataflash_cs0,$@)" ] ; then \ |
| 764 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 765 | else \ |
| 766 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 767 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 768 | @$(MKCONFIG) -n $@ -a at91sam9260ek arm arm926ejs at91sam9260ek atmel at91 |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 769 | |
Nicolas Ferre | 4e170b1 | 2009-01-06 21:13:14 +0100 | [diff] [blame] | 770 | at91sam9xeek_nandflash_config \ |
| 771 | at91sam9xeek_dataflash_cs0_config \ |
| 772 | at91sam9xeek_dataflash_cs1_config \ |
| 773 | at91sam9xeek_config : unconfig |
| 774 | @mkdir -p $(obj)include |
| 775 | @if [ "$(findstring _nandflash,$@)" ] ; then \ |
| 776 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 4e170b1 | 2009-01-06 21:13:14 +0100 | [diff] [blame] | 777 | elif [ "$(findstring dataflash_cs0,$@)" ] ; then \ |
| 778 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 4e170b1 | 2009-01-06 21:13:14 +0100 | [diff] [blame] | 779 | else \ |
| 780 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 4e170b1 | 2009-01-06 21:13:14 +0100 | [diff] [blame] | 781 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 782 | @$(MKCONFIG) -n $@ -a at91sam9260ek arm arm926ejs at91sam9260ek atmel at91 |
Nicolas Ferre | 4e170b1 | 2009-01-06 21:13:14 +0100 | [diff] [blame] | 783 | |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 784 | at91sam9261ek_nandflash_config \ |
| 785 | at91sam9261ek_dataflash_cs0_config \ |
| 786 | at91sam9261ek_dataflash_cs3_config \ |
Sedji Gaouaou | 5ccc2d9 | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 787 | at91sam9261ek_config \ |
| 788 | at91sam9g10ek_nandflash_config \ |
| 789 | at91sam9g10ek_dataflash_cs0_config \ |
| 790 | at91sam9g10ek_dataflash_cs3_config \ |
| 791 | at91sam9g10ek_config : unconfig |
Jean-Christophe PLAGNIOL-VILLARD | e12d9a8 | 2009-01-03 17:22:24 +0100 | [diff] [blame] | 792 | @mkdir -p $(obj)include |
Sedji Gaouaou | 5ccc2d9 | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 793 | @if [ "$(findstring 9g10,$@)" ] ; then \ |
| 794 | echo "#define CONFIG_AT91SAM9G10EK 1" >>$(obj)include/config.h ; \ |
Sedji Gaouaou | 5ccc2d9 | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 795 | else \ |
| 796 | echo "#define CONFIG_AT91SAM9261EK 1" >>$(obj)include/config.h ; \ |
| 797 | fi; |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 798 | @if [ "$(findstring _nandflash,$@)" ] ; then \ |
| 799 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ |
Sedji Gaouaou | 5ccc2d9 | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 800 | elif [ "$(findstring dataflash_cs0,$@)" ] ; then \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 801 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS3 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 802 | else \ |
| 803 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 804 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 805 | @$(MKCONFIG) -n $@ -a at91sam9261ek arm arm926ejs at91sam9261ek atmel at91 |
Jean-Christophe PLAGNIOL-VILLARD | 28962f5 | 2008-11-01 10:47:59 +0100 | [diff] [blame] | 806 | |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 807 | at91sam9263ek_norflash_config \ |
| 808 | at91sam9263ek_norflash_boot_config \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 809 | at91sam9263ek_nandflash_config \ |
| 810 | at91sam9263ek_dataflash_config \ |
| 811 | at91sam9263ek_dataflash_cs0_config \ |
Jean-Christophe PLAGNIOL-VILLARD | 28962f5 | 2008-11-01 10:47:59 +0100 | [diff] [blame] | 812 | at91sam9263ek_config : unconfig |
Jean-Christophe PLAGNIOL-VILLARD | e12d9a8 | 2009-01-03 17:22:24 +0100 | [diff] [blame] | 813 | @mkdir -p $(obj)include |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 814 | @if [ "$(findstring _nandflash,$@)" ] ; then \ |
| 815 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 816 | elif [ "$(findstring norflash,$@)" ] ; then \ |
| 817 | echo "#define CONFIG_SYS_USE_NORFLASH 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 818 | else \ |
| 819 | echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 820 | fi; |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 821 | @if [ "$(findstring norflash_boot,$@)" ] ; then \ |
| 822 | echo "#define CONFIG_SYS_USE_BOOT_NORFLASH 1" >>$(obj)include/config.h ; \ |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 823 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 824 | @$(MKCONFIG) -n $@ -a at91sam9263ek arm arm926ejs at91sam9263ek atmel at91 |
Jean-Christophe PLAGNIOL-VILLARD | 28962f5 | 2008-11-01 10:47:59 +0100 | [diff] [blame] | 825 | |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 826 | at91sam9rlek_nandflash_config \ |
| 827 | at91sam9rlek_dataflash_config \ |
| 828 | at91sam9rlek_dataflash_cs0_config \ |
Jean-Christophe PLAGNIOL-VILLARD | 28962f5 | 2008-11-01 10:47:59 +0100 | [diff] [blame] | 829 | at91sam9rlek_config : unconfig |
Jean-Christophe PLAGNIOL-VILLARD | e12d9a8 | 2009-01-03 17:22:24 +0100 | [diff] [blame] | 830 | @mkdir -p $(obj)include |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 831 | @if [ "$(findstring _nandflash,$@)" ] ; then \ |
| 832 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 833 | else \ |
| 834 | echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 835 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 836 | @$(MKCONFIG) -n $@ -a at91sam9rlek arm arm926ejs at91sam9rlek atmel at91 |
Jean-Christophe PLAGNIOL-VILLARD | 28962f5 | 2008-11-01 10:47:59 +0100 | [diff] [blame] | 837 | |
Tom Rix | 23b8098 | 2009-09-27 11:10:09 -0500 | [diff] [blame] | 838 | CPU9G20_128M_config \ |
| 839 | CPU9G20_config \ |
| 840 | CPU9260_128M_config \ |
| 841 | CPU9260_config : unconfig |
| 842 | @mkdir -p $(obj)include |
| 843 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 844 | @$(MKCONFIG) -n $@ -a cpu9260 arm arm926ejs cpu9260 eukrea at91 |
Tom Rix | 23b8098 | 2009-09-27 11:10:09 -0500 | [diff] [blame] | 845 | |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 846 | at91sam9m10g45ek_nandflash_config \ |
| 847 | at91sam9m10g45ek_dataflash_config \ |
| 848 | at91sam9m10g45ek_dataflash_cs0_config \ |
| 849 | at91sam9m10g45ek_config \ |
| 850 | at91sam9g45ekes_nandflash_config \ |
| 851 | at91sam9g45ekes_dataflash_config \ |
| 852 | at91sam9g45ekes_dataflash_cs0_config \ |
| 853 | at91sam9g45ekes_config : unconfig |
| 854 | @mkdir -p $(obj)include |
| 855 | @if [ "$(findstring 9m10,$@)" ] ; then \ |
| 856 | echo "#define CONFIG_AT91SAM9M10G45EK 1" >>$(obj)include/config.h ; \ |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 857 | else \ |
| 858 | echo "#define CONFIG_AT91SAM9G45EKES 1" >>$(obj)include/config.h ; \ |
| 859 | fi; |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 860 | @if [ "$(findstring _nandflash,$@)" ] ; then \ |
| 861 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 862 | else \ |
| 863 | echo "#define CONFIG_ATMEL_SPI 1" >>$(obj)include/config.h ; \ |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 864 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 865 | @$(MKCONFIG) -n $@ -a at91sam9m10g45ek arm arm926ejs at91sam9m10g45ek atmel at91 |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 866 | |
Asen Dimov | b5d289f | 2010-04-20 22:49:04 +0300 | [diff] [blame] | 867 | pm9g45_config : unconfig |
| 868 | @mkdir -p $(obj)include |
| 869 | @$(MKCONFIG) -a pm9g45 arm arm926ejs pm9g45 ronetix at91 |
| 870 | |
Albin Tonnerre | 9453967 | 2009-08-24 18:03:26 +0200 | [diff] [blame] | 871 | SBC35_A9G20_NANDFLASH_config \ |
| 872 | SBC35_A9G20_EEPROM_config \ |
| 873 | SBC35_A9G20_config : unconfig |
| 874 | @mkdir -p $(obj)include |
| 875 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 876 | @$(MKCONFIG) -n $@ -a sbc35_a9g20 arm arm926ejs sbc35_a9g20 calao at91 |
Albin Tonnerre | 9453967 | 2009-08-24 18:03:26 +0200 | [diff] [blame] | 877 | |
Albin Tonnerre | 2dc851e | 2009-08-20 16:04:49 +0200 | [diff] [blame] | 878 | TNY_A9G20_NANDFLASH_config \ |
| 879 | TNY_A9G20_EEPROM_config \ |
| 880 | TNY_A9G20_config \ |
| 881 | TNY_A9260_NANDFLASH_config \ |
| 882 | TNY_A9260_EEPROM_config \ |
| 883 | TNY_A9260_config : unconfig |
| 884 | @mkdir -p $(obj)include |
| 885 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 886 | @$(MKCONFIG) -n $@ -a tny_a9260 arm arm926ejs tny_a9260 calao at91 |
Albin Tonnerre | 2dc851e | 2009-08-20 16:04:49 +0200 | [diff] [blame] | 887 | |
Wolfgang Denk | 74f4304 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 888 | ######################################################################## |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 889 | ## ARM Integrator boards - see doc/README-integrator for more info. |
| 890 | integratorap_config \ |
| 891 | ap_config \ |
| 892 | ap966_config \ |
| 893 | ap922_config \ |
| 894 | ap922_XA10_config \ |
| 895 | ap7_config \ |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 896 | ap720t_config \ |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 897 | ap920t_config \ |
| 898 | ap926ejs_config \ |
| 899 | ap946es_config: unconfig |
Jean-Christophe PLAGNIOL-VILLARD | 576afd4 | 2009-05-17 00:58:37 +0200 | [diff] [blame] | 900 | @board/armltd/integrator/split_by_variant.sh ap $@ |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 901 | |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 902 | integratorcp_config \ |
| 903 | cp_config \ |
| 904 | cp920t_config \ |
| 905 | cp926ejs_config \ |
| 906 | cp946es_config \ |
| 907 | cp1136_config \ |
| 908 | cp966_config \ |
| 909 | cp922_config \ |
| 910 | cp922_XA10_config \ |
| 911 | cp1026_config: unconfig |
Jean-Christophe PLAGNIOL-VILLARD | 576afd4 | 2009-05-17 00:58:37 +0200 | [diff] [blame] | 912 | @board/armltd/integrator/split_by_variant.sh cp $@ |
wdenk | 25d6712 | 2004-12-10 11:40:40 +0000 | [diff] [blame] | 913 | |
Alessandro Rubini | ee1363f | 2009-06-22 09:18:37 +0200 | [diff] [blame] | 914 | nhk8815_config \ |
| 915 | nhk8815_onenand_config: unconfig |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 916 | @mkdir -p $(obj)include |
| 917 | @ > $(obj)include/config.h |
| 918 | @if [ "$(findstring _onenand, $@)" ] ; then \ |
| 919 | echo "#define CONFIG_BOOT_ONENAND" >> $(obj)include/config.h; \ |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 920 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 921 | @$(MKCONFIG) -n $@ -a nhk8815 arm arm926ejs nhk8815 st nomadik |
Alessandro Rubini | d5254f1 | 2009-01-24 18:10:37 +0100 | [diff] [blame] | 922 | |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 923 | xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1)))) |
| 924 | |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 925 | omap1610inn_config \ |
| 926 | omap1610inn_cs0boot_config \ |
| 927 | omap1610inn_cs3boot_config \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 928 | omap1610inn_cs_autoboot_config \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 929 | omap1610h2_config \ |
| 930 | omap1610h2_cs0boot_config \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 931 | omap1610h2_cs3boot_config \ |
| 932 | omap1610h2_cs_autoboot_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 933 | @mkdir -p $(obj)include |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 934 | @if [ "$(findstring _cs0boot_, $@)" ] ; then \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 935 | echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 936 | elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 937 | echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 938 | else \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 939 | echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 940 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 941 | @$(MKCONFIG) -n $@ -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 942 | |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 943 | omap730p2_config \ |
| 944 | omap730p2_cs0boot_config \ |
| 945 | omap730p2_cs3boot_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 946 | @mkdir -p $(obj)include |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 947 | @if [ "$(findstring _cs0boot_, $@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 948 | echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \ |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 949 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 950 | echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 951 | fi; |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 952 | @$(MKCONFIG) -n $@ -a omap730p2 arm arm926ejs omap730p2 ti omap |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 953 | |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 954 | spear300_config \ |
Vipin KUMAR | 7da6923 | 2010-01-15 19:15:53 +0530 | [diff] [blame] | 955 | spear310_config \ |
| 956 | spear320_config : unconfig |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 957 | @$(MKCONFIG) -n $@ -t $@ spear3xx arm arm926ejs $(@:_config=) spear spear |
Vipin KUMAR | 7e07415 | 2010-01-15 19:15:50 +0530 | [diff] [blame] | 958 | |
Vipin KUMAR | 566c9c1 | 2010-01-15 19:15:48 +0530 | [diff] [blame] | 959 | spear600_config : unconfig |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 960 | @$(MKCONFIG) -n $@ -t $@ spear6xx arm arm926ejs $(@:_config=) spear spear |
Vipin KUMAR | 566c9c1 | 2010-01-15 19:15:48 +0530 | [diff] [blame] | 961 | |
Jean-Christophe PLAGNIOL-VILLARD | 47fd3bf | 2009-01-28 21:58:03 +0100 | [diff] [blame] | 962 | SX1_stdout_serial_config \ |
| 963 | SX1_config: unconfig |
| 964 | @mkdir -p $(obj)include |
| 965 | @if [ "$(findstring _stdout_serial_, $@)" ] ; then \ |
| 966 | echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \ |
Jean-Christophe PLAGNIOL-VILLARD | 47fd3bf | 2009-01-28 21:58:03 +0100 | [diff] [blame] | 967 | else \ |
| 968 | echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \ |
Jean-Christophe PLAGNIOL-VILLARD | 47fd3bf | 2009-01-28 21:58:03 +0100 | [diff] [blame] | 969 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 970 | @$(MKCONFIG) -n $@ SX1 arm arm925t sx1 |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 971 | |
wdenk | b2001f2 | 2003-12-20 22:45:10 +0000 | [diff] [blame] | 972 | # TRAB default configuration: 8 MB Flash, 32 MB RAM |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 973 | trab_config \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 974 | trab_bigram_config \ |
| 975 | trab_bigflash_config \ |
wdenk | f54ebdf | 2003-09-17 15:10:32 +0000 | [diff] [blame] | 976 | trab_old_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 977 | @mkdir -p $(obj)include |
| 978 | @mkdir -p $(obj)board/trab |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 979 | @[ -z "$(findstring _bigram,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 980 | { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \ |
| 981 | echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 982 | } |
| 983 | @[ -z "$(findstring _bigflash,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 984 | { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \ |
| 985 | echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 986 | echo "CONFIG_SYS_TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 987 | } |
wdenk | f54ebdf | 2003-09-17 15:10:32 +0000 | [diff] [blame] | 988 | @[ -z "$(findstring _old,$@)" ] || \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 989 | { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \ |
| 990 | echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 991 | echo "CONFIG_SYS_TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 992 | } |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 993 | @$(MKCONFIG) -n $@ -a trab arm arm920t trab - s3c24x0 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 994 | |
John Rigby | 6895d45 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 995 | tx25_config : unconfig |
John Rigby | 6895d45 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 996 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 997 | @$(MKCONFIG) $@ arm arm926ejs tx25 karo mx25 |
John Rigby | 6895d45 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 998 | |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 999 | edb9301_config \ |
| 1000 | edb9302_config \ |
| 1001 | edb9302a_config \ |
| 1002 | edb9307_config \ |
| 1003 | edb9307a_config \ |
| 1004 | edb9312_config \ |
| 1005 | edb9315_config \ |
| 1006 | edb9315a_config: unconfig |
| 1007 | @$(MKCONFIG) -n $@ -t $(@:_config=) edb93xx arm arm920t edb93xx - ep93xx |
| 1008 | |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1009 | ######################################################################### |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 1010 | # ARM supplied Versatile development boards |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1011 | ######################################################################### |
| 1012 | |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 1013 | versatile_config \ |
| 1014 | versatileab_config \ |
| 1015 | versatilepb_config : unconfig |
Jean-Christophe PLAGNIOL-VILLARD | e4943ec | 2009-01-29 12:07:21 +0100 | [diff] [blame] | 1016 | @board/armltd/versatile/split_by_variant.sh $@ |
wdenk | 074cff0 | 2004-02-24 00:16:43 +0000 | [diff] [blame] | 1017 | |
| 1018 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1019 | ## XScale Systems |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1020 | ######################################################################### |
| 1021 | |
Stefan Roese | 9d8d5a5 | 2007-01-18 16:05:47 +0100 | [diff] [blame] | 1022 | pdnb3_config \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1023 | scpu_config: unconfig |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 1024 | @mkdir -p $(obj)include |
Stefan Roese | 9d8d5a5 | 2007-01-18 16:05:47 +0100 | [diff] [blame] | 1025 | @if [ "$(findstring scpu_,$@)" ] ; then \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1026 | echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \ |
Stefan Roese | 9d8d5a5 | 2007-01-18 16:05:47 +0100 | [diff] [blame] | 1027 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1028 | @$(MKCONFIG) -n $@ -a pdnb3 arm ixp pdnb3 prodrive |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 1029 | |
Stefano Babic | 040f8f6 | 2009-07-01 20:40:41 +0200 | [diff] [blame] | 1030 | polaris_config \ |
stefano babic | 5e5803e | 2007-08-30 23:01:49 +0200 | [diff] [blame] | 1031 | trizepsiv_config : unconfig |
Stefano Babic | 040f8f6 | 2009-07-01 20:40:41 +0200 | [diff] [blame] | 1032 | @mkdir -p $(obj)include |
| 1033 | @if [ "$(findstring polaris,$@)" ] ; then \ |
| 1034 | echo "#define CONFIG_POLARIS 1" >>$(obj)include/config.h ; \ |
| 1035 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1036 | @$(MKCONFIG) -n $@ -a trizepsiv arm pxa trizepsiv |
stefano babic | 5e5803e | 2007-08-30 23:01:49 +0200 | [diff] [blame] | 1037 | |
Marek Vasut | 18a00df | 2010-03-07 23:35:48 +0100 | [diff] [blame] | 1038 | vpac270_nor_config \ |
| 1039 | vpac270_onenand_config : unconfig |
| 1040 | @mkdir -p $(obj)include |
| 1041 | @if [ "$(findstring onenand,$@)" ] ; then \ |
| 1042 | echo "#define CONFIG_ONENAND_U_BOOT" \ |
| 1043 | >>$(obj)include/config.h ; \ |
| 1044 | fi; |
| 1045 | @$(MKCONFIG) -n $@ -a vpac270 arm pxa vpac270 |
| 1046 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 1047 | ######################################################################### |
| 1048 | ## ARM1136 Systems |
| 1049 | ######################################################################### |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 1050 | |
Peter Pearse | 5ca9881 | 2007-11-09 15:24:26 +0000 | [diff] [blame] | 1051 | apollon_config : unconfig |
Wolfgang Denk | 8cbf4e4 | 2009-12-06 00:26:19 +0100 | [diff] [blame] | 1052 | @mkdir -p $(obj)include |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 1053 | @echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 1054 | @echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 1055 | @$(MKCONFIG) $@ arm arm1136 apollon - omap24xx |
Peter Pearse | 5ca9881 | 2007-11-09 15:24:26 +0000 | [diff] [blame] | 1056 | |
Guennadi Liakhovetski | a2bb710 | 2009-02-24 10:44:02 +0100 | [diff] [blame] | 1057 | imx31_phycore_eet_config \ |
Sascha Hauer | 5ad8621 | 2008-03-26 20:41:17 +0100 | [diff] [blame] | 1058 | imx31_phycore_config : unconfig |
Guennadi Liakhovetski | 69c5bf2 | 2009-04-05 00:37:07 +0200 | [diff] [blame] | 1059 | @mkdir -p $(obj)include |
Guennadi Liakhovetski | a2bb710 | 2009-02-24 10:44:02 +0100 | [diff] [blame] | 1060 | @if [ -n "$(findstring _eet_,$@)" ]; then \ |
| 1061 | echo "#define CONFIG_IMX31_PHYCORE_EET" >> $(obj)include/config.h; \ |
| 1062 | fi |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 1063 | @$(MKCONFIG) -n $@ -a imx31_phycore arm arm1136 imx31_phycore - mx31 |
Sascha Hauer | 5ad8621 | 2008-03-26 20:41:17 +0100 | [diff] [blame] | 1064 | |
Magnus Lilja | d08e5ca | 2009-07-04 10:31:24 +0200 | [diff] [blame] | 1065 | mx31pdk_config \ |
| 1066 | mx31pdk_nand_config : unconfig |
| 1067 | @mkdir -p $(obj)include |
| 1068 | @if [ -n "$(findstring _nand_,$@)" ]; then \ |
| 1069 | echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h; \ |
| 1070 | else \ |
| 1071 | echo "#define CONFIG_SKIP_LOWLEVEL_INIT" >> $(obj)include/config.h; \ |
| 1072 | echo "#define CONFIG_SKIP_RELOCATE_UBOOT" >> $(obj)include/config.h; \ |
| 1073 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1074 | @$(MKCONFIG) -n $@ -a mx31pdk arm arm1136 mx31pdk freescale mx31 |
Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 1075 | |
Guennadi Liakhovetski | 11edcfe | 2008-08-31 00:39:47 +0200 | [diff] [blame] | 1076 | ######################################################################### |
| 1077 | ## ARM1176 Systems |
| 1078 | ######################################################################### |
| 1079 | smdk6400_noUSB_config \ |
| 1080 | smdk6400_config : unconfig |
| 1081 | @mkdir -p $(obj)include $(obj)board/samsung/smdk6400 |
| 1082 | @mkdir -p $(obj)nand_spl/board/samsung/smdk6400 |
| 1083 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1084 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
Guennadi Liakhovetski | 11edcfe | 2008-08-31 00:39:47 +0200 | [diff] [blame] | 1085 | @if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \ |
| 1086 | echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\ |
Guennadi Liakhovetski | 11edcfe | 2008-08-31 00:39:47 +0200 | [diff] [blame] | 1087 | else \ |
| 1088 | echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\ |
Guennadi Liakhovetski | 11edcfe | 2008-08-31 00:39:47 +0200 | [diff] [blame] | 1089 | fi |
Wolfgang Denk | 54e19a7 | 2010-06-18 01:20:49 +0200 | [diff] [blame] | 1090 | @$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx |
Guennadi Liakhovetski | 11edcfe | 2008-08-31 00:39:47 +0200 | [diff] [blame] | 1091 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
| 1092 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1093 | #======================================================================== |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1094 | # MIPS |
| 1095 | #======================================================================== |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1096 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1097 | ## MIPS32 4Kc |
| 1098 | ######################################################################### |
| 1099 | |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 1100 | incaip_100MHz_config \ |
| 1101 | incaip_133MHz_config \ |
| 1102 | incaip_150MHz_config \ |
| 1103 | incaip_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1104 | @mkdir -p $(obj)include |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 1105 | @[ -z "$(findstring _100MHz,$@)" ] || \ |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1106 | echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 1107 | @[ -z "$(findstring _133MHz,$@)" ] || \ |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1108 | echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 1109 | @[ -z "$(findstring _150MHz,$@)" ] || \ |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1110 | echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h |
| 1111 | @$(MKCONFIG) -n $@ -a incaip mips mips incaip |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 1112 | |
Stefan Roese | 2a61eff | 2009-01-21 17:25:01 +0100 | [diff] [blame] | 1113 | vct_premium_config \ |
| 1114 | vct_premium_small_config \ |
| 1115 | vct_premium_onenand_config \ |
| 1116 | vct_premium_onenand_small_config \ |
| 1117 | vct_platinum_config \ |
| 1118 | vct_platinum_small_config \ |
| 1119 | vct_platinum_onenand_config \ |
| 1120 | vct_platinum_onenand_small_config \ |
| 1121 | vct_platinumavc_config \ |
| 1122 | vct_platinumavc_small_config \ |
| 1123 | vct_platinumavc_onenand_config \ |
| 1124 | vct_platinumavc_onenand_small_config: unconfig |
| 1125 | @mkdir -p $(obj)include |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1126 | @[ -z "$(findstring _premium,$@)" ] || \ |
| 1127 | echo "#define CONFIG_VCT_PREMIUM" > $(obj)include/config.h |
| 1128 | @[ -z "$(findstring _platinum_,$@)" ] || \ |
| 1129 | echo "#define CONFIG_VCT_PLATINUM" > $(obj)include/config.h |
| 1130 | @[ -z "$(findstring _platinumavc,$@)" ] || \ |
| 1131 | echo "#define CONFIG_VCT_PLATINUMAVC" > $(obj)include/config.h |
| 1132 | @[ -z "$(findstring _onenand,$@)" ] || \ |
| 1133 | echo "#define CONFIG_VCT_ONENAND" >> $(obj)include/config.h |
| 1134 | @[ -z "$(findstring _small,$@)" ] || \ |
| 1135 | echo "#define CONFIG_VCT_SMALL_IMAGE" >> $(obj)include/config.h |
| 1136 | @$(MKCONFIG) -n $@ -a vct mips mips vct micronas |
Stefan Roese | 2a61eff | 2009-01-21 17:25:01 +0100 | [diff] [blame] | 1137 | |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 1138 | ######################################################################### |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 1139 | ## MIPS32 AU1X00 |
| 1140 | ######################################################################### |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1141 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 1142 | dbau1000_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1143 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 1144 | @echo "#define CONFIG_DBAU1000 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1145 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 1146 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 1147 | dbau1100_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1148 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 1149 | @echo "#define CONFIG_DBAU1100 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1150 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 1151 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 1152 | dbau1500_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1153 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 1154 | @echo "#define CONFIG_DBAU1500 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1155 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 1156 | |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 1157 | dbau1550_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1158 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 1159 | @echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1160 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 1161 | |
| 1162 | dbau1550_el_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1163 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 1164 | @echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1165 | @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00 |
wdenk | ff36fd8 | 2005-01-09 22:28:56 +0000 | [diff] [blame] | 1166 | |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1167 | gth2_config : unconfig |
| 1168 | @mkdir -p $(obj)include |
| 1169 | @echo "#define CONFIG_GTH2 1" >$(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1170 | @$(MKCONFIG) -a $@ mips mips gth2 |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1171 | |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 1172 | pb1000_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1173 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 1174 | @echo "#define CONFIG_PB1000 1" >$(obj)include/config.h |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1175 | @$(MKCONFIG) -a pb1x00 mips mips pb1x00 |
Wolfgang Denk | 265817c | 2005-09-25 00:53:22 +0200 | [diff] [blame] | 1176 | |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1177 | qemu_mips_config : unconfig |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 1178 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 1179 | @echo "#define CONFIG_QEMU_MIPS 1" >$(obj)include/config.h |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 1180 | @$(MKCONFIG) -a qemu-mips mips mips qemu-mips |
| 1181 | |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 1182 | #======================================================================== |
| 1183 | # Nios |
| 1184 | #======================================================================== |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 1185 | |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 1186 | ######################################################################### |
| 1187 | ## Nios-II |
| 1188 | ######################################################################### |
| 1189 | |
Thomas Chou | 8cbb0dd | 2010-04-21 08:40:59 +0800 | [diff] [blame] | 1190 | # nios2 generic boards |
| 1191 | NIOS2_GENERIC = nios2-generic |
| 1192 | |
| 1193 | $(NIOS2_GENERIC:%=%_config) : unconfig |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1194 | @$(MKCONFIG) $@ nios2 nios2 nios2-generic altera |
Thomas Chou | 8cbb0dd | 2010-04-21 08:40:59 +0800 | [diff] [blame] | 1195 | |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 1196 | #======================================================================== |
Mike Frysinger | 60fa72d | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 1197 | # Blackfin |
| 1198 | #======================================================================== |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 1199 | |
Michael Hennerich | 10eafa1 | 2009-12-10 09:19:21 +0000 | [diff] [blame] | 1200 | bf527-ezkit-v2_config : unconfig |
| 1201 | @$(MKCONFIG) -t BF527_EZKIT_REV_2_1 \ |
| 1202 | bf527-ezkit blackfin blackfin bf527-ezkit |
| 1203 | |
Haavard Skinnemoen | 5e3b0bc | 2006-10-25 15:48:59 +0200 | [diff] [blame] | 1204 | #======================================================================== |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1205 | # SH3 (SuperH) |
| 1206 | #======================================================================== |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1207 | |
Nobuhiro Iwamatsu | 69df3c4 | 2007-05-13 21:01:03 +0900 | [diff] [blame] | 1208 | ######################################################################### |
Nobuhiro Iwamatsu | c655fad | 2008-08-31 23:02:04 +0900 | [diff] [blame] | 1209 | ## sh2 (Renesas SuperH) |
| 1210 | ######################################################################### |
| 1211 | rsk7203_config: unconfig |
Kieran Bingham | a5b04d0 | 2008-12-30 01:16:03 +0000 | [diff] [blame] | 1212 | @mkdir -p $(obj)include |
Peter Griffin | 4d41650 | 2009-02-10 16:44:45 +0000 | [diff] [blame] | 1213 | @echo "#define CONFIG_RSK7203 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1214 | @$(MKCONFIG) -a $@ sh sh2 rsk7203 renesas |
Nobuhiro Iwamatsu | c655fad | 2008-08-31 23:02:04 +0900 | [diff] [blame] | 1215 | |
| 1216 | ######################################################################### |
Yoshihiro Shimoda | b2b5e2b | 2007-12-03 22:58:50 +0900 | [diff] [blame] | 1217 | ## sh3 (Renesas SuperH) |
| 1218 | ######################################################################### |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1219 | |
Mark Jonas | 3313e0e | 2008-03-10 11:37:10 +0100 | [diff] [blame] | 1220 | mpr2_config: unconfig |
Wolfgang Denk | 3ab4827 | 2008-07-07 00:45:03 +0200 | [diff] [blame] | 1221 | @mkdir -p $(obj)include |
| 1222 | @echo "#define CONFIG_MPR2 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1223 | @$(MKCONFIG) -a $@ sh sh3 mpr2 |
Mark Jonas | 3313e0e | 2008-03-10 11:37:10 +0100 | [diff] [blame] | 1224 | |
Yoshihiro Shimoda | b2b5e2b | 2007-12-03 22:58:50 +0900 | [diff] [blame] | 1225 | ms7720se_config: unconfig |
Wolfgang Denk | 3ab4827 | 2008-07-07 00:45:03 +0200 | [diff] [blame] | 1226 | @mkdir -p $(obj)include |
| 1227 | @echo "#define CONFIG_MS7720SE 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1228 | @$(MKCONFIG) -a $@ sh sh3 ms7720se |
Yoshihiro Shimoda | b2b5e2b | 2007-12-03 22:58:50 +0900 | [diff] [blame] | 1229 | |
| 1230 | ######################################################################### |
Nobuhiro Iwamatsu | 69df3c4 | 2007-05-13 21:01:03 +0900 | [diff] [blame] | 1231 | ## sh4 (Renesas SuperH) |
| 1232 | ######################################################################### |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1233 | |
| 1234 | MigoR_config : unconfig |
| 1235 | @mkdir -p $(obj)include |
| 1236 | @echo "#define CONFIG_MIGO_R 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1237 | @$(MKCONFIG) -a $@ sh sh4 MigoR renesas |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1238 | |
Nobuhiro Iwamatsu | 69df3c4 | 2007-05-13 21:01:03 +0900 | [diff] [blame] | 1239 | ms7750se_config: unconfig |
Wolfgang Denk | 3ab4827 | 2008-07-07 00:45:03 +0200 | [diff] [blame] | 1240 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 1241 | @echo "#define CONFIG_MS7750SE 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1242 | @$(MKCONFIG) -a $@ sh sh4 ms7750se |
Nobuhiro Iwamatsu | 69df3c4 | 2007-05-13 21:01:03 +0900 | [diff] [blame] | 1243 | |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1244 | ms7722se_config : unconfig |
Wolfgang Denk | 3ab4827 | 2008-07-07 00:45:03 +0200 | [diff] [blame] | 1245 | @mkdir -p $(obj)include |
Wolfgang Denk | 210ed20 | 2008-03-09 00:06:09 +0100 | [diff] [blame] | 1246 | @echo "#define CONFIG_MS7722SE 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1247 | @$(MKCONFIG) -a $@ sh sh4 ms7722se |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 1248 | |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1249 | r2dplus_config : unconfig |
Wolfgang Denk | 3ab4827 | 2008-07-07 00:45:03 +0200 | [diff] [blame] | 1250 | @mkdir -p $(obj)include |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 1251 | @echo "#define CONFIG_R2DPLUS 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1252 | @$(MKCONFIG) -a $@ sh sh4 r2dplus renesas |
goda.yusuke | c2042f5 | 2008-01-25 20:46:36 +0900 | [diff] [blame] | 1253 | |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 1254 | r7780mp_config: unconfig |
Wolfgang Denk | 3ab4827 | 2008-07-07 00:45:03 +0200 | [diff] [blame] | 1255 | @mkdir -p $(obj)include |
| 1256 | @echo "#define CONFIG_R7780MP 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1257 | @$(MKCONFIG) -a $@ sh sh4 r7780mp renesas |
Yusuke Goda | c133c1f | 2008-03-11 12:55:12 +0900 | [diff] [blame] | 1258 | |
Nobuhiro Iwamatsu | 7faddae | 2008-06-09 13:39:57 +0900 | [diff] [blame] | 1259 | sh7763rdp_config : unconfig |
Wolfgang Denk | 3ab4827 | 2008-07-07 00:45:03 +0200 | [diff] [blame] | 1260 | @mkdir -p $(obj)include |
| 1261 | @echo "#define CONFIG_SH7763RDP 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1262 | @$(MKCONFIG) -a $@ sh sh4 sh7763rdp renesas |
Nobuhiro Iwamatsu | 7faddae | 2008-06-09 13:39:57 +0900 | [diff] [blame] | 1263 | |
Yoshihiro Shimoda | ada9318 | 2009-03-03 15:11:17 +0900 | [diff] [blame] | 1264 | sh7785lcr_32bit_config \ |
Nobuhiro Iwamatsu | 0d53a47 | 2008-08-31 22:45:08 +0900 | [diff] [blame] | 1265 | sh7785lcr_config : unconfig |
Jean-Christophe PLAGNIOL-VILLARD | ce29817 | 2009-06-04 12:06:43 +0200 | [diff] [blame] | 1266 | @mkdir -p $(obj)include |
| 1267 | @mkdir -p $(obj)board/renesas/sh7785lcr |
| 1268 | @echo "#define CONFIG_SH7785LCR 1" > $(obj)include/config.h |
Yoshihiro Shimoda | ada9318 | 2009-03-03 15:11:17 +0900 | [diff] [blame] | 1269 | @if [ "$(findstring 32bit, $@)" ] ; then \ |
| 1270 | echo "#define CONFIG_SH_32BIT 1" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 1271 | echo "CONFIG_SYS_TEXT_BASE = 0x8ff80000" > \ |
Yoshihiro Shimoda | ada9318 | 2009-03-03 15:11:17 +0900 | [diff] [blame] | 1272 | $(obj)board/renesas/sh7785lcr/config.tmp ; \ |
Yoshihiro Shimoda | ada9318 | 2009-03-03 15:11:17 +0900 | [diff] [blame] | 1273 | fi |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1274 | @$(MKCONFIG) -n $@ -a sh7785lcr sh sh4 sh7785lcr renesas |
Nobuhiro Iwamatsu | 0d53a47 | 2008-08-31 22:45:08 +0900 | [diff] [blame] | 1275 | |
Nobuhiro Iwamatsu | 6f0da49 | 2008-08-22 17:39:09 +0900 | [diff] [blame] | 1276 | ap325rxa_config : unconfig |
| 1277 | @mkdir -p $(obj)include |
| 1278 | @echo "#define CONFIG_AP325RXA 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1279 | @$(MKCONFIG) -a $@ sh sh4 ap325rxa renesas |
Nobuhiro Iwamatsu | 6f0da49 | 2008-08-22 17:39:09 +0900 | [diff] [blame] | 1280 | |
Nobuhiro Iwamatsu | 74d9c16 | 2009-06-25 16:31:26 +0900 | [diff] [blame] | 1281 | espt_config : unconfig |
| 1282 | @mkdir -p $(obj)include |
| 1283 | @echo "#define CONFIG_ESPT 1" > $(obj)include/config.h |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 1284 | @$(MKCONFIG) -a $@ sh sh4 espt |
Nobuhiro Iwamatsu | 74d9c16 | 2009-06-25 16:31:26 +0900 | [diff] [blame] | 1285 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1286 | ######################################################################### |
| 1287 | ######################################################################### |
wdenk | 85ec0bc | 2003-03-31 16:34:49 +0000 | [diff] [blame] | 1288 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 1289 | clean: |
Peter Tyser | 1bc1538 | 2009-07-10 11:03:19 -0500 | [diff] [blame] | 1290 | @rm -f $(obj)examples/standalone/82559_eeprom \ |
Wolfgang Denk | d640ac5 | 2009-09-07 23:52:31 +0200 | [diff] [blame] | 1291 | $(obj)examples/standalone/atmel_df_pow2 \ |
Peter Tyser | 1bc1538 | 2009-07-10 11:03:19 -0500 | [diff] [blame] | 1292 | $(obj)examples/standalone/eepro100_eeprom \ |
| 1293 | $(obj)examples/standalone/hello_world \ |
| 1294 | $(obj)examples/standalone/interrupt \ |
| 1295 | $(obj)examples/standalone/mem_to_mem_idma2intr \ |
| 1296 | $(obj)examples/standalone/sched \ |
| 1297 | $(obj)examples/standalone/smc91111_eeprom \ |
| 1298 | $(obj)examples/standalone/test_burst \ |
| 1299 | $(obj)examples/standalone/timer |
Peter Tyser | d4abc75 | 2009-07-20 19:02:21 -0500 | [diff] [blame] | 1300 | @rm -f $(obj)examples/api/demo{,.bin} |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1301 | @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \ |
| 1302 | $(obj)tools/env/{fw_printenv,fw_setenv} \ |
| 1303 | $(obj)tools/envcrc \ |
| 1304 | $(obj)tools/gdb/{astest,gdbcont,gdbsend} \ |
| 1305 | $(obj)tools/gen_eth_addr $(obj)tools/img2srec \ |
| 1306 | $(obj)tools/mkimage $(obj)tools/mpc86x_clk \ |
| 1307 | $(obj)tools/ncb $(obj)tools/ubsha1 |
| 1308 | @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \ |
Wolfgang Denk | 74c7a95 | 2010-10-16 18:24:16 +0200 | [diff] [blame] | 1309 | $(obj)board/matrix_vision/*/bootscript.img \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1310 | $(obj)board/netstar/{eeprom,crcek,crcit,*.srec,*.bin} \ |
| 1311 | $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom \ |
Wolfgang Denk | 1dcb50a | 2009-02-22 01:17:47 +0100 | [diff] [blame] | 1312 | $(obj)board/armltd/{integratorap,integratorcp}/u-boot.lds \ |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 1313 | $(obj)u-boot.lds \ |
Peter Tyser | c6fb83d | 2010-04-12 22:28:13 -0500 | [diff] [blame] | 1314 | $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] |
Wolfgang Denk | dc7746d | 2008-04-20 15:39:38 -0700 | [diff] [blame] | 1315 | @rm -f $(obj)include/bmp_logo.h |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 1316 | @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,System.map} |
Kyungmin Park | ca6189d | 2009-09-22 09:05:00 +0900 | [diff] [blame] | 1317 | @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map} |
| 1318 | @rm -f $(ONENAND_BIN) |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 1319 | @rm -f $(obj)onenand_ipl/u-boot.lds |
Peter Tyser | d4abc75 | 2009-07-20 19:02:21 -0500 | [diff] [blame] | 1320 | @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE) |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1321 | @find $(OBJTREE) -type f \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1322 | \( -name 'core' -o -name '*.bak' -o -name '*~' \ |
Peter Tyser | 2b48f7d | 2009-03-13 18:54:26 -0500 | [diff] [blame] | 1323 | -o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1324 | | xargs rm -f |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1325 | |
| 1326 | clobber: clean |
Mike Frysinger | 727ebd9 | 2010-08-11 18:52:36 -0400 | [diff] [blame] | 1327 | @find $(OBJTREE) -type f \( -name '*.depend' \ |
wdenk | 4c0d4c3 | 2004-06-09 17:34:58 +0000 | [diff] [blame] | 1328 | -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \ |
| 1329 | -print0 \ |
| 1330 | | xargs -0 rm -f |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 1331 | @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \ |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 1332 | $(obj)cscope.* $(obj)*.*~ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1333 | @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL) |
Prafulla Wadaskar | aa0c7a8 | 2009-09-07 15:05:02 +0530 | [diff] [blame] | 1334 | @rm -f $(obj)u-boot.kwb |
Stefano Babic | c5fb70c | 2010-02-05 15:13:58 +0100 | [diff] [blame] | 1335 | @rm -f $(obj)u-boot.imx |
Peter Tyser | fb8b33c | 2009-03-13 18:54:47 -0500 | [diff] [blame] | 1336 | @rm -f $(obj)tools/{env/crc32.c,inca-swap-bytes} |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 1337 | @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1338 | @rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm |
Jean-Christophe PLAGNIOL-VILLARD | a958b66 | 2008-08-16 18:54:27 +0200 | [diff] [blame] | 1339 | @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f |
| 1340 | @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1341 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1342 | ifeq ($(OBJTREE),$(SRCTREE)) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1343 | mrproper \ |
| 1344 | distclean: clobber unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1345 | else |
| 1346 | mrproper \ |
| 1347 | distclean: clobber unconfig |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1348 | rm -rf $(obj)* |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1349 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1350 | |
| 1351 | backup: |
| 1352 | F=`basename $(TOPDIR)` ; cd .. ; \ |
Ilya Yanok | d6b9371 | 2010-06-21 18:13:21 +0400 | [diff] [blame] | 1353 | gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1354 | |
| 1355 | ######################################################################### |