blob: 4f00f08d314a238b1333badf9426ef2d07293a76 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#
Wolfgang Denk1234ce72013-06-21 10:22:36 +02002# (C) Copyright 2000-2013
wdenk7ebf7442002-11-02 23:17:16 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denk1234ce72013-06-21 10:22:36 +02005# SPDX-License-Identifier: GPL-2.0+
wdenk7ebf7442002-11-02 23:17:16 +00006#
7
Tom Rini9e4cfc42013-11-25 16:49:32 -05008VERSION = 2014
9PATCHLEVEL = 01
Wolfgang Denkec1ab282012-07-10 09:21:12 +020010SUBLEVEL =
Tom Rini65ffdc52014-01-20 17:52:59 -050011EXTRAVERSION =
Wolfgang Denk88a060b2008-09-09 23:55:18 +020012ifneq "$(SUBLEVEL)" ""
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +010013U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
Wolfgang Denk88a060b2008-09-09 23:55:18 +020014else
15U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
16endif
Masahiro Yamada59f15f22014-02-04 17:24:24 +090017TIMESTAMP_FILE = include/generated/timestamp_autogenerated.h
18VERSION_FILE = include/generated/version_autogenerated.h
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +010019
wdenk7ebf7442002-11-02 23:17:16 +000020HOSTARCH := $(shell uname -m | \
Graeme Russcbfce1d2011-04-13 19:43:28 +100021 sed -e s/i.86/x86/ \
wdenk7ebf7442002-11-02 23:17:16 +000022 -e s/sun4u/sparc64/ \
23 -e s/arm.*/arm/ \
24 -e s/sa110/arm/ \
Kumar Galaf299a4c2010-04-28 02:52:02 -050025 -e s/ppc64/powerpc/ \
26 -e s/ppc/powerpc/ \
Nobuhiro Iwamatsucd42c902010-06-16 07:59:17 +090027 -e s/macppc/powerpc/\
28 -e s/sh.*/sh/)
wdenk7ebf7442002-11-02 23:17:16 +000029
Wolfgang Denkaf03f732005-08-12 23:23:46 +020030HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
wdenk7ebf7442002-11-02 23:17:16 +000031 sed -e 's/\(cygwin\).*/cygwin/')
32
Benoît Thébaudeau8149ac92013-04-11 09:35:54 +000033export HOSTARCH HOSTOS
wdenk7ebf7442002-11-02 23:17:16 +000034
35# Deal with colliding definitions from tcsh etc.
36VENDOR=
37
38#########################################################################
Wolfgang Denk0a659ad2008-01-13 00:59:21 +010039# Allow for silent builds
40ifeq (,$(findstring s,$(MAKEFLAGS)))
41XECHO = echo
42else
43XECHO = :
44endif
45
Masahiro Yamada0d68fb12014-02-04 17:24:28 +090046# *DOCUMENTATION*
47# To see a list of typical targets execute "make help"
48# More info can be located in ./README
49# Comments in this file are targeted only to the developer, do not
50# expect to learn how to build the kernel reading this file.
51
52# Do not:
53# o use make's built-in rules and variables
54# (this increases performance and avoids hard-to-debug behaviour);
55# o print "Entering directory ...";
56MAKEFLAGS += -rR --no-print-directory
57
58# Avoid funny character set dependencies
59unexport LC_ALL
60LC_COLLATE=C
61LC_NUMERIC=C
62export LC_COLLATE LC_NUMERIC
63
64# We are using a recursive build, so we need to do a little thinking
65# to get the ordering right.
66#
67# Most importantly: sub-Makefiles should only ever modify files in
68# their own directory. If in some directory we have a dependency on
69# a file in another dir (which doesn't happen often, but it's often
70# unavoidable when linking the built-in.o targets which finally
71# turn into vmlinux), we will call a sub make in that other dir, and
72# after that we are sure that everything which is in that other dir
73# is now up to date.
74#
75# The only cases where we need to modify files which have global
76# effects are thus separated out and done before the recursive
77# descending is started. They are now explicitly listed as the
78# prepare rule.
79
80# To put more focus on warnings, be less verbose as default
81# Use 'make V=1' to see the full commands
82
83ifeq ("$(origin V)", "command line")
84 KBUILD_VERBOSE = $(V)
85endif
86ifndef KBUILD_VERBOSE
87 KBUILD_VERBOSE = 0
88endif
89
90# Call a source code checker (by default, "sparse") as part of the
91# C compilation.
92#
93# Use 'make C=1' to enable checking of only re-compiled files.
94# Use 'make C=2' to enable checking of *all* source files, regardless
95# of whether they are re-compiled or not.
96#
97# See the file "Documentation/sparse.txt" for more details, including
98# where to get the "sparse" utility.
99
100ifeq ("$(origin C)", "command line")
101 KBUILD_CHECKSRC = $(C)
102endif
103ifndef KBUILD_CHECKSRC
104 KBUILD_CHECKSRC = 0
105endif
106
107# Use make M=dir to specify directory of external module to build
108# Old syntax make ... SUBDIRS=$PWD is still supported
109# Setting the environment variable KBUILD_EXTMOD take precedence
110ifdef SUBDIRS
111 KBUILD_EXTMOD ?= $(SUBDIRS)
112endif
113
114ifeq ("$(origin M)", "command line")
115 KBUILD_EXTMOD := $(M)
116endif
117
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900118# kbuild supports saving output files in a separate directory.
119# To locate output files in a separate directory two syntaxes are supported.
120# In both cases the working directory must be the root of the kernel src.
121# 1) O=
122# Use "make O=dir/to/store/output/files/"
Stefan Roese42fbddd2006-09-07 11:51:23 +0200123#
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900124# 2) Set KBUILD_OUTPUT
125# Set the environment variable KBUILD_OUTPUT to point to the directory
126# where the output files shall be placed.
127# export KBUILD_OUTPUT=dir/to/store/output/files/
128# make
Stefan Roese42fbddd2006-09-07 11:51:23 +0200129#
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900130# The O= assignment takes precedence over the KBUILD_OUTPUT environment
131# variable.
132
wdenk7ebf7442002-11-02 23:17:16 +0000133
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900134# KBUILD_SRC is set on invocation of make in OBJ directory
135# KBUILD_SRC is not intended to be used by the regular user (for now)
136ifeq ($(KBUILD_SRC),)
137
138# OK, Make called in directory where kernel src resides
139# Do we want to locate output files in a separate directory?
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200140ifeq ("$(origin O)", "command line")
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900141 KBUILD_OUTPUT := $(O)
142endif
143
144ifeq ("$(origin W)", "command line")
145 export KBUILD_ENABLE_EXTRA_GCC_CHECKS := $(W)
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200146endif
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200147
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900148# That's our default target when none is given on the command line
149PHONY := _all
150_all:
151
152# Cancel implicit rules on top Makefile
153$(CURDIR)/Makefile Makefile: ;
154
155ifneq ($(KBUILD_OUTPUT),)
156# Invoke a second make in the output directory, passing relevant variables
157# check that the output directory actually exists
158saved-output := $(KBUILD_OUTPUT)
159KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
160$(if $(KBUILD_OUTPUT),, \
161 $(error output directory "$(saved-output)" does not exist))
162
163PHONY += $(MAKECMDGOALS) sub-make
164
165$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
166 @:
167
168sub-make: FORCE
169 $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \
170 KBUILD_SRC=$(CURDIR) \
171 KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \
172 $(filter-out _all sub-make,$(MAKECMDGOALS))
173
174# Leave processing to above invocation of make
175skip-makefile := 1
176endif # ifneq ($(KBUILD_OUTPUT),)
177endif # ifeq ($(KBUILD_SRC),)
178
179# We process the rest of the Makefile if this is the final invocation of make
180ifeq ($(skip-makefile),)
181
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900182# If building an external module we do not care about the all: rule
183# but instead _all depend on modules
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900184PHONY += all
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900185ifeq ($(KBUILD_EXTMOD),)
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900186_all: all
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900187else
188_all: modules
189endif
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900190
191srctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR))
192objtree := $(CURDIR)
193src := $(srctree)
194obj := $(objtree)
195
196VPATH := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD))
197
198export srctree objtree VPATH
199
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900200OBJTREE := $(objtree)
Daniel Schwierzecka180922a2011-07-18 06:09:15 +0000201SPLTREE := $(OBJTREE)/spl
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800202TPLTREE := $(OBJTREE)/tpl
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900203SRCTREE := $(srctree)
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200204TOPDIR := $(SRCTREE)
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900205export TOPDIR SRCTREE OBJTREE SPLTREE TPLTREE
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200206
207MKCONFIG := $(SRCTREE)/mkconfig
208export MKCONFIG
209
Wolfgang Denk6570eb32008-03-02 22:45:33 +0100210# Make sure CDPATH settings don't interfere
211unexport CDPATH
212
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200213#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000214
Mike Frysingerd8f0f912009-05-30 01:02:03 -0400215# The "tools" are needed early, so put this first
216# Don't include stuff already done in $(LIBS)
Che-liang Chioud74a67f2011-10-17 21:04:15 +0000217# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
218# is "yes"), so compile examples after U-Boot is compiled.
219SUBDIR_TOOLS = tools
Che-liang Chioud74a67f2011-10-17 21:04:15 +0000220SUBDIRS = $(SUBDIR_TOOLS)
Mike Frysingerd8f0f912009-05-30 01:02:03 -0400221
Loïc Minier4fd86112011-10-03 11:57:10 +0200222.PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
Mike Frysingerd8f0f912009-05-30 01:02:03 -0400223
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900224ifeq (include/config.mk,$(wildcard include/config.mk))
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200225
Mike Frysinger27e1c722009-07-21 22:59:36 -0400226# Include autoconf.mk before config.mk so that the config options are available
227# to all top level build files. We need the dummy all: target to prevent the
228# dependency target in autoconf.mk.dep from being the default.
229all:
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900230sinclude include/autoconf.mk.dep
231sinclude include/autoconf.mk
Mike Frysinger27e1c722009-07-21 22:59:36 -0400232
Masahiro Yamada6c9a0222013-11-18 11:08:35 +0900233SUBDIR_EXAMPLES-y := examples/standalone
234SUBDIR_EXAMPLES-$(CONFIG_API) += examples/api
Simon Glass2a973792011-10-25 11:29:28 +0000235ifndef CONFIG_SANDBOX
Masahiro Yamada6c9a0222013-11-18 11:08:35 +0900236SUBDIRS += $(SUBDIR_EXAMPLES-y)
Simon Glass2a973792011-10-25 11:29:28 +0000237endif
238
wdenk7ebf7442002-11-02 23:17:16 +0000239# load ARCH, BOARD, and CPU configuration
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900240include include/config.mk
wdenkf8e9a232004-10-09 22:21:29 +0000241export ARCH CPU BOARD VENDOR SOC
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200242
Mike Frysinger8378ba42009-06-14 23:33:14 -0400243# set default to nothing for native builds
Wolfgang Denkab4f2fe2007-03-06 18:01:47 +0100244ifeq ($(HOSTARCH),$(ARCH))
Mike Frysinger8378ba42009-06-14 23:33:14 -0400245CROSS_COMPILE ?=
Daniel Hellstrom9d7c6b22008-03-28 09:47:00 +0100246endif
wdenk7ebf7442002-11-02 23:17:16 +0000247
Masahiro Yamada57d42c92014-02-04 17:24:15 +0900248# SHELL used by kbuild
249CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
250 else if [ -x /bin/bash ]; then echo /bin/bash; \
251 else echo sh; fi ; fi)
252
253HOSTCC = gcc
254HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
255
256ifeq ($(HOSTOS),cygwin)
257HOSTCFLAGS += -ansi
258endif
259
260# Mac OS X / Darwin's C preprocessor is Apple specific. It
261# generates numerous errors and warnings. We want to bypass it
262# and use GNU C's cpp. To do this we pass the -traditional-cpp
263# option to the compiler. Note that the -traditional-cpp flag
264# DOES NOT have the same semantics as GNU C's flag, all it does
265# is invoke the GNU preprocessor in stock ANSI/ISO C fashion.
266#
267# Apple's linker is similar, thanks to the new 2 stage linking
268# multiple symbol definitions are treated as errors, hence the
269# -multiply_defined suppress option to turn off this error.
270#
271ifeq ($(HOSTOS),darwin)
272# get major and minor product version (e.g. '10' and '6' for Snow Leopard)
273DARWIN_MAJOR_VERSION = $(shell sw_vers -productVersion | cut -f 1 -d '.')
274DARWIN_MINOR_VERSION = $(shell sw_vers -productVersion | cut -f 2 -d '.')
275
276os_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \
277 $(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
278
279# Snow Leopards build environment has no longer restrictions as described above
280HOSTCC = $(call os_x_before, 10, 5, "cc", "gcc")
281HOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp")
282HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")
283endif
284
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900285# Decide whether to build built-in, modular, or both.
286# Normally, just do built-in.
287
288KBUILD_MODULES :=
289KBUILD_BUILTIN := 1
290
291# If we have only "make modules", don't compile built-in objects.
292# When we're building modules with modversions, we need to consider
293# the built-in objects during the descend as well, in order to
294# make sure the checksums are up to date before we record them.
295
296ifeq ($(MAKECMDGOALS),modules)
297 KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
298endif
299
300# If we have "make <whatever> modules", compile modules
301# in addition to whatever we do anyway.
302# Just "make" or "make all" shall build modules as well
303
304# U-Boot does not need modules
305#ifneq ($(filter all _all modules,$(MAKECMDGOALS)),)
306# KBUILD_MODULES := 1
307#endif
308
309#ifeq ($(MAKECMDGOALS),)
310# KBUILD_MODULES := 1
311#endif
312
313export KBUILD_MODULES KBUILD_BUILTIN
314export KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD
315
316# Beautify output
317# ---------------------------------------------------------------------------
318#
319# Normally, we echo the whole command before executing it. By making
320# that echo $($(quiet)$(cmd)), we now have the possibility to set
321# $(quiet) to choose other forms of output instead, e.g.
322#
323# quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
324# cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
325#
326# If $(quiet) is empty, the whole command will be printed.
327# If it is set to "quiet_", only the short version will be printed.
328# If it is set to "silent_", nothing will be printed at all, since
329# the variable $(silent_cmd_cc_o_c) doesn't exist.
330#
331# A simple variant is to prefix commands with $(Q) - that's useful
332# for commands that shall be hidden in non-verbose mode.
333#
334# $(Q)ln $@ :<
335#
336# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
337# If KBUILD_VERBOSE equals 1 then the above command is displayed.
338
339ifeq ($(KBUILD_VERBOSE),1)
340 quiet =
341 Q =
342else
343 quiet=quiet_
344 Q = @
345endif
346
347# If the user is running make -s (silent mode), suppress echoing of
348# commands
349
350ifneq ($(filter s% -s%,$(MAKEFLAGS)),)
351 quiet=silent_
352endif
353
354export quiet Q KBUILD_VERBOSE
355
356
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900357# Look for make include files relative to root of kernel src
358MAKEFLAGS += --include-dir=$(srctree)
359
Masahiro Yamada7449ab12014-02-04 17:24:18 +0900360# We need some generic definitions (do not try to remake the file).
361$(srctree)/scripts/Kbuild.include: ;
362include $(srctree)/scripts/Kbuild.include
363
Masahiro Yamada57d42c92014-02-04 17:24:15 +0900364# Make variables (CC, etc...)
365
366AS = $(CROSS_COMPILE)as
367# Always use GNU ld
368ifneq ($(shell $(CROSS_COMPILE)ld.bfd -v 2> /dev/null),)
369LD = $(CROSS_COMPILE)ld.bfd
370else
371LD = $(CROSS_COMPILE)ld
372endif
373CC = $(CROSS_COMPILE)gcc
374CPP = $(CC) -E
375AR = $(CROSS_COMPILE)ar
376NM = $(CROSS_COMPILE)nm
377LDR = $(CROSS_COMPILE)ldr
378STRIP = $(CROSS_COMPILE)strip
379OBJCOPY = $(CROSS_COMPILE)objcopy
380OBJDUMP = $(CROSS_COMPILE)objdump
381AWK = awk
382RANLIB = $(CROSS_COMPILE)RANLIB
383DTC = dtc
384CHECK = sparse
385
386CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
387 -Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF)
388
Masahiro Yamada03024452014-02-04 17:24:20 +0900389# Use UBOOTINCLUDE when you must reference the include/ directory.
390# Needed to be compatible with the O= option
391UBOOTINCLUDE :=
392ifneq ($(OBJTREE),$(SRCTREE))
393UBOOTINCLUDE += -I$(OBJTREE)/include
394endif
395UBOOTINCLUDE += -I$(srctree)/include \
396 -I$(srctree)/arch/$(ARCH)/include
397
Masahiro Yamada700dd892014-02-04 17:24:19 +0900398KBUILD_CPPFLAGS := -D__KERNEL__
399
400KBUILD_CFLAGS := -Wall -Wstrict-prototypes \
401 -Wno-format-security \
402 -fno-builtin -ffreestanding
403KBUILD_AFLAGS := -D__ASSEMBLY__
404
Masahiro Yamada57d42c92014-02-04 17:24:15 +0900405export CONFIG_SHELL HOSTCC HOSTCFLAGS HOSTLDFLAGS CROSS_COMPILE AS LD CC
406export CPP AR NM LDR STRIP OBJCOPY OBJDUMP
407export MAKE AWK
408export DTC CHECK CHECKFLAGS
409
Masahiro Yamada03024452014-02-04 17:24:20 +0900410export KBUILD_CPPFLAGS NOSTDINC_FLAGS UBOOTINCLUDE
Masahiro Yamada700dd892014-02-04 17:24:19 +0900411export KBUILD_CFLAGS KBUILD_AFLAGS
412
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900413# When compiling out-of-tree modules, put MODVERDIR in the module
414# tree rather than in the kernel tree. The kernel tree might
415# even be read-only.
416export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions
417
418# Files to ignore in find ... statements
419
420RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
421 -o -name .pc -o -name .hg -o -name .git \) -prune -o
422export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
423 --exclude CVS --exclude .pc --exclude .hg --exclude .git
424
425# ===========================================================================
426# Rules shared between *config targets and build targets
427
428# Basic helpers built in scripts/
429PHONY += scripts_basic
430scripts_basic:
431 $(Q)$(MAKE) $(build)=scripts/basic
432 $(Q)rm -f .tmp_quiet_recordmcount
433
434# To avoid any implicit rule to kick in, define an empty command.
435scripts/basic/%: scripts_basic ;
436
437
Masahiro Yamada700dd892014-02-04 17:24:19 +0900438KBUILD_CFLAGS += -Os #-fomit-frame-pointer
439
440ifdef BUILD_TAG
441KBUILD_CFLAGS += -DBUILD_TAG='"$(BUILD_TAG)"'
442endif
443
444KBUILD_CFLAGS += $(call cc-option,-fno-stack-protector)
445
446KBUILD_CFLAGS += -g
447# $(KBUILD_AFLAGS) sets -g, which causes gcc to pass a suitable -g<format>
448# option to the assembler.
449KBUILD_AFLAGS += -g
450
Masahiro Yamada03024452014-02-04 17:24:20 +0900451NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
452CHECKFLAGS += $(NOSTDINC_FLAGS)
453
Masahiro Yamada700dd892014-02-04 17:24:19 +0900454# Report stack usage if supported
455KBUILD_CFLAGS += $(call cc-option,-fstack-usage)
456
457KBUILD_CFLAGS += $(call cc-option,-Wno-format-nonliteral)
458
459# turn jbsr into jsr for m68k
460ifeq ($(ARCH),m68k)
461ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4)
462KBUILD_AFLAGS += -Wa,-gstabs,-S
463endif
464endif
465
Wolfgang Denkbb874e32006-03-12 01:37:50 +0100466# load other configuration
467include $(TOPDIR)/config.mk
468
Masahiro Yamada41ec9ba2014-02-04 17:24:21 +0900469ifneq ($(CONFIG_SYS_TEXT_BASE),)
470KBUILD_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE)
471endif
472
473export CONFIG_SYS_TEXT_BASE
474
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900475LDFLAGS_u-boot += -T u-boot.lds $(LDFLAGS_FINAL)
Masahiro Yamada41ec9ba2014-02-04 17:24:21 +0900476ifneq ($(CONFIG_SYS_TEXT_BASE),)
477LDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE)
478endif
479
Simon Glass07253bb2013-04-20 08:42:36 +0000480# Targets which don't build the source code
Masahiro Yamada41ec9ba2014-02-04 17:24:21 +0900481NON_BUILD_TARGETS = backup clean clobber distclean mrproper tidy unconfig %_config
Simon Glass07253bb2013-04-20 08:42:36 +0000482
483# Only do the generic board check when actually building, not configuring
484ifeq ($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),)
Masahiro Yamada41ec9ba2014-02-04 17:24:21 +0900485ifeq ($(__HAVE_ARCH_GENERIC_BOARD),)
486ifneq ($(CONFIG_SYS_GENERIC_BOARD),)
487CHECK_GENERIC_BOARD = $(error Your architecture does not support generic board. \
488Please undefined CONFIG_SYS_GENERIC_BOARD in your board config file)
489endif
Simon Glass07253bb2013-04-20 08:42:36 +0000490endif
491endif
492
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900493# FIX ME
494cpp_flags := $(KBUILD_CPPFLAGS) $(CPPFLAGS) $(UBOOTINCLUDE) $(NOSTDINC_FLAGS)
495c_flags := $(KBUILD_CFLAGS) $(cpp_flags)
496
Ilya Yanok4e16feb2011-06-20 12:45:37 +0000497# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
498# that (or fail if absent). Otherwise, search for a linker script in a
499# standard location.
500
Simon Glass9b309372011-11-21 10:49:37 +0000501LDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT))
502
Ilya Yanok4e16feb2011-06-20 12:45:37 +0000503ifndef LDSCRIPT
504 #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
505 ifdef CONFIG_SYS_LDSCRIPT
506 # need to strip off double quotes
Masahiro Yamada7c9c7442013-12-05 15:08:31 +0900507 LDSCRIPT := $(CONFIG_SYS_LDSCRIPT:"%"=%)
Ilya Yanok4e16feb2011-06-20 12:45:37 +0000508 endif
509endif
510
Simon Glass9b309372011-11-21 10:49:37 +0000511# If there is no specified link script, we look in a number of places for it
Ilya Yanok4e16feb2011-06-20 12:45:37 +0000512ifndef LDSCRIPT
513 ifeq ($(CONFIG_NAND_U_BOOT),y)
514 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
515 ifeq ($(wildcard $(LDSCRIPT)),)
516 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
517 endif
518 endif
519 ifeq ($(wildcard $(LDSCRIPT)),)
520 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
521 endif
522 ifeq ($(wildcard $(LDSCRIPT)),)
523 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
524 endif
525 ifeq ($(wildcard $(LDSCRIPT)),)
Simon Glass9b309372011-11-21 10:49:37 +0000526 LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds
527 # We don't expect a Makefile here
528 LDSCRIPT_MAKEFILE_DIR =
529 endif
530 ifeq ($(wildcard $(LDSCRIPT)),)
Ilya Yanok4e16feb2011-06-20 12:45:37 +0000531$(error could not find linker script)
532 endif
533endif
534
wdenk7ebf7442002-11-02 23:17:16 +0000535#########################################################################
536# U-Boot objects....order is important (i.e. start must be first)
537
Masahiro Yamada71db7542013-11-28 12:09:59 +0900538head-y := $(CPUDIR)/start.o
539head-$(CONFIG_4xx) += arch/powerpc/cpu/ppc4xx/resetvec.o
540head-$(CONFIG_MPC85xx) += arch/powerpc/cpu/mpc85xx/resetvec.o
wdenk7ebf7442002-11-02 23:17:16 +0000541
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900542OBJS := $(head-y)
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200543
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900544HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n)
Daniel Schwierzeck060b70b2012-07-19 13:39:58 +0000545
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900546LIBS-y += lib/
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900547LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
548LIBS-y += $(CPUDIR)/
wdenkf8e9a232004-10-09 22:21:29 +0000549ifdef SOC
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900550LIBS-y += $(CPUDIR)/$(SOC)/
wdenkf8e9a232004-10-09 22:21:29 +0000551endif
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900552LIBS-$(CONFIG_IXP4XX_NPE) += drivers/net/npe/
553LIBS-$(CONFIG_OF_EMBED) += dts/
554LIBS-y += arch/$(ARCH)/lib/
Masahiro Yamadaaf1274a2013-11-11 14:36:09 +0900555LIBS-y += fs/
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900556LIBS-y += net/
557LIBS-y += disk/
558LIBS-y += drivers/
559LIBS-y += drivers/dma/
560LIBS-y += drivers/gpio/
561LIBS-y += drivers/i2c/
562LIBS-y += drivers/input/
563LIBS-y += drivers/mmc/
564LIBS-y += drivers/mtd/
Masahiro Yamada136cfe32013-11-28 12:22:17 +0900565LIBS-$(CONFIG_CMD_NAND) += drivers/mtd/nand/
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900566LIBS-y += drivers/mtd/onenand/
Masahiro Yamada136cfe32013-11-28 12:22:17 +0900567LIBS-$(CONFIG_CMD_UBI) += drivers/mtd/ubi/
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900568LIBS-y += drivers/mtd/spi/
569LIBS-y += drivers/net/
570LIBS-y += drivers/net/phy/
571LIBS-y += drivers/pci/
572LIBS-y += drivers/power/ \
573 drivers/power/fuel_gauge/ \
574 drivers/power/mfd/ \
575 drivers/power/pmic/ \
576 drivers/power/battery/
577LIBS-y += drivers/spi/
578LIBS-$(CONFIG_FMAN_ENET) += drivers/net/fm/
York Sunf0626592013-09-30 09:22:09 -0700579LIBS-$(CONFIG_SYS_FSL_DDR) += drivers/ddr/fsl/
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900580LIBS-y += drivers/serial/
581LIBS-y += drivers/usb/eth/
582LIBS-y += drivers/usb/gadget/
583LIBS-y += drivers/usb/host/
584LIBS-y += drivers/usb/musb/
585LIBS-y += drivers/usb/musb-new/
586LIBS-y += drivers/usb/phy/
587LIBS-y += drivers/usb/ulpi/
588LIBS-y += common/
589LIBS-y += lib/libfdt/
Masahiro Yamada6c9a0222013-11-18 11:08:35 +0900590LIBS-$(CONFIG_API) += api/
Masahiro Yamada2a24c332013-11-28 12:09:58 +0900591LIBS-$(CONFIG_HAS_POST) += post/
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900592LIBS-y += test/
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200593
Alison Wang035260a2013-05-27 22:55:42 +0000594ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900595LIBS-y += arch/$(ARCH)/imx-common/
Jason Liu83aa8fe2011-11-25 00:18:01 +0000596endif
597
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900598LIBS-$(CONFIG_ARM) += arch/arm/cpu/
599LIBS-$(CONFIG_PPC) += arch/powerpc/cpu/
Minkyu Kang0a2b6312010-08-19 13:48:11 +0900600
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900601LIBS-y += board/$(BOARDDIR)/
Masahiro Yamada9dc93562013-11-11 14:35:55 +0900602
Masahiro Yamada30a198b2013-11-11 14:36:00 +0900603LIBS-y := $(patsubst %/, %/built-in.o, $(LIBS-y))
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900604LIBS := $(sort $(LIBS-y))
Loïc Minier4fd86112011-10-03 11:57:10 +0200605.PHONY : $(LIBS)
wdenkc0aa5c52003-12-06 19:49:23 +0000606
wdenk4cc02a82003-09-11 23:06:34 +0000607# Add GCC lib
Wolfgang Denkc73f44d2009-07-23 13:15:59 +0200608ifdef USE_PRIVATE_LIBGCC
609ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900610PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/lib.a
Wolfgang Denkc73f44d2009-07-23 13:15:59 +0200611else
612PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
613endif
614else
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900615PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(c_flags) -print-libgcc-file-name`) -lgcc
Wolfgang Denkc73f44d2009-07-23 13:15:59 +0200616endif
617PLATFORM_LIBS += $(PLATFORM_LIBGCC)
618export PLATFORM_LIBS
wdenk4989f872004-03-14 15:06:13 +0000619
Mike Frysinger91acc212009-08-23 02:47:59 -0400620# Special flags for CPP when processing the linker script.
621# Pass the version down so we can handle backwards compatibility
622# on the fly.
623LDPPFLAGS += \
624 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
Simon Glass7b0fb5f2011-11-21 10:49:40 +0000625 -DCPUDIR=$(CPUDIR) \
Mike Frysinger91acc212009-08-23 02:47:59 -0400626 $(shell $(LD) --version | \
627 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
628
wdenk7ebf7442002-11-02 23:17:16 +0000629#########################################################################
wdenk0a658552003-08-05 17:43:17 +0000630#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000631
Mike Frysinger4a7f5432010-10-13 22:58:23 -0400632ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
633BOARD_SIZE_CHECK = \
634 @actual=`wc -c $@ | awk '{print $$1}'`; \
Joe Hershbergerb102e202012-11-08 10:19:09 +0000635 limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \
Mike Frysinger4a7f5432010-10-13 22:58:23 -0400636 if test $$actual -gt $$limit; then \
Joe Hershbergerb102e202012-11-08 10:19:09 +0000637 echo "$@ exceeds file size limit:" >&2 ; \
638 echo " limit: $$limit bytes" >&2 ; \
639 echo " actual: $$actual bytes" >&2 ; \
640 echo " excess: $$((actual - limit)) bytes" >&2; \
Mike Frysinger4a7f5432010-10-13 22:58:23 -0400641 exit 1; \
642 fi
643else
644BOARD_SIZE_CHECK =
645endif
646
Scott Wood49fa0592013-12-14 11:47:32 +0800647# Statically apply RELA-style relocations (currently arm64 only)
648ifneq ($(CONFIG_STATIC_RELA),)
649# $(1) is u-boot ELF, $(2) is u-boot bin, $(3) is text base
650DO_STATIC_RELA = \
651 start=$$($(NM) $(1) | grep __rel_dyn_start | cut -f 1 -d ' '); \
652 end=$$($(NM) $(1) | grep __rel_dyn_end | cut -f 1 -d ' '); \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900653 tools/relocate-rela $(2) $(3) $$start $$end
Scott Wood49fa0592013-12-14 11:47:32 +0800654else
655DO_STATIC_RELA =
656endif
657
Mike Frysinger57047e02009-06-15 00:25:19 -0400658# Always append ALL so that arch config.mk's can add custom ones
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900659ALL-y += u-boot.srec u-boot.bin System.map
Haiying Wang8ad16cf2011-01-27 09:44:59 -0500660
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900661ALL-$(CONFIG_NAND_U_BOOT) += u-boot-nand.bin
662ALL-$(CONFIG_ONENAND_U_BOOT) += u-boot-onenand.bin
663ALL-$(CONFIG_RAMBOOT_PBL) += u-boot.pbl
664ALL-$(CONFIG_SPL) += spl/u-boot-spl.bin
665ALL-$(CONFIG_SPL_FRAMEWORK) += u-boot.img
666ALL-$(CONFIG_TPL) += tpl/u-boot-tpl.bin
667ALL-$(CONFIG_OF_SEPARATE) += u-boot.dtb u-boot-dtb.bin
Vadim Bendeburyf87a74a2013-03-27 14:34:18 +0000668ifneq ($(CONFIG_SPL_TARGET),)
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900669ALL-$(CONFIG_SPL) += $(CONFIG_SPL_TARGET:"%"=%)
Vadim Bendeburyf87a74a2013-03-27 14:34:18 +0000670endif
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900671ALL-$(CONFIG_REMAKE_ELF) += u-boot.elf
wdenk7ebf7442002-11-02 23:17:16 +0000672
Allen Martinc9c98462012-08-31 08:30:12 +0000673# enable combined SPL/u-boot/dtb rules for tegra
Tom Warrend32b2a42012-12-11 13:34:17 +0000674ifneq ($(CONFIG_TEGRA),)
Vidya Sagar5ff24f22013-10-31 14:51:38 +0530675ifeq ($(CONFIG_SPL),y)
Allen Martinc9c98462012-08-31 08:30:12 +0000676ifeq ($(CONFIG_OF_SEPARATE),y)
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900677ALL-y += u-boot-dtb-tegra.bin
Allen Martinc9c98462012-08-31 08:30:12 +0000678else
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900679ALL-y += u-boot-nodtb-tegra.bin
Allen Martinc9c98462012-08-31 08:30:12 +0000680endif
681endif
Vidya Sagar5ff24f22013-10-31 14:51:38 +0530682endif
Allen Martinc9c98462012-08-31 08:30:12 +0000683
Masahiro Yamada6c9a0222013-11-18 11:08:35 +0900684all: $(ALL-y) $(SUBDIR_EXAMPLES-y)
wdenk7ebf7442002-11-02 23:17:16 +0000685
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900686u-boot.dtb: checkdtc u-boot
687 $(MAKE) $(build)=dts binary
688 mv dts/dt.dtb $@
Simon Glass5cb34db2011-10-24 19:15:31 +0000689
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900690u-boot-dtb.bin: u-boot.bin u-boot.dtb
Simon Glass5cb34db2011-10-24 19:15:31 +0000691 cat $^ >$@
692
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900693u-boot.hex: u-boot
wdenk68005192005-01-09 21:28:15 +0000694 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
695
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900696u-boot.srec: u-boot
Albert ARIBAUD95fc6d62013-11-07 14:21:46 +0100697 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
wdenk7ebf7442002-11-02 23:17:16 +0000698
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900699u-boot.bin: u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000700 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
Scott Wood49fa0592013-12-14 11:47:32 +0800701 $(call DO_STATIC_RELA,$<,$@,$(CONFIG_SYS_TEXT_BASE))
Mike Frysinger4a7f5432010-10-13 22:58:23 -0400702 $(BOARD_SIZE_CHECK)
wdenk7ebf7442002-11-02 23:17:16 +0000703
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900704u-boot.ldr: u-boot
Mike Frysinger45b57bd2009-07-21 22:17:36 -0400705 $(CREATE_LDR_ENV)
Mike Frysinger41117ca2008-08-07 18:56:56 -0400706 $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
Mike Frysinger4a7f5432010-10-13 22:58:23 -0400707 $(BOARD_SIZE_CHECK)
Mike Frysinger908e7762008-02-04 19:26:57 -0500708
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900709u-boot.ldr.hex: u-boot.ldr
Mike Frysinger908e7762008-02-04 19:26:57 -0500710 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
711
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900712u-boot.ldr.srec: u-boot.ldr
Mike Frysinger908e7762008-02-04 19:26:57 -0500713 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
714
Stefan Roesef7f05a92012-08-16 17:54:52 +0200715#
716# U-Boot entry point, needed for booting of full-blown U-Boot
717# from the SPL U-Boot version.
718#
719ifndef CONFIG_SYS_UBOOT_START
720CONFIG_SYS_UBOOT_START := 0
721endif
722
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900723u-boot.img: u-boot.bin
724 tools/mkimage -A $(ARCH) -T firmware -C none \
Stefan Roesef7f05a92012-08-16 17:54:52 +0200725 -O u-boot -a $(CONFIG_SYS_TEXT_BASE) \
726 -e $(CONFIG_SYS_UBOOT_START) \
Wolfgang Denk4d1d9a32006-02-21 17:33:04 +0100727 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
wdenk0a658552003-08-05 17:43:17 +0000728 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
729 -d $< $@
730
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900731u-boot.imx: u-boot.bin depend
732 $(MAKE) $(build)=arch/arm/imx-common $(objtree)/u-boot.imx
Stefano Babic7b07f092010-01-20 18:19:10 +0100733
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900734u-boot.kwb: u-boot.bin
735 tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
Eric Cooper28f39602010-10-19 13:31:11 -0400736 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
Prafulla Wadaskar07329412009-09-07 15:05:02 +0530737
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900738u-boot.pbl: u-boot.bin
739 tools/mkimage -n $(CONFIG_SYS_FSL_PBL_RCW) \
Prabhakar Kushwaha950f2f72014-01-13 11:28:04 +0530740 -R $(CONFIG_SYS_FSL_PBL_PBI) -T pblimage \
Shaohui Xieea65fd82012-08-10 02:49:35 +0000741 -d $< $@
742
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900743u-boot.sha1: u-boot.bin
744 tools/ubsha1 u-boot.bin
Heiko Schocher633e03a2007-06-22 19:11:54 +0200745
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900746u-boot.dis: u-boot
wdenk7ebf7442002-11-02 23:17:16 +0000747 $(OBJDUMP) -d $< > $@
748
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800749# $@ is output, $(1) and $(2) are inputs, $(3) is padded intermediate,
750# $(4) is pad-to
751SPL_PAD_APPEND = \
752 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(4) -I binary -O binary \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900753 $(1) $(3); \
754 cat $(3) $(2) > $@; \
755 rm $(3)
Scott Woodeb7bd972012-12-06 13:33:16 +0000756
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800757ifdef CONFIG_TPL
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900758SPL_PAYLOAD := tpl/u-boot-with-tpl.bin
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800759else
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900760SPL_PAYLOAD := u-boot.bin
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800761endif
Scott Woodeb7bd972012-12-06 13:33:16 +0000762
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900763u-boot-with-spl.bin: spl/u-boot-spl.bin $(SPL_PAYLOAD)
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800764 $(call SPL_PAD_APPEND,$<,$(SPL_PAYLOAD),spl/u-boot-spl-pad.bin,$(CONFIG_SPL_PAD_TO))
765
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900766tpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin
767 $(call SPL_PAD_APPEND,$<,u-boot.bin,tpl/u-boot-tpl-pad.bin,$(CONFIG_TPL_PAD_TO))
Heiko Schocher58cb84d2011-07-16 00:06:42 +0000768
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900769u-boot-with-spl.imx: spl/u-boot-spl.bin u-boot.bin
770 $(MAKE) $(build)=arch/arm/imx-common \
Benoît Thébaudeaub2c79202013-04-11 09:35:56 +0000771 $(OBJTREE)/u-boot-with-spl.imx
772
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900773u-boot-with-nand-spl.imx: spl/u-boot-spl.bin u-boot.bin
774 $(MAKE) $(build)=arch/arm/imx-common \
Benoît Thébaudeau393b98d2013-04-11 09:35:57 +0000775 $(OBJTREE)/u-boot-with-nand-spl.imx
776
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900777u-boot.ubl: u-boot-with-spl.bin
778 tools/mkimage -n $(UBL_CONFIG) -T ublimage \
779 -e $(CONFIG_SYS_TEXT_BASE) -d $< u-boot.ubl
José Miguel Gonçalves479e6602012-09-19 01:25:26 +0000780
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900781u-boot.ais: spl/u-boot-spl.bin u-boot.img
782 tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(srctree)/$(CONFIG_AIS_CONFIG_FILE:"%"=%),"/dev/null") \
Sughosh Ganuf806bbf2012-06-13 08:39:06 +0000783 -T aisimage \
Christian Rieschbd25f062011-12-09 09:47:39 +0000784 -e $(CONFIG_SPL_TEXT_BASE) \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900785 -d spl/u-boot-spl.bin \
786 spl/u-boot-spl.ais
Christian Rieschbd25f062011-12-09 09:47:39 +0000787 $(OBJCOPY) ${OBJCFLAGS} -I binary \
788 --pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900789 spl/u-boot-spl.ais spl/u-boot-spl-pad.ais
790 cat spl/u-boot-spl-pad.ais u-boot.img > u-boot.ais
Christian Rieschbd25f062011-12-09 09:47:39 +0000791
Otavio Salvador17811002012-08-18 07:25:25 +0000792
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900793u-boot.sb: u-boot.bin spl/u-boot-spl.bin
794 $(MAKE) $(build)=$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb
Marek Vasutb0d62962011-11-08 23:18:19 +0000795
Stefan Roese0ba64c32012-01-05 11:19:50 +0100796# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.
797# Both images are created using mkimage (crc etc), so that the ROM
798# bootloader can check its integrity. Padding needs to be done to the
799# SPL image (with mkimage header) and not the binary. Otherwise the resulting image
800# which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
801# The resulting image containing both U-Boot images is called u-boot.spr
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900802u-boot.spr: u-boot.img spl/u-boot-spl.bin
803 tools/mkimage -A $(ARCH) -T firmware -C none \
Stefan Roese0ba64c32012-01-05 11:19:50 +0100804 -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900805 -d spl/u-boot-spl.bin $@
Masahiro Yamada62aa18a2013-12-18 19:00:51 +0900806 $(OBJCOPY) -I binary -O binary \
807 --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff $@
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900808 cat u-boot.img >> $@
Stefan Roese0ba64c32012-01-05 11:19:50 +0100809
Tom Warrend32b2a42012-12-11 13:34:17 +0000810ifneq ($(CONFIG_TEGRA),)
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900811u-boot-nodtb-tegra.bin: spl/u-boot-spl.bin u-boot.bin
812 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary spl/u-boot-spl spl/u-boot-spl-pad.bin
813 cat spl/u-boot-spl-pad.bin u-boot.bin > $@
814 rm spl/u-boot-spl-pad.bin
Stephen Warren1fa4e832013-05-14 08:00:53 +0000815
816ifeq ($(CONFIG_OF_SEPARATE),y)
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900817u-boot-dtb-tegra.bin: u-boot-nodtb-tegra.bin u-boot.dtb
818 cat u-boot-nodtb-tegra.bin u-boot.dtb > $@
Stephen Warren1fa4e832013-05-14 08:00:53 +0000819endif
Allen Martin21476ec2012-08-31 08:30:10 +0000820endif
Allen Martin21476ec2012-08-31 08:30:10 +0000821
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900822u-boot-img.bin: spl/u-boot-spl.bin u-boot.img
823 cat spl/u-boot-spl.bin u-boot.img > $@
Stefan Roese28eeffa2012-08-24 17:36:53 +0200824
Stefan Roese07a78db2013-02-22 11:36:50 +0100825# PPC4xx needs the SPL at the end of the image, since the reset vector
826# is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target
827# and need to introduce a new build target with the full blown U-Boot
828# at the start padded up to the start of the SPL image. And then concat
829# the SPL image to the end.
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900830u-boot-img-spl-at-end.bin: spl/u-boot-spl.bin u-boot.img
Masahiro Yamada62aa18a2013-12-18 19:00:51 +0900831 $(OBJCOPY) -I binary -O binary --pad-to=$(CONFIG_UBOOT_PAD_TO) \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900832 --gap-fill=0xff u-boot.img $@
833 cat spl/u-boot-spl.bin >> $@
Stefan Roese07a78db2013-02-22 11:36:50 +0100834
Scott Wooda8d49102013-12-14 11:47:33 +0800835# Create a new ELF from a raw binary file. This is useful for arm64
836# where static relocation needs to be performed on the raw binary,
837# but certain simulators only accept an ELF file (but don't do the
838# relocation).
839# FIXME refactor dts/Makefile to share target/arch detection
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900840u-boot.elf: u-boot.bin
Scott Wooda8d49102013-12-14 11:47:33 +0800841 @$(OBJCOPY) -B aarch64 -I binary -O elf64-littleaarch64 \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900842 $< u-boot-elf.o
843 @$(LD) u-boot-elf.o -o $@ \
Scott Wooda8d49102013-12-14 11:47:33 +0800844 --defsym=_start=$(CONFIG_SYS_TEXT_BASE) \
845 -Ttext=$(CONFIG_SYS_TEXT_BASE)
846
Simon Glass9f53bbf2011-10-03 19:26:50 +0000847ifeq ($(CONFIG_SANDBOX),y)
848GEN_UBOOT = \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900849 $(CC) $(SYMS) -T u-boot.lds \
850 -Wl,--start-group $(LIBS) -Wl,--end-group \
Simon Glass9f53bbf2011-10-03 19:26:50 +0000851 $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
852else
Mike Frysingera46fbba2009-05-20 04:35:14 -0400853GEN_UBOOT = \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900854 $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
855 $(OBJS) \
856 --start-group $(LIBS) --end-group $(PLATFORM_LIBS) \
wdenk67ff36c2002-11-19 23:01:07 +0000857 -Map u-boot.map -o u-boot
Simon Glass9f53bbf2011-10-03 19:26:50 +0000858endif
859
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900860u-boot: depend $(SUBDIR_TOOLS) $(OBJS) $(LIBS) u-boot.lds
Mike Frysingera46fbba2009-05-20 04:35:14 -0400861 $(GEN_UBOOT)
862ifeq ($(CONFIG_KALLSYMS),y)
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900863 smap=`$(call SYSTEM_MAP,u-boot) | \
Wolfgang Denk18d46c02009-08-17 14:00:53 +0200864 awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900865 $(CC) $(c_flags) -DSYSTEM_MAP="\"$${smap}\"" \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900866 -c $(srctree)/common/system_map.c -o common/system_map.o
867 $(GEN_UBOOT) common/system_map.o
Mike Frysingera46fbba2009-05-20 04:35:14 -0400868endif
wdenk7ebf7442002-11-02 23:17:16 +0000869
Masahiro Yamada33ed77e2013-10-21 11:53:41 +0900870$(OBJS):
871 @:
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200872
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900873$(LIBS): depend $(SUBDIR_TOOLS) scripts_basic
874 $(Q)$(MAKE) $(build)=$(patsubst %/,%,$(dir $@))
wdenkc0aa5c52003-12-06 19:49:23 +0000875
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900876$(SUBDIRS): depend scripts_basic
877 $(Q)$(MAKE) $(build)=$@
Masahiro Yamadaf2431802014-02-04 17:24:10 +0900878
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900879$(SUBDIR_EXAMPLES-y): u-boot
Che-liang Chioud74a67f2011-10-17 21:04:15 +0000880
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900881u-boot.lds: $(LDSCRIPT) depend
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900882 $(CPP) $(cpp_flags) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@
Wolfgang Denk18d46c02009-08-17 14:00:53 +0200883
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900884nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend scripts_basic
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900885 $(MAKE) $(build)=nand_spl/board/$(BOARDDIR) all
Stefan Roese42fbddd2006-09-07 11:51:23 +0200886
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900887u-boot-nand.bin: nand_spl u-boot.bin
888 cat nand_spl/u-boot-spl-16k.bin u-boot.bin > u-boot-nand.bin
Stefan Roese42fbddd2006-09-07 11:51:23 +0200889
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900890spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend scripts_basic
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900891 $(MAKE) obj=spl -f $(srctree)/spl/Makefile all
Daniel Schwierzeck73f4f772011-07-13 05:11:04 +0000892
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900893tpl/u-boot-tpl.bin: $(SUBDIR_TOOLS) depend scripts_basic
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900894 $(MAKE) obj=tpl -f $(srctree)/spl/Makefile all CONFIG_TPL_BUILD=y
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800895
Daniel Hobiad4eaa32010-01-18 18:13:39 +0100896# Explicitly make _depend in subdirs containing multiple targets to prevent
897# parallel sub-makes creating .depend files simultaneously.
Wolfgang Denk81aa2eb2010-10-26 00:08:35 +0200898depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900899 include/spl-autoconf.mk \
900 include/tpl-autoconf.mk \
901 include/autoconf.mk \
902 include/generated/generic-asm-offsets.h \
903 include/generated/asm-offsets.h
wdenk7ebf7442002-11-02 23:17:16 +0000904
Li Yang22a6da62009-12-09 18:13:26 +0800905TAG_SUBDIRS = $(SUBDIRS)
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900906TAG_SUBDIRS += $(dir $(LIBS))
Jean-Christophe PLAGNIOL-VILLARD957013c2007-11-25 18:45:47 +0100907TAG_SUBDIRS += include
Jean-Christophe PLAGNIOL-VILLARD957013c2007-11-25 18:45:47 +0100908
Horst Kronstorferb2bc9042011-07-18 01:21:18 +0000909FIND := find
910FINDFLAGS := -L
911
Tom Rini0819fd82012-02-02 14:07:05 +0000912checkstack:
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900913 $(CROSS_COMPILE)objdump -d u-boot \
914 `$(FIND) . -name u-boot-spl -print` | \
915 perl $(src)/scripts/checkstack.pl $(ARCH)
Tom Rini0819fd82012-02-02 14:07:05 +0000916
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200917tags ctags:
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900918 ctags -w -o ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
Li Yang22a6da62009-12-09 18:13:26 +0800919 -name '*.[chS]' -print`
wdenk7ebf7442002-11-02 23:17:16 +0000920
921etags:
Horst Kronstorferb2bc9042011-07-18 01:21:18 +0000922 etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
Li Yang22a6da62009-12-09 18:13:26 +0800923 -name '*.[chS]' -print`
Li Yang8c6dcf02008-02-29 11:46:05 +0800924cscope:
Horst Kronstorferb2bc9042011-07-18 01:21:18 +0000925 $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
926 cscope.files
Li Yang8c6dcf02008-02-29 11:46:05 +0800927 cscope -b -q -k
wdenk7ebf7442002-11-02 23:17:16 +0000928
Mike Frysingera46fbba2009-05-20 04:35:14 -0400929SYSTEM_MAP = \
930 $(NM) $1 | \
wdenk7ebf7442002-11-02 23:17:16 +0000931 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Mike Frysingera46fbba2009-05-20 04:35:14 -0400932 LC_ALL=C sort
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900933System.map: u-boot
Masahiro Yamada9f36f062013-11-11 14:36:01 +0900934 @$(call SYSTEM_MAP,$<) > $@
wdenk7ebf7442002-11-02 23:17:16 +0000935
Tom Rini20eef6c2012-03-16 06:34:35 +0000936checkthumb:
937 @if test $(call cc-version) -lt 0404; then \
938 echo -n '*** Your GCC does not produce working '; \
939 echo 'binaries in THUMB mode.'; \
940 echo '*** Your board is configured for THUMB mode.'; \
941 false; \
942 fi
Scott Wood146f5062012-09-20 19:10:01 -0500943
944# GCC 3.x is reported to have problems generating the type of relocation
945# that U-Boot wants.
946# See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html
947checkgcc4:
948 @if test $(call cc-version) -lt 0400; then \
949 echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \
950 false; \
951 fi
952
Stephen Warren1f78f062013-07-24 10:09:16 -0700953checkdtc:
954 @if test $(call dtc-version) -lt 0104; then \
955 echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \
956 false; \
957 fi
958
Grant Likely0f910192007-09-24 09:05:31 -0600959#
960# Auto-generate the autoconf.mk file (which is included by all makefiles)
961#
962# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
963# the dep file is only include in this top level makefile to determine when
964# to regenerate the autoconf.mk file.
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900965include/autoconf.mk.dep: include/config.h include/common.h
Wolfgang Denk9046f3f2008-05-13 23:15:52 +0200966 @$(XECHO) Generating $@ ; \
Wolfgang Denk0a659ad2008-01-13 00:59:21 +0100967 : Generate the dependancies ; \
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900968 $(CC) -x c -DDO_DEPS_ONLY -M $(c_flags) \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900969 -MQ include/autoconf.mk $(srctree)/include/common.h > $@ || \
Masahiro Yamadadab09922013-12-02 14:57:29 +0900970 rm $@
Wolfgang Denk9046f3f2008-05-13 23:15:52 +0200971
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900972include/autoconf.mk: include/config.h
Wolfgang Denk9046f3f2008-05-13 23:15:52 +0200973 @$(XECHO) Generating $@ ; \
Wolfgang Denk0a659ad2008-01-13 00:59:21 +0100974 : Extract the config macros ; \
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900975 $(CPP) $(c_flags) -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900976 sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \
Masahiro Yamadadab09922013-12-02 14:57:29 +0900977 rm $@.tmp
Grant Likely0f910192007-09-24 09:05:31 -0600978
Joel Fernandes2c8c3c22013-08-19 16:14:14 +0800979# Auto-generate the spl-autoconf.mk file (which is included by all makefiles for SPL)
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900980include/tpl-autoconf.mk: include/config.h
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800981 @$(XECHO) Generating $@ ; \
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800982 : Extract the config macros ; \
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900983 $(CPP) $(c_flags) -DCONFIG_TPL_BUILD -DCONFIG_SPL_BUILD\
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900984 -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \
985 sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \
Masahiro Yamadadab09922013-12-02 14:57:29 +0900986 rm $@.tmp
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800987
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900988include/spl-autoconf.mk: include/config.h
Joel Fernandes2c8c3c22013-08-19 16:14:14 +0800989 @$(XECHO) Generating $@ ; \
Joel Fernandes2c8c3c22013-08-19 16:14:14 +0800990 : Extract the config macros ; \
Masahiro Yamada0d68fb12014-02-04 17:24:28 +0900991 $(CPP) $(c_flags) -DCONFIG_SPL_BUILD -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900992 sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \
Masahiro Yamadadab09922013-12-02 14:57:29 +0900993 rm $@.tmp
Joel Fernandes2c8c3c22013-08-19 16:14:14 +0800994
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900995include/generated/generic-asm-offsets.h: lib/asm-offsets.s
Wolfgang Denk81aa2eb2010-10-26 00:08:35 +0200996 @$(XECHO) Generating $@
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900997 $(srctree)/tools/scripts/make-asm-offsets lib/asm-offsets.s $@
Wolfgang Denk81aa2eb2010-10-26 00:08:35 +0200998
Masahiro Yamada59f15f22014-02-04 17:24:24 +0900999lib/asm-offsets.s: include/config.h $(srctree)/lib/asm-offsets.c
1000 @mkdir -p lib
Wolfgang Denk81aa2eb2010-10-26 00:08:35 +02001001 $(CC) -DDO_DEPS_ONLY \
Masahiro Yamada0d68fb12014-02-04 17:24:28 +09001002 $(c_flags) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001003 -o $@ $(srctree)/lib/asm-offsets.c -c -S
Wolfgang Denk81aa2eb2010-10-26 00:08:35 +02001004
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001005include/generated/asm-offsets.h: $(CPUDIR)/$(SOC)/asm-offsets.s
Wolfgang Denkf4e111c2012-07-26 20:52:41 +00001006 @$(XECHO) Generating $@
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001007 $(srctree)/tools/scripts/make-asm-offsets $(CPUDIR)/$(SOC)/asm-offsets.s $@
Stefano Babic2a1f1ac2011-09-05 04:32:28 +00001008
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001009$(CPUDIR)/$(SOC)/asm-offsets.s: include/config.h
1010 @mkdir -p $(CPUDIR)/$(SOC)
1011 if [ -f $(srctree)/$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
Stefano Babic2a1f1ac2011-09-05 04:32:28 +00001012 $(CC) -DDO_DEPS_ONLY \
Masahiro Yamada0d68fb12014-02-04 17:24:28 +09001013 $(c_flags) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001014 -o $@ $(srctree)/$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
Stefano Babic2a1f1ac2011-09-05 04:32:28 +00001015 else \
1016 touch $@; \
1017 fi
1018
wdenk7ebf7442002-11-02 23:17:16 +00001019#########################################################################
Wolfgang Denk0a659ad2008-01-13 00:59:21 +01001020else # !config.mk
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001021all u-boot.hex u-boot.srec u-boot.bin \
1022u-boot.img u-boot.dis u-boot \
Loïc Minier4fd86112011-10-03 11:57:10 +02001023$(filter-out tools,$(SUBDIRS)) \
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001024depend dep tags ctags etags cscope System.map:
wdenk7ebf7442002-11-02 23:17:16 +00001025 @echo "System not configured - see README" >&2
1026 @ exit 1
Mike Frysinger39901cd2010-01-21 04:03:22 -05001027
Loïc Minier4fd86112011-10-03 11:57:10 +02001028tools: $(VERSION_FILE) $(TIMESTAMP_FILE)
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001029 $(MAKE) $(build)=$@ all
Wolfgang Denk0a659ad2008-01-13 00:59:21 +01001030endif # config.mk
wdenk7ebf7442002-11-02 23:17:16 +00001031
Scott Wood4f62eb42013-12-14 11:47:34 +08001032# ARM relocations should all be R_ARM_RELATIVE (32-bit) or
1033# R_AARCH64_RELATIVE (64-bit).
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001034checkarmreloc: u-boot
Scott Wood4f62eb42013-12-14 11:47:34 +08001035 @RELOC="`$(CROSS_COMPILE)readelf -r -W $< | cut -d ' ' -f 4 | \
1036 grep R_A | sort -u`"; \
1037 if test "$$RELOC" != "R_ARM_RELATIVE" -a \
1038 "$$RELOC" != "R_AARCH64_RELATIVE"; then \
1039 echo "$< contains unexpected relocations: $$RELOC"; \
1040 false; \
1041 fi
Albert ARIBAUD446dd122013-06-11 14:17:30 +02001042
Ilya Yanok3f153db2011-06-20 12:45:38 +00001043$(VERSION_FILE):
Mike Frysingere8969ab2011-06-30 16:56:20 +00001044 @mkdir -p $(dir $(VERSION_FILE))
Masahiro Yamada7935a822013-11-28 16:29:23 +09001045 @( localvers='$(shell $(TOPDIR)/scripts/setlocalversion $(TOPDIR))' ; \
Ilya Yanok3f153db2011-06-20 12:45:38 +00001046 printf '#define PLAIN_VERSION "%s%s"\n' \
1047 "$(U_BOOT_VERSION)" "$${localvers}" ; \
1048 printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
1049 "$(U_BOOT_VERSION)" "$${localvers}" ; \
1050 ) > $@.tmp
1051 @( printf '#define CC_VERSION_STRING "%s"\n' \
1052 '$(shell $(CC) --version | head -n 1)' )>> $@.tmp
1053 @( printf '#define LD_VERSION_STRING "%s"\n' \
1054 '$(shell $(LD) -v | head -n 1)' )>> $@.tmp
1055 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
1056
Loïc Minier4fd86112011-10-03 11:57:10 +02001057$(TIMESTAMP_FILE):
1058 @mkdir -p $(dir $(TIMESTAMP_FILE))
Loïc Minieraf7c7e42011-10-03 11:57:11 +02001059 @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
1060 @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
1061 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
Loïc Minier4fd86112011-10-03 11:57:10 +02001062
Mike Frysinger9bd7a6f2010-08-15 00:03:21 -04001063easylogo env gdb:
Masahiro Yamada0d68fb12014-02-04 17:24:28 +09001064 $(Q)$(MAKE) $(build)=tools/$@ MTD_VERSION=${MTD_VERSION}
Masahiro Yamadaf2431802014-02-04 17:24:10 +09001065
Mike Frysinger9bd7a6f2010-08-15 00:03:21 -04001066gdbtools: gdb
1067
Marek Vasut1f747c12012-10-06 14:04:58 +00001068xmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc
Masahiro Yamada0d68fb12014-02-04 17:24:28 +09001069 $(Q)$(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) $(build)=doc/DocBook $@
Marek Vasut1f747c12012-10-06 14:04:58 +00001070
Loïc Minier4fd86112011-10-03 11:57:10 +02001071tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
Masahiro Yamada0d68fb12014-02-04 17:24:28 +09001072 $(Q)$(MAKE) $(build)=tools HOST_TOOLS_ALL=y
Mike Frysinger9bd7a6f2010-08-15 00:03:21 -04001073
Wolfgang Denke5d99e22006-10-25 00:43:17 +02001074.PHONY : CHANGELOG
1075CHANGELOG:
Ben Warrendc43c9c2006-10-26 14:38:25 -04001076 git log --no-merges U-Boot-1_1_5.. | \
1077 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denke5d99e22006-10-25 00:43:17 +02001078
Harald Welte5708dbf2008-07-09 22:30:30 +08001079include/license.h: tools/bin2header COPYING
Wolfgang Denk625bd332010-05-27 23:18:33 +02001080 cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
wdenk7ebf7442002-11-02 23:17:16 +00001081#########################################################################
1082
1083unconfig:
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001084 @rm -f include/config.h include/config.mk \
1085 board/*/config.tmp board/*/*/config.tmp \
1086 include/autoconf.mk include/autoconf.mk.dep \
1087 include/spl-autoconf.mk \
1088 include/tpl-autoconf.mk
wdenk7ebf7442002-11-02 23:17:16 +00001089
Wolfgang Denkf2c7ea82010-05-27 23:18:36 +02001090%_config:: unconfig
1091 @$(MKCONFIG) -A $(@:_config=)
1092
wdenkb02744a2003-04-05 00:53:31 +00001093#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00001094
1095clean:
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001096 @rm -f examples/standalone/atmel_df_pow2 \
1097 examples/standalone/hello_world \
1098 examples/standalone/interrupt \
1099 examples/standalone/mem_to_mem_idma2intr \
1100 examples/standalone/sched \
1101 $(addprefix examples/standalone/, smc91111_eeprom smc911x_eeprom) \
1102 examples/standalone/test_burst \
1103 examples/standalone/timer
1104 @rm -f $(addprefix examples/api/, demo demo.bin)
1105 @rm -f tools/bmp_logo tools/easylogo/easylogo \
1106 tools/env/fw_printenv \
1107 tools/envcrc \
1108 $(addprefix tools/gdb/, gdbcont gdbsend) \
1109 tools/gen_eth_addr tools/img2srec \
1110 tools/dumpimage \
1111 $(addprefix tools/, mkenvimage mkimage) \
1112 tools/mpc86x_clk \
1113 $(addprefix tools/, mk$(BOARD)spl mkexynosspl) \
1114 tools/mxsboot \
1115 tools/ncb tools/ubsha1 \
1116 tools/kernel-doc/docproc \
1117 tools/proftool
1118 @rm -f $(addprefix board/cray/L1/, bootscript.c bootscript.image) \
1119 board/matrix_vision/*/bootscript.img \
1120 spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl \
1121 u-boot.lds \
1122 $(addprefix arch/blackfin/cpu/, init.lds init.elf)
1123 @rm -f include/bmp_logo.h
1124 @rm -f include/bmp_logo_data.h
1125 @rm -f lib/asm-offsets.s
1126 @rm -f include/generated/asm-offsets.h
1127 @rm -f $(CPUDIR)/$(SOC)/asm-offsets.s
Peter Tyseracce4eb2009-07-20 19:02:21 -05001128 @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001129 @$(MAKE) -f $(srctree)/doc/DocBook/Makefile cleandocs
Wolfgang Denk0a659ad2008-01-13 00:59:21 +01001130 @find $(OBJTREE) -type f \
Tom Rinib7f34132012-02-20 13:50:10 +00001131 \( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \
Masahiro Yamada0d68fb12014-02-04 17:24:28 +09001132 -o -name '*.o' -o -name '*.a' -o -name '*.exe' -o -name '*.cmd' \
Troy Kiskya18d7862013-01-18 16:14:24 +00001133 -o -name '*.cfgtmp' \) -print \
wdenk7ebf7442002-11-02 23:17:16 +00001134 | xargs rm -f
wdenk7ebf7442002-11-02 23:17:16 +00001135
Andy Flemingdef963d2011-11-21 13:40:43 +00001136# Removes everything not needed for testing u-boot
1137tidy: clean
1138 @find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f
1139
1140clobber: tidy
1141 @find $(OBJTREE) -type f \( -name '*.srec' \
1142 -o -name '*.bin' -o -name u-boot.img \) \
1143 -print0 | xargs -0 rm -f
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001144 @rm -f $(OBJS) *.bak ctags etags TAGS \
1145 cscope.* *.*~
1146 @rm -f u-boot u-boot.map u-boot.hex $(ALL-y)
1147 @rm -f u-boot.kwb
1148 @rm -f u-boot.pbl
1149 @rm -f u-boot.imx
1150 @rm -f u-boot-with-spl.imx
1151 @rm -f u-boot-with-nand-spl.imx
1152 @rm -f u-boot.ubl
1153 @rm -f u-boot.ais
1154 @rm -f u-boot.dtb
1155 @rm -f u-boot.sb
1156 @rm -f u-boot.spr
1157 @rm -f $(addprefix nand_spl/, u-boot.lds u-boot.lst System.map)
1158 @rm -f $(addprefix nand_spl/, u-boot-nand_spl.lds u-boot-spl u-boot-spl.map)
1159 @rm -f $(addprefix spl/, u-boot-spl u-boot-spl.bin u-boot-spl.map)
1160 @rm -f spl/u-boot-spl.lds
1161 @rm -f $(addprefix tpl/, u-boot-tpl u-boot-tpl.bin u-boot-tpl.map)
1162 @rm -f tpl/u-boot-spl.lds
1163 @rm -f MLO MLO.byteswap
1164 @rm -f SPL
1165 @rm -f tools/xway-swap-bytes
1166 @rm -fr include/asm/proc include/asm/arch include/asm
1167 @rm -fr include/generated
1168 @[ ! -d nand_spl ] || find nand_spl -name "*" -type l -print | xargs rm -f
1169 @rm -f dts/*.tmp
1170 @rm -f $(addprefix spl/, u-boot-spl.ais, u-boot-spl-pad.ais)
wdenk7ebf7442002-11-02 23:17:16 +00001171
Marian Balakowiczd62379d2006-09-01 19:49:50 +02001172mrproper \
1173distclean: clobber unconfig
Mike Frysinger0c115212011-06-24 18:37:55 +00001174ifneq ($(OBJTREE),$(SRCTREE))
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001175 rm -rf *
Marian Balakowiczd62379d2006-09-01 19:49:50 +02001176endif
wdenk7ebf7442002-11-02 23:17:16 +00001177
1178backup:
1179 F=`basename $(TOPDIR)` ; cd .. ; \
Ilya Yanokd2b096d2010-06-21 18:13:21 +04001180 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
wdenk7ebf7442002-11-02 23:17:16 +00001181
1182#########################################################################
Masahiro Yamada59f15f22014-02-04 17:24:24 +09001183
1184endif # skip-makefile
1185
1186PHONY += FORCE
1187FORCE:
1188
1189# Declare the contents of the .PHONY variable as phony. We keep that
1190# information in a variable so we can use it in if_changed and friends.
1191.PHONY: $(PHONY)