xref: /openbmc/u-boot/Makefile (revision ecddccd0)
17ebf7443Swdenk#
244b333efSChander Kashyap# (C) Copyright 2000-2012
37ebf7443Swdenk# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
47ebf7443Swdenk#
57ebf7443Swdenk# See file CREDITS for list of people who contributed to this
67ebf7443Swdenk# project.
77ebf7443Swdenk#
87ebf7443Swdenk# This program is free software; you can redistribute it and/or
97ebf7443Swdenk# modify it under the terms of the GNU General Public License as
1045a212c4SWolfgang Denk# published by the Free Software Foundatio; either version 2 of
117ebf7443Swdenk# the License, or (at your option) any later version.
127ebf7443Swdenk#
137ebf7443Swdenk# This program is distributed in the hope that it will be useful,
147ebf7443Swdenk# but WITHOUT ANY WARRANTY; without even the implied warranty of
157ebf7443Swdenk# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
167ebf7443Swdenk# GNU General Public License for more details.
177ebf7443Swdenk#
187ebf7443Swdenk# You should have received a copy of the GNU General Public License
197ebf7443Swdenk# along with this program; if not, write to the Free Software
207ebf7443Swdenk# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
217ebf7443Swdenk# MA 02111-1307 USA
227ebf7443Swdenk#
237ebf7443Swdenk
243ae7b240STom RiniVERSION = 2013
252536850dSTom RiniPATCHLEVEL = 04
26211e4754SWolfgang DenkSUBLEVEL =
27d10f68aeSTom RiniEXTRAVERSION =
288b9e4787SWolfgang Denkifneq "$(SUBLEVEL)" ""
29881a87ecSWolfgang DenkU_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
308b9e4787SWolfgang Denkelse
318b9e4787SWolfgang DenkU_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
328b9e4787SWolfgang Denkendif
33efb2172eSSimon GlassTIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h
34efb2172eSSimon GlassVERSION_FILE = $(obj)include/generated/version_autogenerated.h
35881a87ecSWolfgang Denk
367ebf7443SwdenkHOSTARCH := $(shell uname -m | \
37fea25720SGraeme Russ	sed -e s/i.86/x86/ \
387ebf7443Swdenk	    -e s/sun4u/sparc64/ \
397ebf7443Swdenk	    -e s/arm.*/arm/ \
407ebf7443Swdenk	    -e s/sa110/arm/ \
41d0179083SKumar Gala	    -e s/ppc64/powerpc/ \
42d0179083SKumar Gala	    -e s/ppc/powerpc/ \
438d1f6355SNobuhiro Iwamatsu	    -e s/macppc/powerpc/\
448d1f6355SNobuhiro Iwamatsu	    -e s/sh.*/sh/)
457ebf7443Swdenk
46f9d77ed3SWolfgang DenkHOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
477ebf7443Swdenk	    sed -e 's/\(cygwin\).*/cygwin/')
487ebf7443Swdenk
49120ae609SBenoît Thébaudeauexport	HOSTARCH HOSTOS
507ebf7443Swdenk
517ebf7443Swdenk# Deal with colliding definitions from tcsh etc.
527ebf7443SwdenkVENDOR=
537ebf7443Swdenk
547ebf7443Swdenk#########################################################################
55ae6d1056SWolfgang Denk# Allow for silent builds
56ae6d1056SWolfgang Denkifeq (,$(findstring s,$(MAKEFLAGS)))
57ae6d1056SWolfgang DenkXECHO = echo
58ae6d1056SWolfgang Denkelse
59ae6d1056SWolfgang DenkXECHO = :
60ae6d1056SWolfgang Denkendif
61ae6d1056SWolfgang Denk
62ae6d1056SWolfgang Denk#########################################################################
63f9328639SMarian Balakowicz#
64f9328639SMarian Balakowicz# U-boot build supports producing a object files to the separate external
65f9328639SMarian Balakowicz# directory. Two use cases are supported:
66f9328639SMarian Balakowicz#
67f9328639SMarian Balakowicz# 1) Add O= to the make command line
68f9328639SMarian Balakowicz# 'make O=/tmp/build all'
69f9328639SMarian Balakowicz#
70f9328639SMarian Balakowicz# 2) Set environement variable BUILD_DIR to point to the desired location
71f9328639SMarian Balakowicz# 'export BUILD_DIR=/tmp/build'
72f9328639SMarian Balakowicz# 'make'
73f9328639SMarian Balakowicz#
74f9328639SMarian Balakowicz# The second approach can also be used with a MAKEALL script
75f9328639SMarian Balakowicz# 'export BUILD_DIR=/tmp/build'
76f9328639SMarian Balakowicz# './MAKEALL'
77f9328639SMarian Balakowicz#
78f9328639SMarian Balakowicz# Command line 'O=' setting overrides BUILD_DIR environent variable.
79f9328639SMarian Balakowicz#
80f9328639SMarian Balakowicz# When none of the above methods is used the local build is performed and
81f9328639SMarian Balakowicz# the object files are placed in the source directory.
82f9328639SMarian Balakowicz#
837ebf7443Swdenk
84f9328639SMarian Balakowiczifdef O
85f9328639SMarian Balakowiczifeq ("$(origin O)", "command line")
86f9328639SMarian BalakowiczBUILD_DIR := $(O)
87f9328639SMarian Balakowiczendif
88f9328639SMarian Balakowiczendif
897ebf7443Swdenk
904ab64933SKim Phillips# Call a source code checker (by default, "sparse") as part of the
914ab64933SKim Phillips# C compilation.
924ab64933SKim Phillips#
934ab64933SKim Phillips# Use 'make C=1' to enable checking of re-compiled files.
944ab64933SKim Phillips#
954ab64933SKim Phillips# See the linux kernel file "Documentation/sparse.txt" for more details,
964ab64933SKim Phillips# including where to get the "sparse" utility.
974ab64933SKim Phillips
984ab64933SKim Phillipsifdef C
994ab64933SKim Phillipsifeq ("$(origin C)", "command line")
1004ab64933SKim PhillipsCHECKSRC := $(C)
1014ab64933SKim Phillipsendif
1024ab64933SKim Phillipsendif
1034ab64933SKim Phillipsifndef CHECKSRC
1044ab64933SKim Phillips  CHECKSRC = 0
1054ab64933SKim Phillipsendif
1064ab64933SKim Phillipsexport CHECKSRC
1074ab64933SKim Phillips
108f9328639SMarian Balakowiczifneq ($(BUILD_DIR),)
109f9328639SMarian Balakowiczsaved-output := $(BUILD_DIR)
1104f0645ebSMarian Balakowicz
1114f0645ebSMarian Balakowicz# Attempt to create a output directory.
1124f0645ebSMarian Balakowicz$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
1134f0645ebSMarian Balakowicz
1144f0645ebSMarian Balakowicz# Verify if it was successful.
115f9328639SMarian BalakowiczBUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
116f9328639SMarian Balakowicz$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
117f9328639SMarian Balakowiczendif # ifneq ($(BUILD_DIR),)
118f9328639SMarian Balakowicz
119f9328639SMarian BalakowiczOBJTREE		:= $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
120c8f9c302SDaniel SchwierzeckSPLTREE		:= $(OBJTREE)/spl
121f9328639SMarian BalakowiczSRCTREE		:= $(CURDIR)
122f9328639SMarian BalakowiczTOPDIR		:= $(SRCTREE)
123f9328639SMarian BalakowiczLNDIR		:= $(OBJTREE)
124c8f9c302SDaniel Schwierzeckexport	TOPDIR SRCTREE OBJTREE SPLTREE
125f9328639SMarian Balakowicz
126f9328639SMarian BalakowiczMKCONFIG	:= $(SRCTREE)/mkconfig
127f9328639SMarian Balakowiczexport MKCONFIG
128f9328639SMarian Balakowicz
129f9328639SMarian Balakowiczifneq ($(OBJTREE),$(SRCTREE))
130f9328639SMarian BalakowiczREMOTE_BUILD	:= 1
131f9328639SMarian Balakowiczexport REMOTE_BUILD
132f9328639SMarian Balakowiczendif
133f9328639SMarian Balakowicz
134f9328639SMarian Balakowicz# $(obj) and (src) are defined in config.mk but here in main Makefile
135f9328639SMarian Balakowicz# we also need them before config.mk is included which is the case for
136f9328639SMarian Balakowicz# some targets like unconfig, clean, clobber, distclean, etc.
137f9328639SMarian Balakowiczifneq ($(OBJTREE),$(SRCTREE))
138f9328639SMarian Balakowiczobj := $(OBJTREE)/
139f9328639SMarian Balakowiczsrc := $(SRCTREE)/
140f9328639SMarian Balakowiczelse
141f9328639SMarian Balakowiczobj :=
142f9328639SMarian Balakowiczsrc :=
143f9328639SMarian Balakowiczendif
144f9328639SMarian Balakowiczexport obj src
145f9328639SMarian Balakowicz
1465013c09fSWolfgang Denk# Make sure CDPATH settings don't interfere
1475013c09fSWolfgang Denkunexport CDPATH
1485013c09fSWolfgang Denk
149f9328639SMarian Balakowicz#########################################################################
150f9328639SMarian Balakowicz
1516d1ce387SMike Frysinger# The "tools" are needed early, so put this first
1526d1ce387SMike Frysinger# Don't include stuff already done in $(LIBS)
153349e83f0SChe-liang Chiou# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
154349e83f0SChe-liang Chiou# is "yes"), so compile examples after U-Boot is compiled.
155349e83f0SChe-liang ChiouSUBDIR_TOOLS = tools
156349e83f0SChe-liang ChiouSUBDIR_EXAMPLES = examples/standalone examples/api
157349e83f0SChe-liang ChiouSUBDIRS = $(SUBDIR_TOOLS)
1586d1ce387SMike Frysinger
159249b53a6SLoïc Minier.PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
1606d1ce387SMike Frysinger
161ae6d1056SWolfgang Denkifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
162f9328639SMarian Balakowicz
1632632c008SMike Frysinger# Include autoconf.mk before config.mk so that the config options are available
1642632c008SMike Frysinger# to all top level build files.  We need the dummy all: target to prevent the
1652632c008SMike Frysinger# dependency target in autoconf.mk.dep from being the default.
1662632c008SMike Frysingerall:
1672632c008SMike Frysingersinclude $(obj)include/autoconf.mk.dep
1682632c008SMike Frysingersinclude $(obj)include/autoconf.mk
1692632c008SMike Frysinger
170b5728756SSimon Glassifndef CONFIG_SANDBOX
171b5728756SSimon GlassSUBDIRS += $(SUBDIR_EXAMPLES)
172b5728756SSimon Glassendif
173b5728756SSimon Glass
1747ebf7443Swdenk# load ARCH, BOARD, and CPU configuration
175ae6d1056SWolfgang Denkinclude $(obj)include/config.mk
1761d9f4105Swdenkexport	ARCH CPU BOARD VENDOR SOC
177f9328639SMarian Balakowicz
1781ea6bcd8SMike Frysinger# set default to nothing for native builds
179a5284efdSWolfgang Denkifeq ($(HOSTARCH),$(ARCH))
1801ea6bcd8SMike FrysingerCROSS_COMPILE ?=
1817ebf7443Swdenkendif
1827ebf7443Swdenk
18392b197f0SWolfgang Denk# load other configuration
18492b197f0SWolfgang Denkinclude $(TOPDIR)/config.mk
18592b197f0SWolfgang Denk
186d51dfff7SIlya Yanok# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
187d51dfff7SIlya Yanok# that (or fail if absent).  Otherwise, search for a linker script in a
188d51dfff7SIlya Yanok# standard location.
189d51dfff7SIlya Yanok
190ee60197eSSimon GlassLDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT))
191ee60197eSSimon Glass
192d51dfff7SIlya Yanokifndef LDSCRIPT
193d51dfff7SIlya Yanok	#LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
194d51dfff7SIlya Yanok	ifdef CONFIG_SYS_LDSCRIPT
195d51dfff7SIlya Yanok		# need to strip off double quotes
196d51dfff7SIlya Yanok		LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
197d51dfff7SIlya Yanok	endif
198d51dfff7SIlya Yanokendif
199d51dfff7SIlya Yanok
200ee60197eSSimon Glass# If there is no specified link script, we look in a number of places for it
201d51dfff7SIlya Yanokifndef LDSCRIPT
202d51dfff7SIlya Yanok	ifeq ($(CONFIG_NAND_U_BOOT),y)
203d51dfff7SIlya Yanok		LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
204d51dfff7SIlya Yanok		ifeq ($(wildcard $(LDSCRIPT)),)
205d51dfff7SIlya Yanok			LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
206d51dfff7SIlya Yanok		endif
207d51dfff7SIlya Yanok	endif
208d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
209d51dfff7SIlya Yanok		LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
210d51dfff7SIlya Yanok	endif
211d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
212d51dfff7SIlya Yanok		LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
213d51dfff7SIlya Yanok	endif
214d51dfff7SIlya Yanok	ifeq ($(wildcard $(LDSCRIPT)),)
215ee60197eSSimon Glass		LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds
216ee60197eSSimon Glass		# We don't expect a Makefile here
217ee60197eSSimon Glass		LDSCRIPT_MAKEFILE_DIR =
218ee60197eSSimon Glass	endif
219ee60197eSSimon Glass	ifeq ($(wildcard $(LDSCRIPT)),)
220d51dfff7SIlya Yanok$(error could not find linker script)
221d51dfff7SIlya Yanok	endif
222d51dfff7SIlya Yanokendif
223d51dfff7SIlya Yanok
2247ebf7443Swdenk#########################################################################
2257ebf7443Swdenk# U-Boot objects....order is important (i.e. start must be first)
2267ebf7443Swdenk
22703b7004dSPeter TyserOBJS  = $(CPUDIR)/start.o
2287ebf7443Swdenkifeq ($(CPU),ppc4xx)
22903b7004dSPeter TyserOBJS += $(CPUDIR)/resetvec.o
2307ebf7443Swdenkendif
23142d1f039Swdenkifeq ($(CPU),mpc85xx)
23203b7004dSPeter TyserOBJS += $(CPUDIR)/resetvec.o
23342d1f039Swdenkendif
2347ebf7443Swdenk
235a32e626fSSimon GlassOBJS := $(addprefix $(obj),$(OBJS))
236f9328639SMarian Balakowicz
2378b5a0264SDaniel SchwierzeckHAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n)
2388b5a0264SDaniel Schwierzeck
239f52d7b35SDaniel SchwierzeckLIBS-y += lib/libgeneric.o
240f52d7b35SDaniel SchwierzeckLIBS-y += lib/lzma/liblzma.o
241f52d7b35SDaniel SchwierzeckLIBS-y += lib/lzo/liblzo.o
242f52d7b35SDaniel SchwierzeckLIBS-y += lib/zlib/libz.o
2438b5a0264SDaniel SchwierzeckLIBS-$(CONFIG_TIZEN) += lib/tizen/libtizen.o
2448b5a0264SDaniel SchwierzeckLIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o
245f52d7b35SDaniel SchwierzeckLIBS-y += $(CPUDIR)/lib$(CPU).o
2461d9f4105Swdenkifdef SOC
247f52d7b35SDaniel SchwierzeckLIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o
2481d9f4105Swdenkendif
249323bfa8fSStefan Roeseifeq ($(CPU),ixp)
25061e12988SMarek VasutLIBS-y += drivers/net/npe/libnpe.o
251323bfa8fSStefan Roeseendif
2528b5a0264SDaniel SchwierzeckLIBS-$(CONFIG_OF_EMBED) += dts/libdts.o
253f52d7b35SDaniel SchwierzeckLIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
254045fa1e1SStephen WarrenLIBS-y += fs/libfs.o \
255045fa1e1SStephen Warren	fs/cbfs/libcbfs.o \
25684cd9327SGabe Black	fs/cramfs/libcramfs.o \
257a1596438SUma Shankar	fs/ext4/libext4fs.o \
258a1596438SUma Shankar	fs/fat/libfat.o \
259a1596438SUma Shankar	fs/fdos/libfdos.o \
260a1596438SUma Shankar	fs/jffs2/libjffs2.o \
261a1596438SUma Shankar	fs/reiserfs/libreiserfs.o \
26292ccc96bSSimon Glass	fs/sandbox/libsandboxfs.o \
263a1596438SUma Shankar	fs/ubifs/libubifs.o \
264a1596438SUma Shankar	fs/yaffs2/libyaffs2.o \
265a1596438SUma Shankar	fs/zfs/libzfs.o
266f52d7b35SDaniel SchwierzeckLIBS-y += net/libnet.o
267f52d7b35SDaniel SchwierzeckLIBS-y += disk/libdisk.o
268f52d7b35SDaniel SchwierzeckLIBS-y += drivers/bios_emulator/libatibiosemu.o
269f52d7b35SDaniel SchwierzeckLIBS-y += drivers/block/libblock.o
2700044c42eSStefan RoeseLIBS-$(CONFIG_BOOTCOUNT_LIMIT) += drivers/bootcount/libbootcount.o
271acbb1eb7SAkshay SaraswatLIBS-y += drivers/crypto/libcrypto.o
272f52d7b35SDaniel SchwierzeckLIBS-y += drivers/dma/libdma.o
273f52d7b35SDaniel SchwierzeckLIBS-y += drivers/fpga/libfpga.o
274f52d7b35SDaniel SchwierzeckLIBS-y += drivers/gpio/libgpio.o
275f52d7b35SDaniel SchwierzeckLIBS-y += drivers/hwmon/libhwmon.o
276f52d7b35SDaniel SchwierzeckLIBS-y += drivers/i2c/libi2c.o
277f52d7b35SDaniel SchwierzeckLIBS-y += drivers/input/libinput.o
278f52d7b35SDaniel SchwierzeckLIBS-y += drivers/misc/libmisc.o
279f52d7b35SDaniel SchwierzeckLIBS-y += drivers/mmc/libmmc.o
280f52d7b35SDaniel SchwierzeckLIBS-y += drivers/mtd/libmtd.o
281f52d7b35SDaniel SchwierzeckLIBS-y += drivers/mtd/nand/libnand.o
282f52d7b35SDaniel SchwierzeckLIBS-y += drivers/mtd/onenand/libonenand.o
283f52d7b35SDaniel SchwierzeckLIBS-y += drivers/mtd/ubi/libubi.o
284f52d7b35SDaniel SchwierzeckLIBS-y += drivers/mtd/spi/libspi_flash.o
285f52d7b35SDaniel SchwierzeckLIBS-y += drivers/net/libnet.o
286f52d7b35SDaniel SchwierzeckLIBS-y += drivers/net/phy/libphy.o
287f52d7b35SDaniel SchwierzeckLIBS-y += drivers/pci/libpci.o
288f52d7b35SDaniel SchwierzeckLIBS-y += drivers/pcmcia/libpcmcia.o
289e0a0cbf2SŁukasz MajewskiLIBS-y += drivers/power/libpower.o \
290b95aacd3SŁukasz Majewski	drivers/power/fuel_gauge/libfuel_gauge.o \
291eba42391SŁukasz Majewski	drivers/power/pmic/libpmic.o \
292eba42391SŁukasz Majewski	drivers/power/battery/libbattery.o
293f52d7b35SDaniel SchwierzeckLIBS-y += drivers/spi/libspi.o
294f22b11c1SLukasz MajewskiLIBS-y += drivers/dfu/libdfu.o
2957737d5c6SDave Liuifeq ($(CPU),mpc83xx)
296f52d7b35SDaniel SchwierzeckLIBS-y += drivers/qe/libqe.o
297f52d7b35SDaniel SchwierzeckLIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
298f52d7b35SDaniel SchwierzeckLIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
2997737d5c6SDave Liuendif
300da9d4610SAndy Flemingifeq ($(CPU),mpc85xx)
301f52d7b35SDaniel SchwierzeckLIBS-y += drivers/qe/libqe.o
302f52d7b35SDaniel SchwierzeckLIBS-y += drivers/net/fm/libfm.o
303f52d7b35SDaniel SchwierzeckLIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
304f52d7b35SDaniel SchwierzeckLIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
30558e5e9afSKumar Galaendif
30658e5e9afSKumar Galaifeq ($(CPU),mpc86xx)
307f52d7b35SDaniel SchwierzeckLIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
308f52d7b35SDaniel SchwierzeckLIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
309da9d4610SAndy Flemingendif
310f52d7b35SDaniel SchwierzeckLIBS-y += drivers/rtc/librtc.o
311f52d7b35SDaniel SchwierzeckLIBS-y += drivers/serial/libserial.o
312511ed5fdSRajeshwari ShindeLIBS-y += drivers/sound/libsound.o
313f6267998SRong ChangLIBS-y += drivers/tpm/libtpm.o
314f52d7b35SDaniel SchwierzeckLIBS-y += drivers/twserial/libtws.o
315f52d7b35SDaniel SchwierzeckLIBS-y += drivers/usb/eth/libusb_eth.o
316f52d7b35SDaniel SchwierzeckLIBS-y += drivers/usb/gadget/libusb_gadget.o
317f52d7b35SDaniel SchwierzeckLIBS-y += drivers/usb/host/libusb_host.o
318f52d7b35SDaniel SchwierzeckLIBS-y += drivers/usb/musb/libusb_musb.o
319eb81955bSIlya YanokLIBS-y += drivers/usb/musb-new/libusb_musb-new.o
320f52d7b35SDaniel SchwierzeckLIBS-y += drivers/usb/phy/libusb_phy.o
321f52d7b35SDaniel SchwierzeckLIBS-y += drivers/usb/ulpi/libusb_ulpi.o
322f52d7b35SDaniel SchwierzeckLIBS-y += drivers/video/libvideo.o
323f52d7b35SDaniel SchwierzeckLIBS-y += drivers/watchdog/libwatchdog.o
324f52d7b35SDaniel SchwierzeckLIBS-y += common/libcommon.o
325f52d7b35SDaniel SchwierzeckLIBS-y += lib/libfdt/libfdt.o
326f52d7b35SDaniel SchwierzeckLIBS-y += api/libapi.o
327f52d7b35SDaniel SchwierzeckLIBS-y += post/libpost.o
328f52d7b35SDaniel SchwierzeckLIBS-y += test/libtest.o
329f9328639SMarian Balakowicz
330ea7b96b6SMatt Porterifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX)$(CONFIG_TI814X),)
331f52d7b35SDaniel SchwierzeckLIBS-y += $(CPUDIR)/omap-common/libomap-common.o
332f0f4b5ffSChandan Nathendif
33318936ee2SJason Liu
334ea00e59bSStefano Babicifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35))
335ea00e59bSStefano BabicLIBS-y += arch/$(ARCH)/imx-common/libimx-common.o
33618936ee2SJason Liuendif
33718936ee2SJason Liu
338852bd07cSMinkyu Kangifeq ($(SOC),s5pc1xx)
339f52d7b35SDaniel SchwierzeckLIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
340852bd07cSMinkyu Kangendif
341393cb361SChander Kashyapifeq ($(SOC),exynos)
342f52d7b35SDaniel SchwierzeckLIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
343852bd07cSMinkyu Kangendif
3446d6c0baeSTom Warrenifneq ($(CONFIG_TEGRA),)
345d9e73a87SAllen MartinLIBS-y += arch/$(ARCH)/cpu/$(SOC)-common/lib$(SOC)-common.o
3463064f322STom WarrenLIBS-y += arch/$(ARCH)/cpu/tegra-common/libcputegra-common.o
3473064f322STom WarrenLIBS-y += $(CPUDIR)/tegra-common/libtegra-common.o
348d9e73a87SAllen Martinendif
349852bd07cSMinkyu Kang
350f52d7b35SDaniel SchwierzeckLIBS := $(addprefix $(obj),$(sort $(LIBS-y)))
351249b53a6SLoïc Minier.PHONY : $(LIBS)
352a8c7c708Swdenk
3536d8962e8SSebastien CarlierLIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o
354de109d90SWolfgang DenkLIBBOARD := $(addprefix $(obj),$(LIBBOARD))
355de109d90SWolfgang Denk
3564f7cb08eSwdenk# Add GCC lib
35752b1bf2cSWolfgang Denkifdef USE_PRIVATE_LIBGCC
35852b1bf2cSWolfgang Denkifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
359635d1b3eSMatthias WeisserPLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
36052b1bf2cSWolfgang Denkelse
36152b1bf2cSWolfgang DenkPLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
36252b1bf2cSWolfgang Denkendif
36352b1bf2cSWolfgang Denkelse
364cca4e4aeSWolfgang DenkPLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
36552b1bf2cSWolfgang Denkendif
36652b1bf2cSWolfgang DenkPLATFORM_LIBS += $(PLATFORM_LIBGCC)
36752b1bf2cSWolfgang Denkexport PLATFORM_LIBS
3683d3befa7Swdenk
3696ac9f479SMike Frysinger# Special flags for CPP when processing the linker script.
3706ac9f479SMike Frysinger# Pass the version down so we can handle backwards compatibility
3716ac9f479SMike Frysinger# on the fly.
3726ac9f479SMike FrysingerLDPPFLAGS += \
3736ac9f479SMike Frysinger	-include $(TOPDIR)/include/u-boot/u-boot.lds.h \
3747e6403a6SSimon Glass	-DCPUDIR=$(CPUDIR) \
3756ac9f479SMike Frysinger	$(shell $(LD) --version | \
3766ac9f479SMike Frysinger	  sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
3776ac9f479SMike Frysinger
378f9328639SMarian Balakowicz__OBJS := $(subst $(obj),,$(OBJS))
379de109d90SWolfgang Denk__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
380f9328639SMarian Balakowicz
3817ebf7443Swdenk#########################################################################
382bdccc4feSwdenk#########################################################################
3837ebf7443Swdenk
384f3a14d37SMike Frysingerifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
385f3a14d37SMike FrysingerBOARD_SIZE_CHECK = \
386f3a14d37SMike Frysinger	@actual=`wc -c $@ | awk '{print $$1}'`; \
387d060e6f4SJoe Hershberger	limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \
388f3a14d37SMike Frysinger	if test $$actual -gt $$limit; then \
389d060e6f4SJoe Hershberger		echo "$@ exceeds file size limit:" >&2 ; \
390d060e6f4SJoe Hershberger		echo "  limit:  $$limit bytes" >&2 ; \
391d060e6f4SJoe Hershberger		echo "  actual: $$actual bytes" >&2 ; \
392d060e6f4SJoe Hershberger		echo "  excess: $$((actual - limit)) bytes" >&2; \
393f3a14d37SMike Frysinger		exit 1; \
394f3a14d37SMike Frysinger	fi
395f3a14d37SMike Frysingerelse
396f3a14d37SMike FrysingerBOARD_SIZE_CHECK =
397f3a14d37SMike Frysingerendif
398f3a14d37SMike Frysinger
3993e88337bSMike Frysinger# Always append ALL so that arch config.mk's can add custom ones
4004e0fbb98SDaniel SchwierzeckALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map
401e935a374SHaiying Wang
4024e0fbb98SDaniel SchwierzeckALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin
4034e0fbb98SDaniel SchwierzeckALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin
4045df2ee27SDaniel SchwierzeckALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin
4052c0f79e4SSimon GlassALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin
406b343bbb5SVadim Bendeburyifneq ($(CONFIG_SPL_TARGET),)
407b343bbb5SVadim BendeburyALL-$(CONFIG_SPL) += $(obj)$(subst ",,$(CONFIG_SPL_TARGET))
408b343bbb5SVadim Bendeburyendif
4097ebf7443Swdenk
41012b7b70cSAllen Martin# enable combined SPL/u-boot/dtb rules for tegra
4116d6c0baeSTom Warrenifneq ($(CONFIG_TEGRA),)
41212b7b70cSAllen Martinifeq ($(CONFIG_OF_SEPARATE),y)
41312b7b70cSAllen MartinALL-y += $(obj)u-boot-dtb-tegra.bin
41412b7b70cSAllen Martinelse
41512b7b70cSAllen MartinALL-y += $(obj)u-boot-nodtb-tegra.bin
41612b7b70cSAllen Martinendif
41712b7b70cSAllen Martinendif
41812b7b70cSAllen Martin
419349e83f0SChe-liang Chiouall:		$(ALL-y) $(SUBDIR_EXAMPLES)
4207ebf7443Swdenk
4212c0f79e4SSimon Glass$(obj)u-boot.dtb:	$(obj)u-boot
4222c0f79e4SSimon Glass		$(MAKE) -C dts binary
4232c0f79e4SSimon Glass		mv $(obj)dts/dt.dtb $@
4242c0f79e4SSimon Glass
4252c0f79e4SSimon Glass$(obj)u-boot-dtb.bin:	$(obj)u-boot.bin $(obj)u-boot.dtb
4262c0f79e4SSimon Glass		cat $^ >$@
4272c0f79e4SSimon Glass
428f9328639SMarian Balakowicz$(obj)u-boot.hex:	$(obj)u-boot
4296310eb9dSwdenk		$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
4306310eb9dSwdenk
431f9328639SMarian Balakowicz$(obj)u-boot.srec:	$(obj)u-boot
4320817d688SRicardo Ribalda Delgado		$(OBJCOPY) -O srec $< $@
4337ebf7443Swdenk
434f9328639SMarian Balakowicz$(obj)u-boot.bin:	$(obj)u-boot
4357ebf7443Swdenk		$(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
436f3a14d37SMike Frysinger		$(BOARD_SIZE_CHECK)
4377ebf7443Swdenk
43894a91e24SMike Frysinger$(obj)u-boot.ldr:	$(obj)u-boot
43976d82187SMike Frysinger		$(CREATE_LDR_ENV)
44068e56324SMike Frysinger		$(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
441f3a14d37SMike Frysinger		$(BOARD_SIZE_CHECK)
44294a91e24SMike Frysinger
44394a91e24SMike Frysinger$(obj)u-boot.ldr.hex:	$(obj)u-boot.ldr
44494a91e24SMike Frysinger		$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
44594a91e24SMike Frysinger
44694a91e24SMike Frysinger$(obj)u-boot.ldr.srec:	$(obj)u-boot.ldr
44794a91e24SMike Frysinger		$(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
44894a91e24SMike Frysinger
449b40bda6bSStefan Roese#
450b40bda6bSStefan Roese# U-Boot entry point, needed for booting of full-blown U-Boot
451b40bda6bSStefan Roese# from the SPL U-Boot version.
452b40bda6bSStefan Roese#
453b40bda6bSStefan Roeseifndef CONFIG_SYS_UBOOT_START
454b40bda6bSStefan RoeseCONFIG_SYS_UBOOT_START := 0
455b40bda6bSStefan Roeseendif
456b40bda6bSStefan Roese
457f9328639SMarian Balakowicz$(obj)u-boot.img:	$(obj)u-boot.bin
458a2a0a717SWolfgang Denk		$(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
459b40bda6bSStefan Roese		-O u-boot -a $(CONFIG_SYS_TEXT_BASE) \
460b40bda6bSStefan Roese		-e $(CONFIG_SYS_UBOOT_START) \
461881a87ecSWolfgang Denk		-n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
462bdccc4feSwdenk			sed -e 's/"[	 ]*$$/ for $(BOARD) board"/') \
463bdccc4feSwdenk		-d $< $@
464bdccc4feSwdenk
465291b3dcdSOtavio Salvador$(obj)u-boot.imx: $(obj)u-boot.bin depend
466291b3dcdSOtavio Salvador		$(MAKE) -C $(SRCTREE)/arch/arm/imx-common $(OBJTREE)/u-boot.imx
4678edcde5eSStefano Babic
468aa0c7a86SPrafulla Wadaskar$(obj)u-boot.kwb:       $(obj)u-boot.bin
46931d80c77SPrafulla Wadaskar		$(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
4702ea88b06SEric Cooper		-a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
471aa0c7a86SPrafulla Wadaskar
4725d898a00SShaohui Xie$(obj)u-boot.pbl:	$(obj)u-boot.bin
4735d898a00SShaohui Xie		$(obj)tools/mkimage -n $(CONFIG_PBLRCW_CONFIG) \
4745d898a00SShaohui Xie		-R $(CONFIG_PBLPBI_CONFIG) -T pblimage \
4755d898a00SShaohui Xie		-d $< $@
4765d898a00SShaohui Xie
477566a494fSHeiko Schocher$(obj)u-boot.sha1:	$(obj)u-boot.bin
47801159530SHeiko Schocher		$(obj)tools/ubsha1 $(obj)u-boot.bin
479566a494fSHeiko Schocher
480f9328639SMarian Balakowicz$(obj)u-boot.dis:	$(obj)u-boot
4817ebf7443Swdenk		$(OBJDUMP) -d $< > $@
4827ebf7443Swdenk
48374752baaSScott Wood
48474752baaSScott Wood
4855364add4SScott Wood$(obj)u-boot-with-spl.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
4866113d3f2SBenoît Thébaudeau		$(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SPL_PAD_TO) \
4876113d3f2SBenoît Thébaudeau			-I binary -O binary $< $(obj)spl/u-boot-spl-pad.bin
4885364add4SScott Wood		cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@
489435199f3SHeiko Schocher		rm $(obj)spl/u-boot-spl-pad.bin
4907816f2cfSHeiko Schocher
491ba597609SBenoît Thébaudeau$(obj)u-boot-with-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
492ba597609SBenoît Thébaudeau		$(MAKE) -C $(SRCTREE)/arch/arm/imx-common \
493ba597609SBenoît Thébaudeau			$(OBJTREE)/u-boot-with-spl.imx
494ba597609SBenoît Thébaudeau
4957d5a5c79SBenoît Thébaudeau$(obj)u-boot-with-nand-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
4967d5a5c79SBenoît Thébaudeau		$(MAKE) -C $(SRCTREE)/arch/arm/imx-common \
4977d5a5c79SBenoît Thébaudeau			$(OBJTREE)/u-boot-with-nand-spl.imx
4987d5a5c79SBenoît Thébaudeau
4995364add4SScott Wood$(obj)u-boot.ubl:       $(obj)u-boot-with-spl.bin
500277f00f5SJosé Miguel Gonçalves		$(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \
5015364add4SScott Wood		-e $(CONFIG_SYS_TEXT_BASE) -d $< $(obj)u-boot.ubl
502277f00f5SJosé Miguel Gonçalves
5033f7f2414STom Rini$(obj)u-boot.ais:       $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
5046d660e77SSughosh Ganu		$(obj)tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(CONFIG_AIS_CONFIG_FILE),"/dev/null") \
5056d660e77SSughosh Ganu			-T aisimage \
506d36d8859SChristian Riesch			-e $(CONFIG_SPL_TEXT_BASE) \
507d36d8859SChristian Riesch			-d $(obj)spl/u-boot-spl.bin \
508d36d8859SChristian Riesch			$(obj)spl/u-boot-spl.ais
509d36d8859SChristian Riesch		$(OBJCOPY) ${OBJCFLAGS} -I binary \
510d36d8859SChristian Riesch			--pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \
511d36d8859SChristian Riesch			$(obj)spl/u-boot-spl.ais $(obj)spl/u-boot-spl-pad.ais
5123f7f2414STom Rini		cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.img > \
513d36d8859SChristian Riesch			$(obj)u-boot.ais
514d36d8859SChristian Riesch
515a5453555SOtavio Salvador# Specify the target for use in elftosb call
516e6d93c26SOtavio SalvadorELFTOSB_TARGET-$(CONFIG_MX23) = imx23
517a5453555SOtavio SalvadorELFTOSB_TARGET-$(CONFIG_MX28) = imx28
518a5453555SOtavio Salvador
51930b9b932SMarek Vasut$(obj)u-boot.sb:       $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin
52058bcadd9SMarek Vasut		elftosb -zf $(ELFTOSB_TARGET-y) -c $(TOPDIR)/$(CPUDIR)/$(SOC)/u-boot-$(ELFTOSB_TARGET-y).bd \
52130b9b932SMarek Vasut			-o $(obj)u-boot.sb
52230b9b932SMarek Vasut
52394aebe6cSStefan Roese# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.
52494aebe6cSStefan Roese# Both images are created using mkimage (crc etc), so that the ROM
52594aebe6cSStefan Roese# bootloader can check its integrity. Padding needs to be done to the
52694aebe6cSStefan Roese# SPL image (with mkimage header) and not the binary. Otherwise the resulting image
52794aebe6cSStefan Roese# which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
52894aebe6cSStefan Roese# The resulting image containing both U-Boot images is called u-boot.spr
52994aebe6cSStefan Roese$(obj)u-boot.spr:	$(obj)u-boot.img $(obj)spl/u-boot-spl.bin
53094aebe6cSStefan Roese		$(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
53194aebe6cSStefan Roese		-a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \
53294aebe6cSStefan Roese		-d $(obj)spl/u-boot-spl.bin $(obj)spl/u-boot-spl.img
53394aebe6cSStefan Roese		tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_SPL_PAD_TO) \
53494aebe6cSStefan Roese			of=$(obj)spl/u-boot-spl-pad.img 2>/dev/null
53594aebe6cSStefan Roese		dd if=$(obj)spl/u-boot-spl.img of=$(obj)spl/u-boot-spl-pad.img \
53694aebe6cSStefan Roese			conv=notrunc 2>/dev/null
53794aebe6cSStefan Roese		cat $(obj)spl/u-boot-spl-pad.img $(obj)u-boot.img > $@
53894aebe6cSStefan Roese
5396d6c0baeSTom Warrenifneq ($(CONFIG_TEGRA),)
540984df4ecSAllen Martinifeq ($(CONFIG_OF_SEPARATE),y)
541e4ec9346SStephen Warrennodtb=dtb
542e4ec9346SStephen Warrendtbfile=$(obj)u-boot.dtb
543984df4ecSAllen Martinelse
544e4ec9346SStephen Warrennodtb=nodtb
545e4ec9346SStephen Warrendtbfile=
546984df4ecSAllen Martinendif
547e4ec9346SStephen Warren
548e4ec9346SStephen Warren$(obj)u-boot-$(nodtb)-tegra.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin $(dtbfile)
549e4ec9346SStephen Warren		$(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
550e4ec9346SStephen Warren		cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin $(dtbfile) > $@
551e4ec9346SStephen Warren		rm $(obj)spl/u-boot-spl-pad.bin
552984df4ecSAllen Martinendif
553984df4ecSAllen Martin
554fb3d2b8aSStefan Roese$(obj)u-boot-img.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
555fb3d2b8aSStefan Roese		cat $(obj)spl/u-boot-spl.bin $(obj)u-boot.img > $@
556fb3d2b8aSStefan Roese
557*ecddccd0SStefan Roese# PPC4xx needs the SPL at the end of the image, since the reset vector
558*ecddccd0SStefan Roese# is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target
559*ecddccd0SStefan Roese# and need to introduce a new build target with the full blown U-Boot
560*ecddccd0SStefan Roese# at the start padded up to the start of the SPL image. And then concat
561*ecddccd0SStefan Roese# the SPL image to the end.
562*ecddccd0SStefan Roese$(obj)u-boot-img-spl-at-end.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
563*ecddccd0SStefan Roese		tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_UBOOT_PAD_TO) \
564*ecddccd0SStefan Roese			of=$(obj)u-boot-pad.img 2>/dev/null
565*ecddccd0SStefan Roese		dd if=$(obj)u-boot.img of=$(obj)u-boot-pad.img \
566*ecddccd0SStefan Roese			conv=notrunc 2>/dev/null
567*ecddccd0SStefan Roese		cat $(obj)u-boot-pad.img $(obj)spl/u-boot-spl.bin > $@
568*ecddccd0SStefan Roese
56986eb49b3SSimon Glassifeq ($(CONFIG_SANDBOX),y)
57086eb49b3SSimon GlassGEN_UBOOT = \
57186eb49b3SSimon Glass		cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \
57286eb49b3SSimon Glass			-Wl,--start-group $(__LIBS) -Wl,--end-group \
57386eb49b3SSimon Glass			$(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
57486eb49b3SSimon Glasselse
575ecb1dc89SMike FrysingerGEN_UBOOT = \
57697b24d3dSMarek Vasut		cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
577ef123c52SAlbert ARIBAUD			$(__OBJS) \
578f9328639SMarian Balakowicz			--start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
579b2184c31Swdenk			-Map u-boot.map -o u-boot
58086eb49b3SSimon Glassendif
58186eb49b3SSimon Glass
58216a354f9SWolfgang Denk$(obj)u-boot:	depend \
583349e83f0SChe-liang Chiou		$(SUBDIR_TOOLS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
584ecb1dc89SMike Frysinger		$(GEN_UBOOT)
585ecb1dc89SMike Frysingerifeq ($(CONFIG_KALLSYMS),y)
5868a156fb6SMike Frysinger		smap=`$(call SYSTEM_MAP,$(obj)u-boot) | \
5871aada9cdSWolfgang Denk			awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
5881aada9cdSWolfgang Denk		$(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
5891aada9cdSWolfgang Denk			-c common/system_map.c -o $(obj)common/system_map.o
590ecb1dc89SMike Frysinger		$(GEN_UBOOT) $(obj)common/system_map.o
591ecb1dc89SMike Frysingerendif
5927ebf7443Swdenk
593d0d6144eSPeter Tyser$(OBJS):	depend
59403b7004dSPeter Tyser		$(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
595f9328639SMarian Balakowicz
596349e83f0SChe-liang Chiou$(LIBS):	depend $(SUBDIR_TOOLS)
597f9328639SMarian Balakowicz		$(MAKE) -C $(dir $(subst $(obj),,$@))
598a8c7c708Swdenk
599d0d6144eSPeter Tyser$(LIBBOARD):	depend $(LIBS)
600de109d90SWolfgang Denk		$(MAKE) -C $(dir $(subst $(obj),,$@))
601de109d90SWolfgang Denk
602d0d6144eSPeter Tyser$(SUBDIRS):	depend
603b028f715Swdenk		$(MAKE) -C $@ all
6047ebf7443Swdenk
605349e83f0SChe-liang Chiou$(SUBDIR_EXAMPLES): $(obj)u-boot
606349e83f0SChe-liang Chiou
607d0d6144eSPeter Tyser$(LDSCRIPT):	depend
608f65c9812SMike Frysinger		$(MAKE) -C $(dir $@) $(notdir $@)
609f65c9812SMike Frysinger
610ef123c52SAlbert ARIBAUD$(obj)u-boot.lds: $(LDSCRIPT)
61197b24d3dSMarek Vasut		$(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@
6121aada9cdSWolfgang Denk
613e935a374SHaiying Wangnand_spl:	$(TIMESTAMP_FILE) $(VERSION_FILE) depend
6148318fbf8SMarian Balakowicz		$(MAKE) -C nand_spl/board/$(BOARDDIR) all
615887e2ec9SStefan Roese
616e935a374SHaiying Wang$(obj)u-boot-nand.bin:	nand_spl $(obj)u-boot.bin
6178318fbf8SMarian Balakowicz		cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
618887e2ec9SStefan Roese
619bd25fdbaSAneesh V$(obj)spl/u-boot-spl.bin:	$(SUBDIR_TOOLS) depend
6205df2ee27SDaniel Schwierzeck		$(MAKE) -C spl all
6215df2ee27SDaniel Schwierzeck
622f9328639SMarian Balakowiczupdater:
6230358df42SMike Frysinger		$(MAKE) -C tools/updater all
6248f713fdfSdzu
6252a998793SDaniel Hobi# Explicitly make _depend in subdirs containing multiple targets to prevent
6262a998793SDaniel Hobi# parallel sub-makes creating .depend files simultaneously.
62716a354f9SWolfgang Denkdepend dep:	$(TIMESTAMP_FILE) $(VERSION_FILE) \
62816a354f9SWolfgang Denk		$(obj)include/autoconf.mk \
629a4814a69SStefano Babic		$(obj)include/generated/generic-asm-offsets.h \
630a4814a69SStefano Babic		$(obj)include/generated/asm-offsets.h
631ee60197eSSimon Glass		for dir in $(SUBDIRS) $(CPUDIR) $(LDSCRIPT_MAKEFILE_DIR) ; do \
6322a998793SDaniel Hobi			$(MAKE) -C $$dir _depend ; done
6337ebf7443Swdenk
634e5e4e705SLi YangTAG_SUBDIRS = $(SUBDIRS)
635e5e4e705SLi YangTAG_SUBDIRS += $(dir $(__LIBS))
636a340c325SJean-Christophe PLAGNIOL-VILLARDTAG_SUBDIRS += include
637a340c325SJean-Christophe PLAGNIOL-VILLARD
638857d9ea6SHorst KronstorferFIND := find
639857d9ea6SHorst KronstorferFINDFLAGS := -L
640857d9ea6SHorst Kronstorfer
6411064d980STom Rinicheckstack:
6421064d980STom Rini		$(CROSS_COMPILE)objdump -d $(obj)u-boot \
6431064d980STom Rini			`$(FIND) $(obj) -name u-boot-spl -print` | \
6441064d980STom Rini			perl $(src)tools/checkstack.pl $(ARCH)
6451064d980STom Rini
646f9328639SMarian Balakowicztags ctags:
647857d9ea6SHorst Kronstorfer		ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
648e5e4e705SLi Yang						-name '*.[chS]' -print`
6497ebf7443Swdenk
6507ebf7443Swdenketags:
651857d9ea6SHorst Kronstorfer		etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
652e5e4e705SLi Yang						-name '*.[chS]' -print`
653ffda586fSLi Yangcscope:
654857d9ea6SHorst Kronstorfer		$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
655857d9ea6SHorst Kronstorfer						cscope.files
656ffda586fSLi Yang		cscope -b -q -k
6577ebf7443Swdenk
658ecb1dc89SMike FrysingerSYSTEM_MAP = \
659ecb1dc89SMike Frysinger		$(NM) $1 | \
6607ebf7443Swdenk		grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
661ecb1dc89SMike Frysinger		LC_ALL=C sort
662ecb1dc89SMike Frysinger$(obj)System.map:	$(obj)u-boot
663ecb1dc89SMike Frysinger		@$(call SYSTEM_MAP,$<) > $(obj)System.map
6647ebf7443Swdenk
66506a119a0STom Rinicheckthumb:
66606a119a0STom Rini	@if test $(call cc-version) -lt 0404; then \
66706a119a0STom Rini		echo -n '*** Your GCC does not produce working '; \
66806a119a0STom Rini		echo 'binaries in THUMB mode.'; \
66906a119a0STom Rini		echo '*** Your board is configured for THUMB mode.'; \
67006a119a0STom Rini		false; \
67106a119a0STom Rini	fi
6726ec63f41SScott Wood
6736ec63f41SScott Wood# GCC 3.x is reported to have problems generating the type of relocation
6746ec63f41SScott Wood# that U-Boot wants.
6756ec63f41SScott Wood# See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html
6766ec63f41SScott Woodcheckgcc4:
6776ec63f41SScott Wood	@if test $(call cc-version) -lt 0400; then \
6786ec63f41SScott Wood		echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \
6796ec63f41SScott Wood		false; \
6806ec63f41SScott Wood	fi
6816ec63f41SScott Wood
6822f155f6cSGrant Likely#
6832f155f6cSGrant Likely# Auto-generate the autoconf.mk file (which is included by all makefiles)
6842f155f6cSGrant Likely#
6852f155f6cSGrant Likely# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
6862f155f6cSGrant Likely# the dep file is only include in this top level makefile to determine when
6872f155f6cSGrant Likely# to regenerate the autoconf.mk file.
6881510b82dSWolfgang Denk$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
6891510b82dSWolfgang Denk	@$(XECHO) Generating $@ ; \
69016fe7775SMike Frysinger	set -e ; \
691ae6d1056SWolfgang Denk	: Generate the dependancies ; \
6924c34b2a0SMike Frysinger	$(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \
6931510b82dSWolfgang Denk		-MQ $(obj)include/autoconf.mk include/common.h > $@
6941510b82dSWolfgang Denk
6951510b82dSWolfgang Denk$(obj)include/autoconf.mk: $(obj)include/config.h
6961510b82dSWolfgang Denk	@$(XECHO) Generating $@ ; \
6971510b82dSWolfgang Denk	set -e ; \
698ae6d1056SWolfgang Denk	: Extract the config macros ; \
6991510b82dSWolfgang Denk	$(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
7004a0f7538SWolfgang Denk		sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
7014a0f7538SWolfgang Denk	mv $@.tmp $@
7022f155f6cSGrant Likely
70316a354f9SWolfgang Denk$(obj)include/generated/generic-asm-offsets.h:	$(obj)include/autoconf.mk.dep \
70416a354f9SWolfgang Denk	$(obj)lib/asm-offsets.s
70516a354f9SWolfgang Denk	@$(XECHO) Generating $@
70616a354f9SWolfgang Denk	tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
70716a354f9SWolfgang Denk
70816a354f9SWolfgang Denk$(obj)lib/asm-offsets.s:	$(obj)include/autoconf.mk.dep \
70916a354f9SWolfgang Denk	$(src)lib/asm-offsets.c
71016a354f9SWolfgang Denk	@mkdir -p $(obj)lib
71116a354f9SWolfgang Denk	$(CC) -DDO_DEPS_ONLY \
71216a354f9SWolfgang Denk		$(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
71316a354f9SWolfgang Denk		-o $@ $(src)lib/asm-offsets.c -c -S
71416a354f9SWolfgang Denk
715a4814a69SStefano Babic$(obj)include/generated/asm-offsets.h:	$(obj)include/autoconf.mk.dep \
716a4814a69SStefano Babic	$(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
717b12734eeSWolfgang Denk	@$(XECHO) Generating $@
718a4814a69SStefano Babic	tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@
719a4814a69SStefano Babic
720a4814a69SStefano Babic$(obj)$(CPUDIR)/$(SOC)/asm-offsets.s:	$(obj)include/autoconf.mk.dep
721a4814a69SStefano Babic	@mkdir -p $(obj)$(CPUDIR)/$(SOC)
722a4814a69SStefano Babic	if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
723a4814a69SStefano Babic		$(CC) -DDO_DEPS_ONLY \
724a4814a69SStefano Babic		$(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
725a4814a69SStefano Babic			-o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
726a4814a69SStefano Babic	else \
727a4814a69SStefano Babic		touch $@; \
728a4814a69SStefano Babic	fi
729a4814a69SStefano Babic
7307ebf7443Swdenk#########################################################################
731ae6d1056SWolfgang Denkelse	# !config.mk
732f9328639SMarian Balakowiczall $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
733f9328639SMarian Balakowicz$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
734249b53a6SLoïc Minier$(filter-out tools,$(SUBDIRS)) \
7350358df42SMike Frysingerupdater depend dep tags ctags etags cscope $(obj)System.map:
7367ebf7443Swdenk	@echo "System not configured - see README" >&2
7377ebf7443Swdenk	@ exit 1
738c7c0d542SMike Frysinger
739249b53a6SLoïc Miniertools: $(VERSION_FILE) $(TIMESTAMP_FILE)
7400358df42SMike Frysinger	$(MAKE) -C $@ all
741ae6d1056SWolfgang Denkendif	# config.mk
7427ebf7443Swdenk
74328abd48fSIlya Yanok$(VERSION_FILE):
74414ce91b1SMike Frysinger		@mkdir -p $(dir $(VERSION_FILE))
74528abd48fSIlya Yanok		@( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \
74628abd48fSIlya Yanok		   printf '#define PLAIN_VERSION "%s%s"\n' \
74728abd48fSIlya Yanok			"$(U_BOOT_VERSION)" "$${localvers}" ; \
74828abd48fSIlya Yanok		   printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
74928abd48fSIlya Yanok			"$(U_BOOT_VERSION)" "$${localvers}" ; \
75028abd48fSIlya Yanok		) > $@.tmp
75128abd48fSIlya Yanok		@( printf '#define CC_VERSION_STRING "%s"\n' \
75228abd48fSIlya Yanok		 '$(shell $(CC) --version | head -n 1)' )>>  $@.tmp
75328abd48fSIlya Yanok		@( printf '#define LD_VERSION_STRING "%s"\n' \
75428abd48fSIlya Yanok		 '$(shell $(LD) -v | head -n 1)' )>>  $@.tmp
75528abd48fSIlya Yanok		@cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
75628abd48fSIlya Yanok
757249b53a6SLoïc Minier$(TIMESTAMP_FILE):
758249b53a6SLoïc Minier		@mkdir -p $(dir $(TIMESTAMP_FILE))
759a76406fbSLoïc Minier		@LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
760a76406fbSLoïc Minier		@LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
761a76406fbSLoïc Minier		@cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
762249b53a6SLoïc Minier
7630358df42SMike Frysingereasylogo env gdb:
7640358df42SMike Frysinger	$(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
7650358df42SMike Frysingergdbtools: gdb
7660358df42SMike Frysinger
76730ff8918SMarek Vasutxmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc
76830ff8918SMarek Vasut	$(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) -C doc/DocBook/ $@
76930ff8918SMarek Vasut
770249b53a6SLoïc Miniertools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
7710358df42SMike Frysinger	$(MAKE) -C tools HOST_TOOLS_ALL=y
7720358df42SMike Frysinger
7734e53a258SWolfgang Denk.PHONY : CHANGELOG
7744e53a258SWolfgang DenkCHANGELOG:
775b985b5d6SBen Warren	git log --no-merges U-Boot-1_1_5.. | \
776b985b5d6SBen Warren	unexpand -a | sed -e 's/\s\s*$$//' > $@
7774e53a258SWolfgang Denk
7780a823aa2SHarald Welteinclude/license.h: tools/bin2header COPYING
7790a823aa2SHarald Welte	cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
7807ebf7443Swdenk#########################################################################
7817ebf7443Swdenk
7827ebf7443Swdenkunconfig:
783887e2ec9SStefan Roese	@rm -f $(obj)include/config.h $(obj)include/config.mk \
7842f155f6cSGrant Likely		$(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
7852f155f6cSGrant Likely		$(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
7867ebf7443Swdenk
787a6862bc1SWolfgang Denk%_config::	unconfig
788a6862bc1SWolfgang Denk	@$(MKCONFIG) -A $(@:_config=)
789a6862bc1SWolfgang Denk
790d6a5e6d5SLoïc Miniersinclude $(obj).boards.depend
791d6a5e6d5SLoïc Minier$(obj).boards.depend:	boards.cfg
79237d0e777SLauri Hintsala	@awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@
7939f4a4206SMike Frysinger
7948c994630SWolfgang Denk#
7958c994630SWolfgang Denk# Functions to generate common board directory names
7968c994630SWolfgang Denk#
7978c994630SWolfgang Denklcname	= $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/')
7988c994630SWolfgang Denkucname	= $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')
7998c994630SWolfgang Denk
800699f0512SWolfgang Denk#########################################################################
8013e38691eSwdenk#########################################################################
8027ebf7443Swdenk
8037ebf7443Swdenkclean:
8041bc15386SPeter Tyser	@rm -f $(obj)examples/standalone/82559_eeprom			  \
805d640ac58SWolfgang Denk	       $(obj)examples/standalone/atmel_df_pow2			  \
8061bc15386SPeter Tyser	       $(obj)examples/standalone/eepro100_eeprom		  \
8071bc15386SPeter Tyser	       $(obj)examples/standalone/hello_world			  \
8081bc15386SPeter Tyser	       $(obj)examples/standalone/interrupt			  \
8091bc15386SPeter Tyser	       $(obj)examples/standalone/mem_to_mem_idma2intr		  \
8101bc15386SPeter Tyser	       $(obj)examples/standalone/sched				  \
811201a017cSMike Frysinger	       $(obj)examples/standalone/smc911{11,x}_eeprom		  \
8121bc15386SPeter Tyser	       $(obj)examples/standalone/test_burst			  \
8131bc15386SPeter Tyser	       $(obj)examples/standalone/timer
814d4abc757SPeter Tyser	@rm -f $(obj)examples/api/demo{,.bin}
815f9301e1cSWolfgang Denk	@rm -f $(obj)tools/bmp_logo	   $(obj)tools/easylogo/easylogo  \
816f9301e1cSWolfgang Denk	       $(obj)tools/env/{fw_printenv,fw_setenv}			  \
817f9301e1cSWolfgang Denk	       $(obj)tools/envcrc					  \
818f9301e1cSWolfgang Denk	       $(obj)tools/gdb/{astest,gdbcont,gdbsend}			  \
819f9301e1cSWolfgang Denk	       $(obj)tools/gen_eth_addr    $(obj)tools/img2srec		  \
8207717fe10SHorst Kronstorfer	       $(obj)tools/mk{env,}image   $(obj)tools/mpc86x_clk	  \
82181e35203SChander Kashyap	       $(obj)tools/mk{smdk5250,}spl				  \
8228aa09026SMarek Vasut	       $(obj)tools/mxsboot					  \
82330ff8918SMarek Vasut	       $(obj)tools/ncb		   $(obj)tools/ubsha1		  \
82430ff8918SMarek Vasut	       $(obj)tools/kernel-doc/docproc
825f9301e1cSWolfgang Denk	@rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image}	  \
82674c7a95fSWolfgang Denk	       $(obj)board/matrix_vision/*/bootscript.img		  \
827566e5cf4SWolfgang Denk	       $(obj)board/voiceblue/eeprom 				  \
8281aada9cdSWolfgang Denk	       $(obj)u-boot.lds						  \
829fb5166ceSMike Frysinger	       $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs]	  \
830fb5166ceSMike Frysinger	       $(obj)arch/blackfin/cpu/init.{lds,elf}
831dc7746d8SWolfgang Denk	@rm -f $(obj)include/bmp_logo.h
832c270730fSChe-Liang Chiou	@rm -f $(obj)include/bmp_logo_data.h
83316a354f9SWolfgang Denk	@rm -f $(obj)lib/asm-offsets.s
834a4814a69SStefano Babic	@rm -f $(obj)include/generated/asm-offsets.h
835a4814a69SStefano Babic	@rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
836d4abc757SPeter Tyser	@rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
837b3141fdbSAndreas Bießmann	@$(MAKE) -s -C doc/DocBook/ cleandocs
838ae6d1056SWolfgang Denk	@find $(OBJTREE) -type f \
8394a30f1e8STom Rini		\( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \
84071a988aaSTroy Kisky		-o -name '*.o'	-o -name '*.a' -o -name '*.exe' \
84171a988aaSTroy Kisky		-o -name '*.cfgtmp' \) -print \
8427ebf7443Swdenk		| xargs rm -f
8437ebf7443Swdenk
844734329f9SAndy Fleming# Removes everything not needed for testing u-boot
845734329f9SAndy Flemingtidy:	clean
846734329f9SAndy Fleming	@find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f
847734329f9SAndy Fleming
848734329f9SAndy Flemingclobber:	tidy
849734329f9SAndy Fleming	@find $(OBJTREE) -type f \( -name '*.srec' \
850734329f9SAndy Fleming		-o -name '*.bin' -o -name u-boot.img \) \
851734329f9SAndy Fleming		-print0 | xargs -0 rm -f
852ffda586fSLi Yang	@rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
8535013c09fSWolfgang Denk		$(obj)cscope.* $(obj)*.*~
8544e0fbb98SDaniel Schwierzeck	@rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y)
855aa0c7a86SPrafulla Wadaskar	@rm -f $(obj)u-boot.kwb
8565d898a00SShaohui Xie	@rm -f $(obj)u-boot.pbl
857c5fb70c9SStefano Babic	@rm -f $(obj)u-boot.imx
858ba597609SBenoît Thébaudeau	@rm -f $(obj)u-boot-with-spl.imx
8597d5a5c79SBenoît Thébaudeau	@rm -f $(obj)u-boot-with-nand-spl.imx
8607816f2cfSHeiko Schocher	@rm -f $(obj)u-boot.ubl
861d36d8859SChristian Riesch	@rm -f $(obj)u-boot.ais
862bbb0b128SSimon Glass	@rm -f $(obj)u-boot.dtb
86330b9b932SMarek Vasut	@rm -f $(obj)u-boot.sb
86494aebe6cSStefan Roese	@rm -f $(obj)u-boot.spr
86597b24d3dSMarek Vasut	@rm -f $(obj)nand_spl/{u-boot.{lds,lst},System.map}
86697b24d3dSMarek Vasut	@rm -f $(obj)nand_spl/{u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map}
86797b24d3dSMarek Vasut	@rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.map}
868ef123c52SAlbert ARIBAUD	@rm -f $(obj)spl/u-boot-spl.lds
86994bcfe52SNishanth Menon	@rm -f $(obj)MLO MLO.byteswap
870a3cbc396SStefano Babic	@rm -f $(obj)SPL
8718b425b3fSDaniel Schwierzeck	@rm -f $(obj)tools/xway-swap-bytes
872a47a12beSStefan Roese	@rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
8732d14e36aSYork Sun	@rm -f $(obj)arch/powerpc/cpu/mpc83xx/ddr-gen?.c
874a9d8bc98SLoïc Minier	@rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
87516a354f9SWolfgang Denk	@rm -fr $(obj)include/generated
876a958b663SJean-Christophe PLAGNIOL-VILLARD	@[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
877bbb0b128SSimon Glass	@rm -f $(obj)dts/*.tmp
8786d660e77SSughosh Ganu	@rm -f $(obj)spl/u-boot-spl{,-pad}.ais
8797ebf7443Swdenk
8807ebf7443Swdenkmrproper \
8817ebf7443Swdenkdistclean:	clobber unconfig
882afd077bdSMike Frysingerifneq ($(OBJTREE),$(SRCTREE))
883ae6d1056SWolfgang Denk	rm -rf $(obj)*
884f9328639SMarian Balakowiczendif
8857ebf7443Swdenk
8867ebf7443Swdenkbackup:
8877ebf7443Swdenk	F=`basename $(TOPDIR)` ; cd .. ; \
888d6b93714SIlya Yanok	gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
8897ebf7443Swdenk
8907ebf7443Swdenk#########################################################################
891