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 = |
Wolfgang Denk | 8b9e478 | 2008-09-09 23:55:18 +0200 | [diff] [blame] | 12 | ifneq "$(SUBLEVEL)" "" |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 13 | U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) |
Wolfgang Denk | 8b9e478 | 2008-09-09 23:55:18 +0200 | [diff] [blame] | 14 | else |
| 15 | U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION) |
| 16 | endif |
Simon Glass | efb2172 | 2011-10-10 08:55:19 +0000 | [diff] [blame] | 17 | TIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h |
| 18 | VERSION_FILE = $(obj)include/generated/version_autogenerated.h |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 19 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 20 | HOSTARCH := $(shell uname -m | \ |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 21 | sed -e s/i.86/x86/ \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 22 | -e s/sun4u/sparc64/ \ |
| 23 | -e s/arm.*/arm/ \ |
| 24 | -e s/sa110/arm/ \ |
Kumar Gala | d017908 | 2010-04-28 02:52:02 -0500 | [diff] [blame] | 25 | -e s/ppc64/powerpc/ \ |
| 26 | -e s/ppc/powerpc/ \ |
Nobuhiro Iwamatsu | 8d1f635 | 2010-06-16 07:59:17 +0900 | [diff] [blame] | 27 | -e s/macppc/powerpc/\ |
| 28 | -e s/sh.*/sh/) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 29 | |
Wolfgang Denk | f9d77ed | 2005-08-12 23:23:46 +0200 | [diff] [blame] | 30 | HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 31 | sed -e 's/\(cygwin\).*/cygwin/') |
| 32 | |
Benoît Thébaudeau | 120ae60 | 2013-04-11 09:35:54 +0000 | [diff] [blame] | 33 | export HOSTARCH HOSTOS |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 34 | |
| 35 | # Deal with colliding definitions from tcsh etc. |
| 36 | VENDOR= |
| 37 | |
| 38 | ######################################################################### |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 39 | # Allow for silent builds |
| 40 | ifeq (,$(findstring s,$(MAKEFLAGS))) |
| 41 | XECHO = echo |
| 42 | else |
| 43 | XECHO = : |
| 44 | endif |
| 45 | |
| 46 | ######################################################################### |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 47 | # |
Robert P. J. Day | 1bce2ae | 2013-09-16 07:15:45 -0400 | [diff] [blame] | 48 | # U-boot build supports generating object files in a separate external |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 49 | # directory. Two use cases are supported: |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 50 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 51 | # 1) Add O= to the make command line |
| 52 | # 'make O=/tmp/build all' |
| 53 | # |
Robert P. J. Day | 1bce2ae | 2013-09-16 07:15:45 -0400 | [diff] [blame] | 54 | # 2) Set environment variable BUILD_DIR to point to the desired location |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 55 | # 'export BUILD_DIR=/tmp/build' |
| 56 | # 'make' |
| 57 | # |
| 58 | # The second approach can also be used with a MAKEALL script |
| 59 | # 'export BUILD_DIR=/tmp/build' |
| 60 | # './MAKEALL' |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 61 | # |
Robert P. J. Day | 1bce2ae | 2013-09-16 07:15:45 -0400 | [diff] [blame] | 62 | # Command line 'O=' setting overrides BUILD_DIR environment variable. |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 63 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 64 | # When none of the above methods is used the local build is performed and |
| 65 | # the object files are placed in the source directory. |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 66 | # |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 67 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 68 | ifeq ("$(origin O)", "command line") |
| 69 | BUILD_DIR := $(O) |
| 70 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 71 | |
Kim Phillips | 4ab6493 | 2012-09-21 12:28:17 +0000 | [diff] [blame] | 72 | # Call a source code checker (by default, "sparse") as part of the |
| 73 | # C compilation. |
| 74 | # |
| 75 | # Use 'make C=1' to enable checking of re-compiled files. |
| 76 | # |
| 77 | # See the linux kernel file "Documentation/sparse.txt" for more details, |
| 78 | # including where to get the "sparse" utility. |
| 79 | |
| 80 | ifdef C |
| 81 | ifeq ("$(origin C)", "command line") |
| 82 | CHECKSRC := $(C) |
| 83 | endif |
| 84 | endif |
| 85 | ifndef CHECKSRC |
| 86 | CHECKSRC = 0 |
| 87 | endif |
| 88 | export CHECKSRC |
| 89 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 90 | ifneq ($(BUILD_DIR),) |
| 91 | saved-output := $(BUILD_DIR) |
Marian Balakowicz | 4f0645e | 2006-09-07 12:05:53 +0200 | [diff] [blame] | 92 | |
| 93 | # Attempt to create a output directory. |
| 94 | $(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}) |
| 95 | |
Stefan Roese | a73c8db | 2006-09-12 08:49:07 +0200 | [diff] [blame] | 96 | # Verify if it was successful. |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 97 | BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd) |
| 98 | $(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist)) |
| 99 | endif # ifneq ($(BUILD_DIR),) |
| 100 | |
| 101 | OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR)) |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 102 | SPLTREE := $(OBJTREE)/spl |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 103 | TPLTREE := $(OBJTREE)/tpl |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 104 | SRCTREE := $(CURDIR) |
| 105 | TOPDIR := $(SRCTREE) |
| 106 | LNDIR := $(OBJTREE) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 107 | export TOPDIR SRCTREE OBJTREE SPLTREE TPLTREE |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 108 | |
| 109 | MKCONFIG := $(SRCTREE)/mkconfig |
| 110 | export MKCONFIG |
| 111 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 112 | # $(obj) and (src) are defined in config.mk but here in main Makefile |
| 113 | # we also need them before config.mk is included which is the case for |
| 114 | # some targets like unconfig, clean, clobber, distclean, etc. |
| 115 | ifneq ($(OBJTREE),$(SRCTREE)) |
| 116 | obj := $(OBJTREE)/ |
| 117 | src := $(SRCTREE)/ |
| 118 | else |
| 119 | obj := |
| 120 | src := |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 121 | endif |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 122 | export obj src |
| 123 | |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 124 | # Make sure CDPATH settings don't interfere |
| 125 | unexport CDPATH |
| 126 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 127 | ######################################################################### |
| 128 | |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 129 | # The "tools" are needed early, so put this first |
| 130 | # Don't include stuff already done in $(LIBS) |
Che-liang Chiou | 349e83f | 2011-10-17 21:04:15 +0000 | [diff] [blame] | 131 | # The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC |
| 132 | # is "yes"), so compile examples after U-Boot is compiled. |
| 133 | SUBDIR_TOOLS = tools |
Che-liang Chiou | 349e83f | 2011-10-17 21:04:15 +0000 | [diff] [blame] | 134 | SUBDIRS = $(SUBDIR_TOOLS) |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 135 | |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 136 | .PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE) |
Mike Frysinger | 6d1ce38 | 2009-05-30 01:02:03 -0400 | [diff] [blame] | 137 | |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 138 | ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 139 | |
Mike Frysinger | 2632c00 | 2009-07-21 22:59:36 -0400 | [diff] [blame] | 140 | # Include autoconf.mk before config.mk so that the config options are available |
| 141 | # to all top level build files. We need the dummy all: target to prevent the |
| 142 | # dependency target in autoconf.mk.dep from being the default. |
| 143 | all: |
| 144 | sinclude $(obj)include/autoconf.mk.dep |
| 145 | sinclude $(obj)include/autoconf.mk |
| 146 | |
Masahiro Yamada | 8a7e7d5 | 2013-11-18 11:08:35 +0900 | [diff] [blame] | 147 | SUBDIR_EXAMPLES-y := examples/standalone |
| 148 | SUBDIR_EXAMPLES-$(CONFIG_API) += examples/api |
Simon Glass | b572875 | 2011-10-25 11:29:28 +0000 | [diff] [blame] | 149 | ifndef CONFIG_SANDBOX |
Masahiro Yamada | 8a7e7d5 | 2013-11-18 11:08:35 +0900 | [diff] [blame] | 150 | SUBDIRS += $(SUBDIR_EXAMPLES-y) |
Simon Glass | b572875 | 2011-10-25 11:29:28 +0000 | [diff] [blame] | 151 | endif |
| 152 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 153 | # load ARCH, BOARD, and CPU configuration |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 154 | include $(obj)include/config.mk |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 155 | export ARCH CPU BOARD VENDOR SOC |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 156 | |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 157 | # set default to nothing for native builds |
Wolfgang Denk | a5284ef | 2007-03-06 18:01:47 +0100 | [diff] [blame] | 158 | ifeq ($(HOSTARCH),$(ARCH)) |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 159 | CROSS_COMPILE ?= |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 160 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 161 | |
Wolfgang Denk | 92b197f | 2006-03-12 01:37:50 +0100 | [diff] [blame] | 162 | # load other configuration |
| 163 | include $(TOPDIR)/config.mk |
| 164 | |
Simon Glass | fada9e2 | 2013-04-20 08:42:36 +0000 | [diff] [blame] | 165 | # Targets which don't build the source code |
Bo Shen | ace8f50 | 2013-12-16 15:27:23 +0800 | [diff] [blame] | 166 | NON_BUILD_TARGETS = backup clean clobber distclean mrproper tidy unconfig |
Simon Glass | fada9e2 | 2013-04-20 08:42:36 +0000 | [diff] [blame] | 167 | |
| 168 | # Only do the generic board check when actually building, not configuring |
| 169 | ifeq ($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),) |
| 170 | ifeq ($(findstring _config,$(MAKECMDGOALS)),) |
| 171 | $(CHECK_GENERIC_BOARD) |
| 172 | endif |
| 173 | endif |
| 174 | |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 175 | # If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use |
| 176 | # that (or fail if absent). Otherwise, search for a linker script in a |
| 177 | # standard location. |
| 178 | |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 179 | LDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT)) |
| 180 | |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 181 | ifndef LDSCRIPT |
| 182 | #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug |
| 183 | ifdef CONFIG_SYS_LDSCRIPT |
| 184 | # need to strip off double quotes |
Masahiro Yamada | a8c0754 | 2013-12-05 15:08:31 +0900 | [diff] [blame] | 185 | LDSCRIPT := $(CONFIG_SYS_LDSCRIPT:"%"=%) |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 186 | endif |
| 187 | endif |
| 188 | |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 189 | # 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] | 190 | ifndef LDSCRIPT |
| 191 | ifeq ($(CONFIG_NAND_U_BOOT),y) |
| 192 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds |
| 193 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 194 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds |
| 195 | endif |
| 196 | endif |
| 197 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 198 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds |
| 199 | endif |
| 200 | ifeq ($(wildcard $(LDSCRIPT)),) |
| 201 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds |
| 202 | endif |
| 203 | ifeq ($(wildcard $(LDSCRIPT)),) |
Simon Glass | ee60197 | 2011-11-21 10:49:37 +0000 | [diff] [blame] | 204 | LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds |
| 205 | # We don't expect a Makefile here |
| 206 | LDSCRIPT_MAKEFILE_DIR = |
| 207 | endif |
| 208 | ifeq ($(wildcard $(LDSCRIPT)),) |
Ilya Yanok | d51dfff | 2011-06-20 12:45:37 +0000 | [diff] [blame] | 209 | $(error could not find linker script) |
| 210 | endif |
| 211 | endif |
| 212 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 213 | ######################################################################### |
| 214 | # U-Boot objects....order is important (i.e. start must be first) |
| 215 | |
Masahiro Yamada | e8a8b82 | 2013-11-28 12:09:59 +0900 | [diff] [blame] | 216 | head-y := $(CPUDIR)/start.o |
| 217 | head-$(CONFIG_4xx) += arch/powerpc/cpu/ppc4xx/resetvec.o |
| 218 | head-$(CONFIG_MPC85xx) += arch/powerpc/cpu/mpc85xx/resetvec.o |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 219 | |
Masahiro Yamada | e8a8b82 | 2013-11-28 12:09:59 +0900 | [diff] [blame] | 220 | OBJS := $(addprefix $(obj),$(head-y)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 221 | |
Scott Wood | e66443f | 2012-08-14 01:44:29 +0000 | [diff] [blame] | 222 | HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n) |
Daniel Schwierzeck | 8b5a026 | 2012-07-19 13:39:58 +0000 | [diff] [blame] | 223 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 224 | LIBS-y += lib/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 225 | LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/ |
| 226 | LIBS-y += $(CPUDIR)/ |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 227 | ifdef SOC |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 228 | LIBS-y += $(CPUDIR)/$(SOC)/ |
wdenk | 1d9f410 | 2004-10-09 22:21:29 +0000 | [diff] [blame] | 229 | endif |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 230 | LIBS-$(CONFIG_IXP4XX_NPE) += drivers/net/npe/ |
| 231 | LIBS-$(CONFIG_OF_EMBED) += dts/ |
| 232 | LIBS-y += arch/$(ARCH)/lib/ |
Masahiro Yamada | 57c3e5f | 2013-11-11 14:36:09 +0900 | [diff] [blame] | 233 | LIBS-y += fs/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 234 | LIBS-y += net/ |
| 235 | LIBS-y += disk/ |
| 236 | LIBS-y += drivers/ |
| 237 | LIBS-y += drivers/dma/ |
| 238 | LIBS-y += drivers/gpio/ |
| 239 | LIBS-y += drivers/i2c/ |
| 240 | LIBS-y += drivers/input/ |
| 241 | LIBS-y += drivers/mmc/ |
| 242 | LIBS-y += drivers/mtd/ |
Masahiro Yamada | 392ba52 | 2013-11-28 12:22:17 +0900 | [diff] [blame] | 243 | LIBS-$(CONFIG_CMD_NAND) += drivers/mtd/nand/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 244 | LIBS-y += drivers/mtd/onenand/ |
Masahiro Yamada | 392ba52 | 2013-11-28 12:22:17 +0900 | [diff] [blame] | 245 | LIBS-$(CONFIG_CMD_UBI) += drivers/mtd/ubi/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 246 | LIBS-y += drivers/mtd/spi/ |
| 247 | LIBS-y += drivers/net/ |
| 248 | LIBS-y += drivers/net/phy/ |
| 249 | LIBS-y += drivers/pci/ |
| 250 | LIBS-y += drivers/power/ \ |
| 251 | drivers/power/fuel_gauge/ \ |
| 252 | drivers/power/mfd/ \ |
| 253 | drivers/power/pmic/ \ |
| 254 | drivers/power/battery/ |
| 255 | LIBS-y += drivers/spi/ |
| 256 | LIBS-$(CONFIG_FMAN_ENET) += drivers/net/fm/ |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 257 | LIBS-$(CONFIG_SYS_FSL_DDR) += drivers/ddr/fsl/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 258 | LIBS-y += drivers/serial/ |
| 259 | LIBS-y += drivers/usb/eth/ |
| 260 | LIBS-y += drivers/usb/gadget/ |
| 261 | LIBS-y += drivers/usb/host/ |
| 262 | LIBS-y += drivers/usb/musb/ |
| 263 | LIBS-y += drivers/usb/musb-new/ |
| 264 | LIBS-y += drivers/usb/phy/ |
| 265 | LIBS-y += drivers/usb/ulpi/ |
| 266 | LIBS-y += common/ |
| 267 | LIBS-y += lib/libfdt/ |
Masahiro Yamada | 8a7e7d5 | 2013-11-18 11:08:35 +0900 | [diff] [blame] | 268 | LIBS-$(CONFIG_API) += api/ |
Masahiro Yamada | 755e08f | 2013-11-28 12:09:58 +0900 | [diff] [blame] | 269 | LIBS-$(CONFIG_HAS_POST) += post/ |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 270 | LIBS-y += test/ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 271 | |
Alison Wang | 24e8bee | 2013-05-27 22:55:42 +0000 | [diff] [blame] | 272 | ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610)) |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 273 | LIBS-y += arch/$(ARCH)/imx-common/ |
Jason Liu | 18936ee | 2011-11-25 00:18:01 +0000 | [diff] [blame] | 274 | endif |
| 275 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 276 | LIBS-$(CONFIG_ARM) += arch/arm/cpu/ |
| 277 | LIBS-$(CONFIG_PPC) += arch/powerpc/cpu/ |
Minkyu Kang | 852bd07 | 2010-08-19 13:48:11 +0900 | [diff] [blame] | 278 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 279 | LIBS-y += board/$(BOARDDIR)/ |
Masahiro Yamada | 08e39a8 | 2013-11-11 14:35:55 +0900 | [diff] [blame] | 280 | |
Masahiro Yamada | e2906a5 | 2013-11-11 14:36:00 +0900 | [diff] [blame] | 281 | LIBS-y := $(patsubst %/, %/built-in.o, $(LIBS-y)) |
Daniel Schwierzeck | f52d7b3 | 2012-06-28 06:45:20 +0000 | [diff] [blame] | 282 | LIBS := $(addprefix $(obj),$(sort $(LIBS-y))) |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 283 | .PHONY : $(LIBS) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 284 | |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 285 | # Add GCC lib |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 286 | ifdef USE_PRIVATE_LIBGCC |
| 287 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") |
Matthias Weisser | 635d1b3 | 2010-11-18 09:35:09 +0100 | [diff] [blame] | 288 | PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 289 | else |
| 290 | PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc |
| 291 | endif |
| 292 | else |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 293 | PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 294 | endif |
| 295 | PLATFORM_LIBS += $(PLATFORM_LIBGCC) |
| 296 | export PLATFORM_LIBS |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 297 | |
Mike Frysinger | 6ac9f47 | 2009-08-23 02:47:59 -0400 | [diff] [blame] | 298 | # Special flags for CPP when processing the linker script. |
| 299 | # Pass the version down so we can handle backwards compatibility |
| 300 | # on the fly. |
| 301 | LDPPFLAGS += \ |
| 302 | -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ |
Simon Glass | 7e6403a | 2011-11-21 10:49:40 +0000 | [diff] [blame] | 303 | -DCPUDIR=$(CPUDIR) \ |
Mike Frysinger | 6ac9f47 | 2009-08-23 02:47:59 -0400 | [diff] [blame] | 304 | $(shell $(LD) --version | \ |
| 305 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') |
| 306 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 307 | __OBJS := $(subst $(obj),,$(OBJS)) |
Masahiro Yamada | 08e39a8 | 2013-11-11 14:35:55 +0900 | [diff] [blame] | 308 | __LIBS := $(subst $(obj),,$(LIBS)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 309 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 310 | ######################################################################### |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 311 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 312 | |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 313 | ifneq ($(CONFIG_BOARD_SIZE_LIMIT),) |
| 314 | BOARD_SIZE_CHECK = \ |
| 315 | @actual=`wc -c $@ | awk '{print $$1}'`; \ |
Joe Hershberger | d060e6f | 2012-11-08 10:19:09 +0000 | [diff] [blame] | 316 | limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \ |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 317 | if test $$actual -gt $$limit; then \ |
Joe Hershberger | d060e6f | 2012-11-08 10:19:09 +0000 | [diff] [blame] | 318 | echo "$@ exceeds file size limit:" >&2 ; \ |
| 319 | echo " limit: $$limit bytes" >&2 ; \ |
| 320 | echo " actual: $$actual bytes" >&2 ; \ |
| 321 | echo " excess: $$((actual - limit)) bytes" >&2; \ |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 322 | exit 1; \ |
| 323 | fi |
| 324 | else |
| 325 | BOARD_SIZE_CHECK = |
| 326 | endif |
| 327 | |
Scott Wood | 8137af1 | 2013-12-14 11:47:32 +0800 | [diff] [blame] | 328 | # Statically apply RELA-style relocations (currently arm64 only) |
| 329 | ifneq ($(CONFIG_STATIC_RELA),) |
| 330 | # $(1) is u-boot ELF, $(2) is u-boot bin, $(3) is text base |
| 331 | DO_STATIC_RELA = \ |
| 332 | start=$$($(NM) $(1) | grep __rel_dyn_start | cut -f 1 -d ' '); \ |
| 333 | end=$$($(NM) $(1) | grep __rel_dyn_end | cut -f 1 -d ' '); \ |
| 334 | $(obj)tools/relocate-rela $(2) $(3) $$start $$end |
| 335 | else |
| 336 | DO_STATIC_RELA = |
| 337 | endif |
| 338 | |
Mike Frysinger | 3e88337 | 2009-06-15 00:25:19 -0400 | [diff] [blame] | 339 | # Always append ALL so that arch config.mk's can add custom ones |
Daniel Schwierzeck | 4e0fbb9 | 2011-07-13 05:11:01 +0000 | [diff] [blame] | 340 | ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 341 | |
Daniel Schwierzeck | 4e0fbb9 | 2011-07-13 05:11:01 +0000 | [diff] [blame] | 342 | ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin |
| 343 | ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin |
Shaohui Xie | 262737f | 2013-09-11 14:48:29 +0800 | [diff] [blame] | 344 | ALL-$(CONFIG_RAMBOOT_PBL) += $(obj)u-boot.pbl |
Daniel Schwierzeck | 5df2ee2 | 2011-07-13 05:11:04 +0000 | [diff] [blame] | 345 | ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin |
Henrik Nordström | 4c26737 | 2013-08-27 00:37:22 +0200 | [diff] [blame] | 346 | ALL-$(CONFIG_SPL_FRAMEWORK) += $(obj)u-boot.img |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 347 | ALL-$(CONFIG_TPL) += $(obj)tpl/u-boot-tpl.bin |
Simon Glass | 2c0f79e | 2011-10-24 19:15:31 +0000 | [diff] [blame] | 348 | ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin |
Vadim Bendebury | b343bbb | 2013-03-27 14:34:18 +0000 | [diff] [blame] | 349 | ifneq ($(CONFIG_SPL_TARGET),) |
Masahiro Yamada | a8c0754 | 2013-12-05 15:08:31 +0900 | [diff] [blame] | 350 | ALL-$(CONFIG_SPL) += $(obj)$(CONFIG_SPL_TARGET:"%"=%) |
Vadim Bendebury | b343bbb | 2013-03-27 14:34:18 +0000 | [diff] [blame] | 351 | endif |
Scott Wood | f4dc714 | 2013-12-14 11:47:33 +0800 | [diff] [blame] | 352 | ALL-$(CONFIG_REMAKE_ELF) += $(obj)u-boot.elf |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 353 | |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 354 | # enable combined SPL/u-boot/dtb rules for tegra |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 355 | ifneq ($(CONFIG_TEGRA),) |
Vidya Sagar | 7dcd3a2 | 2013-10-31 14:51:38 +0530 | [diff] [blame] | 356 | ifeq ($(CONFIG_SPL),y) |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 357 | ifeq ($(CONFIG_OF_SEPARATE),y) |
| 358 | ALL-y += $(obj)u-boot-dtb-tegra.bin |
| 359 | else |
| 360 | ALL-y += $(obj)u-boot-nodtb-tegra.bin |
| 361 | endif |
| 362 | endif |
Vidya Sagar | 7dcd3a2 | 2013-10-31 14:51:38 +0530 | [diff] [blame] | 363 | endif |
Allen Martin | 12b7b70 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 364 | |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 365 | build := -f $(TOPDIR)/scripts/Makefile.build -C |
| 366 | |
Masahiro Yamada | 8a7e7d5 | 2013-11-18 11:08:35 +0900 | [diff] [blame] | 367 | all: $(ALL-y) $(SUBDIR_EXAMPLES-y) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 368 | |
Stephen Warren | 501ebdf | 2013-07-24 10:09:16 -0700 | [diff] [blame] | 369 | $(obj)u-boot.dtb: checkdtc $(obj)u-boot |
Masahiro Yamada | bcfe8fd | 2013-10-21 11:53:40 +0900 | [diff] [blame] | 370 | $(MAKE) $(build) dts binary |
Simon Glass | 2c0f79e | 2011-10-24 19:15:31 +0000 | [diff] [blame] | 371 | mv $(obj)dts/dt.dtb $@ |
| 372 | |
| 373 | $(obj)u-boot-dtb.bin: $(obj)u-boot.bin $(obj)u-boot.dtb |
| 374 | cat $^ >$@ |
| 375 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 376 | $(obj)u-boot.hex: $(obj)u-boot |
wdenk | 6310eb9 | 2005-01-09 21:28:15 +0000 | [diff] [blame] | 377 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ |
| 378 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 379 | $(obj)u-boot.srec: $(obj)u-boot |
Albert ARIBAUD | 47ed5dd | 2013-11-07 14:21:46 +0100 | [diff] [blame] | 380 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 381 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 382 | $(obj)u-boot.bin: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 383 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |
Scott Wood | 8137af1 | 2013-12-14 11:47:32 +0800 | [diff] [blame] | 384 | $(call DO_STATIC_RELA,$<,$@,$(CONFIG_SYS_TEXT_BASE)) |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 385 | $(BOARD_SIZE_CHECK) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 386 | |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 387 | $(obj)u-boot.ldr: $(obj)u-boot |
Mike Frysinger | 76d8218 | 2009-07-21 22:17:36 -0400 | [diff] [blame] | 388 | $(CREATE_LDR_ENV) |
Mike Frysinger | 68e5632 | 2008-08-07 18:56:56 -0400 | [diff] [blame] | 389 | $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS) |
Mike Frysinger | f3a14d3 | 2010-10-13 22:58:23 -0400 | [diff] [blame] | 390 | $(BOARD_SIZE_CHECK) |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 391 | |
| 392 | $(obj)u-boot.ldr.hex: $(obj)u-boot.ldr |
| 393 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary |
| 394 | |
| 395 | $(obj)u-boot.ldr.srec: $(obj)u-boot.ldr |
| 396 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary |
| 397 | |
Stefan Roese | b40bda6 | 2012-08-16 17:54:52 +0200 | [diff] [blame] | 398 | # |
| 399 | # U-Boot entry point, needed for booting of full-blown U-Boot |
| 400 | # from the SPL U-Boot version. |
| 401 | # |
| 402 | ifndef CONFIG_SYS_UBOOT_START |
| 403 | CONFIG_SYS_UBOOT_START := 0 |
| 404 | endif |
| 405 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 406 | $(obj)u-boot.img: $(obj)u-boot.bin |
Wolfgang Denk | a2a0a71 | 2010-05-15 21:23:51 +0200 | [diff] [blame] | 407 | $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \ |
Stefan Roese | b40bda6 | 2012-08-16 17:54:52 +0200 | [diff] [blame] | 408 | -O u-boot -a $(CONFIG_SYS_TEXT_BASE) \ |
| 409 | -e $(CONFIG_SYS_UBOOT_START) \ |
Wolfgang Denk | 881a87e | 2006-02-21 17:33:04 +0100 | [diff] [blame] | 410 | -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 411 | sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ |
| 412 | -d $< $@ |
| 413 | |
Otavio Salvador | 291b3dc | 2013-02-11 04:33:51 +0000 | [diff] [blame] | 414 | $(obj)u-boot.imx: $(obj)u-boot.bin depend |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 415 | $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common $(OBJTREE)/u-boot.imx |
Stefano Babic | 8edcde5 | 2010-01-20 18:19:10 +0100 | [diff] [blame] | 416 | |
Prafulla Wadaskar | aa0c7a8 | 2009-09-07 15:05:02 +0530 | [diff] [blame] | 417 | $(obj)u-boot.kwb: $(obj)u-boot.bin |
Prafulla Wadaskar | 31d80c7 | 2010-10-27 17:46:06 +0530 | [diff] [blame] | 418 | $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \ |
Eric Cooper | 2ea88b0 | 2010-10-19 13:31:11 -0400 | [diff] [blame] | 419 | -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@ |
Prafulla Wadaskar | aa0c7a8 | 2009-09-07 15:05:02 +0530 | [diff] [blame] | 420 | |
Shaohui Xie | 5d898a0 | 2012-08-10 02:49:35 +0000 | [diff] [blame] | 421 | $(obj)u-boot.pbl: $(obj)u-boot.bin |
Prabhakar Kushwaha | 690e425 | 2014-01-13 11:28:04 +0530 | [diff] [blame] | 422 | $(obj)tools/mkimage -n $(CONFIG_SYS_FSL_PBL_RCW) \ |
| 423 | -R $(CONFIG_SYS_FSL_PBL_PBI) -T pblimage \ |
Shaohui Xie | 5d898a0 | 2012-08-10 02:49:35 +0000 | [diff] [blame] | 424 | -d $< $@ |
| 425 | |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 426 | $(obj)u-boot.sha1: $(obj)u-boot.bin |
Heiko Schocher | 0115953 | 2007-07-14 01:06:58 +0200 | [diff] [blame] | 427 | $(obj)tools/ubsha1 $(obj)u-boot.bin |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 428 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 429 | $(obj)u-boot.dis: $(obj)u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 430 | $(OBJDUMP) -d $< > $@ |
| 431 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 432 | # $@ is output, $(1) and $(2) are inputs, $(3) is padded intermediate, |
| 433 | # $(4) is pad-to |
| 434 | SPL_PAD_APPEND = \ |
| 435 | $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(4) -I binary -O binary \ |
| 436 | $(1) $(obj)$(3); \ |
York Sun | b6df9b0 | 2013-08-21 09:03:29 -0700 | [diff] [blame] | 437 | cat $(obj)$(3) $(2) > $@; \ |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 438 | rm $(obj)$(3) |
Scott Wood | 74752ba | 2012-12-06 13:33:16 +0000 | [diff] [blame] | 439 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 440 | ifdef CONFIG_TPL |
| 441 | SPL_PAYLOAD := $(obj)tpl/u-boot-with-tpl.bin |
| 442 | else |
| 443 | SPL_PAYLOAD := $(obj)u-boot.bin |
| 444 | endif |
Scott Wood | 74752ba | 2012-12-06 13:33:16 +0000 | [diff] [blame] | 445 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 446 | $(obj)u-boot-with-spl.bin: $(obj)spl/u-boot-spl.bin $(SPL_PAYLOAD) |
| 447 | $(call SPL_PAD_APPEND,$<,$(SPL_PAYLOAD),spl/u-boot-spl-pad.bin,$(CONFIG_SPL_PAD_TO)) |
| 448 | |
| 449 | $(obj)tpl/u-boot-with-tpl.bin: $(obj)tpl/u-boot-tpl.bin $(obj)u-boot.bin |
York Sun | b6df9b0 | 2013-08-21 09:03:29 -0700 | [diff] [blame] | 450 | $(call SPL_PAD_APPEND,$<,$(obj)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] | 451 | |
Benoît Thébaudeau | ba59760 | 2013-04-11 09:35:56 +0000 | [diff] [blame] | 452 | $(obj)u-boot-with-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 453 | $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common \ |
Benoît Thébaudeau | ba59760 | 2013-04-11 09:35:56 +0000 | [diff] [blame] | 454 | $(OBJTREE)/u-boot-with-spl.imx |
| 455 | |
Benoît Thébaudeau | 7d5a5c7 | 2013-04-11 09:35:57 +0000 | [diff] [blame] | 456 | $(obj)u-boot-with-nand-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin |
Masahiro Yamada | 71f84ef | 2013-10-17 17:34:53 +0900 | [diff] [blame] | 457 | $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common \ |
Benoît Thébaudeau | 7d5a5c7 | 2013-04-11 09:35:57 +0000 | [diff] [blame] | 458 | $(OBJTREE)/u-boot-with-nand-spl.imx |
| 459 | |
Scott Wood | 5364add | 2012-09-19 17:45:41 -0500 | [diff] [blame] | 460 | $(obj)u-boot.ubl: $(obj)u-boot-with-spl.bin |
José Miguel Gonçalves | 277f00f | 2012-09-19 01:25:26 +0000 | [diff] [blame] | 461 | $(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \ |
Scott Wood | 5364add | 2012-09-19 17:45:41 -0500 | [diff] [blame] | 462 | -e $(CONFIG_SYS_TEXT_BASE) -d $< $(obj)u-boot.ubl |
José Miguel Gonçalves | 277f00f | 2012-09-19 01:25:26 +0000 | [diff] [blame] | 463 | |
Tom Rini | 3f7f241 | 2012-08-14 12:27:13 -0700 | [diff] [blame] | 464 | $(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img |
Sughosh Ganu | 6d660e7 | 2012-06-13 08:39:06 +0000 | [diff] [blame] | 465 | $(obj)tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(CONFIG_AIS_CONFIG_FILE),"/dev/null") \ |
| 466 | -T aisimage \ |
Christian Riesch | d36d885 | 2011-12-09 09:47:39 +0000 | [diff] [blame] | 467 | -e $(CONFIG_SPL_TEXT_BASE) \ |
| 468 | -d $(obj)spl/u-boot-spl.bin \ |
| 469 | $(obj)spl/u-boot-spl.ais |
| 470 | $(OBJCOPY) ${OBJCFLAGS} -I binary \ |
| 471 | --pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \ |
| 472 | $(obj)spl/u-boot-spl.ais $(obj)spl/u-boot-spl-pad.ais |
Tom Rini | 3f7f241 | 2012-08-14 12:27:13 -0700 | [diff] [blame] | 473 | cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.img > \ |
Christian Riesch | d36d885 | 2011-12-09 09:47:39 +0000 | [diff] [blame] | 474 | $(obj)u-boot.ais |
Christian Riesch | d36d885 | 2011-12-09 09:47:39 +0000 | [diff] [blame] | 475 | |
Otavio Salvador | a545355 | 2012-08-18 07:25:25 +0000 | [diff] [blame] | 476 | |
Marek Vasut | 30b9b93 | 2011-11-08 23:18:19 +0000 | [diff] [blame] | 477 | $(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin |
Masahiro Yamada | edabc1b | 2013-11-05 17:09:02 +0900 | [diff] [blame] | 478 | $(MAKE) $(build) $(SRCTREE)/$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb |
Marek Vasut | 30b9b93 | 2011-11-08 23:18:19 +0000 | [diff] [blame] | 479 | |
Stefan Roese | 94aebe6 | 2012-01-05 11:19:50 +0100 | [diff] [blame] | 480 | # On x600 (SPEAr600) U-Boot is appended to U-Boot SPL. |
| 481 | # Both images are created using mkimage (crc etc), so that the ROM |
| 482 | # bootloader can check its integrity. Padding needs to be done to the |
| 483 | # SPL image (with mkimage header) and not the binary. Otherwise the resulting image |
| 484 | # which is loaded/copied by the ROM bootloader to SRAM doesn't fit. |
| 485 | # The resulting image containing both U-Boot images is called u-boot.spr |
| 486 | $(obj)u-boot.spr: $(obj)u-boot.img $(obj)spl/u-boot-spl.bin |
| 487 | $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \ |
| 488 | -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \ |
Masahiro Yamada | 5727026 | 2013-12-18 19:00:51 +0900 | [diff] [blame] | 489 | -d $(obj)spl/u-boot-spl.bin $@ |
| 490 | $(OBJCOPY) -I binary -O binary \ |
| 491 | --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff $@ |
| 492 | cat $(obj)u-boot.img >> $@ |
Stefan Roese | 94aebe6 | 2012-01-05 11:19:50 +0100 | [diff] [blame] | 493 | |
Tom Warren | 6d6c0ba | 2012-12-11 13:34:17 +0000 | [diff] [blame] | 494 | ifneq ($(CONFIG_TEGRA),) |
Stephen Warren | 9972db5 | 2013-05-14 08:00:53 +0000 | [diff] [blame] | 495 | $(obj)u-boot-nodtb-tegra.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin |
Stephen Warren | e4ec934 | 2012-10-16 11:50:07 +0000 | [diff] [blame] | 496 | $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin |
Stephen Warren | 9972db5 | 2013-05-14 08:00:53 +0000 | [diff] [blame] | 497 | cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@ |
Stephen Warren | e4ec934 | 2012-10-16 11:50:07 +0000 | [diff] [blame] | 498 | rm $(obj)spl/u-boot-spl-pad.bin |
Stephen Warren | 9972db5 | 2013-05-14 08:00:53 +0000 | [diff] [blame] | 499 | |
| 500 | ifeq ($(CONFIG_OF_SEPARATE),y) |
| 501 | $(obj)u-boot-dtb-tegra.bin: $(obj)u-boot-nodtb-tegra.bin $(obj)u-boot.dtb |
| 502 | cat $(obj)u-boot-nodtb-tegra.bin $(obj)u-boot.dtb > $@ |
| 503 | endif |
Allen Martin | 984df4e | 2012-08-31 08:30:10 +0000 | [diff] [blame] | 504 | endif |
| 505 | |
Stefan Roese | fb3d2b8 | 2012-08-24 17:36:53 +0200 | [diff] [blame] | 506 | $(obj)u-boot-img.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img |
| 507 | cat $(obj)spl/u-boot-spl.bin $(obj)u-boot.img > $@ |
| 508 | |
Stefan Roese | ecddccd | 2013-02-22 11:36:50 +0100 | [diff] [blame] | 509 | # PPC4xx needs the SPL at the end of the image, since the reset vector |
| 510 | # is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target |
| 511 | # and need to introduce a new build target with the full blown U-Boot |
| 512 | # at the start padded up to the start of the SPL image. And then concat |
| 513 | # the SPL image to the end. |
| 514 | $(obj)u-boot-img-spl-at-end.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img |
Masahiro Yamada | 5727026 | 2013-12-18 19:00:51 +0900 | [diff] [blame] | 515 | $(OBJCOPY) -I binary -O binary --pad-to=$(CONFIG_UBOOT_PAD_TO) \ |
| 516 | --gap-fill=0xff $(obj)u-boot.img $@ |
| 517 | cat $(obj)spl/u-boot-spl.bin >> $@ |
Stefan Roese | ecddccd | 2013-02-22 11:36:50 +0100 | [diff] [blame] | 518 | |
Scott Wood | f4dc714 | 2013-12-14 11:47:33 +0800 | [diff] [blame] | 519 | # Create a new ELF from a raw binary file. This is useful for arm64 |
| 520 | # where static relocation needs to be performed on the raw binary, |
| 521 | # but certain simulators only accept an ELF file (but don't do the |
| 522 | # relocation). |
| 523 | # FIXME refactor dts/Makefile to share target/arch detection |
| 524 | $(obj)u-boot.elf: $(obj)u-boot.bin |
| 525 | @$(OBJCOPY) -B aarch64 -I binary -O elf64-littleaarch64 \ |
| 526 | $< $(obj)u-boot-elf.o |
| 527 | @$(LD) $(obj)u-boot-elf.o -o $@ \ |
| 528 | --defsym=_start=$(CONFIG_SYS_TEXT_BASE) \ |
| 529 | -Ttext=$(CONFIG_SYS_TEXT_BASE) |
| 530 | |
Simon Glass | 86eb49b | 2011-10-03 19:26:50 +0000 | [diff] [blame] | 531 | ifeq ($(CONFIG_SANDBOX),y) |
| 532 | GEN_UBOOT = \ |
| 533 | cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \ |
| 534 | -Wl,--start-group $(__LIBS) -Wl,--end-group \ |
| 535 | $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot |
| 536 | else |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 537 | GEN_UBOOT = \ |
Marek Vasut | 97b24d3 | 2012-10-19 05:00:10 +0000 | [diff] [blame] | 538 | cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 539 | $(__OBJS) \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 540 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
wdenk | b2184c3 | 2002-11-19 23:01:07 +0000 | [diff] [blame] | 541 | -Map u-boot.map -o u-boot |
Simon Glass | 86eb49b | 2011-10-03 19:26:50 +0000 | [diff] [blame] | 542 | endif |
| 543 | |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 544 | $(obj)u-boot: depend \ |
Masahiro Yamada | 8e9a6cb | 2013-11-28 11:06:03 +0900 | [diff] [blame] | 545 | $(SUBDIR_TOOLS) $(OBJS) $(LIBS) $(obj)u-boot.lds |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 546 | $(GEN_UBOOT) |
| 547 | ifeq ($(CONFIG_KALLSYMS),y) |
Mike Frysinger | 8a156fb | 2012-07-30 22:44:53 +0000 | [diff] [blame] | 548 | smap=`$(call SYSTEM_MAP,$(obj)u-boot) | \ |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 549 | awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \ |
| 550 | $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \ |
| 551 | -c common/system_map.c -o $(obj)common/system_map.o |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 552 | $(GEN_UBOOT) $(obj)common/system_map.o |
| 553 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 554 | |
Masahiro Yamada | 3bddafa | 2013-10-21 11:53:41 +0900 | [diff] [blame] | 555 | $(OBJS): |
| 556 | @: |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 557 | |
Che-liang Chiou | 349e83f | 2011-10-17 21:04:15 +0000 | [diff] [blame] | 558 | $(LIBS): depend $(SUBDIR_TOOLS) |
Masahiro Yamada | 3bddafa | 2013-10-21 11:53:41 +0900 | [diff] [blame] | 559 | $(MAKE) $(build) $(dir $(subst $(obj),,$@)) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 560 | |
Peter Tyser | d0d6144 | 2009-03-13 18:54:25 -0500 | [diff] [blame] | 561 | $(SUBDIRS): depend |
wdenk | b028f71 | 2003-12-07 21:39:28 +0000 | [diff] [blame] | 562 | $(MAKE) -C $@ all |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 563 | |
Masahiro Yamada | 8a7e7d5 | 2013-11-18 11:08:35 +0900 | [diff] [blame] | 564 | $(SUBDIR_EXAMPLES-y): $(obj)u-boot |
Che-liang Chiou | 349e83f | 2011-10-17 21:04:15 +0000 | [diff] [blame] | 565 | |
Masahiro Yamada | 8e9a6cb | 2013-11-28 11:06:03 +0900 | [diff] [blame] | 566 | $(obj)u-boot.lds: $(LDSCRIPT) depend |
Marek Vasut | 97b24d3 | 2012-10-19 05:00:10 +0000 | [diff] [blame] | 567 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@ |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 568 | |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 569 | nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 570 | $(MAKE) -C nand_spl/board/$(BOARDDIR) all |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 571 | |
Haiying Wang | e935a37 | 2011-01-27 09:44:59 -0500 | [diff] [blame] | 572 | $(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin |
Marian Balakowicz | 8318fbf | 2006-10-23 22:17:05 +0200 | [diff] [blame] | 573 | cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 574 | |
Aneesh V | bd25fdb | 2011-11-05 13:13:33 +0530 | [diff] [blame] | 575 | $(obj)spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend |
Daniel Schwierzeck | 5df2ee2 | 2011-07-13 05:11:04 +0000 | [diff] [blame] | 576 | $(MAKE) -C spl all |
| 577 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 578 | $(obj)tpl/u-boot-tpl.bin: $(SUBDIR_TOOLS) depend |
| 579 | $(MAKE) -C spl all CONFIG_TPL_BUILD=y |
| 580 | |
Daniel Hobi | 2a99879 | 2010-01-18 18:13:39 +0100 | [diff] [blame] | 581 | # Explicitly make _depend in subdirs containing multiple targets to prevent |
| 582 | # parallel sub-makes creating .depend files simultaneously. |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 583 | depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \ |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 584 | $(obj)include/spl-autoconf.mk \ |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 585 | $(obj)include/tpl-autoconf.mk \ |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 586 | $(obj)include/autoconf.mk \ |
Stefano Babic | a4814a6 | 2011-09-05 04:32:28 +0000 | [diff] [blame] | 587 | $(obj)include/generated/generic-asm-offsets.h \ |
| 588 | $(obj)include/generated/asm-offsets.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 589 | |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 590 | TAG_SUBDIRS = $(SUBDIRS) |
| 591 | TAG_SUBDIRS += $(dir $(__LIBS)) |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 592 | TAG_SUBDIRS += include |
Jean-Christophe PLAGNIOL-VILLARD | a340c32 | 2007-11-25 18:45:47 +0100 | [diff] [blame] | 593 | |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 594 | FIND := find |
| 595 | FINDFLAGS := -L |
| 596 | |
Tom Rini | 1064d98 | 2012-02-02 14:07:05 +0000 | [diff] [blame] | 597 | checkstack: |
| 598 | $(CROSS_COMPILE)objdump -d $(obj)u-boot \ |
| 599 | `$(FIND) $(obj) -name u-boot-spl -print` | \ |
Masahiro Yamada | dd88ab3 | 2013-11-28 16:29:23 +0900 | [diff] [blame] | 600 | perl $(src)scripts/checkstack.pl $(ARCH) |
Tom Rini | 1064d98 | 2012-02-02 14:07:05 +0000 | [diff] [blame] | 601 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 602 | tags ctags: |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 603 | ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 604 | -name '*.[chS]' -print` |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 605 | |
| 606 | etags: |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 607 | etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ |
Li Yang | e5e4e70 | 2009-12-09 18:13:26 +0800 | [diff] [blame] | 608 | -name '*.[chS]' -print` |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 609 | cscope: |
Horst Kronstorfer | 857d9ea | 2011-07-18 01:21:18 +0000 | [diff] [blame] | 610 | $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \ |
| 611 | cscope.files |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 612 | cscope -b -q -k |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 613 | |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 614 | SYSTEM_MAP = \ |
| 615 | $(NM) $1 | \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 616 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 617 | LC_ALL=C sort |
| 618 | $(obj)System.map: $(obj)u-boot |
Masahiro Yamada | bc8bb6e | 2013-11-11 14:36:01 +0900 | [diff] [blame] | 619 | @$(call SYSTEM_MAP,$<) > $@ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 620 | |
Tom Rini | 06a119a | 2012-03-16 06:34:35 +0000 | [diff] [blame] | 621 | checkthumb: |
| 622 | @if test $(call cc-version) -lt 0404; then \ |
| 623 | echo -n '*** Your GCC does not produce working '; \ |
| 624 | echo 'binaries in THUMB mode.'; \ |
| 625 | echo '*** Your board is configured for THUMB mode.'; \ |
| 626 | false; \ |
| 627 | fi |
Scott Wood | 6ec63f4 | 2012-09-20 19:10:01 -0500 | [diff] [blame] | 628 | |
| 629 | # GCC 3.x is reported to have problems generating the type of relocation |
| 630 | # that U-Boot wants. |
| 631 | # See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html |
| 632 | checkgcc4: |
| 633 | @if test $(call cc-version) -lt 0400; then \ |
| 634 | echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \ |
| 635 | false; \ |
| 636 | fi |
| 637 | |
Stephen Warren | 501ebdf | 2013-07-24 10:09:16 -0700 | [diff] [blame] | 638 | checkdtc: |
| 639 | @if test $(call dtc-version) -lt 0104; then \ |
| 640 | echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \ |
| 641 | false; \ |
| 642 | fi |
| 643 | |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 644 | # |
| 645 | # Auto-generate the autoconf.mk file (which is included by all makefiles) |
| 646 | # |
| 647 | # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep. |
| 648 | # the dep file is only include in this top level makefile to determine when |
| 649 | # to regenerate the autoconf.mk file. |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 650 | $(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h |
| 651 | @$(XECHO) Generating $@ ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 652 | : Generate the dependancies ; \ |
Mike Frysinger | 4c34b2a | 2011-10-12 19:48:00 +0000 | [diff] [blame] | 653 | $(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \ |
Masahiro Yamada | 65947ab | 2013-12-02 14:57:29 +0900 | [diff] [blame] | 654 | -MQ $(obj)include/autoconf.mk include/common.h > $@ || \ |
| 655 | rm $@ |
Wolfgang Denk | 1510b82 | 2008-05-13 23:15:52 +0200 | [diff] [blame] | 656 | |
| 657 | $(obj)include/autoconf.mk: $(obj)include/config.h |
| 658 | @$(XECHO) Generating $@ ; \ |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 659 | : Extract the config macros ; \ |
Masahiro Yamada | 65947ab | 2013-12-02 14:57:29 +0900 | [diff] [blame] | 660 | $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h > $@.tmp && \ |
| 661 | sed -n -f tools/scripts/define2mk.sed $@.tmp > $@; \ |
| 662 | rm $@.tmp |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 663 | |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 664 | # Auto-generate the spl-autoconf.mk file (which is included by all makefiles for SPL) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 665 | $(obj)include/tpl-autoconf.mk: $(obj)include/config.h |
| 666 | @$(XECHO) Generating $@ ; \ |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 667 | : Extract the config macros ; \ |
| 668 | $(CPP) $(CFLAGS) -DCONFIG_TPL_BUILD -DCONFIG_SPL_BUILD\ |
Masahiro Yamada | 65947ab | 2013-12-02 14:57:29 +0900 | [diff] [blame] | 669 | -DDO_DEPS_ONLY -dM include/common.h > $@.tmp && \ |
| 670 | sed -n -f tools/scripts/define2mk.sed $@.tmp > $@; \ |
| 671 | rm $@.tmp |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 672 | |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 673 | $(obj)include/spl-autoconf.mk: $(obj)include/config.h |
| 674 | @$(XECHO) Generating $@ ; \ |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 675 | : Extract the config macros ; \ |
Masahiro Yamada | 65947ab | 2013-12-02 14:57:29 +0900 | [diff] [blame] | 676 | $(CPP) $(CFLAGS) -DCONFIG_SPL_BUILD -DDO_DEPS_ONLY -dM include/common.h > $@.tmp && \ |
| 677 | sed -n -f tools/scripts/define2mk.sed $@.tmp > $@; \ |
| 678 | rm $@.tmp |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 679 | |
Masahiro Yamada | 74c43bb | 2013-12-05 15:30:18 +0900 | [diff] [blame] | 680 | $(obj)include/generated/generic-asm-offsets.h: $(obj)lib/asm-offsets.s |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 681 | @$(XECHO) Generating $@ |
| 682 | tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@ |
| 683 | |
Masahiro Yamada | 74c43bb | 2013-12-05 15:30:18 +0900 | [diff] [blame] | 684 | $(obj)lib/asm-offsets.s: $(obj)include/config.h $(src)lib/asm-offsets.c |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 685 | @mkdir -p $(obj)lib |
| 686 | $(CC) -DDO_DEPS_ONLY \ |
| 687 | $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ |
| 688 | -o $@ $(src)lib/asm-offsets.c -c -S |
| 689 | |
Masahiro Yamada | 74c43bb | 2013-12-05 15:30:18 +0900 | [diff] [blame] | 690 | $(obj)include/generated/asm-offsets.h: $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s |
Wolfgang Denk | b12734e | 2012-07-26 20:52:41 +0000 | [diff] [blame] | 691 | @$(XECHO) Generating $@ |
Stefano Babic | a4814a6 | 2011-09-05 04:32:28 +0000 | [diff] [blame] | 692 | tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@ |
| 693 | |
Masahiro Yamada | 74c43bb | 2013-12-05 15:30:18 +0900 | [diff] [blame] | 694 | $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s: $(obj)include/config.h |
Stefano Babic | a4814a6 | 2011-09-05 04:32:28 +0000 | [diff] [blame] | 695 | @mkdir -p $(obj)$(CPUDIR)/$(SOC) |
| 696 | if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \ |
| 697 | $(CC) -DDO_DEPS_ONLY \ |
| 698 | $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ |
| 699 | -o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \ |
| 700 | else \ |
| 701 | touch $@; \ |
| 702 | fi |
| 703 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 704 | ######################################################################### |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 705 | else # !config.mk |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 706 | all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \ |
| 707 | $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \ |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 708 | $(filter-out tools,$(SUBDIRS)) \ |
Masahiro Yamada | 2e78e75 | 2013-11-14 11:00:30 +0900 | [diff] [blame] | 709 | depend dep tags ctags etags cscope $(obj)System.map: |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 710 | @echo "System not configured - see README" >&2 |
| 711 | @ exit 1 |
Mike Frysinger | c7c0d54 | 2010-01-21 04:03:22 -0500 | [diff] [blame] | 712 | |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 713 | tools: $(VERSION_FILE) $(TIMESTAMP_FILE) |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 714 | $(MAKE) -C $@ all |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 715 | endif # config.mk |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 716 | |
Scott Wood | 54799e4 | 2013-12-14 11:47:34 +0800 | [diff] [blame] | 717 | # ARM relocations should all be R_ARM_RELATIVE (32-bit) or |
| 718 | # R_AARCH64_RELATIVE (64-bit). |
Albert ARIBAUD | c37980c | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 719 | checkarmreloc: $(obj)u-boot |
Scott Wood | 54799e4 | 2013-12-14 11:47:34 +0800 | [diff] [blame] | 720 | @RELOC="`$(CROSS_COMPILE)readelf -r -W $< | cut -d ' ' -f 4 | \ |
| 721 | grep R_A | sort -u`"; \ |
| 722 | if test "$$RELOC" != "R_ARM_RELATIVE" -a \ |
| 723 | "$$RELOC" != "R_AARCH64_RELATIVE"; then \ |
| 724 | echo "$< contains unexpected relocations: $$RELOC"; \ |
| 725 | false; \ |
| 726 | fi |
Albert ARIBAUD | c37980c | 2013-06-11 14:17:30 +0200 | [diff] [blame] | 727 | |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 728 | $(VERSION_FILE): |
Mike Frysinger | 14ce91b | 2011-06-30 16:56:20 +0000 | [diff] [blame] | 729 | @mkdir -p $(dir $(VERSION_FILE)) |
Masahiro Yamada | dd88ab3 | 2013-11-28 16:29:23 +0900 | [diff] [blame] | 730 | @( localvers='$(shell $(TOPDIR)/scripts/setlocalversion $(TOPDIR))' ; \ |
Ilya Yanok | 28abd48 | 2011-06-20 12:45:38 +0000 | [diff] [blame] | 731 | printf '#define PLAIN_VERSION "%s%s"\n' \ |
| 732 | "$(U_BOOT_VERSION)" "$${localvers}" ; \ |
| 733 | printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \ |
| 734 | "$(U_BOOT_VERSION)" "$${localvers}" ; \ |
| 735 | ) > $@.tmp |
| 736 | @( printf '#define CC_VERSION_STRING "%s"\n' \ |
| 737 | '$(shell $(CC) --version | head -n 1)' )>> $@.tmp |
| 738 | @( printf '#define LD_VERSION_STRING "%s"\n' \ |
| 739 | '$(shell $(LD) -v | head -n 1)' )>> $@.tmp |
| 740 | @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ |
| 741 | |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 742 | $(TIMESTAMP_FILE): |
| 743 | @mkdir -p $(dir $(TIMESTAMP_FILE)) |
Loïc Minier | a76406f | 2011-10-03 11:57:11 +0200 | [diff] [blame] | 744 | @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp |
| 745 | @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp |
| 746 | @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 747 | |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 748 | easylogo env gdb: |
| 749 | $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION} |
| 750 | gdbtools: gdb |
| 751 | |
Marek Vasut | 30ff891 | 2012-10-06 14:04:58 +0000 | [diff] [blame] | 752 | xmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc |
| 753 | $(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) -C doc/DocBook/ $@ |
| 754 | |
Loïc Minier | 249b53a | 2011-10-03 11:57:10 +0200 | [diff] [blame] | 755 | tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE) |
Mike Frysinger | 0358df4 | 2010-08-15 00:03:21 -0400 | [diff] [blame] | 756 | $(MAKE) -C tools HOST_TOOLS_ALL=y |
| 757 | |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 758 | .PHONY : CHANGELOG |
| 759 | CHANGELOG: |
Ben Warren | b985b5d | 2006-10-26 14:38:25 -0400 | [diff] [blame] | 760 | git log --no-merges U-Boot-1_1_5.. | \ |
| 761 | unexpand -a | sed -e 's/\s\s*$$//' > $@ |
Wolfgang Denk | 4e53a25 | 2006-10-25 00:43:17 +0200 | [diff] [blame] | 762 | |
Harald Welte | 0a823aa | 2008-07-09 22:30:30 +0800 | [diff] [blame] | 763 | include/license.h: tools/bin2header COPYING |
Wolfgang Denk | 0e42ada | 2010-05-27 23:18:33 +0200 | [diff] [blame] | 764 | cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 765 | ######################################################################### |
| 766 | |
| 767 | unconfig: |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 768 | @rm -f $(obj)include/config.h $(obj)include/config.mk \ |
Grant Likely | 2f155f6 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 769 | $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \ |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 770 | $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep \ |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 771 | $(obj)include/spl-autoconf.mk \ |
| 772 | $(obj)include/tpl-autoconf.mk |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 773 | |
Wolfgang Denk | a6862bc | 2010-05-27 23:18:36 +0200 | [diff] [blame] | 774 | %_config:: unconfig |
| 775 | @$(MKCONFIG) -A $(@:_config=) |
| 776 | |
Loïc Minier | d6a5e6d | 2011-01-19 13:16:30 +0100 | [diff] [blame] | 777 | sinclude $(obj).boards.depend |
| 778 | $(obj).boards.depend: boards.cfg |
Masahiro Yamada | 50c2a91 | 2013-09-18 12:01:27 +0900 | [diff] [blame] | 779 | @awk '(NF && $$1 !~ /^#/) { print $$7 ": " $$7 "_config; $$(MAKE)" }' $< > $@ |
Mike Frysinger | 9f4a420 | 2009-10-01 12:11:54 -0400 | [diff] [blame] | 780 | |
Wolfgang Denk | 699f051 | 2008-07-15 22:22:44 +0200 | [diff] [blame] | 781 | ######################################################################### |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 782 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 783 | |
| 784 | clean: |
Masahiro Yamada | aaed2eb | 2013-12-06 16:34:09 +0900 | [diff] [blame] | 785 | @rm -f $(obj)examples/standalone/atmel_df_pow2 \ |
Peter Tyser | 1bc1538 | 2009-07-10 11:03:19 -0500 | [diff] [blame] | 786 | $(obj)examples/standalone/hello_world \ |
| 787 | $(obj)examples/standalone/interrupt \ |
| 788 | $(obj)examples/standalone/mem_to_mem_idma2intr \ |
| 789 | $(obj)examples/standalone/sched \ |
Mike Frysinger | 201a017 | 2011-05-07 12:05:30 +0000 | [diff] [blame] | 790 | $(obj)examples/standalone/smc911{11,x}_eeprom \ |
Peter Tyser | 1bc1538 | 2009-07-10 11:03:19 -0500 | [diff] [blame] | 791 | $(obj)examples/standalone/test_burst \ |
| 792 | $(obj)examples/standalone/timer |
Peter Tyser | d4abc75 | 2009-07-20 19:02:21 -0500 | [diff] [blame] | 793 | @rm -f $(obj)examples/api/demo{,.bin} |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 794 | @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \ |
Masahiro Yamada | 475c506 | 2013-12-06 16:34:10 +0900 | [diff] [blame] | 795 | $(obj)tools/env/fw_printenv \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 796 | $(obj)tools/envcrc \ |
Masahiro Yamada | 475c506 | 2013-12-06 16:34:10 +0900 | [diff] [blame] | 797 | $(obj)tools/gdb/{gdbcont,gdbsend} \ |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 798 | $(obj)tools/gen_eth_addr $(obj)tools/img2srec \ |
Guilherme Maciel Ferreira | a804b5c | 2013-12-01 12:43:11 -0700 | [diff] [blame] | 799 | $(obj)tools/dump{env,}image \ |
Horst Kronstorfer | 7717fe1 | 2011-11-28 23:42:14 +0000 | [diff] [blame] | 800 | $(obj)tools/mk{env,}image $(obj)tools/mpc86x_clk \ |
Chander Kashyap | ad403e7 | 2013-07-25 18:28:52 +0530 | [diff] [blame] | 801 | $(obj)tools/mk{$(BOARD),}spl \ |
Marek Vasut | 8aa0902 | 2012-08-28 15:15:52 +0000 | [diff] [blame] | 802 | $(obj)tools/mxsboot \ |
Marek Vasut | 30ff891 | 2012-10-06 14:04:58 +0000 | [diff] [blame] | 803 | $(obj)tools/ncb $(obj)tools/ubsha1 \ |
Simon Glass | 6c887b2 | 2013-06-11 11:14:43 -0700 | [diff] [blame] | 804 | $(obj)tools/kernel-doc/docproc \ |
| 805 | $(obj)tools/proftool |
Wolfgang Denk | f9301e1 | 2008-03-04 14:58:31 +0100 | [diff] [blame] | 806 | @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \ |
Wolfgang Denk | 74c7a95 | 2010-10-16 18:24:16 +0200 | [diff] [blame] | 807 | $(obj)board/matrix_vision/*/bootscript.img \ |
Wolfgang Denk | 1aada9c | 2009-08-17 14:00:53 +0200 | [diff] [blame] | 808 | $(obj)u-boot.lds \ |
Mike Frysinger | fb5166c | 2011-05-07 17:55:04 -0400 | [diff] [blame] | 809 | $(obj)arch/blackfin/cpu/init.{lds,elf} |
Wolfgang Denk | dc7746d | 2008-04-20 15:39:38 -0700 | [diff] [blame] | 810 | @rm -f $(obj)include/bmp_logo.h |
Che-Liang Chiou | c270730 | 2011-10-20 23:04:20 +0000 | [diff] [blame] | 811 | @rm -f $(obj)include/bmp_logo_data.h |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 812 | @rm -f $(obj)lib/asm-offsets.s |
Stefano Babic | a4814a6 | 2011-09-05 04:32:28 +0000 | [diff] [blame] | 813 | @rm -f $(obj)include/generated/asm-offsets.h |
| 814 | @rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s |
Peter Tyser | d4abc75 | 2009-07-20 19:02:21 -0500 | [diff] [blame] | 815 | @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE) |
Andreas Bießmann | b3141fd | 2012-11-13 06:31:39 +0000 | [diff] [blame] | 816 | @$(MAKE) -s -C doc/DocBook/ cleandocs |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 817 | @find $(OBJTREE) -type f \ |
Tom Rini | 4a30f1e | 2012-02-20 13:50:10 +0000 | [diff] [blame] | 818 | \( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \ |
Troy Kisky | 71a988a | 2013-01-18 16:14:24 +0000 | [diff] [blame] | 819 | -o -name '*.o' -o -name '*.a' -o -name '*.exe' \ |
| 820 | -o -name '*.cfgtmp' \) -print \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 821 | | xargs rm -f |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 822 | |
Andy Fleming | 734329f | 2011-11-21 13:40:43 +0000 | [diff] [blame] | 823 | # Removes everything not needed for testing u-boot |
| 824 | tidy: clean |
| 825 | @find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f |
| 826 | |
| 827 | clobber: tidy |
| 828 | @find $(OBJTREE) -type f \( -name '*.srec' \ |
| 829 | -o -name '*.bin' -o -name u-boot.img \) \ |
| 830 | -print0 | xargs -0 rm -f |
Li Yang | ffda586 | 2008-02-29 11:46:05 +0800 | [diff] [blame] | 831 | @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \ |
Wolfgang Denk | 5013c09 | 2008-03-02 22:45:33 +0100 | [diff] [blame] | 832 | $(obj)cscope.* $(obj)*.*~ |
Daniel Schwierzeck | 4e0fbb9 | 2011-07-13 05:11:01 +0000 | [diff] [blame] | 833 | @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y) |
Prafulla Wadaskar | aa0c7a8 | 2009-09-07 15:05:02 +0530 | [diff] [blame] | 834 | @rm -f $(obj)u-boot.kwb |
Shaohui Xie | 5d898a0 | 2012-08-10 02:49:35 +0000 | [diff] [blame] | 835 | @rm -f $(obj)u-boot.pbl |
Stefano Babic | c5fb70c | 2010-02-05 15:13:58 +0100 | [diff] [blame] | 836 | @rm -f $(obj)u-boot.imx |
Benoît Thébaudeau | ba59760 | 2013-04-11 09:35:56 +0000 | [diff] [blame] | 837 | @rm -f $(obj)u-boot-with-spl.imx |
Benoît Thébaudeau | 7d5a5c7 | 2013-04-11 09:35:57 +0000 | [diff] [blame] | 838 | @rm -f $(obj)u-boot-with-nand-spl.imx |
Heiko Schocher | 7816f2c | 2011-07-16 00:06:42 +0000 | [diff] [blame] | 839 | @rm -f $(obj)u-boot.ubl |
Christian Riesch | d36d885 | 2011-12-09 09:47:39 +0000 | [diff] [blame] | 840 | @rm -f $(obj)u-boot.ais |
Simon Glass | bbb0b12 | 2011-10-15 05:48:21 +0000 | [diff] [blame] | 841 | @rm -f $(obj)u-boot.dtb |
Marek Vasut | 30b9b93 | 2011-11-08 23:18:19 +0000 | [diff] [blame] | 842 | @rm -f $(obj)u-boot.sb |
Stefan Roese | 94aebe6 | 2012-01-05 11:19:50 +0100 | [diff] [blame] | 843 | @rm -f $(obj)u-boot.spr |
Marek Vasut | 97b24d3 | 2012-10-19 05:00:10 +0000 | [diff] [blame] | 844 | @rm -f $(obj)nand_spl/{u-boot.{lds,lst},System.map} |
| 845 | @rm -f $(obj)nand_spl/{u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map} |
| 846 | @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.map} |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 847 | @rm -f $(obj)spl/u-boot-spl.lds |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 848 | @rm -f $(obj)tpl/{u-boot-tpl,u-boot-tpl.bin,u-boot-tpl.map} |
| 849 | @rm -f $(obj)tpl/u-boot-spl.lds |
Nishanth Menon | 94bcfe5 | 2013-01-02 07:59:24 +0000 | [diff] [blame] | 850 | @rm -f $(obj)MLO MLO.byteswap |
Stefano Babic | a3cbc39 | 2012-10-17 06:04:30 +0000 | [diff] [blame] | 851 | @rm -f $(obj)SPL |
Daniel Schwierzeck | 8b425b3 | 2012-07-27 23:44:24 +0200 | [diff] [blame] | 852 | @rm -f $(obj)tools/xway-swap-bytes |
Loïc Minier | a9d8bc9 | 2011-01-19 13:16:29 +0100 | [diff] [blame] | 853 | @rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 854 | @rm -fr $(obj)include/generated |
Jean-Christophe PLAGNIOL-VILLARD | a958b66 | 2008-08-16 18:54:27 +0200 | [diff] [blame] | 855 | @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f |
Simon Glass | bbb0b12 | 2011-10-15 05:48:21 +0000 | [diff] [blame] | 856 | @rm -f $(obj)dts/*.tmp |
Sughosh Ganu | 6d660e7 | 2012-06-13 08:39:06 +0000 | [diff] [blame] | 857 | @rm -f $(obj)spl/u-boot-spl{,-pad}.ais |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 858 | |
| 859 | mrproper \ |
| 860 | distclean: clobber unconfig |
Mike Frysinger | afd077b | 2011-06-24 18:37:55 +0000 | [diff] [blame] | 861 | ifneq ($(OBJTREE),$(SRCTREE)) |
Wolfgang Denk | ae6d105 | 2008-01-13 00:59:21 +0100 | [diff] [blame] | 862 | rm -rf $(obj)* |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 863 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 864 | |
| 865 | backup: |
| 866 | F=`basename $(TOPDIR)` ; cd .. ; \ |
Ilya Yanok | d6b9371 | 2010-06-21 18:13:21 +0400 | [diff] [blame] | 867 | 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] | 868 | |
| 869 | ######################################################################### |