wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1 | # |
Wolfgang Denk | eca3aeb | 2013-06-21 10:22:36 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2013 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | eca3aeb | 2013-06-21 10:22:36 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 6 | # |
| 7 | |
Tom Rini | d19ad72 | 2013-11-25 16:49:32 -0500 | [diff] [blame] | 8 | VERSION = 2014 |
| 9 | PATCHLEVEL = 01 |
Wolfgang Denk | 211e475 | 2012-07-10 09:21:12 +0200 | [diff] [blame] | 10 | SUBLEVEL = |
Tom Rini | b44bd2c | 2014-01-20 17:52:59 -0500 | [diff] [blame] | 11 | EXTRAVERSION = |
Masahiro Yamada | 5f30f3b | 2014-02-04 17:24:30 +0900 | [diff] [blame^] | 12 | NAME = |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 13 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 14 | # *DOCUMENTATION* |
| 15 | # To see a list of typical targets execute "make help" |
| 16 | # More info can be located in ./README |
| 17 | # Comments in this file are targeted only to the developer, do not |
| 18 | # expect to learn how to build the kernel reading this file. |
| 19 | |
| 20 | # Do not: |
| 21 | # o use make's built-in rules and variables |
| 22 | # (this increases performance and avoids hard-to-debug behaviour); |
| 23 | # o print "Entering directory ..."; |
| 24 | MAKEFLAGS += -rR --no-print-directory |
| 25 | |
| 26 | # Avoid funny character set dependencies |
| 27 | unexport LC_ALL |
| 28 | LC_COLLATE=C |
| 29 | LC_NUMERIC=C |
| 30 | export LC_COLLATE LC_NUMERIC |
| 31 | |
| 32 | # We are using a recursive build, so we need to do a little thinking |
| 33 | # to get the ordering right. |
| 34 | # |
| 35 | # Most importantly: sub-Makefiles should only ever modify files in |
| 36 | # their own directory. If in some directory we have a dependency on |
| 37 | # a file in another dir (which doesn't happen often, but it's often |
| 38 | # unavoidable when linking the built-in.o targets which finally |
| 39 | # turn into vmlinux), we will call a sub make in that other dir, and |
| 40 | # after that we are sure that everything which is in that other dir |
| 41 | # is now up to date. |
| 42 | # |
| 43 | # The only cases where we need to modify files which have global |
| 44 | # effects are thus separated out and done before the recursive |
| 45 | # descending is started. They are now explicitly listed as the |
| 46 | # prepare rule. |
| 47 | |
| 48 | # To put more focus on warnings, be less verbose as default |
| 49 | # Use 'make V=1' to see the full commands |
| 50 | |
| 51 | ifeq ("$(origin V)", "command line") |
| 52 | KBUILD_VERBOSE = $(V) |
| 53 | endif |
| 54 | ifndef KBUILD_VERBOSE |
| 55 | KBUILD_VERBOSE = 0 |
| 56 | endif |
| 57 | |
| 58 | # Call a source code checker (by default, "sparse") as part of the |
| 59 | # C compilation. |
| 60 | # |
| 61 | # Use 'make C=1' to enable checking of only re-compiled files. |
| 62 | # Use 'make C=2' to enable checking of *all* source files, regardless |
| 63 | # of whether they are re-compiled or not. |
| 64 | # |
| 65 | # See the file "Documentation/sparse.txt" for more details, including |
| 66 | # where to get the "sparse" utility. |
| 67 | |
| 68 | ifeq ("$(origin C)", "command line") |
| 69 | KBUILD_CHECKSRC = $(C) |
| 70 | endif |
| 71 | ifndef KBUILD_CHECKSRC |
| 72 | KBUILD_CHECKSRC = 0 |
| 73 | endif |
| 74 | |
| 75 | # Use make M=dir to specify directory of external module to build |
| 76 | # Old syntax make ... SUBDIRS=$PWD is still supported |
| 77 | # Setting the environment variable KBUILD_EXTMOD take precedence |
| 78 | ifdef SUBDIRS |
| 79 | KBUILD_EXTMOD ?= $(SUBDIRS) |
| 80 | endif |
| 81 | |
| 82 | ifeq ("$(origin M)", "command line") |
| 83 | KBUILD_EXTMOD := $(M) |
| 84 | endif |
| 85 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 86 | # kbuild supports saving output files in a separate directory. |
| 87 | # To locate output files in a separate directory two syntaxes are supported. |
| 88 | # In both cases the working directory must be the root of the kernel src. |
| 89 | # 1) O= |
| 90 | # Use "make O=dir/to/store/output/files/" |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 91 | # |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 92 | # 2) Set KBUILD_OUTPUT |
| 93 | # Set the environment variable KBUILD_OUTPUT to point to the directory |
| 94 | # where the output files shall be placed. |
| 95 | # export KBUILD_OUTPUT=dir/to/store/output/files/ |
| 96 | # make |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 97 | # |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 98 | # The O= assignment takes precedence over the KBUILD_OUTPUT environment |
| 99 | # variable. |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 100 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 101 | |
| 102 | # KBUILD_SRC is set on invocation of make in OBJ directory |
| 103 | # KBUILD_SRC is not intended to be used by the regular user (for now) |
| 104 | ifeq ($(KBUILD_SRC),) |
| 105 | |
| 106 | # OK, Make called in directory where kernel src resides |
| 107 | # Do we want to locate output files in a separate directory? |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 108 | ifeq ("$(origin O)", "command line") |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 109 | KBUILD_OUTPUT := $(O) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 110 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 111 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 112 | ifeq ("$(origin W)", "command line") |
| 113 | export KBUILD_ENABLE_EXTRA_GCC_CHECKS := $(W) |
| 114 | endif |
| 115 | |
| 116 | # That's our default target when none is given on the command line |
| 117 | PHONY := _all |
| 118 | _all: |
| 119 | |
| 120 | # Cancel implicit rules on top Makefile |
| 121 | $(CURDIR)/Makefile Makefile: ; |
| 122 | |
| 123 | ifneq ($(KBUILD_OUTPUT),) |
| 124 | # Invoke a second make in the output directory, passing relevant variables |
| 125 | # check that the output directory actually exists |
| 126 | saved-output := $(KBUILD_OUTPUT) |
| 127 | KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd) |
| 128 | $(if $(KBUILD_OUTPUT),, \ |
| 129 | $(error output directory "$(saved-output)" does not exist)) |
| 130 | |
| 131 | PHONY += $(MAKECMDGOALS) sub-make |
| 132 | |
| 133 | $(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make |
| 134 | @: |
| 135 | |
| 136 | sub-make: FORCE |
| 137 | $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \ |
| 138 | KBUILD_SRC=$(CURDIR) \ |
| 139 | KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \ |
| 140 | $(filter-out _all sub-make,$(MAKECMDGOALS)) |
| 141 | |
| 142 | # Leave processing to above invocation of make |
| 143 | skip-makefile := 1 |
| 144 | endif # ifneq ($(KBUILD_OUTPUT),) |
| 145 | endif # ifeq ($(KBUILD_SRC),) |
| 146 | |
| 147 | # We process the rest of the Makefile if this is the final invocation of make |
| 148 | ifeq ($(skip-makefile),) |
| 149 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 150 | # If building an external module we do not care about the all: rule |
| 151 | # but instead _all depend on modules |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 152 | PHONY += all |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 153 | ifeq ($(KBUILD_EXTMOD),) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 154 | _all: all |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 155 | else |
| 156 | _all: modules |
| 157 | endif |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 158 | |
| 159 | srctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR)) |
| 160 | objtree := $(CURDIR) |
| 161 | src := $(srctree) |
| 162 | obj := $(objtree) |
| 163 | |
| 164 | VPATH := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD)) |
| 165 | |
| 166 | export srctree objtree VPATH |
| 167 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 168 | OBJTREE := $(objtree) |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 169 | SPLTREE := $(OBJTREE)/spl |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 170 | TPLTREE := $(OBJTREE)/tpl |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 171 | SRCTREE := $(srctree) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 172 | TOPDIR := $(SRCTREE) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 173 | export TOPDIR SRCTREE OBJTREE SPLTREE TPLTREE |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 174 | |
| 175 | MKCONFIG := $(SRCTREE)/mkconfig |
| 176 | export MKCONFIG |
| 177 | |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 178 | # Make sure CDPATH settings don't interfere |
| 179 | unexport CDPATH |
| 180 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 181 | ######################################################################### |
| 182 | |
Masahiro Yamada | 5f30f3b | 2014-02-04 17:24:30 +0900 | [diff] [blame^] | 183 | TIMESTAMP_FILE = include/generated/timestamp_autogenerated.h |
| 184 | VERSION_FILE = include/generated/version_autogenerated.h |
| 185 | |
| 186 | HOSTARCH := $(shell uname -m | \ |
| 187 | sed -e s/i.86/x86/ \ |
| 188 | -e s/sun4u/sparc64/ \ |
| 189 | -e s/arm.*/arm/ \ |
| 190 | -e s/sa110/arm/ \ |
| 191 | -e s/ppc64/powerpc/ \ |
| 192 | -e s/ppc/powerpc/ \ |
| 193 | -e s/macppc/powerpc/\ |
| 194 | -e s/sh.*/sh/) |
| 195 | |
| 196 | HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ |
| 197 | sed -e 's/\(cygwin\).*/cygwin/') |
| 198 | |
| 199 | export HOSTARCH HOSTOS |
| 200 | |
| 201 | # Deal with colliding definitions from tcsh etc. |
| 202 | VENDOR= |
| 203 | |
| 204 | ######################################################################### |
| 205 | # Allow for silent builds |
| 206 | ifeq (,$(findstring s,$(MAKEFLAGS))) |
| 207 | XECHO = echo |
| 208 | else |
| 209 | XECHO = : |
| 210 | endif |
| 211 | |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 212 | # The "tools" are needed early, so put this first |
| 213 | # Don't include stuff already done in $(LIBS) |
Che-liang Chiou | 349e83f | 2011-10-17 21:04:15 +0000 | [diff] [blame] | 214 | # The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC |
| 215 | # is "yes"), so compile examples after U-Boot is compiled. |
| 216 | SUBDIR_TOOLS = tools |
Che-liang Chiou | 349e83f | 2011-10-17 21:04:15 +0000 | [diff] [blame] | 217 | SUBDIRS = $(SUBDIR_TOOLS) |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 218 | |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 219 | .PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE) |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 220 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 221 | ifeq (include/config.mk,$(wildcard include/config.mk)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 222 | |
Mike Frysinger | 2632c00 | 2009-07-21 22:59:36 -0400 | [diff] [blame] | 223 | # Include autoconf.mk before config.mk so that the config options are available |
| 224 | # to all top level build files. We need the dummy all: target to prevent the |
| 225 | # dependency target in autoconf.mk.dep from being the default. |
| 226 | all: |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 227 | sinclude include/autoconf.mk.dep |
| 228 | sinclude include/autoconf.mk |
Mike Frysinger | 2632c00 | 2009-07-21 22:59:36 -0400 | [diff] [blame] | 229 | |
Masahiro Yamada | 8a7e7d5 | 2013-11-18 11:08:35 +0900 | [diff] [blame] | 230 | SUBDIR_EXAMPLES-y := examples/standalone |
| 231 | SUBDIR_EXAMPLES-$(CONFIG_API) += examples/api |
Simon Glass | b572875 | 2011-10-25 11:29:28 +0000 | [diff] [blame] | 232 | ifndef CONFIG_SANDBOX |
Masahiro Yamada | 8a7e7d5 | 2013-11-18 11:08:35 +0900 | [diff] [blame] | 233 | SUBDIRS += $(SUBDIR_EXAMPLES-y) |
Simon Glass | b572875 | 2011-10-25 11:29:28 +0000 | [diff] [blame] | 234 | endif |
| 235 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 236 | # load ARCH, BOARD, and CPU configuration |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 237 | include include/config.mk |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 238 | export ARCH CPU BOARD VENDOR SOC |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 239 | |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 240 | # set default to nothing for native builds |
Wolfgang Denk | a5284ef | 2007-03-06 18:01:47 +0100 | [diff] [blame] | 241 | ifeq ($(HOSTARCH),$(ARCH)) |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 242 | CROSS_COMPILE ?= |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 243 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 244 | |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 245 | # SHELL used by kbuild |
| 246 | CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ |
| 247 | else if [ -x /bin/bash ]; then echo /bin/bash; \ |
| 248 | else echo sh; fi ; fi) |
| 249 | |
| 250 | HOSTCC = gcc |
| 251 | HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer |
| 252 | |
| 253 | ifeq ($(HOSTOS),cygwin) |
| 254 | HOSTCFLAGS += -ansi |
| 255 | endif |
| 256 | |
| 257 | # Mac OS X / Darwin's C preprocessor is Apple specific. It |
| 258 | # generates numerous errors and warnings. We want to bypass it |
| 259 | # and use GNU C's cpp. To do this we pass the -traditional-cpp |
| 260 | # option to the compiler. Note that the -traditional-cpp flag |
| 261 | # DOES NOT have the same semantics as GNU C's flag, all it does |
| 262 | # is invoke the GNU preprocessor in stock ANSI/ISO C fashion. |
| 263 | # |
| 264 | # Apple's linker is similar, thanks to the new 2 stage linking |
| 265 | # multiple symbol definitions are treated as errors, hence the |
| 266 | # -multiply_defined suppress option to turn off this error. |
| 267 | # |
| 268 | ifeq ($(HOSTOS),darwin) |
| 269 | # get major and minor product version (e.g. '10' and '6' for Snow Leopard) |
| 270 | DARWIN_MAJOR_VERSION = $(shell sw_vers -productVersion | cut -f 1 -d '.') |
| 271 | DARWIN_MINOR_VERSION = $(shell sw_vers -productVersion | cut -f 2 -d '.') |
| 272 | |
| 273 | os_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \ |
| 274 | $(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;) |
| 275 | |
| 276 | # Snow Leopards build environment has no longer restrictions as described above |
| 277 | HOSTCC = $(call os_x_before, 10, 5, "cc", "gcc") |
| 278 | HOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp") |
| 279 | HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress") |
| 280 | endif |
| 281 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 282 | # Decide whether to build built-in, modular, or both. |
| 283 | # Normally, just do built-in. |
| 284 | |
| 285 | KBUILD_MODULES := |
| 286 | KBUILD_BUILTIN := 1 |
| 287 | |
| 288 | # If we have only "make modules", don't compile built-in objects. |
| 289 | # When we're building modules with modversions, we need to consider |
| 290 | # the built-in objects during the descend as well, in order to |
| 291 | # make sure the checksums are up to date before we record them. |
| 292 | |
| 293 | ifeq ($(MAKECMDGOALS),modules) |
| 294 | KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1) |
| 295 | endif |
| 296 | |
| 297 | # If we have "make <whatever> modules", compile modules |
| 298 | # in addition to whatever we do anyway. |
| 299 | # Just "make" or "make all" shall build modules as well |
| 300 | |
| 301 | # U-Boot does not need modules |
| 302 | #ifneq ($(filter all _all modules,$(MAKECMDGOALS)),) |
| 303 | # KBUILD_MODULES := 1 |
| 304 | #endif |
| 305 | |
| 306 | #ifeq ($(MAKECMDGOALS),) |
| 307 | # KBUILD_MODULES := 1 |
| 308 | #endif |
| 309 | |
| 310 | export KBUILD_MODULES KBUILD_BUILTIN |
| 311 | export KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD |
| 312 | |
| 313 | # Beautify output |
| 314 | # --------------------------------------------------------------------------- |
| 315 | # |
| 316 | # Normally, we echo the whole command before executing it. By making |
| 317 | # that echo $($(quiet)$(cmd)), we now have the possibility to set |
| 318 | # $(quiet) to choose other forms of output instead, e.g. |
| 319 | # |
| 320 | # quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@ |
| 321 | # cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< |
| 322 | # |
| 323 | # If $(quiet) is empty, the whole command will be printed. |
| 324 | # If it is set to "quiet_", only the short version will be printed. |
| 325 | # If it is set to "silent_", nothing will be printed at all, since |
| 326 | # the variable $(silent_cmd_cc_o_c) doesn't exist. |
| 327 | # |
| 328 | # A simple variant is to prefix commands with $(Q) - that's useful |
| 329 | # for commands that shall be hidden in non-verbose mode. |
| 330 | # |
| 331 | # $(Q)ln $@ :< |
| 332 | # |
| 333 | # If KBUILD_VERBOSE equals 0 then the above command will be hidden. |
| 334 | # If KBUILD_VERBOSE equals 1 then the above command is displayed. |
| 335 | |
| 336 | ifeq ($(KBUILD_VERBOSE),1) |
| 337 | quiet = |
| 338 | Q = |
| 339 | else |
| 340 | quiet=quiet_ |
| 341 | Q = @ |
| 342 | endif |
| 343 | |
| 344 | # If the user is running make -s (silent mode), suppress echoing of |
| 345 | # commands |
| 346 | |
| 347 | ifneq ($(filter s% -s%,$(MAKEFLAGS)),) |
| 348 | quiet=silent_ |
| 349 | endif |
| 350 | |
| 351 | export quiet Q KBUILD_VERBOSE |
| 352 | |
| 353 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 354 | # Look for make include files relative to root of kernel src |
| 355 | MAKEFLAGS += --include-dir=$(srctree) |
| 356 | |
Masahiro Yamada | bf4b3de | 2014-02-04 17:24:18 +0900 | [diff] [blame] | 357 | # We need some generic definitions (do not try to remake the file). |
| 358 | $(srctree)/scripts/Kbuild.include: ; |
| 359 | include $(srctree)/scripts/Kbuild.include |
| 360 | |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 361 | # Make variables (CC, etc...) |
| 362 | |
| 363 | AS = $(CROSS_COMPILE)as |
| 364 | # Always use GNU ld |
| 365 | ifneq ($(shell $(CROSS_COMPILE)ld.bfd -v 2> /dev/null),) |
| 366 | LD = $(CROSS_COMPILE)ld.bfd |
| 367 | else |
| 368 | LD = $(CROSS_COMPILE)ld |
| 369 | endif |
| 370 | CC = $(CROSS_COMPILE)gcc |
| 371 | CPP = $(CC) -E |
| 372 | AR = $(CROSS_COMPILE)ar |
| 373 | NM = $(CROSS_COMPILE)nm |
| 374 | LDR = $(CROSS_COMPILE)ldr |
| 375 | STRIP = $(CROSS_COMPILE)strip |
| 376 | OBJCOPY = $(CROSS_COMPILE)objcopy |
| 377 | OBJDUMP = $(CROSS_COMPILE)objdump |
| 378 | AWK = awk |
| 379 | RANLIB = $(CROSS_COMPILE)RANLIB |
| 380 | DTC = dtc |
| 381 | CHECK = sparse |
| 382 | |
| 383 | CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \ |
| 384 | -Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF) |
| 385 | |
Masahiro Yamada | fea1ca8 | 2014-02-04 17:24:20 +0900 | [diff] [blame] | 386 | # Use UBOOTINCLUDE when you must reference the include/ directory. |
| 387 | # Needed to be compatible with the O= option |
| 388 | UBOOTINCLUDE := |
| 389 | ifneq ($(OBJTREE),$(SRCTREE)) |
| 390 | UBOOTINCLUDE += -I$(OBJTREE)/include |
| 391 | endif |
| 392 | UBOOTINCLUDE += -I$(srctree)/include \ |
| 393 | -I$(srctree)/arch/$(ARCH)/include |
| 394 | |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 395 | KBUILD_CPPFLAGS := -D__KERNEL__ |
| 396 | |
| 397 | KBUILD_CFLAGS := -Wall -Wstrict-prototypes \ |
| 398 | -Wno-format-security \ |
| 399 | -fno-builtin -ffreestanding |
| 400 | KBUILD_AFLAGS := -D__ASSEMBLY__ |
| 401 | |
Masahiro Yamada | 5f30f3b | 2014-02-04 17:24:30 +0900 | [diff] [blame^] | 402 | U_BOOT_VERSION = $(VERSION)$(if $(PATCHLEVEL),.$(PATCHLEVEL)$(if $(SUBLEVEL),.$(SUBLEVEL)))$(EXTRAVERSION) |
| 403 | |
| 404 | export VERSION PATCHLEVEL SUBLEVEL U_BOOT_VERSION |
Masahiro Yamada | f6322eb | 2014-02-04 17:24:15 +0900 | [diff] [blame] | 405 | export CONFIG_SHELL HOSTCC HOSTCFLAGS HOSTLDFLAGS CROSS_COMPILE AS LD CC |
| 406 | export CPP AR NM LDR STRIP OBJCOPY OBJDUMP |
| 407 | export MAKE AWK |
| 408 | export DTC CHECK CHECKFLAGS |
| 409 | |
Masahiro Yamada | fea1ca8 | 2014-02-04 17:24:20 +0900 | [diff] [blame] | 410 | export KBUILD_CPPFLAGS NOSTDINC_FLAGS UBOOTINCLUDE |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 411 | export KBUILD_CFLAGS KBUILD_AFLAGS |
| 412 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 413 | # When compiling out-of-tree modules, put MODVERDIR in the module |
| 414 | # tree rather than in the kernel tree. The kernel tree might |
| 415 | # even be read-only. |
| 416 | export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions |
| 417 | |
| 418 | # Files to ignore in find ... statements |
| 419 | |
| 420 | RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \ |
| 421 | -o -name .pc -o -name .hg -o -name .git \) -prune -o |
| 422 | export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn \ |
| 423 | --exclude CVS --exclude .pc --exclude .hg --exclude .git |
| 424 | |
| 425 | # =========================================================================== |
| 426 | # Rules shared between *config targets and build targets |
| 427 | |
| 428 | # Basic helpers built in scripts/ |
| 429 | PHONY += scripts_basic |
| 430 | scripts_basic: |
| 431 | $(Q)$(MAKE) $(build)=scripts/basic |
| 432 | $(Q)rm -f .tmp_quiet_recordmcount |
| 433 | |
| 434 | # To avoid any implicit rule to kick in, define an empty command. |
| 435 | scripts/basic/%: scripts_basic ; |
| 436 | |
| 437 | |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 438 | KBUILD_CFLAGS += -Os #-fomit-frame-pointer |
| 439 | |
| 440 | ifdef BUILD_TAG |
| 441 | KBUILD_CFLAGS += -DBUILD_TAG='"$(BUILD_TAG)"' |
| 442 | endif |
| 443 | |
| 444 | KBUILD_CFLAGS += $(call cc-option,-fno-stack-protector) |
| 445 | |
| 446 | KBUILD_CFLAGS += -g |
| 447 | # $(KBUILD_AFLAGS) sets -g, which causes gcc to pass a suitable -g<format> |
| 448 | # option to the assembler. |
| 449 | KBUILD_AFLAGS += -g |
| 450 | |
Masahiro Yamada | fea1ca8 | 2014-02-04 17:24:20 +0900 | [diff] [blame] | 451 | NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include) |
| 452 | CHECKFLAGS += $(NOSTDINC_FLAGS) |
| 453 | |
Masahiro Yamada | 2b3c9d3 | 2014-02-04 17:24:19 +0900 | [diff] [blame] | 454 | # Report stack usage if supported |
| 455 | KBUILD_CFLAGS += $(call cc-option,-fstack-usage) |
| 456 | |
| 457 | KBUILD_CFLAGS += $(call cc-option,-Wno-format-nonliteral) |
| 458 | |
| 459 | # turn jbsr into jsr for m68k |
| 460 | ifeq ($(ARCH),m68k) |
| 461 | ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4) |
| 462 | KBUILD_AFLAGS += -Wa,-gstabs,-S |
| 463 | endif |
| 464 | endif |
| 465 | |
Wolfgang Denk | 92b197f | 2006-03-12 01:37:50 +0100 | [diff] [blame] | 466 | # load other configuration |
| 467 | include $(TOPDIR)/config.mk |
| 468 | |
Masahiro Yamada | ced0715 | 2014-02-04 17:24:21 +0900 | [diff] [blame] | 469 | ifneq ($(CONFIG_SYS_TEXT_BASE),) |
| 470 | KBUILD_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) |
| 471 | endif |
| 472 | |
| 473 | export CONFIG_SYS_TEXT_BASE |
| 474 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 475 | LDFLAGS_u-boot += -T u-boot.lds $(LDFLAGS_FINAL) |
Masahiro Yamada | ced0715 | 2014-02-04 17:24:21 +0900 | [diff] [blame] | 476 | ifneq ($(CONFIG_SYS_TEXT_BASE),) |
| 477 | LDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE) |
| 478 | endif |
| 479 | |
Simon Glass | fada9e2 | 2013-04-20 08:42:36 +0000 | [diff] [blame] | 480 | # Targets which don't build the source code |
Masahiro Yamada | ced0715 | 2014-02-04 17:24:21 +0900 | [diff] [blame] | 481 | NON_BUILD_TARGETS = backup clean clobber distclean mrproper tidy unconfig %_config |
Simon Glass | fada9e2 | 2013-04-20 08:42:36 +0000 | [diff] [blame] | 482 | |
| 483 | # Only do the generic board check when actually building, not configuring |
| 484 | ifeq ($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),) |
Masahiro Yamada | ced0715 | 2014-02-04 17:24:21 +0900 | [diff] [blame] | 485 | ifeq ($(__HAVE_ARCH_GENERIC_BOARD),) |
| 486 | ifneq ($(CONFIG_SYS_GENERIC_BOARD),) |
| 487 | CHECK_GENERIC_BOARD = $(error Your architecture does not support generic board. \ |
| 488 | Please undefined CONFIG_SYS_GENERIC_BOARD in your board config file) |
| 489 | endif |
Simon Glass | fada9e2 | 2013-04-20 08:42:36 +0000 | [diff] [blame] | 490 | endif |
| 491 | endif |
| 492 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 493 | # FIX ME |
| 494 | cpp_flags := $(KBUILD_CPPFLAGS) $(CPPFLAGS) $(UBOOTINCLUDE) $(NOSTDINC_FLAGS) |
| 495 | c_flags := $(KBUILD_CFLAGS) $(cpp_flags) |
| 496 | |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 497 | # If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use |
| 498 | # that (or fail if absent). Otherwise, search for a linker script in a |
| 499 | # standard location. |
| 500 | |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 501 | LDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT)) |
| 502 | |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 503 | ifndef LDSCRIPT |
| 504 | #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug |
| 505 | ifdef CONFIG_SYS_LDSCRIPT |
| 506 | # need to strip off double quotes |
Masahiro Yamada | a8c0754 | 2013-12-05 15:08:31 +0900 | [diff] [blame] | 507 | LDSCRIPT := $(CONFIG_SYS_LDSCRIPT:"%"=%) |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 508 | endif |
| 509 | endif |
| 510 | |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 511 | # 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] | 512 | ifndef LDSCRIPT |
| 513 | ifeq ($(CONFIG_NAND_U_BOOT),y) |
| 514 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds |
| 515 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 516 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds |
| 517 | endif |
| 518 | endif |
| 519 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 520 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds |
| 521 | endif |
| 522 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 523 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds |
| 524 | endif |
| 525 | ifeq ($(wildcard $(LDSCRIPT)),) |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 526 | LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds |
| 527 | # We don't expect a Makefile here |
| 528 | LDSCRIPT_MAKEFILE_DIR = |
| 529 | endif |
| 530 | ifeq ($(wildcard $(LDSCRIPT)),) |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 531 | $(error could not find linker script) |
| 532 | endif |
| 533 | endif |
| 534 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 535 | ######################################################################### |
| 536 | # U-Boot objects....order is important (i.e. start must be first) |
| 537 | |
Masahiro Yamada | e8a8b82 | 2013-11-28 12:09:59 +0900 | [diff] [blame] | 538 | head-y := $(CPUDIR)/start.o |
| 539 | head-$(CONFIG_4xx) += arch/powerpc/cpu/ppc4xx/resetvec.o |
| 540 | head-$(CONFIG_MPC85xx) += arch/powerpc/cpu/mpc85xx/resetvec.o |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 541 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 542 | OBJS := $(head-y) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 543 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 544 | HAVE_VENDOR_COMMON_LIB = $(if $(wildcard $(srctree)/board/$(VENDOR)/common/Makefile),y,n) |
Daniel Schwierzeck | 8b5a026 | 2012-07-19 13:39:58 +0000 | [diff] [blame] | 545 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 546 | LIBS-y += lib/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 547 | LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/ |
| 548 | LIBS-y += $(CPUDIR)/ |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 549 | ifdef SOC |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 550 | LIBS-y += $(CPUDIR)/$(SOC)/ |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 551 | endif |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 552 | LIBS-$(CONFIG_IXP4XX_NPE) += drivers/net/npe/ |
| 553 | LIBS-$(CONFIG_OF_EMBED) += dts/ |
| 554 | LIBS-y += arch/$(ARCH)/lib/ |
Masahiro Yamada | 57c3e5f | 2013-11-11 14:36:09 +0900 | [diff] [blame] | 555 | LIBS-y += fs/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 556 | LIBS-y += net/ |
| 557 | LIBS-y += disk/ |
| 558 | LIBS-y += drivers/ |
| 559 | LIBS-y += drivers/dma/ |
| 560 | LIBS-y += drivers/gpio/ |
| 561 | LIBS-y += drivers/i2c/ |
| 562 | LIBS-y += drivers/input/ |
| 563 | LIBS-y += drivers/mmc/ |
| 564 | LIBS-y += drivers/mtd/ |
Masahiro Yamada | 392ba52 | 2013-11-28 12:22:17 +0900 | [diff] [blame] | 565 | LIBS-$(CONFIG_CMD_NAND) += drivers/mtd/nand/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 566 | LIBS-y += drivers/mtd/onenand/ |
Masahiro Yamada | 392ba52 | 2013-11-28 12:22:17 +0900 | [diff] [blame] | 567 | LIBS-$(CONFIG_CMD_UBI) += drivers/mtd/ubi/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 568 | LIBS-y += drivers/mtd/spi/ |
| 569 | LIBS-y += drivers/net/ |
| 570 | LIBS-y += drivers/net/phy/ |
| 571 | LIBS-y += drivers/pci/ |
| 572 | LIBS-y += drivers/power/ \ |
| 573 | drivers/power/fuel_gauge/ \ |
| 574 | drivers/power/mfd/ \ |
| 575 | drivers/power/pmic/ \ |
| 576 | drivers/power/battery/ |
| 577 | LIBS-y += drivers/spi/ |
| 578 | LIBS-$(CONFIG_FMAN_ENET) += drivers/net/fm/ |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 579 | LIBS-$(CONFIG_SYS_FSL_DDR) += drivers/ddr/fsl/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 580 | LIBS-y += drivers/serial/ |
| 581 | LIBS-y += drivers/usb/eth/ |
| 582 | LIBS-y += drivers/usb/gadget/ |
| 583 | LIBS-y += drivers/usb/host/ |
| 584 | LIBS-y += drivers/usb/musb/ |
| 585 | LIBS-y += drivers/usb/musb-new/ |
| 586 | LIBS-y += drivers/usb/phy/ |
| 587 | LIBS-y += drivers/usb/ulpi/ |
| 588 | LIBS-y += common/ |
| 589 | LIBS-y += lib/libfdt/ |
Masahiro Yamada | 8a7e7d5 | 2013-11-18 11:08:35 +0900 | [diff] [blame] | 590 | LIBS-$(CONFIG_API) += api/ |
Masahiro Yamada | 755e08f | 2013-11-28 12:09:58 +0900 | [diff] [blame] | 591 | LIBS-$(CONFIG_HAS_POST) += post/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 592 | LIBS-y += test/ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 593 | |
Alison Wang | 24e8bee | 2013-05-27 22:55:42 +0000 | [diff] [blame] | 594 | ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610)) |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 595 | LIBS-y += arch/$(ARCH)/imx-common/ |
Jason Liu | 18936ee | 2011-11-25 00:18:01 +0000 | [diff] [blame] | 596 | endif |
| 597 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 598 | LIBS-$(CONFIG_ARM) += arch/arm/cpu/ |
| 599 | LIBS-$(CONFIG_PPC) += arch/powerpc/cpu/ |
Minkyu Kang | 852bd07 | 2010-08-19 13:48:11 +0900 | [diff] [blame] | 600 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 601 | LIBS-y += board/$(BOARDDIR)/ |
Masahiro Yamada | 08e39a8 | 2013-11-11 14:35:55 +0900 | [diff] [blame] | 602 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 603 | LIBS-y := $(patsubst %/, %/built-in.o, $(LIBS-y)) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 604 | LIBS := $(sort $(LIBS-y)) |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 605 | .PHONY : $(LIBS) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 606 | |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 607 | # Add GCC lib |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 608 | ifdef USE_PRIVATE_LIBGCC |
| 609 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 610 | PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/lib.a |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 611 | else |
| 612 | PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc |
| 613 | endif |
| 614 | else |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 615 | 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] | 616 | endif |
| 617 | PLATFORM_LIBS += $(PLATFORM_LIBGCC) |
| 618 | export PLATFORM_LIBS |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 619 | |
Mike Frysinger | 6ac9f47 | 2009-08-23 02:47:59 -0400 | [diff] [blame] | 620 | # Special flags for CPP when processing the linker script. |
| 621 | # Pass the version down so we can handle backwards compatibility |
| 622 | # on the fly. |
| 623 | LDPPFLAGS += \ |
| 624 | -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ |
Simon Glass | 7e6403a | 2011-11-21 10:49:40 +0000 | [diff] [blame] | 625 | -DCPUDIR=$(CPUDIR) \ |
Mike Frysinger | 6ac9f47 | 2009-08-23 02:47:59 -0400 | [diff] [blame] | 626 | $(shell $(LD) --version | \ |
| 627 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') |
| 628 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 629 | ######################################################################### |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 630 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 631 | |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 632 | ifneq ($(CONFIG_BOARD_SIZE_LIMIT),) |
| 633 | BOARD_SIZE_CHECK = \ |
| 634 | @actual=`wc -c $@ | awk '{print $$1}'`; \ |
Joe Hershberger | d060e6f | 2012-11-08 10:19:09 +0000 | [diff] [blame] | 635 | limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \ |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 636 | if test $$actual -gt $$limit; then \ |
Joe Hershberger | d060e6f | 2012-11-08 10:19:09 +0000 | [diff] [blame] | 637 | echo "$@ exceeds file size limit:" >&2 ; \ |
| 638 | echo " limit: $$limit bytes" >&2 ; \ |
| 639 | echo " actual: $$actual bytes" >&2 ; \ |
| 640 | echo " excess: $$((actual - limit)) bytes" >&2; \ |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 641 | exit 1; \ |
| 642 | fi |
| 643 | else |
| 644 | BOARD_SIZE_CHECK = |
| 645 | endif |
| 646 | |
Scott Wood | 8137af1 | 2013-12-14 11:47:32 +0800 | [diff] [blame] | 647 | # Statically apply RELA-style relocations (currently arm64 only) |
| 648 | ifneq ($(CONFIG_STATIC_RELA),) |
| 649 | # $(1) is u-boot ELF, $(2) is u-boot bin, $(3) is text base |
| 650 | DO_STATIC_RELA = \ |
| 651 | start=$$($(NM) $(1) | grep __rel_dyn_start | cut -f 1 -d ' '); \ |
| 652 | end=$$($(NM) $(1) | grep __rel_dyn_end | cut -f 1 -d ' '); \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 653 | tools/relocate-rela $(2) $(3) $$start $$end |
Scott Wood | 8137af1 | 2013-12-14 11:47:32 +0800 | [diff] [blame] | 654 | else |
| 655 | DO_STATIC_RELA = |
| 656 | endif |
| 657 | |
Mike Frysinger | 3e88337 | 2009-06-15 00:25:19 -0400 | [diff] [blame] | 658 | # Always append ALL so that arch config.mk's can add custom ones |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 659 | ALL-y += u-boot.srec u-boot.bin System.map |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 660 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 661 | ALL-$(CONFIG_NAND_U_BOOT) += u-boot-nand.bin |
| 662 | ALL-$(CONFIG_ONENAND_U_BOOT) += u-boot-onenand.bin |
| 663 | ALL-$(CONFIG_RAMBOOT_PBL) += u-boot.pbl |
| 664 | ALL-$(CONFIG_SPL) += spl/u-boot-spl.bin |
| 665 | ALL-$(CONFIG_SPL_FRAMEWORK) += u-boot.img |
| 666 | ALL-$(CONFIG_TPL) += tpl/u-boot-tpl.bin |
| 667 | ALL-$(CONFIG_OF_SEPARATE) += u-boot.dtb u-boot-dtb.bin |
Vadim Bendebury | b343bbb | 2013-03-27 14:34:18 +0000 | [diff] [blame] | 668 | ifneq ($(CONFIG_SPL_TARGET),) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 669 | ALL-$(CONFIG_SPL) += $(CONFIG_SPL_TARGET:"%"=%) |
Vadim Bendebury | b343bbb | 2013-03-27 14:34:18 +0000 | [diff] [blame] | 670 | endif |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 671 | ALL-$(CONFIG_REMAKE_ELF) += u-boot.elf |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 672 | |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 673 | # enable combined SPL/u-boot/dtb rules for tegra |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 674 | ifneq ($(CONFIG_TEGRA),) |
Vidya Sagar | 7dcd3a2 | 2013-10-31 14:51:38 +0530 | [diff] [blame] | 675 | ifeq ($(CONFIG_SPL),y) |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 676 | ifeq ($(CONFIG_OF_SEPARATE),y) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 677 | ALL-y += u-boot-dtb-tegra.bin |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 678 | else |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 679 | ALL-y += u-boot-nodtb-tegra.bin |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 680 | endif |
| 681 | endif |
Vidya Sagar | 7dcd3a2 | 2013-10-31 14:51:38 +0530 | [diff] [blame] | 682 | endif |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 683 | |
Masahiro Yamada | 8a7e7d5 | 2013-11-18 11:08:35 +0900 | [diff] [blame] | 684 | all: $(ALL-y) $(SUBDIR_EXAMPLES-y) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 685 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 686 | u-boot.dtb: checkdtc u-boot |
| 687 | $(MAKE) $(build)=dts binary |
| 688 | mv dts/dt.dtb $@ |
Simon Glass | 2c0f79e | 2011-10-24 19:15:31 +0000 | [diff] [blame] | 689 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 690 | u-boot-dtb.bin: u-boot.bin u-boot.dtb |
Simon Glass | 2c0f79e | 2011-10-24 19:15:31 +0000 | [diff] [blame] | 691 | cat $^ >$@ |
| 692 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 693 | u-boot.hex: u-boot |
wdenk | 6310eb9 | 2005-01-09 21:28:15 +0000 | [diff] [blame] | 694 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ |
| 695 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 696 | u-boot.srec: u-boot |
Albert ARIBAUD | 47ed5dd | 2013-11-07 14:21:46 +0100 | [diff] [blame] | 697 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 698 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 699 | u-boot.bin: u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 700 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |
Scott Wood | 8137af1 | 2013-12-14 11:47:32 +0800 | [diff] [blame] | 701 | $(call DO_STATIC_RELA,$<,$@,$(CONFIG_SYS_TEXT_BASE)) |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 702 | $(BOARD_SIZE_CHECK) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 703 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 704 | u-boot.ldr: u-boot |
Mike Frysinger | 76d8218 | 2009-07-21 22:17:36 -0400 | [diff] [blame] | 705 | $(CREATE_LDR_ENV) |
Mike Frysinger | 68e5632 | 2008-08-07 18:56:56 -0400 | [diff] [blame] | 706 | $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS) |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 707 | $(BOARD_SIZE_CHECK) |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 708 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 709 | u-boot.ldr.hex: u-boot.ldr |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 710 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary |
| 711 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 712 | u-boot.ldr.srec: u-boot.ldr |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 713 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary |
| 714 | |
Stefan Roese | b40bda6 | 2012-08-16 17:54:52 +0200 | [diff] [blame] | 715 | # |
| 716 | # U-Boot entry point, needed for booting of full-blown U-Boot |
| 717 | # from the SPL U-Boot version. |
| 718 | # |
| 719 | ifndef CONFIG_SYS_UBOOT_START |
| 720 | CONFIG_SYS_UBOOT_START := 0 |
| 721 | endif |
| 722 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 723 | u-boot.img: u-boot.bin |
| 724 | tools/mkimage -A $(ARCH) -T firmware -C none \ |
Stefan Roese | b40bda6 | 2012-08-16 17:54:52 +0200 | [diff] [blame] | 725 | -O u-boot -a $(CONFIG_SYS_TEXT_BASE) \ |
| 726 | -e $(CONFIG_SYS_UBOOT_START) \ |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 727 | -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 728 | sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ |
| 729 | -d $< $@ |
| 730 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 731 | u-boot.imx: u-boot.bin depend |
| 732 | $(MAKE) $(build)=arch/arm/imx-common $(objtree)/u-boot.imx |
Stefano Babic | 8edcde5 | 2010-01-20 18:19:10 +0100 | [diff] [blame] | 733 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 734 | u-boot.kwb: u-boot.bin |
| 735 | tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \ |
Eric Cooper | 2ea88b0 | 2010-10-19 13:31:11 -0400 | [diff] [blame] | 736 | -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@ |
Prafulla Wadaskar | aa0c7a8 | 2009-09-07 15:05:02 +0530 | [diff] [blame] | 737 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 738 | u-boot.pbl: u-boot.bin |
| 739 | tools/mkimage -n $(CONFIG_SYS_FSL_PBL_RCW) \ |
Prabhakar Kushwaha | 690e425 | 2014-01-13 11:28:04 +0530 | [diff] [blame] | 740 | -R $(CONFIG_SYS_FSL_PBL_PBI) -T pblimage \ |
Shaohui Xie | 5d898a0 | 2012-08-10 02:49:35 +0000 | [diff] [blame] | 741 | -d $< $@ |
| 742 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 743 | u-boot.sha1: u-boot.bin |
| 744 | tools/ubsha1 u-boot.bin |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 745 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 746 | u-boot.dis: u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 747 | $(OBJDUMP) -d $< > $@ |
| 748 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 749 | # $@ is output, $(1) and $(2) are inputs, $(3) is padded intermediate, |
| 750 | # $(4) is pad-to |
| 751 | SPL_PAD_APPEND = \ |
| 752 | $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(4) -I binary -O binary \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 753 | $(1) $(3); \ |
| 754 | cat $(3) $(2) > $@; \ |
| 755 | rm $(3) |
Scott Wood | 74752ba | 2012-12-06 13:33:16 +0000 | [diff] [blame] | 756 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 757 | ifdef CONFIG_TPL |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 758 | SPL_PAYLOAD := tpl/u-boot-with-tpl.bin |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 759 | else |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 760 | SPL_PAYLOAD := u-boot.bin |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 761 | endif |
Scott Wood | 74752ba | 2012-12-06 13:33:16 +0000 | [diff] [blame] | 762 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 763 | u-boot-with-spl.bin: spl/u-boot-spl.bin $(SPL_PAYLOAD) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 764 | $(call SPL_PAD_APPEND,$<,$(SPL_PAYLOAD),spl/u-boot-spl-pad.bin,$(CONFIG_SPL_PAD_TO)) |
| 765 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 766 | tpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin |
| 767 | $(call SPL_PAD_APPEND,$<,u-boot.bin,tpl/u-boot-tpl-pad.bin,$(CONFIG_TPL_PAD_TO)) |
Heiko Schocher | 7816f2c | 2011-07-16 00:06:42 +0000 | [diff] [blame] | 768 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 769 | u-boot-with-spl.imx: spl/u-boot-spl.bin u-boot.bin |
| 770 | $(MAKE) $(build)=arch/arm/imx-common \ |
Benoît Thébaudeau | ba59760 | 2013-04-11 09:35:56 +0000 | [diff] [blame] | 771 | $(OBJTREE)/u-boot-with-spl.imx |
| 772 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 773 | u-boot-with-nand-spl.imx: spl/u-boot-spl.bin u-boot.bin |
| 774 | $(MAKE) $(build)=arch/arm/imx-common \ |
Benoît Thébaudeau | 7d5a5c7 | 2013-04-11 09:35:57 +0000 | [diff] [blame] | 775 | $(OBJTREE)/u-boot-with-nand-spl.imx |
| 776 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 777 | u-boot.ubl: u-boot-with-spl.bin |
| 778 | tools/mkimage -n $(UBL_CONFIG) -T ublimage \ |
| 779 | -e $(CONFIG_SYS_TEXT_BASE) -d $< u-boot.ubl |
José Miguel Gonçalves | 277f00f | 2012-09-19 01:25:26 +0000 | [diff] [blame] | 780 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 781 | u-boot.ais: spl/u-boot-spl.bin u-boot.img |
| 782 | tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(srctree)/$(CONFIG_AIS_CONFIG_FILE:"%"=%),"/dev/null") \ |
Sughosh Ganu | 6d660e7 | 2012-06-13 08:39:06 +0000 | [diff] [blame] | 783 | -T aisimage \ |
Christian Riesch | d36d885 | 2011-12-09 09:47:39 +0000 | [diff] [blame] | 784 | -e $(CONFIG_SPL_TEXT_BASE) \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 785 | -d spl/u-boot-spl.bin \ |
| 786 | spl/u-boot-spl.ais |
Christian Riesch | d36d885 | 2011-12-09 09:47:39 +0000 | [diff] [blame] | 787 | $(OBJCOPY) ${OBJCFLAGS} -I binary \ |
| 788 | --pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 789 | spl/u-boot-spl.ais spl/u-boot-spl-pad.ais |
| 790 | cat spl/u-boot-spl-pad.ais u-boot.img > u-boot.ais |
Christian Riesch | d36d885 | 2011-12-09 09:47:39 +0000 | [diff] [blame] | 791 | |
Otavio Salvador | a545355 | 2012-08-18 07:25:25 +0000 | [diff] [blame] | 792 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 793 | u-boot.sb: u-boot.bin spl/u-boot-spl.bin |
| 794 | $(MAKE) $(build)=$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb |
Marek Vasut | 30b9b93 | 2011-11-08 23:18:19 +0000 | [diff] [blame] | 795 | |
Stefan Roese | 94aebe6 | 2012-01-05 11:19:50 +0100 | [diff] [blame] | 796 | # On x600 (SPEAr600) U-Boot is appended to U-Boot SPL. |
| 797 | # Both images are created using mkimage (crc etc), so that the ROM |
| 798 | # bootloader can check its integrity. Padding needs to be done to the |
| 799 | # SPL image (with mkimage header) and not the binary. Otherwise the resulting image |
| 800 | # which is loaded/copied by the ROM bootloader to SRAM doesn't fit. |
| 801 | # The resulting image containing both U-Boot images is called u-boot.spr |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 802 | u-boot.spr: u-boot.img spl/u-boot-spl.bin |
| 803 | tools/mkimage -A $(ARCH) -T firmware -C none \ |
Stefan Roese | 94aebe6 | 2012-01-05 11:19:50 +0100 | [diff] [blame] | 804 | -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 805 | -d spl/u-boot-spl.bin $@ |
Masahiro Yamada | 5727026 | 2013-12-18 19:00:51 +0900 | [diff] [blame] | 806 | $(OBJCOPY) -I binary -O binary \ |
| 807 | --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff $@ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 808 | cat u-boot.img >> $@ |
Stefan Roese | 94aebe6 | 2012-01-05 11:19:50 +0100 | [diff] [blame] | 809 | |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 810 | ifneq ($(CONFIG_TEGRA),) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 811 | u-boot-nodtb-tegra.bin: spl/u-boot-spl.bin u-boot.bin |
| 812 | $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary spl/u-boot-spl spl/u-boot-spl-pad.bin |
| 813 | cat spl/u-boot-spl-pad.bin u-boot.bin > $@ |
| 814 | rm spl/u-boot-spl-pad.bin |
Stephen Warren | 9972db5 | 2013-05-14 08:00:53 +0000 | [diff] [blame] | 815 | |
| 816 | ifeq ($(CONFIG_OF_SEPARATE),y) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 817 | u-boot-dtb-tegra.bin: u-boot-nodtb-tegra.bin u-boot.dtb |
| 818 | cat u-boot-nodtb-tegra.bin u-boot.dtb > $@ |
Stephen Warren | 9972db5 | 2013-05-14 08:00:53 +0000 | [diff] [blame] | 819 | endif |
Allen Martin | 984df4e | 2012-08-31 08:30:10 +0000 | [diff] [blame] | 820 | endif |
| 821 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 822 | u-boot-img.bin: spl/u-boot-spl.bin u-boot.img |
| 823 | cat spl/u-boot-spl.bin u-boot.img > $@ |
Stefan Roese | fb3d2b8 | 2012-08-24 17:36:53 +0200 | [diff] [blame] | 824 | |
Stefan Roese | ecddccd | 2013-02-22 11:36:50 +0100 | [diff] [blame] | 825 | # PPC4xx needs the SPL at the end of the image, since the reset vector |
| 826 | # is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target |
| 827 | # and need to introduce a new build target with the full blown U-Boot |
| 828 | # at the start padded up to the start of the SPL image. And then concat |
| 829 | # the SPL image to the end. |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 830 | u-boot-img-spl-at-end.bin: spl/u-boot-spl.bin u-boot.img |
Masahiro Yamada | 5727026 | 2013-12-18 19:00:51 +0900 | [diff] [blame] | 831 | $(OBJCOPY) -I binary -O binary --pad-to=$(CONFIG_UBOOT_PAD_TO) \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 832 | --gap-fill=0xff u-boot.img $@ |
| 833 | cat spl/u-boot-spl.bin >> $@ |
Stefan Roese | ecddccd | 2013-02-22 11:36:50 +0100 | [diff] [blame] | 834 | |
Scott Wood | f4dc714 | 2013-12-14 11:47:33 +0800 | [diff] [blame] | 835 | # Create a new ELF from a raw binary file. This is useful for arm64 |
| 836 | # where static relocation needs to be performed on the raw binary, |
| 837 | # but certain simulators only accept an ELF file (but don't do the |
| 838 | # relocation). |
| 839 | # FIXME refactor dts/Makefile to share target/arch detection |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 840 | u-boot.elf: u-boot.bin |
Scott Wood | f4dc714 | 2013-12-14 11:47:33 +0800 | [diff] [blame] | 841 | @$(OBJCOPY) -B aarch64 -I binary -O elf64-littleaarch64 \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 842 | $< u-boot-elf.o |
| 843 | @$(LD) u-boot-elf.o -o $@ \ |
Scott Wood | f4dc714 | 2013-12-14 11:47:33 +0800 | [diff] [blame] | 844 | --defsym=_start=$(CONFIG_SYS_TEXT_BASE) \ |
| 845 | -Ttext=$(CONFIG_SYS_TEXT_BASE) |
| 846 | |
Simon Glass | 86eb49b | 2011-10-03 19:26:50 +0000 | [diff] [blame] | 847 | ifeq ($(CONFIG_SANDBOX),y) |
| 848 | GEN_UBOOT = \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 849 | $(CC) $(SYMS) -T u-boot.lds \ |
| 850 | -Wl,--start-group $(LIBS) -Wl,--end-group \ |
Simon Glass | 86eb49b | 2011-10-03 19:26:50 +0000 | [diff] [blame] | 851 | $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot |
| 852 | else |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 853 | GEN_UBOOT = \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 854 | $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \ |
| 855 | $(OBJS) \ |
| 856 | --start-group $(LIBS) --end-group $(PLATFORM_LIBS) \ |
wdenk | b2184c3 | 2002-11-19 23:01:07 +0000 | [diff] [blame] | 857 | -Map u-boot.map -o u-boot |
Simon Glass | 86eb49b | 2011-10-03 19:26:50 +0000 | [diff] [blame] | 858 | endif |
| 859 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 860 | u-boot: depend $(SUBDIR_TOOLS) $(OBJS) $(LIBS) u-boot.lds |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 861 | $(GEN_UBOOT) |
| 862 | ifeq ($(CONFIG_KALLSYMS),y) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 863 | smap=`$(call SYSTEM_MAP,u-boot) | \ |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 864 | awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \ |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 865 | $(CC) $(c_flags) -DSYSTEM_MAP="\"$${smap}\"" \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 866 | -c $(srctree)/common/system_map.c -o common/system_map.o |
| 867 | $(GEN_UBOOT) common/system_map.o |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 868 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 869 | |
Masahiro Yamada | 3bddafa | 2013-10-21 11:53:41 +0900 | [diff] [blame] | 870 | $(OBJS): |
| 871 | @: |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 872 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 873 | $(LIBS): depend $(SUBDIR_TOOLS) scripts_basic |
| 874 | $(Q)$(MAKE) $(build)=$(patsubst %/,%,$(dir $@)) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 875 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 876 | $(SUBDIRS): depend scripts_basic |
| 877 | $(Q)$(MAKE) $(build)=$@ |
Masahiro Yamada | 940db16 | 2014-02-04 17:24:10 +0900 | [diff] [blame] | 878 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 879 | $(SUBDIR_EXAMPLES-y): u-boot |
Che-liang Chiou | 349e83f | 2011-10-17 21:04:15 +0000 | [diff] [blame] | 880 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 881 | u-boot.lds: $(LDSCRIPT) depend |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 882 | $(CPP) $(cpp_flags) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@ |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 883 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 884 | nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend scripts_basic |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 885 | $(MAKE) $(build)=nand_spl/board/$(BOARDDIR) all |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 886 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 887 | u-boot-nand.bin: nand_spl u-boot.bin |
| 888 | cat nand_spl/u-boot-spl-16k.bin u-boot.bin > u-boot-nand.bin |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 889 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 890 | spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend scripts_basic |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 891 | $(MAKE) obj=spl -f $(srctree)/spl/Makefile all |
Daniel Schwierzeck | 5df2ee2 | 2011-07-13 05:11:04 +0000 | [diff] [blame] | 892 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 893 | tpl/u-boot-tpl.bin: $(SUBDIR_TOOLS) depend scripts_basic |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 894 | $(MAKE) obj=tpl -f $(srctree)/spl/Makefile all CONFIG_TPL_BUILD=y |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 895 | |
Daniel Hobi | 2a99879 | 2010-01-18 18:13:39 +0100 | [diff] [blame] | 896 | # Explicitly make _depend in subdirs containing multiple targets to prevent |
| 897 | # parallel sub-makes creating .depend files simultaneously. |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 898 | depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 899 | include/spl-autoconf.mk \ |
| 900 | include/tpl-autoconf.mk \ |
| 901 | include/autoconf.mk \ |
| 902 | include/generated/generic-asm-offsets.h \ |
| 903 | include/generated/asm-offsets.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 904 | |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 905 | TAG_SUBDIRS = $(SUBDIRS) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 906 | TAG_SUBDIRS += $(dir $(LIBS)) |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 907 | TAG_SUBDIRS += include |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 908 | |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 909 | FIND := find |
| 910 | FINDFLAGS := -L |
| 911 | |
Tom Rini | 1064d98 | 2012-02-02 14:07:05 +0000 | [diff] [blame] | 912 | checkstack: |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 913 | $(CROSS_COMPILE)objdump -d u-boot \ |
| 914 | `$(FIND) . -name u-boot-spl -print` | \ |
| 915 | perl $(src)/scripts/checkstack.pl $(ARCH) |
Tom Rini | 1064d98 | 2012-02-02 14:07:05 +0000 | [diff] [blame] | 916 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 917 | tags ctags: |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 918 | ctags -w -o ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 919 | -name '*.[chS]' -print` |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 920 | |
| 921 | etags: |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 922 | etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 923 | -name '*.[chS]' -print` |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 924 | cscope: |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 925 | $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \ |
| 926 | cscope.files |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 927 | cscope -b -q -k |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 928 | |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 929 | SYSTEM_MAP = \ |
| 930 | $(NM) $1 | \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 931 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 932 | LC_ALL=C sort |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 933 | System.map: u-boot |
Masahiro Yamada | bc8bb6e | 2013-11-11 14:36:01 +0900 | [diff] [blame] | 934 | @$(call SYSTEM_MAP,$<) > $@ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 935 | |
Tom Rini | 06a119a | 2012-03-16 06:34:35 +0000 | [diff] [blame] | 936 | checkthumb: |
| 937 | @if test $(call cc-version) -lt 0404; then \ |
| 938 | echo -n '*** Your GCC does not produce working '; \ |
| 939 | echo 'binaries in THUMB mode.'; \ |
| 940 | echo '*** Your board is configured for THUMB mode.'; \ |
| 941 | false; \ |
| 942 | fi |
Scott Wood | 6ec63f4 | 2012-09-20 19:10:01 -0500 | [diff] [blame] | 943 | |
| 944 | # GCC 3.x is reported to have problems generating the type of relocation |
| 945 | # that U-Boot wants. |
| 946 | # See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html |
| 947 | checkgcc4: |
| 948 | @if test $(call cc-version) -lt 0400; then \ |
| 949 | echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \ |
| 950 | false; \ |
| 951 | fi |
| 952 | |
Stephen Warren | 501ebdf | 2013-07-24 10:09:16 -0700 | [diff] [blame] | 953 | checkdtc: |
| 954 | @if test $(call dtc-version) -lt 0104; then \ |
| 955 | echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \ |
| 956 | false; \ |
| 957 | fi |
| 958 | |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 959 | # |
| 960 | # Auto-generate the autoconf.mk file (which is included by all makefiles) |
| 961 | # |
| 962 | # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep. |
| 963 | # the dep file is only include in this top level makefile to determine when |
| 964 | # to regenerate the autoconf.mk file. |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 965 | include/autoconf.mk.dep: include/config.h include/common.h |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 966 | @$(XECHO) Generating $@ ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 967 | : Generate the dependancies ; \ |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 968 | $(CC) -x c -DDO_DEPS_ONLY -M $(c_flags) \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 969 | -MQ include/autoconf.mk $(srctree)/include/common.h > $@ || \ |
Masahiro Yamada | 65947ab | 2013-12-02 14:57:29 +0900 | [diff] [blame] | 970 | rm $@ |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 971 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 972 | include/autoconf.mk: include/config.h |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 973 | @$(XECHO) Generating $@ ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 974 | : Extract the config macros ; \ |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 975 | $(CPP) $(c_flags) -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 976 | sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \ |
Masahiro Yamada | 65947ab | 2013-12-02 14:57:29 +0900 | [diff] [blame] | 977 | rm $@.tmp |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 978 | |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 979 | # Auto-generate the spl-autoconf.mk file (which is included by all makefiles for SPL) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 980 | include/tpl-autoconf.mk: include/config.h |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 981 | @$(XECHO) Generating $@ ; \ |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 982 | : Extract the config macros ; \ |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 983 | $(CPP) $(c_flags) -DCONFIG_TPL_BUILD -DCONFIG_SPL_BUILD\ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 984 | -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \ |
| 985 | sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \ |
Masahiro Yamada | 65947ab | 2013-12-02 14:57:29 +0900 | [diff] [blame] | 986 | rm $@.tmp |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 987 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 988 | include/spl-autoconf.mk: include/config.h |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 989 | @$(XECHO) Generating $@ ; \ |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 990 | : Extract the config macros ; \ |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 991 | $(CPP) $(c_flags) -DCONFIG_SPL_BUILD -DDO_DEPS_ONLY -dM $(srctree)/include/common.h > $@.tmp && \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 992 | sed -n -f $(srctree)/tools/scripts/define2mk.sed $@.tmp > $@; \ |
Masahiro Yamada | 65947ab | 2013-12-02 14:57:29 +0900 | [diff] [blame] | 993 | rm $@.tmp |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 994 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 995 | include/generated/generic-asm-offsets.h: lib/asm-offsets.s |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 996 | @$(XECHO) Generating $@ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 997 | $(srctree)/tools/scripts/make-asm-offsets lib/asm-offsets.s $@ |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 998 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 999 | lib/asm-offsets.s: include/config.h $(srctree)/lib/asm-offsets.c |
| 1000 | @mkdir -p lib |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 1001 | $(CC) -DDO_DEPS_ONLY \ |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 1002 | $(c_flags) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1003 | -o $@ $(srctree)/lib/asm-offsets.c -c -S |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 1004 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1005 | include/generated/asm-offsets.h: $(CPUDIR)/$(SOC)/asm-offsets.s |
Wolfgang Denk | b12734e | 2012-07-26 20:52:41 +0000 | [diff] [blame] | 1006 | @$(XECHO) Generating $@ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1007 | $(srctree)/tools/scripts/make-asm-offsets $(CPUDIR)/$(SOC)/asm-offsets.s $@ |
Stefano Babic | a4814a6 | 2011-09-05 04:32:28 +0000 | [diff] [blame] | 1008 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1009 | $(CPUDIR)/$(SOC)/asm-offsets.s: include/config.h |
| 1010 | @mkdir -p $(CPUDIR)/$(SOC) |
| 1011 | if [ -f $(srctree)/$(CPUDIR)/$(SOC)/asm-offsets.c ];then \ |
Stefano Babic | a4814a6 | 2011-09-05 04:32:28 +0000 | [diff] [blame] | 1012 | $(CC) -DDO_DEPS_ONLY \ |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 1013 | $(c_flags) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1014 | -o $@ $(srctree)/$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \ |
Stefano Babic | a4814a6 | 2011-09-05 04:32:28 +0000 | [diff] [blame] | 1015 | else \ |
| 1016 | touch $@; \ |
| 1017 | fi |
| 1018 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1019 | ######################################################################### |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1020 | else # !config.mk |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1021 | all u-boot.hex u-boot.srec u-boot.bin \ |
| 1022 | u-boot.img u-boot.dis u-boot \ |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 1023 | $(filter-out tools,$(SUBDIRS)) \ |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1024 | depend dep tags ctags etags cscope System.map: |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1025 | @echo "System not configured - see README" >&2 |
| 1026 | @ exit 1 |
Mike Frysinger | c7c0d54 | 2010-01-21 04:03:22 -0500 | [diff] [blame] | 1027 | |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 1028 | tools: $(VERSION_FILE) $(TIMESTAMP_FILE) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1029 | $(MAKE) $(build)=$@ all |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1030 | endif # config.mk |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1031 | |
Scott Wood | 54799e4 | 2013-12-14 11:47:34 +0800 | [diff] [blame] | 1032 | # ARM relocations should all be R_ARM_RELATIVE (32-bit) or |
| 1033 | # R_AARCH64_RELATIVE (64-bit). |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1034 | checkarmreloc: u-boot |
Scott Wood | 54799e4 | 2013-12-14 11:47:34 +0800 | [diff] [blame] | 1035 | @RELOC="`$(CROSS_COMPILE)readelf -r -W $< | cut -d ' ' -f 4 | \ |
| 1036 | grep R_A | sort -u`"; \ |
| 1037 | if test "$$RELOC" != "R_ARM_RELATIVE" -a \ |
| 1038 | "$$RELOC" != "R_AARCH64_RELATIVE"; then \ |
| 1039 | echo "$< contains unexpected relocations: $$RELOC"; \ |
| 1040 | false; \ |
| 1041 | fi |
Albert ARIBAUD | c37980c | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 1042 | |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 1043 | $(VERSION_FILE): |
Mike Frysinger | 14ce91b | 2011-06-30 16:56:20 +0000 | [diff] [blame] | 1044 | @mkdir -p $(dir $(VERSION_FILE)) |
Masahiro Yamada | dd88ab3 | 2013-11-28 16:29:23 +0900 | [diff] [blame] | 1045 | @( localvers='$(shell $(TOPDIR)/scripts/setlocalversion $(TOPDIR))' ; \ |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 1046 | printf '#define PLAIN_VERSION "%s%s"\n' \ |
| 1047 | "$(U_BOOT_VERSION)" "$${localvers}" ; \ |
| 1048 | printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \ |
| 1049 | "$(U_BOOT_VERSION)" "$${localvers}" ; \ |
| 1050 | ) > $@.tmp |
| 1051 | @( printf '#define CC_VERSION_STRING "%s"\n' \ |
| 1052 | '$(shell $(CC) --version | head -n 1)' )>> $@.tmp |
| 1053 | @( printf '#define LD_VERSION_STRING "%s"\n' \ |
| 1054 | '$(shell $(LD) -v | head -n 1)' )>> $@.tmp |
| 1055 | @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ |
| 1056 | |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 1057 | $(TIMESTAMP_FILE): |
| 1058 | @mkdir -p $(dir $(TIMESTAMP_FILE)) |
Loïc Minier | a76406f | 2011-10-03 11:57:11 +0200 | [diff] [blame] | 1059 | @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp |
| 1060 | @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp |
| 1061 | @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 1062 | |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 1063 | easylogo env gdb: |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 1064 | $(Q)$(MAKE) $(build)=tools/$@ MTD_VERSION=${MTD_VERSION} |
Masahiro Yamada | 940db16 | 2014-02-04 17:24:10 +0900 | [diff] [blame] | 1065 | |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 1066 | gdbtools: gdb |
| 1067 | |
Marek Vasut | 30ff891 | 2012-10-06 14:04:58 +0000 | [diff] [blame] | 1068 | xmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 1069 | $(Q)$(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) $(build)=doc/DocBook $@ |
Marek Vasut | 30ff891 | 2012-10-06 14:04:58 +0000 | [diff] [blame] | 1070 | |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 1071 | tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE) |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 1072 | $(Q)$(MAKE) $(build)=tools HOST_TOOLS_ALL=y |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 1073 | |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 1074 | .PHONY : CHANGELOG |
| 1075 | CHANGELOG: |
Ben Warren | b985b5d | 2006-10-26 14:38:25 -0400 | [diff] [blame] | 1076 | git log --no-merges U-Boot-1_1_5.. | \ |
| 1077 | unexpand -a | sed -e 's/\s\s*$$//' > $@ |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 1078 | |
Harald Welte | 0a823aa | 2008-07-09 22:30:30 +0800 | [diff] [blame] | 1079 | include/license.h: tools/bin2header COPYING |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 1080 | cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1081 | ######################################################################### |
| 1082 | |
| 1083 | unconfig: |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1084 | @rm -f include/config.h include/config.mk \ |
| 1085 | board/*/config.tmp board/*/*/config.tmp \ |
| 1086 | include/autoconf.mk include/autoconf.mk.dep \ |
| 1087 | include/spl-autoconf.mk \ |
| 1088 | include/tpl-autoconf.mk |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1089 | |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 1090 | %_config:: unconfig |
| 1091 | @$(MKCONFIG) -A $(@:_config=) |
| 1092 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 1093 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1094 | |
| 1095 | clean: |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1096 | @rm -f examples/standalone/atmel_df_pow2 \ |
| 1097 | examples/standalone/hello_world \ |
| 1098 | examples/standalone/interrupt \ |
| 1099 | examples/standalone/mem_to_mem_idma2intr \ |
| 1100 | examples/standalone/sched \ |
| 1101 | $(addprefix examples/standalone/, smc91111_eeprom smc911x_eeprom) \ |
| 1102 | examples/standalone/test_burst \ |
| 1103 | examples/standalone/timer |
| 1104 | @rm -f $(addprefix examples/api/, demo demo.bin) |
| 1105 | @rm -f tools/bmp_logo tools/easylogo/easylogo \ |
| 1106 | tools/env/fw_printenv \ |
| 1107 | tools/envcrc \ |
| 1108 | $(addprefix tools/gdb/, gdbcont gdbsend) \ |
| 1109 | tools/gen_eth_addr tools/img2srec \ |
| 1110 | tools/dumpimage \ |
| 1111 | $(addprefix tools/, mkenvimage mkimage) \ |
| 1112 | tools/mpc86x_clk \ |
| 1113 | $(addprefix tools/, mk$(BOARD)spl mkexynosspl) \ |
| 1114 | tools/mxsboot \ |
| 1115 | tools/ncb tools/ubsha1 \ |
| 1116 | tools/kernel-doc/docproc \ |
| 1117 | tools/proftool |
| 1118 | @rm -f $(addprefix board/cray/L1/, bootscript.c bootscript.image) \ |
| 1119 | board/matrix_vision/*/bootscript.img \ |
| 1120 | spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl \ |
| 1121 | u-boot.lds \ |
| 1122 | $(addprefix arch/blackfin/cpu/, init.lds init.elf) |
| 1123 | @rm -f include/bmp_logo.h |
| 1124 | @rm -f include/bmp_logo_data.h |
| 1125 | @rm -f lib/asm-offsets.s |
| 1126 | @rm -f include/generated/asm-offsets.h |
| 1127 | @rm -f $(CPUDIR)/$(SOC)/asm-offsets.s |
Peter Tyser | d4abc75 | 2009-07-20 19:02:21 -0500 | [diff] [blame] | 1128 | @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1129 | @$(MAKE) -f $(srctree)/doc/DocBook/Makefile cleandocs |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 1130 | @find $(OBJTREE) -type f \ |
Tom Rini | 4a30f1e | 2012-02-20 13:50:10 +0000 | [diff] [blame] | 1131 | \( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \ |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 1132 | -o -name '*.o' -o -name '*.a' -o -name '*.exe' -o -name '*.cmd' \ |
Troy Kisky | 71a988a | 2013-01-18 16:14:24 +0000 | [diff] [blame] | 1133 | -o -name '*.cfgtmp' \) -print \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1134 | | xargs rm -f |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1135 | |
Andy Fleming | 734329f | 2011-11-21 13:40:43 +0000 | [diff] [blame] | 1136 | # Removes everything not needed for testing u-boot |
| 1137 | tidy: clean |
| 1138 | @find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f |
| 1139 | |
| 1140 | clobber: tidy |
| 1141 | @find $(OBJTREE) -type f \( -name '*.srec' \ |
| 1142 | -o -name '*.bin' -o -name u-boot.img \) \ |
| 1143 | -print0 | xargs -0 rm -f |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1144 | @rm -f $(OBJS) *.bak ctags etags TAGS \ |
| 1145 | cscope.* *.*~ |
| 1146 | @rm -f u-boot u-boot.map u-boot.hex $(ALL-y) |
| 1147 | @rm -f u-boot.kwb |
| 1148 | @rm -f u-boot.pbl |
| 1149 | @rm -f u-boot.imx |
| 1150 | @rm -f u-boot-with-spl.imx |
| 1151 | @rm -f u-boot-with-nand-spl.imx |
| 1152 | @rm -f u-boot.ubl |
| 1153 | @rm -f u-boot.ais |
| 1154 | @rm -f u-boot.dtb |
| 1155 | @rm -f u-boot.sb |
| 1156 | @rm -f u-boot.spr |
| 1157 | @rm -f $(addprefix nand_spl/, u-boot.lds u-boot.lst System.map) |
| 1158 | @rm -f $(addprefix nand_spl/, u-boot-nand_spl.lds u-boot-spl u-boot-spl.map) |
| 1159 | @rm -f $(addprefix spl/, u-boot-spl u-boot-spl.bin u-boot-spl.map) |
| 1160 | @rm -f spl/u-boot-spl.lds |
| 1161 | @rm -f $(addprefix tpl/, u-boot-tpl u-boot-tpl.bin u-boot-tpl.map) |
| 1162 | @rm -f tpl/u-boot-spl.lds |
| 1163 | @rm -f MLO MLO.byteswap |
| 1164 | @rm -f SPL |
| 1165 | @rm -f tools/xway-swap-bytes |
| 1166 | @rm -fr include/asm/proc include/asm/arch include/asm |
| 1167 | @rm -fr include/generated |
| 1168 | @[ ! -d nand_spl ] || find nand_spl -name "*" -type l -print | xargs rm -f |
| 1169 | @rm -f dts/*.tmp |
| 1170 | @rm -f $(addprefix spl/, u-boot-spl.ais, u-boot-spl-pad.ais) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1171 | |
| 1172 | mrproper \ |
| 1173 | distclean: clobber unconfig |
Mike Frysinger | afd077b | 2011-06-24 18:37:55 +0000 | [diff] [blame] | 1174 | ifneq ($(OBJTREE),$(SRCTREE)) |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1175 | rm -rf * |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 1176 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1177 | |
| 1178 | backup: |
| 1179 | F=`basename $(TOPDIR)` ; cd .. ; \ |
Ilya Yanok | d6b9371 | 2010-06-21 18:13:21 +0400 | [diff] [blame] | 1180 | 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] | 1181 | |
| 1182 | ######################################################################### |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 1183 | |
| 1184 | endif # skip-makefile |
| 1185 | |
| 1186 | PHONY += FORCE |
| 1187 | FORCE: |
| 1188 | |
| 1189 | # Declare the contents of the .PHONY variable as phony. We keep that |
| 1190 | # information in a variable so we can use it in if_changed and friends. |
| 1191 | .PHONY: $(PHONY) |