Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Tom Rini | da58dec | 2015-11-10 01:06:16 +0000 | [diff] [blame] | 2 | |
Tom Rini | 81a659e | 2020-10-28 16:30:06 -0400 | [diff] [blame] | 3 | VERSION = 2021 |
Tom Rini | ff8cb34 | 2021-04-26 20:53:51 -0400 | [diff] [blame] | 4 | PATCHLEVEL = 07 |
Wolfgang Denk | 211e475 | 2012-07-10 09:21:12 +0200 | [diff] [blame] | 5 | SUBLEVEL = |
Tom Rini | b107761 | 2021-05-10 17:03:22 -0400 | [diff] [blame] | 6 | EXTRAVERSION = -rc2 |
Masahiro Yamada | 5f30f3b | 2014-02-04 17:24:30 +0900 | [diff] [blame] | 7 | NAME = |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 8 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 9 | # *DOCUMENTATION* |
| 10 | # To see a list of typical targets execute "make help" |
| 11 | # More info can be located in ./README |
| 12 | # Comments in this file are targeted only to the developer, do not |
| 13 | # expect to learn how to build the kernel reading this file. |
| 14 | |
Masahiro Yamada | 4d713be | 2015-07-05 01:56:57 +0900 | [diff] [blame] | 15 | # o Do not use make's built-in rules and variables |
| 16 | # (this increases performance and avoids hard-to-debug behaviour); |
| 17 | # o Look for make include files relative to root of kernel src |
| 18 | MAKEFLAGS += -rR --include-dir=$(CURDIR) |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 19 | |
Heinrich Schuchardt | f7691a6 | 2021-02-10 18:54:25 +0100 | [diff] [blame] | 20 | # Determine target architecture for the sandbox |
Heinrich Schuchardt | 3b4847c | 2019-11-07 08:05:17 +0100 | [diff] [blame] | 21 | include include/host_arch.h |
Heinrich Schuchardt | f7691a6 | 2021-02-10 18:54:25 +0100 | [diff] [blame] | 22 | ifeq ("", "$(CROSS_COMPILE)") |
| 23 | MK_ARCH="${shell uname -m}" |
| 24 | else |
| 25 | MK_ARCH="${shell echo $(CROSS_COMPILE) | sed -n 's/^\s*\([^\/]*\/\)*\([^-]*\)-\S*/\2/p'}" |
| 26 | endif |
Heinrich Schuchardt | 3b4847c | 2019-11-07 08:05:17 +0100 | [diff] [blame] | 27 | unexport HOST_ARCH |
| 28 | ifeq ("x86_64", $(MK_ARCH)) |
| 29 | export HOST_ARCH=$(HOST_ARCH_X86_64) |
| 30 | else ifneq (,$(findstring $(MK_ARCH), "i386" "i486" "i586" "i686")) |
| 31 | export HOST_ARCH=$(HOST_ARCH_X86) |
| 32 | else ifneq (,$(findstring $(MK_ARCH), "aarch64" "armv8l")) |
| 33 | export HOST_ARCH=$(HOST_ARCH_AARCH64) |
Heinrich Schuchardt | f7691a6 | 2021-02-10 18:54:25 +0100 | [diff] [blame] | 34 | else ifneq (,$(findstring $(MK_ARCH), "arm" "armv7" "armv7l")) |
Heinrich Schuchardt | 3b4847c | 2019-11-07 08:05:17 +0100 | [diff] [blame] | 35 | export HOST_ARCH=$(HOST_ARCH_ARM) |
| 36 | else ifeq ("riscv32", $(MK_ARCH)) |
| 37 | export HOST_ARCH=$(HOST_ARCH_RISCV32) |
| 38 | else ifeq ("riscv64", $(MK_ARCH)) |
| 39 | export HOST_ARCH=$(HOST_ARCH_RISCV64) |
| 40 | endif |
| 41 | undefine MK_ARCH |
| 42 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 43 | # Avoid funny character set dependencies |
| 44 | unexport LC_ALL |
| 45 | LC_COLLATE=C |
| 46 | LC_NUMERIC=C |
| 47 | export LC_COLLATE LC_NUMERIC |
| 48 | |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 49 | # Avoid interference with shell env settings |
| 50 | unexport GREP_OPTIONS |
| 51 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 52 | # We are using a recursive build, so we need to do a little thinking |
| 53 | # to get the ordering right. |
| 54 | # |
| 55 | # Most importantly: sub-Makefiles should only ever modify files in |
| 56 | # their own directory. If in some directory we have a dependency on |
| 57 | # a file in another dir (which doesn't happen often, but it's often |
| 58 | # unavoidable when linking the built-in.o targets which finally |
| 59 | # turn into vmlinux), we will call a sub make in that other dir, and |
| 60 | # after that we are sure that everything which is in that other dir |
| 61 | # is now up to date. |
| 62 | # |
| 63 | # The only cases where we need to modify files which have global |
| 64 | # effects are thus separated out and done before the recursive |
| 65 | # descending is started. They are now explicitly listed as the |
| 66 | # prepare rule. |
| 67 | |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 68 | # Beautify output |
| 69 | # --------------------------------------------------------------------------- |
| 70 | # |
| 71 | # Normally, we echo the whole command before executing it. By making |
| 72 | # that echo $($(quiet)$(cmd)), we now have the possibility to set |
| 73 | # $(quiet) to choose other forms of output instead, e.g. |
| 74 | # |
| 75 | # quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@ |
| 76 | # cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< |
| 77 | # |
| 78 | # If $(quiet) is empty, the whole command will be printed. |
| 79 | # If it is set to "quiet_", only the short version will be printed. |
| 80 | # If it is set to "silent_", nothing will be printed at all, since |
| 81 | # the variable $(silent_cmd_cc_o_c) doesn't exist. |
| 82 | # |
| 83 | # A simple variant is to prefix commands with $(Q) - that's useful |
| 84 | # for commands that shall be hidden in non-verbose mode. |
| 85 | # |
| 86 | # $(Q)ln $@ :< |
| 87 | # |
| 88 | # If KBUILD_VERBOSE equals 0 then the above command will be hidden. |
| 89 | # If KBUILD_VERBOSE equals 1 then the above command is displayed. |
| 90 | # |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 91 | # To put more focus on warnings, be less verbose as default |
| 92 | # Use 'make V=1' to see the full commands |
| 93 | |
| 94 | ifeq ("$(origin V)", "command line") |
| 95 | KBUILD_VERBOSE = $(V) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 96 | endif |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 97 | ifndef KBUILD_VERBOSE |
| 98 | KBUILD_VERBOSE = 0 |
| 99 | endif |
| 100 | |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 101 | ifeq ($(KBUILD_VERBOSE),1) |
| 102 | quiet = |
| 103 | Q = |
| 104 | else |
| 105 | quiet=quiet_ |
| 106 | Q = @ |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 107 | endif |
| 108 | |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 109 | # If the user is running make -s (silent mode), suppress echoing of |
| 110 | # commands |
| 111 | |
| 112 | ifneq ($(filter 4.%,$(MAKE_VERSION)),) # make-4 |
| 113 | ifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),) |
| 114 | quiet=silent_ |
| 115 | endif |
| 116 | else # make-3.8x |
| 117 | ifneq ($(filter s% -s%,$(MAKEFLAGS)),) |
| 118 | quiet=silent_ |
| 119 | endif |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 120 | endif |
| 121 | |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 122 | export quiet Q KBUILD_VERBOSE |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 123 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 124 | # kbuild supports saving output files in a separate directory. |
| 125 | # To locate output files in a separate directory two syntaxes are supported. |
| 126 | # In both cases the working directory must be the root of the kernel src. |
| 127 | # 1) O= |
| 128 | # Use "make O=dir/to/store/output/files/" |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 129 | # |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 130 | # 2) Set KBUILD_OUTPUT |
| 131 | # Set the environment variable KBUILD_OUTPUT to point to the directory |
| 132 | # where the output files shall be placed. |
| 133 | # export KBUILD_OUTPUT=dir/to/store/output/files/ |
| 134 | # make |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 135 | # |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 136 | # The O= assignment takes precedence over the KBUILD_OUTPUT environment |
| 137 | # variable. |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 138 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 139 | # KBUILD_SRC is set on invocation of make in OBJ directory |
| 140 | # KBUILD_SRC is not intended to be used by the regular user (for now) |
| 141 | ifeq ($(KBUILD_SRC),) |
| 142 | |
| 143 | # OK, Make called in directory where kernel src resides |
| 144 | # Do we want to locate output files in a separate directory? |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 145 | ifeq ("$(origin O)", "command line") |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 146 | KBUILD_OUTPUT := $(O) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 147 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 148 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 149 | # That's our default target when none is given on the command line |
| 150 | PHONY := _all |
| 151 | _all: |
| 152 | |
| 153 | # Cancel implicit rules on top Makefile |
| 154 | $(CURDIR)/Makefile Makefile: ; |
| 155 | |
| 156 | ifneq ($(KBUILD_OUTPUT),) |
| 157 | # Invoke a second make in the output directory, passing relevant variables |
| 158 | # check that the output directory actually exists |
| 159 | saved-output := $(KBUILD_OUTPUT) |
Masahiro Yamada | 5a449d7 | 2014-03-24 13:55:27 +0900 | [diff] [blame] | 160 | KBUILD_OUTPUT := $(shell mkdir -p $(KBUILD_OUTPUT) && cd $(KBUILD_OUTPUT) \ |
| 161 | && /bin/pwd) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 162 | $(if $(KBUILD_OUTPUT),, \ |
Masahiro Yamada | 598e2d3 | 2014-04-15 13:29:00 +0900 | [diff] [blame] | 163 | $(error failed to create output directory "$(saved-output)")) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 164 | |
| 165 | PHONY += $(MAKECMDGOALS) sub-make |
| 166 | |
| 167 | $(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make |
| 168 | @: |
| 169 | |
| 170 | sub-make: FORCE |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 171 | $(Q)$(MAKE) -C $(KBUILD_OUTPUT) KBUILD_SRC=$(CURDIR) \ |
| 172 | -f $(CURDIR)/Makefile $(filter-out _all sub-make,$(MAKECMDGOALS)) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 173 | |
| 174 | # Leave processing to above invocation of make |
| 175 | skip-makefile := 1 |
| 176 | endif # ifneq ($(KBUILD_OUTPUT),) |
| 177 | endif # ifeq ($(KBUILD_SRC),) |
| 178 | |
| 179 | # We process the rest of the Makefile if this is the final invocation of make |
| 180 | ifeq ($(skip-makefile),) |
| 181 | |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 182 | # Do not print "Entering directory ...", |
| 183 | # but we want to display it when entering to the output directory |
| 184 | # so that IDEs/editors are able to understand relative filenames. |
| 185 | MAKEFLAGS += --no-print-directory |
| 186 | |
| 187 | # Call a source code checker (by default, "sparse") as part of the |
| 188 | # C compilation. |
| 189 | # |
| 190 | # Use 'make C=1' to enable checking of only re-compiled files. |
| 191 | # Use 'make C=2' to enable checking of *all* source files, regardless |
| 192 | # of whether they are re-compiled or not. |
| 193 | # |
Breno Matheus Lima | 656d8da | 2019-06-05 18:18:30 +0000 | [diff] [blame] | 194 | # See the file "doc/sparse.txt" for more details, including |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 195 | # where to get the "sparse" utility. |
| 196 | |
| 197 | ifeq ("$(origin C)", "command line") |
| 198 | KBUILD_CHECKSRC = $(C) |
| 199 | endif |
| 200 | ifndef KBUILD_CHECKSRC |
| 201 | KBUILD_CHECKSRC = 0 |
| 202 | endif |
| 203 | |
| 204 | # Use make M=dir to specify directory of external module to build |
| 205 | # Old syntax make ... SUBDIRS=$PWD is still supported |
| 206 | # Setting the environment variable KBUILD_EXTMOD take precedence |
| 207 | ifdef SUBDIRS |
| 208 | KBUILD_EXTMOD ?= $(SUBDIRS) |
| 209 | endif |
| 210 | |
| 211 | ifeq ("$(origin M)", "command line") |
| 212 | KBUILD_EXTMOD := $(M) |
| 213 | endif |
| 214 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 215 | # If building an external module we do not care about the all: rule |
| 216 | # but instead _all depend on modules |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 217 | PHONY += all |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 218 | ifeq ($(KBUILD_EXTMOD),) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 219 | _all: all |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 220 | else |
| 221 | _all: modules |
| 222 | endif |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 223 | |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 224 | ifeq ($(KBUILD_SRC),) |
| 225 | # building in the source tree |
| 226 | srctree := . |
| 227 | else |
| 228 | ifeq ($(KBUILD_SRC)/,$(dir $(CURDIR))) |
| 229 | # building in a subdirectory of the source tree |
| 230 | srctree := .. |
| 231 | else |
| 232 | srctree := $(KBUILD_SRC) |
| 233 | endif |
| 234 | endif |
| 235 | objtree := . |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 236 | src := $(srctree) |
| 237 | obj := $(objtree) |
| 238 | |
| 239 | VPATH := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD)) |
| 240 | |
| 241 | export srctree objtree VPATH |
| 242 | |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 243 | # Make sure CDPATH settings don't interfere |
| 244 | unexport CDPATH |
| 245 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 246 | ######################################################################### |
| 247 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 248 | HOSTARCH := $(shell uname -m | \ |
| 249 | sed -e s/i.86/x86/ \ |
| 250 | -e s/sun4u/sparc64/ \ |
| 251 | -e s/arm.*/arm/ \ |
| 252 | -e s/sa110/arm/ \ |
| 253 | -e s/ppc64/powerpc/ \ |
| 254 | -e s/ppc/powerpc/ \ |
| 255 | -e s/macppc/powerpc/\ |
| 256 | -e s/sh.*/sh/) |
| 257 | |
| 258 | HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ |
| 259 | sed -e 's/\(cygwin\).*/cygwin/') |
| 260 | |
| 261 | export HOSTARCH HOSTOS |
| 262 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 263 | ######################################################################### |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 264 | |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 265 | # set default to nothing for native builds |
Wolfgang Denk | a5284ef | 2007-03-06 18:01:47 +0100 | [diff] [blame] | 266 | ifeq ($(HOSTARCH),$(ARCH)) |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 267 | CROSS_COMPILE ?= |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 268 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 269 | |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 270 | KCONFIG_CONFIG ?= .config |
| 271 | export KCONFIG_CONFIG |
| 272 | |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 273 | # SHELL used by kbuild |
| 274 | CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ |
| 275 | else if [ -x /bin/bash ]; then echo /bin/bash; \ |
| 276 | else echo sh; fi ; fi) |
| 277 | |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 278 | HOST_LFS_CFLAGS := $(shell getconf LFS_CFLAGS 2>/dev/null) |
| 279 | HOST_LFS_LDFLAGS := $(shell getconf LFS_LDFLAGS 2>/dev/null) |
| 280 | HOST_LFS_LIBS := $(shell getconf LFS_LIBS 2>/dev/null) |
| 281 | |
Jeroen Hofstee | b477fe4 | 2014-09-10 20:08:51 +0200 | [diff] [blame] | 282 | HOSTCC = cc |
| 283 | HOSTCXX = c++ |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 284 | KBUILD_HOSTCFLAGS := -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \ |
Simon Glass | b47ef6b | 2020-07-19 13:56:08 -0600 | [diff] [blame] | 285 | $(HOST_LFS_CFLAGS) $(HOSTCFLAGS) |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 286 | KBUILD_HOSTCXXFLAGS := -O2 $(HOST_LFS_CFLAGS) $(HOSTCXXFLAGS) |
| 287 | KBUILD_HOSTLDFLAGS := $(HOST_LFS_LDFLAGS) $(HOSTLDFLAGS) |
| 288 | KBUILD_HOSTLDLIBS := $(HOST_LFS_LIBS) $(HOSTLDLIBS) |
Masahiro Yamada | 598e2d3 | 2014-04-15 13:29:00 +0900 | [diff] [blame] | 289 | |
Philipp Tomsich | 9de4f95 | 2018-05-14 15:22:06 +0200 | [diff] [blame] | 290 | # With the move to GCC 6, we have implicitly upgraded our language |
| 291 | # standard to GNU11 (see https://gcc.gnu.org/gcc-5/porting_to.html). |
| 292 | # Some Linux distributions (including RHEL7, SLES13, Debian 8) still |
| 293 | # have older compilers as their default, so we make it explicit for |
| 294 | # these that our host tools are GNU11 (i.e. C11 w/ GNU extensions). |
Tom Rini | fa89399 | 2018-06-19 23:53:54 -0400 | [diff] [blame] | 295 | CSTD_FLAG := -std=gnu11 |
Philipp Tomsich | 9de4f95 | 2018-05-14 15:22:06 +0200 | [diff] [blame] | 296 | ifeq ($(HOSTOS),linux) |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 297 | KBUILD_HOSTCFLAGS += $(CSTD_FLAG) |
Philipp Tomsich | 9de4f95 | 2018-05-14 15:22:06 +0200 | [diff] [blame] | 298 | endif |
| 299 | |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 300 | ifeq ($(HOSTOS),cygwin) |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 301 | KBUILD_HOSTCFLAGS += -ansi |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 302 | endif |
| 303 | |
| 304 | # Mac OS X / Darwin's C preprocessor is Apple specific. It |
| 305 | # generates numerous errors and warnings. We want to bypass it |
| 306 | # and use GNU C's cpp. To do this we pass the -traditional-cpp |
| 307 | # option to the compiler. Note that the -traditional-cpp flag |
| 308 | # DOES NOT have the same semantics as GNU C's flag, all it does |
| 309 | # is invoke the GNU preprocessor in stock ANSI/ISO C fashion. |
| 310 | # |
| 311 | # Apple's linker is similar, thanks to the new 2 stage linking |
| 312 | # multiple symbol definitions are treated as errors, hence the |
| 313 | # -multiply_defined suppress option to turn off this error. |
| 314 | # |
| 315 | ifeq ($(HOSTOS),darwin) |
| 316 | # get major and minor product version (e.g. '10' and '6' for Snow Leopard) |
| 317 | DARWIN_MAJOR_VERSION = $(shell sw_vers -productVersion | cut -f 1 -d '.') |
| 318 | DARWIN_MINOR_VERSION = $(shell sw_vers -productVersion | cut -f 2 -d '.') |
| 319 | |
| 320 | os_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \ |
| 321 | $(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;) |
| 322 | |
默默 | ab8fc41 | 2019-03-31 16:07:03 +0800 | [diff] [blame] | 323 | os_x_after = $(shell if [ $(DARWIN_MAJOR_VERSION) -ge $(1) -a \ |
| 324 | $(DARWIN_MINOR_VERSION) -ge $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;) |
| 325 | |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 326 | # Snow Leopards build environment has no longer restrictions as described above |
| 327 | HOSTCC = $(call os_x_before, 10, 5, "cc", "gcc") |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 328 | KBUILD_HOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp") |
| 329 | KBUILD_HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress") |
Andreas Bießmann | 1fddd7b | 2015-02-09 00:06:10 +0100 | [diff] [blame] | 330 | |
默默 | ab8fc41 | 2019-03-31 16:07:03 +0800 | [diff] [blame] | 331 | # macOS Mojave (10.14.X) |
| 332 | # Undefined symbols for architecture x86_64: "_PyArg_ParseTuple" |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 333 | KBUILD_HOSTLDFLAGS += $(call os_x_after, 10, 14, "-lpython -dynamclib", "") |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 334 | endif |
| 335 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 336 | # Decide whether to build built-in, modular, or both. |
| 337 | # Normally, just do built-in. |
| 338 | |
| 339 | KBUILD_MODULES := |
| 340 | KBUILD_BUILTIN := 1 |
| 341 | |
Masahiro Yamada | 45f0ad9 | 2014-06-16 18:56:38 +0900 | [diff] [blame] | 342 | # If we have only "make modules", don't compile built-in objects. |
| 343 | # When we're building modules with modversions, we need to consider |
| 344 | # the built-in objects during the descend as well, in order to |
| 345 | # make sure the checksums are up to date before we record them. |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 346 | |
| 347 | ifeq ($(MAKECMDGOALS),modules) |
| 348 | KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1) |
| 349 | endif |
| 350 | |
Masahiro Yamada | 45f0ad9 | 2014-06-16 18:56:38 +0900 | [diff] [blame] | 351 | # If we have "make <whatever> modules", compile modules |
| 352 | # in addition to whatever we do anyway. |
| 353 | # Just "make" or "make all" shall build modules as well |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 354 | |
| 355 | # U-Boot does not need modules |
| 356 | #ifneq ($(filter all _all modules,$(MAKECMDGOALS)),) |
| 357 | # KBUILD_MODULES := 1 |
| 358 | #endif |
| 359 | |
| 360 | #ifeq ($(MAKECMDGOALS),) |
| 361 | # KBUILD_MODULES := 1 |
| 362 | #endif |
| 363 | |
Simon Glass | b51882d | 2019-09-25 08:56:28 -0600 | [diff] [blame] | 364 | # Check ths size of a binary: |
| 365 | # Args: |
| 366 | # $1: File to check |
| 367 | # #2: Size limit in bytes (decimal or 0xhex) |
Heinrich Schuchardt | b275030 | 2019-04-02 19:19:04 +0200 | [diff] [blame] | 368 | define size_check |
| 369 | actual=$$( wc -c $1 | awk '{print $$1}'); \ |
| 370 | limit=$$( printf "%d" $2 ); \ |
| 371 | if test $$actual -gt $$limit; then \ |
| 372 | echo "$1 exceeds file size limit:" >&2; \ |
Tom Rini | 90037eb | 2019-10-23 15:39:41 -0400 | [diff] [blame] | 373 | echo " limit: $$(printf %#x $$limit) bytes" >&2; \ |
Simon Glass | b51882d | 2019-09-25 08:56:28 -0600 | [diff] [blame] | 374 | echo " actual: $$(printf %#x $$actual) bytes" >&2; \ |
| 375 | echo " excess: $$(printf %#x $$((actual - limit))) bytes" >&2;\ |
Heinrich Schuchardt | b275030 | 2019-04-02 19:19:04 +0200 | [diff] [blame] | 376 | exit 1; \ |
| 377 | fi |
| 378 | endef |
| 379 | export size_check |
| 380 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 381 | export KBUILD_MODULES KBUILD_BUILTIN |
| 382 | export KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD |
| 383 | |
Masahiro Yamada | bf4b3de | 2014-02-04 17:24:18 +0900 | [diff] [blame] | 384 | # We need some generic definitions (do not try to remake the file). |
Masahiro Yamada | 4d713be | 2015-07-05 01:56:57 +0900 | [diff] [blame] | 385 | scripts/Kbuild.include: ; |
| 386 | include scripts/Kbuild.include |
Masahiro Yamada | bf4b3de | 2014-02-04 17:24:18 +0900 | [diff] [blame] | 387 | |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 388 | # Make variables (CC, etc...) |
| 389 | |
| 390 | AS = $(CROSS_COMPILE)as |
| 391 | # Always use GNU ld |
| 392 | ifneq ($(shell $(CROSS_COMPILE)ld.bfd -v 2> /dev/null),) |
| 393 | LD = $(CROSS_COMPILE)ld.bfd |
| 394 | else |
| 395 | LD = $(CROSS_COMPILE)ld |
| 396 | endif |
| 397 | CC = $(CROSS_COMPILE)gcc |
| 398 | CPP = $(CC) -E |
| 399 | AR = $(CROSS_COMPILE)ar |
| 400 | NM = $(CROSS_COMPILE)nm |
| 401 | LDR = $(CROSS_COMPILE)ldr |
| 402 | STRIP = $(CROSS_COMPILE)strip |
| 403 | OBJCOPY = $(CROSS_COMPILE)objcopy |
| 404 | OBJDUMP = $(CROSS_COMPILE)objdump |
Eugeniu Rosca | e91610d | 2018-05-19 14:13:50 +0200 | [diff] [blame] | 405 | LEX = flex |
| 406 | YACC = bison |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 407 | AWK = awk |
Masahiro Yamada | f77d709 | 2014-05-12 11:45:55 +0900 | [diff] [blame] | 408 | PERL = perl |
Stefano Babic | b48bfc7 | 2017-04-05 17:46:41 +0200 | [diff] [blame] | 409 | PYTHON ?= python |
Eugeniu Rosca | e91610d | 2018-05-19 14:13:50 +0200 | [diff] [blame] | 410 | PYTHON2 = python2 |
Andrey Zhizhikin | f68ed0b | 2021-05-01 22:12:21 +0200 | [diff] [blame] | 411 | PYTHON3 ?= python3 |
Tom Rini | 36dd5f1 | 2017-09-23 13:00:57 -0400 | [diff] [blame] | 412 | DTC ?= $(objtree)/scripts/dtc/dtc |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 413 | CHECK = sparse |
| 414 | |
| 415 | CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \ |
| 416 | -Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF) |
| 417 | |
Masahiro Yamada | 3b61297 | 2014-08-31 15:16:53 +0900 | [diff] [blame] | 418 | KBUILD_CPPFLAGS := -D__KERNEL__ -D__UBOOT__ |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 419 | |
| 420 | KBUILD_CFLAGS := -Wall -Wstrict-prototypes \ |
| 421 | -Wno-format-security \ |
Tom Rini | fa89399 | 2018-06-19 23:53:54 -0400 | [diff] [blame] | 422 | -fno-builtin -ffreestanding $(CSTD_FLAG) |
Bin Meng | 5bc1192 | 2018-09-16 22:35:28 -0700 | [diff] [blame] | 423 | KBUILD_CFLAGS += -fshort-wchar -fno-strict-aliasing |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 424 | KBUILD_AFLAGS := -D__ASSEMBLY__ |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 425 | KBUILD_LDFLAGS := |
| 426 | |
| 427 | ifeq ($(cc-name),clang) |
| 428 | ifneq ($(CROSS_COMPILE),) |
| 429 | CLANG_TARGET := --target=$(notdir $(CROSS_COMPILE:%-=%)) |
| 430 | GCC_TOOLCHAIN_DIR := $(dir $(shell which $(LD))) |
| 431 | CLANG_PREFIX := --prefix=$(GCC_TOOLCHAIN_DIR) |
| 432 | GCC_TOOLCHAIN := $(realpath $(GCC_TOOLCHAIN_DIR)/..) |
| 433 | endif |
| 434 | ifneq ($(GCC_TOOLCHAIN),) |
| 435 | CLANG_GCC_TC := --gcc-toolchain=$(GCC_TOOLCHAIN) |
| 436 | endif |
| 437 | KBUILD_CFLAGS += $(CLANG_TARGET) $(CLANG_GCC_TC) $(CLANG_PREFIX) |
| 438 | KBUILD_AFLAGS += $(CLANG_TARGET) $(CLANG_GCC_TC) $(CLANG_PREFIX) |
| 439 | KBUILD_CFLAGS += $(call cc-option, -no-integrated-as) |
| 440 | KBUILD_AFLAGS += $(call cc-option, -no-integrated-as) |
| 441 | endif |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 442 | |
Andy Shevchenko | 6ace36e | 2018-08-06 19:00:22 +0300 | [diff] [blame] | 443 | # Don't generate position independent code |
| 444 | KBUILD_CFLAGS += $(call cc-option,-fno-PIE) |
| 445 | KBUILD_AFLAGS += $(call cc-option,-fno-PIE) |
| 446 | |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 447 | # Read UBOOTRELEASE from include/config/uboot.release (if it exists) |
| 448 | UBOOTRELEASE = $(shell cat include/config/uboot.release 2> /dev/null) |
| 449 | UBOOTVERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION) |
Masahiro Yamada | 5f30f3b | 2014-02-04 17:24:30 +0900 | [diff] [blame] | 450 | |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 451 | export VERSION PATCHLEVEL SUBLEVEL UBOOTRELEASE UBOOTVERSION |
Masahiro Yamada | 026f9cf | 2014-03-05 16:59:40 +0900 | [diff] [blame] | 452 | export ARCH CPU BOARD VENDOR SOC CPUDIR BOARDDIR |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 453 | export CONFIG_SHELL HOSTCC KBUILD_HOSTCFLAGS CROSS_COMPILE AS LD CC |
| 454 | export CPP AR NM LDR STRIP OBJCOPY OBJDUMP KBUILD_HOSTLDFLAGS KBUILD_HOSTLDLIBS |
Eugeniu Rosca | e91610d | 2018-05-19 14:13:50 +0200 | [diff] [blame] | 455 | export MAKE LEX YACC AWK PERL PYTHON PYTHON2 PYTHON3 |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 456 | export HOSTCXX KBUILD_HOSTCXXFLAGS CHECK CHECKFLAGS DTC DTC_FLAGS |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 457 | |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 458 | export KBUILD_CPPFLAGS NOSTDINC_FLAGS UBOOTINCLUDE OBJCOPYFLAGS KBUILD_LDFLAGS |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 459 | export KBUILD_CFLAGS KBUILD_AFLAGS |
| 460 | |
Tom Rini | 5972ff0 | 2020-03-11 18:11:17 -0400 | [diff] [blame] | 461 | export CC_VERSION_TEXT := $(shell $(CC) --version | head -n 1) |
| 462 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 463 | # When compiling out-of-tree modules, put MODVERDIR in the module |
| 464 | # tree rather than in the kernel tree. The kernel tree might |
| 465 | # even be read-only. |
| 466 | export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions |
| 467 | |
| 468 | # Files to ignore in find ... statements |
| 469 | |
Masahiro Yamada | 598e2d3 | 2014-04-15 13:29:00 +0900 | [diff] [blame] | 470 | export RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \ |
| 471 | -name CVS -o -name .pc -o -name .hg -o -name .git \) \ |
| 472 | -prune -o |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 473 | export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \ |
| 474 | --exclude CVS --exclude .pc --exclude .hg --exclude .git |
| 475 | |
| 476 | # =========================================================================== |
| 477 | # Rules shared between *config targets and build targets |
| 478 | |
| 479 | # Basic helpers built in scripts/ |
| 480 | PHONY += scripts_basic |
| 481 | scripts_basic: |
| 482 | $(Q)$(MAKE) $(build)=scripts/basic |
| 483 | $(Q)rm -f .tmp_quiet_recordmcount |
| 484 | |
| 485 | # To avoid any implicit rule to kick in, define an empty command. |
| 486 | scripts/basic/%: scripts_basic ; |
| 487 | |
Masahiro Yamada | 3341bfe | 2014-02-04 17:24:42 +0900 | [diff] [blame] | 488 | PHONY += outputmakefile |
| 489 | # outputmakefile generates a Makefile in the output directory, if using a |
| 490 | # separate output directory. This allows convenient use of make in the |
| 491 | # output directory. |
| 492 | outputmakefile: |
| 493 | ifneq ($(KBUILD_SRC),) |
| 494 | $(Q)ln -fsn $(srctree) source |
| 495 | $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \ |
| 496 | $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL) |
| 497 | endif |
| 498 | |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 499 | # To make sure we do not include .config for any of the *config targets |
| 500 | # catch them early, and hand them over to scripts/kconfig/Makefile |
| 501 | # It is allowed to specify more targets when calling make, including |
| 502 | # mixing *config targets and build targets. |
| 503 | # For example 'make oldconfig all'. |
| 504 | # Detect when mixed targets is specified, and make a second invocation |
| 505 | # of make so .config is not included in this case either (for *config). |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 506 | |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 507 | version_h := include/generated/version_autogenerated.h |
| 508 | timestamp_h := include/generated/timestamp_autogenerated.h |
Rasmus Villemoes | f3d8f7d | 2018-03-20 11:38:45 +0100 | [diff] [blame] | 509 | defaultenv_h := include/generated/defaultenv_autogenerated.h |
Michal Simek | dacec83 | 2020-02-18 15:03:13 +0100 | [diff] [blame] | 510 | dt_h := include/generated/dt.h |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 511 | |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 512 | no-dot-config-targets := clean clobber mrproper distclean \ |
Masahiro Yamada | 2765118 | 2014-02-21 15:45:11 +0900 | [diff] [blame] | 513 | help %docs check% coccicheck \ |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 514 | ubootversion backup tests check qcheck tcheck |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 515 | |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 516 | config-targets := 0 |
| 517 | mixed-targets := 0 |
| 518 | dot-config := 1 |
| 519 | |
| 520 | ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),) |
| 521 | ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),) |
| 522 | dot-config := 0 |
| 523 | endif |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 524 | endif |
| 525 | |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 526 | ifeq ($(KBUILD_EXTMOD),) |
| 527 | ifneq ($(filter config %config,$(MAKECMDGOALS)),) |
| 528 | config-targets := 1 |
Masahiro Yamada | 98bd0e0 | 2015-07-05 01:56:55 +0900 | [diff] [blame] | 529 | ifneq ($(words $(MAKECMDGOALS)),1) |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 530 | mixed-targets := 1 |
| 531 | endif |
| 532 | endif |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 533 | endif |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 534 | |
| 535 | ifeq ($(mixed-targets),1) |
| 536 | # =========================================================================== |
| 537 | # We're called with mixed targets (*config and build targets). |
| 538 | # Handle them one by one. |
| 539 | |
Masahiro Yamada | e773440 | 2014-08-05 15:56:44 +0900 | [diff] [blame] | 540 | PHONY += $(MAKECMDGOALS) __build_one_by_one |
Masahiro Yamada | 53bca5a | 2014-02-04 17:24:41 +0900 | [diff] [blame] | 541 | |
Masahiro Yamada | e773440 | 2014-08-05 15:56:44 +0900 | [diff] [blame] | 542 | $(filter-out __build_one_by_one, $(MAKECMDGOALS)): __build_one_by_one |
Masahiro Yamada | 53bca5a | 2014-02-04 17:24:41 +0900 | [diff] [blame] | 543 | @: |
| 544 | |
Masahiro Yamada | e773440 | 2014-08-05 15:56:44 +0900 | [diff] [blame] | 545 | __build_one_by_one: |
Masahiro Yamada | 53bca5a | 2014-02-04 17:24:41 +0900 | [diff] [blame] | 546 | $(Q)set -e; \ |
| 547 | for i in $(MAKECMDGOALS); do \ |
| 548 | $(MAKE) -f $(srctree)/Makefile $$i; \ |
| 549 | done |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 550 | |
| 551 | else |
| 552 | ifeq ($(config-targets),1) |
| 553 | # =========================================================================== |
| 554 | # *config targets only - make sure prerequisites are updated, and descend |
| 555 | # in scripts/kconfig to make the *config target |
| 556 | |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 557 | KBUILD_DEFCONFIG := sandbox_defconfig |
| 558 | export KBUILD_DEFCONFIG KBUILD_KCONFIG |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 559 | |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 560 | config: scripts_basic outputmakefile FORCE |
Masahiro Yamada | 5f9eb22 | 2015-03-13 18:08:55 +0900 | [diff] [blame] | 561 | $(Q)$(MAKE) $(build)=scripts/kconfig $@ |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 562 | |
| 563 | %config: scripts_basic outputmakefile FORCE |
Masahiro Yamada | 5f9eb22 | 2015-03-13 18:08:55 +0900 | [diff] [blame] | 564 | $(Q)$(MAKE) $(build)=scripts/kconfig $@ |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 565 | |
| 566 | else |
| 567 | # =========================================================================== |
| 568 | # Build targets only - this includes vmlinux, arch specific targets, clean |
| 569 | # targets and others. In general all targets except *config targets. |
| 570 | |
Masahiro Yamada | 61304db | 2017-01-30 11:12:07 +0900 | [diff] [blame] | 571 | # Additional helpers built in scripts/ |
| 572 | # Carefully list dependencies so we do not try to build scripts twice |
| 573 | # in parallel |
| 574 | PHONY += scripts |
| 575 | scripts: scripts_basic include/config/auto.conf |
| 576 | $(Q)$(MAKE) $(build)=$(@) |
| 577 | |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 578 | ifeq ($(dot-config),1) |
| 579 | # Read in config |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 580 | -include include/config/auto.conf |
| 581 | |
| 582 | # Read in dependencies to all Kconfig* files, make sure to run |
| 583 | # oldconfig if changes are detected. |
| 584 | -include include/config/auto.conf.cmd |
| 585 | |
| 586 | # To avoid any implicit rule to kick in, define an empty command |
| 587 | $(KCONFIG_CONFIG) include/config/auto.conf.cmd: ; |
| 588 | |
| 589 | # If .config is newer than include/config/auto.conf, someone tinkered |
| 590 | # with it and forgot to run make oldconfig. |
| 591 | # if auto.conf.cmd is missing then we are probably in a cleaned tree so |
| 592 | # we execute the config step to be sure to catch updated Kconfig files |
| 593 | include/config/%.conf: $(KCONFIG_CONFIG) include/config/auto.conf.cmd |
Eugeniu Rosca | e91610d | 2018-05-19 14:13:50 +0200 | [diff] [blame] | 594 | $(Q)$(MAKE) -f $(srctree)/Makefile syncconfig |
Masahiro Yamada | 5f9eb22 | 2015-03-13 18:08:55 +0900 | [diff] [blame] | 595 | @# If the following part fails, include/config/auto.conf should be |
| 596 | @# deleted so "make silentoldconfig" will be re-run on the next build. |
| 597 | $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.autoconf || \ |
| 598 | { rm -f include/config/auto.conf; false; } |
| 599 | @# include/config.h has been updated after "make silentoldconfig". |
| 600 | @# We need to touch include/config/auto.conf so it gets newer |
| 601 | @# than include/config.h. |
| 602 | @# Otherwise, 'make silentoldconfig' would be invoked twice. |
| 603 | $(Q)touch include/config/auto.conf |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 604 | |
Masahiro Yamada | 0b588de | 2019-01-10 23:11:39 +0900 | [diff] [blame] | 605 | u-boot.cfg spl/u-boot.cfg tpl/u-boot.cfg: |
Philipp Tomsich | 0d982c5 | 2017-07-05 17:30:40 +0200 | [diff] [blame] | 606 | $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.autoconf $(@) |
| 607 | |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 608 | -include include/autoconf.mk |
| 609 | -include include/autoconf.mk.dep |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 610 | |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 611 | # We want to include arch/$(ARCH)/config.mk only when include/config/auto.conf |
| 612 | # is up-to-date. When we switch to a different board configuration, old CONFIG |
| 613 | # macros are still remaining in include/config/auto.conf. Without the following |
| 614 | # gimmick, wrong config.mk would be included leading nasty warnings/errors. |
Masahiro Yamada | cffcd28 | 2015-04-03 12:30:25 +0900 | [diff] [blame] | 615 | ifneq ($(wildcard $(KCONFIG_CONFIG)),) |
| 616 | ifneq ($(wildcard include/config/auto.conf),) |
| 617 | autoconf_is_old := $(shell find . -path ./$(KCONFIG_CONFIG) -newer \ |
| 618 | include/config/auto.conf) |
| 619 | ifeq ($(autoconf_is_old),) |
Masahiro Yamada | 4d713be | 2015-07-05 01:56:57 +0900 | [diff] [blame] | 620 | include config.mk |
| 621 | include arch/$(ARCH)/Makefile |
Masahiro Yamada | ced0715 | 2014-02-04 17:24:21 +0900 | [diff] [blame] | 622 | endif |
Masahiro Yamada | cffcd28 | 2015-04-03 12:30:25 +0900 | [diff] [blame] | 623 | endif |
| 624 | endif |
Simon Glass | fada9e2 | 2013-04-20 08:42:36 +0000 | [diff] [blame] | 625 | |
Simon Glass | bb1ae55 | 2016-11-07 08:47:07 -0700 | [diff] [blame] | 626 | # These are set by the arch-specific config.mk. Make sure they are exported |
| 627 | # so they can be used when building an EFI application. |
| 628 | export EFI_LDS # Filename of EFI link script in arch/$(ARCH)/lib |
| 629 | export EFI_CRT0 # Filename of EFI CRT0 in arch/$(ARCH)/lib |
| 630 | export EFI_RELOC # Filename of EFU relocation code in arch/$(ARCH)/lib |
| 631 | export CFLAGS_EFI # Compiler flags to add when building EFI app |
| 632 | export CFLAGS_NON_EFI # Compiler flags to remove when building EFI app |
| 633 | export EFI_TARGET # binutils target if EFI is natively supported |
| 634 | |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 635 | # If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use |
| 636 | # that (or fail if absent). Otherwise, search for a linker script in a |
| 637 | # standard location. |
| 638 | |
| 639 | ifndef LDSCRIPT |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 640 | #LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot.lds.debug |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 641 | ifdef CONFIG_SYS_LDSCRIPT |
| 642 | # need to strip off double quotes |
Masahiro Yamada | 4a37755 | 2014-02-25 19:26:48 +0900 | [diff] [blame] | 643 | LDSCRIPT := $(srctree)/$(CONFIG_SYS_LDSCRIPT:"%"=%) |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 644 | endif |
| 645 | endif |
| 646 | |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 647 | # If there is no specified link script, we look in a number of places for it |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 648 | ifndef LDSCRIPT |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 649 | ifeq ($(wildcard $(LDSCRIPT)),) |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 650 | LDSCRIPT := $(srctree)/board/$(BOARDDIR)/u-boot.lds |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 651 | endif |
| 652 | ifeq ($(wildcard $(LDSCRIPT)),) |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 653 | LDSCRIPT := $(srctree)/$(CPUDIR)/u-boot.lds |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 654 | endif |
| 655 | ifeq ($(wildcard $(LDSCRIPT)),) |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 656 | LDSCRIPT := $(srctree)/arch/$(ARCH)/cpu/u-boot.lds |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 657 | endif |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 658 | endif |
| 659 | |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 660 | else |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 661 | # Dummy target needed, because used as prerequisite |
| 662 | include/config/auto.conf: ; |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 663 | endif # $(dot-config) |
| 664 | |
Chris Zankel | de5e5ce | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 665 | # |
| 666 | # Xtensa linker script cannot be preprocessed with -ansi because of |
| 667 | # preprocessor operations on strings that don't make C identifiers. |
| 668 | # |
| 669 | ifeq ($(CONFIG_XTENSA),) |
| 670 | LDPPFLAGS += -ansi |
| 671 | endif |
| 672 | |
Masahiro Yamada | 4a8ed8e | 2014-08-22 19:42:29 +0900 | [diff] [blame] | 673 | ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE |
| 674 | KBUILD_CFLAGS += -Os |
| 675 | else |
| 676 | KBUILD_CFLAGS += -O2 |
| 677 | endif |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 678 | |
Joel Peshkin | 4e9bce1 | 2021-04-11 11:21:58 +0200 | [diff] [blame] | 679 | ifeq ($(CONFIG_STACKPROTECTOR),y) |
| 680 | KBUILD_CFLAGS += $(call cc-option,-fstack-protector-strong) |
| 681 | CFLAGS_EFI += $(call cc-option,-fno-stack-protector) |
| 682 | else |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 683 | KBUILD_CFLAGS += $(call cc-option,-fno-stack-protector) |
Joel Peshkin | 4e9bce1 | 2021-04-11 11:21:58 +0200 | [diff] [blame] | 684 | endif |
Prabhakar Kushwaha | 687a751 | 2015-07-02 12:00:17 +0530 | [diff] [blame] | 685 | KBUILD_CFLAGS += $(call cc-option,-fno-delete-null-pointer-checks) |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 686 | |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 687 | # disable stringop warnings in gcc 8+ |
| 688 | KBUILD_CFLAGS += $(call cc-disable-warning, stringop-truncation) |
| 689 | |
Tom Rini | 443f223 | 2020-05-14 08:30:02 -0400 | [diff] [blame] | 690 | # Enabled with W=2, disabled by default as noisy |
| 691 | KBUILD_CFLAGS += $(call cc-disable-warning, maybe-uninitialized) |
| 692 | |
Masahiro Yamada | 1eb2e71 | 2018-04-16 13:18:31 +0900 | [diff] [blame] | 693 | # change __FILE__ to the relative path from the srctree |
| 694 | KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=) |
| 695 | |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 696 | KBUILD_CFLAGS += -g |
| 697 | # $(KBUILD_AFLAGS) sets -g, which causes gcc to pass a suitable -g<format> |
| 698 | # option to the assembler. |
| 699 | KBUILD_AFLAGS += -g |
| 700 | |
| 701 | # Report stack usage if supported |
Alexey Brodkin | 948071b | 2018-04-02 12:18:02 +0300 | [diff] [blame] | 702 | # ARC tools based on GCC 7.1 has an issue with stack usage |
| 703 | # with naked functions, see commit message for more details |
| 704 | ifndef CONFIG_ARC |
Masahiro Yamada | 5b1f1f4 | 2013-12-11 20:11:34 +0900 | [diff] [blame] | 705 | ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-stack-usage.sh $(CC)),y) |
| 706 | KBUILD_CFLAGS += -fstack-usage |
| 707 | endif |
Alexey Brodkin | 948071b | 2018-04-02 12:18:02 +0300 | [diff] [blame] | 708 | endif |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 709 | |
| 710 | KBUILD_CFLAGS += $(call cc-option,-Wno-format-nonliteral) |
Andy Shevchenko | 53dc8ae | 2019-11-29 19:47:59 +0200 | [diff] [blame] | 711 | KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member) |
| 712 | |
Tom Rini | 4760fe2 | 2018-04-22 10:20:50 -0400 | [diff] [blame] | 713 | ifeq ($(cc-name),clang) |
| 714 | KBUILD_CPPFLAGS += $(call cc-option,-Qunused-arguments,) |
| 715 | KBUILD_CFLAGS += $(call cc-disable-warning, format-invalid-specifier) |
| 716 | KBUILD_CFLAGS += $(call cc-disable-warning, gnu) |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 717 | KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member) |
| 718 | # Quiet clang warning: comparison of unsigned expression < 0 is always false |
| 719 | KBUILD_CFLAGS += $(call cc-disable-warning, tautological-compare) |
| 720 | # CLANG uses a _MergedGlobals as optimization, but this breaks modpost, as the |
| 721 | # source of a reference will be _MergedGlobals and not on of the whitelisted names. |
| 722 | # See modpost pattern 2 |
| 723 | KBUILD_CFLAGS += $(call cc-option, -mno-global-merge,) |
Tom Rini | 4760fe2 | 2018-04-22 10:20:50 -0400 | [diff] [blame] | 724 | KBUILD_CFLAGS += $(call cc-option, -fcatch-undefined-behavior) |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 725 | else |
| 726 | |
| 727 | # These warnings generated too much noise in a regular build. |
| 728 | # Use make W=1 to enable them (see scripts/Makefile.extrawarn) |
| 729 | KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable) |
Tom Rini | 4760fe2 | 2018-04-22 10:20:50 -0400 | [diff] [blame] | 730 | endif |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 731 | |
Masahiro Yamada | 65bb6d8 | 2014-04-18 19:09:51 +0900 | [diff] [blame] | 732 | # Prohibit date/time macros, which would make the build non-deterministic |
| 733 | KBUILD_CFLAGS += $(call cc-option,-Werror=date-time) |
| 734 | |
Masahiro Yamada | 4d713be | 2015-07-05 01:56:57 +0900 | [diff] [blame] | 735 | include scripts/Makefile.extrawarn |
Masahiro Yamada | 6419e14 | 2014-08-05 15:56:43 +0900 | [diff] [blame] | 736 | |
Masahiro Yamada | 0e6256d | 2014-04-15 14:47:40 +0900 | [diff] [blame] | 737 | # Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments |
| 738 | KBUILD_CPPFLAGS += $(KCPPFLAGS) |
| 739 | KBUILD_AFLAGS += $(KAFLAGS) |
| 740 | KBUILD_CFLAGS += $(KCFLAGS) |
| 741 | |
Simon Glass | b47ef6b | 2020-07-19 13:56:08 -0600 | [diff] [blame] | 742 | KBUILD_HOSTCFLAGS += $(if $(CONFIG_TOOLS_DEBUG),-g) |
| 743 | |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 744 | # Use UBOOTINCLUDE when you must reference the include/ directory. |
| 745 | # Needed to be compatible with the O= option |
Masahiro Yamada | f5c66bd | 2014-03-11 11:05:18 +0900 | [diff] [blame] | 746 | UBOOTINCLUDE := \ |
Heinrich Schuchardt | 0053d26 | 2020-04-10 11:10:32 +0200 | [diff] [blame] | 747 | -Iinclude \ |
| 748 | $(if $(KBUILD_SRC), -I$(srctree)/include) \ |
| 749 | $(if $(CONFIG_$(SPL_)SYS_THUMB_BUILD), \ |
| 750 | $(if $(CONFIG_HAS_THUMB2), \ |
| 751 | $(if $(CONFIG_CPU_V7M), \ |
| 752 | -I$(srctree)/arch/arm/thumb1/include), \ |
| 753 | -I$(srctree)/arch/arm/thumb1/include)) \ |
| 754 | -I$(srctree)/arch/$(ARCH)/include \ |
| 755 | -include $(srctree)/include/linux/kconfig.h |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 756 | |
| 757 | NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include) |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 758 | |
| 759 | # FIX ME |
Masahiro Yamada | 026f9cf | 2014-03-05 16:59:40 +0900 | [diff] [blame] | 760 | cpp_flags := $(KBUILD_CPPFLAGS) $(PLATFORM_CPPFLAGS) $(UBOOTINCLUDE) \ |
| 761 | $(NOSTDINC_FLAGS) |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 762 | c_flags := $(KBUILD_CFLAGS) $(cpp_flags) |
| 763 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 764 | ######################################################################### |
| 765 | # U-Boot objects....order is important (i.e. start must be first) |
| 766 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 767 | HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 768 | |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 769 | libs-y += lib/ |
| 770 | libs-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 771 | libs-$(CONFIG_OF_EMBED) += dts/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 772 | libs-y += fs/ |
| 773 | libs-y += net/ |
| 774 | libs-y += disk/ |
| 775 | libs-y += drivers/ |
| 776 | libs-y += drivers/dma/ |
| 777 | libs-y += drivers/gpio/ |
| 778 | libs-y += drivers/i2c/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 779 | libs-y += drivers/net/ |
| 780 | libs-y += drivers/net/phy/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 781 | libs-y += drivers/power/ \ |
Stephen Warren | 61f5ddc | 2016-07-13 13:45:31 -0600 | [diff] [blame] | 782 | drivers/power/domain/ \ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 783 | drivers/power/fuel_gauge/ \ |
| 784 | drivers/power/mfd/ \ |
| 785 | drivers/power/pmic/ \ |
Przemyslaw Marczak | af41e8d | 2015-04-20 20:07:42 +0200 | [diff] [blame] | 786 | drivers/power/battery/ \ |
| 787 | drivers/power/regulator/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 788 | libs-y += drivers/spi/ |
| 789 | libs-$(CONFIG_FMAN_ENET) += drivers/net/fm/ |
| 790 | libs-$(CONFIG_SYS_FSL_DDR) += drivers/ddr/fsl/ |
Shengzhou Liu | b9e745b | 2016-08-26 18:30:39 +0800 | [diff] [blame] | 791 | libs-$(CONFIG_SYS_FSL_MMDC) += drivers/ddr/fsl/ |
Ley Foon Tan | 5918afd | 2019-05-06 09:55:59 +0800 | [diff] [blame] | 792 | libs-$(CONFIG_$(SPL_)ALTERA_SDRAM) += drivers/ddr/altera/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 793 | libs-y += drivers/serial/ |
Vignesh Raghavendra | 7e91f6c | 2019-10-01 17:26:33 +0530 | [diff] [blame] | 794 | libs-y += drivers/usb/cdns3/ |
Kishon Vijay Abraham I | 5b9ce0e | 2015-02-23 18:40:16 +0530 | [diff] [blame] | 795 | libs-y += drivers/usb/dwc3/ |
Sriram Dash | 93eb8f3 | 2016-04-05 14:41:19 +0530 | [diff] [blame] | 796 | libs-y += drivers/usb/common/ |
Simon Glass | 019808f | 2015-03-25 12:22:37 -0600 | [diff] [blame] | 797 | libs-y += drivers/usb/emul/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 798 | libs-y += drivers/usb/eth/ |
Pali Rohár | 4cc53ef | 2021-02-07 14:50:03 +0100 | [diff] [blame] | 799 | libs-$(CONFIG_USB_DEVICE) += drivers/usb/gadget/ |
Jean-Jacques Hiblot | db17a92 | 2019-01-10 15:44:14 +0100 | [diff] [blame] | 800 | libs-$(CONFIG_USB_GADGET) += drivers/usb/gadget/ |
| 801 | libs-$(CONFIG_USB_GADGET) += drivers/usb/gadget/udc/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 802 | libs-y += drivers/usb/host/ |
Chunfeng Yun | e09b88c | 2020-10-16 11:38:39 +0800 | [diff] [blame] | 803 | libs-y += drivers/usb/mtu3/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 804 | libs-y += drivers/usb/musb/ |
| 805 | libs-y += drivers/usb/musb-new/ |
| 806 | libs-y += drivers/usb/phy/ |
| 807 | libs-y += drivers/usb/ulpi/ |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 808 | libs-y += cmd/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 809 | libs-y += common/ |
Simon Glass | 0649cd0 | 2017-08-03 12:21:49 -0600 | [diff] [blame] | 810 | libs-y += env/ |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 811 | libs-$(CONFIG_API) += api/ |
Simon Glass | 50fbd5c | 2019-12-28 10:44:51 -0700 | [diff] [blame] | 812 | ifdef CONFIG_POST |
| 813 | libs-y += post/ |
| 814 | endif |
Simon Glass | 16a5068 | 2020-10-03 09:25:25 -0600 | [diff] [blame] | 815 | libs-$(CONFIG_UNIT_TEST) += test/ |
Joe Hershberger | 421f86f | 2015-05-20 14:27:36 -0500 | [diff] [blame] | 816 | libs-$(CONFIG_UT_ENV) += test/env/ |
Heiko Stuebner | 96383bd | 2019-10-23 16:46:41 +0200 | [diff] [blame] | 817 | libs-$(CONFIG_UT_OPTEE) += test/optee/ |
Maxime Ripard | f2a9942 | 2016-07-05 10:26:46 +0200 | [diff] [blame] | 818 | libs-$(CONFIG_UT_OVERLAY) += test/overlay/ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 819 | |
Masahiro Yamada | 33a02da | 2014-03-03 19:03:17 +0900 | [diff] [blame] | 820 | libs-y += $(if $(BOARDDIR),board/$(BOARDDIR)/) |
Masahiro Yamada | 08e39a8 | 2013-11-11 14:35:55 +0900 | [diff] [blame] | 821 | |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 822 | libs-y := $(sort $(libs-y)) |
| 823 | |
| 824 | u-boot-dirs := $(patsubst %/,%,$(filter %/, $(libs-y))) tools examples |
| 825 | |
| 826 | u-boot-alldirs := $(sort $(u-boot-dirs) $(patsubst %/,%,$(filter %/, $(libs-)))) |
| 827 | |
| 828 | libs-y := $(patsubst %/, %/built-in.o, $(libs-y)) |
| 829 | |
| 830 | u-boot-init := $(head-y) |
| 831 | u-boot-main := $(libs-y) |
| 832 | |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 833 | |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 834 | # Add GCC lib |
Masahiro Yamada | cd2e46c | 2014-03-05 16:59:38 +0900 | [diff] [blame] | 835 | ifeq ($(CONFIG_USE_PRIVATE_LIBGCC),y) |
Masahiro Yamada | a86cf89 | 2014-02-27 22:40:34 +0900 | [diff] [blame] | 836 | PLATFORM_LIBGCC = arch/$(ARCH)/lib/lib.a |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 837 | else |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 838 | PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(c_flags) -print-libgcc-file-name`) -lgcc |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 839 | endif |
| 840 | PLATFORM_LIBS += $(PLATFORM_LIBGCC) |
Christian Gmeiner | 52ff802 | 2018-04-09 17:11:45 +0200 | [diff] [blame] | 841 | |
| 842 | ifdef CONFIG_CC_COVERAGE |
| 843 | KBUILD_CFLAGS += --coverage |
| 844 | PLATFORM_LIBGCC += -lgcov |
| 845 | endif |
| 846 | |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 847 | export PLATFORM_LIBS |
Alexey Brodkin | e75e73d | 2014-05-16 12:54:17 +0400 | [diff] [blame] | 848 | export PLATFORM_LIBGCC |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 849 | |
Mike Frysinger | 6ac9f47 | 2009-08-23 02:47:59 -0400 | [diff] [blame] | 850 | # Special flags for CPP when processing the linker script. |
| 851 | # Pass the version down so we can handle backwards compatibility |
| 852 | # on the fly. |
| 853 | LDPPFLAGS += \ |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 854 | -include $(srctree)/include/u-boot/u-boot.lds.h \ |
Simon Glass | 7e6403a | 2011-11-21 10:49:40 +0000 | [diff] [blame] | 855 | -DCPUDIR=$(CPUDIR) \ |
Mike Frysinger | 6ac9f47 | 2009-08-23 02:47:59 -0400 | [diff] [blame] | 856 | $(shell $(LD) --version | \ |
| 857 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') |
| 858 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 859 | ######################################################################### |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 860 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 861 | |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 862 | ifneq ($(CONFIG_BOARD_SIZE_LIMIT),) |
Heinrich Schuchardt | b275030 | 2019-04-02 19:19:04 +0200 | [diff] [blame] | 863 | BOARD_SIZE_CHECK= @ $(call size_check,$@,$(CONFIG_BOARD_SIZE_LIMIT)) |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 864 | else |
| 865 | BOARD_SIZE_CHECK = |
| 866 | endif |
| 867 | |
Ovidiu Panait | 2dfdd0c | 2020-09-25 21:12:56 +0300 | [diff] [blame] | 868 | ifneq ($(CONFIG_SPL_SIZE_LIMIT),0x0) |
Simon Goldschmidt | 2577015 | 2019-05-24 22:07:04 +0200 | [diff] [blame] | 869 | SPL_SIZE_CHECK = @$(call size_check,$@,$$(tools/spl_size_limit)) |
Heinrich Schuchardt | 0a0f231 | 2019-04-02 19:19:06 +0200 | [diff] [blame] | 870 | else |
| 871 | SPL_SIZE_CHECK = |
| 872 | endif |
| 873 | |
Ovidiu Panait | 2dfdd0c | 2020-09-25 21:12:56 +0300 | [diff] [blame] | 874 | ifneq ($(CONFIG_TPL_SIZE_LIMIT),0x0) |
Simon Glass | c52b5e8 | 2019-10-20 21:31:52 -0600 | [diff] [blame] | 875 | TPL_SIZE_CHECK = @$(call size_check,$@,$(CONFIG_TPL_SIZE_LIMIT)) |
| 876 | else |
| 877 | TPL_SIZE_CHECK = |
| 878 | endif |
| 879 | |
Scott Wood | 8137af1 | 2013-12-14 11:47:32 +0800 | [diff] [blame] | 880 | # Statically apply RELA-style relocations (currently arm64 only) |
Álvaro Fernández Rojas | d57259b | 2017-04-20 20:36:25 +0200 | [diff] [blame] | 881 | # This is useful for arm64 where static relocation needs to be performed on |
| 882 | # the raw binary, but certain simulators only accept an ELF file (but don't |
| 883 | # do the relocation). |
Scott Wood | 8137af1 | 2013-12-14 11:47:32 +0800 | [diff] [blame] | 884 | ifneq ($(CONFIG_STATIC_RELA),) |
| 885 | # $(1) is u-boot ELF, $(2) is u-boot bin, $(3) is text base |
Jan Kiszka | 7125d2c | 2020-06-25 08:39:45 +0200 | [diff] [blame] | 886 | quiet_cmd_static_rela = RELOC $@ |
| 887 | cmd_static_rela = \ |
| 888 | start=$$($(NM) $(2) | grep __rel_dyn_start | cut -f 1 -d ' '); \ |
| 889 | end=$$($(NM) $(2) | grep __rel_dyn_end | cut -f 1 -d ' '); \ |
| 890 | tools/relocate-rela $(3) $(4) $$start $$end |
Scott Wood | 8137af1 | 2013-12-14 11:47:32 +0800 | [diff] [blame] | 891 | else |
Jan Kiszka | 7125d2c | 2020-06-25 08:39:45 +0200 | [diff] [blame] | 892 | quiet_cmd_static_rela = |
Pali Rohár | e9ebc17 | 2020-11-04 15:33:44 +0100 | [diff] [blame] | 893 | cmd_static_rela = |
Scott Wood | 8137af1 | 2013-12-14 11:47:32 +0800 | [diff] [blame] | 894 | endif |
| 895 | |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 896 | # Always append INPUTS so that arch config.mk's can add custom ones |
| 897 | INPUTS-y += u-boot.srec u-boot.bin u-boot.sym System.map binary_size_check |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 898 | |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 899 | INPUTS-$(CONFIG_ONENAND_U_BOOT) += u-boot-onenand.bin |
Prabhakar Kushwaha | 89ad7be | 2014-04-08 19:13:34 +0530 | [diff] [blame] | 900 | ifeq ($(CONFIG_SPL_FSL_PBL),y) |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 901 | INPUTS-$(CONFIG_RAMBOOT_PBL) += u-boot-with-spl-pbl.bin |
Prabhakar Kushwaha | 89ad7be | 2014-04-08 19:13:34 +0530 | [diff] [blame] | 902 | else |
Tom Rini | bba4c7f | 2020-06-16 19:06:25 -0400 | [diff] [blame] | 903 | ifneq ($(CONFIG_NXP_ESBC), y) |
Aneesh Bansal | 467a40d | 2015-06-16 10:36:00 +0530 | [diff] [blame] | 904 | # For Secure Boot The Image needs to be signed and Header must also |
| 905 | # be included. So The image has to be built explicitly |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 906 | INPUTS-$(CONFIG_RAMBOOT_PBL) += u-boot.pbl |
Prabhakar Kushwaha | 89ad7be | 2014-04-08 19:13:34 +0530 | [diff] [blame] | 907 | endif |
Aneesh Bansal | 467a40d | 2015-06-16 10:36:00 +0530 | [diff] [blame] | 908 | endif |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 909 | INPUTS-$(CONFIG_SPL) += spl/u-boot-spl.bin |
Stefano Babic | d714a75 | 2019-09-20 08:47:53 +0200 | [diff] [blame] | 910 | ifeq ($(CONFIG_MX6)$(CONFIG_IMX_HAB), yy) |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 911 | INPUTS-$(CONFIG_SPL_FRAMEWORK) += u-boot-ivt.img |
Sven Ebenfeld | d21bd69 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 912 | else |
Stefano Babic | d714a75 | 2019-09-20 08:47:53 +0200 | [diff] [blame] | 913 | ifeq ($(CONFIG_MX7)$(CONFIG_IMX_HAB), yy) |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 914 | INPUTS-$(CONFIG_SPL_FRAMEWORK) += u-boot-ivt.img |
Eran Matityahu | 0004b7a | 2018-02-28 09:51:50 +0200 | [diff] [blame] | 915 | else |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 916 | INPUTS-$(CONFIG_SPL_FRAMEWORK) += u-boot.img |
Sven Ebenfeld | d21bd69 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 917 | endif |
Eran Matityahu | 0004b7a | 2018-02-28 09:51:50 +0200 | [diff] [blame] | 918 | endif |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 919 | INPUTS-$(CONFIG_TPL) += tpl/u-boot-tpl.bin |
| 920 | INPUTS-$(CONFIG_OF_SEPARATE) += u-boot.dtb |
Masahiro Yamada | 2405d09 | 2014-05-15 20:37:51 +0900 | [diff] [blame] | 921 | ifeq ($(CONFIG_SPL_FRAMEWORK),y) |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 922 | INPUTS-$(CONFIG_OF_SEPARATE) += u-boot-dtb.img |
Masahiro Yamada | 2405d09 | 2014-05-15 20:37:51 +0900 | [diff] [blame] | 923 | endif |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 924 | INPUTS-$(CONFIG_OF_HOSTFILE) += u-boot.dtb |
Vadim Bendebury | b343bbb | 2013-03-27 14:34:18 +0000 | [diff] [blame] | 925 | ifneq ($(CONFIG_SPL_TARGET),) |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 926 | INPUTS-$(CONFIG_SPL) += $(CONFIG_SPL_TARGET:"%"=%) |
Vadim Bendebury | b343bbb | 2013-03-27 14:34:18 +0000 | [diff] [blame] | 927 | endif |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 928 | INPUTS-$(CONFIG_REMAKE_ELF) += u-boot.elf |
| 929 | INPUTS-$(CONFIG_EFI_APP) += u-boot-app.efi |
| 930 | INPUTS-$(CONFIG_EFI_STUB) += u-boot-payload.efi |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 931 | |
Simon Glass | e999bea | 2020-07-19 13:56:07 -0600 | [diff] [blame] | 932 | # Generate this input file for binman |
| 933 | ifeq ($(CONFIG_SPL),) |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 934 | INPUTS-$(CONFIG_ARCH_MEDIATEK) += u-boot-mtk.bin |
Simon Glass | e999bea | 2020-07-19 13:56:07 -0600 | [diff] [blame] | 935 | endif |
Ryder Lee | 3b975a1 | 2018-11-15 10:07:49 +0800 | [diff] [blame] | 936 | |
Stefan Roese | b2b8a69 | 2014-10-22 12:13:24 +0200 | [diff] [blame] | 937 | # Add optional build target if defined in board/cpu/soc headers |
| 938 | ifneq ($(CONFIG_BUILD_TARGET),) |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 939 | INPUTS-y += $(CONFIG_BUILD_TARGET:"%"=%) |
Stefan Roese | b2b8a69 | 2014-10-22 12:13:24 +0200 | [diff] [blame] | 940 | endif |
| 941 | |
AKASHI Takahiro | dde1b75 | 2020-03-10 09:20:43 +0900 | [diff] [blame] | 942 | ifeq ($(CONFIG_INIT_SP_RELATIVE)$(CONFIG_OF_SEPARATE),yy) |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 943 | INPUTS-y += init_sp_bss_offset_check |
Stephen Warren | 5fed97a | 2018-01-09 12:52:14 -0700 | [diff] [blame] | 944 | endif |
| 945 | |
Jagdish Gediya | 96699f0 | 2018-09-03 21:35:10 +0530 | [diff] [blame] | 946 | ifeq ($(CONFIG_MPC85xx)$(CONFIG_OF_SEPARATE),yy) |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 947 | INPUTS-y += u-boot-with-dtb.bin |
Jagdish Gediya | 96699f0 | 2018-09-03 21:35:10 +0530 | [diff] [blame] | 948 | endif |
| 949 | |
Simon Glass | e999bea | 2020-07-19 13:56:07 -0600 | [diff] [blame] | 950 | ifeq ($(CONFIG_ARCH_ROCKCHIP),y) |
| 951 | # On ARM64 this target is produced by binman so we don't need this dep |
| 952 | ifeq ($(CONFIG_ARM64),y) |
| 953 | ifeq ($(CONFIG_SPL),y) |
| 954 | # TODO: Get binman to generate this too |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 955 | INPUTS-y += u-boot-rockchip.bin |
Matwey V. Kornilov | 1b0a936 | 2019-09-03 19:29:01 +0300 | [diff] [blame] | 956 | endif |
Simon Glass | e999bea | 2020-07-19 13:56:07 -0600 | [diff] [blame] | 957 | else |
| 958 | ifeq ($(CONFIG_SPL),y) |
| 959 | # Generate these inputs for binman which will create the output files |
| 960 | INPUTS-y += idbloader.img u-boot.img |
| 961 | endif |
| 962 | endif |
| 963 | endif |
Matwey V. Kornilov | 1b0a936 | 2019-09-03 19:29:01 +0300 | [diff] [blame] | 964 | |
Simon Glass | 42b18df | 2020-07-19 13:56:03 -0600 | [diff] [blame] | 965 | INPUTS-$(CONFIG_X86) += u-boot-x86-start16.bin u-boot-x86-reset16.bin \ |
| 966 | $(if $(CONFIG_SPL_X86_16BIT_INIT),spl/u-boot-spl.bin) \ |
| 967 | $(if $(CONFIG_TPL_X86_16BIT_INIT),tpl/u-boot-tpl.bin) |
| 968 | |
Masahiro Yamada | ad0fed4 | 2014-02-24 11:12:18 +0900 | [diff] [blame] | 969 | LDFLAGS_u-boot += $(LDFLAGS_FINAL) |
Joel Stanley | e391b1e | 2017-04-09 20:33:58 +0200 | [diff] [blame] | 970 | |
| 971 | # Avoid 'Not enough room for program headers' error on binutils 2.28 onwards. |
| 972 | LDFLAGS_u-boot += $(call ld-option, --no-dynamic-linker) |
| 973 | |
Alexey Brodkin | 1022807 | 2018-02-21 13:06:26 +0300 | [diff] [blame] | 974 | ifeq ($(CONFIG_ARC)$(CONFIG_NIOS2)$(CONFIG_X86)$(CONFIG_XTENSA),) |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 975 | LDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE) |
| 976 | endif |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 977 | |
Tom Rini | 5972ff0 | 2020-03-11 18:11:17 -0400 | [diff] [blame] | 978 | # insure the checker run with the right endianness |
| 979 | CHECKFLAGS += $(if $(CONFIG_CPU_BIG_ENDIAN),-mbig-endian,-mlittle-endian) |
| 980 | |
| 981 | # the checker needs the correct machine size |
| 982 | CHECKFLAGS += $(if $(CONFIG_64BIT),-m64,-m32) |
| 983 | |
Simon Glass | e020c88 | 2015-07-31 09:31:23 -0600 | [diff] [blame] | 984 | # Normally we fill empty space with 0xff |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 985 | quiet_cmd_objcopy = OBJCOPY $@ |
Simon Glass | e020c88 | 2015-07-31 09:31:23 -0600 | [diff] [blame] | 986 | cmd_objcopy = $(OBJCOPY) --gap-fill=0xff $(OBJCOPYFLAGS) \ |
| 987 | $(OBJCOPYFLAGS_$(@F)) $< $@ |
| 988 | |
| 989 | # Provide a version which does not do this, for use by EFI |
| 990 | quiet_cmd_zobjcopy = OBJCOPY $@ |
| 991 | cmd_zobjcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@ |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 992 | |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 993 | quiet_cmd_efipayload = OBJCOPY $@ |
| 994 | cmd_efipayload = $(OBJCOPY) -I binary -O $(EFIPAYLOAD_BFDTARGET) -B $(EFIPAYLOAD_BFDARCH) $< $@ |
| 995 | |
Sven Ebenfeld | 1f6a664 | 2016-11-06 16:37:58 +0100 | [diff] [blame] | 996 | MKIMAGEOUTPUT ?= /dev/null |
| 997 | |
Marek Vasut | b97241b | 2014-03-14 05:00:14 +0100 | [diff] [blame] | 998 | quiet_cmd_mkimage = MKIMAGE $@ |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 999 | cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \ |
Rasmus Villemoes | 0658761 | 2018-03-23 12:08:02 +0100 | [diff] [blame] | 1000 | >$(MKIMAGEOUTPUT) $(if $(KBUILD_VERBOSE:0=), && cat $(MKIMAGEOUTPUT)) |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 1001 | |
Andre Przywara | 1a12fdc | 2017-04-26 01:32:45 +0100 | [diff] [blame] | 1002 | quiet_cmd_mkfitimage = MKIMAGE $@ |
Simon Glass | 18e0813 | 2020-07-19 13:56:09 -0600 | [diff] [blame] | 1003 | cmd_mkfitimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) \ |
| 1004 | -f $(U_BOOT_ITS) -p $(CONFIG_FIT_EXTERNAL_OFFSET) $@ \ |
Rasmus Villemoes | 0658761 | 2018-03-23 12:08:02 +0100 | [diff] [blame] | 1005 | >$(MKIMAGEOUTPUT) $(if $(KBUILD_VERBOSE:0=), && cat $(MKIMAGEOUTPUT)) |
Andre Przywara | 1a12fdc | 2017-04-26 01:32:45 +0100 | [diff] [blame] | 1006 | |
Masahiro Yamada | ee0acfa | 2014-02-24 11:12:16 +0900 | [diff] [blame] | 1007 | quiet_cmd_cat = CAT $@ |
| 1008 | cmd_cat = cat $(filter-out $(PHONY), $^) > $@ |
| 1009 | |
Masahiro Yamada | 982a119 | 2014-02-24 11:12:17 +0900 | [diff] [blame] | 1010 | append = cat $(filter-out $< $(PHONY), $^) >> $@ |
| 1011 | |
| 1012 | quiet_cmd_pad_cat = CAT $@ |
Pali Rohár | 4532bf4 | 2020-10-26 14:10:49 +0100 | [diff] [blame] | 1013 | cmd_pad_cat = $(cmd_objcopy) && $(append) || { rm -f $@; false; } |
Masahiro Yamada | 982a119 | 2014-02-24 11:12:17 +0900 | [diff] [blame] | 1014 | |
Weijie Gao | a38f84b | 2020-04-21 09:28:39 +0200 | [diff] [blame] | 1015 | quiet_cmd_lzma = LZMA $@ |
| 1016 | cmd_lzma = lzma -c -z -k -9 $< > $@ |
| 1017 | |
Simon Glass | 1bd8763 | 2016-11-13 14:25:50 -0700 | [diff] [blame] | 1018 | cfg: u-boot.cfg |
| 1019 | |
Masahiro Yamada | 1bdd942 | 2017-01-31 20:11:33 +0900 | [diff] [blame] | 1020 | quiet_cmd_cfgcheck = CFGCHK $2 |
| 1021 | cmd_cfgcheck = $(srctree)/scripts/check-config.sh $2 \ |
| 1022 | $(srctree)/scripts/config_whitelist.txt $(srctree) |
| 1023 | |
Simon Glass | 1373252 | 2021-03-25 21:24:33 +1300 | [diff] [blame] | 1024 | # Concat the value of all the CONFIGs (result is 'y' or 'yy', etc. ) |
| 1025 | got = $(foreach cfg,$(1),$($(cfg))) |
| 1026 | |
| 1027 | # expected value 'y for each one |
| 1028 | expect = $(foreach cfg,$(1),y) |
| 1029 | |
| 1030 | # Show a deprecation message |
| 1031 | # Args: |
| 1032 | # 1: List of CONFIG_DM_... to migrate to (e.g. "CONFIG_DM_MMC CONFIG_BLK") |
| 1033 | # 2: Name of component (e.g . "Ethernet drivers") |
| 1034 | # 3: Release deadline (e.g. "v202.07") |
| 1035 | # 4: Condition to require before checking (e.g. "$(CONFIG_NET)") |
| 1036 | # Note: Script avoids bash construct, hence the strange double 'if' |
| 1037 | # (patches welcome!) |
| 1038 | define deprecated |
Simon Glass | a0da06d | 2021-04-01 11:18:13 +1300 | [diff] [blame] | 1039 | @if [ -n "$(strip $(4))" ]; then if [ "$(got)" != "$(expect)" ]; then \ |
Simon Glass | 1373252 | 2021-03-25 21:24:33 +1300 | [diff] [blame] | 1040 | echo >&2 "===================== WARNING ======================"; \ |
| 1041 | echo >&2 "This board does not use $(firstword $(1)) (Driver Model"; \ |
| 1042 | echo >&2 "for $(2)). Please update the board to use"; \ |
| 1043 | echo >&2 "$(firstword $(1)) before the $(3) release. Failure to"; \ |
| 1044 | echo >&2 "update by the deadline may result in board removal."; \ |
| 1045 | echo >&2 "See doc/driver-model/migration.rst for more info."; \ |
| 1046 | echo >&2 "===================================================="; \ |
| 1047 | fi; fi |
| 1048 | |
| 1049 | endef |
| 1050 | |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 1051 | PHONY += inputs |
| 1052 | inputs: $(INPUTS-y) |
| 1053 | |
Simon Glass | 42b18df | 2020-07-19 13:56:03 -0600 | [diff] [blame] | 1054 | all: .binman_stamp inputs |
| 1055 | ifeq ($(CONFIG_BINMAN),y) |
| 1056 | $(call if_changed,binman) |
| 1057 | endif |
| 1058 | |
| 1059 | # Timestamp file to make sure that binman always runs |
| 1060 | .binman_stamp: FORCE |
| 1061 | @touch $@ |
Simon Glass | e6385c7 | 2020-07-19 13:56:01 -0600 | [diff] [blame] | 1062 | |
Jagan Teki | 63235bd | 2019-05-29 17:01:30 -0400 | [diff] [blame] | 1063 | ifeq ($(CONFIG_DEPRECATED),y) |
| 1064 | $(warning "You have deprecated configuration options enabled in your .config! Please check your configuration.") |
| 1065 | endif |
Simon Glass | 06467e4 | 2021-03-25 21:24:32 +1300 | [diff] [blame] | 1066 | ifeq ($(CONFIG_OF_EMBED),y) |
| 1067 | @echo >&2 "===================== WARNING ======================" |
| 1068 | @echo >&2 "CONFIG_OF_EMBED is enabled. This option should only" |
| 1069 | @echo >&2 "be used for debugging purposes. Please use" |
| 1070 | @echo >&2 "CONFIG_OF_SEPARATE for boards in mainline." |
| 1071 | @echo >&2 "See doc/README.fdt-control for more info." |
| 1072 | @echo >&2 "====================================================" |
| 1073 | endif |
| 1074 | ifneq ($(CONFIG_SPL_FIT_GENERATOR),) |
| 1075 | @echo >&2 "===================== WARNING ======================" |
| 1076 | @echo >&2 "This board uses CONFIG_SPL_FIT_GENERATOR. Please migrate" |
| 1077 | @echo >&2 "to binman instead, to avoid the proliferation of" |
| 1078 | @echo >&2 "arch-specific scripts with no tests." |
| 1079 | @echo >&2 "====================================================" |
| 1080 | endif |
Heinrich Schuchardt | 282ed24 | 2019-09-16 18:41:42 +0200 | [diff] [blame] | 1081 | ifneq ($(CONFIG_DM),y) |
| 1082 | @echo >&2 "===================== WARNING ======================" |
| 1083 | @echo >&2 "This board does not use CONFIG_DM. CONFIG_DM will be" |
| 1084 | @echo >&2 "compulsory starting with the v2020.01 release." |
| 1085 | @echo >&2 "Failure to update may result in board removal." |
| 1086 | @echo >&2 "See doc/driver-model/migration.rst for more info." |
| 1087 | @echo >&2 "====================================================" |
| 1088 | endif |
Simon Glass | 9e035b8 | 2021-03-25 21:24:35 +1300 | [diff] [blame] | 1089 | $(call deprecated,CONFIG_DM_USB CONFIG_OF_CONTROL CONFIG_BLK,\ |
| 1090 | USB,v2019.07,$(CONFIG_USB)) |
Simon Glass | 39e526a | 2021-03-25 21:24:38 +1300 | [diff] [blame] | 1091 | $(call deprecated,CONFIG_DM_PCI,PCI,v2019.07,$(CONFIG_PCI)) |
Simon Glass | d13aee0 | 2021-03-25 21:24:39 +1300 | [diff] [blame] | 1092 | $(call deprecated,CONFIG_DM_VIDEO,video,v2019.07,\ |
| 1093 | $(CONFIG_LCD)$(CONFIG_VIDEO)) |
Simon Glass | ec384f9 | 2021-03-25 21:24:40 +1300 | [diff] [blame] | 1094 | $(call deprecated,CONFIG_DM_SPI_FLASH,SPI flash,v2019.07,\ |
| 1095 | $(CONFIG_SPI_FLASH)) |
Simon Glass | 78b4a56 | 2021-03-25 21:24:41 +1300 | [diff] [blame] | 1096 | $(call deprecated,CONFIG_WDT,DM watchdog,v2019.10,\ |
| 1097 | $(CONFIG_WATCHDOG)$(CONFIG_HW_WATCHDOG)) |
Simon Glass | 8cd1874 | 2021-03-25 21:24:42 +1300 | [diff] [blame] | 1098 | $(call deprecated,CONFIG_DM_ETH,Ethernet drivers,v2020.07,$(CONFIG_NET)) |
Simon Glass | 65c8cdc | 2021-03-25 21:24:44 +1300 | [diff] [blame] | 1099 | $(call deprecated,CONFIG_DM_I2C,I2C drivers,v2022.04,$(CONFIG_I2C)) |
Masahiro Yamada | 4bf06d1 | 2016-09-26 13:04:59 +0900 | [diff] [blame] | 1100 | @# Check that this build does not use CONFIG options that we do not |
| 1101 | @# know about unless they are in Kconfig. All the existing CONFIG |
| 1102 | @# options are whitelisted, so new ones should not be added. |
Masahiro Yamada | 1bdd942 | 2017-01-31 20:11:33 +0900 | [diff] [blame] | 1103 | $(call cmd,cfgcheck,u-boot.cfg) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1104 | |
Masahiro Yamada | 6ab6b2a | 2014-02-05 11:28:25 +0900 | [diff] [blame] | 1105 | PHONY += dtbs |
Masahiro Yamada | 4141e85 | 2016-06-23 13:53:46 +0900 | [diff] [blame] | 1106 | dtbs: dts/dt.dtb |
| 1107 | @: |
Tom Rini | 36dd5f1 | 2017-09-23 13:00:57 -0400 | [diff] [blame] | 1108 | dts/dt.dtb: u-boot |
Masahiro Yamada | 6ab6b2a | 2014-02-05 11:28:25 +0900 | [diff] [blame] | 1109 | $(Q)$(MAKE) $(build)=dts dtbs |
Simon Glass | 2c0f79e | 2011-10-24 19:15:31 +0000 | [diff] [blame] | 1110 | |
Simon Glass | ad1ecd2 | 2016-01-31 18:10:50 -0700 | [diff] [blame] | 1111 | quiet_cmd_copy = COPY $@ |
| 1112 | cmd_copy = cp $< $@ |
| 1113 | |
Jean-Jacques Hiblot | 1195559 | 2017-09-15 12:57:24 +0200 | [diff] [blame] | 1114 | ifeq ($(CONFIG_MULTI_DTB_FIT),y) |
Cooper Jr., Franklin | 6f59fb0 | 2017-06-16 17:25:13 -0500 | [diff] [blame] | 1115 | |
Marek Vasut | 95f4bbd | 2019-03-08 16:06:55 +0100 | [diff] [blame] | 1116 | ifeq ($(CONFIG_MULTI_DTB_FIT_LZO),y) |
| 1117 | FINAL_DTB_CONTAINER = fit-dtb.blob.lzo |
| 1118 | else ifeq ($(CONFIG_MULTI_DTB_FIT_GZIP),y) |
| 1119 | FINAL_DTB_CONTAINER = fit-dtb.blob.gz |
| 1120 | else |
| 1121 | FINAL_DTB_CONTAINER = fit-dtb.blob |
| 1122 | endif |
| 1123 | |
| 1124 | fit-dtb.blob.gz: fit-dtb.blob |
| 1125 | @gzip -kf9 $< > $@ |
| 1126 | |
| 1127 | fit-dtb.blob.lzo: fit-dtb.blob |
| 1128 | @lzop -f9 $< > $@ |
| 1129 | |
Cooper Jr., Franklin | 6f59fb0 | 2017-06-16 17:25:13 -0500 | [diff] [blame] | 1130 | fit-dtb.blob: dts/dt.dtb FORCE |
| 1131 | $(call if_changed,mkimage) |
Vagrant Cascadian | 878e2a5 | 2019-05-02 11:14:12 -0700 | [diff] [blame] | 1132 | ifneq ($(SOURCE_DATE_EPOCH),) |
| 1133 | touch -d @$(SOURCE_DATE_EPOCH) fit-dtb.blob |
| 1134 | chmod 0600 fit-dtb.blob |
| 1135 | endif |
Cooper Jr., Franklin | 6f59fb0 | 2017-06-16 17:25:13 -0500 | [diff] [blame] | 1136 | |
| 1137 | MKIMAGEFLAGS_fit-dtb.blob = -f auto -A $(ARCH) -T firmware -C none -O u-boot \ |
| 1138 | -a 0 -e 0 -E \ |
| 1139 | $(patsubst %,-b arch/$(ARCH)/dts/%.dtb,$(subst ",,$(CONFIG_OF_LIST))) -d /dev/null |
| 1140 | |
Michal Simek | c8c5e2b | 2019-03-23 11:13:00 +0530 | [diff] [blame] | 1141 | ifneq ($(EXT_DTB),) |
| 1142 | u-boot-fit-dtb.bin: u-boot-nodtb.bin $(EXT_DTB) |
| 1143 | $(call if_changed,cat) |
| 1144 | else |
Tom Rini | 748198c | 2019-05-19 18:09:05 -0400 | [diff] [blame] | 1145 | u-boot-fit-dtb.bin: u-boot-nodtb.bin $(FINAL_DTB_CONTAINER) |
Cooper Jr., Franklin | 6f59fb0 | 2017-06-16 17:25:13 -0500 | [diff] [blame] | 1146 | $(call if_changed,cat) |
Michal Simek | c8c5e2b | 2019-03-23 11:13:00 +0530 | [diff] [blame] | 1147 | endif |
Cooper Jr., Franklin | 6f59fb0 | 2017-06-16 17:25:13 -0500 | [diff] [blame] | 1148 | |
| 1149 | u-boot.bin: u-boot-fit-dtb.bin FORCE |
| 1150 | $(call if_changed,copy) |
Heiko Schocher | 16c776d | 2019-05-28 13:44:31 +0200 | [diff] [blame] | 1151 | |
| 1152 | u-boot-dtb.bin: u-boot-nodtb.bin dts/dt.dtb FORCE |
| 1153 | $(call if_changed,cat) |
| 1154 | |
Cooper Jr., Franklin | 6f59fb0 | 2017-06-16 17:25:13 -0500 | [diff] [blame] | 1155 | else ifeq ($(CONFIG_OF_SEPARATE),y) |
Simon Glass | ad1ecd2 | 2016-01-31 18:10:50 -0700 | [diff] [blame] | 1156 | u-boot-dtb.bin: u-boot-nodtb.bin dts/dt.dtb FORCE |
Masahiro Yamada | ee0acfa | 2014-02-24 11:12:16 +0900 | [diff] [blame] | 1157 | $(call if_changed,cat) |
Simon Glass | 2c0f79e | 2011-10-24 19:15:31 +0000 | [diff] [blame] | 1158 | |
Simon Glass | ad1ecd2 | 2016-01-31 18:10:50 -0700 | [diff] [blame] | 1159 | u-boot.bin: u-boot-dtb.bin FORCE |
| 1160 | $(call if_changed,copy) |
| 1161 | else |
| 1162 | u-boot.bin: u-boot-nodtb.bin FORCE |
| 1163 | $(call if_changed,copy) |
| 1164 | endif |
| 1165 | |
Heiko Schocher | 0f282c1 | 2019-10-25 14:46:54 +0200 | [diff] [blame] | 1166 | # we call Makefile in arch/arm/mach-imx which |
| 1167 | # has targets which are dependent on targets defined |
| 1168 | # here. make could not resolve them and we must ensure |
| 1169 | # that they are finished before calling imx targets |
| 1170 | ifeq ($(CONFIG_MULTI_DTB_FIT),y) |
| 1171 | IMX_DEPS = u-boot-fit-dtb.bin |
| 1172 | endif |
| 1173 | |
| 1174 | %.imx: $(IMX_DEPS) %.bin |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 1175 | $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@ |
Heinrich Schuchardt | 219dee7 | 2019-04-02 19:19:05 +0200 | [diff] [blame] | 1176 | $(BOARD_SIZE_CHECK) |
Stefano Babic | e64348f | 2014-03-31 09:50:35 +0200 | [diff] [blame] | 1177 | |
Albert ARIBAUD \(3ADEV\) | ed0c2c0 | 2016-09-26 09:08:06 +0200 | [diff] [blame] | 1178 | %.vyb: %.imx |
| 1179 | $(Q)$(MAKE) $(build)=arch/arm/cpu/armv7/vf610 $@ |
| 1180 | |
| 1181 | quiet_cmd_copy = COPY $@ |
| 1182 | cmd_copy = cp $< $@ |
| 1183 | |
Masahiro Yamada | 0d1e8aa | 2014-02-21 15:34:30 +0900 | [diff] [blame] | 1184 | u-boot.dtb: dts/dt.dtb |
| 1185 | $(call cmd,copy) |
| 1186 | |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 1187 | OBJCOPYFLAGS_u-boot.hex := -O ihex |
wdenk | 6310eb9 | 2005-01-09 21:28:15 +0000 | [diff] [blame] | 1188 | |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 1189 | OBJCOPYFLAGS_u-boot.srec := -O srec |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1190 | |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 1191 | u-boot.hex u-boot.srec: u-boot FORCE |
| 1192 | $(call if_changed,objcopy) |
| 1193 | |
Masaru Nagai | 341ca90 | 2015-08-28 12:12:45 +0900 | [diff] [blame] | 1194 | OBJCOPYFLAGS_u-boot-elf.srec := $(OBJCOPYFLAGS_u-boot.srec) |
| 1195 | |
| 1196 | u-boot-elf.srec: u-boot.elf FORCE |
| 1197 | $(call if_changed,objcopy) |
| 1198 | |
Marek Vasut | 3ee58ea | 2018-02-26 20:14:02 +0100 | [diff] [blame] | 1199 | OBJCOPYFLAGS_u-boot-spl.srec = $(OBJCOPYFLAGS_u-boot.srec) |
| 1200 | |
| 1201 | spl/u-boot-spl.srec: spl/u-boot-spl FORCE |
| 1202 | $(call if_changed,objcopy) |
| 1203 | |
Marek Vasut | 5602330 | 2018-10-03 12:44:13 +0200 | [diff] [blame] | 1204 | %.scif: %.srec |
| 1205 | $(Q)$(MAKE) $(build)=arch/arm/mach-rmobile $@ |
| 1206 | |
Simon Glass | ad1ecd2 | 2016-01-31 18:10:50 -0700 | [diff] [blame] | 1207 | OBJCOPYFLAGS_u-boot-nodtb.bin := -O binary \ |
Jagdish Gediya | 96699f0 | 2018-09-03 21:35:10 +0530 | [diff] [blame] | 1208 | $(if $(CONFIG_X86_16BIT_INIT),-R .start16 -R .resetvec) \ |
| 1209 | $(if $(CONFIG_MPC85XX_HAVE_RESET_VECTOR),-R .bootpg -R .resetvec) |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 1210 | |
Simon Glass | ad1ecd2 | 2016-01-31 18:10:50 -0700 | [diff] [blame] | 1211 | binary_size_check: u-boot-nodtb.bin FORCE |
| 1212 | @file_size=$(shell wc -c u-boot-nodtb.bin | awk '{print $$1}') ; \ |
Chris Packham | 3ce7a4f | 2014-07-24 17:27:07 +1200 | [diff] [blame] | 1213 | map_size=$(shell cat u-boot.map | \ |
Simon Glass | 0b308f1 | 2014-06-18 00:10:15 -0600 | [diff] [blame] | 1214 | awk '/_image_copy_start/ {start = $$1} /_image_binary_end/ {end = $$1} END {if (start != "" && end != "") print "ibase=16; " toupper(end) " - " toupper(start)}' \ |
Chris Packham | 3ce7a4f | 2014-07-24 17:27:07 +1200 | [diff] [blame] | 1215 | | sed 's/0X//g' \ |
Simon Glass | 0b308f1 | 2014-06-18 00:10:15 -0600 | [diff] [blame] | 1216 | | bc); \ |
Simon Glass | 8974292 | 2014-06-02 22:04:47 -0600 | [diff] [blame] | 1217 | if [ "" != "$$map_size" ]; then \ |
| 1218 | if test $$map_size -ne $$file_size; then \ |
Chris Packham | 3ce7a4f | 2014-07-24 17:27:07 +1200 | [diff] [blame] | 1219 | echo "u-boot.map shows a binary size of $$map_size" >&2 ; \ |
Simon Glass | ad1ecd2 | 2016-01-31 18:10:50 -0700 | [diff] [blame] | 1220 | echo " but u-boot-nodtb.bin shows $$file_size" >&2 ; \ |
Simon Glass | 8974292 | 2014-06-02 22:04:47 -0600 | [diff] [blame] | 1221 | exit 1; \ |
| 1222 | fi \ |
| 1223 | fi |
| 1224 | |
AKASHI Takahiro | dde1b75 | 2020-03-10 09:20:43 +0900 | [diff] [blame] | 1225 | ifeq ($(CONFIG_INIT_SP_RELATIVE)$(CONFIG_OF_SEPARATE),yy) |
Stephen Warren | 5fed97a | 2018-01-09 12:52:14 -0700 | [diff] [blame] | 1226 | ifneq ($(CONFIG_SYS_MALLOC_F_LEN),) |
| 1227 | subtract_sys_malloc_f_len = space=$$(($${space} - $(CONFIG_SYS_MALLOC_F_LEN))) |
| 1228 | else |
| 1229 | subtract_sys_malloc_f_len = true |
| 1230 | endif |
| 1231 | # The 1/4 margin below is somewhat arbitrary. The likely initial SP usage is |
| 1232 | # so low that the DTB could probably use 90%+ of the available space, for |
| 1233 | # current values of CONFIG_SYS_INIT_SP_BSS_OFFSET at least. However, let's be |
| 1234 | # safe for now and tweak this later if space becomes tight. |
| 1235 | # A rejected alternative would be to check that some absolute minimum stack |
| 1236 | # space was available. However, since CONFIG_SYS_INIT_SP_BSS_OFFSET is |
| 1237 | # deliberately build-specific, to take account of build-to-build stack usage |
| 1238 | # differences due to different feature sets, there is no common absolute value |
| 1239 | # to check against. |
| 1240 | init_sp_bss_offset_check: u-boot.dtb FORCE |
| 1241 | @dtb_size=$(shell wc -c u-boot.dtb | awk '{print $$1}') ; \ |
| 1242 | space=$(CONFIG_SYS_INIT_SP_BSS_OFFSET) ; \ |
| 1243 | $(subtract_sys_malloc_f_len) ; \ |
| 1244 | quarter_space=$$(($${space} / 4)) ; \ |
| 1245 | if [ $${dtb_size} -gt $${quarter_space} ]; then \ |
| 1246 | echo "u-boot.dtb is larger than 1 quarter of " >&2 ; \ |
| 1247 | echo "(CONFIG_SYS_INIT_SP_BSS_OFFSET - CONFIG_SYS_MALLOC_F_LEN)" >&2 ; \ |
| 1248 | exit 1 ; \ |
| 1249 | fi |
| 1250 | endif |
| 1251 | |
Pali Rohár | 71d3fa7 | 2020-11-04 10:34:35 +0100 | [diff] [blame] | 1252 | shell_cmd = { $(call echo-cmd,$(1)) $(cmd_$(1)); } |
Pali Rohár | ae89702 | 2020-10-07 15:39:40 +0200 | [diff] [blame] | 1253 | |
| 1254 | quiet_cmd_objcopy_uboot = OBJCOPY $@ |
Pali Rohár | e9ebc17 | 2020-11-04 15:33:44 +0100 | [diff] [blame] | 1255 | ifdef cmd_static_rela |
Pali Rohár | 4532bf4 | 2020-10-26 14:10:49 +0100 | [diff] [blame] | 1256 | cmd_objcopy_uboot = $(cmd_objcopy) && $(call shell_cmd,static_rela,$<,$@,$(CONFIG_SYS_TEXT_BASE)) || { rm -f $@; false; } |
Pali Rohár | e9ebc17 | 2020-11-04 15:33:44 +0100 | [diff] [blame] | 1257 | else |
| 1258 | cmd_objcopy_uboot = $(cmd_objcopy) |
| 1259 | endif |
Pali Rohár | ae89702 | 2020-10-07 15:39:40 +0200 | [diff] [blame] | 1260 | |
Simon Glass | ad1ecd2 | 2016-01-31 18:10:50 -0700 | [diff] [blame] | 1261 | u-boot-nodtb.bin: u-boot FORCE |
Pali Rohár | ae89702 | 2020-10-07 15:39:40 +0200 | [diff] [blame] | 1262 | $(call if_changed,objcopy_uboot) |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 1263 | $(BOARD_SIZE_CHECK) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1264 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1265 | u-boot.ldr: u-boot |
Mike Frysinger | 76d8218 | 2009-07-21 22:17:36 -0400 | [diff] [blame] | 1266 | $(CREATE_LDR_ENV) |
Sonic Zhang | 240182d | 2014-08-12 18:45:26 +0800 | [diff] [blame] | 1267 | $(LDR) -T $(CONFIG_CPU) -c $@ $< $(LDR_FLAGS) |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 1268 | $(BOARD_SIZE_CHECK) |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 1269 | |
Simon Glass | 17a944b | 2016-11-25 20:15:57 -0700 | [diff] [blame] | 1270 | # binman |
| 1271 | # --------------------------------------------------------------------------- |
Simon Glass | a3c0055 | 2018-11-06 15:21:31 -0700 | [diff] [blame] | 1272 | # Use 'make BINMAN_DEBUG=1' to enable debugging |
Simon Glass | ef10804 | 2021-02-06 09:57:28 -0700 | [diff] [blame] | 1273 | # Use 'make BINMAN_VERBOSE=3' to set vebosity level |
Simon Glass | c0f1ebe | 2020-09-06 10:39:08 -0600 | [diff] [blame] | 1274 | default_dt := $(if $(DEVICE_TREE),$(DEVICE_TREE),$(CONFIG_DEFAULT_DEVICE_TREE)) |
Simon Glass | cfee2b2 | 2021-03-18 20:25:08 +1300 | [diff] [blame] | 1275 | |
| 1276 | # Tell binman whether we have a devicetree for SPL and TPL |
| 1277 | have_spl_dt := $(if $(CONFIG_SPL_OF_PLATDATA),,$(CONFIG_SPL_OF_CONTROL)) |
| 1278 | have_tpl_dt := $(if $(CONFIG_TPL_OF_PLATDATA),,$(CONFIG_TPL_OF_CONTROL)) |
| 1279 | |
Simon Glass | 17a944b | 2016-11-25 20:15:57 -0700 | [diff] [blame] | 1280 | quiet_cmd_binman = BINMAN $@ |
Stephen Warren | 4f4fb85 | 2019-07-19 11:21:17 -0600 | [diff] [blame] | 1281 | cmd_binman = $(srctree)/tools/binman/binman $(if $(BINMAN_DEBUG),-D) \ |
Simon Glass | 8fce3f2 | 2019-09-25 08:11:10 -0600 | [diff] [blame] | 1282 | --toolpath $(objtree)/tools \ |
Simon Glass | 1f338e0 | 2019-09-25 08:11:11 -0600 | [diff] [blame] | 1283 | $(if $(BINMAN_VERBOSE),-v$(BINMAN_VERBOSE)) \ |
Simon Glass | bd4d0dc | 2020-09-01 05:14:00 -0600 | [diff] [blame] | 1284 | build -u -d u-boot.dtb -O . -m --allow-missing \ |
Simon Glass | a3c0055 | 2018-11-06 15:21:31 -0700 | [diff] [blame] | 1285 | -I . -I $(srctree) -I $(srctree)/board/$(BOARDDIR) \ |
Simon Glass | cfa3db6 | 2020-09-01 05:14:01 -0600 | [diff] [blame] | 1286 | -I arch/$(ARCH)/dts -a of-list=$(CONFIG_OF_LIST) \ |
| 1287 | -a atf-bl31-path=${BL31} \ |
Simon Glass | c0f1ebe | 2020-09-06 10:39:08 -0600 | [diff] [blame] | 1288 | -a default-dt=$(default_dt) \ |
Samuel Holland | 18bd455 | 2020-10-21 21:12:15 -0500 | [diff] [blame] | 1289 | -a scp-path=$(SCP) \ |
Simon Glass | cfee2b2 | 2021-03-18 20:25:08 +1300 | [diff] [blame] | 1290 | -a spl-bss-pad=$(if $(CONFIG_SPL_SEPARATE_BSS),,1) \ |
| 1291 | -a tpl-bss-pad=$(if $(CONFIG_TPL_SEPARATE_BSS),,1) \ |
| 1292 | -a spl-dtb=$(have_spl_dt) -a tpl-dtb=$(have_tpl_dt) \ |
Stephen Warren | 4f4fb85 | 2019-07-19 11:21:17 -0600 | [diff] [blame] | 1293 | $(BINMAN_$(@F)) |
Simon Glass | 17a944b | 2016-11-25 20:15:57 -0700 | [diff] [blame] | 1294 | |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 1295 | OBJCOPYFLAGS_u-boot.ldr.hex := -I binary -O ihex |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 1296 | |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 1297 | OBJCOPYFLAGS_u-boot.ldr.srec := -I binary -O srec |
| 1298 | |
| 1299 | u-boot.ldr.hex u-boot.ldr.srec: u-boot.ldr FORCE |
| 1300 | $(call if_changed,objcopy) |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 1301 | |
Stefan Roese | b40bda6 | 2012-08-16 17:54:52 +0200 | [diff] [blame] | 1302 | # |
| 1303 | # U-Boot entry point, needed for booting of full-blown U-Boot |
| 1304 | # from the SPL U-Boot version. |
| 1305 | # |
| 1306 | ifndef CONFIG_SYS_UBOOT_START |
Patrice Chotard | 38a6cce | 2019-12-06 15:01:48 +0100 | [diff] [blame] | 1307 | CONFIG_SYS_UBOOT_START := $(CONFIG_SYS_TEXT_BASE) |
Stefan Roese | b40bda6 | 2012-08-16 17:54:52 +0200 | [diff] [blame] | 1308 | endif |
| 1309 | |
Michal Simek | fc8db75 | 2019-10-02 15:53:12 +0200 | [diff] [blame] | 1310 | # Boards with more complex image requirements can provide an .its source file |
Andre Przywara | 1a12fdc | 2017-04-26 01:32:45 +0100 | [diff] [blame] | 1311 | # or a generator script |
Simon Glass | f4a43d2 | 2020-07-19 13:56:11 -0600 | [diff] [blame] | 1312 | # NOTE: Please do not use this. We are migrating away from Makefile rules to use |
| 1313 | # binman instead. |
Andre Przywara | 1a12fdc | 2017-04-26 01:32:45 +0100 | [diff] [blame] | 1314 | ifneq ($(CONFIG_SPL_FIT_SOURCE),"") |
Patrick Delaunay | 0015e6d | 2020-04-23 09:39:08 +0200 | [diff] [blame] | 1315 | U_BOOT_ITS := u-boot.its |
| 1316 | $(U_BOOT_ITS): $(subst ",,$(CONFIG_SPL_FIT_SOURCE)) |
| 1317 | $(call if_changed,copy) |
Andre Przywara | 1a12fdc | 2017-04-26 01:32:45 +0100 | [diff] [blame] | 1318 | else |
Simon Glass | a8f3ace | 2020-07-19 13:56:10 -0600 | [diff] [blame] | 1319 | ifneq ($(CONFIG_USE_SPL_FIT_GENERATOR),) |
Andre Przywara | 1a12fdc | 2017-04-26 01:32:45 +0100 | [diff] [blame] | 1320 | U_BOOT_ITS := u-boot.its |
Chris Spencer | e3bc7c6 | 2018-12-20 09:25:24 +0000 | [diff] [blame] | 1321 | ifeq ($(CONFIG_SPL_FIT_GENERATOR),"arch/arm/mach-imx/mkimage_fit_atf.sh") |
| 1322 | U_BOOT_ITS_DEPS += u-boot-nodtb.bin |
| 1323 | endif |
Andreas Färber | c29c1e6 | 2018-06-03 07:23:58 +0200 | [diff] [blame] | 1324 | ifeq ($(CONFIG_SPL_FIT_GENERATOR),"arch/arm/mach-rockchip/make_fit_atf.py") |
| 1325 | U_BOOT_ITS_DEPS += u-boot |
| 1326 | endif |
| 1327 | $(U_BOOT_ITS): $(U_BOOT_ITS_DEPS) FORCE |
Andre Przywara | 1a12fdc | 2017-04-26 01:32:45 +0100 | [diff] [blame] | 1328 | $(srctree)/$(CONFIG_SPL_FIT_GENERATOR) \ |
| 1329 | $(patsubst %,arch/$(ARCH)/dts/%.dtb,$(subst ",,$(CONFIG_OF_LIST))) > $@ |
| 1330 | endif |
| 1331 | endif |
| 1332 | |
Simon Glass | cdf1724 | 2016-02-22 22:55:57 -0700 | [diff] [blame] | 1333 | ifdef CONFIG_SPL_LOAD_FIT |
| 1334 | MKIMAGEFLAGS_u-boot.img = -f auto -A $(ARCH) -T firmware -C none -O u-boot \ |
| 1335 | -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \ |
Sjoerd Simons | 80cc951 | 2019-06-18 22:13:20 +0200 | [diff] [blame] | 1336 | -p $(CONFIG_FIT_EXTERNAL_OFFSET) \ |
Simon Glass | cdf1724 | 2016-02-22 22:55:57 -0700 | [diff] [blame] | 1337 | -n "U-Boot $(UBOOTRELEASE) for $(BOARD) board" -E \ |
Klaus Heinrich Kiwi | 4e040b4 | 2021-02-09 15:41:55 -0300 | [diff] [blame] | 1338 | $(patsubst %,-b arch/$(ARCH)/dts/%.dtb,$(subst ",,$(DEVICE_TREE))) \ |
Jean-Jacques Hiblot | 557bc97 | 2019-10-22 16:39:21 +0200 | [diff] [blame] | 1339 | $(patsubst %,-b arch/$(ARCH)/dts/%.dtb,$(subst ",,$(CONFIG_OF_LIST))) \ |
| 1340 | $(patsubst %,-b arch/$(ARCH)/dts/%.dtbo,$(subst ",,$(CONFIG_OF_OVERLAY_LIST))) |
Simon Glass | cdf1724 | 2016-02-22 22:55:57 -0700 | [diff] [blame] | 1341 | else |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 1342 | MKIMAGEFLAGS_u-boot.img = -A $(ARCH) -T firmware -C none -O u-boot \ |
| 1343 | -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \ |
| 1344 | -n "U-Boot $(UBOOTRELEASE) for $(BOARD) board" |
Sven Ebenfeld | d21bd69 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 1345 | MKIMAGEFLAGS_u-boot-ivt.img = -A $(ARCH) -T firmware_ivt -C none -O u-boot \ |
| 1346 | -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \ |
| 1347 | -n "U-Boot $(UBOOTRELEASE) for $(BOARD) board" |
Sven Ebenfeld | 1f6a664 | 2016-11-06 16:37:58 +0100 | [diff] [blame] | 1348 | u-boot-ivt.img: MKIMAGEOUTPUT = u-boot-ivt.img.log |
Simon Glass | cdf1724 | 2016-02-22 22:55:57 -0700 | [diff] [blame] | 1349 | endif |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 1350 | |
Simon Glass | dae6e7b | 2016-01-31 18:10:54 -0700 | [diff] [blame] | 1351 | MKIMAGEFLAGS_u-boot-dtb.img = $(MKIMAGEFLAGS_u-boot.img) |
| 1352 | |
Bin Meng | 6cdd177 | 2019-10-28 07:25:01 -0700 | [diff] [blame] | 1353 | # Some boards have the kwbimage.cfg file written in advance, while some |
| 1354 | # other boards generate it on the fly during the build in the build tree. |
| 1355 | # Let's check if the file exists in the build tree first, otherwise we |
| 1356 | # fall back to use the one in the source tree. |
| 1357 | KWD_CONFIG_FILE = $(shell \ |
| 1358 | if [ -f $(objtree)/$(CONFIG_SYS_KWD_CONFIG:"%"=%) ]; then \ |
| 1359 | echo -n $(objtree)/$(CONFIG_SYS_KWD_CONFIG:"%"=%); \ |
| 1360 | else \ |
| 1361 | echo -n $(srctree)/$(CONFIG_SYS_KWD_CONFIG:"%"=%); \ |
| 1362 | fi) |
| 1363 | |
| 1364 | MKIMAGEFLAGS_u-boot.kwb = -n $(KWD_CONFIG_FILE) \ |
Masahiro Yamada | 4ab3fc5 | 2014-03-11 11:05:17 +0900 | [diff] [blame] | 1365 | -T kwbimage -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 1366 | |
Bin Meng | 6cdd177 | 2019-10-28 07:25:01 -0700 | [diff] [blame] | 1367 | MKIMAGEFLAGS_u-boot-spl.kwb = -n $(KWD_CONFIG_FILE) \ |
Mario Six | a1b6b0a | 2017-01-11 16:01:00 +0100 | [diff] [blame] | 1368 | -T kwbimage -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) \ |
| 1369 | $(if $(KEYDIR),-k $(KEYDIR)) |
Stefan Roese | a90ffb5 | 2015-01-19 11:33:45 +0100 | [diff] [blame] | 1370 | |
Masahiro Yamada | e4536f8 | 2014-03-11 11:05:16 +0900 | [diff] [blame] | 1371 | MKIMAGEFLAGS_u-boot.pbl = -n $(srctree)/$(CONFIG_SYS_FSL_PBL_RCW:"%"=%) \ |
| 1372 | -R $(srctree)/$(CONFIG_SYS_FSL_PBL_PBI:"%"=%) -T pblimage |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 1373 | |
Hou Zhiqiang | bcda5b0 | 2019-08-20 09:35:23 +0000 | [diff] [blame] | 1374 | ifeq ($(CONFIG_MPC85xx)$(CONFIG_OF_SEPARATE),yy) |
| 1375 | UBOOT_BIN := u-boot-with-dtb.bin |
| 1376 | else |
| 1377 | UBOOT_BIN := u-boot.bin |
| 1378 | endif |
| 1379 | |
Weijie Gao | a38f84b | 2020-04-21 09:28:39 +0200 | [diff] [blame] | 1380 | MKIMAGEFLAGS_u-boot-lzma.img = -A $(ARCH) -T standalone -C lzma -O u-boot \ |
| 1381 | -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_UBOOT_START) \ |
| 1382 | -n "U-Boot $(UBOOTRELEASE) for $(BOARD) board" |
| 1383 | |
| 1384 | u-boot.bin.lzma: u-boot.bin FORCE |
| 1385 | $(call if_changed,lzma) |
| 1386 | |
| 1387 | u-boot-lzma.img: u-boot.bin.lzma FORCE |
| 1388 | $(call if_changed,mkimage) |
| 1389 | |
Sven Ebenfeld | d21bd69 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 1390 | u-boot-dtb.img u-boot.img u-boot.kwb u-boot.pbl u-boot-ivt.img: \ |
Lukas Auer | 2c76861 | 2019-08-21 21:14:41 +0200 | [diff] [blame] | 1391 | $(if $(CONFIG_SPL_LOAD_FIT),u-boot-nodtb.bin \ |
| 1392 | $(if $(CONFIG_OF_SEPARATE)$(CONFIG_OF_EMBED)$(CONFIG_OF_HOSTFILE),dts/dt.dtb) \ |
Tom Rini | e4b8dd9 | 2019-08-27 07:11:37 -0400 | [diff] [blame] | 1393 | ,$(UBOOT_BIN)) FORCE |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 1394 | $(call if_changed,mkimage) |
Simon Goldschmidt | 45297e2 | 2019-01-11 20:56:02 +0100 | [diff] [blame] | 1395 | $(BOARD_SIZE_CHECK) |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 1396 | |
Marek Vasut | 7a77836 | 2019-03-06 22:04:00 +0100 | [diff] [blame] | 1397 | ifeq ($(CONFIG_SPL_LOAD_FIT_FULL),y) |
| 1398 | MKIMAGEFLAGS_u-boot.itb = |
| 1399 | else |
| 1400 | MKIMAGEFLAGS_u-boot.itb = -E |
| 1401 | endif |
| 1402 | |
Samuel Holland | 509978e | 2020-10-21 21:12:08 -0500 | [diff] [blame] | 1403 | ifdef U_BOOT_ITS |
Lukas Auer | 2c76861 | 2019-08-21 21:14:41 +0200 | [diff] [blame] | 1404 | u-boot.itb: u-boot-nodtb.bin \ |
| 1405 | $(if $(CONFIG_OF_SEPARATE)$(CONFIG_OF_EMBED)$(CONFIG_OF_HOSTFILE),dts/dt.dtb) \ |
| 1406 | $(U_BOOT_ITS) FORCE |
Andre Przywara | 1a12fdc | 2017-04-26 01:32:45 +0100 | [diff] [blame] | 1407 | $(call if_changed,mkfitimage) |
Maxime Ripard | e89f5591f | 2018-01-16 09:44:23 +0100 | [diff] [blame] | 1408 | $(BOARD_SIZE_CHECK) |
Samuel Holland | 509978e | 2020-10-21 21:12:08 -0500 | [diff] [blame] | 1409 | endif |
Andre Przywara | 1a12fdc | 2017-04-26 01:32:45 +0100 | [diff] [blame] | 1410 | |
Simon Glass | 73c5c39 | 2016-01-31 18:10:55 -0700 | [diff] [blame] | 1411 | u-boot-spl.kwb: u-boot.img spl/u-boot-spl.bin FORCE |
Stefan Roese | a90ffb5 | 2015-01-19 11:33:45 +0100 | [diff] [blame] | 1412 | $(call if_changed,mkimage) |
| 1413 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1414 | u-boot.sha1: u-boot.bin |
| 1415 | tools/ubsha1 u-boot.bin |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 1416 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1417 | u-boot.dis: u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1418 | $(OBJDUMP) -d $< > $@ |
| 1419 | |
York Sun | 7550dbe | 2018-06-14 14:38:48 -0700 | [diff] [blame] | 1420 | ifneq ($(CONFIG_SPL_PAYLOAD),) |
| 1421 | SPL_PAYLOAD := $(CONFIG_SPL_PAYLOAD:"%"=%) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 1422 | else |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1423 | SPL_PAYLOAD := u-boot.bin |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 1424 | endif |
Scott Wood | 74752ba | 2012-12-06 13:33:16 +0000 | [diff] [blame] | 1425 | |
Stefan Roese | 9ea6f71 | 2019-04-03 15:24:50 +0200 | [diff] [blame] | 1426 | SPL_IMAGE := $(CONFIG_SPL_IMAGE:"%"=%) |
| 1427 | |
Masahiro Yamada | 982a119 | 2014-02-24 11:12:17 +0900 | [diff] [blame] | 1428 | OBJCOPYFLAGS_u-boot-with-spl.bin = -I binary -O binary \ |
| 1429 | --pad-to=$(CONFIG_SPL_PAD_TO) |
Stefan Roese | 9ea6f71 | 2019-04-03 15:24:50 +0200 | [diff] [blame] | 1430 | u-boot-with-spl.bin: $(SPL_IMAGE) $(SPL_PAYLOAD) FORCE |
Masahiro Yamada | 982a119 | 2014-02-24 11:12:17 +0900 | [diff] [blame] | 1431 | $(call if_changed,pad_cat) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 1432 | |
Matwey V. Kornilov | 1b0a936 | 2019-09-03 19:29:01 +0300 | [diff] [blame] | 1433 | ifeq ($(CONFIG_ARCH_ROCKCHIP),y) |
Jagan Teki | b1022d5 | 2020-01-10 00:16:16 +0530 | [diff] [blame] | 1434 | |
Jagan Teki | 66ffe31 | 2020-01-10 00:16:18 +0530 | [diff] [blame] | 1435 | # TPL + SPL |
| 1436 | ifeq ($(CONFIG_SPL)$(CONFIG_TPL),yy) |
Jagan Teki | f6f9aff | 2020-06-04 20:21:38 +0530 | [diff] [blame] | 1437 | MKIMAGEFLAGS_u-boot-tpl-rockchip.bin = -n $(CONFIG_SYS_SOC) -T rksd |
Jagan Teki | 3029a7b | 2020-01-10 00:16:17 +0530 | [diff] [blame] | 1438 | tpl/u-boot-tpl-rockchip.bin: tpl/u-boot-tpl.bin FORCE |
Matwey V. Kornilov | 1b0a936 | 2019-09-03 19:29:01 +0300 | [diff] [blame] | 1439 | $(call if_changed,mkimage) |
Jagan Teki | 3029a7b | 2020-01-10 00:16:17 +0530 | [diff] [blame] | 1440 | idbloader.img: tpl/u-boot-tpl-rockchip.bin spl/u-boot-spl.bin FORCE |
Matwey V. Kornilov | 1b0a936 | 2019-09-03 19:29:01 +0300 | [diff] [blame] | 1441 | $(call if_changed,cat) |
Jagan Teki | 66ffe31 | 2020-01-10 00:16:18 +0530 | [diff] [blame] | 1442 | else |
Jagan Teki | f6f9aff | 2020-06-04 20:21:38 +0530 | [diff] [blame] | 1443 | MKIMAGEFLAGS_idbloader.img = -n $(CONFIG_SYS_SOC) -T rksd |
Jagan Teki | 66ffe31 | 2020-01-10 00:16:18 +0530 | [diff] [blame] | 1444 | idbloader.img: spl/u-boot-spl.bin FORCE |
| 1445 | $(call if_changed,mkimage) |
| 1446 | endif |
| 1447 | |
Simon Glass | e999bea | 2020-07-19 13:56:07 -0600 | [diff] [blame] | 1448 | ifeq ($(CONFIG_ARM64),y) |
Jagan Teki | 79030a4 | 2020-01-10 00:16:21 +0530 | [diff] [blame] | 1449 | OBJCOPYFLAGS_u-boot-rockchip.bin = -I binary -O binary \ |
| 1450 | --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff |
| 1451 | u-boot-rockchip.bin: idbloader.img u-boot.itb FORCE |
| 1452 | $(call if_changed,pad_cat) |
| 1453 | endif # CONFIG_ARM64 |
| 1454 | |
| 1455 | endif # CONFIG_ARCH_ROCKCHIP |
Matwey V. Kornilov | 1b0a936 | 2019-09-03 19:29:01 +0300 | [diff] [blame] | 1456 | |
Vladimir Zapolskiy | e3e0819 | 2018-09-17 21:43:04 +0300 | [diff] [blame] | 1457 | ifeq ($(CONFIG_ARCH_LPC32XX)$(CONFIG_SPL),yy) |
Albert ARIBAUD \(3ADEV\) | 412ae53 | 2015-03-31 11:40:51 +0200 | [diff] [blame] | 1458 | MKIMAGEFLAGS_lpc32xx-spl.img = -T lpc32xximage -a $(CONFIG_SPL_TEXT_BASE) |
| 1459 | |
| 1460 | lpc32xx-spl.img: spl/u-boot-spl.bin FORCE |
| 1461 | $(call if_changed,mkimage) |
| 1462 | |
| 1463 | OBJCOPYFLAGS_lpc32xx-boot-0.bin = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) |
| 1464 | |
Masahiro Yamada | 514ec43 | 2016-02-05 17:55:13 +0900 | [diff] [blame] | 1465 | lpc32xx-boot-0.bin: lpc32xx-spl.img FORCE |
Albert ARIBAUD \(3ADEV\) | 412ae53 | 2015-03-31 11:40:51 +0200 | [diff] [blame] | 1466 | $(call if_changed,objcopy) |
| 1467 | |
| 1468 | OBJCOPYFLAGS_lpc32xx-boot-1.bin = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) |
| 1469 | |
Masahiro Yamada | 514ec43 | 2016-02-05 17:55:13 +0900 | [diff] [blame] | 1470 | lpc32xx-boot-1.bin: lpc32xx-spl.img FORCE |
Albert ARIBAUD \(3ADEV\) | 412ae53 | 2015-03-31 11:40:51 +0200 | [diff] [blame] | 1471 | $(call if_changed,objcopy) |
| 1472 | |
Masahiro Yamada | 514ec43 | 2016-02-05 17:55:13 +0900 | [diff] [blame] | 1473 | lpc32xx-full.bin: lpc32xx-boot-0.bin lpc32xx-boot-1.bin u-boot.img FORCE |
Albert ARIBAUD \(3ADEV\) | 412ae53 | 2015-03-31 11:40:51 +0200 | [diff] [blame] | 1474 | $(call if_changed,cat) |
| 1475 | |
Vladimir Zapolskiy | e3e0819 | 2018-09-17 21:43:04 +0300 | [diff] [blame] | 1476 | endif |
Albert ARIBAUD \(3ADEV\) | 412ae53 | 2015-03-31 11:40:51 +0200 | [diff] [blame] | 1477 | |
Masahiro Yamada | 982a119 | 2014-02-24 11:12:17 +0900 | [diff] [blame] | 1478 | OBJCOPYFLAGS_u-boot-with-tpl.bin = -I binary -O binary \ |
| 1479 | --pad-to=$(CONFIG_TPL_PAD_TO) |
| 1480 | tpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin FORCE |
| 1481 | $(call if_changed,pad_cat) |
Heiko Schocher | 7816f2c | 2011-07-16 00:06:42 +0000 | [diff] [blame] | 1482 | |
Masahiro Yamada | 630d234 | 2014-02-24 11:12:21 +0900 | [diff] [blame] | 1483 | SPL: spl/u-boot-spl.bin FORCE |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 1484 | $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@ |
Masahiro Yamada | 630d234 | 2014-02-24 11:12:21 +0900 | [diff] [blame] | 1485 | |
Peng Fan | caceb73 | 2018-12-21 06:21:31 +0000 | [diff] [blame] | 1486 | ifeq ($(CONFIG_ARCH_IMX8M)$(CONFIG_ARCH_IMX8), y) |
Peng Fan | 700315c | 2019-08-22 07:42:41 +0000 | [diff] [blame] | 1487 | ifeq ($(CONFIG_SPL_LOAD_IMX_CONTAINER), y) |
| 1488 | u-boot.cnt: u-boot.bin FORCE |
| 1489 | $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@ |
| 1490 | |
| 1491 | flash.bin: spl/u-boot-spl.bin u-boot.cnt FORCE |
| 1492 | $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@ |
| 1493 | else |
Marek Vasut | bd9059c | 2021-02-25 21:50:59 +0100 | [diff] [blame] | 1494 | ifeq ($(CONFIG_BINMAN),y) |
| 1495 | flash.bin: spl/u-boot-spl.bin $(INPUTS-y) FORCE |
| 1496 | $(call if_changed,binman) |
| 1497 | $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@ |
| 1498 | else |
Peng Fan | 94df988 | 2018-11-20 10:19:46 +0000 | [diff] [blame] | 1499 | flash.bin: spl/u-boot-spl.bin u-boot.itb FORCE |
| 1500 | $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@ |
| 1501 | endif |
Peng Fan | 700315c | 2019-08-22 07:42:41 +0000 | [diff] [blame] | 1502 | endif |
Marek Vasut | bd9059c | 2021-02-25 21:50:59 +0100 | [diff] [blame] | 1503 | endif |
Peng Fan | 94df988 | 2018-11-20 10:19:46 +0000 | [diff] [blame] | 1504 | |
Marek Vasut | 7034478 | 2021-03-01 16:41:28 +0100 | [diff] [blame] | 1505 | u-boot.uim: u-boot.bin FORCE |
| 1506 | $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@ |
| 1507 | |
| 1508 | u-boot-with-spl.imx u-boot-with-nand-spl.imx: SPL $(if $(CONFIG_OF_SEPARATE),u-boot.img,u-boot.uim) FORCE |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 1509 | $(Q)$(MAKE) $(build)=arch/arm/mach-imx $@ |
Benoît Thébaudeau | 7d5a5c7 | 2013-04-11 09:35:57 +0000 | [diff] [blame] | 1510 | |
Masahiro Yamada | 9bf215b | 2014-02-24 11:12:15 +0900 | [diff] [blame] | 1511 | MKIMAGEFLAGS_u-boot.ubl = -n $(UBL_CONFIG) -T ublimage -e $(CONFIG_SYS_TEXT_BASE) |
| 1512 | |
| 1513 | u-boot.ubl: u-boot-with-spl.bin FORCE |
| 1514 | $(call if_changed,mkimage) |
José Miguel Gonçalves | 277f00f | 2012-09-19 01:25:26 +0000 | [diff] [blame] | 1515 | |
Masahiro Yamada | 982a119 | 2014-02-24 11:12:17 +0900 | [diff] [blame] | 1516 | MKIMAGEFLAGS_u-boot-spl.ais = -s -n $(if $(CONFIG_AIS_CONFIG_FILE), \ |
| 1517 | $(srctree)/$(CONFIG_AIS_CONFIG_FILE:"%"=%),"/dev/null") \ |
| 1518 | -T aisimage -e $(CONFIG_SPL_TEXT_BASE) |
| 1519 | spl/u-boot-spl.ais: spl/u-boot-spl.bin FORCE |
| 1520 | $(call if_changed,mkimage) |
Christian Riesch | d36d885 | 2011-12-09 09:47:39 +0000 | [diff] [blame] | 1521 | |
Christian Riesch | 532d531 | 2014-05-07 10:16:28 +0200 | [diff] [blame] | 1522 | OBJCOPYFLAGS_u-boot.ais = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) |
Masahiro Yamada | 982a119 | 2014-02-24 11:12:17 +0900 | [diff] [blame] | 1523 | u-boot.ais: spl/u-boot-spl.ais u-boot.img FORCE |
| 1524 | $(call if_changed,pad_cat) |
Otavio Salvador | a545355 | 2012-08-18 07:25:25 +0000 | [diff] [blame] | 1525 | |
Marek Vasut | 1a9df13 | 2014-04-03 19:12:21 +0200 | [diff] [blame] | 1526 | u-boot-signed.sb: u-boot.bin spl/u-boot-spl.bin |
| 1527 | $(Q)$(MAKE) $(build)=arch/arm/cpu/arm926ejs/mxs u-boot-signed.sb |
Masahiro Yamada | 03c7b3f | 2014-02-24 11:12:13 +0900 | [diff] [blame] | 1528 | u-boot.sb: u-boot.bin spl/u-boot-spl.bin |
Masahiro Yamada | 07e27ce | 2014-03-11 11:05:11 +0900 | [diff] [blame] | 1529 | $(Q)$(MAKE) $(build)=arch/arm/cpu/arm926ejs/mxs u-boot.sb |
Marek Vasut | 30b9b93 | 2011-11-08 23:18:19 +0000 | [diff] [blame] | 1530 | |
Stefan Roese | 94aebe6 | 2012-01-05 11:19:50 +0100 | [diff] [blame] | 1531 | # On x600 (SPEAr600) U-Boot is appended to U-Boot SPL. |
| 1532 | # Both images are created using mkimage (crc etc), so that the ROM |
| 1533 | # bootloader can check its integrity. Padding needs to be done to the |
| 1534 | # SPL image (with mkimage header) and not the binary. Otherwise the resulting image |
| 1535 | # which is loaded/copied by the ROM bootloader to SRAM doesn't fit. |
| 1536 | # The resulting image containing both U-Boot images is called u-boot.spr |
Masahiro Yamada | 982a119 | 2014-02-24 11:12:17 +0900 | [diff] [blame] | 1537 | MKIMAGEFLAGS_u-boot-spl.img = -A $(ARCH) -T firmware -C none \ |
| 1538 | -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER |
| 1539 | spl/u-boot-spl.img: spl/u-boot-spl.bin FORCE |
| 1540 | $(call if_changed,mkimage) |
| 1541 | |
| 1542 | OBJCOPYFLAGS_u-boot.spr = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) \ |
| 1543 | --gap-fill=0xff |
| 1544 | u-boot.spr: spl/u-boot-spl.img u-boot.img FORCE |
| 1545 | $(call if_changed,pad_cat) |
Stefan Roese | 94aebe6 | 2012-01-05 11:19:50 +0100 | [diff] [blame] | 1546 | |
Marek Vasut | 333b720 | 2015-07-15 02:53:45 +0200 | [diff] [blame] | 1547 | ifneq ($(CONFIG_ARCH_SOCFPGA),) |
Chee Hong Ang | 505dc1c | 2020-08-11 21:52:30 +0800 | [diff] [blame] | 1548 | quiet_cmd_gensplx4 = GENSPLX4 $@ |
Ley Foon Tan | 40551cf | 2021-01-13 18:53:05 +0800 | [diff] [blame] | 1549 | cmd_gensplx4 = $(OBJCOPY) -I binary -O binary --gap-fill=0x0 \ |
| 1550 | --pad-to=$(CONFIG_SPL_PAD_TO) \ |
| 1551 | spl/u-boot-spl.sfp spl/u-boot-spl.sfp && \ |
| 1552 | cat spl/u-boot-spl.sfp spl/u-boot-spl.sfp \ |
Pali Rohár | 4532bf4 | 2020-10-26 14:10:49 +0100 | [diff] [blame] | 1553 | spl/u-boot-spl.sfp spl/u-boot-spl.sfp > $@ || { rm -f $@; false; } |
Chee Hong Ang | 505dc1c | 2020-08-11 21:52:30 +0800 | [diff] [blame] | 1554 | spl/u-boot-splx4.sfp: spl/u-boot-spl.sfp FORCE |
| 1555 | $(call if_changed,gensplx4) |
| 1556 | |
Marek Vasut | 333b720 | 2015-07-15 02:53:45 +0200 | [diff] [blame] | 1557 | quiet_cmd_socboot = SOCBOOT $@ |
Pali Rohár | 4532bf4 | 2020-10-26 14:10:49 +0100 | [diff] [blame] | 1558 | cmd_socboot = cat spl/u-boot-splx4.sfp u-boot.img > $@ || { rm -f $@; false; } |
Chee Hong Ang | 505dc1c | 2020-08-11 21:52:30 +0800 | [diff] [blame] | 1559 | u-boot-with-spl.sfp: spl/u-boot-splx4.sfp u-boot.img FORCE |
Marek Vasut | 333b720 | 2015-07-15 02:53:45 +0200 | [diff] [blame] | 1560 | $(call if_changed,socboot) |
Marek Vasut | 533832c | 2019-11-20 22:36:45 +0100 | [diff] [blame] | 1561 | |
Chee Hong Ang | 505dc1c | 2020-08-11 21:52:30 +0800 | [diff] [blame] | 1562 | quiet_cmd_gensplpadx4 = GENSPLPADX4 $@ |
| 1563 | cmd_gensplpadx4 = dd if=/dev/zero of=spl/u-boot-spl.pad bs=64 count=1024 ; \ |
Marek Vasut | 533832c | 2019-11-20 22:36:45 +0100 | [diff] [blame] | 1564 | cat spl/u-boot-spl.sfp spl/u-boot-spl.pad \ |
| 1565 | spl/u-boot-spl.sfp spl/u-boot-spl.pad \ |
| 1566 | spl/u-boot-spl.sfp spl/u-boot-spl.pad \ |
Chee Hong Ang | 505dc1c | 2020-08-11 21:52:30 +0800 | [diff] [blame] | 1567 | spl/u-boot-spl.sfp spl/u-boot-spl.pad > $@ || \ |
Pali Rohár | 4532bf4 | 2020-10-26 14:10:49 +0100 | [diff] [blame] | 1568 | { rm -f $@ spl/u-boot-spl.pad; false; } |
Chee Hong Ang | 505dc1c | 2020-08-11 21:52:30 +0800 | [diff] [blame] | 1569 | u-boot-spl-padx4.sfp: spl/u-boot-spl.sfp FORCE |
| 1570 | $(call if_changed,gensplpadx4) |
| 1571 | |
| 1572 | quiet_cmd_socnandboot = SOCNANDBOOT $@ |
Pali Rohár | 4532bf4 | 2020-10-26 14:10:49 +0100 | [diff] [blame] | 1573 | cmd_socnandboot = cat u-boot-spl-padx4.sfp u-boot.img > $@ || { rm -f $@; false; } |
Chee Hong Ang | 505dc1c | 2020-08-11 21:52:30 +0800 | [diff] [blame] | 1574 | u-boot-with-nand-spl.sfp: u-boot-spl-padx4.sfp u-boot.img FORCE |
Marek Vasut | 533832c | 2019-11-20 22:36:45 +0100 | [diff] [blame] | 1575 | $(call if_changed,socnandboot) |
| 1576 | |
Marek Vasut | 333b720 | 2015-07-15 02:53:45 +0200 | [diff] [blame] | 1577 | endif |
| 1578 | |
Jagdish Gediya | 96699f0 | 2018-09-03 21:35:10 +0530 | [diff] [blame] | 1579 | ifeq ($(CONFIG_MPC85xx)$(CONFIG_OF_SEPARATE),yy) |
| 1580 | u-boot-with-dtb.bin: u-boot.bin u-boot.dtb \ |
| 1581 | $(if $(CONFIG_MPC85XX_HAVE_RESET_VECTOR), u-boot-br.bin) FORCE |
| 1582 | $(call if_changed,binman) |
| 1583 | |
| 1584 | ifeq ($(CONFIG_MPC85XX_HAVE_RESET_VECTOR),y) |
| 1585 | OBJCOPYFLAGS_u-boot-br.bin := -O binary -j .bootpg -j .resetvec |
| 1586 | u-boot-br.bin: u-boot FORCE |
| 1587 | $(call if_changed,objcopy) |
| 1588 | endif |
| 1589 | endif |
| 1590 | |
Simon Glass | 0adf8d3 | 2016-03-11 22:07:16 -0700 | [diff] [blame] | 1591 | quiet_cmd_ldr = LD $@ |
| 1592 | cmd_ldr = $(LD) $(LDFLAGS_$(@F)) \ |
| 1593 | $(filter-out FORCE,$^) -o $@ |
| 1594 | |
Simon Glass | bcd4e6f | 2020-07-19 13:55:52 -0600 | [diff] [blame] | 1595 | ifdef CONFIG_X86 |
Simon Glass | 5e23918 | 2019-08-24 07:22:49 -0600 | [diff] [blame] | 1596 | OBJCOPYFLAGS_u-boot-x86-start16.bin := -O binary -j .start16 |
| 1597 | u-boot-x86-start16.bin: u-boot FORCE |
| 1598 | $(call if_changed,objcopy) |
| 1599 | |
| 1600 | OBJCOPYFLAGS_u-boot-x86-reset16.bin := -O binary -j .resetvec |
| 1601 | u-boot-x86-reset16.bin: u-boot FORCE |
Simon Glass | fce7b27 | 2014-11-12 22:42:08 -0700 | [diff] [blame] | 1602 | $(call if_changed,objcopy) |
Simon Glass | aafe5c5 | 2020-07-19 13:55:54 -0600 | [diff] [blame] | 1603 | |
Simon Glass | 42b18df | 2020-07-19 13:56:03 -0600 | [diff] [blame] | 1604 | endif # CONFIG_X86 |
Simon Glass | bcd4e6f | 2020-07-19 13:55:52 -0600 | [diff] [blame] | 1605 | |
Simon Glass | 08aeb8b | 2015-08-04 12:33:43 -0600 | [diff] [blame] | 1606 | OBJCOPYFLAGS_u-boot-app.efi := $(OBJCOPYFLAGS_EFI) |
| 1607 | u-boot-app.efi: u-boot FORCE |
| 1608 | $(call if_changed,zobjcopy) |
| 1609 | |
Simon Glass | 73c5c39 | 2016-01-31 18:10:55 -0700 | [diff] [blame] | 1610 | u-boot.bin.o: u-boot.bin FORCE |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 1611 | $(call if_changed,efipayload) |
| 1612 | |
| 1613 | u-boot-payload.lds: $(LDSCRIPT_EFI) FORCE |
| 1614 | $(call if_changed_dep,cpp_lds) |
| 1615 | |
| 1616 | # Rule to link the EFI payload which contains a stub and a U-Boot binary |
| 1617 | quiet_cmd_u-boot_payload ?= LD $@ |
| 1618 | cmd_u-boot_payload ?= $(LD) $(LDFLAGS_EFI_PAYLOAD) -o $@ \ |
Simon Glass | 96a8d40 | 2015-08-04 12:33:56 -0600 | [diff] [blame] | 1619 | -T u-boot-payload.lds arch/x86/cpu/call32.o \ |
Simon Glass | 73c5c39 | 2016-01-31 18:10:55 -0700 | [diff] [blame] | 1620 | lib/efi/efi.o lib/efi/efi_stub.o u-boot.bin.o \ |
Simon Glass | 2dcd4e9 | 2016-11-07 08:47:14 -0700 | [diff] [blame] | 1621 | $(addprefix arch/$(ARCH)/lib/,$(EFISTUB)) |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 1622 | |
Simon Glass | 73c5c39 | 2016-01-31 18:10:55 -0700 | [diff] [blame] | 1623 | u-boot-payload: u-boot.bin.o u-boot-payload.lds FORCE |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 1624 | $(call if_changed,u-boot_payload) |
| 1625 | |
| 1626 | OBJCOPYFLAGS_u-boot-payload.efi := $(OBJCOPYFLAGS_EFI) |
| 1627 | u-boot-payload.efi: u-boot-payload FORCE |
| 1628 | $(call if_changed,zobjcopy) |
| 1629 | |
Masahiro Yamada | ee0acfa | 2014-02-24 11:12:16 +0900 | [diff] [blame] | 1630 | u-boot-img.bin: spl/u-boot-spl.bin u-boot.img FORCE |
| 1631 | $(call if_changed,cat) |
Stefan Roese | fb3d2b8 | 2012-08-24 17:36:53 +0200 | [diff] [blame] | 1632 | |
Prabhakar Kushwaha | 89ad7be | 2014-04-08 19:13:34 +0530 | [diff] [blame] | 1633 | #Add a target to create boot binary having SPL binary in PBI format |
| 1634 | #concatenated with u-boot binary. It is need by PowerPC SoC having |
| 1635 | #internal SRAM <= 512KB. |
| 1636 | MKIMAGEFLAGS_u-boot-spl.pbl = -n $(srctree)/$(CONFIG_SYS_FSL_PBL_RCW:"%"=%) \ |
Alison Wang | 94cb17d | 2014-12-03 15:00:41 +0800 | [diff] [blame] | 1637 | -R $(srctree)/$(CONFIG_SYS_FSL_PBL_PBI:"%"=%) -T pblimage \ |
| 1638 | -A $(ARCH) -a $(CONFIG_SPL_TEXT_BASE) |
Prabhakar Kushwaha | 89ad7be | 2014-04-08 19:13:34 +0530 | [diff] [blame] | 1639 | |
| 1640 | spl/u-boot-spl.pbl: spl/u-boot-spl.bin FORCE |
| 1641 | $(call if_changed,mkimage) |
| 1642 | |
Alison Wang | 45c2e48 | 2014-12-03 15:00:42 +0800 | [diff] [blame] | 1643 | ifeq ($(ARCH),arm) |
| 1644 | UBOOT_BINLOAD := u-boot.img |
| 1645 | else |
Jagdish Gediya | 96699f0 | 2018-09-03 21:35:10 +0530 | [diff] [blame] | 1646 | ifeq ($(CONFIG_MPC85xx)$(CONFIG_OF_SEPARATE),yy) |
| 1647 | UBOOT_BINLOAD := u-boot-with-dtb.bin |
| 1648 | else |
Alison Wang | 45c2e48 | 2014-12-03 15:00:42 +0800 | [diff] [blame] | 1649 | UBOOT_BINLOAD := u-boot.bin |
| 1650 | endif |
Jagdish Gediya | 96699f0 | 2018-09-03 21:35:10 +0530 | [diff] [blame] | 1651 | endif |
Alison Wang | 45c2e48 | 2014-12-03 15:00:42 +0800 | [diff] [blame] | 1652 | |
Prabhakar Kushwaha | 89ad7be | 2014-04-08 19:13:34 +0530 | [diff] [blame] | 1653 | OBJCOPYFLAGS_u-boot-with-spl-pbl.bin = -I binary -O binary --pad-to=$(CONFIG_SPL_PAD_TO) \ |
| 1654 | --gap-fill=0xff |
| 1655 | |
Alison Wang | 45c2e48 | 2014-12-03 15:00:42 +0800 | [diff] [blame] | 1656 | u-boot-with-spl-pbl.bin: spl/u-boot-spl.pbl $(UBOOT_BINLOAD) FORCE |
Prabhakar Kushwaha | 89ad7be | 2014-04-08 19:13:34 +0530 | [diff] [blame] | 1657 | $(call if_changed,pad_cat) |
| 1658 | |
Stefan Roese | ecddccd | 2013-02-22 11:36:50 +0100 | [diff] [blame] | 1659 | # PPC4xx needs the SPL at the end of the image, since the reset vector |
| 1660 | # is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target |
| 1661 | # and need to introduce a new build target with the full blown U-Boot |
| 1662 | # at the start padded up to the start of the SPL image. And then concat |
| 1663 | # the SPL image to the end. |
Masahiro Yamada | 982a119 | 2014-02-24 11:12:17 +0900 | [diff] [blame] | 1664 | |
| 1665 | OBJCOPYFLAGS_u-boot-img-spl-at-end.bin := -I binary -O binary \ |
| 1666 | --pad-to=$(CONFIG_UBOOT_PAD_TO) --gap-fill=0xff |
| 1667 | u-boot-img-spl-at-end.bin: u-boot.img spl/u-boot-spl.bin FORCE |
| 1668 | $(call if_changed,pad_cat) |
Stefan Roese | ecddccd | 2013-02-22 11:36:50 +0100 | [diff] [blame] | 1669 | |
Álvaro Fernández Rojas | e69945e | 2017-04-20 20:36:28 +0200 | [diff] [blame] | 1670 | quiet_cmd_u-boot-elf ?= LD $@ |
| 1671 | cmd_u-boot-elf ?= $(LD) u-boot-elf.o -o $@ \ |
Michal Simek | e14ba8a | 2020-03-30 13:58:59 +0200 | [diff] [blame] | 1672 | -T u-boot-elf.lds --defsym=$(CONFIG_PLATFORM_ELFENTRY)=$(CONFIG_SYS_TEXT_BASE) \ |
Álvaro Fernández Rojas | e69945e | 2017-04-20 20:36:28 +0200 | [diff] [blame] | 1673 | -Ttext=$(CONFIG_SYS_TEXT_BASE) |
Michal Simek | e14ba8a | 2020-03-30 13:58:59 +0200 | [diff] [blame] | 1674 | u-boot.elf: u-boot.bin u-boot-elf.lds |
Álvaro Fernández Rojas | e69945e | 2017-04-20 20:36:28 +0200 | [diff] [blame] | 1675 | $(Q)$(OBJCOPY) -I binary $(PLATFORM_ELFFLAGS) $< u-boot-elf.o |
| 1676 | $(call if_changed,u-boot-elf) |
Scott Wood | f4dc714 | 2013-12-14 11:47:33 +0800 | [diff] [blame] | 1677 | |
Michal Simek | e14ba8a | 2020-03-30 13:58:59 +0200 | [diff] [blame] | 1678 | u-boot-elf.lds: arch/u-boot-elf.lds prepare FORCE |
| 1679 | $(call if_changed_dep,cpp_lds) |
| 1680 | |
Ryder Lee | 3b975a1 | 2018-11-15 10:07:49 +0800 | [diff] [blame] | 1681 | # MediaTek's ARM-based u-boot needs a header to contains its load address |
| 1682 | # which is parsed by the BootROM. |
| 1683 | # If the SPL build is enabled, the header will be added to the spl binary, |
| 1684 | # and the spl binary and the u-boot.img will be combined into one file. |
| 1685 | # Otherwise the header will be added to the u-boot.bin directly. |
| 1686 | |
| 1687 | ifeq ($(CONFIG_SPL),y) |
| 1688 | spl/u-boot-spl-mtk.bin: spl/u-boot-spl |
Weijie Gao | f4f478b | 2021-03-05 10:39:55 +0800 | [diff] [blame] | 1689 | |
| 1690 | u-boot-mtk.bin: u-boot-with-spl.bin |
| 1691 | $(call if_changed,copy) |
Ryder Lee | 3b975a1 | 2018-11-15 10:07:49 +0800 | [diff] [blame] | 1692 | else |
| 1693 | MKIMAGEFLAGS_u-boot-mtk.bin = -T mtk_image \ |
| 1694 | -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) \ |
| 1695 | -n "$(patsubst "%",%,$(CONFIG_MTK_BROM_HEADER_INFO))" |
| 1696 | |
| 1697 | u-boot-mtk.bin: u-boot.bin FORCE |
| 1698 | $(call if_changed,mkimage) |
| 1699 | endif |
| 1700 | |
Daniel Schwierzeck | b8cecd0 | 2020-06-06 22:21:47 +0200 | [diff] [blame] | 1701 | quiet_cmd_endian_swap = SWAP $@ |
| 1702 | cmd_endian_swap = $(srctree)/tools/endian-swap.py $< $@ |
| 1703 | |
| 1704 | u-boot-swap.bin: u-boot.bin FORCE |
| 1705 | $(call if_changed,endian_swap) |
| 1706 | |
Paul Burton | 09bebb8 | 2017-06-15 17:05:09 -0700 | [diff] [blame] | 1707 | ARCH_POSTLINK := $(wildcard $(srctree)/arch/$(ARCH)/Makefile.postlink) |
| 1708 | |
Masahiro Yamada | ad0fed4 | 2014-02-24 11:12:18 +0900 | [diff] [blame] | 1709 | # Rule to link u-boot |
| 1710 | # May be overridden by arch/$(ARCH)/config.mk |
| 1711 | quiet_cmd_u-boot__ ?= LD $@ |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 1712 | cmd_u-boot__ ?= $(LD) $(KBUILD_LDFLAGS) $(LDFLAGS_u-boot) -o $@ \ |
Masahiro Yamada | ad0fed4 | 2014-02-24 11:12:18 +0900 | [diff] [blame] | 1713 | -T u-boot.lds $(u-boot-init) \ |
| 1714 | --start-group $(u-boot-main) --end-group \ |
Paul Burton | 09bebb8 | 2017-06-15 17:05:09 -0700 | [diff] [blame] | 1715 | $(PLATFORM_LIBS) -Map u-boot.map; \ |
| 1716 | $(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true) |
Simon Glass | 86eb49b | 2011-10-03 19:26:50 +0000 | [diff] [blame] | 1717 | |
Vasili Galka | cac8f38 | 2014-08-14 12:40:55 +0300 | [diff] [blame] | 1718 | quiet_cmd_smap = GEN common/system_map.o |
| 1719 | cmd_smap = \ |
Masahiro Yamada | ad0fed4 | 2014-02-24 11:12:18 +0900 | [diff] [blame] | 1720 | smap=`$(call SYSTEM_MAP,u-boot) | \ |
| 1721 | awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \ |
| 1722 | $(CC) $(c_flags) -DSYSTEM_MAP="\"$${smap}\"" \ |
| 1723 | -c $(srctree)/common/system_map.c -o common/system_map.o |
Vasili Galka | cac8f38 | 2014-08-14 12:40:55 +0300 | [diff] [blame] | 1724 | |
Masahiro Yamada | 514ec43 | 2016-02-05 17:55:13 +0900 | [diff] [blame] | 1725 | u-boot: $(u-boot-init) $(u-boot-main) u-boot.lds FORCE |
Paul Burton | 09bebb8 | 2017-06-15 17:05:09 -0700 | [diff] [blame] | 1726 | +$(call if_changed,u-boot__) |
Vasili Galka | cac8f38 | 2014-08-14 12:40:55 +0300 | [diff] [blame] | 1727 | ifeq ($(CONFIG_KALLSYMS),y) |
| 1728 | $(call cmd,smap) |
Masahiro Yamada | ad0fed4 | 2014-02-24 11:12:18 +0900 | [diff] [blame] | 1729 | $(call cmd,u-boot__) common/system_map.o |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 1730 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1731 | |
Rick Chen | 42ac26f | 2017-12-26 13:55:56 +0800 | [diff] [blame] | 1732 | ifeq ($(CONFIG_RISCV),y) |
| 1733 | @tools/prelink-riscv $@ 0 |
| 1734 | endif |
| 1735 | |
Stephen Warren | 7ed4848 | 2016-02-08 14:44:15 -0700 | [diff] [blame] | 1736 | quiet_cmd_sym ?= SYM $@ |
| 1737 | cmd_sym ?= $(OBJDUMP) -t $< > $@ |
| 1738 | u-boot.sym: u-boot FORCE |
| 1739 | $(call if_changed,sym) |
| 1740 | |
Michal Simek | 69c0d32 | 2014-04-24 15:24:28 +0200 | [diff] [blame] | 1741 | # The actual objects are generated when descending, |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 1742 | # make sure no implicit rule kicks in |
| 1743 | $(sort $(u-boot-init) $(u-boot-main)): $(u-boot-dirs) ; |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1744 | |
Thomas Hebb | 32f2ca2 | 2019-11-13 18:18:03 -0800 | [diff] [blame] | 1745 | # Handle descending into subdirectories listed in $(u-boot-dirs) |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 1746 | # Preset locale variables to speed up the build process. Limit locale |
| 1747 | # tweaks to this spot to avoid wrong language settings when running |
| 1748 | # make menuconfig etc. |
| 1749 | # Error messages still appears in the original language |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 1750 | |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 1751 | PHONY += $(u-boot-dirs) |
Masahiro Yamada | 6378008 | 2014-02-24 11:12:10 +0900 | [diff] [blame] | 1752 | $(u-boot-dirs): prepare scripts |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 1753 | $(Q)$(MAKE) $(build)=$@ |
Masahiro Yamada | 940db16 | 2014-02-04 17:24:10 +0900 | [diff] [blame] | 1754 | |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 1755 | tools: prepare |
Masahiro Yamada | 656de6b | 2014-02-04 17:24:37 +0900 | [diff] [blame] | 1756 | # The "tools" are needed early |
| 1757 | $(filter-out tools, $(u-boot-dirs)): tools |
| 1758 | # The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC |
| 1759 | # is "yes"), so compile examples after U-Boot is compiled. |
| 1760 | examples: $(filter-out examples, $(u-boot-dirs)) |
| 1761 | |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 1762 | define filechk_uboot.release |
| 1763 | echo "$(UBOOTVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))" |
| 1764 | endef |
| 1765 | |
| 1766 | # Store (new) UBOOTRELEASE string in include/config/uboot.release |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 1767 | include/config/uboot.release: include/config/auto.conf FORCE |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 1768 | $(call filechk,uboot.release) |
| 1769 | |
| 1770 | |
Masahiro Yamada | 3341bfe | 2014-02-04 17:24:42 +0900 | [diff] [blame] | 1771 | # Things we need to do before we recursively start building the kernel |
| 1772 | # or the modules are listed in "prepare". |
| 1773 | # A multi level approach is used. prepareN is processed before prepareN-1. |
| 1774 | # archprepare is used in arch Makefiles and when processed asm symlink, |
| 1775 | # version.h and scripts_basic is processed / created. |
| 1776 | |
| 1777 | # Listed in dependency order |
| 1778 | PHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3 |
| 1779 | |
| 1780 | # prepare3 is used to check if we are building in a separate output directory, |
| 1781 | # and if so do: |
| 1782 | # 1) Check that make has not been executed in the kernel src $(srctree) |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 1783 | prepare3: include/config/uboot.release |
Masahiro Yamada | 3341bfe | 2014-02-04 17:24:42 +0900 | [diff] [blame] | 1784 | ifneq ($(KBUILD_SRC),) |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 1785 | @$(kecho) ' Using $(srctree) as source for U-Boot' |
| 1786 | $(Q)if [ -f $(srctree)/.config -o -d $(srctree)/include/config ]; then \ |
Masahiro Yamada | 3341bfe | 2014-02-04 17:24:42 +0900 | [diff] [blame] | 1787 | echo >&2 " $(srctree) is not clean, please run 'make mrproper'"; \ |
| 1788 | echo >&2 " in the '$(srctree)' directory.";\ |
| 1789 | /bin/false; \ |
| 1790 | fi; |
| 1791 | endif |
| 1792 | |
| 1793 | # prepare2 creates a makefile if using a separate output directory |
Masahiro Yamada | 0b588de | 2019-01-10 23:11:39 +0900 | [diff] [blame] | 1794 | prepare2: prepare3 outputmakefile cfg |
Masahiro Yamada | 3341bfe | 2014-02-04 17:24:42 +0900 | [diff] [blame] | 1795 | |
Michal Simek | dacec83 | 2020-02-18 15:03:13 +0100 | [diff] [blame] | 1796 | prepare1: prepare2 $(version_h) $(timestamp_h) $(dt_h) \ |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 1797 | include/config/auto.conf |
Masahiro Yamada | 4a37755 | 2014-02-25 19:26:48 +0900 | [diff] [blame] | 1798 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 1799 | @echo >&2 " Could not find linker script." |
| 1800 | @/bin/false |
| 1801 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1802 | |
Rasmus Villemoes | f3d8f7d | 2018-03-20 11:38:45 +0100 | [diff] [blame] | 1803 | ifeq ($(CONFIG_USE_DEFAULT_ENV_FILE),y) |
| 1804 | prepare1: $(defaultenv_h) |
| 1805 | endif |
| 1806 | |
Masahiro Yamada | 3341bfe | 2014-02-04 17:24:42 +0900 | [diff] [blame] | 1807 | archprepare: prepare1 scripts_basic |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 1808 | |
Masahiro Yamada | 6a44d80 | 2014-02-24 11:12:11 +0900 | [diff] [blame] | 1809 | prepare0: archprepare FORCE |
| 1810 | $(Q)$(MAKE) $(build)=. |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1811 | |
Masahiro Yamada | 3341bfe | 2014-02-04 17:24:42 +0900 | [diff] [blame] | 1812 | # All the preparing.. |
| 1813 | prepare: prepare0 |
Che-liang Chiou | 349e83f | 2011-10-17 21:04:15 +0000 | [diff] [blame] | 1814 | |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 1815 | # Generate some files |
| 1816 | # --------------------------------------------------------------------------- |
| 1817 | |
Simon Glass | 68f6a90 | 2021-02-04 21:17:13 -0700 | [diff] [blame] | 1818 | # Use sed to remove leading zeros from PATCHLEVEL to avoid using octal numbers |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 1819 | define filechk_version.h |
| 1820 | (echo \#define PLAIN_VERSION \"$(UBOOTRELEASE)\"; \ |
| 1821 | echo \#define U_BOOT_VERSION \"U-Boot \" PLAIN_VERSION; \ |
Simon Glass | 68f6a90 | 2021-02-04 21:17:13 -0700 | [diff] [blame] | 1822 | echo \#define U_BOOT_VERSION_NUM $(VERSION); \ |
| 1823 | echo \#define U_BOOT_VERSION_NUM_PATCH $$(echo $(PATCHLEVEL) | \ |
| 1824 | sed -e "s/^0*//"); \ |
Vagrant Cascadian | 42ffa51 | 2016-06-12 06:07:07 -0700 | [diff] [blame] | 1825 | echo \#define CC_VERSION_STRING \"$$(LC_ALL=C $(CC) --version | head -n 1)\"; \ |
| 1826 | echo \#define LD_VERSION_STRING \"$$(LC_ALL=C $(LD) --version | head -n 1)\"; ) |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 1827 | endef |
| 1828 | |
Andreas Bießmann | 2d9efa1 | 2015-08-28 10:29:55 +0200 | [diff] [blame] | 1829 | # The SOURCE_DATE_EPOCH mechanism requires a date that behaves like GNU date. |
| 1830 | # The BSD date on the other hand behaves different and would produce errors |
| 1831 | # with the misused '-d' switch. Respect that and search a working date with |
| 1832 | # well known pre- and suffixes for the GNU variant of date. |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 1833 | define filechk_timestamp.h |
Chris Packham | 70d39f5 | 2015-08-13 18:08:27 +1200 | [diff] [blame] | 1834 | (if test -n "$${SOURCE_DATE_EPOCH}"; then \ |
| 1835 | SOURCE_DATE="@$${SOURCE_DATE_EPOCH}"; \ |
Andreas Bießmann | 2d9efa1 | 2015-08-28 10:29:55 +0200 | [diff] [blame] | 1836 | DATE=""; \ |
| 1837 | for date in gdate date.gnu date; do \ |
| 1838 | $${date} -u -d "$${SOURCE_DATE}" >/dev/null 2>&1 && DATE="$${date}"; \ |
| 1839 | done; \ |
| 1840 | if test -n "$${DATE}"; then \ |
| 1841 | LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_DATE "%b %d %C%y"'; \ |
| 1842 | LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_TIME "%T"'; \ |
| 1843 | LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_TZ "%z"'; \ |
Bin Meng | a34b467 | 2015-10-12 05:23:40 -0700 | [diff] [blame] | 1844 | LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_DMI_DATE "%m/%d/%Y"'; \ |
Andy Shevchenko | e7aa9c2 | 2017-07-21 22:32:01 +0300 | [diff] [blame] | 1845 | LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_BUILD_DATE 0x%Y%m%d'; \ |
Heinrich Schuchardt | cbf0ffe | 2020-10-25 07:25:05 +0100 | [diff] [blame] | 1846 | LC_ALL=C $${DATE} -u -d "$${SOURCE_DATE}" +'#define U_BOOT_EPOCH %s'; \ |
Andreas Bießmann | 2d9efa1 | 2015-08-28 10:29:55 +0200 | [diff] [blame] | 1847 | else \ |
| 1848 | return 42; \ |
| 1849 | fi; \ |
Chris Packham | 70d39f5 | 2015-08-13 18:08:27 +1200 | [diff] [blame] | 1850 | else \ |
| 1851 | LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"'; \ |
| 1852 | LC_ALL=C date +'#define U_BOOT_TIME "%T"'; \ |
| 1853 | LC_ALL=C date +'#define U_BOOT_TZ "%z"'; \ |
Bin Meng | a34b467 | 2015-10-12 05:23:40 -0700 | [diff] [blame] | 1854 | LC_ALL=C date +'#define U_BOOT_DMI_DATE "%m/%d/%Y"'; \ |
Andy Shevchenko | e7aa9c2 | 2017-07-21 22:32:01 +0300 | [diff] [blame] | 1855 | LC_ALL=C date +'#define U_BOOT_BUILD_DATE 0x%Y%m%d'; \ |
Heinrich Schuchardt | cbf0ffe | 2020-10-25 07:25:05 +0100 | [diff] [blame] | 1856 | LC_ALL=C date +'#define U_BOOT_EPOCH %s'; \ |
Chris Packham | 70d39f5 | 2015-08-13 18:08:27 +1200 | [diff] [blame] | 1857 | fi) |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 1858 | endef |
| 1859 | |
Rasmus Villemoes | f3d8f7d | 2018-03-20 11:38:45 +0100 | [diff] [blame] | 1860 | define filechk_defaultenv.h |
Rasmus Villemoes | 7ac7038 | 2021-04-22 09:44:18 +0200 | [diff] [blame] | 1861 | ( { grep -v '^#' | grep -v '^$$' || true ; echo '' ; } | \ |
Rasmus Villemoes | f3d8f7d | 2018-03-20 11:38:45 +0100 | [diff] [blame] | 1862 | tr '\n' '\0' | \ |
Samuel Mescoff | 4b7f5f3 | 2019-04-15 12:28:26 +0200 | [diff] [blame] | 1863 | sed -e 's/\\\x0\s*//g' | \ |
Rasmus Villemoes | 7ac7038 | 2021-04-22 09:44:18 +0200 | [diff] [blame] | 1864 | xxd -i ; ) |
Rasmus Villemoes | f3d8f7d | 2018-03-20 11:38:45 +0100 | [diff] [blame] | 1865 | endef |
| 1866 | |
Michal Simek | dacec83 | 2020-02-18 15:03:13 +0100 | [diff] [blame] | 1867 | define filechk_dt.h |
| 1868 | (if test -n "$${DEVICE_TREE}"; then \ |
| 1869 | echo \#define DEVICE_TREE \"$(DEVICE_TREE)\"; \ |
| 1870 | else \ |
| 1871 | echo \#define DEVICE_TREE CONFIG_DEFAULT_DEVICE_TREE; \ |
| 1872 | fi) |
| 1873 | endef |
| 1874 | |
Masahiro Yamada | 2e6b2f6 | 2014-03-10 10:42:27 +0900 | [diff] [blame] | 1875 | $(version_h): include/config/uboot.release FORCE |
Masahiro Yamada | 7424145 | 2014-02-24 11:12:09 +0900 | [diff] [blame] | 1876 | $(call filechk,version.h) |
| 1877 | |
| 1878 | $(timestamp_h): $(srctree)/Makefile FORCE |
| 1879 | $(call filechk,timestamp.h) |
| 1880 | |
Michal Simek | dacec83 | 2020-02-18 15:03:13 +0100 | [diff] [blame] | 1881 | $(dt_h): $(srctree)/Makefile FORCE |
| 1882 | $(call filechk,dt.h) |
| 1883 | |
Rasmus Villemoes | f3d8f7d | 2018-03-20 11:38:45 +0100 | [diff] [blame] | 1884 | $(defaultenv_h): $(CONFIG_DEFAULT_ENV_FILE:"%"=%) FORCE |
| 1885 | $(call filechk,defaultenv.h) |
| 1886 | |
Masahiro Yamada | 6378008 | 2014-02-24 11:12:10 +0900 | [diff] [blame] | 1887 | # --------------------------------------------------------------------------- |
Masahiro Yamada | 04a34c9 | 2014-02-24 11:12:19 +0900 | [diff] [blame] | 1888 | quiet_cmd_cpp_lds = LDS $@ |
Chris Zankel | de5e5ce | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 1889 | cmd_cpp_lds = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) \ |
Simon Glass | 44093a1 | 2018-10-01 12:22:43 -0600 | [diff] [blame] | 1890 | -D__ASSEMBLY__ -x assembler-with-cpp -std=c99 -P -o $@ $< |
Masahiro Yamada | 6378008 | 2014-02-24 11:12:10 +0900 | [diff] [blame] | 1891 | |
Masahiro Yamada | 04a34c9 | 2014-02-24 11:12:19 +0900 | [diff] [blame] | 1892 | u-boot.lds: $(LDSCRIPT) prepare FORCE |
Masahiro Yamada | 395e60c | 2014-04-09 20:10:43 +0900 | [diff] [blame] | 1893 | $(call if_changed_dep,cpp_lds) |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 1894 | |
Masahiro Yamada | 982a119 | 2014-02-24 11:12:17 +0900 | [diff] [blame] | 1895 | spl/u-boot-spl.bin: spl/u-boot-spl |
| 1896 | @: |
Heinrich Schuchardt | 0a0f231 | 2019-04-02 19:19:06 +0200 | [diff] [blame] | 1897 | $(SPL_SIZE_CHECK) |
| 1898 | |
Dalon Westergreen | 9773ebc | 2021-03-01 20:04:16 +0800 | [diff] [blame] | 1899 | spl/u-boot-spl-dtb.bin: spl/u-boot-spl |
| 1900 | @: |
| 1901 | |
| 1902 | spl/u-boot-spl-dtb.hex: spl/u-boot-spl |
| 1903 | @: |
| 1904 | |
Simon Glass | 054b3a1 | 2016-07-04 11:57:57 -0600 | [diff] [blame] | 1905 | spl/u-boot-spl: tools prepare \ |
M. Vefa Bicakci | dd2081a | 2017-11-11 22:48:40 -0500 | [diff] [blame] | 1906 | $(if $(CONFIG_OF_SEPARATE)$(CONFIG_OF_EMBED)$(CONFIG_SPL_OF_PLATDATA),dts/dt.dtb) \ |
| 1907 | $(if $(CONFIG_OF_SEPARATE)$(CONFIG_OF_EMBED)$(CONFIG_TPL_OF_PLATDATA),dts/dt.dtb) |
Masahiro Yamada | c716308 | 2014-06-09 15:14:11 +0900 | [diff] [blame] | 1908 | $(Q)$(MAKE) obj=spl -f $(srctree)/scripts/Makefile.spl all |
Daniel Schwierzeck | 5df2ee2 | 2011-07-13 05:11:04 +0000 | [diff] [blame] | 1909 | |
Ian Campbell | 50827a5 | 2014-05-05 11:52:30 +0100 | [diff] [blame] | 1910 | spl/sunxi-spl.bin: spl/u-boot-spl |
| 1911 | @: |
| 1912 | |
Maxime Ripard | d2fdcc7 | 2017-02-27 18:22:13 +0100 | [diff] [blame] | 1913 | spl/sunxi-spl-with-ecc.bin: spl/sunxi-spl.bin |
| 1914 | @: |
| 1915 | |
Simon Glass | bd7dc38 | 2016-01-31 18:10:53 -0700 | [diff] [blame] | 1916 | spl/u-boot-spl.sfp: spl/u-boot-spl |
Marek Vasut | 333b720 | 2015-07-15 02:53:45 +0200 | [diff] [blame] | 1917 | @: |
| 1918 | |
Nathan Rossi | 08598d6 | 2015-11-17 22:56:57 +1000 | [diff] [blame] | 1919 | spl/boot.bin: spl/u-boot-spl |
| 1920 | @: |
| 1921 | |
Simon Glass | 3c00a2c | 2017-03-26 17:38:15 -0600 | [diff] [blame] | 1922 | tpl/u-boot-tpl.bin: tools prepare \ |
M. Vefa Bicakci | dd2081a | 2017-11-11 22:48:40 -0500 | [diff] [blame] | 1923 | $(if $(CONFIG_OF_SEPARATE)$(CONFIG_OF_EMBED)$(CONFIG_SPL_OF_PLATDATA),dts/dt.dtb) |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 1924 | $(Q)$(MAKE) obj=tpl -f $(srctree)/scripts/Makefile.spl all |
Simon Glass | c52b5e8 | 2019-10-20 21:31:52 -0600 | [diff] [blame] | 1925 | $(TPL_SIZE_CHECK) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 1926 | |
Igor Grinberg | 8d819ab | 2014-07-15 15:52:00 +0300 | [diff] [blame] | 1927 | TAG_SUBDIRS := $(patsubst %,$(srctree)/%,$(u-boot-dirs) include) |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 1928 | |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 1929 | FIND := find |
| 1930 | FINDFLAGS := -L |
| 1931 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1932 | tags ctags: |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1933 | ctags -w -o ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 1934 | -name '*.[chS]' -print` |
Du Huanpeng | 74d339b | 2015-05-04 06:26:53 -0700 | [diff] [blame] | 1935 | ln -s ctags tags |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1936 | |
| 1937 | etags: |
Igor Grinberg | 8d819ab | 2014-07-15 15:52:00 +0300 | [diff] [blame] | 1938 | etags -a -o etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 1939 | -name '*.[chS]' -print` |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 1940 | cscope: |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 1941 | $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \ |
| 1942 | cscope.files |
Andy Shevchenko | e15a951 | 2019-10-08 21:12:45 +0300 | [diff] [blame] | 1943 | @find $(TAG_SUBDIRS) -name '*.[chS]' -type l -print | \ |
| 1944 | grep -xvf - cscope.files > cscope.files.no-symlinks; \ |
| 1945 | mv cscope.files.no-symlinks cscope.files |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 1946 | cscope -b -q -k |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1947 | |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 1948 | SYSTEM_MAP = \ |
| 1949 | $(NM) $1 | \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1950 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 1951 | LC_ALL=C sort |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1952 | System.map: u-boot |
Masahiro Yamada | bc8bb6e | 2013-11-11 14:36:01 +0900 | [diff] [blame] | 1953 | @$(call SYSTEM_MAP,$<) > $@ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1954 | |
| 1955 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1956 | |
Scott Wood | 54799e4 | 2013-12-14 11:47:34 +0800 | [diff] [blame] | 1957 | # ARM relocations should all be R_ARM_RELATIVE (32-bit) or |
| 1958 | # R_AARCH64_RELATIVE (64-bit). |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1959 | checkarmreloc: u-boot |
Scott Wood | 54799e4 | 2013-12-14 11:47:34 +0800 | [diff] [blame] | 1960 | @RELOC="`$(CROSS_COMPILE)readelf -r -W $< | cut -d ' ' -f 4 | \ |
| 1961 | grep R_A | sort -u`"; \ |
| 1962 | if test "$$RELOC" != "R_ARM_RELATIVE" -a \ |
| 1963 | "$$RELOC" != "R_AARCH64_RELATIVE"; then \ |
| 1964 | echo "$< contains unexpected relocations: $$RELOC"; \ |
| 1965 | false; \ |
| 1966 | fi |
Albert ARIBAUD | c37980c | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 1967 | |
Bin Meng | 4d90f6c | 2019-10-27 05:19:47 -0700 | [diff] [blame] | 1968 | tools/version.h: include/version.h |
Tom Rini | fb013ee | 2019-12-04 18:54:30 -0500 | [diff] [blame] | 1969 | $(Q)mkdir -p $(dir $@) |
Bin Meng | 4d90f6c | 2019-10-27 05:19:47 -0700 | [diff] [blame] | 1970 | $(call if_changed,copy) |
| 1971 | |
| 1972 | envtools: scripts_basic $(version_h) $(timestamp_h) tools/version.h |
Tom Rini | 2d3229b | 2017-09-05 14:01:29 -0400 | [diff] [blame] | 1973 | $(Q)$(MAKE) $(build)=tools/env |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 1974 | |
Simon Goldschmidt | 2577015 | 2019-05-24 22:07:04 +0200 | [diff] [blame] | 1975 | tools-only: export TOOLS_ONLY=y |
Bin Meng | 4d90f6c | 2019-10-27 05:19:47 -0700 | [diff] [blame] | 1976 | tools-only: scripts_basic $(version_h) $(timestamp_h) tools/version.h |
Masahiro Yamada | 4642e00 | 2014-03-31 17:33:51 +0900 | [diff] [blame] | 1977 | $(Q)$(MAKE) $(build)=tools |
| 1978 | |
Masahiro Yamada | 1ec8b4e | 2014-03-03 11:06:18 +0900 | [diff] [blame] | 1979 | tools-all: export HOST_TOOLS_ALL=y |
Simon Glass | 5733295 | 2017-09-05 01:53:58 -0600 | [diff] [blame] | 1980 | tools-all: envtools tools ; |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 1981 | |
Masahiro Yamada | db5b339 | 2014-03-03 11:06:19 +0900 | [diff] [blame] | 1982 | cross_tools: export CROSS_BUILD_TOOLS=y |
| 1983 | cross_tools: tools ; |
| 1984 | |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 1985 | .PHONY : CHANGELOG |
| 1986 | CHANGELOG: |
Ben Warren | b985b5d | 2006-10-26 14:38:25 -0400 | [diff] [blame] | 1987 | git log --no-merges U-Boot-1_1_5.. | \ |
| 1988 | unexpand -a | sed -e 's/\s\s*$$//' > $@ |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 1989 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1990 | ######################################################################### |
| 1991 | |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 1992 | ### |
| 1993 | # Cleaning is done on three levels. |
| 1994 | # make clean Delete most generated files |
| 1995 | # Leave enough to build external modules |
| 1996 | # make mrproper Delete the current configuration, and all generated files |
| 1997 | # make distclean Remove editor backup files, patch leftover files and the like |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1998 | |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 1999 | # Directories & files removed with 'make clean' |
Masahiro Yamada | 48aa812d | 2014-10-30 10:58:32 +0900 | [diff] [blame] | 2000 | CLEAN_DIRS += $(MODVERDIR) \ |
| 2001 | $(foreach d, spl tpl, $(patsubst %,$d/%, \ |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 2002 | $(filter-out include, $(shell ls -1 $d 2>/dev/null)))) |
Masahiro Yamada | 48aa812d | 2014-10-30 10:58:32 +0900 | [diff] [blame] | 2003 | |
Bin Meng | 4d90f6c | 2019-10-27 05:19:47 -0700 | [diff] [blame] | 2004 | CLEAN_FILES += include/bmp_logo.h include/bmp_logo_data.h tools/version.h \ |
Thomas Hebb | 57297e6 | 2019-11-10 08:25:08 -0800 | [diff] [blame] | 2005 | boot* u-boot* MLO* SPL System.map fit-dtb.blob* \ |
| 2006 | u-boot-ivt.img.log u-boot-dtb.imx.log SPL.log u-boot.imx.log \ |
Thomas Hebb | 983c0f9 | 2019-11-10 08:25:10 -0800 | [diff] [blame] | 2007 | lpc32xx-* bl31.c bl31.elf bl31_*.bin image.map tispl.bin* \ |
Heinrich Schuchardt | 774904c | 2020-05-07 18:09:22 +0200 | [diff] [blame] | 2008 | idbloader.img flash.bin flash.log defconfig |
Mike Frysinger | 9f4a420 | 2009-10-01 12:11:54 -0400 | [diff] [blame] | 2009 | |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2010 | # Directories & files removed with 'make mrproper' |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 2011 | MRPROPER_DIRS += include/config include/generated spl tpl \ |
Heinrich Schuchardt | 9a97314 | 2020-09-05 11:08:06 +0200 | [diff] [blame] | 2012 | .tmp_objdiff doc/output |
Simon Glass | a7d03d5 | 2021-05-06 19:32:23 -0600 | [diff] [blame] | 2013 | |
| 2014 | # Remove include/asm symlink created by U-Boot before v2014.01 |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 2015 | MRPROPER_FILES += .config .config.old include/autoconf.mk* include/config.h \ |
Heinrich Schuchardt | 1249fa8 | 2019-01-29 21:15:21 +0100 | [diff] [blame] | 2016 | ctags etags tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \ |
Simon Glass | a7d03d5 | 2021-05-06 19:32:23 -0600 | [diff] [blame] | 2017 | drivers/video/fonts/*.S include/asm |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2018 | |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2019 | # clean - Delete most, but leave enough to build external modules |
| 2020 | # |
| 2021 | clean: rm-dirs := $(CLEAN_DIRS) |
| 2022 | clean: rm-files := $(CLEAN_FILES) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2023 | |
Masahiro Yamada | 6bd04bb | 2014-03-28 14:55:02 +0900 | [diff] [blame] | 2024 | clean-dirs := $(foreach f,$(u-boot-alldirs),$(if $(wildcard $(srctree)/$f/Makefile),$f)) |
Andy Fleming | 734329f | 2011-11-21 13:40:43 +0000 | [diff] [blame] | 2025 | |
Tom Rini | 08fcdd3 | 2018-07-25 11:38:17 -0400 | [diff] [blame] | 2026 | clean-dirs := $(addprefix _clean_, $(clean-dirs)) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2027 | |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2028 | PHONY += $(clean-dirs) clean archclean |
| 2029 | $(clean-dirs): |
| 2030 | $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) |
| 2031 | |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2032 | clean: $(clean-dirs) |
| 2033 | $(call cmd,rmdirs) |
| 2034 | $(call cmd,rmfiles) |
| 2035 | @find $(if $(KBUILD_EXTMOD), $(KBUILD_EXTMOD), .) $(RCS_FIND_IGNORE) \ |
| 2036 | \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ |
Heinrich Schuchardt | d4c5141 | 2019-10-03 16:45:29 +0000 | [diff] [blame] | 2037 | -o -name '*.ko.*' -o -name '*.su' -o -name '*.pyc' \ |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2038 | -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \ |
Eugeniu Rosca | e91610d | 2018-05-19 14:13:50 +0200 | [diff] [blame] | 2039 | -o -name '*.lex.c' -o -name '*.tab.[ch]' \ |
AKASHI Takahiro | ed3dead | 2019-11-13 09:44:54 +0900 | [diff] [blame] | 2040 | -o -name '*.asn1.[ch]' \ |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2041 | -o -name '*.symtypes' -o -name 'modules.order' \ |
| 2042 | -o -name modules.builtin -o -name '.tmp_*.o.*' \ |
Bin Meng | 0fbdaa0 | 2016-05-22 01:45:25 -0700 | [diff] [blame] | 2043 | -o -name 'dsdt.aml' -o -name 'dsdt.asl.tmp' -o -name 'dsdt.c' \ |
Heinrich Schuchardt | 7f474ef | 2018-05-24 19:34:45 +0200 | [diff] [blame] | 2044 | -o -name '*.efi' -o -name '*.gcno' -o -name '*.so' \) \ |
Thomas Hebb | 0f18cf3 | 2019-11-10 08:25:09 -0800 | [diff] [blame] | 2045 | -type f -print | xargs rm -f |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2046 | |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2047 | # mrproper - Delete all generated files, including .config |
| 2048 | # |
| 2049 | mrproper: rm-dirs := $(wildcard $(MRPROPER_DIRS)) |
| 2050 | mrproper: rm-files := $(wildcard $(MRPROPER_FILES)) |
| 2051 | mrproper-dirs := $(addprefix _mrproper_,scripts) |
| 2052 | |
| 2053 | PHONY += $(mrproper-dirs) mrproper archmrproper |
| 2054 | $(mrproper-dirs): |
| 2055 | $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@) |
| 2056 | |
Masahiro Yamada | 48aa812d | 2014-10-30 10:58:32 +0900 | [diff] [blame] | 2057 | mrproper: clean $(mrproper-dirs) |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2058 | $(call cmd,rmdirs) |
| 2059 | $(call cmd,rmfiles) |
Masahiro Yamada | e9c16a8 | 2014-06-24 18:15:45 +0900 | [diff] [blame] | 2060 | @rm -f arch/*/include/asm/arch |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2061 | |
| 2062 | # distclean |
| 2063 | # |
| 2064 | PHONY += distclean |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 2065 | |
| 2066 | distclean: mrproper |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2067 | @find $(srctree) $(RCS_FIND_IGNORE) \ |
| 2068 | \( -name '*.orig' -o -name '*.rej' -o -name '*~' \ |
| 2069 | -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \ |
Masahiro Yamada | 598e2d3 | 2014-04-15 13:29:00 +0900 | [diff] [blame] | 2070 | -o -name '.*.rej' -o -name '*%' -o -name 'core' \ |
| 2071 | -o -name '*.pyc' \) \ |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2072 | -type f -print | xargs rm -f |
Robert P. J. Day | c1180aa | 2019-01-18 08:41:23 -0500 | [diff] [blame] | 2073 | @rm -f boards.cfg CHANGELOG |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2074 | |
| 2075 | backup: |
Masahiro Yamada | 4379ac6 | 2014-03-11 11:05:19 +0900 | [diff] [blame] | 2076 | F=`basename $(srctree)` ; cd .. ; \ |
Ilya Yanok | d6b9371 | 2010-06-21 18:13:21 +0400 | [diff] [blame] | 2077 | gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 2078 | |
Masahiro Yamada | ed1ca52 | 2014-02-24 11:12:23 +0900 | [diff] [blame] | 2079 | help: |
| 2080 | @echo 'Cleaning targets:' |
Masahiro Yamada | 48aa812d | 2014-10-30 10:58:32 +0900 | [diff] [blame] | 2081 | @echo ' clean - Remove most generated files but keep the config' |
Masahiro Yamada | ed1ca52 | 2014-02-24 11:12:23 +0900 | [diff] [blame] | 2082 | @echo ' mrproper - Remove all generated files + config + various backup files' |
| 2083 | @echo ' distclean - mrproper + remove editor backup and patch files' |
| 2084 | @echo '' |
Masahiro Yamada | 5114879 | 2014-07-30 14:08:17 +0900 | [diff] [blame] | 2085 | @echo 'Configuration targets:' |
| 2086 | @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help |
| 2087 | @echo '' |
Simon Glass | a3a3f5d | 2018-10-01 21:12:36 -0600 | [diff] [blame] | 2088 | @echo 'Test targets:' |
| 2089 | @echo '' |
| 2090 | @echo ' check - Run all automated tests that use sandbox' |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 2091 | @echo ' qcheck - Run quick automated tests that use sandbox' |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 2092 | @echo ' tcheck - Run quick automated tests on tools' |
Simon Glass | a3a3f5d | 2018-10-01 21:12:36 -0600 | [diff] [blame] | 2093 | @echo '' |
Masahiro Yamada | ed1ca52 | 2014-02-24 11:12:23 +0900 | [diff] [blame] | 2094 | @echo 'Other generic targets:' |
| 2095 | @echo ' all - Build all necessary images depending on configuration' |
Simon Glass | 633cc7a | 2016-07-31 17:35:01 -0600 | [diff] [blame] | 2096 | @echo ' tests - Build U-Boot for sandbox and run tests' |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 2097 | @echo '* u-boot - Build the bare u-boot' |
Masahiro Yamada | ed1ca52 | 2014-02-24 11:12:23 +0900 | [diff] [blame] | 2098 | @echo ' dir/ - Build all files in dir and below' |
| 2099 | @echo ' dir/file.[oisS] - Build specified target only' |
| 2100 | @echo ' dir/file.lst - Build specified mixed source/assembly target only' |
| 2101 | @echo ' (requires a recent binutils and recent build (System.map))' |
Igor Grinberg | 5fc2f92 | 2014-07-15 15:52:02 +0300 | [diff] [blame] | 2102 | @echo ' tags/ctags - Generate ctags file for editors' |
| 2103 | @echo ' etags - Generate etags file for editors' |
Masahiro Yamada | ed1ca52 | 2014-02-24 11:12:23 +0900 | [diff] [blame] | 2104 | @echo ' cscope - Generate cscope index' |
Masahiro Yamada | ffe29eb | 2014-10-30 11:06:11 +0900 | [diff] [blame] | 2105 | @echo ' ubootrelease - Output the release version string (use with make -s)' |
| 2106 | @echo ' ubootversion - Output the version stored in Makefile (use with make -s)' |
Simon Glass | 1bd8763 | 2016-11-13 14:25:50 -0700 | [diff] [blame] | 2107 | @echo " cfg - Don't build, just create the .cfg files" |
Simon Glass | 84a4206 | 2017-09-05 01:53:59 -0600 | [diff] [blame] | 2108 | @echo " envtools - Build only the target-side environment tools" |
Masahiro Yamada | ed1ca52 | 2014-02-24 11:12:23 +0900 | [diff] [blame] | 2109 | @echo '' |
| 2110 | @echo 'Static analysers' |
| 2111 | @echo ' checkstack - Generate a list of stack hogs' |
Heinrich Schuchardt | 8a28caf | 2017-11-19 14:33:14 +0100 | [diff] [blame] | 2112 | @echo ' coccicheck - Execute static code analysis with Coccinelle' |
Masahiro Yamada | ed1ca52 | 2014-02-24 11:12:23 +0900 | [diff] [blame] | 2113 | @echo '' |
| 2114 | @echo 'Documentation targets:' |
Breno Matheus Lima | 656d8da | 2019-06-05 18:18:30 +0000 | [diff] [blame] | 2115 | @$(MAKE) -f $(srctree)/doc/Makefile dochelp |
Masahiro Yamada | ed1ca52 | 2014-02-24 11:12:23 +0900 | [diff] [blame] | 2116 | @echo '' |
| 2117 | @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build' |
| 2118 | @echo ' make V=2 [targets] 2 => give reason for rebuild of target' |
| 2119 | @echo ' make O=dir [targets] Locate all output files in "dir", including .config' |
| 2120 | @echo ' make C=1 [targets] Check all c source with $$CHECK (sparse by default)' |
| 2121 | @echo ' make C=2 [targets] Force check of all c source with $$CHECK' |
| 2122 | @echo ' make RECORDMCOUNT_WARN=1 [targets] Warn about ignored mcount sections' |
| 2123 | @echo ' make W=n [targets] Enable extra gcc checks, n=1,2,3 where' |
| 2124 | @echo ' 1: warnings which may be relevant and do not occur too often' |
| 2125 | @echo ' 2: warnings which occur quite often but may still be relevant' |
| 2126 | @echo ' 3: more obscure warnings, can most likely be ignored' |
| 2127 | @echo ' Multiple levels can be combined with W=12 or W=123' |
| 2128 | @echo '' |
| 2129 | @echo 'Execute "make" or "make all" to build all targets marked with [*] ' |
| 2130 | @echo 'For further info see the ./README file' |
| 2131 | |
Simon Glass | a3a3f5d | 2018-10-01 21:12:36 -0600 | [diff] [blame] | 2132 | tests check: |
Simon Glass | 633cc7a | 2016-07-31 17:35:01 -0600 | [diff] [blame] | 2133 | $(srctree)/test/run |
Masahiro Yamada | 8fac9c7 | 2014-02-05 10:52:50 +0900 | [diff] [blame] | 2134 | |
Simon Glass | 499fde5 | 2018-11-18 08:14:29 -0700 | [diff] [blame] | 2135 | qcheck: |
| 2136 | $(srctree)/test/run quick |
| 2137 | |
Simon Glass | 7616080 | 2020-04-17 18:08:59 -0600 | [diff] [blame] | 2138 | tcheck: |
| 2139 | $(srctree)/test/run tools |
| 2140 | |
Masahiro Yamada | 8fac9c7 | 2014-02-05 10:52:50 +0900 | [diff] [blame] | 2141 | # Documentation targets |
| 2142 | # --------------------------------------------------------------------------- |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2143 | DOC_TARGETS := xmldocs latexdocs pdfdocs htmldocs epubdocs cleandocs \ |
| 2144 | linkcheckdocs dochelp refcheckdocs |
| 2145 | PHONY += $(DOC_TARGETS) |
| 2146 | $(DOC_TARGETS): scripts_basic FORCE |
Breno Matheus Lima | 656d8da | 2019-06-05 18:18:30 +0000 | [diff] [blame] | 2147 | $(Q)$(MAKE) $(build)=doc $@ |
Masahiro Yamada | 8fac9c7 | 2014-02-05 10:52:50 +0900 | [diff] [blame] | 2148 | |
Masahiro Yamada | 433b2f1 | 2014-02-04 17:24:35 +0900 | [diff] [blame] | 2149 | endif #ifeq ($(config-targets),1) |
| 2150 | endif #ifeq ($(mixed-targets),1) |
| 2151 | |
Masahiro Yamada | ed1ca52 | 2014-02-24 11:12:23 +0900 | [diff] [blame] | 2152 | PHONY += checkstack ubootrelease ubootversion |
| 2153 | |
| 2154 | checkstack: |
| 2155 | $(OBJDUMP) -d u-boot $$(find . -name u-boot-spl) | \ |
| 2156 | $(PERL) $(src)/scripts/checkstack.pl $(ARCH) |
| 2157 | |
| 2158 | ubootrelease: |
| 2159 | @echo "$(UBOOTVERSION)$$($(CONFIG_SHELL) $(srctree)/scripts/setlocalversion $(srctree))" |
| 2160 | |
| 2161 | ubootversion: |
| 2162 | @echo $(UBOOTVERSION) |
| 2163 | |
Masahiro Yamada | 886d86e | 2014-02-24 11:12:22 +0900 | [diff] [blame] | 2164 | # Single targets |
| 2165 | # --------------------------------------------------------------------------- |
| 2166 | # Single targets are compatible with: |
| 2167 | # - build with mixed source and output |
| 2168 | # - build with separate output dir 'make O=...' |
| 2169 | # - external modules |
| 2170 | # |
| 2171 | # target-dir => where to store outputfile |
| 2172 | # build-dir => directory in kernel source tree to use |
| 2173 | |
| 2174 | ifeq ($(KBUILD_EXTMOD),) |
| 2175 | build-dir = $(patsubst %/,%,$(dir $@)) |
| 2176 | target-dir = $(dir $@) |
| 2177 | else |
| 2178 | zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@))) |
| 2179 | build-dir = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash)) |
| 2180 | target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@)) |
| 2181 | endif |
| 2182 | |
| 2183 | %.s: %.c prepare scripts FORCE |
| 2184 | $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) |
| 2185 | %.i: %.c prepare scripts FORCE |
| 2186 | $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) |
| 2187 | %.o: %.c prepare scripts FORCE |
| 2188 | $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) |
| 2189 | %.lst: %.c prepare scripts FORCE |
| 2190 | $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) |
| 2191 | %.s: %.S prepare scripts FORCE |
| 2192 | $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) |
| 2193 | %.o: %.S prepare scripts FORCE |
| 2194 | $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) |
| 2195 | %.symtypes: %.c prepare scripts FORCE |
| 2196 | $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) |
| 2197 | |
| 2198 | # Modules |
| 2199 | /: prepare scripts FORCE |
| 2200 | $(cmd_crmodverdir) |
| 2201 | $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ |
| 2202 | $(build)=$(build-dir) |
| 2203 | %/: prepare scripts FORCE |
| 2204 | $(cmd_crmodverdir) |
| 2205 | $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ |
| 2206 | $(build)=$(build-dir) |
| 2207 | %.ko: prepare scripts FORCE |
| 2208 | $(cmd_crmodverdir) |
| 2209 | $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ |
| 2210 | $(build)=$(build-dir) $(@:.ko=.o) |
| 2211 | $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost |
| 2212 | |
Stefano Babic | bdaa73a | 2019-03-13 09:46:45 +0100 | [diff] [blame] | 2213 | quiet_cmd_genenv = GENENV $@ |
| 2214 | cmd_genenv = $(OBJCOPY) --dump-section .rodata.default_environment=$@ env/common.o; \ |
| 2215 | sed --in-place -e 's/\x00/\x0A/g' $@ |
| 2216 | |
| 2217 | u-boot-initial-env: u-boot.bin |
| 2218 | $(call if_changed,genenv) |
| 2219 | |
Heinrich Schuchardt | 8a28caf | 2017-11-19 14:33:14 +0100 | [diff] [blame] | 2220 | # Consistency checks |
| 2221 | # --------------------------------------------------------------------------- |
| 2222 | |
| 2223 | PHONY += coccicheck |
| 2224 | |
| 2225 | coccicheck: |
| 2226 | $(Q)$(CONFIG_SHELL) $(srctree)/scripts/$@ |
| 2227 | |
Michal Simek | 69c0d32 | 2014-04-24 15:24:28 +0200 | [diff] [blame] | 2228 | # FIXME Should go into a make.lib or something |
Masahiro Yamada | 886d86e | 2014-02-24 11:12:22 +0900 | [diff] [blame] | 2229 | # =========================================================================== |
| 2230 | |
Masahiro Yamada | efcf861 | 2014-02-04 17:24:40 +0900 | [diff] [blame] | 2231 | quiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN $(wildcard $(rm-dirs))) |
| 2232 | cmd_rmdirs = rm -rf $(rm-dirs) |
| 2233 | |
| 2234 | quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files))) |
| 2235 | cmd_rmfiles = rm -f $(rm-files) |
| 2236 | |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 2237 | # read all saved command lines |
| 2238 | |
Masahiro Yamada | b5a2046 | 2020-04-17 16:21:36 +0900 | [diff] [blame] | 2239 | cmd_files := $(wildcard .*.cmd $(foreach f,$(sort $(targets)),$(dir $(f)).$(notdir $(f)).cmd)) |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 2240 | |
| 2241 | ifneq ($(cmd_files),) |
| 2242 | $(cmd_files): ; # Do not try to update included dependency files |
| 2243 | include $(cmd_files) |
| 2244 | endif |
| 2245 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 2246 | endif # skip-makefile |
| 2247 | |
| 2248 | PHONY += FORCE |
| 2249 | FORCE: |
| 2250 | |
Tom Rini | 5972ff0 | 2020-03-11 18:11:17 -0400 | [diff] [blame] | 2251 | # Declare the contents of the PHONY variable as phony. We keep that |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 2252 | # information in a variable so we can use it in if_changed and friends. |
| 2253 | .PHONY: $(PHONY) |