]>
Commit | Line | Data |
---|---|---|
7ebf7443 | 1 | # |
eca3aeb3 | 2 | # (C) Copyright 2000-2013 |
7ebf7443 WD |
3 | # Wolfgang Denk, DENX Software Engineering, [email protected]. |
4 | # | |
eca3aeb3 | 5 | # SPDX-License-Identifier: GPL-2.0+ |
7ebf7443 WD |
6 | # |
7 | ||
3ae7b240 | 8 | VERSION = 2013 |
40a60c6e | 9 | PATCHLEVEL = 10 |
211e4754 | 10 | SUBLEVEL = |
183acb70 | 11 | EXTRAVERSION = |
8b9e4787 | 12 | ifneq "$(SUBLEVEL)" "" |
881a87ec | 13 | U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) |
8b9e4787 WD |
14 | else |
15 | U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION) | |
16 | endif | |
efb2172e SG |
17 | TIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h |
18 | VERSION_FILE = $(obj)include/generated/version_autogenerated.h | |
881a87ec | 19 | |
7ebf7443 | 20 | HOSTARCH := $(shell uname -m | \ |
fea25720 | 21 | sed -e s/i.86/x86/ \ |
7ebf7443 WD |
22 | -e s/sun4u/sparc64/ \ |
23 | -e s/arm.*/arm/ \ | |
24 | -e s/sa110/arm/ \ | |
d0179083 KG |
25 | -e s/ppc64/powerpc/ \ |
26 | -e s/ppc/powerpc/ \ | |
8d1f6355 NI |
27 | -e s/macppc/powerpc/\ |
28 | -e s/sh.*/sh/) | |
7ebf7443 | 29 | |
f9d77ed3 | 30 | HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ |
7ebf7443 WD |
31 | sed -e 's/\(cygwin\).*/cygwin/') |
32 | ||
120ae609 | 33 | export HOSTARCH HOSTOS |
7ebf7443 WD |
34 | |
35 | # Deal with colliding definitions from tcsh etc. | |
36 | VENDOR= | |
37 | ||
ae6d1056 WD |
38 | ######################################################################### |
39 | # Allow for silent builds | |
40 | ifeq (,$(findstring s,$(MAKEFLAGS))) | |
41 | XECHO = echo | |
42 | else | |
43 | XECHO = : | |
44 | endif | |
45 | ||
7ebf7443 | 46 | ######################################################################### |
f9328639 | 47 | # |
1bce2aeb | 48 | # U-boot build supports generating object files in a separate external |
f9328639 | 49 | # directory. Two use cases are supported: |
887e2ec9 | 50 | # |
f9328639 MB |
51 | # 1) Add O= to the make command line |
52 | # 'make O=/tmp/build all' | |
53 | # | |
1bce2aeb | 54 | # 2) Set environment variable BUILD_DIR to point to the desired location |
f9328639 MB |
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' | |
887e2ec9 | 61 | # |
1bce2aeb | 62 | # Command line 'O=' setting overrides BUILD_DIR environment variable. |
887e2ec9 | 63 | # |
f9328639 MB |
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. | |
887e2ec9 | 66 | # |
f9328639 | 67 | |
f9328639 MB |
68 | ifeq ("$(origin O)", "command line") |
69 | BUILD_DIR := $(O) | |
70 | endif | |
f9328639 | 71 | |
4ab64933 KP |
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 | ||
f9328639 MB |
90 | ifneq ($(BUILD_DIR),) |
91 | saved-output := $(BUILD_DIR) | |
4f0645eb MB |
92 | |
93 | # Attempt to create a output directory. | |
94 | $(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}) | |
95 | ||
a73c8dbb | 96 | # Verify if it was successful. |
f9328639 MB |
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)) | |
c8f9c302 | 102 | SPLTREE := $(OBJTREE)/spl |
3aa29de0 | 103 | TPLTREE := $(OBJTREE)/tpl |
f9328639 MB |
104 | SRCTREE := $(CURDIR) |
105 | TOPDIR := $(SRCTREE) | |
106 | LNDIR := $(OBJTREE) | |
3aa29de0 | 107 | export TOPDIR SRCTREE OBJTREE SPLTREE TPLTREE |
f9328639 MB |
108 | |
109 | MKCONFIG := $(SRCTREE)/mkconfig | |
110 | export MKCONFIG | |
7ebf7443 | 111 | |
f9328639 | 112 | ifneq ($(OBJTREE),$(SRCTREE)) |
dd520bf3 | 113 | REMOTE_BUILD := 1 |
f9328639 MB |
114 | export REMOTE_BUILD |
115 | endif | |
116 | ||
117 | # $(obj) and (src) are defined in config.mk but here in main Makefile | |
118 | # we also need them before config.mk is included which is the case for | |
119 | # some targets like unconfig, clean, clobber, distclean, etc. | |
120 | ifneq ($(OBJTREE),$(SRCTREE)) | |
121 | obj := $(OBJTREE)/ | |
122 | src := $(SRCTREE)/ | |
123 | else | |
124 | obj := | |
125 | src := | |
887e2ec9 | 126 | endif |
f9328639 MB |
127 | export obj src |
128 | ||
5013c09f WD |
129 | # Make sure CDPATH settings don't interfere |
130 | unexport CDPATH | |
131 | ||
7ebf7443 WD |
132 | ######################################################################### |
133 | ||
6d1ce387 MF |
134 | # The "tools" are needed early, so put this first |
135 | # Don't include stuff already done in $(LIBS) | |
349e83f0 CC |
136 | # The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC |
137 | # is "yes"), so compile examples after U-Boot is compiled. | |
138 | SUBDIR_TOOLS = tools | |
349e83f0 | 139 | SUBDIRS = $(SUBDIR_TOOLS) |
6d1ce387 | 140 | |
249b53a6 | 141 | .PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE) |
6d1ce387 | 142 | |
ae6d1056 | 143 | ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk)) |
7ebf7443 | 144 | |
2632c008 MF |
145 | # Include autoconf.mk before config.mk so that the config options are available |
146 | # to all top level build files. We need the dummy all: target to prevent the | |
147 | # dependency target in autoconf.mk.dep from being the default. | |
148 | all: | |
149 | sinclude $(obj)include/autoconf.mk.dep | |
150 | sinclude $(obj)include/autoconf.mk | |
151 | ||
8a7e7d56 MY |
152 | SUBDIR_EXAMPLES-y := examples/standalone |
153 | SUBDIR_EXAMPLES-$(CONFIG_API) += examples/api | |
b5728756 | 154 | ifndef CONFIG_SANDBOX |
8a7e7d56 | 155 | SUBDIRS += $(SUBDIR_EXAMPLES-y) |
b5728756 SG |
156 | endif |
157 | ||
7ebf7443 | 158 | # load ARCH, BOARD, and CPU configuration |
ae6d1056 | 159 | include $(obj)include/config.mk |
1d9f4105 | 160 | export ARCH CPU BOARD VENDOR SOC |
f9328639 | 161 | |
1ea6bcd8 | 162 | # set default to nothing for native builds |
a5284efd | 163 | ifeq ($(HOSTARCH),$(ARCH)) |
1ea6bcd8 | 164 | CROSS_COMPILE ?= |
5c952cf0 | 165 | endif |
7ebf7443 | 166 | |
92b197f0 WD |
167 | # load other configuration |
168 | include $(TOPDIR)/config.mk | |
169 | ||
fada9e20 SG |
170 | # Targets which don't build the source code |
171 | NON_BUILD_TARGETS = backup clean clobber distclean mkproper tidy unconfig | |
172 | ||
173 | # Only do the generic board check when actually building, not configuring | |
174 | ifeq ($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),) | |
175 | ifeq ($(findstring _config,$(MAKECMDGOALS)),) | |
176 | $(CHECK_GENERIC_BOARD) | |
177 | endif | |
178 | endif | |
179 | ||
d51dfff7 IY |
180 | # If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use |
181 | # that (or fail if absent). Otherwise, search for a linker script in a | |
182 | # standard location. | |
183 | ||
ee60197e SG |
184 | LDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT)) |
185 | ||
d51dfff7 IY |
186 | ifndef LDSCRIPT |
187 | #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug | |
188 | ifdef CONFIG_SYS_LDSCRIPT | |
189 | # need to strip off double quotes | |
190 | LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT)) | |
191 | endif | |
192 | endif | |
193 | ||
ee60197e | 194 | # If there is no specified link script, we look in a number of places for it |
d51dfff7 IY |
195 | ifndef LDSCRIPT |
196 | ifeq ($(CONFIG_NAND_U_BOOT),y) | |
197 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds | |
198 | ifeq ($(wildcard $(LDSCRIPT)),) | |
199 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds | |
200 | endif | |
201 | endif | |
202 | ifeq ($(wildcard $(LDSCRIPT)),) | |
203 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds | |
204 | endif | |
205 | ifeq ($(wildcard $(LDSCRIPT)),) | |
206 | LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds | |
207 | endif | |
ee60197e SG |
208 | ifeq ($(wildcard $(LDSCRIPT)),) |
209 | LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds | |
210 | # We don't expect a Makefile here | |
211 | LDSCRIPT_MAKEFILE_DIR = | |
212 | endif | |
d51dfff7 IY |
213 | ifeq ($(wildcard $(LDSCRIPT)),) |
214 | $(error could not find linker script) | |
215 | endif | |
216 | endif | |
217 | ||
7ebf7443 WD |
218 | ######################################################################### |
219 | # U-Boot objects....order is important (i.e. start must be first) | |
220 | ||
03b7004d | 221 | OBJS = $(CPUDIR)/start.o |
7ebf7443 | 222 | ifeq ($(CPU),ppc4xx) |
03b7004d | 223 | OBJS += $(CPUDIR)/resetvec.o |
7ebf7443 | 224 | endif |
42d1f039 | 225 | ifeq ($(CPU),mpc85xx) |
03b7004d | 226 | OBJS += $(CPUDIR)/resetvec.o |
42d1f039 | 227 | endif |
7ebf7443 | 228 | |
a32e626f | 229 | OBJS := $(addprefix $(obj),$(OBJS)) |
f9328639 | 230 | |
e66443fd | 231 | HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n) |
8b5a0264 | 232 | |
e2906a59 MY |
233 | LIBS-y += lib/ |
234 | LIBS-$(CONFIG_RSA) += lib/rsa/ | |
235 | LIBS-$(CONFIG_LZMA) += lib/lzma/ | |
236 | LIBS-$(CONFIG_LZO) += lib/lzo/ | |
237 | LIBS-$(CONFIG_ZLIB) += lib/zlib/ | |
238 | LIBS-$(CONFIG_TIZEN) += lib/tizen/ | |
239 | LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/ | |
240 | LIBS-y += $(CPUDIR)/ | |
1d9f4105 | 241 | ifdef SOC |
e2906a59 | 242 | LIBS-y += $(CPUDIR)/$(SOC)/ |
1d9f4105 | 243 | endif |
e2906a59 MY |
244 | LIBS-$(CONFIG_IXP4XX_NPE) += drivers/net/npe/ |
245 | LIBS-$(CONFIG_OF_EMBED) += dts/ | |
246 | LIBS-y += arch/$(ARCH)/lib/ | |
57c3e5fc | 247 | LIBS-y += fs/ |
e2906a59 MY |
248 | LIBS-y += net/ |
249 | LIBS-y += disk/ | |
250 | LIBS-y += drivers/ | |
251 | LIBS-y += drivers/dma/ | |
252 | LIBS-y += drivers/gpio/ | |
253 | LIBS-y += drivers/i2c/ | |
254 | LIBS-y += drivers/input/ | |
255 | LIBS-y += drivers/mmc/ | |
256 | LIBS-y += drivers/mtd/ | |
257 | LIBS-y += drivers/mtd/nand/ | |
258 | LIBS-y += drivers/mtd/onenand/ | |
259 | LIBS-y += drivers/mtd/ubi/ | |
260 | LIBS-y += drivers/mtd/spi/ | |
261 | LIBS-y += drivers/net/ | |
262 | LIBS-y += drivers/net/phy/ | |
263 | LIBS-y += drivers/pci/ | |
264 | LIBS-y += drivers/power/ \ | |
265 | drivers/power/fuel_gauge/ \ | |
266 | drivers/power/mfd/ \ | |
267 | drivers/power/pmic/ \ | |
268 | drivers/power/battery/ | |
269 | LIBS-y += drivers/spi/ | |
270 | LIBS-$(CONFIG_FMAN_ENET) += drivers/net/fm/ | |
271 | LIBS-y += drivers/serial/ | |
272 | LIBS-y += drivers/usb/eth/ | |
273 | LIBS-y += drivers/usb/gadget/ | |
274 | LIBS-y += drivers/usb/host/ | |
275 | LIBS-y += drivers/usb/musb/ | |
276 | LIBS-y += drivers/usb/musb-new/ | |
277 | LIBS-y += drivers/usb/phy/ | |
278 | LIBS-y += drivers/usb/ulpi/ | |
279 | LIBS-y += common/ | |
280 | LIBS-y += lib/libfdt/ | |
8a7e7d56 | 281 | LIBS-$(CONFIG_API) += api/ |
e2906a59 MY |
282 | LIBS-y += post/ |
283 | LIBS-y += test/ | |
f9328639 | 284 | |
24e8bee5 | 285 | ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610)) |
e2906a59 | 286 | LIBS-y += arch/$(ARCH)/imx-common/ |
18936ee2 JL |
287 | endif |
288 | ||
e2906a59 MY |
289 | LIBS-$(CONFIG_ARM) += arch/arm/cpu/ |
290 | LIBS-$(CONFIG_PPC) += arch/powerpc/cpu/ | |
852bd07c | 291 | |
e2906a59 | 292 | LIBS-y += board/$(BOARDDIR)/ |
08e39a84 | 293 | |
e2906a59 | 294 | LIBS-y := $(patsubst %/, %/built-in.o, $(LIBS-y)) |
f52d7b35 | 295 | LIBS := $(addprefix $(obj),$(sort $(LIBS-y))) |
249b53a6 | 296 | .PHONY : $(LIBS) |
a8c7c708 | 297 | |
4f7cb08e | 298 | # Add GCC lib |
52b1bf2c WD |
299 | ifdef USE_PRIVATE_LIBGCC |
300 | ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") | |
635d1b3e | 301 | PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o |
52b1bf2c WD |
302 | else |
303 | PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc | |
304 | endif | |
305 | else | |
cca4e4ae | 306 | PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc |
52b1bf2c WD |
307 | endif |
308 | PLATFORM_LIBS += $(PLATFORM_LIBGCC) | |
309 | export PLATFORM_LIBS | |
3d3befa7 | 310 | |
6ac9f479 MF |
311 | # Special flags for CPP when processing the linker script. |
312 | # Pass the version down so we can handle backwards compatibility | |
313 | # on the fly. | |
314 | LDPPFLAGS += \ | |
315 | -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ | |
7e6403a6 | 316 | -DCPUDIR=$(CPUDIR) \ |
6ac9f479 MF |
317 | $(shell $(LD) --version | \ |
318 | sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') | |
319 | ||
f9328639 | 320 | __OBJS := $(subst $(obj),,$(OBJS)) |
08e39a84 | 321 | __LIBS := $(subst $(obj),,$(LIBS)) |
f9328639 | 322 | |
bdccc4fe | 323 | ######################################################################### |
7ebf7443 WD |
324 | ######################################################################### |
325 | ||
f3a14d37 MF |
326 | ifneq ($(CONFIG_BOARD_SIZE_LIMIT),) |
327 | BOARD_SIZE_CHECK = \ | |
328 | @actual=`wc -c $@ | awk '{print $$1}'`; \ | |
d060e6f4 | 329 | limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \ |
f3a14d37 | 330 | if test $$actual -gt $$limit; then \ |
d060e6f4 JH |
331 | echo "$@ exceeds file size limit:" >&2 ; \ |
332 | echo " limit: $$limit bytes" >&2 ; \ | |
333 | echo " actual: $$actual bytes" >&2 ; \ | |
334 | echo " excess: $$((actual - limit)) bytes" >&2; \ | |
f3a14d37 MF |
335 | exit 1; \ |
336 | fi | |
337 | else | |
338 | BOARD_SIZE_CHECK = | |
339 | endif | |
340 | ||
3e88337b | 341 | # Always append ALL so that arch config.mk's can add custom ones |
4e0fbb98 | 342 | ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map |
e935a374 | 343 | |
4e0fbb98 DS |
344 | ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin |
345 | ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin | |
262737f0 | 346 | ALL-$(CONFIG_RAMBOOT_PBL) += $(obj)u-boot.pbl |
5df2ee27 | 347 | ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin |
4c267374 | 348 | ALL-$(CONFIG_SPL_FRAMEWORK) += $(obj)u-boot.img |
3aa29de0 | 349 | ALL-$(CONFIG_TPL) += $(obj)tpl/u-boot-tpl.bin |
2c0f79e4 | 350 | ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin |
b343bbb5 VB |
351 | ifneq ($(CONFIG_SPL_TARGET),) |
352 | ALL-$(CONFIG_SPL) += $(obj)$(subst ",,$(CONFIG_SPL_TARGET)) | |
353 | endif | |
0d3c62e4 | 354 | |
12b7b70c | 355 | # enable combined SPL/u-boot/dtb rules for tegra |
6d6c0bae | 356 | ifneq ($(CONFIG_TEGRA),) |
12b7b70c AM |
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 | |
363 | ||
71f84ef0 MY |
364 | build := -f $(TOPDIR)/scripts/Makefile.build -C |
365 | ||
8a7e7d56 | 366 | all: $(ALL-y) $(SUBDIR_EXAMPLES-y) |
7ebf7443 | 367 | |
501ebdf2 | 368 | $(obj)u-boot.dtb: checkdtc $(obj)u-boot |
bcfe8fdf | 369 | $(MAKE) $(build) dts binary |
2c0f79e4 SG |
370 | mv $(obj)dts/dt.dtb $@ |
371 | ||
372 | $(obj)u-boot-dtb.bin: $(obj)u-boot.bin $(obj)u-boot.dtb | |
373 | cat $^ >$@ | |
374 | ||
f9328639 | 375 | $(obj)u-boot.hex: $(obj)u-boot |
6310eb9d WD |
376 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ |
377 | ||
f9328639 | 378 | $(obj)u-boot.srec: $(obj)u-boot |
0817d688 | 379 | $(OBJCOPY) -O srec $< $@ |
7ebf7443 | 380 | |
f9328639 | 381 | $(obj)u-boot.bin: $(obj)u-boot |
7ebf7443 | 382 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |
f3a14d37 | 383 | $(BOARD_SIZE_CHECK) |
7ebf7443 | 384 | |
94a91e24 | 385 | $(obj)u-boot.ldr: $(obj)u-boot |
76d82187 | 386 | $(CREATE_LDR_ENV) |
68e56324 | 387 | $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS) |
f3a14d37 | 388 | $(BOARD_SIZE_CHECK) |
94a91e24 MF |
389 | |
390 | $(obj)u-boot.ldr.hex: $(obj)u-boot.ldr | |
391 | $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary | |
392 | ||
393 | $(obj)u-boot.ldr.srec: $(obj)u-boot.ldr | |
394 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary | |
395 | ||
b40bda6b SR |
396 | # |
397 | # U-Boot entry point, needed for booting of full-blown U-Boot | |
398 | # from the SPL U-Boot version. | |
399 | # | |
400 | ifndef CONFIG_SYS_UBOOT_START | |
401 | CONFIG_SYS_UBOOT_START := 0 | |
402 | endif | |
403 | ||
f9328639 | 404 | $(obj)u-boot.img: $(obj)u-boot.bin |
a2a0a717 | 405 | $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \ |
b40bda6b SR |
406 | -O u-boot -a $(CONFIG_SYS_TEXT_BASE) \ |
407 | -e $(CONFIG_SYS_UBOOT_START) \ | |
881a87ec | 408 | -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ |
bdccc4fe WD |
409 | sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ |
410 | -d $< $@ | |
411 | ||
291b3dcd | 412 | $(obj)u-boot.imx: $(obj)u-boot.bin depend |
71f84ef0 | 413 | $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common $(OBJTREE)/u-boot.imx |
8edcde5e | 414 | |
aa0c7a86 | 415 | $(obj)u-boot.kwb: $(obj)u-boot.bin |
31d80c77 | 416 | $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \ |
2ea88b06 | 417 | -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@ |
aa0c7a86 | 418 | |
5d898a00 SX |
419 | $(obj)u-boot.pbl: $(obj)u-boot.bin |
420 | $(obj)tools/mkimage -n $(CONFIG_PBLRCW_CONFIG) \ | |
421 | -R $(CONFIG_PBLPBI_CONFIG) -T pblimage \ | |
422 | -d $< $@ | |
423 | ||
566a494f | 424 | $(obj)u-boot.sha1: $(obj)u-boot.bin |
01159530 | 425 | $(obj)tools/ubsha1 $(obj)u-boot.bin |
566a494f | 426 | |
f9328639 | 427 | $(obj)u-boot.dis: $(obj)u-boot |
7ebf7443 WD |
428 | $(OBJDUMP) -d $< > $@ |
429 | ||
3aa29de0 YZ |
430 | # $@ is output, $(1) and $(2) are inputs, $(3) is padded intermediate, |
431 | # $(4) is pad-to | |
432 | SPL_PAD_APPEND = \ | |
433 | $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(4) -I binary -O binary \ | |
434 | $(1) $(obj)$(3); \ | |
b6df9b01 | 435 | cat $(obj)$(3) $(2) > $@; \ |
3aa29de0 | 436 | rm $(obj)$(3) |
74752baa | 437 | |
3aa29de0 YZ |
438 | ifdef CONFIG_TPL |
439 | SPL_PAYLOAD := $(obj)tpl/u-boot-with-tpl.bin | |
440 | else | |
441 | SPL_PAYLOAD := $(obj)u-boot.bin | |
442 | endif | |
74752baa | 443 | |
3aa29de0 YZ |
444 | $(obj)u-boot-with-spl.bin: $(obj)spl/u-boot-spl.bin $(SPL_PAYLOAD) |
445 | $(call SPL_PAD_APPEND,$<,$(SPL_PAYLOAD),spl/u-boot-spl-pad.bin,$(CONFIG_SPL_PAD_TO)) | |
446 | ||
447 | $(obj)tpl/u-boot-with-tpl.bin: $(obj)tpl/u-boot-tpl.bin $(obj)u-boot.bin | |
b6df9b01 | 448 | $(call SPL_PAD_APPEND,$<,$(obj)u-boot.bin,tpl/u-boot-tpl-pad.bin,$(CONFIG_TPL_PAD_TO)) |
7816f2cf | 449 | |
ba597609 | 450 | $(obj)u-boot-with-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin |
71f84ef0 | 451 | $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common \ |
ba597609 BT |
452 | $(OBJTREE)/u-boot-with-spl.imx |
453 | ||
7d5a5c79 | 454 | $(obj)u-boot-with-nand-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin |
71f84ef0 | 455 | $(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common \ |
7d5a5c79 BT |
456 | $(OBJTREE)/u-boot-with-nand-spl.imx |
457 | ||
5364add4 | 458 | $(obj)u-boot.ubl: $(obj)u-boot-with-spl.bin |
277f00f5 | 459 | $(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \ |
5364add4 | 460 | -e $(CONFIG_SYS_TEXT_BASE) -d $< $(obj)u-boot.ubl |
277f00f5 | 461 | |
3f7f2414 | 462 | $(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img |
6d660e77 SG |
463 | $(obj)tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(CONFIG_AIS_CONFIG_FILE),"/dev/null") \ |
464 | -T aisimage \ | |
d36d8859 CR |
465 | -e $(CONFIG_SPL_TEXT_BASE) \ |
466 | -d $(obj)spl/u-boot-spl.bin \ | |
467 | $(obj)spl/u-boot-spl.ais | |
468 | $(OBJCOPY) ${OBJCFLAGS} -I binary \ | |
469 | --pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \ | |
470 | $(obj)spl/u-boot-spl.ais $(obj)spl/u-boot-spl-pad.ais | |
3f7f2414 | 471 | cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.img > \ |
d36d8859 | 472 | $(obj)u-boot.ais |
d36d8859 | 473 | |
a5453555 | 474 | |
30b9b932 | 475 | $(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin |
edabc1bc | 476 | $(MAKE) $(build) $(SRCTREE)/$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb |
30b9b932 | 477 | |
94aebe6c SR |
478 | # On x600 (SPEAr600) U-Boot is appended to U-Boot SPL. |
479 | # Both images are created using mkimage (crc etc), so that the ROM | |
480 | # bootloader can check its integrity. Padding needs to be done to the | |
481 | # SPL image (with mkimage header) and not the binary. Otherwise the resulting image | |
482 | # which is loaded/copied by the ROM bootloader to SRAM doesn't fit. | |
483 | # The resulting image containing both U-Boot images is called u-boot.spr | |
484 | $(obj)u-boot.spr: $(obj)u-boot.img $(obj)spl/u-boot-spl.bin | |
485 | $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \ | |
486 | -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \ | |
487 | -d $(obj)spl/u-boot-spl.bin $(obj)spl/u-boot-spl.img | |
488 | tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_SPL_PAD_TO) \ | |
489 | of=$(obj)spl/u-boot-spl-pad.img 2>/dev/null | |
490 | dd if=$(obj)spl/u-boot-spl.img of=$(obj)spl/u-boot-spl-pad.img \ | |
491 | conv=notrunc 2>/dev/null | |
492 | cat $(obj)spl/u-boot-spl-pad.img $(obj)u-boot.img > $@ | |
493 | ||
6d6c0bae | 494 | ifneq ($(CONFIG_TEGRA),) |
9972db5c | 495 | $(obj)u-boot-nodtb-tegra.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin |
984df4ec | 496 | $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin |
9972db5c | 497 | cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@ |
984df4ec | 498 | rm $(obj)spl/u-boot-spl-pad.bin |
9972db5c SW |
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 | |
984df4ec | 504 | endif |
984df4ec | 505 | |
fb3d2b8a SR |
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 | ||
ecddccd0 SR |
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 | |
515 | tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_UBOOT_PAD_TO) \ | |
516 | of=$(obj)u-boot-pad.img 2>/dev/null | |
517 | dd if=$(obj)u-boot.img of=$(obj)u-boot-pad.img \ | |
518 | conv=notrunc 2>/dev/null | |
519 | cat $(obj)u-boot-pad.img $(obj)spl/u-boot-spl.bin > $@ | |
520 | ||
86eb49b3 SG |
521 | ifeq ($(CONFIG_SANDBOX),y) |
522 | GEN_UBOOT = \ | |
523 | cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \ | |
524 | -Wl,--start-group $(__LIBS) -Wl,--end-group \ | |
525 | $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot | |
526 | else | |
ecb1dc89 | 527 | GEN_UBOOT = \ |
97b24d3d | 528 | cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \ |
ef123c52 | 529 | $(__OBJS) \ |
f9328639 | 530 | --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ |
b2184c31 | 531 | -Map u-boot.map -o u-boot |
86eb49b3 SG |
532 | endif |
533 | ||
16a354f9 | 534 | $(obj)u-boot: depend \ |
08e39a84 | 535 | $(SUBDIR_TOOLS) $(OBJS) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds |
ecb1dc89 MF |
536 | $(GEN_UBOOT) |
537 | ifeq ($(CONFIG_KALLSYMS),y) | |
8a156fb6 | 538 | smap=`$(call SYSTEM_MAP,$(obj)u-boot) | \ |
1aada9cd WD |
539 | awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \ |
540 | $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \ | |
541 | -c common/system_map.c -o $(obj)common/system_map.o | |
ecb1dc89 MF |
542 | $(GEN_UBOOT) $(obj)common/system_map.o |
543 | endif | |
7ebf7443 | 544 | |
3bddafaa MY |
545 | $(OBJS): |
546 | @: | |
f9328639 | 547 | |
349e83f0 | 548 | $(LIBS): depend $(SUBDIR_TOOLS) |
3bddafaa | 549 | $(MAKE) $(build) $(dir $(subst $(obj),,$@)) |
a8c7c708 | 550 | |
d0d6144e | 551 | $(SUBDIRS): depend |
b028f715 | 552 | $(MAKE) -C $@ all |
7ebf7443 | 553 | |
8a7e7d56 | 554 | $(SUBDIR_EXAMPLES-y): $(obj)u-boot |
349e83f0 | 555 | |
d0d6144e | 556 | $(LDSCRIPT): depend |
f65c9812 MF |
557 | $(MAKE) -C $(dir $@) $(notdir $@) |
558 | ||
ef123c52 | 559 | $(obj)u-boot.lds: $(LDSCRIPT) |
97b24d3d | 560 | $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@ |
1aada9cd | 561 | |
e935a374 | 562 | nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend |
8318fbf8 | 563 | $(MAKE) -C nand_spl/board/$(BOARDDIR) all |
887e2ec9 | 564 | |
e935a374 | 565 | $(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin |
8318fbf8 | 566 | cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin |
887e2ec9 | 567 | |
bd25fdba | 568 | $(obj)spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend |
5df2ee27 DS |
569 | $(MAKE) -C spl all |
570 | ||
3aa29de0 YZ |
571 | $(obj)tpl/u-boot-tpl.bin: $(SUBDIR_TOOLS) depend |
572 | $(MAKE) -C spl all CONFIG_TPL_BUILD=y | |
573 | ||
2a998793 DH |
574 | # Explicitly make _depend in subdirs containing multiple targets to prevent |
575 | # parallel sub-makes creating .depend files simultaneously. | |
16a354f9 | 576 | depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \ |
39bc12dd | 577 | $(obj)include/spl-autoconf.mk \ |
3aa29de0 | 578 | $(obj)include/tpl-autoconf.mk \ |
16a354f9 | 579 | $(obj)include/autoconf.mk \ |
a4814a69 SB |
580 | $(obj)include/generated/generic-asm-offsets.h \ |
581 | $(obj)include/generated/asm-offsets.h | |
7ebf7443 | 582 | |
e5e4e705 LY |
583 | TAG_SUBDIRS = $(SUBDIRS) |
584 | TAG_SUBDIRS += $(dir $(__LIBS)) | |
a340c325 | 585 | TAG_SUBDIRS += include |
a340c325 | 586 | |
857d9ea6 HK |
587 | FIND := find |
588 | FINDFLAGS := -L | |
589 | ||
1064d980 TR |
590 | checkstack: |
591 | $(CROSS_COMPILE)objdump -d $(obj)u-boot \ | |
592 | `$(FIND) $(obj) -name u-boot-spl -print` | \ | |
593 | perl $(src)tools/checkstack.pl $(ARCH) | |
594 | ||
f9328639 | 595 | tags ctags: |
857d9ea6 | 596 | ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ |
e5e4e705 | 597 | -name '*.[chS]' -print` |
7ebf7443 WD |
598 | |
599 | etags: | |
857d9ea6 | 600 | etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ |
e5e4e705 | 601 | -name '*.[chS]' -print` |
ffda586f | 602 | cscope: |
857d9ea6 HK |
603 | $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \ |
604 | cscope.files | |
ffda586f | 605 | cscope -b -q -k |
7ebf7443 | 606 | |
ecb1dc89 MF |
607 | SYSTEM_MAP = \ |
608 | $(NM) $1 | \ | |
7ebf7443 | 609 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ |
ecb1dc89 MF |
610 | LC_ALL=C sort |
611 | $(obj)System.map: $(obj)u-boot | |
bc8bb6ec | 612 | @$(call SYSTEM_MAP,$<) > $@ |
7ebf7443 | 613 | |
06a119a0 TR |
614 | checkthumb: |
615 | @if test $(call cc-version) -lt 0404; then \ | |
616 | echo -n '*** Your GCC does not produce working '; \ | |
617 | echo 'binaries in THUMB mode.'; \ | |
618 | echo '*** Your board is configured for THUMB mode.'; \ | |
619 | false; \ | |
620 | fi | |
6ec63f41 SW |
621 | |
622 | # GCC 3.x is reported to have problems generating the type of relocation | |
623 | # that U-Boot wants. | |
624 | # See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html | |
625 | checkgcc4: | |
626 | @if test $(call cc-version) -lt 0400; then \ | |
627 | echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \ | |
628 | false; \ | |
629 | fi | |
630 | ||
501ebdf2 SW |
631 | checkdtc: |
632 | @if test $(call dtc-version) -lt 0104; then \ | |
633 | echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \ | |
634 | false; \ | |
635 | fi | |
636 | ||
2f155f6c GL |
637 | # |
638 | # Auto-generate the autoconf.mk file (which is included by all makefiles) | |
639 | # | |
640 | # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep. | |
641 | # the dep file is only include in this top level makefile to determine when | |
642 | # to regenerate the autoconf.mk file. | |
1510b82d WD |
643 | $(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h |
644 | @$(XECHO) Generating $@ ; \ | |
16fe7775 | 645 | set -e ; \ |
ae6d1056 | 646 | : Generate the dependancies ; \ |
4c34b2a0 | 647 | $(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \ |
1510b82d WD |
648 | -MQ $(obj)include/autoconf.mk include/common.h > $@ |
649 | ||
650 | $(obj)include/autoconf.mk: $(obj)include/config.h | |
651 | @$(XECHO) Generating $@ ; \ | |
652 | set -e ; \ | |
ae6d1056 | 653 | : Extract the config macros ; \ |
1510b82d | 654 | $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \ |
4a0f7538 WD |
655 | sed -n -f tools/scripts/define2mk.sed > [email protected] && \ |
656 | mv [email protected] $@ | |
2f155f6c | 657 | |
39bc12dd | 658 | # Auto-generate the spl-autoconf.mk file (which is included by all makefiles for SPL) |
3aa29de0 YZ |
659 | $(obj)include/tpl-autoconf.mk: $(obj)include/config.h |
660 | @$(XECHO) Generating $@ ; \ | |
661 | set -e ; \ | |
662 | : Extract the config macros ; \ | |
663 | $(CPP) $(CFLAGS) -DCONFIG_TPL_BUILD -DCONFIG_SPL_BUILD\ | |
664 | -DDO_DEPS_ONLY -dM include/common.h | \ | |
665 | sed -n -f tools/scripts/define2mk.sed > [email protected] && \ | |
666 | mv [email protected] $@ | |
667 | ||
39bc12dd JF |
668 | $(obj)include/spl-autoconf.mk: $(obj)include/config.h |
669 | @$(XECHO) Generating $@ ; \ | |
670 | set -e ; \ | |
671 | : Extract the config macros ; \ | |
672 | $(CPP) $(CFLAGS) -DCONFIG_SPL_BUILD -DDO_DEPS_ONLY -dM include/common.h | \ | |
673 | sed -n -f tools/scripts/define2mk.sed > [email protected] && \ | |
674 | mv [email protected] $@ | |
675 | ||
16a354f9 | 676 | $(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \ |
39bc12dd | 677 | $(obj)include/spl-autoconf.mk \ |
3aa29de0 | 678 | $(obj)include/tpl-autoconf.mk \ |
16a354f9 WD |
679 | $(obj)lib/asm-offsets.s |
680 | @$(XECHO) Generating $@ | |
681 | tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@ | |
682 | ||
683 | $(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \ | |
39bc12dd | 684 | $(obj)include/spl-autoconf.mk \ |
3aa29de0 | 685 | $(obj)include/tpl-autoconf.mk \ |
16a354f9 WD |
686 | $(src)lib/asm-offsets.c |
687 | @mkdir -p $(obj)lib | |
688 | $(CC) -DDO_DEPS_ONLY \ | |
689 | $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ | |
690 | -o $@ $(src)lib/asm-offsets.c -c -S | |
691 | ||
a4814a69 | 692 | $(obj)include/generated/asm-offsets.h: $(obj)include/autoconf.mk.dep \ |
39bc12dd | 693 | $(obj)include/spl-autoconf.mk \ |
3aa29de0 | 694 | $(obj)include/tpl-autoconf.mk \ |
a4814a69 | 695 | $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s |
b12734ee | 696 | @$(XECHO) Generating $@ |
a4814a69 SB |
697 | tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@ |
698 | ||
39bc12dd | 699 | $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s: $(obj)include/autoconf.mk.dep \ |
3aa29de0 YZ |
700 | $(obj)include/spl-autoconf.mk \ |
701 | $(obj)include/tpl-autoconf.mk | |
a4814a69 SB |
702 | @mkdir -p $(obj)$(CPUDIR)/$(SOC) |
703 | if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \ | |
704 | $(CC) -DDO_DEPS_ONLY \ | |
705 | $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ | |
706 | -o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \ | |
707 | else \ | |
708 | touch $@; \ | |
709 | fi | |
710 | ||
7ebf7443 | 711 | ######################################################################### |
ae6d1056 | 712 | else # !config.mk |
f9328639 MB |
713 | all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \ |
714 | $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \ | |
249b53a6 | 715 | $(filter-out tools,$(SUBDIRS)) \ |
2e78e75e | 716 | depend dep tags ctags etags cscope $(obj)System.map: |
7ebf7443 WD |
717 | @echo "System not configured - see README" >&2 |
718 | @ exit 1 | |
c7c0d542 | 719 | |
249b53a6 | 720 | tools: $(VERSION_FILE) $(TIMESTAMP_FILE) |
0358df42 | 721 | $(MAKE) -C $@ all |
ae6d1056 | 722 | endif # config.mk |
7ebf7443 | 723 | |
c37980c3 AA |
724 | # ARM relocations should all be R_ARM_RELATIVE. |
725 | checkarmreloc: $(obj)u-boot | |
726 | @if test "R_ARM_RELATIVE" != \ | |
c1273d71 | 727 | "`$(CROSS_COMPILE)readelf -r $< | cut -d ' ' -f 4 | grep R_ARM | sort -u`"; \ |
c37980c3 AA |
728 | then echo "$< contains relocations other than \ |
729 | R_ARM_RELATIVE"; false; fi | |
730 | ||
28abd48f | 731 | $(VERSION_FILE): |
14ce91b1 | 732 | @mkdir -p $(dir $(VERSION_FILE)) |
28abd48f IY |
733 | @( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \ |
734 | printf '#define PLAIN_VERSION "%s%s"\n' \ | |
735 | "$(U_BOOT_VERSION)" "$${localvers}" ; \ | |
736 | printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \ | |
737 | "$(U_BOOT_VERSION)" "$${localvers}" ; \ | |
738 | ) > [email protected] | |
739 | @( printf '#define CC_VERSION_STRING "%s"\n' \ | |
740 | '$(shell $(CC) --version | head -n 1)' )>> [email protected] | |
741 | @( printf '#define LD_VERSION_STRING "%s"\n' \ | |
742 | '$(shell $(LD) -v | head -n 1)' )>> [email protected] | |
743 | @cmp -s $@ [email protected] && rm -f [email protected] || mv -f [email protected] $@ | |
744 | ||
249b53a6 LM |
745 | $(TIMESTAMP_FILE): |
746 | @mkdir -p $(dir $(TIMESTAMP_FILE)) | |
a76406fb LM |
747 | @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > [email protected] |
748 | @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> [email protected] | |
749 | @cmp -s $@ [email protected] && rm -f [email protected] || mv -f [email protected] $@ | |
249b53a6 | 750 | |
0358df42 MF |
751 | easylogo env gdb: |
752 | $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION} | |
753 | gdbtools: gdb | |
754 | ||
30ff8918 MV |
755 | xmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc |
756 | $(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) -C doc/DocBook/ $@ | |
757 | ||
249b53a6 | 758 | tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE) |
0358df42 MF |
759 | $(MAKE) -C tools HOST_TOOLS_ALL=y |
760 | ||
4e53a258 WD |
761 | .PHONY : CHANGELOG |
762 | CHANGELOG: | |
b985b5d6 BW |
763 | git log --no-merges U-Boot-1_1_5.. | \ |
764 | unexpand -a | sed -e 's/\s\s*$$//' > $@ | |
4e53a258 | 765 | |
0a823aa2 | 766 | include/license.h: tools/bin2header COPYING |
0e42ada3 | 767 | cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h |
7ebf7443 WD |
768 | ######################################################################### |
769 | ||
770 | unconfig: | |
887e2ec9 | 771 | @rm -f $(obj)include/config.h $(obj)include/config.mk \ |
2f155f6c | 772 | $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \ |
39bc12dd | 773 | $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep \ |
3aa29de0 YZ |
774 | $(obj)include/spl-autoconf.mk \ |
775 | $(obj)include/tpl-autoconf.mk | |
7ebf7443 | 776 | |
a6862bc1 WD |
777 | %_config:: unconfig |
778 | @$(MKCONFIG) -A $(@:_config=) | |
779 | ||
d6a5e6d5 LM |
780 | sinclude $(obj).boards.depend |
781 | $(obj).boards.depend: boards.cfg | |
50c2a91b | 782 | @awk '(NF && $$1 !~ /^#/) { print $$7 ": " $$7 "_config; $$(MAKE)" }' $< > $@ |
9f4a4206 | 783 | |
3e38691e WD |
784 | ######################################################################### |
785 | ######################################################################### | |
7ebf7443 WD |
786 | |
787 | clean: | |
1bc15386 | 788 | @rm -f $(obj)examples/standalone/82559_eeprom \ |
d640ac58 | 789 | $(obj)examples/standalone/atmel_df_pow2 \ |
1bc15386 PT |
790 | $(obj)examples/standalone/eepro100_eeprom \ |
791 | $(obj)examples/standalone/hello_world \ | |
792 | $(obj)examples/standalone/interrupt \ | |
793 | $(obj)examples/standalone/mem_to_mem_idma2intr \ | |
794 | $(obj)examples/standalone/sched \ | |
201a017c | 795 | $(obj)examples/standalone/smc911{11,x}_eeprom \ |
1bc15386 PT |
796 | $(obj)examples/standalone/test_burst \ |
797 | $(obj)examples/standalone/timer | |
d4abc757 | 798 | @rm -f $(obj)examples/api/demo{,.bin} |
f9301e1c WD |
799 | @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \ |
800 | $(obj)tools/env/{fw_printenv,fw_setenv} \ | |
801 | $(obj)tools/envcrc \ | |
802 | $(obj)tools/gdb/{astest,gdbcont,gdbsend} \ | |
803 | $(obj)tools/gen_eth_addr $(obj)tools/img2srec \ | |
7717fe10 | 804 | $(obj)tools/mk{env,}image $(obj)tools/mpc86x_clk \ |
ad403e71 | 805 | $(obj)tools/mk{$(BOARD),}spl \ |
8aa09026 | 806 | $(obj)tools/mxsboot \ |
30ff8918 | 807 | $(obj)tools/ncb $(obj)tools/ubsha1 \ |
6c887b2a SG |
808 | $(obj)tools/kernel-doc/docproc \ |
809 | $(obj)tools/proftool | |
f9301e1c | 810 | @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \ |
74c7a95f | 811 | $(obj)board/matrix_vision/*/bootscript.img \ |
566e5cf4 | 812 | $(obj)board/voiceblue/eeprom \ |
1aada9cd | 813 | $(obj)u-boot.lds \ |
fb5166ce MF |
814 | $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \ |
815 | $(obj)arch/blackfin/cpu/init.{lds,elf} | |
dc7746d8 | 816 | @rm -f $(obj)include/bmp_logo.h |
c270730f | 817 | @rm -f $(obj)include/bmp_logo_data.h |
16a354f9 | 818 | @rm -f $(obj)lib/asm-offsets.s |
a4814a69 SB |
819 | @rm -f $(obj)include/generated/asm-offsets.h |
820 | @rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s | |
d4abc757 | 821 | @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE) |
b3141fdb | 822 | @$(MAKE) -s -C doc/DocBook/ cleandocs |
ae6d1056 | 823 | @find $(OBJTREE) -type f \ |
4a30f1e8 | 824 | \( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \ |
71a988aa TK |
825 | -o -name '*.o' -o -name '*.a' -o -name '*.exe' \ |
826 | -o -name '*.cfgtmp' \) -print \ | |
7ebf7443 | 827 | | xargs rm -f |
7ebf7443 | 828 | |
734329f9 AF |
829 | # Removes everything not needed for testing u-boot |
830 | tidy: clean | |
831 | @find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f | |
832 | ||
833 | clobber: tidy | |
834 | @find $(OBJTREE) -type f \( -name '*.srec' \ | |
835 | -o -name '*.bin' -o -name u-boot.img \) \ | |
836 | -print0 | xargs -0 rm -f | |
ffda586f | 837 | @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \ |
5013c09f | 838 | $(obj)cscope.* $(obj)*.*~ |
4e0fbb98 | 839 | @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y) |
aa0c7a86 | 840 | @rm -f $(obj)u-boot.kwb |
5d898a00 | 841 | @rm -f $(obj)u-boot.pbl |
c5fb70c9 | 842 | @rm -f $(obj)u-boot.imx |
ba597609 | 843 | @rm -f $(obj)u-boot-with-spl.imx |
7d5a5c79 | 844 | @rm -f $(obj)u-boot-with-nand-spl.imx |
7816f2cf | 845 | @rm -f $(obj)u-boot.ubl |
d36d8859 | 846 | @rm -f $(obj)u-boot.ais |
bbb0b128 | 847 | @rm -f $(obj)u-boot.dtb |
30b9b932 | 848 | @rm -f $(obj)u-boot.sb |
714dc001 | 849 | @rm -f $(obj)u-boot.bd |
94aebe6c | 850 | @rm -f $(obj)u-boot.spr |
97b24d3d MV |
851 | @rm -f $(obj)nand_spl/{u-boot.{lds,lst},System.map} |
852 | @rm -f $(obj)nand_spl/{u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map} | |
853 | @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.map} | |
ef123c52 | 854 | @rm -f $(obj)spl/u-boot-spl.lds |
3aa29de0 YZ |
855 | @rm -f $(obj)tpl/{u-boot-tpl,u-boot-tpl.bin,u-boot-tpl.map} |
856 | @rm -f $(obj)tpl/u-boot-spl.lds | |
94bcfe52 | 857 | @rm -f $(obj)MLO MLO.byteswap |
a3cbc396 | 858 | @rm -f $(obj)SPL |
8b425b3f | 859 | @rm -f $(obj)tools/xway-swap-bytes |
a9d8bc98 | 860 | @rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm |
16a354f9 | 861 | @rm -fr $(obj)include/generated |
a958b663 | 862 | @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f |
bbb0b128 | 863 | @rm -f $(obj)dts/*.tmp |
6d660e77 | 864 | @rm -f $(obj)spl/u-boot-spl{,-pad}.ais |
f9328639 | 865 | |
f9328639 MB |
866 | mrproper \ |
867 | distclean: clobber unconfig | |
afd077bd | 868 | ifneq ($(OBJTREE),$(SRCTREE)) |
ae6d1056 | 869 | rm -rf $(obj)* |
f9328639 | 870 | endif |
7ebf7443 WD |
871 | |
872 | backup: | |
873 | F=`basename $(TOPDIR)` ; cd .. ; \ | |
d6b93714 | 874 | gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F |
7ebf7443 WD |
875 | |
876 | ######################################################################### |