wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1 | # |
Wolfgang Denk | b1af6f5 | 2011-06-27 22:22:42 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2011 |
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 | 42d44f6 | 2011-02-02 22:37:32 +0100 | [diff] [blame] | 24 | VERSION = 2011 |
Wolfgang Denk | 7a82c20 | 2011-05-19 22:23:50 +0200 | [diff] [blame] | 25 | PATCHLEVEL = 06 |
Wolfgang Denk | 8b9e478 | 2008-09-09 23:55:18 +0200 | [diff] [blame] | 26 | SUBLEVEL = |
Wolfgang Denk | b1af6f5 | 2011-06-27 22:22:42 +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 | \ |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 37 | sed -e s/i.86/x86/ \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 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)) |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 107 | SPLTREE := $(OBJTREE)/spl |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 108 | SRCTREE := $(CURDIR) |
| 109 | TOPDIR := $(SRCTREE) |
| 110 | LNDIR := $(OBJTREE) |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 111 | export TOPDIR SRCTREE OBJTREE SPLTREE |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 112 | |
| 113 | MKCONFIG := $(SRCTREE)/mkconfig |
| 114 | export MKCONFIG |
| 115 | |
| 116 | ifneq ($(OBJTREE),$(SRCTREE)) |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 117 | REMOTE_BUILD := 1 |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 118 | export REMOTE_BUILD |
| 119 | endif |
| 120 | |
| 121 | # $(obj) and (src) are defined in config.mk but here in main Makefile |
| 122 | # we also need them before config.mk is included which is the case for |
| 123 | # some targets like unconfig, clean, clobber, distclean, etc. |
| 124 | ifneq ($(OBJTREE),$(SRCTREE)) |
| 125 | obj := $(OBJTREE)/ |
| 126 | src := $(SRCTREE)/ |
| 127 | else |
| 128 | obj := |
| 129 | src := |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 130 | endif |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 131 | export obj src |
| 132 | |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 133 | # Make sure CDPATH settings don't interfere |
| 134 | unexport CDPATH |
| 135 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 136 | ######################################################################### |
| 137 | |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 138 | # The "tools" are needed early, so put this first |
| 139 | # Don't include stuff already done in $(LIBS) |
| 140 | SUBDIRS = tools \ |
Peter Tyser | 1bc1538 | 2009-07-10 11:03:19 -0500 | [diff] [blame] | 141 | examples/standalone \ |
Peter Tyser | d4abc75 | 2009-07-20 19:02:21 -0500 | [diff] [blame] | 142 | examples/api |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 143 | |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 144 | .PHONY : $(SUBDIRS) $(VERSION_FILE) |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 145 | |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 146 | ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 147 | |
Mike Frysinger | 2632c00 | 2009-07-21 22:59:36 -0400 | [diff] [blame] | 148 | # Include autoconf.mk before config.mk so that the config options are available |
| 149 | # to all top level build files. We need the dummy all: target to prevent the |
| 150 | # dependency target in autoconf.mk.dep from being the default. |
| 151 | all: |
| 152 | sinclude $(obj)include/autoconf.mk.dep |
| 153 | sinclude $(obj)include/autoconf.mk |
| 154 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 155 | # load ARCH, BOARD, and CPU configuration |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 156 | include $(obj)include/config.mk |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 157 | export ARCH CPU BOARD VENDOR SOC |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 158 | |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 159 | # set default to nothing for native builds |
Wolfgang Denk | a5284ef | 2007-03-06 18:01:47 +0100 | [diff] [blame] | 160 | ifeq ($(HOSTARCH),$(ARCH)) |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 161 | CROSS_COMPILE ?= |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 162 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 163 | |
Wolfgang Denk | 92b197f | 2006-03-12 01:37:50 +0100 | [diff] [blame] | 164 | # load other configuration |
| 165 | include $(TOPDIR)/config.mk |
| 166 | |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 167 | # If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use |
| 168 | # that (or fail if absent). Otherwise, search for a linker script in a |
| 169 | # standard location. |
| 170 | |
| 171 | ifndef LDSCRIPT |
| 172 | #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug |
| 173 | ifdef CONFIG_SYS_LDSCRIPT |
| 174 | # need to strip off double quotes |
| 175 | LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT)) |
| 176 | endif |
| 177 | endif |
| 178 | |
| 179 | ifndef LDSCRIPT |
| 180 | ifeq ($(CONFIG_NAND_U_BOOT),y) |
| 181 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds |
| 182 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 183 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds |
| 184 | endif |
| 185 | endif |
| 186 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 187 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds |
| 188 | endif |
| 189 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 190 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds |
| 191 | endif |
| 192 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 193 | $(error could not find linker script) |
| 194 | endif |
| 195 | endif |
| 196 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 197 | ######################################################################### |
| 198 | # U-Boot objects....order is important (i.e. start must be first) |
| 199 | |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 200 | OBJS = $(CPUDIR)/start.o |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 201 | ifeq ($(CPU),x86) |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 202 | OBJS += $(CPUDIR)/start16.o |
| 203 | OBJS += $(CPUDIR)/resetvec.o |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 204 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 205 | ifeq ($(CPU),ppc4xx) |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 206 | OBJS += $(CPUDIR)/resetvec.o |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 207 | endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 208 | ifeq ($(CPU),mpc85xx) |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 209 | OBJS += $(CPUDIR)/resetvec.o |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 210 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 211 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 212 | OBJS := $(addprefix $(obj),$(OBJS)) |
| 213 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 214 | LIBS = lib/libgeneric.o |
| 215 | LIBS += lib/lzma/liblzma.o |
| 216 | LIBS += lib/lzo/liblzo.o |
Mike Frysinger | e89516f | 2011-04-08 12:23:30 +0000 | [diff] [blame] | 217 | LIBS += lib/zlib/libz.o |
Kim Phillips | 7608d75 | 2007-08-21 17:00:17 -0500 | [diff] [blame] | 218 | LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \ |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 219 | "board/$(VENDOR)/common/lib$(VENDOR).o"; fi) |
| 220 | LIBS += $(CPUDIR)/lib$(CPU).o |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 221 | ifdef SOC |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 222 | LIBS += $(CPUDIR)/$(SOC)/lib$(SOC).o |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 223 | endif |
Stefan Roese | 323bfa8 | 2007-04-23 12:00:22 +0200 | [diff] [blame] | 224 | ifeq ($(CPU),ixp) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 225 | LIBS += arch/arm/cpu/ixp/npe/libnpe.o |
Stefan Roese | 323bfa8 | 2007-04-23 12:00:22 +0200 | [diff] [blame] | 226 | endif |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 227 | LIBS += arch/$(ARCH)/lib/lib$(ARCH).o |
| 228 | LIBS += fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o fs/jffs2/libjffs2.o \ |
| 229 | fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o fs/yaffs2/libyaffs2.o \ |
| 230 | fs/ubifs/libubifs.o |
| 231 | LIBS += net/libnet.o |
| 232 | LIBS += disk/libdisk.o |
| 233 | LIBS += drivers/bios_emulator/libatibiosemu.o |
| 234 | LIBS += drivers/block/libblock.o |
| 235 | LIBS += drivers/dma/libdma.o |
| 236 | LIBS += drivers/fpga/libfpga.o |
| 237 | LIBS += drivers/gpio/libgpio.o |
| 238 | LIBS += drivers/hwmon/libhwmon.o |
| 239 | LIBS += drivers/i2c/libi2c.o |
| 240 | LIBS += drivers/input/libinput.o |
| 241 | LIBS += drivers/misc/libmisc.o |
| 242 | LIBS += drivers/mmc/libmmc.o |
| 243 | LIBS += drivers/mtd/libmtd.o |
| 244 | LIBS += drivers/mtd/nand/libnand.o |
| 245 | LIBS += drivers/mtd/onenand/libonenand.o |
| 246 | LIBS += drivers/mtd/ubi/libubi.o |
| 247 | LIBS += drivers/mtd/spi/libspi_flash.o |
| 248 | LIBS += drivers/net/libnet.o |
| 249 | LIBS += drivers/net/phy/libphy.o |
| 250 | LIBS += drivers/pci/libpci.o |
| 251 | LIBS += drivers/pcmcia/libpcmcia.o |
| 252 | LIBS += drivers/power/libpower.o |
| 253 | LIBS += drivers/spi/libspi.o |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 254 | ifeq ($(CPU),mpc83xx) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 255 | LIBS += drivers/qe/libqe.o |
| 256 | LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 257 | endif |
Andy Fleming | da9d461 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 258 | ifeq ($(CPU),mpc85xx) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 259 | LIBS += drivers/qe/libqe.o |
| 260 | LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o |
| 261 | LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 262 | endif |
| 263 | ifeq ($(CPU),mpc86xx) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 264 | LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o |
| 265 | LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o |
Andy Fleming | da9d461 | 2007-08-14 00:14:25 -0500 | [diff] [blame] | 266 | endif |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 267 | LIBS += drivers/rtc/librtc.o |
| 268 | LIBS += drivers/serial/libserial.o |
| 269 | LIBS += drivers/twserial/libtws.o |
Mike Frysinger | 181f565 | 2011-06-24 21:12:36 -0400 | [diff] [blame] | 270 | LIBS += drivers/usb/eth/libusb_eth.o |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 271 | LIBS += drivers/usb/gadget/libusb_gadget.o |
| 272 | LIBS += drivers/usb/host/libusb_host.o |
| 273 | LIBS += drivers/usb/musb/libusb_musb.o |
| 274 | LIBS += drivers/usb/phy/libusb_phy.o |
| 275 | LIBS += drivers/video/libvideo.o |
| 276 | LIBS += drivers/watchdog/libwatchdog.o |
| 277 | LIBS += common/libcommon.o |
| 278 | LIBS += lib/libfdt/libfdt.o |
| 279 | LIBS += api/libapi.o |
| 280 | LIBS += post/libpost.o |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 281 | |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 282 | ifeq ($(SOC),omap3) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 283 | LIBS += $(CPUDIR)/omap-common/libomap-common.o |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 284 | endif |
| 285 | ifeq ($(SOC),omap4) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 286 | LIBS += $(CPUDIR)/omap-common/libomap-common.o |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 287 | endif |
| 288 | |
Minkyu Kang | 852bd07 | 2010-08-19 13:48:11 +0900 | [diff] [blame] | 289 | ifeq ($(SOC),s5pc1xx) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 290 | LIBS += $(CPUDIR)/s5p-common/libs5p-common.o |
Minkyu Kang | 852bd07 | 2010-08-19 13:48:11 +0900 | [diff] [blame] | 291 | endif |
| 292 | ifeq ($(SOC),s5pc2xx) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 293 | LIBS += $(CPUDIR)/s5p-common/libs5p-common.o |
Minkyu Kang | 852bd07 | 2010-08-19 13:48:11 +0900 | [diff] [blame] | 294 | endif |
| 295 | |
Wolfgang Denk | 566d49a | 2010-11-22 23:36:42 +0100 | [diff] [blame] | 296 | LIBS := $(addprefix $(obj),$(sort $(LIBS))) |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 297 | .PHONY : $(LIBS) $(TIMESTAMP_FILE) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 298 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 299 | LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 300 | LIBBOARD := $(addprefix $(obj),$(LIBBOARD)) |
| 301 | |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 302 | # Add GCC lib |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 303 | ifdef USE_PRIVATE_LIBGCC |
| 304 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") |
Matthias Weisser | 635d1b3 | 2010-11-18 09:35:09 +0100 | [diff] [blame] | 305 | PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 306 | else |
| 307 | PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc |
| 308 | endif |
| 309 | else |
| 310 | PLATFORM_LIBGCC = -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc |
| 311 | endif |
| 312 | PLATFORM_LIBS += $(PLATFORM_LIBGCC) |
| 313 | export PLATFORM_LIBS |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 314 | |
Mike Frysinger | 6ac9f47 | 2009-08-23 02:47:59 -0400 | [diff] [blame] | 315 | # Special flags for CPP when processing the linker script. |
| 316 | # Pass the version down so we can handle backwards compatibility |
| 317 | # on the fly. |
| 318 | LDPPFLAGS += \ |
| 319 | -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ |
| 320 | $(shell $(LD) --version | \ |
| 321 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') |
| 322 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 323 | __OBJS := $(subst $(obj),,$(OBJS)) |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 324 | __LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 325 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 326 | ######################################################################### |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 327 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 328 | |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 329 | ifneq ($(CONFIG_BOARD_SIZE_LIMIT),) |
| 330 | BOARD_SIZE_CHECK = \ |
| 331 | @actual=`wc -c $@ | awk '{print $$1}'`; \ |
| 332 | limit=$(CONFIG_BOARD_SIZE_LIMIT); \ |
| 333 | if test $$actual -gt $$limit; then \ |
| 334 | echo "$@ exceeds file size limit:"; \ |
| 335 | echo " limit: $$limit bytes"; \ |
| 336 | echo " actual: $$actual bytes"; \ |
| 337 | echo " excess: $$((actual - limit)) bytes"; \ |
| 338 | exit 1; \ |
| 339 | fi |
| 340 | else |
| 341 | BOARD_SIZE_CHECK = |
| 342 | endif |
| 343 | |
Mike Frysinger | 3e88337 | 2009-06-15 00:25:19 -0400 | [diff] [blame] | 344 | # Always append ALL so that arch config.mk's can add custom ones |
Daniel Schwierzeck | 4e0fbb9 | 2011-07-13 05:11:01 +0000 | [diff] [blame] | 345 | ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 346 | |
Daniel Schwierzeck | 4e0fbb9 | 2011-07-13 05:11:01 +0000 | [diff] [blame] | 347 | ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin |
| 348 | ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 349 | ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin |
Daniel Schwierzeck | 4e0fbb9 | 2011-07-13 05:11:01 +0000 | [diff] [blame] | 350 | ALL-$(CONFIG_MMC_U_BOOT) += $(obj)mmc_spl/u-boot-mmc-spl.bin |
Daniel Schwierzeck | 5df2ee2 | 2011-07-13 05:11:04 +0000 | [diff] [blame] | 351 | ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 352 | |
Daniel Schwierzeck | 4e0fbb9 | 2011-07-13 05:11:01 +0000 | [diff] [blame] | 353 | all: $(ALL-y) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 354 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 355 | $(obj)u-boot.hex: $(obj)u-boot |
wdenk | 6310eb9 | 2005-01-09 21:28:15 +0000 | [diff] [blame] | 356 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ |
| 357 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 358 | $(obj)u-boot.srec: $(obj)u-boot |
Ricardo Ribalda Delgado | 0817d68 | 2008-09-07 17:10:27 -0400 | [diff] [blame] | 359 | $(OBJCOPY) -O srec $< $@ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 360 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 361 | $(obj)u-boot.bin: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 362 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 363 | $(BOARD_SIZE_CHECK) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 364 | |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 365 | $(obj)u-boot.ldr: $(obj)u-boot |
Mike Frysinger | 76d8218 | 2009-07-21 22:17:36 -0400 | [diff] [blame] | 366 | $(CREATE_LDR_ENV) |
Mike Frysinger | 68e5632 | 2008-08-07 18:56:56 -0400 | [diff] [blame] | 367 | $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS) |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 368 | $(BOARD_SIZE_CHECK) |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 369 | |
| 370 | $(obj)u-boot.ldr.hex: $(obj)u-boot.ldr |
| 371 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary |
| 372 | |
| 373 | $(obj)u-boot.ldr.srec: $(obj)u-boot.ldr |
| 374 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary |
| 375 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 376 | $(obj)u-boot.img: $(obj)u-boot.bin |
Wolfgang Denk | a2a0a71 | 2010-05-15 21:23:51 +0200 | [diff] [blame] | 377 | $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \ |
aneeshv | 3857f8f | 2011-07-16 02:53:20 +0000 | [diff] [blame] | 378 | -O u-boot -a $(CONFIG_SYS_TEXT_BASE) -e 0 \ |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 379 | -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 380 | sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ |
| 381 | -d $< $@ |
| 382 | |
Stefano Babic | 8edcde5 | 2010-01-20 18:19:10 +0100 | [diff] [blame] | 383 | $(obj)u-boot.imx: $(obj)u-boot.bin |
Stefano Babic | 45d7d72 | 2011-01-24 00:14:26 +0000 | [diff] [blame] | 384 | $(obj)tools/mkimage -n $(CONFIG_IMX_CONFIG) -T imximage \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 385 | -e $(CONFIG_SYS_TEXT_BASE) -d $< $@ |
Stefano Babic | 8edcde5 | 2010-01-20 18:19:10 +0100 | [diff] [blame] | 386 | |
Prafulla Wadaskar | aa0c7a8 | 2009-09-07 15:05:02 +0530 | [diff] [blame] | 387 | $(obj)u-boot.kwb: $(obj)u-boot.bin |
Prafulla Wadaskar | 31d80c7 | 2010-10-27 17:46:06 +0530 | [diff] [blame] | 388 | $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \ |
Eric Cooper | 2ea88b0 | 2010-10-19 13:31:11 -0400 | [diff] [blame] | 389 | -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@ |
Prafulla Wadaskar | aa0c7a8 | 2009-09-07 15:05:02 +0530 | [diff] [blame] | 390 | |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 391 | $(obj)u-boot.sha1: $(obj)u-boot.bin |
Heiko Schocher | 0115953 | 2007-07-14 01:06:58 +0200 | [diff] [blame] | 392 | $(obj)tools/ubsha1 $(obj)u-boot.bin |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 393 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 394 | $(obj)u-boot.dis: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 395 | $(OBJDUMP) -d $< > $@ |
| 396 | |
Heiko Schocher | 7816f2c | 2011-07-16 00:06:42 +0000 | [diff] [blame] | 397 | $(obj)u-boot.ubl: $(obj)u-boot-nand.bin |
| 398 | $(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \ |
| 399 | -e $(CONFIG_SYS_TEXT_BASE) -d $< $@ |
| 400 | |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 401 | GEN_UBOOT = \ |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 402 | UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \ |
| 403 | sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\ |
Nobuhiro Iwamatsu | 8aba9dc | 2011-01-06 10:23:54 +0900 | [diff] [blame] | 404 | cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__OBJS) \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 405 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
wdenk | b2184c3 | 2002-11-19 23:01:07 +0000 | [diff] [blame] | 406 | -Map u-boot.map -o u-boot |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 407 | $(obj)u-boot: depend \ |
| 408 | $(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 409 | $(GEN_UBOOT) |
| 410 | ifeq ($(CONFIG_KALLSYMS),y) |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 411 | smap=`$(call SYSTEM_MAP,u-boot) | \ |
| 412 | awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \ |
| 413 | $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \ |
| 414 | -c common/system_map.c -o $(obj)common/system_map.o |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 415 | $(GEN_UBOOT) $(obj)common/system_map.o |
| 416 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 417 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 418 | $(OBJS): depend |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 419 | $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 420 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 421 | $(LIBS): depend $(SUBDIRS) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 422 | $(MAKE) -C $(dir $(subst $(obj),,$@)) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 423 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 424 | $(LIBBOARD): depend $(LIBS) |
Wolfgang Denk | de109d9 | 2008-04-30 17:25:07 +0200 | [diff] [blame] | 425 | $(MAKE) -C $(dir $(subst $(obj),,$@)) |
| 426 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 427 | $(SUBDIRS): depend |
wdenk | b028f71 | 2003-12-07 21:39:28 +0000 | [diff] [blame] | 428 | $(MAKE) -C $@ all |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 429 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 430 | $(LDSCRIPT): depend |
Mike Frysinger | f65c981 | 2008-02-16 02:12:37 -0500 | [diff] [blame] | 431 | $(MAKE) -C $(dir $@) $(notdir $@) |
| 432 | |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 433 | $(obj)u-boot.lds: $(LDSCRIPT) |
| 434 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@ |
| 435 | |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 436 | nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 437 | $(MAKE) -C nand_spl/board/$(BOARDDIR) all |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 438 | |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 439 | $(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 440 | 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] | 441 | |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 442 | onenand_ipl: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 443 | $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 444 | |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 445 | $(obj)u-boot-onenand.bin: onenand_ipl $(obj)u-boot.bin |
Kyungmin Park | ca6189d | 2009-09-22 09:05:00 +0900 | [diff] [blame] | 446 | cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 447 | |
Chander Kashyap | 0d3c62e | 2011-05-24 20:02:57 +0000 | [diff] [blame] | 448 | mmc_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend |
| 449 | $(MAKE) -C mmc_spl/board/$(BOARDDIR) all |
| 450 | |
| 451 | $(obj)mmc_spl/u-boot-mmc-spl.bin: mmc_spl |
| 452 | |
Daniel Schwierzeck | 5df2ee2 | 2011-07-13 05:11:04 +0000 | [diff] [blame] | 453 | $(obj)spl/u-boot-spl.bin: depend |
| 454 | $(MAKE) -C spl all |
| 455 | |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 456 | $(TIMESTAMP_FILE): |
Ilya Yanok | d6b9371 | 2010-06-21 18:13:21 +0400 | [diff] [blame] | 457 | @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@ |
| 458 | @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@ |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 459 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 460 | updater: |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 461 | $(MAKE) -C tools/updater all |
dzu | 8f713fd | 2003-08-07 14:20:31 +0000 | [diff] [blame] | 462 | |
Daniel Hobi | 2a99879 | 2010-01-18 18:13:39 +0100 | [diff] [blame] | 463 | # Explicitly make _depend in subdirs containing multiple targets to prevent |
| 464 | # parallel sub-makes creating .depend files simultaneously. |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 465 | depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \ |
| 466 | $(obj)include/autoconf.mk \ |
| 467 | $(obj)include/generated/generic-asm-offsets.h |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 468 | for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \ |
Daniel Hobi | 2a99879 | 2010-01-18 18:13:39 +0100 | [diff] [blame] | 469 | $(MAKE) -C $$dir _depend ; done |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 470 | |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 471 | TAG_SUBDIRS = $(SUBDIRS) |
| 472 | TAG_SUBDIRS += $(dir $(__LIBS)) |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 473 | TAG_SUBDIRS += include |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 474 | |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 475 | FIND := find |
| 476 | FINDFLAGS := -L |
| 477 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 478 | tags ctags: |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 479 | ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 480 | -name '*.[chS]' -print` |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 481 | |
| 482 | etags: |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 483 | etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 484 | -name '*.[chS]' -print` |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 485 | cscope: |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 486 | $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \ |
| 487 | cscope.files |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 488 | cscope -b -q -k |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 489 | |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 490 | SYSTEM_MAP = \ |
| 491 | $(NM) $1 | \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 492 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 493 | LC_ALL=C sort |
| 494 | $(obj)System.map: $(obj)u-boot |
| 495 | @$(call SYSTEM_MAP,$<) > $(obj)System.map |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 496 | |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 497 | # |
| 498 | # Auto-generate the autoconf.mk file (which is included by all makefiles) |
| 499 | # |
| 500 | # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep. |
| 501 | # the dep file is only include in this top level makefile to determine when |
| 502 | # to regenerate the autoconf.mk file. |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 503 | $(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h |
| 504 | @$(XECHO) Generating $@ ; \ |
Mike Frysinger | 16fe777 | 2008-02-18 05:10:07 -0500 | [diff] [blame] | 505 | set -e ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 506 | : Generate the dependancies ; \ |
Mike Frysinger | 9aef738 | 2009-07-19 15:17:03 -0400 | [diff] [blame] | 507 | $(CC) -x c -DDO_DEPS_ONLY -M $(HOSTCFLAGS) $(CPPFLAGS) \ |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 508 | -MQ $(obj)include/autoconf.mk include/common.h > $@ |
| 509 | |
| 510 | $(obj)include/autoconf.mk: $(obj)include/config.h |
| 511 | @$(XECHO) Generating $@ ; \ |
| 512 | set -e ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 513 | : Extract the config macros ; \ |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 514 | $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \ |
Wolfgang Denk | 4a0f753 | 2008-12-16 14:41:02 +0100 | [diff] [blame] | 515 | sed -n -f tools/scripts/define2mk.sed > $@.tmp && \ |
| 516 | mv $@.tmp $@ |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 517 | |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 518 | $(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \ |
| 519 | $(obj)lib/asm-offsets.s |
| 520 | @$(XECHO) Generating $@ |
| 521 | tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@ |
| 522 | |
| 523 | $(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \ |
| 524 | $(src)lib/asm-offsets.c |
| 525 | @mkdir -p $(obj)lib |
| 526 | $(CC) -DDO_DEPS_ONLY \ |
| 527 | $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ |
| 528 | -o $@ $(src)lib/asm-offsets.c -c -S |
| 529 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 530 | ######################################################################### |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 531 | else # !config.mk |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 532 | all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \ |
| 533 | $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \ |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 534 | $(filter-out tools,$(SUBDIRS)) $(TIMESTAMP_FILE) \ |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 535 | updater depend dep tags ctags etags cscope $(obj)System.map: |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 536 | @echo "System not configured - see README" >&2 |
| 537 | @ exit 1 |
Mike Frysinger | c7c0d54 | 2010-01-21 04:03:22 -0500 | [diff] [blame] | 538 | |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 539 | tools: $(VERSION_FILE) |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 540 | $(MAKE) -C $@ all |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 541 | endif # config.mk |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 542 | |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 543 | $(VERSION_FILE): |
Mike Frysinger | 14ce91b | 2011-06-30 16:56:20 +0000 | [diff] [blame] | 544 | @mkdir -p $(dir $(VERSION_FILE)) |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 545 | @( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \ |
| 546 | printf '#define PLAIN_VERSION "%s%s"\n' \ |
| 547 | "$(U_BOOT_VERSION)" "$${localvers}" ; \ |
| 548 | printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \ |
| 549 | "$(U_BOOT_VERSION)" "$${localvers}" ; \ |
| 550 | ) > $@.tmp |
| 551 | @( printf '#define CC_VERSION_STRING "%s"\n' \ |
| 552 | '$(shell $(CC) --version | head -n 1)' )>> $@.tmp |
| 553 | @( printf '#define LD_VERSION_STRING "%s"\n' \ |
| 554 | '$(shell $(LD) -v | head -n 1)' )>> $@.tmp |
| 555 | @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ |
| 556 | |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 557 | easylogo env gdb: |
| 558 | $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION} |
| 559 | gdbtools: gdb |
| 560 | |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 561 | tools-all: easylogo env gdb $(VERSION_FILE) |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 562 | $(MAKE) -C tools HOST_TOOLS_ALL=y |
| 563 | |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 564 | .PHONY : CHANGELOG |
| 565 | CHANGELOG: |
Ben Warren | b985b5d | 2006-10-26 14:38:25 -0400 | [diff] [blame] | 566 | git log --no-merges U-Boot-1_1_5.. | \ |
| 567 | unexpand -a | sed -e 's/\s\s*$$//' > $@ |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 568 | |
Harald Welte | 0a823aa | 2008-07-09 22:30:30 +0800 | [diff] [blame] | 569 | include/license.h: tools/bin2header COPYING |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 570 | cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 571 | ######################################################################### |
| 572 | |
| 573 | unconfig: |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 574 | @rm -f $(obj)include/config.h $(obj)include/config.mk \ |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 575 | $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \ |
| 576 | $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 577 | |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 578 | %_config:: unconfig |
| 579 | @$(MKCONFIG) -A $(@:_config=) |
| 580 | |
Loïc Minier | d6a5e6d | 2011-01-19 13:16:30 +0100 | [diff] [blame] | 581 | sinclude $(obj).boards.depend |
| 582 | $(obj).boards.depend: boards.cfg |
Mike Frysinger | 727ebd9 | 2010-08-11 18:52:36 -0400 | [diff] [blame] | 583 | awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@ |
Mike Frysinger | 9f4a420 | 2009-10-01 12:11:54 -0400 | [diff] [blame] | 584 | |
Wolfgang Denk | 8c99463 | 2010-05-27 23:18:35 +0200 | [diff] [blame] | 585 | # |
| 586 | # Functions to generate common board directory names |
| 587 | # |
| 588 | lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/') |
| 589 | ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/') |
| 590 | |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 591 | ######################################################################### |
| 592 | ## Coldfire |
| 593 | ######################################################################### |
| 594 | |
Wolfgang Wegner | 9d79e57 | 2010-01-25 11:27:44 +0100 | [diff] [blame] | 595 | astro_mcf5373l_config \ |
| 596 | astro_mcf5373l_RAM_config : unconfig |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 597 | @$(MKCONFIG) -n $@ -t $@ astro_mcf5373l m68k mcf532x mcf5373l astro |
Wolfgang Wegner | 9d79e57 | 2010-01-25 11:27:44 +0100 | [diff] [blame] | 598 | |
TsiChung Liew | a21d0c2 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 599 | M52277EVB_config \ |
| 600 | M52277EVB_spansion_config \ |
| 601 | M52277EVB_stmicro_config : unconfig |
| 602 | @case "$@" in \ |
| 603 | M52277EVB_config) FLASH=SPANSION;; \ |
| 604 | M52277EVB_spansion_config) FLASH=SPANSION;; \ |
| 605 | M52277EVB_stmicro_config) FLASH=STMICRO;; \ |
| 606 | esac; \ |
| 607 | if [ "$${FLASH}" = "SPANSION" ] ; then \ |
| 608 | echo "#define CONFIG_SYS_SPANSION_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 609 | echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m52277evb/config.tmp ; \ |
TsiChung Liew | a21d0c2 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 610 | 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] | 611 | fi; \ |
| 612 | if [ "$${FLASH}" = "STMICRO" ] ; then \ |
| 613 | echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \ |
| 614 | echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 615 | echo "CONFIG_SYS_TEXT_BASE = 0x43E00000" > $(obj)board/freescale/m52277evb/config.tmp ; \ |
TsiChung Liew | a21d0c2 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 616 | 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] | 617 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 618 | @$(MKCONFIG) -n $@ -a M52277EVB m68k mcf5227x m52277evb freescale |
TsiChungLiew | 1552af7 | 2008-01-14 17:43:33 -0600 | [diff] [blame] | 619 | |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 620 | M5235EVB_config \ |
| 621 | M5235EVB_Flash16_config \ |
| 622 | M5235EVB_Flash32_config: unconfig |
| 623 | @case "$@" in \ |
| 624 | M5235EVB_config) FLASH=16;; \ |
| 625 | M5235EVB_Flash16_config) FLASH=16;; \ |
| 626 | M5235EVB_Flash32_config) FLASH=32;; \ |
| 627 | esac; \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 628 | if [ "$${FLASH}" != "16" ] ; then \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 629 | echo "#define NORFLASH_PS32BIT 1" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 630 | echo "CONFIG_SYS_TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 631 | cp $(obj)board/freescale/m5235evb/u-boot.32 $(obj)board/freescale/m5235evb/u-boot.lds ; \ |
| 632 | else \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 633 | echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \ |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 634 | cp $(obj)board/freescale/m5235evb/u-boot.16 $(obj)board/freescale/m5235evb/u-boot.lds ; \ |
| 635 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 636 | @$(MKCONFIG) -n $@ -a M5235EVB m68k mcf523x m5235evb freescale |
TsiChungLiew | 4a442d3 | 2007-08-16 19:23:50 -0500 | [diff] [blame] | 637 | |
Wolfgang Denk | 7481266 | 2005-12-12 16:06:05 +0100 | [diff] [blame] | 638 | cobra5272_config : unconfig |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 639 | @$(MKCONFIG) $@ m68k mcf52x2 cobra5272 |
Wolfgang Denk | 7481266 | 2005-12-12 16:06:05 +0100 | [diff] [blame] | 640 | |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 641 | EB+MCF-EV123_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 642 | @mkdir -p $(obj)include |
| 643 | @mkdir -p $(obj)board/BuS/EB+MCF-EV123 |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 644 | @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] | 645 | @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 646 | |
| 647 | EB+MCF-EV123_internal_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 648 | @mkdir -p $(obj)include |
| 649 | @mkdir -p $(obj)board/BuS/EB+MCF-EV123 |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 650 | @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] | 651 | @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS |
Wolfgang Denk | 4176c79 | 2006-06-10 19:27:47 +0200 | [diff] [blame] | 652 | |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 653 | M5329AFEE_config \ |
| 654 | M5329BFEE_config : unconfig |
| 655 | @case "$@" in \ |
| 656 | M5329AFEE_config) NAND=0;; \ |
| 657 | M5329BFEE_config) NAND=16;; \ |
| 658 | esac; \ |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 659 | if [ "$${NAND}" != "0" ] ; then \ |
TsiChungLiew | ab77bc5 | 2007-08-15 15:39:17 -0500 | [diff] [blame] | 660 | echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \ |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 661 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 662 | @$(MKCONFIG) -n $@ -a M5329EVB m68k mcf532x m5329evb freescale |
TsiChung Liew | 8e585f0 | 2007-06-18 13:50:13 -0500 | [diff] [blame] | 663 | |
TsiChungLiew | aa5f1f9 | 2008-01-14 17:23:08 -0600 | [diff] [blame] | 664 | M5373EVB_config : unconfig |
| 665 | @case "$@" in \ |
| 666 | M5373EVB_config) NAND=16;; \ |
| 667 | esac; \ |
TsiChungLiew | aa5f1f9 | 2008-01-14 17:23:08 -0600 | [diff] [blame] | 668 | if [ "$${NAND}" != "0" ] ; then \ |
| 669 | echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \ |
| 670 | fi |
| 671 | @$(MKCONFIG) -a M5373EVB m68k mcf532x m5373evb freescale |
| 672 | |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 673 | M54451EVB_config \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 674 | M54451EVB_stmicro_config : unconfig |
| 675 | @case "$@" in \ |
TsiChung Liew | 709b384 | 2009-06-11 15:39:57 +0000 | [diff] [blame] | 676 | M54451EVB_config) FLASH=NOR;; \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 677 | M54451EVB_stmicro_config) FLASH=STMICRO;; \ |
| 678 | esac; \ |
TsiChung Liew | 709b384 | 2009-06-11 15:39:57 +0000 | [diff] [blame] | 679 | if [ "$${FLASH}" = "NOR" ] ; then \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 680 | echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54451evb/config.tmp ; \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 681 | 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] | 682 | fi; \ |
| 683 | if [ "$${FLASH}" = "STMICRO" ] ; then \ |
| 684 | echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 685 | echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 686 | echo "CONFIG_SYS_TEXT_BASE = 0x47E00000" > $(obj)board/freescale/m54451evb/config.tmp ; \ |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 687 | 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] | 688 | fi; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 689 | echo "#define CONFIG_SYS_INPUT_CLKSRC 24000000" >> $(obj)include/config.h ; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 690 | @$(MKCONFIG) -n $@ -a M54451EVB m68k mcf5445x m54451evb freescale |
TsiChung Liew | 05316f8 | 2008-08-11 13:41:49 +0000 | [diff] [blame] | 691 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 692 | M54455EVB_config \ |
| 693 | M54455EVB_atmel_config \ |
| 694 | M54455EVB_intel_config \ |
| 695 | M54455EVB_a33_config \ |
| 696 | M54455EVB_a66_config \ |
| 697 | M54455EVB_i33_config \ |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 698 | M54455EVB_i66_config \ |
| 699 | M54455EVB_stm33_config : unconfig |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 700 | @case "$@" in \ |
| 701 | M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \ |
| 702 | M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \ |
| 703 | M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \ |
| 704 | M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \ |
| 705 | M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \ |
| 706 | M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \ |
| 707 | M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \ |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 708 | M54455EVB_stm33_config) FLASH=STMICRO; FREQ=33333333;; \ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 709 | esac; \ |
Wolfgang Denk | 1aaab9b | 2008-01-02 15:54:45 +0100 | [diff] [blame] | 710 | if [ "$${FLASH}" = "INTEL" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 711 | echo "#define CONFIG_SYS_INTEL_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 712 | echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \ |
TsiChungLiew | e8ee8f3 | 2007-10-25 17:16:22 -0500 | [diff] [blame] | 713 | 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] | 714 | fi; \ |
| 715 | if [ "$${FLASH}" = "ATMEL" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 716 | echo "#define CONFIG_SYS_ATMEL_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 717 | echo "CONFIG_SYS_TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \ |
TsiChungLiew | e8ee8f3 | 2007-10-25 17:16:22 -0500 | [diff] [blame] | 718 | 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] | 719 | fi; \ |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 720 | if [ "$${FLASH}" = "STMICRO" ] ; then \ |
| 721 | echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 722 | echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 723 | echo "CONFIG_SYS_TEXT_BASE = 0x4FE00000" > $(obj)board/freescale/m54455evb/config.tmp ; \ |
TsiChung Liew | 9f75155 | 2008-07-23 20:38:53 -0500 | [diff] [blame] | 724 | 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] | 725 | fi; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 726 | echo "#define CONFIG_SYS_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \ |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 727 | @$(MKCONFIG) -n $@ -a M54455EVB m68k mcf5445x m54455evb freescale |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 728 | |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 729 | M5475AFE_config \ |
| 730 | M5475BFE_config \ |
| 731 | M5475CFE_config \ |
| 732 | M5475DFE_config \ |
| 733 | M5475EFE_config \ |
| 734 | M5475FFE_config \ |
| 735 | M5475GFE_config : unconfig |
| 736 | @case "$@" in \ |
| 737 | M5475AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 738 | M5475BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 739 | M5475CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 740 | M5475DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \ |
| 741 | M5475EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 742 | M5475FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \ |
| 743 | M5475GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 744 | esac; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 745 | echo "#define CONFIG_SYS_BUSCLK 133333333" > $(obj)include/config.h ; \ |
| 746 | echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \ |
| 747 | echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 748 | if [ "$${RAM1}" != "0" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 749 | echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 750 | fi; \ |
| 751 | if [ "$${CODE}" != "0" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 752 | echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 753 | fi; \ |
| 754 | if [ "$${VID}" == "1" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 755 | echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 756 | fi; \ |
| 757 | if [ "$${USB}" == "1" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 758 | echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 759 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 760 | @$(MKCONFIG) -n $@ -a M5475EVB m68k mcf547x_8x m547xevb freescale |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 761 | |
| 762 | M5485AFE_config \ |
| 763 | M5485BFE_config \ |
| 764 | M5485CFE_config \ |
| 765 | M5485DFE_config \ |
| 766 | M5485EFE_config \ |
| 767 | M5485FFE_config \ |
| 768 | M5485GFE_config \ |
| 769 | M5485HFE_config : unconfig |
| 770 | @case "$@" in \ |
| 771 | M5485AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 772 | M5485BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \ |
| 773 | M5485CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 774 | M5485DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \ |
| 775 | M5485EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \ |
| 776 | M5485FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \ |
| 777 | 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] | 778 | 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] | 779 | esac; \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 780 | echo "#define CONFIG_SYS_BUSCLK 100000000" > $(obj)include/config.h ; \ |
| 781 | echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \ |
| 782 | echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 783 | if [ "$${RAM1}" != "0" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 784 | echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 785 | fi; \ |
| 786 | if [ "$${CODE}" != "0" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 787 | echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 788 | fi; \ |
| 789 | if [ "$${VID}" == "1" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 790 | echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 791 | fi; \ |
| 792 | if [ "$${USB}" == "1" ] ; then \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 793 | echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \ |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 794 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 795 | @$(MKCONFIG) -n $@ -a M5485EVB m68k mcf547x_8x m548xevb freescale |
TsiChungLiew | 57a1272 | 2008-01-15 14:15:46 -0600 | [diff] [blame] | 796 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 797 | #======================================================================== |
| 798 | # ARM |
| 799 | #======================================================================== |
Po-Yu Chuang | 43a5f0d | 2009-11-11 17:27:30 +0800 | [diff] [blame] | 800 | |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 801 | ######################################################################### |
Matthias Weisser | 34be106 | 2010-01-18 10:58:13 +0100 | [diff] [blame] | 802 | ## ARM926EJ-S Systems |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 803 | ######################################################################### |
| 804 | |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 805 | at91sam9261ek_nandflash_config \ |
| 806 | at91sam9261ek_dataflash_cs0_config \ |
| 807 | at91sam9261ek_dataflash_cs3_config \ |
Sedji Gaouaou | 5ccc2d9 | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 808 | at91sam9261ek_config \ |
| 809 | at91sam9g10ek_nandflash_config \ |
| 810 | at91sam9g10ek_dataflash_cs0_config \ |
| 811 | at91sam9g10ek_dataflash_cs3_config \ |
| 812 | at91sam9g10ek_config : unconfig |
Jean-Christophe PLAGNIOL-VILLARD | e12d9a8 | 2009-01-03 17:22:24 +0100 | [diff] [blame] | 813 | @mkdir -p $(obj)include |
Sedji Gaouaou | 5ccc2d9 | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 814 | @if [ "$(findstring 9g10,$@)" ] ; then \ |
| 815 | echo "#define CONFIG_AT91SAM9G10EK 1" >>$(obj)include/config.h ; \ |
Sedji Gaouaou | 5ccc2d9 | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 816 | else \ |
| 817 | echo "#define CONFIG_AT91SAM9261EK 1" >>$(obj)include/config.h ; \ |
| 818 | fi; |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 819 | @if [ "$(findstring _nandflash,$@)" ] ; then \ |
| 820 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ |
Sedji Gaouaou | 5ccc2d9 | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 821 | elif [ "$(findstring dataflash_cs0,$@)" ] ; then \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 822 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS3 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 823 | else \ |
| 824 | echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 825 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 826 | @$(MKCONFIG) -n $@ -a at91sam9261ek arm arm926ejs at91sam9261ek atmel at91 |
Jean-Christophe PLAGNIOL-VILLARD | 28962f5 | 2008-11-01 10:47:59 +0100 | [diff] [blame] | 827 | |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 828 | at91sam9263ek_norflash_config \ |
| 829 | at91sam9263ek_norflash_boot_config \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 830 | at91sam9263ek_nandflash_config \ |
| 831 | at91sam9263ek_dataflash_config \ |
| 832 | at91sam9263ek_dataflash_cs0_config \ |
Jean-Christophe PLAGNIOL-VILLARD | 28962f5 | 2008-11-01 10:47:59 +0100 | [diff] [blame] | 833 | at91sam9263ek_config : unconfig |
Jean-Christophe PLAGNIOL-VILLARD | e12d9a8 | 2009-01-03 17:22:24 +0100 | [diff] [blame] | 834 | @mkdir -p $(obj)include |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 835 | @if [ "$(findstring _nandflash,$@)" ] ; then \ |
| 836 | 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] | 837 | elif [ "$(findstring norflash,$@)" ] ; then \ |
| 838 | echo "#define CONFIG_SYS_USE_NORFLASH 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 839 | else \ |
| 840 | echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 841 | fi; |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 842 | @if [ "$(findstring norflash_boot,$@)" ] ; then \ |
| 843 | 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] | 844 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 845 | @$(MKCONFIG) -n $@ -a at91sam9263ek arm arm926ejs at91sam9263ek atmel at91 |
Jean-Christophe PLAGNIOL-VILLARD | 28962f5 | 2008-11-01 10:47:59 +0100 | [diff] [blame] | 846 | |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 847 | at91sam9rlek_nandflash_config \ |
| 848 | at91sam9rlek_dataflash_config \ |
| 849 | at91sam9rlek_dataflash_cs0_config \ |
Jean-Christophe PLAGNIOL-VILLARD | 28962f5 | 2008-11-01 10:47:59 +0100 | [diff] [blame] | 850 | at91sam9rlek_config : unconfig |
Jean-Christophe PLAGNIOL-VILLARD | e12d9a8 | 2009-01-03 17:22:24 +0100 | [diff] [blame] | 851 | @mkdir -p $(obj)include |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 852 | @if [ "$(findstring _nandflash,$@)" ] ; then \ |
| 853 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 854 | else \ |
| 855 | echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \ |
Nicolas Ferre | 89a7a87 | 2008-12-06 13:11:14 +0100 | [diff] [blame] | 856 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 857 | @$(MKCONFIG) -n $@ -a at91sam9rlek arm arm926ejs at91sam9rlek atmel at91 |
Jean-Christophe PLAGNIOL-VILLARD | 28962f5 | 2008-11-01 10:47:59 +0100 | [diff] [blame] | 858 | |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 859 | at91sam9m10g45ek_nandflash_config \ |
| 860 | at91sam9m10g45ek_dataflash_config \ |
| 861 | at91sam9m10g45ek_dataflash_cs0_config \ |
| 862 | at91sam9m10g45ek_config \ |
| 863 | at91sam9g45ekes_nandflash_config \ |
| 864 | at91sam9g45ekes_dataflash_config \ |
| 865 | at91sam9g45ekes_dataflash_cs0_config \ |
| 866 | at91sam9g45ekes_config : unconfig |
| 867 | @mkdir -p $(obj)include |
| 868 | @if [ "$(findstring 9m10,$@)" ] ; then \ |
| 869 | echo "#define CONFIG_AT91SAM9M10G45EK 1" >>$(obj)include/config.h ; \ |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 870 | else \ |
| 871 | echo "#define CONFIG_AT91SAM9G45EKES 1" >>$(obj)include/config.h ; \ |
| 872 | fi; |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 873 | @if [ "$(findstring _nandflash,$@)" ] ; then \ |
| 874 | echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \ |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 875 | else \ |
| 876 | echo "#define CONFIG_ATMEL_SPI 1" >>$(obj)include/config.h ; \ |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 877 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 878 | @$(MKCONFIG) -n $@ -a at91sam9m10g45ek arm arm926ejs at91sam9m10g45ek atmel at91 |
Sedji Gaouaou | 22ee647 | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 879 | |
Asen Dimov | b5d289f | 2010-04-20 22:49:04 +0300 | [diff] [blame] | 880 | pm9g45_config : unconfig |
| 881 | @mkdir -p $(obj)include |
| 882 | @$(MKCONFIG) -a pm9g45 arm arm926ejs pm9g45 ronetix at91 |
| 883 | |
Albin Tonnerre | 9453967 | 2009-08-24 18:03:26 +0200 | [diff] [blame] | 884 | SBC35_A9G20_NANDFLASH_config \ |
| 885 | SBC35_A9G20_EEPROM_config \ |
| 886 | SBC35_A9G20_config : unconfig |
| 887 | @mkdir -p $(obj)include |
| 888 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 889 | @$(MKCONFIG) -n $@ -a sbc35_a9g20 arm arm926ejs sbc35_a9g20 calao at91 |
Albin Tonnerre | 9453967 | 2009-08-24 18:03:26 +0200 | [diff] [blame] | 890 | |
Albin Tonnerre | 2dc851e | 2009-08-20 16:04:49 +0200 | [diff] [blame] | 891 | TNY_A9G20_NANDFLASH_config \ |
| 892 | TNY_A9G20_EEPROM_config \ |
| 893 | TNY_A9G20_config \ |
| 894 | TNY_A9260_NANDFLASH_config \ |
| 895 | TNY_A9260_EEPROM_config \ |
| 896 | TNY_A9260_config : unconfig |
| 897 | @mkdir -p $(obj)include |
| 898 | @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 899 | @$(MKCONFIG) -n $@ -a tny_a9260 arm arm926ejs tny_a9260 calao at91 |
Albin Tonnerre | 2dc851e | 2009-08-20 16:04:49 +0200 | [diff] [blame] | 900 | |
Wolfgang Denk | 74f4304 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 901 | ######################################################################## |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 902 | ## ARM Integrator boards - see doc/README-integrator for more info. |
| 903 | integratorap_config \ |
| 904 | ap_config \ |
| 905 | ap966_config \ |
| 906 | ap922_config \ |
| 907 | ap922_XA10_config \ |
| 908 | ap7_config \ |
Wolfgang Denk | dd520bf | 2006-11-30 18:02:20 +0100 | [diff] [blame] | 909 | ap720t_config \ |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 910 | ap920t_config \ |
| 911 | ap926ejs_config \ |
| 912 | ap946es_config: unconfig |
Jean-Christophe PLAGNIOL-VILLARD | 576afd4 | 2009-05-17 00:58:37 +0200 | [diff] [blame] | 913 | @board/armltd/integrator/split_by_variant.sh ap $@ |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 914 | |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 915 | integratorcp_config \ |
| 916 | cp_config \ |
| 917 | cp920t_config \ |
| 918 | cp926ejs_config \ |
| 919 | cp946es_config \ |
| 920 | cp1136_config \ |
| 921 | cp966_config \ |
| 922 | cp922_config \ |
| 923 | cp922_XA10_config \ |
| 924 | cp1026_config: unconfig |
Jean-Christophe PLAGNIOL-VILLARD | 576afd4 | 2009-05-17 00:58:37 +0200 | [diff] [blame] | 925 | @board/armltd/integrator/split_by_variant.sh cp $@ |
wdenk | 25d6712 | 2004-12-10 11:40:40 +0000 | [diff] [blame] | 926 | |
Ulf Samuelsson | a4b46ed | 2008-04-12 20:56:03 +0200 | [diff] [blame] | 927 | xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1)))) |
| 928 | |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 929 | omap1610inn_config \ |
| 930 | omap1610inn_cs0boot_config \ |
| 931 | omap1610inn_cs3boot_config \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 932 | omap1610inn_cs_autoboot_config \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 933 | omap1610h2_config \ |
| 934 | omap1610h2_cs0boot_config \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 935 | omap1610h2_cs3boot_config \ |
| 936 | omap1610h2_cs_autoboot_config: unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 937 | @mkdir -p $(obj)include |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 938 | @if [ "$(findstring _cs0boot_, $@)" ] ; then \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 939 | echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \ |
wdenk | 3ff02c2 | 2004-06-09 15:25:53 +0000 | [diff] [blame] | 940 | elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 941 | echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 942 | else \ |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 943 | echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 944 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 945 | @$(MKCONFIG) -n $@ -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 946 | |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 947 | omap730p2_config \ |
| 948 | omap730p2_cs0boot_config \ |
| 949 | omap730p2_cs3boot_config : unconfig |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 950 | @mkdir -p $(obj)include |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 951 | @if [ "$(findstring _cs0boot_, $@)" ] ; then \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 952 | echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \ |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 953 | else \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 954 | echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 955 | fi; |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 956 | @$(MKCONFIG) -n $@ -a omap730p2 arm arm926ejs omap730p2 ti omap |
wdenk | a56bd92 | 2004-06-06 23:13:55 +0000 | [diff] [blame] | 957 | |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 958 | spear300_config \ |
Vipin KUMAR | 7da6923 | 2010-01-15 19:15:53 +0530 | [diff] [blame] | 959 | spear310_config \ |
| 960 | spear320_config : unconfig |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 961 | @$(MKCONFIG) -n $@ -t $@ spear3xx arm arm926ejs $(@:_config=) spear spear |
Vipin KUMAR | 7e07415 | 2010-01-15 19:15:50 +0530 | [diff] [blame] | 962 | |
Vipin KUMAR | 566c9c1 | 2010-01-15 19:15:48 +0530 | [diff] [blame] | 963 | spear600_config : unconfig |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 964 | @$(MKCONFIG) -n $@ -t $@ spear6xx arm arm926ejs $(@:_config=) spear spear |
Vipin KUMAR | 566c9c1 | 2010-01-15 19:15:48 +0530 | [diff] [blame] | 965 | |
Jean-Christophe PLAGNIOL-VILLARD | 47fd3bf | 2009-01-28 21:58:03 +0100 | [diff] [blame] | 966 | SX1_stdout_serial_config \ |
| 967 | SX1_config: unconfig |
| 968 | @mkdir -p $(obj)include |
| 969 | @if [ "$(findstring _stdout_serial_, $@)" ] ; then \ |
| 970 | echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \ |
Jean-Christophe PLAGNIOL-VILLARD | 47fd3bf | 2009-01-28 21:58:03 +0100 | [diff] [blame] | 971 | else \ |
| 972 | echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \ |
Jean-Christophe PLAGNIOL-VILLARD | 47fd3bf | 2009-01-28 21:58:03 +0100 | [diff] [blame] | 973 | fi; |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 974 | @$(MKCONFIG) -n $@ SX1 arm arm925t sx1 |
wdenk | 2d24a3a | 2004-06-09 21:50:45 +0000 | [diff] [blame] | 975 | |
John Rigby | 6895d45 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 976 | tx25_config : unconfig |
John Rigby | 6895d45 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 977 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
Wolfgang Denk | ed7a196 | 2010-05-27 23:18:34 +0200 | [diff] [blame] | 978 | @$(MKCONFIG) $@ arm arm926ejs tx25 karo mx25 |
John Rigby | 6895d45 | 2010-01-25 23:12:58 -0700 | [diff] [blame] | 979 | |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 980 | edb9301_config \ |
| 981 | edb9302_config \ |
| 982 | edb9302a_config \ |
| 983 | edb9307_config \ |
| 984 | edb9307a_config \ |
| 985 | edb9312_config \ |
| 986 | edb9315_config \ |
| 987 | edb9315a_config: unconfig |
| 988 | @$(MKCONFIG) -n $@ -t $(@:_config=) edb93xx arm arm920t edb93xx - ep93xx |
| 989 | |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 990 | ######################################################################### |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 991 | # ARM supplied Versatile development boards |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 992 | ######################################################################### |
| 993 | |
Wolfgang Denk | 87cb686 | 2005-10-06 17:08:18 +0200 | [diff] [blame] | 994 | versatile_config \ |
| 995 | versatileab_config \ |
| 996 | versatilepb_config : unconfig |
Jean-Christophe PLAGNIOL-VILLARD | e4943ec | 2009-01-29 12:07:21 +0100 | [diff] [blame] | 997 | @board/armltd/versatile/split_by_variant.sh $@ |
wdenk | 074cff0 | 2004-02-24 00:16:43 +0000 | [diff] [blame] | 998 | |
| 999 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1000 | ## XScale Systems |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1001 | ######################################################################### |
| 1002 | |
Stefan Roese | 9d8d5a5 | 2007-01-18 16:05:47 +0100 | [diff] [blame] | 1003 | pdnb3_config \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1004 | scpu_config: unconfig |
Wolfgang Denk | cdd917a | 2007-08-02 00:48:45 +0200 | [diff] [blame] | 1005 | @mkdir -p $(obj)include |
Stefan Roese | 9d8d5a5 | 2007-01-18 16:05:47 +0100 | [diff] [blame] | 1006 | @if [ "$(findstring scpu_,$@)" ] ; then \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1007 | echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \ |
Stefan Roese | 9d8d5a5 | 2007-01-18 16:05:47 +0100 | [diff] [blame] | 1008 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1009 | @$(MKCONFIG) -n $@ -a pdnb3 arm ixp pdnb3 prodrive |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 1010 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 1011 | ######################################################################### |
| 1012 | ## ARM1136 Systems |
| 1013 | ######################################################################### |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 1014 | |
Peter Pearse | 5ca9881 | 2007-11-09 15:24:26 +0000 | [diff] [blame] | 1015 | apollon_config : unconfig |
Wolfgang Denk | 8cbf4e4 | 2009-12-06 00:26:19 +0100 | [diff] [blame] | 1016 | @mkdir -p $(obj)include |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 1017 | @echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h |
Kyungmin Park | 751b9b5 | 2008-01-17 16:43:25 +0900 | [diff] [blame] | 1018 | @echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 1019 | @$(MKCONFIG) $@ arm arm1136 apollon - omap24xx |
Peter Pearse | 5ca9881 | 2007-11-09 15:24:26 +0000 | [diff] [blame] | 1020 | |
Guennadi Liakhovetski | a2bb710 | 2009-02-24 10:44:02 +0100 | [diff] [blame] | 1021 | imx31_phycore_eet_config \ |
Sascha Hauer | 5ad8621 | 2008-03-26 20:41:17 +0100 | [diff] [blame] | 1022 | imx31_phycore_config : unconfig |
Guennadi Liakhovetski | 69c5bf2 | 2009-04-05 00:37:07 +0200 | [diff] [blame] | 1023 | @mkdir -p $(obj)include |
Guennadi Liakhovetski | a2bb710 | 2009-02-24 10:44:02 +0100 | [diff] [blame] | 1024 | @if [ -n "$(findstring _eet_,$@)" ]; then \ |
| 1025 | echo "#define CONFIG_IMX31_PHYCORE_EET" >> $(obj)include/config.h; \ |
| 1026 | fi |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 1027 | @$(MKCONFIG) -n $@ -a imx31_phycore arm arm1136 imx31_phycore - mx31 |
Sascha Hauer | 5ad8621 | 2008-03-26 20:41:17 +0100 | [diff] [blame] | 1028 | |
Magnus Lilja | d08e5ca | 2009-07-04 10:31:24 +0200 | [diff] [blame] | 1029 | mx31pdk_config \ |
| 1030 | mx31pdk_nand_config : unconfig |
| 1031 | @mkdir -p $(obj)include |
| 1032 | @if [ -n "$(findstring _nand_,$@)" ]; then \ |
| 1033 | echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h; \ |
| 1034 | else \ |
| 1035 | echo "#define CONFIG_SKIP_LOWLEVEL_INIT" >> $(obj)include/config.h; \ |
Magnus Lilja | d08e5ca | 2009-07-04 10:31:24 +0200 | [diff] [blame] | 1036 | fi |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1037 | @$(MKCONFIG) -n $@ -a mx31pdk arm arm1136 mx31pdk freescale mx31 |
Magnus Lilja | 8449f28 | 2009-07-01 01:07:55 +0200 | [diff] [blame] | 1038 | |
Guennadi Liakhovetski | 11edcfe | 2008-08-31 00:39:47 +0200 | [diff] [blame] | 1039 | ######################################################################### |
| 1040 | ## ARM1176 Systems |
| 1041 | ######################################################################### |
| 1042 | smdk6400_noUSB_config \ |
| 1043 | smdk6400_config : unconfig |
| 1044 | @mkdir -p $(obj)include $(obj)board/samsung/smdk6400 |
| 1045 | @mkdir -p $(obj)nand_spl/board/samsung/smdk6400 |
| 1046 | @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1047 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
Guennadi Liakhovetski | 11edcfe | 2008-08-31 00:39:47 +0200 | [diff] [blame] | 1048 | @if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \ |
| 1049 | echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\ |
Guennadi Liakhovetski | 11edcfe | 2008-08-31 00:39:47 +0200 | [diff] [blame] | 1050 | else \ |
| 1051 | echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\ |
Guennadi Liakhovetski | 11edcfe | 2008-08-31 00:39:47 +0200 | [diff] [blame] | 1052 | fi |
Wolfgang Denk | 54e19a7 | 2010-06-18 01:20:49 +0200 | [diff] [blame] | 1053 | @$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx |
Guennadi Liakhovetski | 11edcfe | 2008-08-31 00:39:47 +0200 | [diff] [blame] | 1054 | @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk |
| 1055 | |
Wolfgang Denk | 0afe519 | 2006-03-12 02:10:00 +0100 | [diff] [blame] | 1056 | ######################################################################### |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 1057 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1058 | |
| 1059 | clean: |
Peter Tyser | 1bc1538 | 2009-07-10 11:03:19 -0500 | [diff] [blame] | 1060 | @rm -f $(obj)examples/standalone/82559_eeprom \ |
Wolfgang Denk | d640ac5 | 2009-09-07 23:52:31 +0200 | [diff] [blame] | 1061 | $(obj)examples/standalone/atmel_df_pow2 \ |
Peter Tyser | 1bc1538 | 2009-07-10 11:03:19 -0500 | [diff] [blame] | 1062 | $(obj)examples/standalone/eepro100_eeprom \ |
| 1063 | $(obj)examples/standalone/hello_world \ |
| 1064 | $(obj)examples/standalone/interrupt \ |
| 1065 | $(obj)examples/standalone/mem_to_mem_idma2intr \ |
| 1066 | $(obj)examples/standalone/sched \ |
Mike Frysinger | 201a017 | 2011-05-07 12:05:30 +0000 | [diff] [blame] | 1067 | $(obj)examples/standalone/smc911{11,x}_eeprom \ |
Peter Tyser | 1bc1538 | 2009-07-10 11:03:19 -0500 | [diff] [blame] | 1068 | $(obj)examples/standalone/test_burst \ |
| 1069 | $(obj)examples/standalone/timer |
Peter Tyser | d4abc75 | 2009-07-20 19:02:21 -0500 | [diff] [blame] | 1070 | @rm -f $(obj)examples/api/demo{,.bin} |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1071 | @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \ |
| 1072 | $(obj)tools/env/{fw_printenv,fw_setenv} \ |
| 1073 | $(obj)tools/envcrc \ |
| 1074 | $(obj)tools/gdb/{astest,gdbcont,gdbsend} \ |
| 1075 | $(obj)tools/gen_eth_addr $(obj)tools/img2srec \ |
| 1076 | $(obj)tools/mkimage $(obj)tools/mpc86x_clk \ |
| 1077 | $(obj)tools/ncb $(obj)tools/ubsha1 |
| 1078 | @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \ |
Wolfgang Denk | 74c7a95 | 2010-10-16 18:24:16 +0200 | [diff] [blame] | 1079 | $(obj)board/matrix_vision/*/bootscript.img \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 1080 | $(obj)board/netstar/{eeprom,crcek,crcit,*.srec,*.bin} \ |
Wolfgang Denk | 566e5cf | 2011-05-01 20:44:23 +0200 | [diff] [blame] | 1081 | $(obj)board/voiceblue/eeprom \ |
Wolfgang Denk | 1dcb50a | 2009-02-22 01:17:47 +0100 | [diff] [blame] | 1082 | $(obj)board/armltd/{integratorap,integratorcp}/u-boot.lds \ |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 1083 | $(obj)u-boot.lds \ |
Mike Frysinger | fb5166c | 2011-05-07 17:55:04 -0400 | [diff] [blame] | 1084 | $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \ |
| 1085 | $(obj)arch/blackfin/cpu/init.{lds,elf} |
Wolfgang Denk | dc7746d | 2008-04-20 15:39:38 -0700 | [diff] [blame] | 1086 | @rm -f $(obj)include/bmp_logo.h |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 1087 | @rm -f $(obj)lib/asm-offsets.s |
Kumar Gala | ff6b47a | 2011-06-30 01:17:02 -0500 | [diff] [blame] | 1088 | @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map,System.map} |
Kyungmin Park | ca6189d | 2009-09-22 09:05:00 +0900 | [diff] [blame] | 1089 | @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map} |
Chander Kashyap | 0d3c62e | 2011-05-24 20:02:57 +0000 | [diff] [blame] | 1090 | @rm -f $(obj)mmc_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,u-boot-spl.bin,u-boot-mmc-spl.bin} |
Kyungmin Park | ca6189d | 2009-09-22 09:05:00 +0900 | [diff] [blame] | 1091 | @rm -f $(ONENAND_BIN) |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 1092 | @rm -f $(obj)onenand_ipl/u-boot.lds |
Daniel Schwierzeck | 5df2ee2 | 2011-07-13 05:11:04 +0000 | [diff] [blame] | 1093 | @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.lds,u-boot-spl.map} |
Peter Tyser | d4abc75 | 2009-07-20 19:02:21 -0500 | [diff] [blame] | 1094 | @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE) |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1095 | @find $(OBJTREE) -type f \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1096 | \( -name 'core' -o -name '*.bak' -o -name '*~' \ |
Peter Tyser | 2b48f7d | 2009-03-13 18:54:26 -0500 | [diff] [blame] | 1097 | -o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1098 | | xargs rm -f |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1099 | |
| 1100 | clobber: clean |
Mike Frysinger | 727ebd9 | 2010-08-11 18:52:36 -0400 | [diff] [blame] | 1101 | @find $(OBJTREE) -type f \( -name '*.depend' \ |
wdenk | 4c0d4c3 | 2004-06-09 17:34:58 +0000 | [diff] [blame] | 1102 | -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \ |
| 1103 | -print0 \ |
| 1104 | | xargs -0 rm -f |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 1105 | @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \ |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 1106 | $(obj)cscope.* $(obj)*.*~ |
Daniel Schwierzeck | 4e0fbb9 | 2011-07-13 05:11:01 +0000 | [diff] [blame] | 1107 | @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y) |
Prafulla Wadaskar | aa0c7a8 | 2009-09-07 15:05:02 +0530 | [diff] [blame] | 1108 | @rm -f $(obj)u-boot.kwb |
Stefano Babic | c5fb70c | 2010-02-05 15:13:58 +0100 | [diff] [blame] | 1109 | @rm -f $(obj)u-boot.imx |
Heiko Schocher | 7816f2c | 2011-07-16 00:06:42 +0000 | [diff] [blame] | 1110 | @rm -f $(obj)u-boot.ubl |
Peter Tyser | fb8b33c | 2009-03-13 18:54:47 -0500 | [diff] [blame] | 1111 | @rm -f $(obj)tools/{env/crc32.c,inca-swap-bytes} |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 1112 | @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c |
Loïc Minier | a9d8bc9 | 2011-01-19 13:16:29 +0100 | [diff] [blame] | 1113 | @rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 1114 | @rm -fr $(obj)include/generated |
Jean-Christophe PLAGNIOL-VILLARD | a958b66 | 2008-08-16 18:54:27 +0200 | [diff] [blame] | 1115 | @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f |
| 1116 | @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f |
Chander Kashyap | 0d3c62e | 2011-05-24 20:02:57 +0000 | [diff] [blame] | 1117 | @[ ! -d $(obj)mmc_spl ] || find $(obj)mmc_spl -name "*" -type l -print | xargs rm -f |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1118 | |
| 1119 | mrproper \ |
| 1120 | distclean: clobber unconfig |
Mike Frysinger | afd077b | 2011-06-24 18:37:55 +0000 | [diff] [blame] | 1121 | ifneq ($(OBJTREE),$(SRCTREE)) |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1122 | rm -rf $(obj)* |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1123 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1124 | |
| 1125 | backup: |
| 1126 | F=`basename $(TOPDIR)` ; cd .. ; \ |
Ilya Yanok | d6b9371 | 2010-06-21 18:13:21 +0400 | [diff] [blame] | 1127 | 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] | 1128 | |
| 1129 | ######################################################################### |