blob: f23bed61568fa7c8ffd74132f0e1d6455b543153 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denkb1af6f52011-06-27 22:22:42 +02002# (C) Copyright 2000-2011
wdenk7ebf7442002-11-02 23:17:16 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
Wolfgang Denk45a212c2006-07-19 17:52:30 +020010# published by the Free Software Foundatio; either version 2 of
wdenk7ebf7442002-11-02 23:17:16 +000011# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
Wolfgang Denkf9301e12008-03-04 14:58:31 +010015# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk7ebf7442002-11-02 23:17:16 +000016# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
Wolfgang Denk42d44f62011-02-02 22:37:32 +010024VERSION = 2011
Wolfgang Denk6ceb0132011-09-11 21:31:04 +020025PATCHLEVEL = 09
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020026SUBLEVEL =
Wolfgang Denk1d5e7fb2011-09-29 21:11:15 +020027EXTRAVERSION =
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020028ifneq "$(SUBLEVEL)" ""
Wolfgang Denk881a87e2006-02-21 17:33:04 +010029U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Wolfgang Denk8b9e4782008-09-09 23:55:18 +020030else
31U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
32endif
Simon Glassefb21722011-10-10 08:55:19 +000033TIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h
34VERSION_FILE = $(obj)include/generated/version_autogenerated.h
Wolfgang Denk881a87e2006-02-21 17:33:04 +010035
wdenk7ebf7442002-11-02 23:17:16 +000036HOSTARCH := $(shell uname -m | \
Graeme Russfea25722011-04-13 19:43:28 +100037 sed -e s/i.86/x86/ \
wdenk7ebf7442002-11-02 23:17:16 +000038 -e s/sun4u/sparc64/ \
39 -e s/arm.*/arm/ \
40 -e s/sa110/arm/ \
Kumar Galad0179082010-04-28 02:52:02 -050041 -e s/ppc64/powerpc/ \
42 -e s/ppc/powerpc/ \
Nobuhiro Iwamatsu8d1f6352010-06-16 07:59:17 +090043 -e s/macppc/powerpc/\
44 -e s/sh.*/sh/)
wdenk7ebf7442002-11-02 23:17:16 +000045
Wolfgang Denkf9d77ed2005-08-12 23:23:46 +020046HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000047 sed -e 's/\(cygwin\).*/cygwin/')
48
Peter Tysercf7a7b92008-11-12 12:33:20 -060049# Set shell to bash if possible, otherwise fall back to sh
50SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
51 else if [ -x /bin/bash ]; then echo /bin/bash; \
52 else echo sh; fi; fi)
53
54export HOSTARCH HOSTOS SHELL
wdenk7ebf7442002-11-02 23:17:16 +000055
56# Deal with colliding definitions from tcsh etc.
57VENDOR=
58
59#########################################################################
Wolfgang Denkae6d1052008-01-13 00:59:21 +010060# Allow for silent builds
61ifeq (,$(findstring s,$(MAKEFLAGS)))
62XECHO = echo
63else
64XECHO = :
65endif
66
67#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020068#
69# U-boot build supports producing a object files to the separate external
70# directory. Two use cases are supported:
Stefan Roese887e2ec2006-09-07 11:51:23 +020071#
Marian Balakowiczf9328632006-09-01 19:49:50 +020072# 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 Roese887e2ec2006-09-07 11:51:23 +020082#
Marian Balakowiczf9328632006-09-01 19:49:50 +020083# Command line 'O=' setting overrides BUILD_DIR environent variable.
Stefan Roese887e2ec2006-09-07 11:51:23 +020084#
Marian Balakowiczf9328632006-09-01 19:49:50 +020085# 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 Roese887e2ec2006-09-07 11:51:23 +020087#
wdenk7ebf7442002-11-02 23:17:16 +000088
Marian Balakowiczf9328632006-09-01 19:49:50 +020089ifdef O
90ifeq ("$(origin O)", "command line")
91BUILD_DIR := $(O)
92endif
93endif
wdenk7ebf7442002-11-02 23:17:16 +000094
Marian Balakowiczf9328632006-09-01 19:49:50 +020095ifneq ($(BUILD_DIR),)
96saved-output := $(BUILD_DIR)
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020097
98# Attempt to create a output directory.
99$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
100
Stefan Roesea73c8db2006-09-12 08:49:07 +0200101# Verify if it was successful.
Marian Balakowiczf9328632006-09-01 19:49:50 +0200102BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
103$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
104endif # ifneq ($(BUILD_DIR),)
105
106OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
Daniel Schwierzeckc8f9c302011-07-18 06:09:15 +0000107SPLTREE := $(OBJTREE)/spl
Marian Balakowiczf9328632006-09-01 19:49:50 +0200108SRCTREE := $(CURDIR)
109TOPDIR := $(SRCTREE)
110LNDIR := $(OBJTREE)
Daniel Schwierzeckc8f9c302011-07-18 06:09:15 +0000111export TOPDIR SRCTREE OBJTREE SPLTREE
Marian Balakowiczf9328632006-09-01 19:49:50 +0200112
113MKCONFIG := $(SRCTREE)/mkconfig
114export MKCONFIG
115
116ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100117REMOTE_BUILD := 1
Marian Balakowiczf9328632006-09-01 19:49:50 +0200118export REMOTE_BUILD
119endif
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.
124ifneq ($(OBJTREE),$(SRCTREE))
125obj := $(OBJTREE)/
126src := $(SRCTREE)/
127else
128obj :=
129src :=
Stefan Roese887e2ec2006-09-07 11:51:23 +0200130endif
Marian Balakowiczf9328632006-09-01 19:49:50 +0200131export obj src
132
Wolfgang Denk5013c092008-03-02 22:45:33 +0100133# Make sure CDPATH settings don't interfere
134unexport CDPATH
135
Marian Balakowiczf9328632006-09-01 19:49:50 +0200136#########################################################################
137
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400138# The "tools" are needed early, so put this first
139# Don't include stuff already done in $(LIBS)
Che-liang Chiou349e83f2011-10-17 21:04:15 +0000140# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
141# is "yes"), so compile examples after U-Boot is compiled.
142SUBDIR_TOOLS = tools
143SUBDIR_EXAMPLES = examples/standalone examples/api
144SUBDIRS = $(SUBDIR_TOOLS)
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400145
Loïc Minier249b53a2011-10-03 11:57:10 +0200146.PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
Mike Frysinger6d1ce382009-05-30 01:02:03 -0400147
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100148ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200149
Mike Frysinger2632c002009-07-21 22:59:36 -0400150# Include autoconf.mk before config.mk so that the config options are available
151# to all top level build files. We need the dummy all: target to prevent the
152# dependency target in autoconf.mk.dep from being the default.
153all:
154sinclude $(obj)include/autoconf.mk.dep
155sinclude $(obj)include/autoconf.mk
156
Simon Glassb5728752011-10-25 11:29:28 +0000157ifndef CONFIG_SANDBOX
158SUBDIRS += $(SUBDIR_EXAMPLES)
159endif
160
wdenk7ebf7442002-11-02 23:17:16 +0000161# load ARCH, BOARD, and CPU configuration
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100162include $(obj)include/config.mk
wdenk1d9f4102004-10-09 22:21:29 +0000163export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczf9328632006-09-01 19:49:50 +0200164
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -0400165# set default to nothing for native builds
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100166ifeq ($(HOSTARCH),$(ARCH))
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -0400167CROSS_COMPILE ?=
wdenk7ebf7442002-11-02 23:17:16 +0000168endif
wdenk7ebf7442002-11-02 23:17:16 +0000169
Wolfgang Denk92b197f2006-03-12 01:37:50 +0100170# load other configuration
171include $(TOPDIR)/config.mk
172
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000173# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
174# that (or fail if absent). Otherwise, search for a linker script in a
175# standard location.
176
177ifndef LDSCRIPT
178 #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
179 ifdef CONFIG_SYS_LDSCRIPT
180 # need to strip off double quotes
181 LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
182 endif
183endif
184
185ifndef LDSCRIPT
186 ifeq ($(CONFIG_NAND_U_BOOT),y)
187 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
188 ifeq ($(wildcard $(LDSCRIPT)),)
189 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
190 endif
191 endif
192 ifeq ($(wildcard $(LDSCRIPT)),)
193 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
194 endif
195 ifeq ($(wildcard $(LDSCRIPT)),)
196 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
197 endif
198 ifeq ($(wildcard $(LDSCRIPT)),)
199$(error could not find linker script)
200 endif
201endif
202
wdenk7ebf7442002-11-02 23:17:16 +0000203#########################################################################
204# U-Boot objects....order is important (i.e. start must be first)
205
Peter Tyser03b70042010-04-12 22:28:02 -0500206OBJS = $(CPUDIR)/start.o
Graeme Russfea25722011-04-13 19:43:28 +1000207ifeq ($(CPU),x86)
Peter Tyser03b70042010-04-12 22:28:02 -0500208OBJS += $(CPUDIR)/start16.o
209OBJS += $(CPUDIR)/resetvec.o
wdenk2262cfe2002-11-18 00:14:45 +0000210endif
wdenk7ebf7442002-11-02 23:17:16 +0000211ifeq ($(CPU),ppc4xx)
Peter Tyser03b70042010-04-12 22:28:02 -0500212OBJS += $(CPUDIR)/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000213endif
wdenk42d1f032003-10-15 23:53:47 +0000214ifeq ($(CPU),mpc85xx)
Peter Tyser03b70042010-04-12 22:28:02 -0500215OBJS += $(CPUDIR)/resetvec.o
wdenk42d1f032003-10-15 23:53:47 +0000216endif
wdenk7ebf7442002-11-02 23:17:16 +0000217
Marian Balakowiczf9328632006-09-01 19:49:50 +0200218OBJS := $(addprefix $(obj),$(OBJS))
219
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100220LIBS = lib/libgeneric.o
221LIBS += lib/lzma/liblzma.o
222LIBS += lib/lzo/liblzo.o
Mike Frysingere89516f2011-04-08 12:23:30 +0000223LIBS += lib/zlib/libz.o
Kim Phillips7608d752007-08-21 17:00:17 -0500224LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100225 "board/$(VENDOR)/common/lib$(VENDOR).o"; fi)
226LIBS += $(CPUDIR)/lib$(CPU).o
wdenk1d9f4102004-10-09 22:21:29 +0000227ifdef SOC
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100228LIBS += $(CPUDIR)/$(SOC)/lib$(SOC).o
wdenk1d9f4102004-10-09 22:21:29 +0000229endif
Stefan Roese323bfa82007-04-23 12:00:22 +0200230ifeq ($(CPU),ixp)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100231LIBS += arch/arm/cpu/ixp/npe/libnpe.o
Stefan Roese323bfa82007-04-23 12:00:22 +0200232endif
Simon Glassbbb0b122011-10-15 05:48:21 +0000233ifeq ($(CONFIG_OF_EMBED),y)
234LIBS += dts/libdts.o
235endif
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100236LIBS += arch/$(ARCH)/lib/lib$(ARCH).o
237LIBS += fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o fs/jffs2/libjffs2.o \
238 fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o fs/yaffs2/libyaffs2.o \
239 fs/ubifs/libubifs.o
240LIBS += net/libnet.o
241LIBS += disk/libdisk.o
242LIBS += drivers/bios_emulator/libatibiosemu.o
243LIBS += drivers/block/libblock.o
244LIBS += drivers/dma/libdma.o
245LIBS += drivers/fpga/libfpga.o
246LIBS += drivers/gpio/libgpio.o
247LIBS += drivers/hwmon/libhwmon.o
248LIBS += drivers/i2c/libi2c.o
249LIBS += drivers/input/libinput.o
250LIBS += drivers/misc/libmisc.o
251LIBS += drivers/mmc/libmmc.o
252LIBS += drivers/mtd/libmtd.o
253LIBS += drivers/mtd/nand/libnand.o
254LIBS += drivers/mtd/onenand/libonenand.o
255LIBS += drivers/mtd/ubi/libubi.o
256LIBS += drivers/mtd/spi/libspi_flash.o
257LIBS += drivers/net/libnet.o
258LIBS += drivers/net/phy/libphy.o
259LIBS += drivers/pci/libpci.o
260LIBS += drivers/pcmcia/libpcmcia.o
261LIBS += drivers/power/libpower.o
262LIBS += drivers/spi/libspi.o
Dave Liu7737d5c2006-11-03 12:11:15 -0600263ifeq ($(CPU),mpc83xx)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100264LIBS += drivers/qe/libqe.o
York Sund29d17d2011-08-26 11:32:44 -0700265LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100266LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
Dave Liu7737d5c2006-11-03 12:11:15 -0600267endif
Andy Flemingda9d4612007-08-14 00:14:25 -0500268ifeq ($(CPU),mpc85xx)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100269LIBS += drivers/qe/libqe.o
Kumar Galac916d7c2011-04-13 08:37:44 -0500270LIBS += drivers/net/fm/libfm.o
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100271LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
272LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500273endif
274ifeq ($(CPU),mpc86xx)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100275LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
276LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
Andy Flemingda9d4612007-08-14 00:14:25 -0500277endif
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100278LIBS += drivers/rtc/librtc.o
279LIBS += drivers/serial/libserial.o
Vadim Bendebury5e124722011-10-17 08:36:14 +0000280ifeq ($(CONFIG_GENERIC_LPC_TPM),y)
281LIBS += drivers/tpm/libtpm.o
282endif
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100283LIBS += drivers/twserial/libtws.o
Mike Frysinger181f5652011-06-24 21:12:36 -0400284LIBS += drivers/usb/eth/libusb_eth.o
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100285LIBS += drivers/usb/gadget/libusb_gadget.o
286LIBS += drivers/usb/host/libusb_host.o
287LIBS += drivers/usb/musb/libusb_musb.o
288LIBS += drivers/usb/phy/libusb_phy.o
289LIBS += drivers/video/libvideo.o
290LIBS += drivers/watchdog/libwatchdog.o
291LIBS += common/libcommon.o
292LIBS += lib/libfdt/libfdt.o
293LIBS += api/libapi.o
294LIBS += post/libpost.o
Marian Balakowiczf9328632006-09-01 19:49:50 +0200295
Sricharana9c1c042011-11-15 09:50:06 -0500296ifneq ($(CONFIG_AM335X)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
Chandan Nathf0f4b5f2011-10-14 02:58:25 +0000297LIBS += $(CPUDIR)/omap-common/libomap-common.o
298endif
Minkyu Kang852bd072010-08-19 13:48:11 +0900299ifeq ($(SOC),s5pc1xx)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100300LIBS += $(CPUDIR)/s5p-common/libs5p-common.o
Minkyu Kang852bd072010-08-19 13:48:11 +0900301endif
302ifeq ($(SOC),s5pc2xx)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100303LIBS += $(CPUDIR)/s5p-common/libs5p-common.o
Minkyu Kang852bd072010-08-19 13:48:11 +0900304endif
305
Wolfgang Denk566d49a2010-11-22 23:36:42 +0100306LIBS := $(addprefix $(obj),$(sort $(LIBS)))
Loïc Minier249b53a2011-10-03 11:57:10 +0200307.PHONY : $(LIBS)
wdenka8c7c702003-12-06 19:49:23 +0000308
Sebastien Carlier6d8962e2010-11-05 15:48:07 +0100309LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o
Wolfgang Denkde109d92008-04-30 17:25:07 +0200310LIBBOARD := $(addprefix $(obj),$(LIBBOARD))
311
wdenk4f7cb082003-09-11 23:06:34 +0000312# Add GCC lib
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200313ifdef USE_PRIVATE_LIBGCC
314ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
Matthias Weisser635d1b32010-11-18 09:35:09 +0100315PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200316else
317PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
318endif
319else
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +0000320PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200321endif
322PLATFORM_LIBS += $(PLATFORM_LIBGCC)
323export PLATFORM_LIBS
wdenk3d3befa2004-03-14 15:06:13 +0000324
Mike Frysinger6ac9f472009-08-23 02:47:59 -0400325# Special flags for CPP when processing the linker script.
326# Pass the version down so we can handle backwards compatibility
327# on the fly.
328LDPPFLAGS += \
329 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
330 $(shell $(LD) --version | \
331 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
332
Marian Balakowiczf9328632006-09-01 19:49:50 +0200333__OBJS := $(subst $(obj),,$(OBJS))
Wolfgang Denkde109d92008-04-30 17:25:07 +0200334__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200335
wdenk7ebf7442002-11-02 23:17:16 +0000336#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000337#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000338
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400339ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
340BOARD_SIZE_CHECK = \
341 @actual=`wc -c $@ | awk '{print $$1}'`; \
342 limit=$(CONFIG_BOARD_SIZE_LIMIT); \
343 if test $$actual -gt $$limit; then \
344 echo "$@ exceeds file size limit:"; \
345 echo " limit: $$limit bytes"; \
346 echo " actual: $$actual bytes"; \
347 echo " excess: $$((actual - limit)) bytes"; \
348 exit 1; \
349 fi
350else
351BOARD_SIZE_CHECK =
352endif
353
Mike Frysinger3e883372009-06-15 00:25:19 -0400354# Always append ALL so that arch config.mk's can add custom ones
Daniel Schwierzeck4e0fbb92011-07-13 05:11:01 +0000355ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map
Haiying Wange935a372011-01-27 09:44:59 -0500356
Daniel Schwierzeck4e0fbb92011-07-13 05:11:01 +0000357ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin
358ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin
Haiying Wange935a372011-01-27 09:44:59 -0500359ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin
Daniel Schwierzeck4e0fbb92011-07-13 05:11:01 +0000360ALL-$(CONFIG_MMC_U_BOOT) += $(obj)mmc_spl/u-boot-mmc-spl.bin
Daniel Schwierzeck5df2ee22011-07-13 05:11:04 +0000361ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin
Simon Glass2c0f79e2011-10-24 19:15:31 +0000362ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin
wdenk7ebf7442002-11-02 23:17:16 +0000363
Che-liang Chiou349e83f2011-10-17 21:04:15 +0000364all: $(ALL-y) $(SUBDIR_EXAMPLES)
wdenk7ebf7442002-11-02 23:17:16 +0000365
Simon Glass2c0f79e2011-10-24 19:15:31 +0000366$(obj)u-boot.dtb: $(obj)u-boot
367 $(MAKE) -C dts binary
368 mv $(obj)dts/dt.dtb $@
369
370$(obj)u-boot-dtb.bin: $(obj)u-boot.bin $(obj)u-boot.dtb
371 cat $^ >$@
372
Marian Balakowiczf9328632006-09-01 19:49:50 +0200373$(obj)u-boot.hex: $(obj)u-boot
wdenk6310eb92005-01-09 21:28:15 +0000374 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
375
Marian Balakowiczf9328632006-09-01 19:49:50 +0200376$(obj)u-boot.srec: $(obj)u-boot
Ricardo Ribalda Delgado0817d682008-09-07 17:10:27 -0400377 $(OBJCOPY) -O srec $< $@
wdenk7ebf7442002-11-02 23:17:16 +0000378
Marian Balakowiczf9328632006-09-01 19:49:50 +0200379$(obj)u-boot.bin: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000380 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400381 $(BOARD_SIZE_CHECK)
wdenk7ebf7442002-11-02 23:17:16 +0000382
Mike Frysinger94a91e22008-02-04 19:26:57 -0500383$(obj)u-boot.ldr: $(obj)u-boot
Mike Frysinger76d82182009-07-21 22:17:36 -0400384 $(CREATE_LDR_ENV)
Mike Frysinger68e56322008-08-07 18:56:56 -0400385 $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400386 $(BOARD_SIZE_CHECK)
Mike Frysinger94a91e22008-02-04 19:26:57 -0500387
388$(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
389 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
390
391$(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
392 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
393
Marian Balakowiczf9328632006-09-01 19:49:50 +0200394$(obj)u-boot.img: $(obj)u-boot.bin
Wolfgang Denka2a0a712010-05-15 21:23:51 +0200395 $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
aneeshv3857f8f2011-07-16 02:53:20 +0000396 -O u-boot -a $(CONFIG_SYS_TEXT_BASE) -e 0 \
Wolfgang Denk881a87e2006-02-21 17:33:04 +0100397 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenkbdccc4f2003-08-05 17:43:17 +0000398 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
399 -d $< $@
400
Stefano Babic8edcde52010-01-20 18:19:10 +0100401$(obj)u-boot.imx: $(obj)u-boot.bin
Stefano Babic45d7d722011-01-24 00:14:26 +0000402 $(obj)tools/mkimage -n $(CONFIG_IMX_CONFIG) -T imximage \
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200403 -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
Stefano Babic8edcde52010-01-20 18:19:10 +0100404
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530405$(obj)u-boot.kwb: $(obj)u-boot.bin
Prafulla Wadaskar31d80c72010-10-27 17:46:06 +0530406 $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
Eric Cooper2ea88b02010-10-19 13:31:11 -0400407 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530408
Heiko Schocher566a4942007-06-22 19:11:54 +0200409$(obj)u-boot.sha1: $(obj)u-boot.bin
Heiko Schocher01159532007-07-14 01:06:58 +0200410 $(obj)tools/ubsha1 $(obj)u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +0200411
Marian Balakowiczf9328632006-09-01 19:49:50 +0200412$(obj)u-boot.dis: $(obj)u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000413 $(OBJDUMP) -d $< > $@
414
Heiko Schocher435199f2011-11-01 20:00:29 +0000415$(obj)u-boot.ubl: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
416 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
417 cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $(obj)u-boot-ubl.bin
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000418 $(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \
Heiko Schocher435199f2011-11-01 20:00:29 +0000419 -e $(CONFIG_SYS_TEXT_BASE) -d $(obj)u-boot-ubl.bin $(obj)u-boot.ubl
420 rm $(obj)u-boot-ubl.bin
421 rm $(obj)spl/u-boot-spl-pad.bin
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000422
Marek Vasut30b9b932011-11-08 23:18:19 +0000423$(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin
424 elftosb -zdf imx28 -c $(TOPDIR)/board/$(BOARDDIR)/u-boot.bd \
425 -o $(obj)u-boot.sb
426
Simon Glass86eb49b2011-10-03 19:26:50 +0000427ifeq ($(CONFIG_SANDBOX),y)
428GEN_UBOOT = \
429 cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \
430 -Wl,--start-group $(__LIBS) -Wl,--end-group \
431 $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
432else
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400433GEN_UBOOT = \
Wolfgang Denkde109d92008-04-30 17:25:07 +0200434 UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
435 sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
Nobuhiro Iwamatsu8aba9dc2011-01-06 10:23:54 +0900436 cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__OBJS) \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200437 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
wdenkb2184c32002-11-19 23:01:07 +0000438 -Map u-boot.map -o u-boot
Simon Glass86eb49b2011-10-03 19:26:50 +0000439endif
440
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200441$(obj)u-boot: depend \
Che-liang Chiou349e83f2011-10-17 21:04:15 +0000442 $(SUBDIR_TOOLS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400443 $(GEN_UBOOT)
444ifeq ($(CONFIG_KALLSYMS),y)
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200445 smap=`$(call SYSTEM_MAP,u-boot) | \
446 awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
447 $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
448 -c common/system_map.c -o $(obj)common/system_map.o
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400449 $(GEN_UBOOT) $(obj)common/system_map.o
450endif
wdenk7ebf7442002-11-02 23:17:16 +0000451
Peter Tyserd0d61442009-03-13 18:54:25 -0500452$(OBJS): depend
Peter Tyser03b70042010-04-12 22:28:02 -0500453 $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
Marian Balakowiczf9328632006-09-01 19:49:50 +0200454
Che-liang Chiou349e83f2011-10-17 21:04:15 +0000455$(LIBS): depend $(SUBDIR_TOOLS)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200456 $(MAKE) -C $(dir $(subst $(obj),,$@))
wdenka8c7c702003-12-06 19:49:23 +0000457
Peter Tyserd0d61442009-03-13 18:54:25 -0500458$(LIBBOARD): depend $(LIBS)
Wolfgang Denkde109d92008-04-30 17:25:07 +0200459 $(MAKE) -C $(dir $(subst $(obj),,$@))
460
Peter Tyserd0d61442009-03-13 18:54:25 -0500461$(SUBDIRS): depend
wdenkb028f712003-12-07 21:39:28 +0000462 $(MAKE) -C $@ all
wdenk7ebf7442002-11-02 23:17:16 +0000463
Che-liang Chiou349e83f2011-10-17 21:04:15 +0000464$(SUBDIR_EXAMPLES): $(obj)u-boot
465
Peter Tyserd0d61442009-03-13 18:54:25 -0500466$(LDSCRIPT): depend
Mike Frysingerf65c9812008-02-16 02:12:37 -0500467 $(MAKE) -C $(dir $@) $(notdir $@)
468
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200469$(obj)u-boot.lds: $(LDSCRIPT)
470 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
471
Haiying Wange935a372011-01-27 09:44:59 -0500472nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200473 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
Stefan Roese887e2ec2006-09-07 11:51:23 +0200474
Haiying Wange935a372011-01-27 09:44:59 -0500475$(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin
Marian Balakowicz8318fbf2006-10-23 22:17:05 +0200476 cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
Stefan Roese887e2ec2006-09-07 11:51:23 +0200477
Haiying Wange935a372011-01-27 09:44:59 -0500478onenand_ipl: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
Stefan Roesef2302d42008-08-06 14:05:38 +0200479 $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all
Kyungmin Park751b9b52008-01-17 16:43:25 +0900480
Haiying Wange935a372011-01-27 09:44:59 -0500481$(obj)u-boot-onenand.bin: onenand_ipl $(obj)u-boot.bin
Kyungmin Parkca6189d2009-09-22 09:05:00 +0900482 cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin
Kyungmin Park751b9b52008-01-17 16:43:25 +0900483
Chander Kashyap0d3c62e2011-05-24 20:02:57 +0000484mmc_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
485 $(MAKE) -C mmc_spl/board/$(BOARDDIR) all
486
487$(obj)mmc_spl/u-boot-mmc-spl.bin: mmc_spl
488
Aneesh Vbd25fdb2011-11-05 13:13:33 +0530489$(obj)spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend
Daniel Schwierzeck5df2ee22011-07-13 05:11:04 +0000490 $(MAKE) -C spl all
491
Marian Balakowiczf9328632006-09-01 19:49:50 +0200492updater:
Mike Frysinger0358df42010-08-15 00:03:21 -0400493 $(MAKE) -C tools/updater all
dzu8f713fd2003-08-07 14:20:31 +0000494
Daniel Hobi2a998792010-01-18 18:13:39 +0100495# Explicitly make _depend in subdirs containing multiple targets to prevent
496# parallel sub-makes creating .depend files simultaneously.
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200497depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \
498 $(obj)include/autoconf.mk \
Stefano Babica4814a62011-09-05 04:32:28 +0000499 $(obj)include/generated/generic-asm-offsets.h \
500 $(obj)include/generated/asm-offsets.h
Peter Tyser03b70042010-04-12 22:28:02 -0500501 for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \
Daniel Hobi2a998792010-01-18 18:13:39 +0100502 $(MAKE) -C $$dir _depend ; done
wdenk7ebf7442002-11-02 23:17:16 +0000503
Li Yange5e4e702009-12-09 18:13:26 +0800504TAG_SUBDIRS = $(SUBDIRS)
505TAG_SUBDIRS += $(dir $(__LIBS))
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100506TAG_SUBDIRS += include
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +0100507
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000508FIND := find
509FINDFLAGS := -L
510
Marian Balakowiczf9328632006-09-01 19:49:50 +0200511tags ctags:
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000512 ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
Li Yange5e4e702009-12-09 18:13:26 +0800513 -name '*.[chS]' -print`
wdenk7ebf7442002-11-02 23:17:16 +0000514
515etags:
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000516 etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
Li Yange5e4e702009-12-09 18:13:26 +0800517 -name '*.[chS]' -print`
Li Yangffda5862008-02-29 11:46:05 +0800518cscope:
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +0000519 $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
520 cscope.files
Li Yangffda5862008-02-29 11:46:05 +0800521 cscope -b -q -k
wdenk7ebf7442002-11-02 23:17:16 +0000522
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400523SYSTEM_MAP = \
524 $(NM) $1 | \
wdenk7ebf7442002-11-02 23:17:16 +0000525 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Mike Frysingerecb1dc82009-05-20 04:35:14 -0400526 LC_ALL=C sort
527$(obj)System.map: $(obj)u-boot
528 @$(call SYSTEM_MAP,$<) > $(obj)System.map
wdenk7ebf7442002-11-02 23:17:16 +0000529
Grant Likely2f155f62007-09-24 09:05:31 -0600530#
531# Auto-generate the autoconf.mk file (which is included by all makefiles)
532#
533# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
534# the dep file is only include in this top level makefile to determine when
535# to regenerate the autoconf.mk file.
Wolfgang Denk1510b822008-05-13 23:15:52 +0200536$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
537 @$(XECHO) Generating $@ ; \
Mike Frysinger16fe7772008-02-18 05:10:07 -0500538 set -e ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100539 : Generate the dependancies ; \
Mike Frysinger4c34b2a2011-10-12 19:48:00 +0000540 $(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \
Wolfgang Denk1510b822008-05-13 23:15:52 +0200541 -MQ $(obj)include/autoconf.mk include/common.h > $@
542
543$(obj)include/autoconf.mk: $(obj)include/config.h
544 @$(XECHO) Generating $@ ; \
545 set -e ; \
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100546 : Extract the config macros ; \
Wolfgang Denk1510b822008-05-13 23:15:52 +0200547 $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
Wolfgang Denk4a0f7532008-12-16 14:41:02 +0100548 sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
549 mv $@.tmp $@
Grant Likely2f155f62007-09-24 09:05:31 -0600550
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200551$(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \
552 $(obj)lib/asm-offsets.s
553 @$(XECHO) Generating $@
554 tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
555
556$(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \
557 $(src)lib/asm-offsets.c
558 @mkdir -p $(obj)lib
559 $(CC) -DDO_DEPS_ONLY \
560 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
561 -o $@ $(src)lib/asm-offsets.c -c -S
562
Stefano Babica4814a62011-09-05 04:32:28 +0000563$(obj)include/generated/asm-offsets.h: $(obj)include/autoconf.mk.dep \
564 $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
565 @echo Generating $@
566 tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@
567
568$(obj)$(CPUDIR)/$(SOC)/asm-offsets.s: $(obj)include/autoconf.mk.dep
569 @mkdir -p $(obj)$(CPUDIR)/$(SOC)
570 if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
571 $(CC) -DDO_DEPS_ONLY \
572 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
573 -o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
574 else \
575 touch $@; \
576 fi
577
wdenk7ebf7442002-11-02 23:17:16 +0000578#########################################################################
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100579else # !config.mk
Marian Balakowiczf9328632006-09-01 19:49:50 +0200580all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
581$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
Loïc Minier249b53a2011-10-03 11:57:10 +0200582$(filter-out tools,$(SUBDIRS)) \
Mike Frysinger0358df42010-08-15 00:03:21 -0400583updater depend dep tags ctags etags cscope $(obj)System.map:
wdenk7ebf7442002-11-02 23:17:16 +0000584 @echo "System not configured - see README" >&2
585 @ exit 1
Mike Frysingerc7c0d542010-01-21 04:03:22 -0500586
Loïc Minier249b53a2011-10-03 11:57:10 +0200587tools: $(VERSION_FILE) $(TIMESTAMP_FILE)
Mike Frysinger0358df42010-08-15 00:03:21 -0400588 $(MAKE) -C $@ all
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100589endif # config.mk
wdenk7ebf7442002-11-02 23:17:16 +0000590
Ilya Yanok28abd482011-06-20 12:45:38 +0000591$(VERSION_FILE):
Mike Frysinger14ce91b2011-06-30 16:56:20 +0000592 @mkdir -p $(dir $(VERSION_FILE))
Ilya Yanok28abd482011-06-20 12:45:38 +0000593 @( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \
594 printf '#define PLAIN_VERSION "%s%s"\n' \
595 "$(U_BOOT_VERSION)" "$${localvers}" ; \
596 printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
597 "$(U_BOOT_VERSION)" "$${localvers}" ; \
598 ) > $@.tmp
599 @( printf '#define CC_VERSION_STRING "%s"\n' \
600 '$(shell $(CC) --version | head -n 1)' )>> $@.tmp
601 @( printf '#define LD_VERSION_STRING "%s"\n' \
602 '$(shell $(LD) -v | head -n 1)' )>> $@.tmp
603 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
604
Loïc Minier249b53a2011-10-03 11:57:10 +0200605$(TIMESTAMP_FILE):
606 @mkdir -p $(dir $(TIMESTAMP_FILE))
Loïc Miniera76406f2011-10-03 11:57:11 +0200607 @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
608 @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
609 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
Loïc Minier249b53a2011-10-03 11:57:10 +0200610
Mike Frysinger0358df42010-08-15 00:03:21 -0400611easylogo env gdb:
612 $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
613gdbtools: gdb
614
Loïc Minier249b53a2011-10-03 11:57:10 +0200615tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
Mike Frysinger0358df42010-08-15 00:03:21 -0400616 $(MAKE) -C tools HOST_TOOLS_ALL=y
617
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200618.PHONY : CHANGELOG
619CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -0400620 git log --no-merges U-Boot-1_1_5.. | \
621 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +0200622
Harald Welte0a823aa2008-07-09 22:30:30 +0800623include/license.h: tools/bin2header COPYING
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200624 cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
wdenk7ebf7442002-11-02 23:17:16 +0000625#########################################################################
626
627unconfig:
Stefan Roese887e2ec2006-09-07 11:51:23 +0200628 @rm -f $(obj)include/config.h $(obj)include/config.mk \
Grant Likely2f155f62007-09-24 09:05:31 -0600629 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
630 $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
wdenk7ebf7442002-11-02 23:17:16 +0000631
Wolfgang Denka6862bc2010-05-27 23:18:36 +0200632%_config:: unconfig
633 @$(MKCONFIG) -A $(@:_config=)
634
Loïc Minierd6a5e6d2011-01-19 13:16:30 +0100635sinclude $(obj).boards.depend
636$(obj).boards.depend: boards.cfg
Mike Frysinger727ebd92010-08-11 18:52:36 -0400637 awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@
Mike Frysinger9f4a4202009-10-01 12:11:54 -0400638
Wolfgang Denk8c994632010-05-27 23:18:35 +0200639#
640# Functions to generate common board directory names
641#
642lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/')
643ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')
644
wdenk7ebf7442002-11-02 23:17:16 +0000645#========================================================================
646# ARM
647#========================================================================
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800648
Ulf Samuelssona4b46ed2008-04-12 20:56:03 +0200649xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
650
wdenk63e73c92004-02-23 22:22:28 +0000651omap1610inn_config \
652omap1610inn_cs0boot_config \
653omap1610inn_cs3boot_config \
wdenk3ff02c22004-06-09 15:25:53 +0000654omap1610inn_cs_autoboot_config \
wdenk63e73c92004-02-23 22:22:28 +0000655omap1610h2_config \
656omap1610h2_cs0boot_config \
wdenk3ff02c22004-06-09 15:25:53 +0000657omap1610h2_cs3boot_config \
658omap1610h2_cs_autoboot_config: unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200659 @mkdir -p $(obj)include
wdenk63e73c92004-02-23 22:22:28 +0000660 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +0200661 echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
wdenk3ff02c22004-06-09 15:25:53 +0000662 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +0200663 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
wdenk63e73c92004-02-23 22:22:28 +0000664 else \
Wolfgang Denkcdd917a2007-08-02 00:48:45 +0200665 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenk63e73c92004-02-23 22:22:28 +0000666 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200667 @$(MKCONFIG) -n $@ -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap
wdenk6f213472003-08-29 22:00:43 +0000668
wdenka56bd922004-06-06 23:13:55 +0000669omap730p2_config \
670omap730p2_cs0boot_config \
671omap730p2_cs3boot_config : unconfig
Marian Balakowiczf9328632006-09-01 19:49:50 +0200672 @mkdir -p $(obj)include
wdenka56bd922004-06-06 23:13:55 +0000673 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200674 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +0000675 else \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200676 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
wdenka56bd922004-06-06 23:13:55 +0000677 fi;
Wolfgang Denked7a1962010-05-27 23:18:34 +0200678 @$(MKCONFIG) -n $@ -a omap730p2 arm arm926ejs omap730p2 ti omap
wdenka56bd922004-06-06 23:13:55 +0000679
Vipin KUMAR080cfee2010-01-15 19:15:52 +0530680spear300_config \
Vipin KUMAR7da69232010-01-15 19:15:53 +0530681spear310_config \
682spear320_config : unconfig
Wolfgang Denked7a1962010-05-27 23:18:34 +0200683 @$(MKCONFIG) -n $@ -t $@ spear3xx arm arm926ejs $(@:_config=) spear spear
Vipin KUMAR7e074152010-01-15 19:15:50 +0530684
Vipin KUMAR566c9c12010-01-15 19:15:48 +0530685spear600_config : unconfig
Wolfgang Denked7a1962010-05-27 23:18:34 +0200686 @$(MKCONFIG) -n $@ -t $@ spear6xx arm arm926ejs $(@:_config=) spear spear
Vipin KUMAR566c9c12010-01-15 19:15:48 +0530687
Jean-Christophe PLAGNIOL-VILLARD47fd3bf2009-01-28 21:58:03 +0100688SX1_stdout_serial_config \
689SX1_config: unconfig
690 @mkdir -p $(obj)include
691 @if [ "$(findstring _stdout_serial_, $@)" ] ; then \
692 echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD47fd3bf2009-01-28 21:58:03 +0100693 else \
694 echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
Jean-Christophe PLAGNIOL-VILLARD47fd3bf2009-01-28 21:58:03 +0100695 fi;
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200696 @$(MKCONFIG) -n $@ SX1 arm arm925t sx1
wdenk2d24a3a2004-06-09 21:50:45 +0000697
Wolfgang Denk699f0512008-07-15 22:22:44 +0200698#########################################################################
wdenk43d96162003-03-06 00:02:04 +0000699## XScale Systems
wdenk7ebf7442002-11-02 23:17:16 +0000700#########################################################################
701
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100702pdnb3_config \
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100703scpu_config: unconfig
Wolfgang Denkcdd917a2007-08-02 00:48:45 +0200704 @mkdir -p $(obj)include
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100705 @if [ "$(findstring scpu_,$@)" ] ; then \
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100706 echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100707 fi
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200708 @$(MKCONFIG) -n $@ -a pdnb3 arm ixp pdnb3 prodrive
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200709
wdenk8ed96042005-01-09 23:16:25 +0000710#########################################################################
711## ARM1136 Systems
712#########################################################################
wdenk8ed96042005-01-09 23:16:25 +0000713
Peter Pearse5ca98812007-11-09 15:24:26 +0000714apollon_config : unconfig
Wolfgang Denk8cbf4e42009-12-06 00:26:19 +0100715 @mkdir -p $(obj)include
Kyungmin Park751b9b52008-01-17 16:43:25 +0900716 @echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h
Kyungmin Park751b9b52008-01-17 16:43:25 +0900717 @echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk
Wolfgang Denka6862bc2010-05-27 23:18:36 +0200718 @$(MKCONFIG) $@ arm arm1136 apollon - omap24xx
Peter Pearse5ca98812007-11-09 15:24:26 +0000719
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +0200720#########################################################################
721## ARM1176 Systems
722#########################################################################
723smdk6400_noUSB_config \
724smdk6400_config : unconfig
725 @mkdir -p $(obj)include $(obj)board/samsung/smdk6400
726 @mkdir -p $(obj)nand_spl/board/samsung/smdk6400
727 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
Wolfgang Denk0e42ada2010-05-27 23:18:33 +0200728 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +0200729 @if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \
730 echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +0200731 else \
732 echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +0200733 fi
Wolfgang Denk54e19a72010-06-18 01:20:49 +0200734 @$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx
Guennadi Liakhovetski11edcfe2008-08-31 00:39:47 +0200735 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
736
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100737#########################################################################
wdenk3e386912003-04-05 00:53:31 +0000738#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000739
740clean:
Peter Tyser1bc15382009-07-10 11:03:19 -0500741 @rm -f $(obj)examples/standalone/82559_eeprom \
Wolfgang Denkd640ac52009-09-07 23:52:31 +0200742 $(obj)examples/standalone/atmel_df_pow2 \
Peter Tyser1bc15382009-07-10 11:03:19 -0500743 $(obj)examples/standalone/eepro100_eeprom \
744 $(obj)examples/standalone/hello_world \
745 $(obj)examples/standalone/interrupt \
746 $(obj)examples/standalone/mem_to_mem_idma2intr \
747 $(obj)examples/standalone/sched \
Mike Frysinger201a0172011-05-07 12:05:30 +0000748 $(obj)examples/standalone/smc911{11,x}_eeprom \
Peter Tyser1bc15382009-07-10 11:03:19 -0500749 $(obj)examples/standalone/test_burst \
750 $(obj)examples/standalone/timer
Peter Tyserd4abc752009-07-20 19:02:21 -0500751 @rm -f $(obj)examples/api/demo{,.bin}
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100752 @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
753 $(obj)tools/env/{fw_printenv,fw_setenv} \
754 $(obj)tools/envcrc \
755 $(obj)tools/gdb/{astest,gdbcont,gdbsend} \
756 $(obj)tools/gen_eth_addr $(obj)tools/img2srec \
Horst Kronstorfer7717fe12011-11-28 23:42:14 +0000757 $(obj)tools/mk{env,}image $(obj)tools/mpc86x_clk \
Wolfgang Denkf9301e12008-03-04 14:58:31 +0100758 $(obj)tools/ncb $(obj)tools/ubsha1
759 @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \
Wolfgang Denk74c7a952010-10-16 18:24:16 +0200760 $(obj)board/matrix_vision/*/bootscript.img \
Wolfgang Denk566e5cf2011-05-01 20:44:23 +0200761 $(obj)board/voiceblue/eeprom \
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200762 $(obj)u-boot.lds \
Mike Frysingerfb5166c2011-05-07 17:55:04 -0400763 $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \
764 $(obj)arch/blackfin/cpu/init.{lds,elf}
Wolfgang Denkdc7746d2008-04-20 15:39:38 -0700765 @rm -f $(obj)include/bmp_logo.h
Che-Liang Chiouc2707302011-10-20 23:04:20 +0000766 @rm -f $(obj)include/bmp_logo_data.h
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200767 @rm -f $(obj)lib/asm-offsets.s
Stefano Babica4814a62011-09-05 04:32:28 +0000768 @rm -f $(obj)include/generated/asm-offsets.h
769 @rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
Kumar Galaff6b47a2011-06-30 01:17:02 -0500770 @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map,System.map}
Kyungmin Parkca6189d2009-09-22 09:05:00 +0900771 @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map}
Chander Kashyap0d3c62e2011-05-24 20:02:57 +0000772 @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 Parkca6189d2009-09-22 09:05:00 +0900773 @rm -f $(ONENAND_BIN)
Wolfgang Denk1aada9c2009-08-17 14:00:53 +0200774 @rm -f $(obj)onenand_ipl/u-boot.lds
Daniel Schwierzeck5df2ee22011-07-13 05:11:04 +0000775 @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.lds,u-boot-spl.map}
Joel A Fernandes4e4b21b2011-10-12 16:12:55 +0000776 @rm -f $(obj)MLO
Peter Tyserd4abc752009-07-20 19:02:21 -0500777 @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100778 @find $(OBJTREE) -type f \
wdenk7ebf7442002-11-02 23:17:16 +0000779 \( -name 'core' -o -name '*.bak' -o -name '*~' \
Peter Tyser2b48f7d2009-03-13 18:54:26 -0500780 -o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \
wdenk7ebf7442002-11-02 23:17:16 +0000781 | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +0000782
Andy Fleming734329f2011-11-21 13:40:43 +0000783# Removes everything not needed for testing u-boot
784tidy: clean
785 @find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f
786
787clobber: tidy
788 @find $(OBJTREE) -type f \( -name '*.srec' \
789 -o -name '*.bin' -o -name u-boot.img \) \
790 -print0 | xargs -0 rm -f
Li Yangffda5862008-02-29 11:46:05 +0800791 @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
Wolfgang Denk5013c092008-03-02 22:45:33 +0100792 $(obj)cscope.* $(obj)*.*~
Daniel Schwierzeck4e0fbb92011-07-13 05:11:01 +0000793 @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y)
Prafulla Wadaskaraa0c7a82009-09-07 15:05:02 +0530794 @rm -f $(obj)u-boot.kwb
Stefano Babicc5fb70c2010-02-05 15:13:58 +0100795 @rm -f $(obj)u-boot.imx
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000796 @rm -f $(obj)u-boot.ubl
Simon Glassbbb0b122011-10-15 05:48:21 +0000797 @rm -f $(obj)u-boot.dtb
Marek Vasut30b9b932011-11-08 23:18:19 +0000798 @rm -f $(obj)u-boot.sb
Andreas Bießmanndca61f02011-10-17 22:11:12 +0000799 @rm -f $(obj)tools/inca-swap-bytes
Stefan Roesea47a12b2010-04-15 16:07:28 +0200800 @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
Loïc Miniera9d8bc92011-01-19 13:16:29 +0100801 @rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
Wolfgang Denk16a354f2010-10-26 00:08:35 +0200802 @rm -fr $(obj)include/generated
Jean-Christophe PLAGNIOL-VILLARDa958b662008-08-16 18:54:27 +0200803 @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
804 @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f
Chander Kashyap0d3c62e2011-05-24 20:02:57 +0000805 @[ ! -d $(obj)mmc_spl ] || find $(obj)mmc_spl -name "*" -type l -print | xargs rm -f
Simon Glassbbb0b122011-10-15 05:48:21 +0000806 @rm -f $(obj)dts/*.tmp
wdenk7ebf7442002-11-02 23:17:16 +0000807
808mrproper \
809distclean: clobber unconfig
Mike Frysingerafd077b2011-06-24 18:37:55 +0000810ifneq ($(OBJTREE),$(SRCTREE))
Wolfgang Denkae6d1052008-01-13 00:59:21 +0100811 rm -rf $(obj)*
Marian Balakowiczf9328632006-09-01 19:49:50 +0200812endif
wdenk7ebf7442002-11-02 23:17:16 +0000813
814backup:
815 F=`basename $(TOPDIR)` ; cd .. ; \
Ilya Yanokd6b93712010-06-21 18:13:21 +0400816 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
wdenk7ebf7442002-11-02 23:17:16 +0000817
818#########################################################################