blob: 4fbc3257d0feefd02712a383ed2b89c466d502fe [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Tom Rinida58dec2015-11-10 01:06:16 +00002
Tom Rini88bd8ee2022-11-07 15:27:03 -05003VERSION = 2023
4PATCHLEVEL = 01
Wolfgang Denk211e4752012-07-10 09:21:12 +02005SUBLEVEL =
Tom Rini62e2ad12023-01-09 11:07:33 -05006EXTRAVERSION =
Masahiro Yamada5f30f3b2014-02-04 17:24:30 +09007NAME =
Wolfgang Denkae6d1052008-01-13 00:59:21 +01008
wenbo.wangf46a9f22024-08-05 17:05:42 +08009current_dir := $(realpath $(dir $(lastword $(MAKEFILE_LIST))))
10prebuild_gcc := $(current_dir)/../../prebuild/
11
Masahiro Yamada6825a952014-02-04 17:24:28 +090012# *DOCUMENTATION*
13# To see a list of typical targets execute "make help"
14# More info can be located in ./README
15# Comments in this file are targeted only to the developer, do not
16# expect to learn how to build the kernel reading this file.
17
Tom Rini473fc272021-06-17 18:07:25 -040018# Do not use make's built-in rules and variables
19# (this increases performance and avoids hard-to-debug behaviour)
20MAKEFLAGS += -rR
Masahiro Yamada6825a952014-02-04 17:24:28 +090021
Heinrich Schuchardtf7691a62021-02-10 18:54:25 +010022# Determine target architecture for the sandbox
Heinrich Schuchardt3b4847c2019-11-07 08:05:17 +010023include include/host_arch.h
Heinrich Schuchardtf7691a62021-02-10 18:54:25 +010024ifeq ("", "$(CROSS_COMPILE)")
25 MK_ARCH="${shell uname -m}"
26else
Mark Kettenis1a16e662022-05-05 16:42:23 +020027 MK_ARCH="${shell echo $(CROSS_COMPILE) | sed -n 's/^[[:space:]]*\([^\/]*\/\)*\([^-]*\)-[^[:space:]]*/\2/p'}"
Heinrich Schuchardtf7691a62021-02-10 18:54:25 +010028endif
Heinrich Schuchardt3b4847c2019-11-07 08:05:17 +010029unexport HOST_ARCH
30ifeq ("x86_64", $(MK_ARCH))
31 export HOST_ARCH=$(HOST_ARCH_X86_64)
32else ifneq (,$(findstring $(MK_ARCH), "i386" "i486" "i586" "i686"))
33 export HOST_ARCH=$(HOST_ARCH_X86)
34else ifneq (,$(findstring $(MK_ARCH), "aarch64" "armv8l"))
35 export HOST_ARCH=$(HOST_ARCH_AARCH64)
Heinrich Schuchardtecd4e5c2022-05-07 22:58:39 +020036else ifneq (,$(findstring $(MK_ARCH), "arm" "armv7" "armv7a" "armv7l"))
Heinrich Schuchardt3b4847c2019-11-07 08:05:17 +010037 export HOST_ARCH=$(HOST_ARCH_ARM)
38else ifeq ("riscv32", $(MK_ARCH))
39 export HOST_ARCH=$(HOST_ARCH_RISCV32)
40else ifeq ("riscv64", $(MK_ARCH))
41 export HOST_ARCH=$(HOST_ARCH_RISCV64)
42endif
43undefine MK_ARCH
44
Masahiro Yamada6825a952014-02-04 17:24:28 +090045# Avoid funny character set dependencies
46unexport LC_ALL
47LC_COLLATE=C
48LC_NUMERIC=C
49export LC_COLLATE LC_NUMERIC
50
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +090051# Avoid interference with shell env settings
52unexport GREP_OPTIONS
53
Masahiro Yamada6825a952014-02-04 17:24:28 +090054# We are using a recursive build, so we need to do a little thinking
55# to get the ordering right.
56#
57# Most importantly: sub-Makefiles should only ever modify files in
58# their own directory. If in some directory we have a dependency on
59# a file in another dir (which doesn't happen often, but it's often
60# unavoidable when linking the built-in.o targets which finally
61# turn into vmlinux), we will call a sub make in that other dir, and
62# after that we are sure that everything which is in that other dir
63# is now up to date.
64#
65# The only cases where we need to modify files which have global
66# effects are thus separated out and done before the recursive
67# descending is started. They are now explicitly listed as the
68# prepare rule.
69
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +090070# Beautify output
71# ---------------------------------------------------------------------------
72#
73# Normally, we echo the whole command before executing it. By making
74# that echo $($(quiet)$(cmd)), we now have the possibility to set
75# $(quiet) to choose other forms of output instead, e.g.
76#
77# quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
78# cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
79#
80# If $(quiet) is empty, the whole command will be printed.
81# If it is set to "quiet_", only the short version will be printed.
82# If it is set to "silent_", nothing will be printed at all, since
83# the variable $(silent_cmd_cc_o_c) doesn't exist.
84#
85# A simple variant is to prefix commands with $(Q) - that's useful
86# for commands that shall be hidden in non-verbose mode.
87#
88# $(Q)ln $@ :<
89#
90# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
91# If KBUILD_VERBOSE equals 1 then the above command is displayed.
92#
Masahiro Yamada6825a952014-02-04 17:24:28 +090093# To put more focus on warnings, be less verbose as default
94# Use 'make V=1' to see the full commands
95
96ifeq ("$(origin V)", "command line")
97 KBUILD_VERBOSE = $(V)
wdenk7ebf7442002-11-02 23:17:16 +000098endif
Masahiro Yamada6825a952014-02-04 17:24:28 +090099ifndef KBUILD_VERBOSE
100 KBUILD_VERBOSE = 0
101endif
102
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +0900103ifeq ($(KBUILD_VERBOSE),1)
104 quiet =
105 Q =
106else
107 quiet=quiet_
108 Q = @
Masahiro Yamada6825a952014-02-04 17:24:28 +0900109endif
110
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +0900111# If the user is running make -s (silent mode), suppress echoing of
112# commands
113
114ifneq ($(filter 4.%,$(MAKE_VERSION)),) # make-4
115ifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),)
116 quiet=silent_
117endif
118else # make-3.8x
119ifneq ($(filter s% -s%,$(MAKEFLAGS)),)
120 quiet=silent_
121endif
Masahiro Yamada6825a952014-02-04 17:24:28 +0900122endif
123
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +0900124export quiet Q KBUILD_VERBOSE
Masahiro Yamada6825a952014-02-04 17:24:28 +0900125
Masahiro Yamada9e414032014-02-04 17:24:24 +0900126# kbuild supports saving output files in a separate directory.
127# To locate output files in a separate directory two syntaxes are supported.
128# In both cases the working directory must be the root of the kernel src.
129# 1) O=
130# Use "make O=dir/to/store/output/files/"
Marian Balakowiczf9328632006-09-01 19:49:50 +0200131#
Masahiro Yamada9e414032014-02-04 17:24:24 +0900132# 2) Set KBUILD_OUTPUT
133# Set the environment variable KBUILD_OUTPUT to point to the directory
134# where the output files shall be placed.
135# export KBUILD_OUTPUT=dir/to/store/output/files/
136# make
Stefan Roese887e2ec2006-09-07 11:51:23 +0200137#
Masahiro Yamada9e414032014-02-04 17:24:24 +0900138# The O= assignment takes precedence over the KBUILD_OUTPUT environment
139# variable.
wdenk7ebf7442002-11-02 23:17:16 +0000140
Masahiro Yamada9e414032014-02-04 17:24:24 +0900141# KBUILD_SRC is set on invocation of make in OBJ directory
142# KBUILD_SRC is not intended to be used by the regular user (for now)
143ifeq ($(KBUILD_SRC),)
144
145# OK, Make called in directory where kernel src resides
146# Do we want to locate output files in a separate directory?
Marian Balakowiczf9328632006-09-01 19:49:50 +0200147ifeq ("$(origin O)", "command line")
Masahiro Yamada9e414032014-02-04 17:24:24 +0900148 KBUILD_OUTPUT := $(O)
Bo Lv72d0e902023-01-02 14:27:34 +0000149else
150 KBUILD_OUTPUT := build
Marian Balakowiczf9328632006-09-01 19:49:50 +0200151endif
wdenk7ebf7442002-11-02 23:17:16 +0000152
Masahiro Yamada9e414032014-02-04 17:24:24 +0900153# That's our default target when none is given on the command line
154PHONY := _all
155_all:
156
157# Cancel implicit rules on top Makefile
158$(CURDIR)/Makefile Makefile: ;
159
160ifneq ($(KBUILD_OUTPUT),)
161# Invoke a second make in the output directory, passing relevant variables
162# check that the output directory actually exists
163saved-output := $(KBUILD_OUTPUT)
Masahiro Yamada5a449d72014-03-24 13:55:27 +0900164KBUILD_OUTPUT := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) \
165 && /bin/pwd)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900166$(if $(KBUILD_OUTPUT),, \
Masahiro Yamada598e2d32014-04-15 13:29:00 +0900167 $(error failed to create output directory "$(saved-output)"))
Masahiro Yamada9e414032014-02-04 17:24:24 +0900168
Tom Rini473fc272021-06-17 18:07:25 -0400169# Look for make include files relative to root of kernel src
170#
171# This does not become effective immediately because MAKEFLAGS is re-parsed
172# once after the Makefile is read. It is OK since we are going to invoke
173# 'sub-make' below.
174MAKEFLAGS += --include-dir=$(CURDIR)
175
Masahiro Yamada9e414032014-02-04 17:24:24 +0900176PHONY += $(MAKECMDGOALS) sub-make
177
178$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
179 @:
180
181sub-make: FORCE
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +0900182 $(Q)$(MAKE) -C $(KBUILD_OUTPUT) KBUILD_SRC=$(CURDIR) \
183 -f $(CURDIR)/Makefile $(filter-out _all sub-make,$(MAKECMDGOALS))
Masahiro Yamada9e414032014-02-04 17:24:24 +0900184
185# Leave processing to above invocation of make
186skip-makefile := 1
187endif # ifneq ($(KBUILD_OUTPUT),)
188endif # ifeq ($(KBUILD_SRC),)
189
190# We process the rest of the Makefile if this is the final invocation of make
191ifeq ($(skip-makefile),)
192
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +0900193# Do not print "Entering directory ...",
194# but we want to display it when entering to the output directory
195# so that IDEs/editors are able to understand relative filenames.
196MAKEFLAGS += --no-print-directory
197
198# Call a source code checker (by default, "sparse") as part of the
199# C compilation.
200#
201# Use 'make C=1' to enable checking of only re-compiled files.
202# Use 'make C=2' to enable checking of *all* source files, regardless
203# of whether they are re-compiled or not.
204#
Breno Matheus Lima656d8da2019-06-05 18:18:30 +0000205# See the file "doc/sparse.txt" for more details, including
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +0900206# where to get the "sparse" utility.
207
208ifeq ("$(origin C)", "command line")
209 KBUILD_CHECKSRC = $(C)
210endif
211ifndef KBUILD_CHECKSRC
212 KBUILD_CHECKSRC = 0
213endif
214
215# Use make M=dir to specify directory of external module to build
216# Old syntax make ... SUBDIRS=$PWD is still supported
217# Setting the environment variable KBUILD_EXTMOD take precedence
218ifdef SUBDIRS
219 KBUILD_EXTMOD ?= $(SUBDIRS)
220endif
221
222ifeq ("$(origin M)", "command line")
223 KBUILD_EXTMOD := $(M)
224endif
225
Masahiro Yamada6825a952014-02-04 17:24:28 +0900226# If building an external module we do not care about the all: rule
227# but instead _all depend on modules
Masahiro Yamada9e414032014-02-04 17:24:24 +0900228PHONY += all
Masahiro Yamada6825a952014-02-04 17:24:28 +0900229ifeq ($(KBUILD_EXTMOD),)
Masahiro Yamada9e414032014-02-04 17:24:24 +0900230_all: all
Masahiro Yamada6825a952014-02-04 17:24:28 +0900231else
232_all: modules
233endif
Masahiro Yamada9e414032014-02-04 17:24:24 +0900234
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +0900235ifeq ($(KBUILD_SRC),)
236 # building in the source tree
237 srctree := .
238else
239 ifeq ($(KBUILD_SRC)/,$(dir $(CURDIR)))
240 # building in a subdirectory of the source tree
241 srctree := ..
242 else
243 srctree := $(KBUILD_SRC)
244 endif
245endif
246objtree := .
Masahiro Yamada9e414032014-02-04 17:24:24 +0900247src := $(srctree)
248obj := $(objtree)
249
250VPATH := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD))
251
Bo Lv72d0e902023-01-02 14:27:34 +0000252buildsrc := $(abspath $(srctree))
253buildtree := $(abspath $(CURDIR)/$(KBUILD_OUTPUT))
254
255export srctree objtree VPATH buildsrc buildtree KBUILD_OUTPUT
Masahiro Yamada9e414032014-02-04 17:24:24 +0900256
Wolfgang Denk5013c092008-03-02 22:45:33 +0100257# Make sure CDPATH settings don't interfere
258unexport CDPATH
259
Marian Balakowiczf9328632006-09-01 19:49:50 +0200260#########################################################################
261
wdenk7ebf7442002-11-02 23:17:16 +0000262HOSTARCH := $(shell uname -m | \
263 sed -e s/i.86/x86/ \
264 -e s/sun4u/sparc64/ \
265 -e s/arm.*/arm/ \
266 -e s/sa110/arm/ \
267 -e s/ppc64/powerpc/ \
268 -e s/ppc/powerpc/ \
269 -e s/macppc/powerpc/\
270 -e s/sh.*/sh/)
271
272HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
273 sed -e 's/\(cygwin\).*/cygwin/')
274
275export HOSTARCH HOSTOS
276
wdenk7ebf7442002-11-02 23:17:16 +0000277#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +0200278
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -0400279# set default to nothing for native builds
Wolfgang Denka5284ef2007-03-06 18:01:47 +0100280ifeq ($(HOSTARCH),$(ARCH))
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -0400281CROSS_COMPILE ?=
wdenk7ebf7442002-11-02 23:17:16 +0000282endif
wdenk7ebf7442002-11-02 23:17:16 +0000283
Bo Lv96a66d02023-05-12 19:18:22 +0800284ifdef CONFIG_AML_UASAN
285#use gcc version above 9.0 to support asan-instrument-allocas option
wenbo.wangf46a9f22024-08-05 17:05:42 +0800286DIR_EXIST := $(shell [ -d $(prebuild_gcc)/gcc-arm-10.2-2020.11-x86_64-aarch64-none-linux-gnu ] && echo "1" || echo "0" )
287ifeq ($(DIR_EXIST),1)
288CROSS_COMPILE :=$(prebuild_gcc)/gcc-arm-10.2-2020.11-x86_64-aarch64-none-linux-gnu/bin/aarch64-none-linux-gnu-
Bo Lv96a66d02023-05-12 19:18:22 +0800289else
wenbo.wangf46a9f22024-08-05 17:05:42 +0800290CROSS_COMPILE ?=/opt/gcc-arm-10.2-2020.11-x86_64-aarch64-none-linux-gnu/bin/aarch64-none-linux-gnu-
291endif
292else
293DIR_EXIST := $(shell [ -d $(prebuild_gcc)/arm-gnu-toolchain-13.2.Rel1-x86_64-aarch64-none-elf ] && echo "1" || echo "0" )
294ifeq ($(DIR_EXIST),1)
295CROSS_COMPILE := $(prebuild_gcc)/arm-gnu-toolchain-13.2.Rel1-x86_64-aarch64-none-elf/bin/aarch64-none-elf-
296else
297CROSS_COMPILE ?= /opt/arm-gnu-toolchain-13.2.Rel1-x86_64-aarch64-none-elf/bin/aarch64-none-elf-
298endif
Bo Lv96a66d02023-05-12 19:18:22 +0800299endif
Bo Lv72d0e902023-01-02 14:27:34 +0000300export CROSS_COMPILE
301
Masahiro Yamada51148792014-07-30 14:08:17 +0900302KCONFIG_CONFIG ?= .config
303export KCONFIG_CONFIG
304
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900305# SHELL used by kbuild
306CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
307 else if [ -x /bin/bash ]; then echo /bin/bash; \
308 else echo sh; fi ; fi)
309
Tom Rini587e4a42020-03-27 11:46:27 -0400310HOST_LFS_CFLAGS := $(shell getconf LFS_CFLAGS 2>/dev/null)
311HOST_LFS_LDFLAGS := $(shell getconf LFS_LDFLAGS 2>/dev/null)
312HOST_LFS_LIBS := $(shell getconf LFS_LIBS 2>/dev/null)
313
Jeroen Hofsteeb477fe42014-09-10 20:08:51 +0200314HOSTCC = cc
315HOSTCXX = c++
Tom Rini587e4a42020-03-27 11:46:27 -0400316KBUILD_HOSTCFLAGS := -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \
Simon Glassb47ef6b2020-07-19 13:56:08 -0600317 $(HOST_LFS_CFLAGS) $(HOSTCFLAGS)
Tom Rini587e4a42020-03-27 11:46:27 -0400318KBUILD_HOSTCXXFLAGS := -O2 $(HOST_LFS_CFLAGS) $(HOSTCXXFLAGS)
319KBUILD_HOSTLDFLAGS := $(HOST_LFS_LDFLAGS) $(HOSTLDFLAGS)
320KBUILD_HOSTLDLIBS := $(HOST_LFS_LIBS) $(HOSTLDLIBS)
Masahiro Yamada598e2d32014-04-15 13:29:00 +0900321
Philipp Tomsich9de4f952018-05-14 15:22:06 +0200322# With the move to GCC 6, we have implicitly upgraded our language
323# standard to GNU11 (see https://gcc.gnu.org/gcc-5/porting_to.html).
324# Some Linux distributions (including RHEL7, SLES13, Debian 8) still
325# have older compilers as their default, so we make it explicit for
326# these that our host tools are GNU11 (i.e. C11 w/ GNU extensions).
Tom Rinifa893992018-06-19 23:53:54 -0400327CSTD_FLAG := -std=gnu11
Tom Rini587e4a42020-03-27 11:46:27 -0400328KBUILD_HOSTCFLAGS += $(CSTD_FLAG)
Philipp Tomsich9de4f952018-05-14 15:22:06 +0200329
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900330ifeq ($(HOSTOS),cygwin)
Tom Rini587e4a42020-03-27 11:46:27 -0400331KBUILD_HOSTCFLAGS += -ansi
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900332endif
333
334# Mac OS X / Darwin's C preprocessor is Apple specific. It
335# generates numerous errors and warnings. We want to bypass it
336# and use GNU C's cpp. To do this we pass the -traditional-cpp
337# option to the compiler. Note that the -traditional-cpp flag
338# DOES NOT have the same semantics as GNU C's flag, all it does
339# is invoke the GNU preprocessor in stock ANSI/ISO C fashion.
340#
341# Apple's linker is similar, thanks to the new 2 stage linking
342# multiple symbol definitions are treated as errors, hence the
343# -multiply_defined suppress option to turn off this error.
344#
345ifeq ($(HOSTOS),darwin)
346# get major and minor product version (e.g. '10' and '6' for Snow Leopard)
347DARWIN_MAJOR_VERSION = $(shell sw_vers -productVersion | cut -f 1 -d '.')
348DARWIN_MINOR_VERSION = $(shell sw_vers -productVersion | cut -f 2 -d '.')
349
350os_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \
351 $(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
352
默默ab8fc412019-03-31 16:07:03 +0800353os_x_after = $(shell if [ $(DARWIN_MAJOR_VERSION) -ge $(1) -a \
Wolfgang Denk0a50b3c2021-09-27 17:42:38 +0200354 $(DARWIN_MINOR_VERSION) -ge $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
默默ab8fc412019-03-31 16:07:03 +0800355
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900356# Snow Leopards build environment has no longer restrictions as described above
357HOSTCC = $(call os_x_before, 10, 5, "cc", "gcc")
Tom Rini587e4a42020-03-27 11:46:27 -0400358KBUILD_HOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp")
359KBUILD_HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")
Andreas Bießmann1fddd7b2015-02-09 00:06:10 +0100360
Wolfgang Denk0a50b3c2021-09-27 17:42:38 +0200361# macOS Mojave (10.14.X)
默默ab8fc412019-03-31 16:07:03 +0800362# Undefined symbols for architecture x86_64: "_PyArg_ParseTuple"
Tom Rini587e4a42020-03-27 11:46:27 -0400363KBUILD_HOSTLDFLAGS += $(call os_x_after, 10, 14, "-lpython -dynamclib", "")
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900364endif
365
Masahiro Yamada6825a952014-02-04 17:24:28 +0900366# Decide whether to build built-in, modular, or both.
367# Normally, just do built-in.
368
369KBUILD_MODULES :=
370KBUILD_BUILTIN := 1
371
Masahiro Yamada45f0ad92014-06-16 18:56:38 +0900372# If we have only "make modules", don't compile built-in objects.
373# When we're building modules with modversions, we need to consider
374# the built-in objects during the descend as well, in order to
375# make sure the checksums are up to date before we record them.
Masahiro Yamada6825a952014-02-04 17:24:28 +0900376
377ifeq ($(MAKECMDGOALS),modules)
378 KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
379endif
380
Masahiro Yamada45f0ad92014-06-16 18:56:38 +0900381# If we have "make <whatever> modules", compile modules
382# in addition to whatever we do anyway.
383# Just "make" or "make all" shall build modules as well
Masahiro Yamada6825a952014-02-04 17:24:28 +0900384
385# U-Boot does not need modules
386#ifneq ($(filter all _all modules,$(MAKECMDGOALS)),)
387# KBUILD_MODULES := 1
388#endif
389
390#ifeq ($(MAKECMDGOALS),)
391# KBUILD_MODULES := 1
392#endif
393
Simon Glassb51882d2019-09-25 08:56:28 -0600394# Check ths size of a binary:
395# Args:
396# $1: File to check
397# #2: Size limit in bytes (decimal or 0xhex)
Heinrich Schuchardtb2750302019-04-02 19:19:04 +0200398define size_check
399 actual=$$( wc -c $1 | awk '{print $$1}'); \
400 limit=$$( printf "%d" $2 ); \
401 if test $$actual -gt $$limit; then \
402 echo "$1 exceeds file size limit:" >&2; \
Tom Rini90037eb2019-10-23 15:39:41 -0400403 echo " limit: $$(printf %#x $$limit) bytes" >&2; \
Simon Glassb51882d2019-09-25 08:56:28 -0600404 echo " actual: $$(printf %#x $$actual) bytes" >&2; \
405 echo " excess: $$(printf %#x $$((actual - limit))) bytes" >&2;\
Heinrich Schuchardtb2750302019-04-02 19:19:04 +0200406 exit 1; \
407 fi
408endef
409export size_check
410
Masahiro Yamada6825a952014-02-04 17:24:28 +0900411export KBUILD_MODULES KBUILD_BUILTIN
412export KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD
413
Masahiro Yamadabf4b3de2014-02-04 17:24:18 +0900414# We need some generic definitions (do not try to remake the file).
Masahiro Yamada4d713be2015-07-05 01:56:57 +0900415scripts/Kbuild.include: ;
416include scripts/Kbuild.include
Masahiro Yamadabf4b3de2014-02-04 17:24:18 +0900417
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900418# Make variables (CC, etc...)
419
420AS = $(CROSS_COMPILE)as
421# Always use GNU ld
422ifneq ($(shell $(CROSS_COMPILE)ld.bfd -v 2> /dev/null),)
423LD = $(CROSS_COMPILE)ld.bfd
424else
425LD = $(CROSS_COMPILE)ld
426endif
427CC = $(CROSS_COMPILE)gcc
428CPP = $(CC) -E
429AR = $(CROSS_COMPILE)ar
430NM = $(CROSS_COMPILE)nm
431LDR = $(CROSS_COMPILE)ldr
432STRIP = $(CROSS_COMPILE)strip
433OBJCOPY = $(CROSS_COMPILE)objcopy
434OBJDUMP = $(CROSS_COMPILE)objdump
Eugeniu Roscae91610d2018-05-19 14:13:50 +0200435LEX = flex
436YACC = bison
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900437AWK = awk
Masahiro Yamadaf77d7092014-05-12 11:45:55 +0900438PERL = perl
Stefano Babicb48bfc72017-04-05 17:46:41 +0200439PYTHON ?= python
Eugeniu Roscae91610d2018-05-19 14:13:50 +0200440PYTHON2 = python2
Andrey Zhizhikinf68ed0b2021-05-01 22:12:21 +0200441PYTHON3 ?= python3
Simon Glass93b19652021-09-22 11:34:44 -0600442
443# The devicetree compiler and pylibfdt are automatically built unless DTC is
444# provided. If DTC is provided, it is assumed the pylibfdt is available too.
445DTC_INTREE := $(objtree)/scripts/dtc/dtc
446DTC ?= $(DTC_INTREE)
447DTC_MIN_VERSION := 010406
448
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900449CHECK = sparse
450
451CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
452 -Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF)
453
Masahiro Yamada3b612972014-08-31 15:16:53 +0900454KBUILD_CPPFLAGS := -D__KERNEL__ -D__UBOOT__
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900455
Bo Lv72d0e902023-01-02 14:27:34 +0000456KBUILD_CFLAGS := -Wall -Wstrict-prototypes -Werror \
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900457 -Wno-format-security \
Tom Rinifa893992018-06-19 23:53:54 -0400458 -fno-builtin -ffreestanding $(CSTD_FLAG)
Bin Meng5bc11922018-09-16 22:35:28 -0700459KBUILD_CFLAGS += -fshort-wchar -fno-strict-aliasing
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900460KBUILD_AFLAGS := -D__ASSEMBLY__
Tom Rini587e4a42020-03-27 11:46:27 -0400461KBUILD_LDFLAGS :=
462
Bo Lv96a66d02023-05-12 19:18:22 +0800463ifeq ("$(CONFIG_AML_UASAN)", "1")
464KBUILD_CFLAGS += -DCONFIG_AML_UASAN
465KBUILD_AFLAGS += -DCONFIG_AML_UASAN
466endif
467ifdef CONFIG_AML_UASAN
468cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1)))
469
470# UASAN_SHADOW_OFFSET = (UASAN_DDR_SIZE * 7 / 8 - 256) << 20
471# use 256 MB space for uboot and malloc/stack
472UASAN_SHADOW_OFFSET=$(shell printf "0x%08x\n" $$(( (((($(UASAN_DDR_SIZE) * 7) >> 3) - 256) << 20) )) )
473CFLAGS_UASAN := -fsanitize=kernel-address \
474 -fsanitize-address-use-after-scope
475CFLAGS_UASAN += $(call cc-param,asan-globals=1)
476CFLAGS_UASAN += $(call cc-param,asan-stack=1)
477CFLAGS_UASAN += $(call cc-param,asan-use-after-scope=1)
478CFLAGS_UASAN += $(call cc-param,asan-instrument-allocas=1)
479CFLAGS_UASAN += -fasan-shadow-offset=${UASAN_SHADOW_OFFSET}
480CFLAGS_UASAN += -DCONFIG_UASAN_SHADOW_OFFSET=${UASAN_SHADOW_OFFSET}
481
482export CFLAGS_UASAN
483
484endif
485
Tao Zeng4dd2adf2024-02-21 15:26:04 +0800486ifeq ("$(CONFIG_NOVERBOSE_BUILD)", "1")
487KBUILD_CFLAGS += -DCONFIG_NOVERBOSE_BUILD
488CFLAGS += -DCONFIG_NOVERBOSE_BUILD
489export CFLAGS
490endif
491
Tom Rini587e4a42020-03-27 11:46:27 -0400492ifeq ($(cc-name),clang)
493ifneq ($(CROSS_COMPILE),)
494CLANG_TARGET := --target=$(notdir $(CROSS_COMPILE:%-=%))
495GCC_TOOLCHAIN_DIR := $(dir $(shell which $(LD)))
496CLANG_PREFIX := --prefix=$(GCC_TOOLCHAIN_DIR)
497GCC_TOOLCHAIN := $(realpath $(GCC_TOOLCHAIN_DIR)/..)
498endif
499ifneq ($(GCC_TOOLCHAIN),)
500CLANG_GCC_TC := --gcc-toolchain=$(GCC_TOOLCHAIN)
501endif
502KBUILD_CFLAGS += $(CLANG_TARGET) $(CLANG_GCC_TC) $(CLANG_PREFIX)
503KBUILD_AFLAGS += $(CLANG_TARGET) $(CLANG_GCC_TC) $(CLANG_PREFIX)
504KBUILD_CFLAGS += $(call cc-option, -no-integrated-as)
505KBUILD_AFLAGS += $(call cc-option, -no-integrated-as)
506endif
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900507
Andy Shevchenko6ace36e2018-08-06 19:00:22 +0300508# Don't generate position independent code
509KBUILD_CFLAGS += $(call cc-option,-fno-PIE)
510KBUILD_AFLAGS += $(call cc-option,-fno-PIE)
511
Masahiro Yamada74241452014-02-24 11:12:09 +0900512# Read UBOOTRELEASE from include/config/uboot.release (if it exists)
513UBOOTRELEASE = $(shell cat include/config/uboot.release 2> /dev/null)
514UBOOTVERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION)
Masahiro Yamada5f30f3b2014-02-04 17:24:30 +0900515
Bo Lv72d0e902023-01-02 14:27:34 +0000516ACSRELEASE = $(shell cat include/config/acs.release 2> /dev/null)
517
518export VERSION PATCHLEVEL SUBLEVEL UBOOTRELEASE UBOOTVERSION ACSRELEASE
Masahiro Yamada026f9cf2014-03-05 16:59:40 +0900519export ARCH CPU BOARD VENDOR SOC CPUDIR BOARDDIR
Tom Rini587e4a42020-03-27 11:46:27 -0400520export CONFIG_SHELL HOSTCC KBUILD_HOSTCFLAGS CROSS_COMPILE AS LD CC
521export CPP AR NM LDR STRIP OBJCOPY OBJDUMP KBUILD_HOSTLDFLAGS KBUILD_HOSTLDLIBS
Eugeniu Roscae91610d2018-05-19 14:13:50 +0200522export MAKE LEX YACC AWK PERL PYTHON PYTHON2 PYTHON3
Tom Rini587e4a42020-03-27 11:46:27 -0400523export HOSTCXX KBUILD_HOSTCXXFLAGS CHECK CHECKFLAGS DTC DTC_FLAGS
Masahiro Yamadaf6322eb2014-02-04 17:24:15 +0900524
Tom Rini587e4a42020-03-27 11:46:27 -0400525export KBUILD_CPPFLAGS NOSTDINC_FLAGS UBOOTINCLUDE OBJCOPYFLAGS KBUILD_LDFLAGS
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900526export KBUILD_CFLAGS KBUILD_AFLAGS
527
Tom Rini5972ff02020-03-11 18:11:17 -0400528export CC_VERSION_TEXT := $(shell $(CC) --version | head -n 1)
529
Masahiro Yamada6825a952014-02-04 17:24:28 +0900530# When compiling out-of-tree modules, put MODVERDIR in the module
531# tree rather than in the kernel tree. The kernel tree might
532# even be read-only.
533export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions
534
535# Files to ignore in find ... statements
536
Masahiro Yamada598e2d32014-04-15 13:29:00 +0900537export RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \
538 -name CVS -o -name .pc -o -name .hg -o -name .git \) \
539 -prune -o
Masahiro Yamada6825a952014-02-04 17:24:28 +0900540export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \
541 --exclude CVS --exclude .pc --exclude .hg --exclude .git
542
543# ===========================================================================
544# Rules shared between *config targets and build targets
545
546# Basic helpers built in scripts/
547PHONY += scripts_basic
548scripts_basic:
549 $(Q)$(MAKE) $(build)=scripts/basic
550 $(Q)rm -f .tmp_quiet_recordmcount
551
552# To avoid any implicit rule to kick in, define an empty command.
553scripts/basic/%: scripts_basic ;
554
Masahiro Yamada3341bfe2014-02-04 17:24:42 +0900555PHONY += outputmakefile
556# outputmakefile generates a Makefile in the output directory, if using a
557# separate output directory. This allows convenient use of make in the
558# output directory.
559outputmakefile:
560ifneq ($(KBUILD_SRC),)
561 $(Q)ln -fsn $(srctree) source
Bo Lv72d0e902023-01-02 14:27:34 +0000562 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL)
Masahiro Yamada3341bfe2014-02-04 17:24:42 +0900563endif
564
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900565# To make sure we do not include .config for any of the *config targets
566# catch them early, and hand them over to scripts/kconfig/Makefile
567# It is allowed to specify more targets when calling make, including
568# mixing *config targets and build targets.
569# For example 'make oldconfig all'.
570# Detect when mixed targets is specified, and make a second invocation
571# of make so .config is not included in this case either (for *config).
Masahiro Yamada6825a952014-02-04 17:24:28 +0900572
Masahiro Yamada74241452014-02-24 11:12:09 +0900573version_h := include/generated/version_autogenerated.h
574timestamp_h := include/generated/timestamp_autogenerated.h
Rasmus Villemoesf3d8f7d2018-03-20 11:38:45 +0100575defaultenv_h := include/generated/defaultenv_autogenerated.h
Michal Simekdacec832020-02-18 15:03:13 +0100576dt_h := include/generated/dt.h
Simon Glass86b9c3e2021-10-21 21:08:46 -0600577env_h := include/generated/environment.h
Bo Lv72d0e902023-01-02 14:27:34 +0000578config_h := include/config.h
Masahiro Yamada74241452014-02-24 11:12:09 +0900579
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900580no-dot-config-targets := clean clobber mrproper distclean \
Masahiro Yamada27651182014-02-21 15:45:11 +0900581 help %docs check% coccicheck \
Simon Glassd1962ac2022-08-06 17:51:59 -0600582 ubootversion backup tests check pcheck qcheck tcheck \
583 pylint pylint_err
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900584
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900585config-targets := 0
586mixed-targets := 0
587dot-config := 1
588
589ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
590 ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
591 dot-config := 0
592 endif
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900593endif
594
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900595ifeq ($(KBUILD_EXTMOD),)
596 ifneq ($(filter config %config,$(MAKECMDGOALS)),)
597 config-targets := 1
Masahiro Yamada98bd0e02015-07-05 01:56:55 +0900598 ifneq ($(words $(MAKECMDGOALS)),1)
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900599 mixed-targets := 1
600 endif
601 endif
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900602endif
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900603
604ifeq ($(mixed-targets),1)
605# ===========================================================================
606# We're called with mixed targets (*config and build targets).
607# Handle them one by one.
608
Masahiro Yamadae7734402014-08-05 15:56:44 +0900609PHONY += $(MAKECMDGOALS) __build_one_by_one
Masahiro Yamada53bca5a2014-02-04 17:24:41 +0900610
Masahiro Yamadae7734402014-08-05 15:56:44 +0900611$(filter-out __build_one_by_one, $(MAKECMDGOALS)): __build_one_by_one
Masahiro Yamada53bca5a2014-02-04 17:24:41 +0900612 @:
613
Masahiro Yamadae7734402014-08-05 15:56:44 +0900614__build_one_by_one:
Masahiro Yamada53bca5a2014-02-04 17:24:41 +0900615 $(Q)set -e; \
616 for i in $(MAKECMDGOALS); do \
617 $(MAKE) -f $(srctree)/Makefile $$i; \
618 done
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900619
620else
621ifeq ($(config-targets),1)
622# ===========================================================================
623# *config targets only - make sure prerequisites are updated, and descend
624# in scripts/kconfig to make the *config target
625
Masahiro Yamada51148792014-07-30 14:08:17 +0900626KBUILD_DEFCONFIG := sandbox_defconfig
627export KBUILD_DEFCONFIG KBUILD_KCONFIG
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900628
Masahiro Yamada51148792014-07-30 14:08:17 +0900629config: scripts_basic outputmakefile FORCE
Masahiro Yamada5f9eb222015-03-13 18:08:55 +0900630 $(Q)$(MAKE) $(build)=scripts/kconfig $@
Masahiro Yamada51148792014-07-30 14:08:17 +0900631
632%config: scripts_basic outputmakefile FORCE
Masahiro Yamada5f9eb222015-03-13 18:08:55 +0900633 $(Q)$(MAKE) $(build)=scripts/kconfig $@
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900634
635else
636# ===========================================================================
637# Build targets only - this includes vmlinux, arch specific targets, clean
638# targets and others. In general all targets except *config targets.
639
Masahiro Yamada61304db2017-01-30 11:12:07 +0900640# Additional helpers built in scripts/
641# Carefully list dependencies so we do not try to build scripts twice
642# in parallel
643PHONY += scripts
Tom Rini473fc272021-06-17 18:07:25 -0400644scripts: scripts_basic scripts_dtc include/config/auto.conf
Masahiro Yamada61304db2017-01-30 11:12:07 +0900645 $(Q)$(MAKE) $(build)=$(@)
646
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900647ifeq ($(dot-config),1)
648# Read in config
Masahiro Yamada51148792014-07-30 14:08:17 +0900649-include include/config/auto.conf
650
651# Read in dependencies to all Kconfig* files, make sure to run
652# oldconfig if changes are detected.
653-include include/config/auto.conf.cmd
654
655# To avoid any implicit rule to kick in, define an empty command
656$(KCONFIG_CONFIG) include/config/auto.conf.cmd: ;
657
658# If .config is newer than include/config/auto.conf, someone tinkered
659# with it and forgot to run make oldconfig.
660# if auto.conf.cmd is missing then we are probably in a cleaned tree so
661# we execute the config step to be sure to catch updated Kconfig files
662include/config/%.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd
Eugeniu Roscae91610d2018-05-19 14:13:50 +0200663 $(Q)$(MAKE) -f $(srctree)/Makefile syncconfig
Masahiro Yamada5f9eb222015-03-13 18:08:55 +0900664 @# If the following part fails, include/config/auto.conf should be
665 @# deleted so "make silentoldconfig" will be re-run on the next build.
666 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.autoconf || \
667 { rm -f include/config/auto.conf; false; }
668 @# include/config.h has been updated after "make silentoldconfig".
669 @# We need to touch include/config/auto.conf so it gets newer
670 @# than include/config.h.
671 @# Otherwise, 'make silentoldconfig' would be invoked twice.
672 $(Q)touch include/config/auto.conf
Masahiro Yamada51148792014-07-30 14:08:17 +0900673
Bo Lv72d0e902023-01-02 14:27:34 +0000674u-boot.cfg spl/u-boot.cfg tpl/u-boot.cfg: include/config.h FORCE
Philipp Tomsich0d982c52017-07-05 17:30:40 +0200675 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.autoconf $(@)
Meng yuf8933052024-09-11 16:53:04 +0800676ifdef CONFIG_AML_UASAN
677 echo "#define CONFIG_AML_UASAN 1" >> $(config_h)
678endif
Philipp Tomsich0d982c52017-07-05 17:30:40 +0200679
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900680-include include/autoconf.mk
681-include include/autoconf.mk.dep
Masahiro Yamada2b3c9d32014-02-04 17:24:19 +0900682
Masahiro Yamada51148792014-07-30 14:08:17 +0900683# We want to include arch/$(ARCH)/config.mk only when include/config/auto.conf
684# is up-to-date. When we switch to a different board configuration, old CONFIG
685# macros are still remaining in include/config/auto.conf. Without the following
686# gimmick, wrong config.mk would be included leading nasty warnings/errors.
Masahiro Yamadacffcd282015-04-03 12:30:25 +0900687ifneq ($(wildcard $(KCONFIG_CONFIG)),)
688ifneq ($(wildcard include/config/auto.conf),)
689autoconf_is_old := $(shell find . -path ./$(KCONFIG_CONFIG) -newer \
690 include/config/auto.conf)
691ifeq ($(autoconf_is_old),)
Masahiro Yamada4d713be2015-07-05 01:56:57 +0900692include config.mk
693include arch/$(ARCH)/Makefile
Masahiro Yamadaced07152014-02-04 17:24:21 +0900694endif
Masahiro Yamadacffcd282015-04-03 12:30:25 +0900695endif
696endif
Simon Glassfada9e22013-04-20 08:42:36 +0000697
Simon Glassbb1ae552016-11-07 08:47:07 -0700698# These are set by the arch-specific config.mk. Make sure they are exported
699# so they can be used when building an EFI application.
700export EFI_LDS # Filename of EFI link script in arch/$(ARCH)/lib
701export EFI_CRT0 # Filename of EFI CRT0 in arch/$(ARCH)/lib
702export EFI_RELOC # Filename of EFU relocation code in arch/$(ARCH)/lib
703export CFLAGS_EFI # Compiler flags to add when building EFI app
704export CFLAGS_NON_EFI # Compiler flags to remove when building EFI app
705export EFI_TARGET # binutils target if EFI is natively supported
706
Simon Glassa55014d2022-08-03 12:13:08 -0600707export LTO_ENABLE
708
709# This is y if LTO is enabled for this build. See NO_LTO=1 to disable LTO
710ifeq ($(NO_LTO),)
711LTO_ENABLE=$(if $(CONFIG_LTO),y)
712endif
713
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000714# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
715# that (or fail if absent). Otherwise, search for a linker script in a
716# standard location.
717
718ifndef LDSCRIPT
Masahiro Yamada4379ac62014-03-11 11:05:19 +0900719 #LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot.lds.debug
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000720 ifdef CONFIG_SYS_LDSCRIPT
721 # need to strip off double quotes
Masahiro Yamada4a377552014-02-25 19:26:48 +0900722 LDSCRIPT := $(srctree)/$(CONFIG_SYS_LDSCRIPT:"%"=%)
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000723 endif
724endif
725
Simon Glassee601972011-11-21 10:49:37 +0000726# If there is no specified link script, we look in a number of places for it
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000727ifndef LDSCRIPT
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000728 ifeq ($(wildcard $(LDSCRIPT)),)
Masahiro Yamada4379ac62014-03-11 11:05:19 +0900729 LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot.lds
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000730 endif
731 ifeq ($(wildcard $(LDSCRIPT)),)
Masahiro Yamada4379ac62014-03-11 11:05:19 +0900732 LDSCRIPT := $(srctree)/$(CPUDIR)/u-boot.lds
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000733 endif
734 ifeq ($(wildcard $(LDSCRIPT)),)
Masahiro Yamada4379ac62014-03-11 11:05:19 +0900735 LDSCRIPT := $(srctree)/arch/$(ARCH)/cpu/u-boot.lds
Simon Glassee601972011-11-21 10:49:37 +0000736 endif
Ilya Yanokd51dfff2011-06-20 12:45:37 +0000737endif
738
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900739else
Masahiro Yamada51148792014-07-30 14:08:17 +0900740# Dummy target needed, because used as prerequisite
741include/config/auto.conf: ;
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900742endif # $(dot-config)
743
Heinrich Schuchardt9b78c922022-06-16 13:43:50 +0200744ifdef CONFIG_CC_OPTIMIZE_FOR_DEBUG
745KBUILD_HOSTCFLAGS := -Wall -Wstrict-prototypes -Og -g -fomit-frame-pointer \
746 $(HOST_LFS_CFLAGS) $(HOSTCFLAGS)
Heinrich Schuchardt8602d972022-07-31 10:06:13 +0200747# Avoid false positives -Wmaybe-uninitialized
748# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78394
749KBUILD_HOSTCFLAGS += -Wno-maybe-uninitialized
Heinrich Schuchardt9b78c922022-06-16 13:43:50 +0200750KBUILD_HOSTCXXFLAGS := -Og -g $(HOST_LFS_CFLAGS) $(HOSTCXXFLAGS)
751endif
752
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300753#
754# Xtensa linker script cannot be preprocessed with -ansi because of
755# preprocessor operations on strings that don't make C identifiers.
756#
757ifeq ($(CONFIG_XTENSA),)
758LDPPFLAGS += -ansi
759endif
760
Masahiro Yamada4a8ed8e2014-08-22 19:42:29 +0900761ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
762KBUILD_CFLAGS += -Os
Sean Andersonf38cb2a2022-02-22 12:19:24 -0500763endif
764
765ifdef CONFIG_CC_OPTIMIZE_FOR_SPEED
Masahiro Yamada4a8ed8e2014-08-22 19:42:29 +0900766KBUILD_CFLAGS += -O2
767endif
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900768
Sean Andersone9765042022-02-22 12:19:25 -0500769ifdef CONFIG_CC_OPTIMIZE_FOR_DEBUG
Heinrich Schuchardt8602d972022-07-31 10:06:13 +0200770KBUILD_CFLAGS += -Og -Wno-maybe-uninitialized
771# Avoid false positives -Wmaybe-uninitialized
772# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78394
773KBUILD_CFLAGS += -Wno-maybe-uninitialized
Sean Andersone9765042022-02-22 12:19:25 -0500774endif
775
Marek Behúnc1094982021-05-20 13:24:03 +0200776LTO_CFLAGS :=
777LTO_FINAL_LDFLAGS :=
778export LTO_CFLAGS LTO_FINAL_LDFLAGS
Simon Glassa55014d2022-08-03 12:13:08 -0600779ifeq ($(LTO_ENABLE),y)
Marek Behúnc1094982021-05-20 13:24:03 +0200780 ifeq ($(cc-name),clang)
Simon Glassa55014d2022-08-03 12:13:08 -0600781 LTO_CFLAGS += -DLTO_ENABLE -flto
Marek Behúnc1094982021-05-20 13:24:03 +0200782 LTO_FINAL_LDFLAGS += -flto
783
784 AR = $(shell $(CC) -print-prog-name=llvm-ar)
785 NM = $(shell $(CC) -print-prog-name=llvm-nm)
786 else
787 NPROC := $(shell nproc 2>/dev/null || echo 1)
Simon Glassa55014d2022-08-03 12:13:08 -0600788 LTO_CFLAGS += -DLTO_ENABLE -flto=$(NPROC)
Marek Behúnc1094982021-05-20 13:24:03 +0200789 LTO_FINAL_LDFLAGS += -fuse-linker-plugin -flto=$(NPROC)
790
791 # use plugin aware tools
792 AR = $(CROSS_COMPILE)gcc-ar
793 NM = $(CROSS_COMPILE)gcc-nm
794 endif
795
796 CFLAGS_NON_EFI += $(LTO_CFLAGS)
797
798 KBUILD_CFLAGS += $(LTO_CFLAGS)
799endif
800
Joel Peshkin4e9bce12021-04-11 11:21:58 +0200801ifeq ($(CONFIG_STACKPROTECTOR),y)
802KBUILD_CFLAGS += $(call cc-option,-fstack-protector-strong)
803CFLAGS_EFI += $(call cc-option,-fno-stack-protector)
804else
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900805KBUILD_CFLAGS += $(call cc-option,-fno-stack-protector)
Joel Peshkin4e9bce12021-04-11 11:21:58 +0200806endif
Prabhakar Kushwaha687a7512015-07-02 12:00:17 +0530807KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks)
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900808
Tom Rini473fc272021-06-17 18:07:25 -0400809# disable pointer signed / unsigned warnings in gcc 4.0
810KBUILD_CFLAGS += -Wno-pointer-sign
811
Tom Rini587e4a42020-03-27 11:46:27 -0400812# disable stringop warnings in gcc 8+
813KBUILD_CFLAGS += $(call cc-disable-warning, stringop-truncation)
814
Tom Rinic48b7812021-05-03 16:48:57 -0400815KBUILD_CFLAGS += $(call cc-disable-warning, zero-length-bounds)
816KBUILD_CFLAGS += $(call cc-disable-warning, array-bounds)
817KBUILD_CFLAGS += $(call cc-disable-warning, stringop-overflow)
818
Tom Rini443f2232020-05-14 08:30:02 -0400819# Enabled with W=2, disabled by default as noisy
820KBUILD_CFLAGS += $(call cc-disable-warning, maybe-uninitialized)
821
Masahiro Yamada1eb2e712018-04-16 13:18:31 +0900822# change __FILE__ to the relative path from the srctree
823KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
824
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900825KBUILD_CFLAGS += -g
826# $(KBUILD_AFLAGS) sets -g, which causes gcc to pass a suitable -g<format>
827# option to the assembler.
828KBUILD_AFLAGS += -g
829
830# Report stack usage if supported
Alexey Brodkin948071b2018-04-02 12:18:02 +0300831# ARC tools based on GCC 7.1 has an issue with stack usage
832# with naked functions, see commit message for more details
833ifndef CONFIG_ARC
Masahiro Yamada5b1f1f42013-12-11 20:11:34 +0900834ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-stack-usage.sh $(CC)),y)
835 KBUILD_CFLAGS += -fstack-usage
836endif
Alexey Brodkin948071b2018-04-02 12:18:02 +0300837endif
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900838
839KBUILD_CFLAGS += $(call cc-option,-Wno-format-nonliteral)
Andy Shevchenko53dc8ae2019-11-29 19:47:59 +0200840KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member)
841
Tom Rini473fc272021-06-17 18:07:25 -0400842ifdef CONFIG_CC_IS_CLANG
Tom Rini4760fe22018-04-22 10:20:50 -0400843KBUILD_CPPFLAGS += $(call cc-option,-Qunused-arguments,)
844KBUILD_CFLAGS += $(call cc-disable-warning, format-invalid-specifier)
845KBUILD_CFLAGS += $(call cc-disable-warning, gnu)
Tom Rini587e4a42020-03-27 11:46:27 -0400846KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member)
847# Quiet clang warning: comparison of unsigned expression < 0 is always false
848KBUILD_CFLAGS += $(call cc-disable-warning, tautological-compare)
849# CLANG uses a _MergedGlobals as optimization, but this breaks modpost, as the
850# source of a reference will be _MergedGlobals and not on of the whitelisted names.
851# See modpost pattern 2
852KBUILD_CFLAGS += $(call cc-option, -mno-global-merge,)
Tom Rini4760fe22018-04-22 10:20:50 -0400853KBUILD_CFLAGS += $(call cc-option, -fcatch-undefined-behavior)
Tom Rini473fc272021-06-17 18:07:25 -0400854endif
Tom Rini587e4a42020-03-27 11:46:27 -0400855
856# These warnings generated too much noise in a regular build.
857# Use make W=1 to enable them (see scripts/Makefile.extrawarn)
858KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable)
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900859
Masahiro Yamada65bb6d82014-04-18 19:09:51 +0900860# Prohibit date/time macros, which would make the build non-deterministic
861KBUILD_CFLAGS += $(call cc-option,-Werror=date-time)
862
Masahiro Yamada4d713be2015-07-05 01:56:57 +0900863include scripts/Makefile.extrawarn
Masahiro Yamada6419e142014-08-05 15:56:43 +0900864
Masahiro Yamada0e6256d2014-04-15 14:47:40 +0900865# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments
866KBUILD_CPPFLAGS += $(KCPPFLAGS)
867KBUILD_AFLAGS += $(KAFLAGS)
868KBUILD_CFLAGS += $(KCFLAGS)
869
Simon Glassb47ef6b2020-07-19 13:56:08 -0600870KBUILD_HOSTCFLAGS += $(if $(CONFIG_TOOLS_DEBUG),-g)
871
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900872# Use UBOOTINCLUDE when you must reference the include/ directory.
873# Needed to be compatible with the O= option
Masahiro Yamadaf5c66bd2014-03-11 11:05:18 +0900874UBOOTINCLUDE := \
Heinrich Schuchardt0053d262020-04-10 11:10:32 +0200875 -Iinclude \
876 $(if $(KBUILD_SRC), -I$(srctree)/include) \
877 $(if $(CONFIG_$(SPL_)SYS_THUMB_BUILD), \
878 $(if $(CONFIG_HAS_THUMB2), \
879 $(if $(CONFIG_CPU_V7M), \
880 -I$(srctree)/arch/arm/thumb1/include), \
881 -I$(srctree)/arch/arm/thumb1/include)) \
882 -I$(srctree)/arch/$(ARCH)/include \
883 -include $(srctree)/include/linux/kconfig.h
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900884
885NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900886
887# FIX ME
Masahiro Yamada026f9cf2014-03-05 16:59:40 +0900888cpp_flags := $(KBUILD_CPPFLAGS) $(PLATFORM_CPPFLAGS) $(UBOOTINCLUDE) \
889 $(NOSTDINC_FLAGS)
Masahiro Yamada433b2f12014-02-04 17:24:35 +0900890c_flags := $(KBUILD_CFLAGS) $(cpp_flags)
891
wdenk7ebf7442002-11-02 23:17:16 +0000892#########################################################################
893# U-Boot objects....order is important (i.e. start must be first)
894
Masahiro Yamada9e414032014-02-04 17:24:24 +0900895HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200896
Simon Glass5f57b002021-07-10 21:14:22 -0600897libs-$(CONFIG_API) += api/
Masahiro Yamada656de6b2014-02-04 17:24:37 +0900898libs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
Simon Glass19a91f22021-10-14 12:47:54 -0600899libs-y += boot/
Simon Glass5f57b002021-07-10 21:14:22 -0600900libs-y += cmd/
901libs-y += common/
Masahiro Yamada656de6b2014-02-04 17:24:37 +0900902libs-$(CONFIG_OF_EMBED) += dts/
Simon Glass5f57b002021-07-10 21:14:22 -0600903libs-y += env/
904libs-y += lib/
Masahiro Yamada656de6b2014-02-04 17:24:37 +0900905libs-y += fs/
906libs-y += net/
907libs-y += disk/
908libs-y += drivers/
Masahiro Yamada656de6b2014-02-04 17:24:37 +0900909libs-$(CONFIG_SYS_FSL_DDR) += drivers/ddr/fsl/
Shengzhou Liub9e745b2016-08-26 18:30:39 +0800910libs-$(CONFIG_SYS_FSL_MMDC) += drivers/ddr/fsl/
Ley Foon Tan5918afd2019-05-06 09:55:59 +0800911libs-$(CONFIG_$(SPL_)ALTERA_SDRAM) += drivers/ddr/altera/
Vignesh Raghavendra7e91f6c2019-10-01 17:26:33 +0530912libs-y += drivers/usb/cdns3/
Kishon Vijay Abraham I5b9ce0e2015-02-23 18:40:16 +0530913libs-y += drivers/usb/dwc3/
Sriram Dash93eb8f32016-04-05 14:41:19 +0530914libs-y += drivers/usb/common/
Simon Glass019808f2015-03-25 12:22:37 -0600915libs-y += drivers/usb/emul/
Masahiro Yamada656de6b2014-02-04 17:24:37 +0900916libs-y += drivers/usb/eth/
Pali Rohár4cc53ef2021-02-07 14:50:03 +0100917libs-$(CONFIG_USB_DEVICE) += drivers/usb/gadget/
Jean-Jacques Hiblotdb17a922019-01-10 15:44:14 +0100918libs-$(CONFIG_USB_GADGET) += drivers/usb/gadget/
919libs-$(CONFIG_USB_GADGET) += drivers/usb/gadget/udc/
Tom Rinib7ad7212021-06-30 13:09:49 -0400920libs-y += drivers/usb/host/
Chunfeng Yune09b88c2020-10-16 11:38:39 +0800921libs-y += drivers/usb/mtu3/
Masahiro Yamada656de6b2014-02-04 17:24:37 +0900922libs-y += drivers/usb/musb/
923libs-y += drivers/usb/musb-new/
Rui Miguel Silva88861a22022-06-29 11:06:15 +0100924libs-y += drivers/usb/isp1760/
Masahiro Yamada656de6b2014-02-04 17:24:37 +0900925libs-y += drivers/usb/phy/
926libs-y += drivers/usb/ulpi/
Simon Glass50fbd5c2019-12-28 10:44:51 -0700927ifdef CONFIG_POST
928libs-y += post/
929endif
Simon Glassb5508532022-04-30 00:56:47 -0600930libs-$(CONFIG_$(SPL_TPL_)UNIT_TEST) += test/
Joe Hershberger421f86f2015-05-20 14:27:36 -0500931libs-$(CONFIG_UT_ENV) += test/env/
Heiko Stuebner96383bd2019-10-23 16:46:41 +0200932libs-$(CONFIG_UT_OPTEE) += test/optee/
Maxime Ripardf2a99422016-07-05 10:26:46 +0200933libs-$(CONFIG_UT_OVERLAY) += test/overlay/
Marian Balakowiczf9328632006-09-01 19:49:50 +0200934
Masahiro Yamada33a02da2014-03-03 19:03:17 +0900935libs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/)
Masahiro Yamada08e39a82013-11-11 14:35:55 +0900936
Masahiro Yamada656de6b2014-02-04 17:24:37 +0900937libs-y := $(sort $(libs-y))
938
Bo Lv96a66d02023-05-12 19:18:22 +0800939ifdef CONFIG_AML_UASAN
940u-boot-dirs := $(patsubst %/,%,$(filter %/, $(libs-y))) tools
941else
Masahiro Yamada656de6b2014-02-04 17:24:37 +0900942u-boot-dirs := $(patsubst %/,%,$(filter %/, $(libs-y))) tools examples
Bo Lv96a66d02023-05-12 19:18:22 +0800943endif
Masahiro Yamada656de6b2014-02-04 17:24:37 +0900944
945u-boot-alldirs := $(sort $(u-boot-dirs) $(patsubst %/,%,$(filter %/, $(libs-))))
946
947libs-y := $(patsubst %/, %/built-in.o, $(libs-y))
948
949u-boot-init := $(head-y)
950u-boot-main := $(libs-y)
951
wdenka8c7c702003-12-06 19:49:23 +0000952
wdenk4f7cb082003-09-11 23:06:34 +0000953# Add GCC lib
Masahiro Yamadacd2e46c2014-03-05 16:59:38 +0900954ifeq ($(CONFIG_USE_PRIVATE_LIBGCC),y)
Masahiro Yamadaa86cf892014-02-27 22:40:34 +0900955PLATFORM_LIBGCC = arch/$(ARCH)/lib/lib.a
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200956else
Masahiro Yamada6825a952014-02-04 17:24:28 +0900957PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(c_flags) -print-libgcc-file-name`) -lgcc
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200958endif
959PLATFORM_LIBS += $(PLATFORM_LIBGCC)
Christian Gmeiner52ff8022018-04-09 17:11:45 +0200960
961ifdef CONFIG_CC_COVERAGE
962KBUILD_CFLAGS += --coverage
963PLATFORM_LIBGCC += -lgcov
964endif
965
Wolfgang Denk52b1bf22009-07-23 13:15:59 +0200966export PLATFORM_LIBS
Alexey Brodkine75e73d2014-05-16 12:54:17 +0400967export PLATFORM_LIBGCC
wdenk3d3befa2004-03-14 15:06:13 +0000968
Mike Frysinger6ac9f472009-08-23 02:47:59 -0400969# Special flags for CPP when processing the linker script.
970# Pass the version down so we can handle backwards compatibility
971# on the fly.
972LDPPFLAGS += \
Masahiro Yamada4379ac62014-03-11 11:05:19 +0900973 -include $(srctree)/include/u-boot/u-boot.lds.h \
Simon Glass7e6403a2011-11-21 10:49:40 +0000974 -DCPUDIR=$(CPUDIR) \
Mike Frysinger6ac9f472009-08-23 02:47:59 -0400975 $(shell $(LD) --version | \
976 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
977
wdenk7ebf7442002-11-02 23:17:16 +0000978#########################################################################
wdenkbdccc4f2003-08-05 17:43:17 +0000979#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +0000980
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400981ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
Heinrich Schuchardtb2750302019-04-02 19:19:04 +0200982BOARD_SIZE_CHECK= @ $(call size_check,$@,$(CONFIG_BOARD_SIZE_LIMIT))
Mike Frysingerf3a14d32010-10-13 22:58:23 -0400983else
984BOARD_SIZE_CHECK =
985endif
986
Ovidiu Panait2dfdd0c2020-09-25 21:12:56 +0300987ifneq ($(CONFIG_SPL_SIZE_LIMIT),0x0)
Simon Goldschmidt25770152019-05-24 22:07:04 +0200988SPL_SIZE_CHECK = @$(call size_check,$@,$$(tools/spl_size_limit))
Heinrich Schuchardt0a0f2312019-04-02 19:19:06 +0200989else
990SPL_SIZE_CHECK =
991endif
992
Ovidiu Panait2dfdd0c2020-09-25 21:12:56 +0300993ifneq ($(CONFIG_TPL_SIZE_LIMIT),0x0)
Simon Glassc52b5e82019-10-20 21:31:52 -0600994TPL_SIZE_CHECK = @$(call size_check,$@,$(CONFIG_TPL_SIZE_LIMIT))
995else
996TPL_SIZE_CHECK =
997endif
998
Simon Glassf86ca5a2022-04-30 00:56:52 -0600999ifneq ($(CONFIG_VPL_SIZE_LIMIT),0x0)
1000VPL_SIZE_CHECK = @$(call size_check,$@,$(CONFIG_VPL_SIZE_LIMIT))
1001else
1002VPL_SIZE_CHECK =
1003endif
1004
Scott Wood8137af12013-12-14 11:47:32 +08001005# Statically apply RELA-style relocations (currently arm64 only)
Álvaro Fernández Rojasd57259b2017-04-20 20:36:25 +02001006# This is useful for arm64 where static relocation needs to be performed on
1007# the raw binary, but certain simulators only accept an ELF file (but don't
1008# do the relocation).
Scott Wood8137af12013-12-14 11:47:32 +08001009ifneq ($(CONFIG_STATIC_RELA),)
Michal Simekb9566372022-06-24 14:14:59 +02001010# $(2) is u-boot ELF, $(3) is u-boot bin, $(4) is text base
Jan Kiszka7125d2c2020-06-25 08:39:45 +02001011quiet_cmd_static_rela = RELOC $@
1012cmd_static_rela = \
Michal Simek4c9e2d62022-06-24 14:14:59 +02001013 tools/relocate-rela $(3) $(2)
Scott Wood8137af12013-12-14 11:47:32 +08001014else
Jan Kiszka7125d2c2020-06-25 08:39:45 +02001015quiet_cmd_static_rela =
Pali Roháre9ebc172020-11-04 15:33:44 +01001016cmd_static_rela =
Scott Wood8137af12013-12-14 11:47:32 +08001017endif
1018
Simon Glasse6385c72020-07-19 13:56:01 -06001019# Always append INPUTS so that arch config.mk's can add custom ones
1020INPUTS-y += u-boot.srec u-boot.bin u-boot.sym System.map binary_size_check
Bo Lv72d0e902023-01-02 14:27:34 +00001021INPUTS-y += acs.bin
Haiying Wange935a372011-01-27 09:44:59 -05001022
Simon Glasse6385c72020-07-19 13:56:01 -06001023INPUTS-$(CONFIG_ONENAND_U_BOOT) += u-boot-onenand.bin
Prabhakar Kushwaha89ad7be2014-04-08 19:13:34 +05301024ifeq ($(CONFIG_SPL_FSL_PBL),y)
Simon Glasse6385c72020-07-19 13:56:01 -06001025INPUTS-$(CONFIG_RAMBOOT_PBL) += u-boot-with-spl-pbl.bin
Prabhakar Kushwaha89ad7be2014-04-08 19:13:34 +05301026else
Tom Rinibba4c7f2020-06-16 19:06:25 -04001027ifneq ($(CONFIG_NXP_ESBC), y)
Aneesh Bansal467a40d2015-06-16 10:36:00 +05301028# For Secure Boot The Image needs to be signed and Header must also
1029# be included. So The image has to be built explicitly
Simon Glasse6385c72020-07-19 13:56:01 -06001030INPUTS-$(CONFIG_RAMBOOT_PBL) += u-boot.pbl
Prabhakar Kushwaha89ad7be2014-04-08 19:13:34 +05301031endif
Aneesh Bansal467a40d2015-06-16 10:36:00 +05301032endif
Simon Glasse6385c72020-07-19 13:56:01 -06001033INPUTS-$(CONFIG_SPL) += spl/u-boot-spl.bin
Stefano Babicd714a752019-09-20 08:47:53 +02001034ifeq ($(CONFIG_MX6)$(CONFIG_IMX_HAB), yy)
Simon Glasse6385c72020-07-19 13:56:01 -06001035INPUTS-$(CONFIG_SPL_FRAMEWORK) += u-boot-ivt.img
Sven Ebenfeldd21bd692016-11-06 16:37:56 +01001036else
Stefano Babicd714a752019-09-20 08:47:53 +02001037ifeq ($(CONFIG_MX7)$(CONFIG_IMX_HAB), yy)
Simon Glasse6385c72020-07-19 13:56:01 -06001038INPUTS-$(CONFIG_SPL_FRAMEWORK) += u-boot-ivt.img
Eran Matityahu0004b7a2018-02-28 09:51:50 +02001039else
Simon Glasse6385c72020-07-19 13:56:01 -06001040INPUTS-$(CONFIG_SPL_FRAMEWORK) += u-boot.img
Sven Ebenfeldd21bd692016-11-06 16:37:56 +01001041endif
Eran Matityahu0004b7a2018-02-28 09:51:50 +02001042endif
Simon Glasse6385c72020-07-19 13:56:01 -06001043INPUTS-$(CONFIG_TPL) += tpl/u-boot-tpl.bin
Simon Glassf86ca5a2022-04-30 00:56:52 -06001044INPUTS-$(CONFIG_VPL) += vpl/u-boot-vpl.bin
Simon Glassb7d8e852021-12-16 20:59:38 -07001045
1046# Allow omitting the .dtb output if it is not normally used
1047INPUTS-$(CONFIG_OF_SEPARATE) += $(if $(CONFIG_OF_OMIT_DTB),dts/dt.dtb,u-boot.dtb)
Masahiro Yamada2405d092014-05-15 20:37:51 +09001048ifeq ($(CONFIG_SPL_FRAMEWORK),y)
Simon Glasse6385c72020-07-19 13:56:01 -06001049INPUTS-$(CONFIG_OF_SEPARATE) += u-boot-dtb.img
Masahiro Yamada2405d092014-05-15 20:37:51 +09001050endif
Ilias Apalodimase7fb7892021-10-26 09:12:33 +03001051INPUTS-$(CONFIG_SANDBOX) += u-boot.dtb
Vadim Bendeburyb343bbb2013-03-27 14:34:18 +00001052ifneq ($(CONFIG_SPL_TARGET),)
Simon Glasse6385c72020-07-19 13:56:01 -06001053INPUTS-$(CONFIG_SPL) += $(CONFIG_SPL_TARGET:"%"=%)
Vadim Bendeburyb343bbb2013-03-27 14:34:18 +00001054endif
Simon Glasse6385c72020-07-19 13:56:01 -06001055INPUTS-$(CONFIG_REMAKE_ELF) += u-boot.elf
1056INPUTS-$(CONFIG_EFI_APP) += u-boot-app.efi
1057INPUTS-$(CONFIG_EFI_STUB) += u-boot-payload.efi
wdenk7ebf7442002-11-02 23:17:16 +00001058
Simon Glasse999bea2020-07-19 13:56:07 -06001059# Generate this input file for binman
1060ifeq ($(CONFIG_SPL),)
Simon Glasse6385c72020-07-19 13:56:01 -06001061INPUTS-$(CONFIG_ARCH_MEDIATEK) += u-boot-mtk.bin
Simon Glasse999bea2020-07-19 13:56:07 -06001062endif
Ryder Lee3b975a12018-11-15 10:07:49 +08001063
Stefan Roeseb2b8a692014-10-22 12:13:24 +02001064# Add optional build target if defined in board/cpu/soc headers
1065ifneq ($(CONFIG_BUILD_TARGET),)
Simon Glasse6385c72020-07-19 13:56:01 -06001066INPUTS-y += $(CONFIG_BUILD_TARGET:"%"=%)
Stefan Roeseb2b8a692014-10-22 12:13:24 +02001067endif
1068
AKASHI Takahirodde1b752020-03-10 09:20:43 +09001069ifeq ($(CONFIG_INIT_SP_RELATIVE)$(CONFIG_OF_SEPARATE),yy)
Simon Glasse6385c72020-07-19 13:56:01 -06001070INPUTS-y += init_sp_bss_offset_check
Stephen Warren5fed97a2018-01-09 12:52:14 -07001071endif
1072
Quentin Schulza6e569f2022-09-02 15:10:53 +02001073ifeq ($(CONFIG_ARCH_ROCKCHIP)$(CONFIG_SPL),yy)
1074# Binman image dependencies
Simon Glasse999bea2020-07-19 13:56:07 -06001075ifeq ($(CONFIG_ARM64),y)
Quentin Schulz05713d52022-09-02 15:10:52 +02001076INPUTS-y += u-boot.itb
Simon Glasse999bea2020-07-19 13:56:07 -06001077else
Quentin Schulz001f7882022-09-02 15:10:51 +02001078INPUTS-y += u-boot.img
Simon Glasse999bea2020-07-19 13:56:07 -06001079endif
1080endif
Matwey V. Kornilov1b0a9362019-09-03 19:29:01 +03001081
Simon Glass42b18df2020-07-19 13:56:03 -06001082INPUTS-$(CONFIG_X86) += u-boot-x86-start16.bin u-boot-x86-reset16.bin \
1083 $(if $(CONFIG_SPL_X86_16BIT_INIT),spl/u-boot-spl.bin) \
1084 $(if $(CONFIG_TPL_X86_16BIT_INIT),tpl/u-boot-tpl.bin)
1085
Masahiro Yamadaad0fed42014-02-24 11:12:18 +09001086LDFLAGS_u-boot += $(LDFLAGS_FINAL)
Joel Stanleye391b1e2017-04-09 20:33:58 +02001087
1088# Avoid 'Not enough room for program headers' error on binutils 2.28 onwards.
1089LDFLAGS_u-boot += $(call ld-option, --no-dynamic-linker)
1090
Alistair Delva58772282021-10-20 21:31:33 +00001091# ld.lld support
Nick Desaulniers0b943582022-09-26 20:47:40 +00001092LDFLAGS_u-boot += -z notext $(call ld-option,--apply-dynamic-relocs)
Alistair Delva58772282021-10-20 21:31:33 +00001093
Marek Behúnda48bd92021-05-20 13:24:04 +02001094LDFLAGS_u-boot += --build-id=none
1095
Alexey Brodkin10228072018-02-21 13:06:26 +03001096ifeq ($(CONFIG_ARC)$(CONFIG_NIOS2)$(CONFIG_X86)$(CONFIG_XTENSA),)
Simon Glass98463902022-10-20 18:22:39 -06001097LDFLAGS_u-boot += -Ttext $(CONFIG_TEXT_BASE)
Masahiro Yamada433b2f12014-02-04 17:24:35 +09001098endif
Masahiro Yamada71f84ef2013-10-17 17:34:53 +09001099
Tom Rini5972ff02020-03-11 18:11:17 -04001100# insure the checker run with the right endianness
1101CHECKFLAGS += $(if $(CONFIG_CPU_BIG_ENDIAN),-mbig-endian,-mlittle-endian)
1102
1103# the checker needs the correct machine size
1104CHECKFLAGS += $(if $(CONFIG_64BIT),-m64,-m32)
1105
Simon Glasse020c882015-07-31 09:31:23 -06001106# Normally we fill empty space with 0xff
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09001107quiet_cmd_objcopy = OBJCOPY $@
Simon Glasse020c882015-07-31 09:31:23 -06001108cmd_objcopy = $(OBJCOPY) --gap-fill=0xff $(OBJCOPYFLAGS) \
1109 $(OBJCOPYFLAGS_$(@F)) $< $@
1110
1111# Provide a version which does not do this, for use by EFI
1112quiet_cmd_zobjcopy = OBJCOPY $@
1113cmd_zobjcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09001114
Simon Glass476476e2015-08-04 12:33:52 -06001115quiet_cmd_efipayload = OBJCOPY $@
1116cmd_efipayload = $(OBJCOPY) -I binary -O $(EFIPAYLOAD_BFDTARGET) -B $(EFIPAYLOAD_BFDARCH) $< $@
1117
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +01001118MKIMAGEOUTPUT ?= /dev/null
1119
Marek Vasutb97241b2014-03-14 05:00:14 +01001120quiet_cmd_mkimage = MKIMAGE $@
Masahiro Yamada9bf215b2014-02-24 11:12:15 +09001121cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \
Rasmus Villemoes06587612018-03-23 12:08:02 +01001122 >$(MKIMAGEOUTPUT) $(if $(KBUILD_VERBOSE:0=), && cat $(MKIMAGEOUTPUT))
Masahiro Yamada9bf215b2014-02-24 11:12:15 +09001123
Andre Przywara1a12fdc2017-04-26 01:32:45 +01001124quiet_cmd_mkfitimage = MKIMAGE $@
Simon Glass18e08132020-07-19 13:56:09 -06001125cmd_mkfitimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) \
1126 -f $(U_BOOT_ITS) -p $(CONFIG_FIT_EXTERNAL_OFFSET) $@ \
Rasmus Villemoes06587612018-03-23 12:08:02 +01001127 >$(MKIMAGEOUTPUT) $(if $(KBUILD_VERBOSE:0=), && cat $(MKIMAGEOUTPUT))
Andre Przywara1a12fdc2017-04-26 01:32:45 +01001128
Masahiro Yamadaee0acfa2014-02-24 11:12:16 +09001129quiet_cmd_cat = CAT $@
1130cmd_cat = cat $(filter-out $(PHONY), $^) > $@
1131
Masahiro Yamada982a1192014-02-24 11:12:17 +09001132append = cat $(filter-out $< $(PHONY), $^) >> $@
1133
1134quiet_cmd_pad_cat = CAT $@
Pali Rohár4532bf42020-10-26 14:10:49 +01001135cmd_pad_cat = $(cmd_objcopy) && $(append) || { rm -f $@; false; }
Masahiro Yamada982a1192014-02-24 11:12:17 +09001136
Weijie Gaoa38f84b2020-04-21 09:28:39 +02001137quiet_cmd_lzma = LZMA $@
1138cmd_lzma = lzma -c -z -k -9 $< > $@
1139
Simon Glass1bd87632016-11-13 14:25:50 -07001140cfg: u-boot.cfg
1141
Bo Lv8d6888f2023-07-21 14:12:57 +08001142ifndef CONFIG_AMLOGIC_MODIFY
Masahiro Yamada1bdd9422017-01-31 20:11:33 +09001143quiet_cmd_cfgcheck = CFGCHK $2
1144cmd_cfgcheck = $(srctree)/scripts/check-config.sh $2 \
1145 $(srctree)/scripts/config_whitelist.txt $(srctree)
1146
Simon Glass24f073d2021-12-16 20:59:37 -07001147quiet_cmd_ofcheck = OFCHK $2
1148cmd_ofcheck = $(srctree)/scripts/check-of.sh $2 \
1149 $(srctree)/scripts/of_allowlist.txt
Bo Lv8d6888f2023-07-21 14:12:57 +08001150endif
Simon Glass24f073d2021-12-16 20:59:37 -07001151
Simon Glass13732522021-03-25 21:24:33 +13001152# Concat the value of all the CONFIGs (result is 'y' or 'yy', etc. )
1153got = $(foreach cfg,$(1),$($(cfg)))
1154
1155# expected value 'y for each one
1156expect = $(foreach cfg,$(1),y)
1157
1158# Show a deprecation message
1159# Args:
1160# 1: List of CONFIG_DM_... to migrate to (e.g. "CONFIG_DM_MMC CONFIG_BLK")
1161# 2: Name of component (e.g . "Ethernet drivers")
1162# 3: Release deadline (e.g. "v202.07")
1163# 4: Condition to require before checking (e.g. "$(CONFIG_NET)")
1164# Note: Script avoids bash construct, hence the strange double 'if'
1165# (patches welcome!)
1166define deprecated
Simon Glassa0da06d2021-04-01 11:18:13 +13001167 @if [ -n "$(strip $(4))" ]; then if [ "$(got)" != "$(expect)" ]; then \
Simon Glass13732522021-03-25 21:24:33 +13001168 echo >&2 "===================== WARNING ======================"; \
1169 echo >&2 "This board does not use $(firstword $(1)) (Driver Model"; \
1170 echo >&2 "for $(2)). Please update the board to use"; \
1171 echo >&2 "$(firstword $(1)) before the $(3) release. Failure to"; \
1172 echo >&2 "update by the deadline may result in board removal."; \
Johannes Krottmayer1840ce52022-03-01 04:49:50 +01001173 echo >&2 "See doc/develop/driver-model/migration.rst for more info."; \
Simon Glass13732522021-03-25 21:24:33 +13001174 echo >&2 "===================================================="; \
1175 fi; fi
1176
1177endef
1178
Simon Glassc39c7c62022-11-09 19:14:40 -07001179# Timestamp file to make sure that binman always runs
1180.binman_stamp: $(INPUTS-y) FORCE
Simon Glass42b18df2020-07-19 13:56:03 -06001181ifeq ($(CONFIG_BINMAN),y)
1182 $(call if_changed,binman)
1183endif
Simon Glass42b18df2020-07-19 13:56:03 -06001184 @touch $@
Simon Glasse6385c72020-07-19 13:56:01 -06001185
Simon Glassc39c7c62022-11-09 19:14:40 -07001186all: .binman_stamp
1187
Jagan Teki63235bd2019-05-29 17:01:30 -04001188ifeq ($(CONFIG_DEPRECATED),y)
1189 $(warning "You have deprecated configuration options enabled in your .config! Please check your configuration.")
1190endif
Simon Glass26e24d62021-11-03 21:09:05 -06001191ifeq ($(CONFIG_OF_EMBED)$(CONFIG_EFI_APP),y)
Simon Glass06467e42021-03-25 21:24:32 +13001192 @echo >&2 "===================== WARNING ======================"
1193 @echo >&2 "CONFIG_OF_EMBED is enabled. This option should only"
1194 @echo >&2 "be used for debugging purposes. Please use"
1195 @echo >&2 "CONFIG_OF_SEPARATE for boards in mainline."
Ralph Siemsendb26c502022-04-28 15:52:59 -04001196 @echo >&2 "See doc/develop/devicetree/control.rst for more info."
Simon Glass06467e42021-03-25 21:24:32 +13001197 @echo >&2 "===================================================="
1198endif
1199ifneq ($(CONFIG_SPL_FIT_GENERATOR),)
1200 @echo >&2 "===================== WARNING ======================"
1201 @echo >&2 "This board uses CONFIG_SPL_FIT_GENERATOR. Please migrate"
1202 @echo >&2 "to binman instead, to avoid the proliferation of"
1203 @echo >&2 "arch-specific scripts with no tests."
1204 @echo >&2 "===================================================="
1205endif
Simon Glass78b4a562021-03-25 21:24:41 +13001206 $(call deprecated,CONFIG_WDT,DM watchdog,v2019.10,\
1207 $(CONFIG_WATCHDOG)$(CONFIG_HW_WATCHDOG))
Simon Glass19c969b2021-07-10 21:14:33 -06001208 $(call deprecated,CONFIG_DM_I2C,I2C drivers,v2022.04,$(CONFIG_SYS_I2C_LEGACY))
Simon Glass6e4a7ea2021-12-18 11:27:29 -07001209 @# CONFIG_SYS_TIMER_RATE has brackets in it for some boards which
1210 @# confuses this rule. Use if() to send just a single character which
1211 @# is enable to tell 'deprecated' that one of these symbols exists
1212 $(call deprecated,CONFIG_TIMER,Timer drivers,v2023.01,$(if $(strip $(CONFIG_SYS_TIMER_RATE)$(CONFIG_SYS_TIMER_COUNTER)),x))
Simon Glass90533742022-01-22 05:03:50 -07001213 $(call deprecated,CONFIG_DM_SERIAL,Serial drivers,v2023.04,$(CONFIG_SERIAL))
Simon Glassbc39e412022-01-31 07:49:38 -07001214 $(call deprecated,CONFIG_DM_SCSI,SCSI drivers,v2023.04,$(CONFIG_SCSI))
Masahiro Yamada4bf06d12016-09-26 13:04:59 +09001215 @# Check that this build does not use CONFIG options that we do not
1216 @# know about unless they are in Kconfig. All the existing CONFIG
1217 @# options are whitelisted, so new ones should not be added.
Masahiro Yamada1bdd9422017-01-31 20:11:33 +09001218 $(call cmd,cfgcheck,u-boot.cfg)
Simon Glass24f073d2021-12-16 20:59:37 -07001219 @# Check that this build does not override OF_HAS_PRIOR_STAGE by
1220 @# disabling OF_BOARD.
1221 $(call cmd,ofcheck,$(KCONFIG_CONFIG))
wdenk7ebf7442002-11-02 23:17:16 +00001222
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +09001223PHONY += dtbs
Masahiro Yamada4141e852016-06-23 13:53:46 +09001224dtbs: dts/dt.dtb
1225 @:
Tom Rini36dd5f12017-09-23 13:00:57 -04001226dts/dt.dtb: u-boot
Masahiro Yamada6ab6b2a2014-02-05 11:28:25 +09001227 $(Q)$(MAKE) $(build)=dts dtbs
Simon Glass2c0f79e2011-10-24 19:15:31 +00001228
Simon Glassad1ecd22016-01-31 18:10:50 -07001229quiet_cmd_copy = COPY $@
1230 cmd_copy = cp $< $@
1231
Jean-Jacques Hiblot11955592017-09-15 12:57:24 +02001232ifeq ($(CONFIG_MULTI_DTB_FIT),y)
Cooper Jr., Franklin6f59fb02017-06-16 17:25:13 -05001233
Marek Vasut95f4bbd2019-03-08 16:06:55 +01001234ifeq ($(CONFIG_MULTI_DTB_FIT_LZO),y)
1235FINAL_DTB_CONTAINER = fit-dtb.blob.lzo
1236else ifeq ($(CONFIG_MULTI_DTB_FIT_GZIP),y)
1237FINAL_DTB_CONTAINER = fit-dtb.blob.gz
1238else
1239FINAL_DTB_CONTAINER = fit-dtb.blob
1240endif
1241
1242fit-dtb.blob.gz: fit-dtb.blob
1243 @gzip -kf9 $< > $@
1244
1245fit-dtb.blob.lzo: fit-dtb.blob
1246 @lzop -f9 $< > $@
1247
Cooper Jr., Franklin6f59fb02017-06-16 17:25:13 -05001248fit-dtb.blob: dts/dt.dtb FORCE
1249 $(call if_changed,mkimage)
Vagrant Cascadian878e2a52019-05-02 11:14:12 -07001250ifneq ($(SOURCE_DATE_EPOCH),)
1251 touch -d @$(SOURCE_DATE_EPOCH) fit-dtb.blob
1252 chmod 0600 fit-dtb.blob
1253endif
Cooper Jr., Franklin6f59fb02017-06-16 17:25:13 -05001254
1255MKIMAGEFLAGS_fit-dtb.blob = -f auto -A $(ARCH) -T firmware -C none -O u-boot \
1256 -a 0 -e 0 -E \
1257 $(patsubst %,-b arch/$(ARCH)/dts/%.dtb,$(subst ",,$(CONFIG_OF_LIST))) -d /dev/null
1258
Michal Simek570c4632021-08-19 11:09:37 +02001259MKIMAGEFLAGS_fit-dtb.blob += -B 0x8
1260
Michal Simekc8c5e2b2019-03-23 11:13:00 +05301261ifneq ($(EXT_DTB),)
1262u-boot-fit-dtb.bin: u-boot-nodtb.bin $(EXT_DTB)
1263 $(call if_changed,cat)
1264else
Tom Rini748198c2019-05-19 18:09:05 -04001265u-boot-fit-dtb.bin: u-boot-nodtb.bin $(FINAL_DTB_CONTAINER)
Cooper Jr., Franklin6f59fb02017-06-16 17:25:13 -05001266 $(call if_changed,cat)
Michal Simekc8c5e2b2019-03-23 11:13:00 +05301267endif
Cooper Jr., Franklin6f59fb02017-06-16 17:25:13 -05001268
1269u-boot.bin: u-boot-fit-dtb.bin FORCE
1270 $(call if_changed,copy)
Heiko Schocher16c776d2019-05-28 13:44:31 +02001271
1272u-boot-dtb.bin: u-boot-nodtb.bin dts/dt.dtb FORCE
1273 $(call if_changed,cat)
1274
Simon Glassb7d8e852021-12-16 20:59:38 -07001275else ifeq ($(CONFIG_OF_SEPARATE).$(CONFIG_OF_OMIT_DTB),y.)
Simon Glassad1ecd22016-01-31 18:10:50 -07001276u-boot-dtb.bin: u-boot-nodtb.bin dts/dt.dtb FORCE
Masahiro Yamadaee0acfa2014-02-24 11:12:16 +09001277 $(call if_changed,cat)
Simon Glass2c0f79e2011-10-24 19:15:31 +00001278
Pali Rohár5af42ea2022-08-03 13:24:42 +02001279ifneq ($(CONFIG_MPC85XX_HAVE_RESET_VECTOR)$(CONFIG_OF_SEPARATE),yy)
Simon Glassad1ecd22016-01-31 18:10:50 -07001280u-boot.bin: u-boot-dtb.bin FORCE
1281 $(call if_changed,copy)
Pali Rohárd8fa0a72022-08-01 17:42:20 +02001282endif
1283
Pali Rohár5af42ea2022-08-03 13:24:42 +02001284else ifneq ($(CONFIG_MPC85XX_HAVE_RESET_VECTOR)$(CONFIG_OF_SEPARATE),yy)
Simon Glassad1ecd22016-01-31 18:10:50 -07001285u-boot.bin: u-boot-nodtb.bin FORCE
1286 $(call if_changed,copy)
1287endif
1288
Bo Lv72d0e902023-01-02 14:27:34 +00001289.PHONY : acs.bin
1290acs.bin: tools prepare u-boot.bin
1291 $(Q)$(MAKE) -C $(srctree)/arch/arm/mach-meson/${SOC}/firmware/acs all FIRMWARE=$@
1292
Heiko Schocher0f282c12019-10-25 14:46:54 +02001293# we call Makefile in arch/arm/mach-imx which
1294# has targets which are dependent on targets defined
1295# here. make could not resolve them and we must ensure
1296# that they are finished before calling imx targets
1297ifeq ($(CONFIG_MULTI_DTB_FIT),y)
1298IMX_DEPS = u-boot-fit-dtb.bin
1299endif
1300
1301%.imx: $(IMX_DEPS) %.bin
Stefano Babic552a8482017-06-29 10:16:06 +02001302 $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
Heinrich Schuchardt219dee72019-04-02 19:19:05 +02001303 $(BOARD_SIZE_CHECK)
Stefano Babice64348f2014-03-31 09:50:35 +02001304
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +02001305%.vyb: %.imx
1306 $(Q)$(MAKE) $(build)=arch/arm/cpu/armv7/vf610 $@
1307
1308quiet_cmd_copy = COPY $@
1309 cmd_copy = cp $< $@
1310
Masahiro Yamada0d1e8aa2014-02-21 15:34:30 +09001311u-boot.dtb: dts/dt.dtb
1312 $(call cmd,copy)
1313
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09001314OBJCOPYFLAGS_u-boot.hex := -O ihex
wdenk6310eb92005-01-09 21:28:15 +00001315
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09001316OBJCOPYFLAGS_u-boot.srec := -O srec
wdenk7ebf7442002-11-02 23:17:16 +00001317
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09001318u-boot.hex u-boot.srec: u-boot FORCE
1319 $(call if_changed,objcopy)
1320
Masaru Nagai341ca902015-08-28 12:12:45 +09001321OBJCOPYFLAGS_u-boot-elf.srec := $(OBJCOPYFLAGS_u-boot.srec)
1322
1323u-boot-elf.srec: u-boot.elf FORCE
1324 $(call if_changed,objcopy)
1325
Marek Vasut3ee58ea2018-02-26 20:14:02 +01001326OBJCOPYFLAGS_u-boot-spl.srec = $(OBJCOPYFLAGS_u-boot.srec)
1327
1328spl/u-boot-spl.srec: spl/u-boot-spl FORCE
1329 $(call if_changed,objcopy)
1330
Marek Vasut56023302018-10-03 12:44:13 +02001331%.scif: %.srec
1332 $(Q)$(MAKE) $(build)=arch/arm/mach-rmobile $@
1333
Simon Glassad1ecd22016-01-31 18:10:50 -07001334OBJCOPYFLAGS_u-boot-nodtb.bin := -O binary \
Jagdish Gediya96699f02018-09-03 21:35:10 +05301335 $(if $(CONFIG_X86_16BIT_INIT),-R .start16 -R .resetvec) \
Pali Roháre507be92022-08-03 23:56:55 +02001336 $(if $(CONFIG_MPC85XX_HAVE_RESET_VECTOR),$(if $(CONFIG_OF_SEPARATE),-R .bootpg -R .resetvec))
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09001337
Simon Glassad1ecd22016-01-31 18:10:50 -07001338binary_size_check: u-boot-nodtb.bin FORCE
1339 @file_size=$(shell wc -c u-boot-nodtb.bin | awk '{print $$1}') ; \
Chris Packham3ce7a4f2014-07-24 17:27:07 +12001340 map_size=$(shell cat u-boot.map | \
Simon Glass0b308f12014-06-18 00:10:15 -06001341 awk '/_image_copy_start/ {start = $$1} /_image_binary_end/ {end = $$1} END {if (start != "" && end != "") print "ibase=16; " toupper(end) " - " toupper(start)}' \
Chris Packham3ce7a4f2014-07-24 17:27:07 +12001342 | sed 's/0X//g' \
Simon Glass0b308f12014-06-18 00:10:15 -06001343 | bc); \
Simon Glass89742922014-06-02 22:04:47 -06001344 if [ "" != "$$map_size" ]; then \
1345 if test $$map_size -ne $$file_size; then \
Chris Packham3ce7a4f2014-07-24 17:27:07 +12001346 echo "u-boot.map shows a binary size of $$map_size" >&2 ; \
Simon Glassad1ecd22016-01-31 18:10:50 -07001347 echo " but u-boot-nodtb.bin shows $$file_size" >&2 ; \
Simon Glass89742922014-06-02 22:04:47 -06001348 exit 1; \
Angelo Dureghello51301022021-11-05 16:20:24 +01001349 fi; \
Simon Glass89742922014-06-02 22:04:47 -06001350 fi
1351
AKASHI Takahirodde1b752020-03-10 09:20:43 +09001352ifeq ($(CONFIG_INIT_SP_RELATIVE)$(CONFIG_OF_SEPARATE),yy)
Stephen Warren5fed97a2018-01-09 12:52:14 -07001353ifneq ($(CONFIG_SYS_MALLOC_F_LEN),)
1354subtract_sys_malloc_f_len = space=$$(($${space} - $(CONFIG_SYS_MALLOC_F_LEN)))
1355else
1356subtract_sys_malloc_f_len = true
1357endif
1358# The 1/4 margin below is somewhat arbitrary. The likely initial SP usage is
1359# so low that the DTB could probably use 90%+ of the available space, for
1360# current values of CONFIG_SYS_INIT_SP_BSS_OFFSET at least. However, let's be
1361# safe for now and tweak this later if space becomes tight.
1362# A rejected alternative would be to check that some absolute minimum stack
1363# space was available. However, since CONFIG_SYS_INIT_SP_BSS_OFFSET is
1364# deliberately build-specific, to take account of build-to-build stack usage
1365# differences due to different feature sets, there is no common absolute value
1366# to check against.
1367init_sp_bss_offset_check: u-boot.dtb FORCE
1368 @dtb_size=$(shell wc -c u-boot.dtb | awk '{print $$1}') ; \
1369 space=$(CONFIG_SYS_INIT_SP_BSS_OFFSET) ; \
1370 $(subtract_sys_malloc_f_len) ; \
1371 quarter_space=$$(($${space} / 4)) ; \
1372 if [ $${dtb_size} -gt $${quarter_space} ]; then \
1373 echo "u-boot.dtb is larger than 1 quarter of " >&2 ; \
1374 echo "(CONFIG_SYS_INIT_SP_BSS_OFFSET - CONFIG_SYS_MALLOC_F_LEN)" >&2 ; \
1375 exit 1 ; \
1376 fi
1377endif
1378
Pali Rohár71d3fa72020-11-04 10:34:35 +01001379shell_cmd = { $(call echo-cmd,$(1)) $(cmd_$(1)); }
Pali Rohárae897022020-10-07 15:39:40 +02001380
1381quiet_cmd_objcopy_uboot = OBJCOPY $@
Pali Roháre9ebc172020-11-04 15:33:44 +01001382ifdef cmd_static_rela
Simon Glass98463902022-10-20 18:22:39 -06001383cmd_objcopy_uboot = $(cmd_objcopy) && $(call shell_cmd,static_rela,$<,$@,$(CONFIG_TEXT_BASE)) || { rm -f $@; false; }
Pali Roháre9ebc172020-11-04 15:33:44 +01001384else
1385cmd_objcopy_uboot = $(cmd_objcopy)
1386endif
Pali Rohárae897022020-10-07 15:39:40 +02001387
Simon Glassad1ecd22016-01-31 18:10:50 -07001388u-boot-nodtb.bin: u-boot FORCE
Pali Rohárae897022020-10-07 15:39:40 +02001389 $(call if_changed,objcopy_uboot)
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09001390 $(BOARD_SIZE_CHECK)
wdenk7ebf7442002-11-02 23:17:16 +00001391
Masahiro Yamada9e414032014-02-04 17:24:24 +09001392u-boot.ldr: u-boot
Mike Frysinger76d82182009-07-21 22:17:36 -04001393 $(CREATE_LDR_ENV)
Sonic Zhang240182d2014-08-12 18:45:26 +08001394 $(LDR) -T $(CONFIG_CPU) -c $@ $< $(LDR_FLAGS)
Mike Frysingerf3a14d32010-10-13 22:58:23 -04001395 $(BOARD_SIZE_CHECK)
Mike Frysinger94a91e22008-02-04 19:26:57 -05001396
Simon Glass17a944b2016-11-25 20:15:57 -07001397# binman
1398# ---------------------------------------------------------------------------
Simon Glassa3c00552018-11-06 15:21:31 -07001399# Use 'make BINMAN_DEBUG=1' to enable debugging
Simon Glassef108042021-02-06 09:57:28 -07001400# Use 'make BINMAN_VERBOSE=3' to set vebosity level
Simon Glassc0f1ebe2020-09-06 10:39:08 -06001401default_dt := $(if $(DEVICE_TREE),$(DEVICE_TREE),$(CONFIG_DEFAULT_DEVICE_TREE))
Simon Glasscfee2b22021-03-18 20:25:08 +13001402
Simon Glass17a944b2016-11-25 20:15:57 -07001403quiet_cmd_binman = BINMAN $@
Stephen Warren4f4fb852019-07-19 11:21:17 -06001404cmd_binman = $(srctree)/tools/binman/binman $(if $(BINMAN_DEBUG),-D) \
Simon Glass79450772021-11-23 21:09:48 -07001405 $(foreach f,$(BINMAN_TOOLPATHS),--toolpath $(f)) \
Simon Glass8fce3f22019-09-25 08:11:10 -06001406 --toolpath $(objtree)/tools \
Simon Glass1f338e02019-09-25 08:11:11 -06001407 $(if $(BINMAN_VERBOSE),-v$(BINMAN_VERBOSE)) \
Tom Rinib144b932022-11-09 19:14:50 -07001408 build -u -d u-boot.dtb -O . -m \
Tom Rini93685d02022-12-05 21:03:36 -05001409 $(if $(BINMAN_ALLOW_MISSING),--allow-missing --ignore-missing) \
Simon Glassa3c00552018-11-06 15:21:31 -07001410 -I . -I $(srctree) -I $(srctree)/board/$(BOARDDIR) \
Simon Glasscfa3db62020-09-01 05:14:01 -06001411 -I arch/$(ARCH)/dts -a of-list=$(CONFIG_OF_LIST) \
Simon Glass79450772021-11-23 21:09:48 -07001412 $(foreach f,$(BINMAN_INDIRS),-I $(f)) \
Simon Glasscfa3db62020-09-01 05:14:01 -06001413 -a atf-bl31-path=${BL31} \
Roger Quadros47f420a2022-02-19 20:50:04 +02001414 -a tee-os-path=${TEE} \
Bin Meng73c2a8f2021-05-10 20:23:34 +08001415 -a opensbi-path=${OPENSBI} \
Simon Glassc0f1ebe2020-09-06 10:39:08 -06001416 -a default-dt=$(default_dt) \
Samuel Holland18bd4552020-10-21 21:12:15 -05001417 -a scp-path=$(SCP) \
Simon Glasscfee2b22021-03-18 20:25:08 +13001418 -a spl-bss-pad=$(if $(CONFIG_SPL_SEPARATE_BSS),,1) \
1419 -a tpl-bss-pad=$(if $(CONFIG_TPL_SEPARATE_BSS),,1) \
Simon Glassf99cbe42021-08-07 07:24:07 -06001420 -a spl-dtb=$(CONFIG_SPL_OF_REAL) \
Simon Glassebee2062021-10-31 19:17:03 -06001421 -a tpl-dtb=$(CONFIG_TPL_OF_REAL) \
Philippe Reynesd12c1be2022-03-28 22:57:03 +02001422 -a pre-load-key-path=${PRE_LOAD_KEY_PATH} \
Stephen Warren4f4fb852019-07-19 11:21:17 -06001423 $(BINMAN_$(@F))
Simon Glass17a944b2016-11-25 20:15:57 -07001424
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09001425OBJCOPYFLAGS_u-boot.ldr.hex := -I binary -O ihex
Mike Frysinger94a91e22008-02-04 19:26:57 -05001426
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09001427OBJCOPYFLAGS_u-boot.ldr.srec := -I binary -O srec
1428
1429u-boot.ldr.hex u-boot.ldr.srec: u-boot.ldr FORCE
1430 $(call if_changed,objcopy)
Mike Frysinger94a91e22008-02-04 19:26:57 -05001431
Stefan Roeseb40bda62012-08-16 17:54:52 +02001432#
1433# U-Boot entry point, needed for booting of full-blown U-Boot
1434# from the SPL U-Boot version.
1435#
1436ifndef CONFIG_SYS_UBOOT_START
Simon Glass98463902022-10-20 18:22:39 -06001437CONFIG_SYS_UBOOT_START := $(CONFIG_TEXT_BASE)
Stefan Roeseb40bda62012-08-16 17:54:52 +02001438endif
1439
Michal Simekfc8db752019-10-02 15:53:12 +02001440# Boards with more complex image requirements can provide an .its source file
Andre Przywara1a12fdc2017-04-26 01:32:45 +01001441# or a generator script
Simon Glassf4a43d22020-07-19 13:56:11 -06001442# NOTE: Please do not use this. We are migrating away from Makefile rules to use
1443# binman instead.
Andre Przywara1a12fdc2017-04-26 01:32:45 +01001444ifneq ($(CONFIG_SPL_FIT_SOURCE),"")
Patrick Delaunay0015e6d2020-04-23 09:39:08 +02001445U_BOOT_ITS := u-boot.its
1446$(U_BOOT_ITS): $(subst ",,$(CONFIG_SPL_FIT_SOURCE))
1447 $(call if_changed,copy)
Andre Przywara1a12fdc2017-04-26 01:32:45 +01001448else
Simon Glassa8f3ace2020-07-19 13:56:10 -06001449ifneq ($(CONFIG_USE_SPL_FIT_GENERATOR),)
Andre Przywara1a12fdc2017-04-26 01:32:45 +01001450U_BOOT_ITS := u-boot.its
Andreas Färberc29c1e62018-06-03 07:23:58 +02001451ifeq ($(CONFIG_SPL_FIT_GENERATOR),"arch/arm/mach-rockchip/make_fit_atf.py")
1452U_BOOT_ITS_DEPS += u-boot
1453endif
1454$(U_BOOT_ITS): $(U_BOOT_ITS_DEPS) FORCE
Andre Przywara1a12fdc2017-04-26 01:32:45 +01001455 $(srctree)/$(CONFIG_SPL_FIT_GENERATOR) \
1456 $(patsubst %,arch/$(ARCH)/dts/%.dtb,$(subst ",,$(CONFIG_OF_LIST))) > $@
1457endif
1458endif
1459
Simon Glasscdf17242016-02-22 22:55:57 -07001460ifdef CONFIG_SPL_LOAD_FIT
1461MKIMAGEFLAGS_u-boot.img = -f auto -A $(ARCH) -T firmware -C none -O u-boot \
Simon Glass98463902022-10-20 18:22:39 -06001462 -a $(CONFIG_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \
Sjoerd Simons80cc9512019-06-18 22:13:20 +02001463 -p $(CONFIG_FIT_EXTERNAL_OFFSET) \
Simon Glasscdf17242016-02-22 22:55:57 -07001464 -n "U-Boot $(UBOOTRELEASE) for $(BOARD) board" -E \
Klaus Heinrich Kiwi4e040b42021-02-09 15:41:55 -03001465 $(patsubst %,-b arch/$(ARCH)/dts/%.dtb,$(subst ",,$(DEVICE_TREE))) \
Jean-Jacques Hiblot557bc972019-10-22 16:39:21 +02001466 $(patsubst %,-b arch/$(ARCH)/dts/%.dtb,$(subst ",,$(CONFIG_OF_LIST))) \
1467 $(patsubst %,-b arch/$(ARCH)/dts/%.dtbo,$(subst ",,$(CONFIG_OF_OVERLAY_LIST)))
Simon Glasscdf17242016-02-22 22:55:57 -07001468else
Masahiro Yamada9bf215b2014-02-24 11:12:15 +09001469MKIMAGEFLAGS_u-boot.img = -A $(ARCH) -T firmware -C none -O u-boot \
Simon Glass98463902022-10-20 18:22:39 -06001470 -a $(CONFIG_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \
Masahiro Yamada9bf215b2014-02-24 11:12:15 +09001471 -n "U-Boot $(UBOOTRELEASE) for $(BOARD) board"
Sven Ebenfeldd21bd692016-11-06 16:37:56 +01001472MKIMAGEFLAGS_u-boot-ivt.img = -A $(ARCH) -T firmware_ivt -C none -O u-boot \
Simon Glass98463902022-10-20 18:22:39 -06001473 -a $(CONFIG_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \
Sven Ebenfeldd21bd692016-11-06 16:37:56 +01001474 -n "U-Boot $(UBOOTRELEASE) for $(BOARD) board"
Sven Ebenfeld1f6a6642016-11-06 16:37:58 +01001475u-boot-ivt.img: MKIMAGEOUTPUT = u-boot-ivt.img.log
Simon Glasscdf17242016-02-22 22:55:57 -07001476endif
Masahiro Yamada9bf215b2014-02-24 11:12:15 +09001477
Simon Glassdae6e7b2016-01-31 18:10:54 -07001478MKIMAGEFLAGS_u-boot-dtb.img = $(MKIMAGEFLAGS_u-boot.img)
1479
Bin Meng6cdd1772019-10-28 07:25:01 -07001480# Some boards have the kwbimage.cfg file written in advance, while some
1481# other boards generate it on the fly during the build in the build tree.
1482# Let's check if the file exists in the build tree first, otherwise we
1483# fall back to use the one in the source tree.
1484KWD_CONFIG_FILE = $(shell \
1485 if [ -f $(objtree)/$(CONFIG_SYS_KWD_CONFIG:"%"=%) ]; then \
1486 echo -n $(objtree)/$(CONFIG_SYS_KWD_CONFIG:"%"=%); \
1487 else \
1488 echo -n $(srctree)/$(CONFIG_SYS_KWD_CONFIG:"%"=%); \
1489 fi)
1490
1491MKIMAGEFLAGS_u-boot.kwb = -n $(KWD_CONFIG_FILE) \
Simon Glass98463902022-10-20 18:22:39 -06001492 -T kwbimage -a $(CONFIG_TEXT_BASE) -e $(CONFIG_TEXT_BASE)
Masahiro Yamada9bf215b2014-02-24 11:12:15 +09001493
Pali Rohár87ac4b42022-11-02 18:51:28 +01001494MKIMAGEFLAGS_u-boot-with-spl.kwb = -n $(KWD_CONFIG_FILE) \
Simon Glass98463902022-10-20 18:22:39 -06001495 -T kwbimage -a $(CONFIG_TEXT_BASE) -e $(CONFIG_TEXT_BASE) \
Mario Sixa1b6b0a2017-01-11 16:01:00 +01001496 $(if $(KEYDIR),-k $(KEYDIR))
Stefan Roesea90ffb52015-01-19 11:33:45 +01001497
Masahiro Yamadae4536f82014-03-11 11:05:16 +09001498MKIMAGEFLAGS_u-boot.pbl = -n $(srctree)/$(CONFIG_SYS_FSL_PBL_RCW:"%"=%) \
Hou Zhiqiang20589672022-02-17 11:51:36 +08001499 -R $(srctree)/$(CONFIG_SYS_FSL_PBL_PBI:"%"=%) -A $(ARCH) -T pblimage
Masahiro Yamada9bf215b2014-02-24 11:12:15 +09001500
Hou Zhiqiangbcda5b02019-08-20 09:35:23 +00001501UBOOT_BIN := u-boot.bin
Hou Zhiqiangbcda5b02019-08-20 09:35:23 +00001502
Weijie Gaoa38f84b2020-04-21 09:28:39 +02001503MKIMAGEFLAGS_u-boot-lzma.img = -A $(ARCH) -T standalone -C lzma -O u-boot \
Simon Glass98463902022-10-20 18:22:39 -06001504 -a $(CONFIG_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \
Weijie Gaoa38f84b2020-04-21 09:28:39 +02001505 -n "U-Boot $(UBOOTRELEASE) for $(BOARD) board"
1506
1507u-boot.bin.lzma: u-boot.bin FORCE
1508 $(call if_changed,lzma)
1509
1510u-boot-lzma.img: u-boot.bin.lzma FORCE
1511 $(call if_changed,mkimage)
1512
Sven Ebenfeldd21bd692016-11-06 16:37:56 +01001513u-boot-dtb.img u-boot.img u-boot.kwb u-boot.pbl u-boot-ivt.img: \
Lukas Auer2c768612019-08-21 21:14:41 +02001514 $(if $(CONFIG_SPL_LOAD_FIT),u-boot-nodtb.bin \
Simon Glass8e076812021-12-16 20:59:22 -07001515 $(if $(CONFIG_OF_SEPARATE)$(CONFIG_OF_EMBED)$(CONFIG_SANDBOX),dts/dt.dtb) \
Tom Rinie4b8dd92019-08-27 07:11:37 -04001516 ,$(UBOOT_BIN)) FORCE
Masahiro Yamada9bf215b2014-02-24 11:12:15 +09001517 $(call if_changed,mkimage)
Simon Goldschmidt45297e22019-01-11 20:56:02 +01001518 $(BOARD_SIZE_CHECK)
wdenkbdccc4f2003-08-05 17:43:17 +00001519
Marek Vasut7a778362019-03-06 22:04:00 +01001520ifeq ($(CONFIG_SPL_LOAD_FIT_FULL),y)
1521MKIMAGEFLAGS_u-boot.itb =
1522else
1523MKIMAGEFLAGS_u-boot.itb = -E
1524endif
Michal Simek570c4632021-08-19 11:09:37 +02001525MKIMAGEFLAGS_u-boot.itb += -B 0x8
Marek Vasut7a778362019-03-06 22:04:00 +01001526
Samuel Holland509978e2020-10-21 21:12:08 -05001527ifdef U_BOOT_ITS
Lukas Auer2c768612019-08-21 21:14:41 +02001528u-boot.itb: u-boot-nodtb.bin \
Ilias Apalodimase7fb7892021-10-26 09:12:33 +03001529 $(if $(CONFIG_OF_SEPARATE)$(CONFIG_OF_EMBED)$(CONFIG_SANDBOX),dts/dt.dtb) \
Lukas Auer2c768612019-08-21 21:14:41 +02001530 $(U_BOOT_ITS) FORCE
Andre Przywara1a12fdc2017-04-26 01:32:45 +01001531 $(call if_changed,mkfitimage)
Maxime Riparde89f5591f2018-01-16 09:44:23 +01001532 $(BOARD_SIZE_CHECK)
Samuel Holland509978e2020-10-21 21:12:08 -05001533endif
Andre Przywara1a12fdc2017-04-26 01:32:45 +01001534
Pali Rohár87ac4b42022-11-02 18:51:28 +01001535u-boot-with-spl.kwb: u-boot.bin spl/u-boot-spl.bin FORCE
Stefan Roesea90ffb52015-01-19 11:33:45 +01001536 $(call if_changed,mkimage)
Pali Rohárd285e4b2022-09-14 15:06:14 +02001537 $(BOARD_SIZE_CHECK)
Stefan Roesea90ffb52015-01-19 11:33:45 +01001538
Masahiro Yamada9e414032014-02-04 17:24:24 +09001539u-boot.sha1: u-boot.bin
1540 tools/ubsha1 u-boot.bin
Heiko Schocher566a4942007-06-22 19:11:54 +02001541
Masahiro Yamada9e414032014-02-04 17:24:24 +09001542u-boot.dis: u-boot
wdenk7ebf7442002-11-02 23:17:16 +00001543 $(OBJDUMP) -d $< > $@
1544
York Sun7550dbe2018-06-14 14:38:48 -07001545ifneq ($(CONFIG_SPL_PAYLOAD),)
1546SPL_PAYLOAD := $(CONFIG_SPL_PAYLOAD:"%"=%)
Ying Zhang3aa29de2013-08-16 15:16:15 +08001547else
Masahiro Yamada9e414032014-02-04 17:24:24 +09001548SPL_PAYLOAD := u-boot.bin
Ying Zhang3aa29de2013-08-16 15:16:15 +08001549endif
Scott Wood74752ba2012-12-06 13:33:16 +00001550
Stefan Roese9ea6f712019-04-03 15:24:50 +02001551SPL_IMAGE := $(CONFIG_SPL_IMAGE:"%"=%)
1552
Masahiro Yamada982a1192014-02-24 11:12:17 +09001553OBJCOPYFLAGS_u-boot-with-spl.bin = -I binary -O binary \
1554 --pad-to=$(CONFIG_SPL_PAD_TO)
Stefan Roese9ea6f712019-04-03 15:24:50 +02001555u-boot-with-spl.bin: $(SPL_IMAGE) $(SPL_PAYLOAD) FORCE
Masahiro Yamada982a1192014-02-24 11:12:17 +09001556 $(call if_changed,pad_cat)
Ying Zhang3aa29de2013-08-16 15:16:15 +08001557
Matwey V. Kornilov1b0a9362019-09-03 19:29:01 +03001558
Vladimir Zapolskiye3e08192018-09-17 21:43:04 +03001559ifeq ($(CONFIG_ARCH_LPC32XX)$(CONFIG_SPL),yy)
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001560MKIMAGEFLAGS_lpc32xx-spl.img = -T lpc32xximage -a $(CONFIG_SPL_TEXT_BASE)
1561
1562lpc32xx-spl.img: spl/u-boot-spl.bin FORCE
1563 $(call if_changed,mkimage)
1564
1565OBJCOPYFLAGS_lpc32xx-boot-0.bin = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
1566
Masahiro Yamada514ec432016-02-05 17:55:13 +09001567lpc32xx-boot-0.bin: lpc32xx-spl.img FORCE
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001568 $(call if_changed,objcopy)
1569
1570OBJCOPYFLAGS_lpc32xx-boot-1.bin = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
1571
Masahiro Yamada514ec432016-02-05 17:55:13 +09001572lpc32xx-boot-1.bin: lpc32xx-spl.img FORCE
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001573 $(call if_changed,objcopy)
1574
Masahiro Yamada514ec432016-02-05 17:55:13 +09001575lpc32xx-full.bin: lpc32xx-boot-0.bin lpc32xx-boot-1.bin u-boot.img FORCE
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001576 $(call if_changed,cat)
1577
Vladimir Zapolskiye3e08192018-09-17 21:43:04 +03001578endif
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001579
Masahiro Yamada982a1192014-02-24 11:12:17 +09001580OBJCOPYFLAGS_u-boot-with-tpl.bin = -I binary -O binary \
1581 --pad-to=$(CONFIG_TPL_PAD_TO)
1582tpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin FORCE
1583 $(call if_changed,pad_cat)
Heiko Schocher7816f2c2011-07-16 00:06:42 +00001584
Masahiro Yamada630d2342014-02-24 11:12:21 +09001585SPL: spl/u-boot-spl.bin FORCE
Stefano Babic552a8482017-06-29 10:16:06 +02001586 $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
Masahiro Yamada630d2342014-02-24 11:12:21 +09001587
Frieder Schrempfc3587192022-08-23 16:29:10 +02001588#ifeq ($(CONFIG_ARCH_IMX8M)$(CONFIG_ARCH_IMX8), y)
Peng Fan700315c2019-08-22 07:42:41 +00001589ifeq ($(CONFIG_SPL_LOAD_IMX_CONTAINER), y)
1590u-boot.cnt: u-boot.bin FORCE
1591 $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
1592
1593flash.bin: spl/u-boot-spl.bin u-boot.cnt FORCE
1594 $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
1595else
Marek Vasutbd9059c2021-02-25 21:50:59 +01001596ifeq ($(CONFIG_BINMAN),y)
1597flash.bin: spl/u-boot-spl.bin $(INPUTS-y) FORCE
1598 $(call if_changed,binman)
Marek Vasutbd9059c2021-02-25 21:50:59 +01001599else
Peng Fan94df9882018-11-20 10:19:46 +00001600flash.bin: spl/u-boot-spl.bin u-boot.itb FORCE
1601 $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
1602endif
Peng Fan700315c2019-08-22 07:42:41 +00001603endif
Frieder Schrempfc3587192022-08-23 16:29:10 +02001604#endif
Peng Fan94df9882018-11-20 10:19:46 +00001605
Marek Vasut70344782021-03-01 16:41:28 +01001606u-boot.uim: u-boot.bin FORCE
1607 $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
1608
1609u-boot-with-spl.imx u-boot-with-nand-spl.imx: SPL $(if $(CONFIG_OF_SEPARATE),u-boot.img,u-boot.uim) FORCE
Stefano Babic552a8482017-06-29 10:16:06 +02001610 $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@
Benoît Thébaudeau7d5a5c72013-04-11 09:35:57 +00001611
Simon Glass98463902022-10-20 18:22:39 -06001612MKIMAGEFLAGS_u-boot.ubl = -n $(UBL_CONFIG) -T ublimage -e $(CONFIG_TEXT_BASE)
Masahiro Yamada9bf215b2014-02-24 11:12:15 +09001613
1614u-boot.ubl: u-boot-with-spl.bin FORCE
1615 $(call if_changed,mkimage)
José Miguel Gonçalves277f00f2012-09-19 01:25:26 +00001616
Masahiro Yamada982a1192014-02-24 11:12:17 +09001617MKIMAGEFLAGS_u-boot-spl.ais = -s -n $(if $(CONFIG_AIS_CONFIG_FILE), \
1618 $(srctree)/$(CONFIG_AIS_CONFIG_FILE:"%"=%),"/dev/null") \
1619 -T aisimage -e $(CONFIG_SPL_TEXT_BASE)
1620spl/u-boot-spl.ais: spl/u-boot-spl.bin FORCE
1621 $(call if_changed,mkimage)
Christian Rieschd36d8852011-12-09 09:47:39 +00001622
Christian Riesch532d5312014-05-07 10:16:28 +02001623OBJCOPYFLAGS_u-boot.ais = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO)
Masahiro Yamada982a1192014-02-24 11:12:17 +09001624u-boot.ais: spl/u-boot-spl.ais u-boot.img FORCE
1625 $(call if_changed,pad_cat)
Otavio Salvadora5453552012-08-18 07:25:25 +00001626
Marek Vasut1a9df132014-04-03 19:12:21 +02001627u-boot-signed.sb: u-boot.bin spl/u-boot-spl.bin
1628 $(Q)$(MAKE) $(build)=arch/arm/cpu/arm926ejs/mxs u-boot-signed.sb
Masahiro Yamada03c7b3f2014-02-24 11:12:13 +09001629u-boot.sb: u-boot.bin spl/u-boot-spl.bin
Masahiro Yamada07e27ce2014-03-11 11:05:11 +09001630 $(Q)$(MAKE) $(build)=arch/arm/cpu/arm926ejs/mxs u-boot.sb
Marek Vasut30b9b932011-11-08 23:18:19 +00001631
Masahiro Yamada982a1192014-02-24 11:12:17 +09001632MKIMAGEFLAGS_u-boot-spl.img = -A $(ARCH) -T firmware -C none \
1633 -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER
1634spl/u-boot-spl.img: spl/u-boot-spl.bin FORCE
1635 $(call if_changed,mkimage)
1636
Marek Vasut333b7202015-07-15 02:53:45 +02001637ifneq ($(CONFIG_ARCH_SOCFPGA),)
Chee Hong Ang505dc1c2020-08-11 21:52:30 +08001638quiet_cmd_gensplx4 = GENSPLX4 $@
Ley Foon Tan40551cf2021-01-13 18:53:05 +08001639cmd_gensplx4 = $(OBJCOPY) -I binary -O binary --gap-fill=0x0 \
1640 --pad-to=$(CONFIG_SPL_PAD_TO) \
1641 spl/u-boot-spl.sfp spl/u-boot-spl.sfp && \
1642 cat spl/u-boot-spl.sfp spl/u-boot-spl.sfp \
Pali Rohár4532bf42020-10-26 14:10:49 +01001643 spl/u-boot-spl.sfp spl/u-boot-spl.sfp > $@ || { rm -f $@; false; }
Chee Hong Ang505dc1c2020-08-11 21:52:30 +08001644spl/u-boot-splx4.sfp: spl/u-boot-spl.sfp FORCE
1645 $(call if_changed,gensplx4)
1646
Marek Vasut333b7202015-07-15 02:53:45 +02001647quiet_cmd_socboot = SOCBOOT $@
Pali Rohár4532bf42020-10-26 14:10:49 +01001648cmd_socboot = cat spl/u-boot-splx4.sfp u-boot.img > $@ || { rm -f $@; false; }
Chee Hong Ang505dc1c2020-08-11 21:52:30 +08001649u-boot-with-spl.sfp: spl/u-boot-splx4.sfp u-boot.img FORCE
Marek Vasut333b7202015-07-15 02:53:45 +02001650 $(call if_changed,socboot)
Marek Vasut533832c2019-11-20 22:36:45 +01001651
Chee Hong Ang505dc1c2020-08-11 21:52:30 +08001652quiet_cmd_gensplpadx4 = GENSPLPADX4 $@
1653cmd_gensplpadx4 = dd if=/dev/zero of=spl/u-boot-spl.pad bs=64 count=1024 ; \
Marek Vasut533832c2019-11-20 22:36:45 +01001654 cat spl/u-boot-spl.sfp spl/u-boot-spl.pad \
1655 spl/u-boot-spl.sfp spl/u-boot-spl.pad \
1656 spl/u-boot-spl.sfp spl/u-boot-spl.pad \
Chee Hong Ang505dc1c2020-08-11 21:52:30 +08001657 spl/u-boot-spl.sfp spl/u-boot-spl.pad > $@ || \
Pali Rohár4532bf42020-10-26 14:10:49 +01001658 { rm -f $@ spl/u-boot-spl.pad; false; }
Chee Hong Ang505dc1c2020-08-11 21:52:30 +08001659u-boot-spl-padx4.sfp: spl/u-boot-spl.sfp FORCE
1660 $(call if_changed,gensplpadx4)
1661
1662quiet_cmd_socnandboot = SOCNANDBOOT $@
Pali Rohár4532bf42020-10-26 14:10:49 +01001663cmd_socnandboot = cat u-boot-spl-padx4.sfp u-boot.img > $@ || { rm -f $@; false; }
Chee Hong Ang505dc1c2020-08-11 21:52:30 +08001664u-boot-with-nand-spl.sfp: u-boot-spl-padx4.sfp u-boot.img FORCE
Marek Vasut533832c2019-11-20 22:36:45 +01001665 $(call if_changed,socnandboot)
1666
Marek Vasut333b7202015-07-15 02:53:45 +02001667endif
1668
Pali Rohár5af42ea2022-08-03 13:24:42 +02001669ifeq ($(CONFIG_MPC85XX_HAVE_RESET_VECTOR)$(CONFIG_OF_SEPARATE),yy)
1670u-boot.bin: u-boot-nodtb.bin u-boot.dtb u-boot-br.bin FORCE
Jagdish Gediya96699f02018-09-03 21:35:10 +05301671 $(call if_changed,binman)
1672
Jagdish Gediya96699f02018-09-03 21:35:10 +05301673OBJCOPYFLAGS_u-boot-br.bin := -O binary -j .bootpg -j .resetvec
1674u-boot-br.bin: u-boot FORCE
1675 $(call if_changed,objcopy)
1676endif
Jagdish Gediya96699f02018-09-03 21:35:10 +05301677
Simon Glass0adf8d32016-03-11 22:07:16 -07001678quiet_cmd_ldr = LD $@
1679cmd_ldr = $(LD) $(LDFLAGS_$(@F)) \
1680 $(filter-out FORCE,$^) -o $@
1681
Simon Glassbcd4e6f2020-07-19 13:55:52 -06001682ifdef CONFIG_X86
Simon Glass5e239182019-08-24 07:22:49 -06001683OBJCOPYFLAGS_u-boot-x86-start16.bin := -O binary -j .start16
1684u-boot-x86-start16.bin: u-boot FORCE
1685 $(call if_changed,objcopy)
1686
1687OBJCOPYFLAGS_u-boot-x86-reset16.bin := -O binary -j .resetvec
1688u-boot-x86-reset16.bin: u-boot FORCE
Simon Glassfce7b272014-11-12 22:42:08 -07001689 $(call if_changed,objcopy)
Simon Glassaafe5c52020-07-19 13:55:54 -06001690
Simon Glass42b18df2020-07-19 13:56:03 -06001691endif # CONFIG_X86
Simon Glassbcd4e6f2020-07-19 13:55:52 -06001692
Simon Glass08aeb8b2015-08-04 12:33:43 -06001693OBJCOPYFLAGS_u-boot-app.efi := $(OBJCOPYFLAGS_EFI)
1694u-boot-app.efi: u-boot FORCE
1695 $(call if_changed,zobjcopy)
1696
Simon Glass73c5c392016-01-31 18:10:55 -07001697u-boot.bin.o: u-boot.bin FORCE
Simon Glass476476e2015-08-04 12:33:52 -06001698 $(call if_changed,efipayload)
1699
1700u-boot-payload.lds: $(LDSCRIPT_EFI) FORCE
1701 $(call if_changed_dep,cpp_lds)
1702
1703# Rule to link the EFI payload which contains a stub and a U-Boot binary
1704quiet_cmd_u-boot_payload ?= LD $@
1705 cmd_u-boot_payload ?= $(LD) $(LDFLAGS_EFI_PAYLOAD) -o $@ \
Simon Glass96a8d402015-08-04 12:33:56 -06001706 -T u-boot-payload.lds arch/x86/cpu/call32.o \
Simon Glass73c5c392016-01-31 18:10:55 -07001707 lib/efi/efi.o lib/efi/efi_stub.o u-boot.bin.o \
Simon Glass2dcd4e92016-11-07 08:47:14 -07001708 $(addprefix arch/$(ARCH)/lib/,$(EFISTUB))
Simon Glass476476e2015-08-04 12:33:52 -06001709
Simon Glass73c5c392016-01-31 18:10:55 -07001710u-boot-payload: u-boot.bin.o u-boot-payload.lds FORCE
Simon Glass476476e2015-08-04 12:33:52 -06001711 $(call if_changed,u-boot_payload)
1712
1713OBJCOPYFLAGS_u-boot-payload.efi := $(OBJCOPYFLAGS_EFI)
1714u-boot-payload.efi: u-boot-payload FORCE
1715 $(call if_changed,zobjcopy)
1716
Masahiro Yamadaee0acfa2014-02-24 11:12:16 +09001717u-boot-img.bin: spl/u-boot-spl.bin u-boot.img FORCE
1718 $(call if_changed,cat)
Stefan Roesefb3d2b82012-08-24 17:36:53 +02001719
Prabhakar Kushwaha89ad7be2014-04-08 19:13:34 +05301720#Add a target to create boot binary having SPL binary in PBI format
1721#concatenated with u-boot binary. It is need by PowerPC SoC having
1722#internal SRAM <= 512KB.
1723MKIMAGEFLAGS_u-boot-spl.pbl = -n $(srctree)/$(CONFIG_SYS_FSL_PBL_RCW:"%"=%) \
Alison Wang94cb17d2014-12-03 15:00:41 +08001724 -R $(srctree)/$(CONFIG_SYS_FSL_PBL_PBI:"%"=%) -T pblimage \
1725 -A $(ARCH) -a $(CONFIG_SPL_TEXT_BASE)
Prabhakar Kushwaha89ad7be2014-04-08 19:13:34 +05301726
1727spl/u-boot-spl.pbl: spl/u-boot-spl.bin FORCE
1728 $(call if_changed,mkimage)
1729
Alison Wang45c2e482014-12-03 15:00:42 +08001730ifeq ($(ARCH),arm)
1731UBOOT_BINLOAD := u-boot.img
1732else
1733UBOOT_BINLOAD := u-boot.bin
1734endif
1735
Prabhakar Kushwaha89ad7be2014-04-08 19:13:34 +05301736OBJCOPYFLAGS_u-boot-with-spl-pbl.bin = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) \
1737 --gap-fill=0xff
1738
Alison Wang45c2e482014-12-03 15:00:42 +08001739u-boot-with-spl-pbl.bin: spl/u-boot-spl.pbl $(UBOOT_BINLOAD) FORCE
Prabhakar Kushwaha89ad7be2014-04-08 19:13:34 +05301740 $(call if_changed,pad_cat)
1741
Stefan Roeseecddccd2013-02-22 11:36:50 +01001742# PPC4xx needs the SPL at the end of the image, since the reset vector
1743# is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target
1744# and need to introduce a new build target with the full blown U-Boot
1745# at the start padded up to the start of the SPL image. And then concat
1746# the SPL image to the end.
Masahiro Yamada982a1192014-02-24 11:12:17 +09001747
1748OBJCOPYFLAGS_u-boot-img-spl-at-end.bin := -I binary -O binary \
1749 --pad-to=$(CONFIG_UBOOT_PAD_TO) --gap-fill=0xff
1750u-boot-img-spl-at-end.bin: u-boot.img spl/u-boot-spl.bin FORCE
1751 $(call if_changed,pad_cat)
Stefan Roeseecddccd2013-02-22 11:36:50 +01001752
Álvaro Fernández Rojase69945e2017-04-20 20:36:28 +02001753quiet_cmd_u-boot-elf ?= LD $@
1754 cmd_u-boot-elf ?= $(LD) u-boot-elf.o -o $@ \
Du Huanpeng21d3e3d2022-03-31 02:41:42 +08001755 $(if $(CONFIG_SYS_BIG_ENDIAN),-EB,-EL) \
Simon Glass98463902022-10-20 18:22:39 -06001756 -T u-boot-elf.lds --defsym=$(CONFIG_PLATFORM_ELFENTRY)=$(CONFIG_TEXT_BASE) \
1757 -Ttext=$(CONFIG_TEXT_BASE)
Michal Simeke14ba8a2020-03-30 13:58:59 +02001758u-boot.elf: u-boot.bin u-boot-elf.lds
Álvaro Fernández Rojase69945e2017-04-20 20:36:28 +02001759 $(Q)$(OBJCOPY) -I binary $(PLATFORM_ELFFLAGS) $< u-boot-elf.o
1760 $(call if_changed,u-boot-elf)
Scott Woodf4dc7142013-12-14 11:47:33 +08001761
Michal Simeke14ba8a2020-03-30 13:58:59 +02001762u-boot-elf.lds: arch/u-boot-elf.lds prepare FORCE
1763 $(call if_changed_dep,cpp_lds)
1764
Ryder Lee3b975a12018-11-15 10:07:49 +08001765# MediaTek's ARM-based u-boot needs a header to contains its load address
1766# which is parsed by the BootROM.
1767# If the SPL build is enabled, the header will be added to the spl binary,
1768# and the spl binary and the u-boot.img will be combined into one file.
1769# Otherwise the header will be added to the u-boot.bin directly.
1770
1771ifeq ($(CONFIG_SPL),y)
1772spl/u-boot-spl-mtk.bin: spl/u-boot-spl
Weijie Gaof4f478b2021-03-05 10:39:55 +08001773
1774u-boot-mtk.bin: u-boot-with-spl.bin
1775 $(call if_changed,copy)
Ryder Lee3b975a12018-11-15 10:07:49 +08001776else
1777MKIMAGEFLAGS_u-boot-mtk.bin = -T mtk_image \
Simon Glass98463902022-10-20 18:22:39 -06001778 -a $(CONFIG_TEXT_BASE) -e $(CONFIG_TEXT_BASE) \
Ryder Lee3b975a12018-11-15 10:07:49 +08001779 -n "$(patsubst "%",%,$(CONFIG_MTK_BROM_HEADER_INFO))"
1780
1781u-boot-mtk.bin: u-boot.bin FORCE
1782 $(call if_changed,mkimage)
1783endif
1784
Daniel Schwierzeckb8cecd02020-06-06 22:21:47 +02001785quiet_cmd_endian_swap = SWAP $@
1786 cmd_endian_swap = $(srctree)/tools/endian-swap.py $< $@
1787
1788u-boot-swap.bin: u-boot.bin FORCE
1789 $(call if_changed,endian_swap)
1790
Paul Burton09bebb82017-06-15 17:05:09 -07001791ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(ARCH)/Makefile.postlink)
1792
Marek Behúnc1094982021-05-20 13:24:03 +02001793# Generate linker list symbols references to force compiler to not optimize
1794# them away when compiling with LTO
Simon Glassa55014d2022-08-03 12:13:08 -06001795ifeq ($(LTO_ENABLE),y)
Marek Behúnc1094982021-05-20 13:24:03 +02001796u-boot-keep-syms-lto := keep-syms-lto.o
1797u-boot-keep-syms-lto_c := $(patsubst %.o,%.c,$(u-boot-keep-syms-lto))
1798
1799quiet_cmd_keep_syms_lto = KSL $@
1800 cmd_keep_syms_lto = \
Patrick Delaunayff7852d2021-07-21 09:56:07 +02001801 $(srctree)/scripts/gen_ll_addressable_symbols.sh $(NM) $^ > $@
Marek Behúnc1094982021-05-20 13:24:03 +02001802
1803quiet_cmd_keep_syms_lto_cc = KSLCC $@
1804 cmd_keep_syms_lto_cc = \
1805 $(CC) $(filter-out $(LTO_CFLAGS),$(c_flags)) -c -o $@ $<
1806
1807$(u-boot-keep-syms-lto_c): $(u-boot-main)
1808 $(call if_changed,keep_syms_lto)
1809$(u-boot-keep-syms-lto): $(u-boot-keep-syms-lto_c)
1810 $(call if_changed,keep_syms_lto_cc)
1811else
1812u-boot-keep-syms-lto :=
1813endif
1814
Masahiro Yamadaad0fed42014-02-24 11:12:18 +09001815# Rule to link u-boot
1816# May be overridden by arch/$(ARCH)/config.mk
Simon Glassa55014d2022-08-03 12:13:08 -06001817ifeq ($(LTO_ENABLE),y)
Marek Behúnc1094982021-05-20 13:24:03 +02001818quiet_cmd_u-boot__ ?= LTO $@
Wolfgang Denk0cf207e2021-09-27 17:42:39 +02001819 cmd_u-boot__ ?= \
Marek Behúnc1094982021-05-20 13:24:03 +02001820 $(CC) -nostdlib -nostartfiles \
1821 $(LTO_FINAL_LDFLAGS) $(c_flags) \
1822 $(KBUILD_LDFLAGS:%=-Wl,%) $(LDFLAGS_u-boot:%=-Wl,%) -o $@ \
1823 -T u-boot.lds $(u-boot-init) \
1824 -Wl,--whole-archive \
1825 $(u-boot-main) \
1826 $(u-boot-keep-syms-lto) \
1827 $(PLATFORM_LIBS) \
1828 -Wl,--no-whole-archive \
Bo Lv53277dd2023-04-17 13:34:32 +08001829 -Wl,-Map,u-boot.map
Marek Behúnc1094982021-05-20 13:24:03 +02001830else
Masahiro Yamadaad0fed42014-02-24 11:12:18 +09001831quiet_cmd_u-boot__ ?= LD $@
Marek Behún14458362021-05-20 13:24:01 +02001832 cmd_u-boot__ ?= $(LD) $(KBUILD_LDFLAGS) $(LDFLAGS_u-boot) -o $@ \
1833 -T u-boot.lds $(u-boot-init) \
Simon Glassce2f09b2022-01-04 03:51:17 -07001834 --whole-archive \
Marek Behún14458362021-05-20 13:24:01 +02001835 $(u-boot-main) \
Simon Glassce2f09b2022-01-04 03:51:17 -07001836 --no-whole-archive \
Bo Lv53277dd2023-04-17 13:34:32 +08001837 $(PLATFORM_LIBS) -Map u-boot.map
Marek Behúnc1094982021-05-20 13:24:03 +02001838endif
Simon Glass86eb49b2011-10-03 19:26:50 +00001839
Vasili Galkacac8f382014-08-14 12:40:55 +03001840quiet_cmd_smap = GEN common/system_map.o
1841cmd_smap = \
Bo Lv72d0e902023-01-02 14:27:34 +00001842 echo -n "const char system_map[] = \"" > $(buildtree)/common/system_map.c; \
1843 $(call SYSTEM_MAP,u-boot) | \
1844 awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\000"}' >> $(buildtree)/common/system_map.c ; \
1845 echo "\";" >> $(buildtree)/common/system_map.c; \
1846 $(CC) $(c_flags) \
1847 -c $(buildtree)/common/system_map.c -o common/system_map.o
Vasili Galkacac8f382014-08-14 12:40:55 +03001848
Marek Behúnc1094982021-05-20 13:24:03 +02001849u-boot: $(u-boot-init) $(u-boot-main) $(u-boot-keep-syms-lto) u-boot.lds FORCE
Paul Burton09bebb82017-06-15 17:05:09 -07001850 +$(call if_changed,u-boot__)
Vasili Galkacac8f382014-08-14 12:40:55 +03001851ifeq ($(CONFIG_KALLSYMS),y)
1852 $(call cmd,smap)
Masahiro Yamadaad0fed42014-02-24 11:12:18 +09001853 $(call cmd,u-boot__) common/system_map.o
Mike Frysingerecb1dc82009-05-20 04:35:14 -04001854endif
wdenk7ebf7442002-11-02 23:17:16 +00001855
Rick Chen42ac26f2017-12-26 13:55:56 +08001856ifeq ($(CONFIG_RISCV),y)
1857 @tools/prelink-riscv $@ 0
1858endif
1859
Stephen Warren7ed48482016-02-08 14:44:15 -07001860quiet_cmd_sym ?= SYM $@
1861 cmd_sym ?= $(OBJDUMP) -t $< > $@
1862u-boot.sym: u-boot FORCE
1863 $(call if_changed,sym)
1864
Simon Glass86b9c3e2021-10-21 21:08:46 -06001865# Environment processing
1866# ---------------------------------------------------------------------------
1867
1868# Directory where we expect the .env file, if it exists
1869ENV_DIR := $(srctree)/board/$(BOARDDIR)
1870
1871# Basename of .env file, stripping quotes
1872ENV_SOURCE_FILE := $(CONFIG_ENV_SOURCE_FILE:"%"=%)
1873
1874# Filename of .env file
1875ENV_FILE_CFG := $(ENV_DIR)/$(ENV_SOURCE_FILE).env
1876
1877# Default filename, if CONFIG_ENV_SOURCE_FILE is empty
1878ENV_FILE_BOARD := $(ENV_DIR)/$(CONFIG_SYS_BOARD:"%"=%).env
1879
1880# Select between the CONFIG_ENV_SOURCE_FILE and the default one
1881ENV_FILE := $(if $(ENV_SOURCE_FILE),$(ENV_FILE_CFG),$(wildcard $(ENV_FILE_BOARD)))
1882
1883# Run the environment text file through the preprocessor, but only if it is
1884# non-empty, to save time and possible build errors if something is wonky with
Simon Glassf432eb62022-03-11 22:37:23 -07001885# the board.
1886# If there is no ENV_FILE, produce an empty output file, to prevent a previous
1887# build's file being used in the case of in-tree builds.
Simon Glass86b9c3e2021-10-21 21:08:46 -06001888quiet_cmd_gen_envp = ENVP $@
1889 cmd_gen_envp = \
1890 if [ -s "$(ENV_FILE)" ]; then \
1891 $(CPP) -P $(CFLAGS) -x assembler-with-cpp -D__ASSEMBLY__ \
1892 -D__UBOOT_CONFIG__ \
1893 -I . -I include -I $(srctree)/include \
1894 -include linux/kconfig.h -include include/config.h \
1895 -I$(srctree)/arch/$(ARCH)/include \
1896 $< -o $@; \
1897 else \
Andrey Zhizhikine75c5b92022-04-03 16:06:03 +02001898 rm -f $@; \
qthedev42db3732022-02-05 10:25:16 +00001899 touch $@ ; \
Simon Glass86b9c3e2021-10-21 21:08:46 -06001900 fi
1901include/generated/env.in: include/generated/env.txt FORCE
1902 $(call cmd,gen_envp)
1903
1904# Regenerate the environment if it changes
1905# We use 'wildcard' since the file is not required to exist (at present), in
1906# which case we don't want this dependency, but instead should create an empty
1907# file
1908# This rule is useful since it shows the source file for the environment
1909quiet_cmd_envc = ENVC $@
1910 cmd_envc = \
1911 if [ -f "$<" ]; then \
1912 cat $< > $@; \
1913 elif [ -n "$(ENV_SOURCE_FILE)" ]; then \
1914 echo "Missing file $(ENV_FILE_CFG)"; \
1915 else \
qthedev42db3732022-02-05 10:25:16 +00001916 touch $@ ; \
Simon Glass86b9c3e2021-10-21 21:08:46 -06001917 fi
1918
1919include/generated/env.txt: $(wildcard $(ENV_FILE)) FORCE
1920 $(call cmd,envc)
1921
1922# Write out the resulting environment, converted to a C string
1923quiet_cmd_gen_envt = ENVT $@
1924 cmd_gen_envt = \
1925 awk -f $(srctree)/scripts/env2string.awk $< >$@
1926$(env_h): include/generated/env.in
1927 $(call cmd,gen_envt)
1928
1929# ---------------------------------------------------------------------------
1930
Michal Simek69c0d322014-04-24 15:24:28 +02001931# The actual objects are generated when descending,
Masahiro Yamada656de6b2014-02-04 17:24:37 +09001932# make sure no implicit rule kicks in
1933$(sort $(u-boot-init) $(u-boot-main)): $(u-boot-dirs) ;
Marian Balakowiczf9328632006-09-01 19:49:50 +02001934
Thomas Hebb32f2ca22019-11-13 18:18:03 -08001935# Handle descending into subdirectories listed in $(u-boot-dirs)
Masahiro Yamada656de6b2014-02-04 17:24:37 +09001936# Preset locale variables to speed up the build process. Limit locale
1937# tweaks to this spot to avoid wrong language settings when running
1938# make menuconfig etc.
1939# Error messages still appears in the original language
wdenka8c7c702003-12-06 19:49:23 +00001940
Masahiro Yamada656de6b2014-02-04 17:24:37 +09001941PHONY += $(u-boot-dirs)
Masahiro Yamada63780082014-02-24 11:12:10 +09001942$(u-boot-dirs): prepare scripts
Masahiro Yamada656de6b2014-02-04 17:24:37 +09001943 $(Q)$(MAKE) $(build)=$@
Masahiro Yamada940db162014-02-04 17:24:10 +09001944
Masahiro Yamada74241452014-02-24 11:12:09 +09001945tools: prepare
Masahiro Yamada656de6b2014-02-04 17:24:37 +09001946# The "tools" are needed early
1947$(filter-out tools, $(u-boot-dirs)): tools
1948# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
1949# is "yes"), so compile examples after U-Boot is compiled.
1950examples: $(filter-out examples, $(u-boot-dirs))
1951
Masahiro Yamada74241452014-02-24 11:12:09 +09001952define filechk_uboot.release
1953 echo "$(UBOOTVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
1954endef
1955
Bo Lv72d0e902023-01-02 14:27:34 +00001956define filechk_acs.release
1957 echo "$(BOARD)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
1958endef
1959
Masahiro Yamada74241452014-02-24 11:12:09 +09001960# Store (new) UBOOTRELEASE string in include/config/uboot.release
Masahiro Yamada51148792014-07-30 14:08:17 +09001961include/config/uboot.release: include/config/auto.conf FORCE
Masahiro Yamada74241452014-02-24 11:12:09 +09001962 $(call filechk,uboot.release)
1963
Bo Lv72d0e902023-01-02 14:27:34 +00001964include/config/acs.release: include/config/auto.conf FORCE
1965 $(call filechk,acs.release)
Masahiro Yamada74241452014-02-24 11:12:09 +09001966
Masahiro Yamada3341bfe2014-02-04 17:24:42 +09001967# Things we need to do before we recursively start building the kernel
1968# or the modules are listed in "prepare".
1969# A multi level approach is used. prepareN is processed before prepareN-1.
1970# archprepare is used in arch Makefiles and when processed asm symlink,
1971# version.h and scripts_basic is processed / created.
1972
1973# Listed in dependency order
1974PHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3
1975
1976# prepare3 is used to check if we are building in a separate output directory,
1977# and if so do:
1978# 1) Check that make has not been executed in the kernel src $(srctree)
Bo Lv72d0e902023-01-02 14:27:34 +00001979prepare3: include/config/uboot.release include/config/acs.release
Masahiro Yamada3341bfe2014-02-04 17:24:42 +09001980ifneq ($(KBUILD_SRC),)
Masahiro Yamada51148792014-07-30 14:08:17 +09001981 @$(kecho) ' Using $(srctree) as source for U-Boot'
1982 $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \
Masahiro Yamada3341bfe2014-02-04 17:24:42 +09001983 echo >&2 " $(srctree) is not clean, please run 'make mrproper'"; \
1984 echo >&2 " in the '$(srctree)' directory.";\
1985 /bin/false; \
1986 fi;
1987endif
1988
1989# prepare2 creates a makefile if using a separate output directory
Masahiro Yamada0b588de2019-01-10 23:11:39 +09001990prepare2: prepare3 outputmakefile cfg
Masahiro Yamada3341bfe2014-02-04 17:24:42 +09001991
Simon Glass86b9c3e2021-10-21 21:08:46 -06001992prepare1: prepare2 $(version_h) $(timestamp_h) $(dt_h) $(env_h) \
Masahiro Yamada51148792014-07-30 14:08:17 +09001993 include/config/auto.conf
Masahiro Yamada4a377552014-02-25 19:26:48 +09001994ifeq ($(wildcard $(LDSCRIPT)),)
1995 @echo >&2 " Could not find linker script."
1996 @/bin/false
1997endif
wdenk7ebf7442002-11-02 23:17:16 +00001998
Rasmus Villemoesf3d8f7d2018-03-20 11:38:45 +01001999ifeq ($(CONFIG_USE_DEFAULT_ENV_FILE),y)
2000prepare1: $(defaultenv_h)
Joel Stanley2a2896b2021-06-18 11:35:59 +09302001
2002envtools: $(defaultenv_h)
Rasmus Villemoesf3d8f7d2018-03-20 11:38:45 +01002003endif
2004
Masahiro Yamada3341bfe2014-02-04 17:24:42 +09002005archprepare: prepare1 scripts_basic
wdenka8c7c702003-12-06 19:49:23 +00002006
Masahiro Yamada6a44d802014-02-24 11:12:11 +09002007prepare0: archprepare FORCE
2008 $(Q)$(MAKE) $(build)=.
wdenk7ebf7442002-11-02 23:17:16 +00002009
Masahiro Yamada3341bfe2014-02-04 17:24:42 +09002010# All the preparing..
2011prepare: prepare0
Che-liang Chiou349e83f2011-10-17 21:04:15 +00002012
Masahiro Yamada74241452014-02-24 11:12:09 +09002013# Generate some files
2014# ---------------------------------------------------------------------------
2015
Simon Glass68f6a902021-02-04 21:17:13 -07002016# Use sed to remove leading zeros from PATCHLEVEL to avoid using octal numbers
Masahiro Yamada74241452014-02-24 11:12:09 +09002017define filechk_version.h
2018 (echo \#define PLAIN_VERSION \"$(UBOOTRELEASE)\"; \
Bo Lv72d0e902023-01-02 14:27:34 +00002019 echo \#define ACS_VERSION \"$(ACSRELEASE)\"; \
Masahiro Yamada74241452014-02-24 11:12:09 +09002020 echo \#define U_BOOT_VERSION \"U-Boot \" PLAIN_VERSION; \
Simon Glass68f6a902021-02-04 21:17:13 -07002021 echo \#define U_BOOT_VERSION_NUM $(VERSION); \
2022 echo \#define U_BOOT_VERSION_NUM_PATCH $$(echo $(PATCHLEVEL) | \
2023 sed -e "s/^0*//"); \
Vagrant Cascadian42ffa512016-06-12 06:07:07 -07002024 echo \#define CC_VERSION_STRING \"$$(LC_ALL=C $(CC) --version | head -n 1)\"; \
Zhongfu Luo862f0ce2024-05-16 19:22:35 +08002025 echo \#define LD_VERSION_STRING \"$$(LC_ALL=C $(LD) --version | head -n 1)\"; \
2026 echo \#define COMPILE_USER \"${USER}\";)
Masahiro Yamada74241452014-02-24 11:12:09 +09002027endef
2028
Andreas Bießmann2d9efa12015-08-28 10:29:55 +02002029# The SOURCE_DATE_EPOCH mechanism requires a date that behaves like GNU date.
2030# The BSD date on the other hand behaves different and would produce errors
2031# with the misused '-d' switch. Respect that and search a working date with
2032# well known pre- and suffixes for the GNU variant of date.
Masahiro Yamada74241452014-02-24 11:12:09 +09002033define filechk_timestamp.h
Chris Packham70d39f52015-08-13 18:08:27 +12002034 (if test -n "$${SOURCE_DATE_EPOCH}"; then \
2035 SOURCE_DATE="@$${SOURCE_DATE_EPOCH}"; \
Andreas Bießmann2d9efa12015-08-28 10:29:55 +02002036 DATE=""; \
2037 for date in gdate date.gnu date; do \
2038 $${date} -u -d "$${SOURCE_DATE}" >/dev/null 2>&1 && DATE="$${date}"; \
2039 done; \
2040 if test -n "$${DATE}"; then \
2041 LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_DATE "%b %d %C%y"'; \
2042 LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_TIME "%T"'; \
2043 LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_TZ "%z"'; \
Heinrich Schuchardtcbf0ffe2020-10-25 07:25:05 +01002044 LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_EPOCH %s'; \
Bo Lv72d0e902023-01-02 14:27:34 +00002045 LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_BUILD_DATE 0x%Y%m%d'; \
2046 LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_DATE_TIME "%y%m%d.%H%M%S"'; \
Andreas Bießmann2d9efa12015-08-28 10:29:55 +02002047 else \
2048 return 42; \
2049 fi; \
Chris Packham70d39f52015-08-13 18:08:27 +12002050 else \
2051 LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"'; \
2052 LC_ALL=C date +'#define U_BOOT_TIME "%T"'; \
2053 LC_ALL=C date +'#define U_BOOT_TZ "%z"'; \
Heinrich Schuchardtcbf0ffe2020-10-25 07:25:05 +01002054 LC_ALL=C date +'#define U_BOOT_EPOCH %s'; \
Bo Lv72d0e902023-01-02 14:27:34 +00002055 LC_ALL=C date +'#define U_BOOT_BUILD_DATE 0x%Y%m%d'; \
2056 LC_ALL=C date +'#define U_BOOT_DATE_TIME "%y%m%d.%H%M%S"'; \
Chris Packham70d39f52015-08-13 18:08:27 +12002057 fi)
Masahiro Yamada74241452014-02-24 11:12:09 +09002058endef
2059
Rasmus Villemoesf3d8f7d2018-03-20 11:38:45 +01002060define filechk_defaultenv.h
Rasmus Villemoes7ac70382021-04-22 09:44:18 +02002061 ( { grep -v '^#' | grep -v '^$$' || true ; echo '' ; } | \
Rasmus Villemoesf3d8f7d2018-03-20 11:38:45 +01002062 tr '\n' '\0' | \
Samuel Mescoff4b7f5f32019-04-15 12:28:26 +02002063 sed -e 's/\\\x0\s*//g' | \
Rasmus Villemoes7ac70382021-04-22 09:44:18 +02002064 xxd -i ; )
Rasmus Villemoesf3d8f7d2018-03-20 11:38:45 +01002065endef
2066
Michal Simekdacec832020-02-18 15:03:13 +01002067define filechk_dt.h
2068 (if test -n "$${DEVICE_TREE}"; then \
2069 echo \#define DEVICE_TREE \"$(DEVICE_TREE)\"; \
2070 else \
2071 echo \#define DEVICE_TREE CONFIG_DEFAULT_DEVICE_TREE; \
2072 fi)
2073endef
2074
Bo Lv72d0e902023-01-02 14:27:34 +00002075$(version_h): include/config/uboot.release include/config/acs.release FORCE
Masahiro Yamada74241452014-02-24 11:12:09 +09002076 $(call filechk,version.h)
2077
Bo Lv4a465022023-02-28 05:51:47 +00002078ifeq ("$(AVBMODE)", "avb2")
2079 echo "#define CONFIG_AVB2" \"$(AVBMODE)\" >> $(version_h)
2080 echo "#define CONFIG_SKIP_KERNEL_DTB_SECBOOT_CHECK" \"1\" >> $(version_h)
2081endif
2082ifeq ("$(BOOTCTRLMODE)", "1")
2083 echo "#define CONFIG_CMD_BOOTCTOL_VAB" \"$(BOOTCTRLMODE)\" >> $(version_h)
2084endif
2085ifeq ("$(FASTBOOTMODE)", "1")
2086 echo "#define CONFIG_FASTBOOT_WRITING_CMD" \"$(FASTBOOTMODE)\" >> $(version_h)
2087endif
2088ifeq ("$(AVB2RECOVERY)", "1")
2089 echo "#define CONFIG_AVB2_RECOVERY" \"$(AVB2RECOVERY)\" >> $(version_h)
2090endif
Xindong Xu2e748322024-11-22 09:24:46 +08002091ifeq ("$(TESTKEY)", "1")
2092 echo "#define CONFIG_TESTKEY" \"$(TESTKEY)\" >> $(version_h)
2093endif
Bo Lv4a465022023-02-28 05:51:47 +00002094
2095ifeq ("$(CHIPMODE)", "1")
2096 echo "#define CONFIG_CHIP_NOCS" $(CHIPMODE) >> $(version_h)
2097endif
2098
2099ifeq ("$(CONFIG_MDUMP_COMPRESS)", "1")
2100 echo "#define CONFIG_MDUMP_COMPRESS" $(CONFIG_MDUMP_COMPRESS) >> $(version_h)
2101endif
2102
2103ifeq ("$(CONFIG_SUPPORT_BL33Z)", "1")
2104 echo "#define CONFIG_SUPPORT_BL33Z" $(CONFIG_SUPPORT_BL33Z) >> $(version_h)
2105endif
2106
Masahiro Yamada74241452014-02-24 11:12:09 +09002107$(timestamp_h): $(srctree)/Makefile FORCE
2108 $(call filechk,timestamp.h)
2109
Michal Simekdacec832020-02-18 15:03:13 +01002110$(dt_h): $(srctree)/Makefile FORCE
2111 $(call filechk,dt.h)
2112
Rasmus Villemoesf3d8f7d2018-03-20 11:38:45 +01002113$(defaultenv_h): $(CONFIG_DEFAULT_ENV_FILE:"%"=%) FORCE
2114 $(call filechk,defaultenv.h)
2115
Masahiro Yamada63780082014-02-24 11:12:10 +09002116# ---------------------------------------------------------------------------
Tom Rini473fc272021-06-17 18:07:25 -04002117# Devicetree files
2118
2119ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/boot/dts/),)
2120dtstree := arch/$(SRCARCH)/boot/dts
2121endif
2122
2123ifneq ($(dtstree),)
2124
2125%.dtb: prepare3 scripts_dtc
2126 $(Q)$(MAKE) $(build)=$(dtstree) $(dtstree)/$@
2127
2128PHONY += dtbs dtbs_install
2129dtbs: prepare3 scripts_dtc
2130 $(Q)$(MAKE) $(build)=$(dtstree)
2131
2132dtbs_install:
2133 $(Q)$(MAKE) $(dtbinst)=$(dtstree)
2134
2135ifdef CONFIG_OF_EARLY_FLATTREE
2136all: dtbs
2137endif
2138
2139endif
2140
Simon Glass93b19652021-09-22 11:34:44 -06002141# Check dtc and pylibfdt, if DTC is provided, else build them
Tom Rini473fc272021-06-17 18:07:25 -04002142PHONY += scripts_dtc
2143scripts_dtc: scripts_basic
Simon Glass93b19652021-09-22 11:34:44 -06002144 $(Q)if test "$(DTC)" = "$(DTC_INTREE)"; then \
2145 $(MAKE) $(build)=scripts/dtc; \
2146 else \
2147 if ! $(DTC) -v >/dev/null; then \
2148 echo '*** Failed to check dtc version: $(DTC)'; \
2149 false; \
2150 else \
2151 if test "$(call dtc-version)" -lt $(DTC_MIN_VERSION); then \
2152 echo '*** Your dtc is too old, please upgrade to dtc $(DTC_MIN_VERSION) or newer'; \
2153 false; \
2154 else \
2155 if [ -n "$(CONFIG_PYLIBFDT)" ]; then \
2156 if ! echo "import libfdt" | $(PYTHON3) 2>/dev/null; then \
2157 echo '*** pylibfdt does not seem to be available with $(PYTHON3)'; \
2158 false; \
2159 fi; \
2160 fi; \
2161 fi; \
2162 fi; \
2163 fi
Tom Rini473fc272021-06-17 18:07:25 -04002164
2165# ---------------------------------------------------------------------------
Masahiro Yamada04a34c92014-02-24 11:12:19 +09002166quiet_cmd_cpp_lds = LDS $@
Chris Zankelde5e5ce2016-08-10 18:36:43 +03002167cmd_cpp_lds = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) \
Simon Glass44093a12018-10-01 12:22:43 -06002168 -D__ASSEMBLY__ -x assembler-with-cpp -std=c99 -P -o $@ $<
Masahiro Yamada63780082014-02-24 11:12:10 +09002169
Masahiro Yamada04a34c92014-02-24 11:12:19 +09002170u-boot.lds: $(LDSCRIPT) prepare FORCE
Masahiro Yamada395e60c2014-04-09 20:10:43 +09002171 $(call if_changed_dep,cpp_lds)
Wolfgang Denk1aada9c2009-08-17 14:00:53 +02002172
Masahiro Yamada982a1192014-02-24 11:12:17 +09002173spl/u-boot-spl.bin: spl/u-boot-spl
2174 @:
Heinrich Schuchardt0a0f2312019-04-02 19:19:06 +02002175 $(SPL_SIZE_CHECK)
2176
Dalon Westergreen9773ebc2021-03-01 20:04:16 +08002177spl/u-boot-spl-dtb.bin: spl/u-boot-spl
2178 @:
2179
2180spl/u-boot-spl-dtb.hex: spl/u-boot-spl
2181 @:
2182
Simon Glass70bed2f2022-04-30 00:56:50 -06002183spl/u-boot-spl: tools prepare $(if $(CONFIG_SPL_OF_CONTROL),dts/dt.dtb)
Masahiro Yamadac7163082014-06-09 15:14:11 +09002184 $(Q)$(MAKE) obj=spl -f $(srctree)/scripts/Makefile.spl all
Daniel Schwierzeck5df2ee22011-07-13 05:11:04 +00002185
Ian Campbell50827a52014-05-05 11:52:30 +01002186spl/sunxi-spl.bin: spl/u-boot-spl
2187 @:
2188
Maxime Ripardd2fdcc72017-02-27 18:22:13 +01002189spl/sunxi-spl-with-ecc.bin: spl/sunxi-spl.bin
2190 @:
2191
Simon Glassbd7dc382016-01-31 18:10:53 -07002192spl/u-boot-spl.sfp: spl/u-boot-spl
Marek Vasut333b7202015-07-15 02:53:45 +02002193 @:
2194
Nathan Rossi08598d62015-11-17 22:56:57 +10002195spl/boot.bin: spl/u-boot-spl
2196 @:
2197
Simon Glassd3eba952022-04-30 00:56:51 -06002198tpl/u-boot-tpl.bin: tpl/u-boot-tpl
2199 @:
Simon Glassc52b5e82019-10-20 21:31:52 -06002200 $(TPL_SIZE_CHECK)
Ying Zhang3aa29de2013-08-16 15:16:15 +08002201
Simon Glassd3eba952022-04-30 00:56:51 -06002202tpl/u-boot-tpl: tools prepare $(if $(CONFIG_TPL_OF_CONTROL),dts/dt.dtb)
2203 $(Q)$(MAKE) obj=tpl -f $(srctree)/scripts/Makefile.spl all
2204
Simon Glassf86ca5a2022-04-30 00:56:52 -06002205vpl/u-boot-vpl.bin: vpl/u-boot-vpl
2206 @:
2207 $(VPL_SIZE_CHECK)
2208
2209vpl/u-boot-vpl: tools prepare $(if $(CONFIG_TPL_OF_CONTROL),dts/dt.dtb)
2210 $(Q)$(MAKE) obj=vpl -f $(srctree)/scripts/Makefile.spl all
2211
Igor Grinberg8d819ab2014-07-15 15:52:00 +03002212TAG_SUBDIRS := $(patsubst %,$(srctree)/%,$(u-boot-dirs) include)
Jean-Christophe PLAGNIOL-VILLARDa340c322007-11-25 18:45:47 +01002213
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +00002214FIND := find
2215FINDFLAGS := -L
2216
Marian Balakowiczf9328632006-09-01 19:49:50 +02002217tags ctags:
Masahiro Yamada9e414032014-02-04 17:24:24 +09002218 ctags -w -o ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
Li Yange5e4e702009-12-09 18:13:26 +08002219 -name '*.[chS]' -print`
Du Huanpeng74d339b2015-05-04 06:26:53 -07002220 ln -s ctags tags
wdenk7ebf7442002-11-02 23:17:16 +00002221
2222etags:
Igor Grinberg8d819ab2014-07-15 15:52:00 +03002223 etags -a -o etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
Li Yange5e4e702009-12-09 18:13:26 +08002224 -name '*.[chS]' -print`
Li Yangffda5862008-02-29 11:46:05 +08002225cscope:
Horst Kronstorfer857d9ea2011-07-18 01:21:18 +00002226 $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
2227 cscope.files
Andy Shevchenkoe15a9512019-10-08 21:12:45 +03002228 @find $(TAG_SUBDIRS) -name '*.[chS]' -type l -print | \
2229 grep -xvf - cscope.files > cscope.files.no-symlinks; \
2230 mv cscope.files.no-symlinks cscope.files
Li Yangffda5862008-02-29 11:46:05 +08002231 cscope -b -q -k
wdenk7ebf7442002-11-02 23:17:16 +00002232
Mike Frysingerecb1dc82009-05-20 04:35:14 -04002233SYSTEM_MAP = \
2234 $(NM) $1 | \
wdenk7ebf7442002-11-02 23:17:16 +00002235 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
Mike Frysingerecb1dc82009-05-20 04:35:14 -04002236 LC_ALL=C sort
Masahiro Yamada9e414032014-02-04 17:24:24 +09002237System.map: u-boot
Masahiro Yamadabc8bb6e2013-11-11 14:36:01 +09002238 @$(call SYSTEM_MAP,$<) > $@
wdenk7ebf7442002-11-02 23:17:16 +00002239
2240#########################################################################
wdenk7ebf7442002-11-02 23:17:16 +00002241
Scott Wood54799e42013-12-14 11:47:34 +08002242# ARM relocations should all be R_ARM_RELATIVE (32-bit) or
2243# R_AARCH64_RELATIVE (64-bit).
Masahiro Yamada9e414032014-02-04 17:24:24 +09002244checkarmreloc: u-boot
Scott Wood54799e42013-12-14 11:47:34 +08002245 @RELOC="`$(CROSS_COMPILE)readelf -r -W $< | cut -d ' ' -f 4 | \
2246 grep R_A | sort -u`"; \
2247 if test "$$RELOC" != "R_ARM_RELATIVE" -a \
2248 "$$RELOC" != "R_AARCH64_RELATIVE"; then \
2249 echo "$< contains unexpected relocations: $$RELOC"; \
2250 false; \
2251 fi
Albert ARIBAUDc37980c2013-06-11 14:17:30 +02002252
Bin Meng4d90f6c2019-10-27 05:19:47 -07002253tools/version.h: include/version.h
Tom Rinifb013ee2019-12-04 18:54:30 -05002254 $(Q)mkdir -p $(dir $@)
Bin Meng4d90f6c2019-10-27 05:19:47 -07002255 $(call if_changed,copy)
2256
2257envtools: scripts_basic $(version_h) $(timestamp_h) tools/version.h
Tom Rini2d3229b2017-09-05 14:01:29 -04002258 $(Q)$(MAKE) $(build)=tools/env
Mike Frysinger0358df42010-08-15 00:03:21 -04002259
Simon Goldschmidt25770152019-05-24 22:07:04 +02002260tools-only: export TOOLS_ONLY=y
Bin Meng4d90f6c2019-10-27 05:19:47 -07002261tools-only: scripts_basic $(version_h) $(timestamp_h) tools/version.h
Masahiro Yamada4642e002014-03-31 17:33:51 +09002262 $(Q)$(MAKE) $(build)=tools
2263
Masahiro Yamada1ec8b4e2014-03-03 11:06:18 +09002264tools-all: export HOST_TOOLS_ALL=y
Simon Glass57332952017-09-05 01:53:58 -06002265tools-all: envtools tools ;
Mike Frysinger0358df42010-08-15 00:03:21 -04002266
Masahiro Yamadadb5b3392014-03-03 11:06:19 +09002267cross_tools: export CROSS_BUILD_TOOLS=y
2268cross_tools: tools ;
2269
Wolfgang Denk4e53a252006-10-25 00:43:17 +02002270.PHONY : CHANGELOG
2271CHANGELOG:
Ben Warrenb985b5d2006-10-26 14:38:25 -04002272 git log --no-merges U-Boot-1_1_5.. | \
2273 unexpand -a | sed -e 's/\s\s*$$//' > $@
Wolfgang Denk4e53a252006-10-25 00:43:17 +02002274
wdenk7ebf7442002-11-02 23:17:16 +00002275#########################################################################
2276
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002277###
2278# Cleaning is done on three levels.
2279# make clean Delete most generated files
2280# Leave enough to build external modules
2281# make mrproper Delete the current configuration, and all generated files
2282# make distclean Remove editor backup files, patch leftover files and the like
wdenk7ebf7442002-11-02 23:17:16 +00002283
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002284# Directories & files removed with 'make clean'
Masahiro Yamada48aa812d2014-10-30 10:58:32 +09002285CLEAN_DIRS += $(MODVERDIR) \
2286 $(foreach d, spl tpl, $(patsubst %,$d/%, \
Masahiro Yamada51148792014-07-30 14:08:17 +09002287 $(filter-out include, $(shell ls -1 $d 2>/dev/null))))
Masahiro Yamada48aa812d2014-10-30 10:58:32 +09002288
Heinrich Schuchardt0652d442022-03-19 13:33:25 +01002289CLEAN_FILES += include/bmp_logo.h include/bmp_logo_data.h \
Tom Rini07b96422022-06-13 22:57:31 -04002290 include/generated/env.* drivers/video/u_boot_logo.S \
Heinrich Schuchardt6a56fc02022-03-30 12:11:00 +02002291 tools/version.h u-boot* MLO* SPL System.map fit-dtb.blob* \
Thomas Hebb57297e62019-11-10 08:25:08 -08002292 u-boot-ivt.img.log u-boot-dtb.imx.log SPL.log u-boot.imx.log \
Thomas Hebb983c0f92019-11-10 08:25:10 -08002293 lpc32xx-* bl31.c bl31.elf bl31_*.bin image.map tispl.bin* \
Adam Ford824204e2021-12-22 10:40:27 -06002294 idbloader.img flash.bin flash.log defconfig keep-syms-lto.c \
2295 mkimage-out.spl.mkimage mkimage.spl.mkimage imx-boot.map \
Quentin Schulz32c8d1c2022-09-02 15:10:50 +02002296 itb.fit.fit itb.fit.itb itb.map spl.map mkimage-out.rom.mkimage \
Quentin Schulze1faa532022-09-02 15:10:55 +02002297 mkimage.rom.mkimage rom.map simple-bin.map simple-bin-spi.map \
2298 idbloader-spi.img
Mike Frysinger9f4a4202009-10-01 12:11:54 -04002299
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002300# Directories & files removed with 'make mrproper'
Masahiro Yamada51148792014-07-30 14:08:17 +09002301MRPROPER_DIRS += include/config include/generated spl tpl \
Simon Glassc72c7d92021-07-02 12:36:13 -06002302 .tmp_objdiff doc/output include/asm
Simon Glassa7d03d52021-05-06 19:32:23 -06002303
2304# Remove include/asm symlink created by U-Boot before v2014.01
Masahiro Yamada51148792014-07-30 14:08:17 +09002305MRPROPER_FILES += .config .config.old include/autoconf.mk* include/config.h \
Heinrich Schuchardt1249fa82019-01-29 21:15:21 +01002306 ctags etags tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \
Simon Glassa7d03d52021-05-06 19:32:23 -06002307 drivers/video/fonts/*.S include/asm
wdenk7ebf7442002-11-02 23:17:16 +00002308
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002309# clean - Delete most, but leave enough to build external modules
2310#
2311clean: rm-dirs := $(CLEAN_DIRS)
2312clean: rm-files := $(CLEAN_FILES)
wdenk7ebf7442002-11-02 23:17:16 +00002313
Masahiro Yamada6bd04bb2014-03-28 14:55:02 +09002314clean-dirs := $(foreach f,$(u-boot-alldirs),$(if $(wildcard $(srctree)/$f/Makefile),$f))
Andy Fleming734329f2011-11-21 13:40:43 +00002315
Tom Rini08fcdd32018-07-25 11:38:17 -04002316clean-dirs := $(addprefix _clean_, $(clean-dirs))
wdenk7ebf7442002-11-02 23:17:16 +00002317
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002318PHONY += $(clean-dirs) clean archclean
2319$(clean-dirs):
2320 $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
2321
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002322clean: $(clean-dirs)
2323 $(call cmd,rmdirs)
2324 $(call cmd,rmfiles)
2325 @find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \
2326 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
Heinrich Schuchardtd4c51412019-10-03 16:45:29 +00002327 -o -name '*.ko.*' -o -name '*.su' -o -name '*.pyc' \
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002328 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \
Eugeniu Roscae91610d2018-05-19 14:13:50 +02002329 -o -name '*.lex.c' -o -name '*.tab.[ch]' \
AKASHI Takahiroed3dead2019-11-13 09:44:54 +09002330 -o -name '*.asn1.[ch]' \
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002331 -o -name '*.symtypes' -o -name 'modules.order' \
2332 -o -name modules.builtin -o -name '.tmp_*.o.*' \
Philippe Reynes5d94cbd2022-02-22 14:54:39 +01002333 -o -name 'dsdt_generated.aml' -o -name 'dsdt_generated.asl.tmp' \
2334 -o -name 'dsdt_generated.c' \
Heinrich Schuchardt7f474ef2018-05-24 19:34:45 +02002335 -o -name '*.efi' -o -name '*.gcno' -o -name '*.so' \) \
Thomas Hebb0f18cf32019-11-10 08:25:09 -08002336 -type f -print | xargs rm -f
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002337
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002338# mrproper - Delete all generated files, including .config
2339#
2340mrproper: rm-dirs := $(wildcard $(MRPROPER_DIRS))
2341mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
2342mrproper-dirs := $(addprefix _mrproper_,scripts)
2343
2344PHONY += $(mrproper-dirs) mrproper archmrproper
2345$(mrproper-dirs):
2346 $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
2347
Masahiro Yamada48aa812d2014-10-30 10:58:32 +09002348mrproper: clean $(mrproper-dirs)
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002349 $(call cmd,rmdirs)
2350 $(call cmd,rmfiles)
Bo Lv72d0e902023-01-02 14:27:34 +00002351 @rm -f arch/*/include/asm/amlogic/arch
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002352
2353# distclean
2354#
2355PHONY += distclean
Masahiro Yamada433b2f12014-02-04 17:24:35 +09002356
2357distclean: mrproper
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002358 @find $(srctree) $(RCS_FIND_IGNORE) \
2359 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
2360 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
Masahiro Yamada598e2d32014-04-15 13:29:00 +09002361 -o -name '.*.rej' -o -name '*%' -o -name 'core' \
2362 -o -name '*.pyc' \) \
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002363 -type f -print | xargs rm -f
Robert P. J. Dayc1180aa2019-01-18 08:41:23 -05002364 @rm -f boards.cfg CHANGELOG
Bo Lv026031b2024-05-13 10:51:16 +08002365 @rm -rf $(srctree)/build
wdenk7ebf7442002-11-02 23:17:16 +00002366
Simon Glassfeafc612021-11-21 20:48:40 -07002367# See doc/develop/python_cq.rst
Simon Glassf44a52a2022-02-11 13:23:24 -07002368PHONY += pylint pylint_err
Simon Glassfeafc612021-11-21 20:48:40 -07002369PYLINT_BASE := scripts/pylint.base
2370PYLINT_CUR := pylint.cur
2371PYLINT_DIFF := pylint.diff
2372pylint:
2373 $(Q)echo "Running pylint on all files (summary in $(PYLINT_CUR); output in pylint.out/)"
2374 $(Q)mkdir -p pylint.out
2375 $(Q)rm -f pylint.out/out*
2376 $(Q)find tools test -name "*.py" \
2377 | xargs -n1 -P$(shell nproc 2>/dev/null || echo 1) \
2378 sh -c 'pylint --reports=y --exit-zero -f parseable --ignore-imports=yes $$@ > pylint.out/$$(echo $$@ | tr / _ | sed s/.py//)' _
Simon Glassf8753f02022-01-28 21:31:07 -07002379 $(Q)rm -f $(PYLINT_CUR)
2380 $(Q)( cd pylint.out; for f in *; do \
2381 sed -ne "s/Your code has been rated at \([-0-9.]*\).*/$$f \1/p" $$f; \
2382 done ) | sort > $(PYLINT_CUR)
Simon Glassfeafc612021-11-21 20:48:40 -07002383 $(Q)base=$$(mktemp) cur=$$(mktemp); cut -d' ' -f1 $(PYLINT_BASE) >$$base; \
2384 cut -d' ' -f1 $(PYLINT_CUR) >$$cur; \
2385 comm -3 $$base $$cur > $(PYLINT_DIFF); \
2386 if [ -s $(PYLINT_DIFF) ]; then \
2387 echo "Files have been added/removed. Try:\n\tcp $(PYLINT_CUR) $(PYLINT_BASE)"; \
2388 echo; \
2389 echo "Added files:"; \
2390 comm -13 $$base $$cur; \
2391 echo; \
2392 echo "Removed files:"; \
2393 comm -23 $$base $$cur; \
2394 false; \
2395 else \
2396 rm $$base $$cur $(PYLINT_DIFF); \
2397 fi
2398 $(Q)bad=false; while read base_file base_val <&3 && read cur_file cur_val <&4; do \
2399 if awk "BEGIN {exit !($$cur_val < $$base_val)}"; then \
2400 echo "$$base_file: Score was $$base_val, now $$cur_val"; \
2401 bad=true; fi; \
2402 done 3<$(PYLINT_BASE) 4<$(PYLINT_CUR); \
2403 if $$bad; then \
2404 echo "Some files have regressed, please fix"; \
2405 false; \
2406 else \
2407 echo "No pylint regressions"; \
2408 fi
2409
Simon Glassf44a52a2022-02-11 13:23:24 -07002410# Check for errors only
2411pylint_err:
2412 $(Q)pylint -E -j 0 --ignore-imports=yes \
2413 $(shell find tools test -name "*.py")
2414
wdenk7ebf7442002-11-02 23:17:16 +00002415backup:
Masahiro Yamada4379ac62014-03-11 11:05:19 +09002416 F=`basename $(srctree)` ; cd .. ; \
Ilya Yanokd6b93712010-06-21 18:13:21 +04002417 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
wdenk7ebf7442002-11-02 23:17:16 +00002418
Masahiro Yamadaed1ca522014-02-24 11:12:23 +09002419help:
2420 @echo 'Cleaning targets:'
Masahiro Yamada48aa812d2014-10-30 10:58:32 +09002421 @echo ' clean - Remove most generated files but keep the config'
Masahiro Yamadaed1ca522014-02-24 11:12:23 +09002422 @echo ' mrproper - Remove all generated files + config + various backup files'
2423 @echo ' distclean - mrproper + remove editor backup and patch files'
2424 @echo ''
Masahiro Yamada51148792014-07-30 14:08:17 +09002425 @echo 'Configuration targets:'
2426 @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
2427 @echo ''
Simon Glassa3a3f5d2018-10-01 21:12:36 -06002428 @echo 'Test targets:'
2429 @echo ''
2430 @echo ' check - Run all automated tests that use sandbox'
Simon Glassd1962ac2022-08-06 17:51:59 -06002431 @echo ' pcheck - Run quick automated tests in parallel'
Simon Glass499fde52018-11-18 08:14:29 -07002432 @echo ' qcheck - Run quick automated tests that use sandbox'
Simon Glass76160802020-04-17 18:08:59 -06002433 @echo ' tcheck - Run quick automated tests on tools'
Simon Glassfeafc612021-11-21 20:48:40 -07002434 @echo ' pylint - Run pylint on all Python files'
Simon Glassa3a3f5d2018-10-01 21:12:36 -06002435 @echo ''
Masahiro Yamadaed1ca522014-02-24 11:12:23 +09002436 @echo 'Other generic targets:'
2437 @echo ' all - Build all necessary images depending on configuration'
Simon Glass633cc7a2016-07-31 17:35:01 -06002438 @echo ' tests - Build U-Boot for sandbox and run tests'
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +09002439 @echo '* u-boot - Build the bare u-boot'
Masahiro Yamadaed1ca522014-02-24 11:12:23 +09002440 @echo ' dir/ - Build all files in dir and below'
2441 @echo ' dir/file.[oisS] - Build specified target only'
2442 @echo ' dir/file.lst - Build specified mixed source/assembly target only'
2443 @echo ' (requires a recent binutils and recent build (System.map))'
Igor Grinberg5fc2f922014-07-15 15:52:02 +03002444 @echo ' tags/ctags - Generate ctags file for editors'
2445 @echo ' etags - Generate etags file for editors'
Masahiro Yamadaed1ca522014-02-24 11:12:23 +09002446 @echo ' cscope - Generate cscope index'
Masahiro Yamadaffe29eb2014-10-30 11:06:11 +09002447 @echo ' ubootrelease - Output the release version string (use with make -s)'
2448 @echo ' ubootversion - Output the version stored in Makefile (use with make -s)'
Simon Glass1bd87632016-11-13 14:25:50 -07002449 @echo " cfg - Don't build, just create the .cfg files"
Simon Glass84a42062017-09-05 01:53:59 -06002450 @echo " envtools - Build only the target-side environment tools"
Masahiro Yamadaed1ca522014-02-24 11:12:23 +09002451 @echo ''
2452 @echo 'Static analysers'
2453 @echo ' checkstack - Generate a list of stack hogs'
Heinrich Schuchardt8a28caf2017-11-19 14:33:14 +01002454 @echo ' coccicheck - Execute static code analysis with Coccinelle'
Masahiro Yamadaed1ca522014-02-24 11:12:23 +09002455 @echo ''
2456 @echo 'Documentation targets:'
Breno Matheus Lima656d8da2019-06-05 18:18:30 +00002457 @$(MAKE) -f $(srctree)/doc/Makefile dochelp
Masahiro Yamadaed1ca522014-02-24 11:12:23 +09002458 @echo ''
2459 @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
2460 @echo ' make V=2 [targets] 2 => give reason for rebuild of target'
2461 @echo ' make O=dir [targets] Locate all output files in "dir", including .config'
2462 @echo ' make C=1 [targets] Check all c source with $$CHECK (sparse by default)'
2463 @echo ' make C=2 [targets] Force check of all c source with $$CHECK'
2464 @echo ' make RECORDMCOUNT_WARN=1 [targets] Warn about ignored mcount sections'
2465 @echo ' make W=n [targets] Enable extra gcc checks, n=1,2,3 where'
2466 @echo ' 1: warnings which may be relevant and do not occur too often'
2467 @echo ' 2: warnings which occur quite often but may still be relevant'
2468 @echo ' 3: more obscure warnings, can most likely be ignored'
2469 @echo ' Multiple levels can be combined with W=12 or W=123'
2470 @echo ''
2471 @echo 'Execute "make" or "make all" to build all targets marked with [*] '
2472 @echo 'For further info see the ./README file'
2473
Simon Glassa3a3f5d2018-10-01 21:12:36 -06002474tests check:
Simon Glass633cc7a2016-07-31 17:35:01 -06002475 $(srctree)/test/run
Masahiro Yamada8fac9c72014-02-05 10:52:50 +09002476
Simon Glassd1962ac2022-08-06 17:51:59 -06002477pcheck:
2478 $(srctree)/test/run parallel
2479
Simon Glass499fde52018-11-18 08:14:29 -07002480qcheck:
2481 $(srctree)/test/run quick
2482
Simon Glass76160802020-04-17 18:08:59 -06002483tcheck:
2484 $(srctree)/test/run tools
2485
Masahiro Yamada8fac9c72014-02-05 10:52:50 +09002486# Documentation targets
2487# ---------------------------------------------------------------------------
Mario Six78a88f72018-07-10 08:40:17 +02002488DOC_TARGETS := xmldocs latexdocs pdfdocs htmldocs epubdocs cleandocs \
Maxim Cournoyer7fa4c272022-12-18 21:48:08 -05002489 linkcheckdocs dochelp refcheckdocs texinfodocs infodocs
Mario Six78a88f72018-07-10 08:40:17 +02002490PHONY += $(DOC_TARGETS)
2491$(DOC_TARGETS): scripts_basic FORCE
Breno Matheus Lima656d8da2019-06-05 18:18:30 +00002492 $(Q)$(MAKE) $(build)=doc $@
Masahiro Yamada8fac9c72014-02-05 10:52:50 +09002493
Masahiro Yamadaed1ca522014-02-24 11:12:23 +09002494PHONY += checkstack ubootrelease ubootversion
2495
2496checkstack:
2497 $(OBJDUMP) -d u-boot $$(find . -name u-boot-spl) | \
2498 $(PERL) $(src)/scripts/checkstack.pl $(ARCH)
2499
2500ubootrelease:
2501 @echo "$(UBOOTVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))"
2502
2503ubootversion:
2504 @echo $(UBOOTVERSION)
2505
Masahiro Yamada886d86e2014-02-24 11:12:22 +09002506# Single targets
2507# ---------------------------------------------------------------------------
2508# Single targets are compatible with:
2509# - build with mixed source and output
2510# - build with separate output dir 'make O=...'
2511# - external modules
2512#
2513# target-dir => where to store outputfile
2514# build-dir => directory in kernel source tree to use
2515
2516ifeq ($(KBUILD_EXTMOD),)
2517 build-dir = $(patsubst %/,%,$(dir $@))
2518 target-dir = $(dir $@)
2519else
2520 zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@)))
2521 build-dir = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash))
2522 target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@))
2523endif
2524
2525%.s: %.c prepare scripts FORCE
2526 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
2527%.i: %.c prepare scripts FORCE
2528 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
2529%.o: %.c prepare scripts FORCE
2530 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
2531%.lst: %.c prepare scripts FORCE
2532 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
2533%.s: %.S prepare scripts FORCE
2534 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
2535%.o: %.S prepare scripts FORCE
2536 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
2537%.symtypes: %.c prepare scripts FORCE
2538 $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@)
2539
2540# Modules
2541/: prepare scripts FORCE
2542 $(cmd_crmodverdir)
2543 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
2544 $(build)=$(build-dir)
2545%/: prepare scripts FORCE
2546 $(cmd_crmodverdir)
2547 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
2548 $(build)=$(build-dir)
2549%.ko: prepare scripts FORCE
2550 $(cmd_crmodverdir)
2551 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \
2552 $(build)=$(build-dir) $(@:.ko=.o)
2553 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost
2554
Jan Kiszka2600dd82021-06-20 22:29:13 +02002555quiet_cmd_genenv = GENENV $@
Stefano Babicbdaa73a2019-03-13 09:46:45 +01002556cmd_genenv = $(OBJCOPY) --dump-section .rodata.default_environment=$@ env/common.o; \
Christoph Niedermaiercc5a4902022-03-01 09:38:51 +01002557 sed --in-place -e 's/\x00/\x0A/g' $@; sed --in-place -e '/^\s*$$/d' $@; \
2558 sort --field-separator== -k1,1 --stable $@ -o $@
Stefano Babicbdaa73a2019-03-13 09:46:45 +01002559
2560u-boot-initial-env: u-boot.bin
2561 $(call if_changed,genenv)
2562
Heinrich Schuchardt8a28caf2017-11-19 14:33:14 +01002563# Consistency checks
2564# ---------------------------------------------------------------------------
2565
2566PHONY += coccicheck
2567
2568coccicheck:
2569 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/$@
2570
Michal Simek69c0d322014-04-24 15:24:28 +02002571# FIXME Should go into a make.lib or something
Masahiro Yamada886d86e2014-02-24 11:12:22 +09002572# ===========================================================================
2573
Masahiro Yamadaefcf8612014-02-04 17:24:40 +09002574quiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN $(wildcard $(rm-dirs)))
2575 cmd_rmdirs = rm -rf $(rm-dirs)
2576
2577quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files)))
2578 cmd_rmfiles = rm -f $(rm-files)
2579
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09002580# read all saved command lines
2581
Tom Rini473fc272021-06-17 18:07:25 -04002582cmd_files := $(wildcard .*.cmd)
Masahiro Yamadaf9c235f2014-02-24 11:12:14 +09002583
2584ifneq ($(cmd_files),)
2585 $(cmd_files): ; # Do not try to update included dependency files
2586 include $(cmd_files)
2587endif
2588
Tom Rini473fc272021-06-17 18:07:25 -04002589endif #ifeq ($(config-targets),1)
2590endif #ifeq ($(mixed-targets),1)
Masahiro Yamada9e414032014-02-04 17:24:24 +09002591endif # skip-makefile
2592
2593PHONY += FORCE
2594FORCE:
2595
Tom Rini5972ff02020-03-11 18:11:17 -04002596# Declare the contents of the PHONY variable as phony. We keep that
Masahiro Yamada9e414032014-02-04 17:24:24 +09002597# information in a variable so we can use it in if_changed and friends.
2598.PHONY: $(PHONY)