2 # (C) Copyright 2000-2011
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 # See file CREDITS for list of people who contributed to this
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundatio; either version 2 of
11 # the License, or (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 ifneq "$(SUBLEVEL)" ""
29 U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
31 U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
33 TIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h
34 VERSION_FILE = $(obj)include/generated/version_autogenerated.h
36 HOSTARCH := $(shell uname -m | \
46 HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
47 sed -e 's/\(cygwin\).*/cygwin/')
49 # Set shell to bash if possible, otherwise fall back to sh
50 SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
51 else if [ -x /bin/bash ]; then echo /bin/bash; \
54 export HOSTARCH HOSTOS SHELL
56 # Deal with colliding definitions from tcsh etc.
59 #########################################################################
60 # Allow for silent builds
61 ifeq (,$(findstring s,$(MAKEFLAGS)))
67 #########################################################################
69 # U-boot build supports producing a object files to the separate external
70 # directory. Two use cases are supported:
72 # 1) Add O= to the make command line
73 # 'make O=/tmp/build all'
75 # 2) Set environement variable BUILD_DIR to point to the desired location
76 # 'export BUILD_DIR=/tmp/build'
79 # The second approach can also be used with a MAKEALL script
80 # 'export BUILD_DIR=/tmp/build'
83 # Command line 'O=' setting overrides BUILD_DIR environent variable.
85 # When none of the above methods is used the local build is performed and
86 # the object files are placed in the source directory.
90 ifeq ("$(origin O)", "command line")
96 saved-output := $(BUILD_DIR)
98 # Attempt to create a output directory.
99 $(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
101 # Verify if it was successful.
102 BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
103 $(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
104 endif # ifneq ($(BUILD_DIR),)
106 OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
107 SPLTREE := $(OBJTREE)/spl
111 export TOPDIR SRCTREE OBJTREE SPLTREE
113 MKCONFIG := $(SRCTREE)/mkconfig
116 ifneq ($(OBJTREE),$(SRCTREE))
121 # $(obj) and (src) are defined in config.mk but here in main Makefile
122 # we also need them before config.mk is included which is the case for
123 # some targets like unconfig, clean, clobber, distclean, etc.
124 ifneq ($(OBJTREE),$(SRCTREE))
133 # Make sure CDPATH settings don't interfere
136 #########################################################################
138 # The "tools" are needed early, so put this first
139 # Don't include stuff already done in $(LIBS)
140 # The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
141 # is "yes"), so compile examples after U-Boot is compiled.
143 SUBDIR_EXAMPLES = examples/standalone examples/api
144 SUBDIRS = $(SUBDIR_TOOLS)
145 ifndef CONFIG_SANDBOX
146 SUBDIRS += $(SUBDIR_EXAMPLES)
149 .PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
151 ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
153 # Include autoconf.mk before config.mk so that the config options are available
154 # to all top level build files. We need the dummy all: target to prevent the
155 # dependency target in autoconf.mk.dep from being the default.
157 sinclude $(obj)include/autoconf.mk.dep
158 sinclude $(obj)include/autoconf.mk
160 # load ARCH, BOARD, and CPU configuration
161 include $(obj)include/config.mk
162 export ARCH CPU BOARD VENDOR SOC
164 # set default to nothing for native builds
165 ifeq ($(HOSTARCH),$(ARCH))
169 # load other configuration
170 include $(TOPDIR)/config.mk
172 # If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
173 # that (or fail if absent). Otherwise, search for a linker script in a
177 #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
178 ifdef CONFIG_SYS_LDSCRIPT
179 # need to strip off double quotes
180 LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
185 ifeq ($(CONFIG_NAND_U_BOOT),y)
186 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
187 ifeq ($(wildcard $(LDSCRIPT)),)
188 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
191 ifeq ($(wildcard $(LDSCRIPT)),)
192 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
194 ifeq ($(wildcard $(LDSCRIPT)),)
195 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
197 ifeq ($(wildcard $(LDSCRIPT)),)
198 $(error could not find linker script)
202 #########################################################################
203 # U-Boot objects....order is important (i.e. start must be first)
205 OBJS = $(CPUDIR)/start.o
207 OBJS += $(CPUDIR)/start16.o
208 OBJS += $(CPUDIR)/resetvec.o
211 OBJS += $(CPUDIR)/resetvec.o
213 ifeq ($(CPU),mpc85xx)
214 OBJS += $(CPUDIR)/resetvec.o
217 OBJS := $(addprefix $(obj),$(OBJS))
219 LIBS = lib/libgeneric.o
220 LIBS += lib/lzma/liblzma.o
221 LIBS += lib/lzo/liblzo.o
222 LIBS += lib/zlib/libz.o
223 LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \
224 "board/$(VENDOR)/common/lib$(VENDOR).o"; fi)
225 LIBS += $(CPUDIR)/lib$(CPU).o
227 LIBS += $(CPUDIR)/$(SOC)/lib$(SOC).o
230 LIBS += arch/arm/cpu/ixp/npe/libnpe.o
232 ifeq ($(CONFIG_OF_EMBED),y)
235 LIBS += arch/$(ARCH)/lib/lib$(ARCH).o
236 LIBS += fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o fs/jffs2/libjffs2.o \
237 fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o fs/yaffs2/libyaffs2.o \
240 LIBS += disk/libdisk.o
241 LIBS += drivers/bios_emulator/libatibiosemu.o
242 LIBS += drivers/block/libblock.o
243 LIBS += drivers/dma/libdma.o
244 LIBS += drivers/fpga/libfpga.o
245 LIBS += drivers/gpio/libgpio.o
246 LIBS += drivers/hwmon/libhwmon.o
247 LIBS += drivers/i2c/libi2c.o
248 LIBS += drivers/input/libinput.o
249 LIBS += drivers/misc/libmisc.o
250 LIBS += drivers/mmc/libmmc.o
251 LIBS += drivers/mtd/libmtd.o
252 LIBS += drivers/mtd/nand/libnand.o
253 LIBS += drivers/mtd/onenand/libonenand.o
254 LIBS += drivers/mtd/ubi/libubi.o
255 LIBS += drivers/mtd/spi/libspi_flash.o
256 LIBS += drivers/net/libnet.o
257 LIBS += drivers/net/phy/libphy.o
258 LIBS += drivers/pci/libpci.o
259 LIBS += drivers/pcmcia/libpcmcia.o
260 LIBS += drivers/power/libpower.o
261 LIBS += drivers/spi/libspi.o
262 ifeq ($(CPU),mpc83xx)
263 LIBS += drivers/qe/libqe.o
264 LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
265 LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
267 ifeq ($(CPU),mpc85xx)
268 LIBS += drivers/qe/libqe.o
269 LIBS += drivers/net/fm/libfm.o
270 LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
271 LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
273 ifeq ($(CPU),mpc86xx)
274 LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
275 LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
277 LIBS += drivers/rtc/librtc.o
278 LIBS += drivers/serial/libserial.o
279 LIBS += drivers/twserial/libtws.o
280 LIBS += drivers/usb/eth/libusb_eth.o
281 LIBS += drivers/usb/gadget/libusb_gadget.o
282 LIBS += drivers/usb/host/libusb_host.o
283 LIBS += drivers/usb/musb/libusb_musb.o
284 LIBS += drivers/usb/phy/libusb_phy.o
285 LIBS += drivers/video/libvideo.o
286 LIBS += drivers/watchdog/libwatchdog.o
287 LIBS += common/libcommon.o
288 LIBS += lib/libfdt/libfdt.o
290 LIBS += post/libpost.o
293 LIBS += $(CPUDIR)/omap-common/libomap-common.o
296 LIBS += $(CPUDIR)/omap-common/libomap-common.o
299 ifeq ($(SOC),s5pc1xx)
300 LIBS += $(CPUDIR)/s5p-common/libs5p-common.o
302 ifeq ($(SOC),s5pc2xx)
303 LIBS += $(CPUDIR)/s5p-common/libs5p-common.o
306 LIBS := $(addprefix $(obj),$(sort $(LIBS)))
309 LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o
310 LIBBOARD := $(addprefix $(obj),$(LIBBOARD))
313 ifdef USE_PRIVATE_LIBGCC
314 ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
315 PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
317 PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
320 PLATFORM_LIBGCC = -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
322 PLATFORM_LIBS += $(PLATFORM_LIBGCC)
325 # Special flags for CPP when processing the linker script.
326 # Pass the version down so we can handle backwards compatibility
329 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
330 $(shell $(LD) --version | \
331 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
333 __OBJS := $(subst $(obj),,$(OBJS))
334 __LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
336 #########################################################################
337 #########################################################################
339 ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
341 @actual=`wc -c $@ | awk '{print $$1}'`; \
342 limit=$(CONFIG_BOARD_SIZE_LIMIT); \
343 if test $$actual -gt $$limit; then \
344 echo "$@ exceeds file size limit:"; \
345 echo " limit: $$limit bytes"; \
346 echo " actual: $$actual bytes"; \
347 echo " excess: $$((actual - limit)) bytes"; \
354 # Always append ALL so that arch config.mk's can add custom ones
355 ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map
357 ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin
358 ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin
359 ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin
360 ALL-$(CONFIG_MMC_U_BOOT) += $(obj)mmc_spl/u-boot-mmc-spl.bin
361 ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin
362 ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin
364 all: $(ALL-y) $(SUBDIR_EXAMPLES)
366 $(obj)u-boot.dtb: $(obj)u-boot
367 $(MAKE) -C dts binary
368 mv $(obj)dts/dt.dtb $@
370 $(obj)u-boot-dtb.bin: $(obj)u-boot.bin $(obj)u-boot.dtb
373 $(obj)u-boot.hex: $(obj)u-boot
374 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
376 $(obj)u-boot.srec: $(obj)u-boot
377 $(OBJCOPY) -O srec $< $@
379 $(obj)u-boot.bin: $(obj)u-boot
380 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
383 $(obj)u-boot.ldr: $(obj)u-boot
385 $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
388 $(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
389 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
391 $(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
392 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
394 $(obj)u-boot.img: $(obj)u-boot.bin
395 $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
396 -O u-boot -a $(CONFIG_SYS_TEXT_BASE) -e 0 \
397 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
398 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
401 $(obj)u-boot.imx: $(obj)u-boot.bin
402 $(obj)tools/mkimage -n $(CONFIG_IMX_CONFIG) -T imximage \
403 -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
405 $(obj)u-boot.kwb: $(obj)u-boot.bin
406 $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
407 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
409 $(obj)u-boot.sha1: $(obj)u-boot.bin
410 $(obj)tools/ubsha1 $(obj)u-boot.bin
412 $(obj)u-boot.dis: $(obj)u-boot
413 $(OBJDUMP) -d $< > $@
415 $(obj)u-boot.ubl: $(obj)u-boot-nand.bin
416 $(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \
417 -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
419 ifeq ($(CONFIG_SANDBOX),y)
421 cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \
422 -Wl,--start-group $(__LIBS) -Wl,--end-group \
423 $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
426 UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
427 sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
428 cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__OBJS) \
429 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
430 -Map u-boot.map -o u-boot
433 $(obj)u-boot: depend \
434 $(SUBDIR_TOOLS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
436 ifeq ($(CONFIG_KALLSYMS),y)
437 smap=`$(call SYSTEM_MAP,u-boot) | \
438 awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
439 $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
440 -c common/system_map.c -o $(obj)common/system_map.o
441 $(GEN_UBOOT) $(obj)common/system_map.o
445 $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
447 $(LIBS): depend $(SUBDIR_TOOLS)
448 $(MAKE) -C $(dir $(subst $(obj),,$@))
450 $(LIBBOARD): depend $(LIBS)
451 $(MAKE) -C $(dir $(subst $(obj),,$@))
456 $(SUBDIR_EXAMPLES): $(obj)u-boot
459 $(MAKE) -C $(dir $@) $(notdir $@)
461 $(obj)u-boot.lds: $(LDSCRIPT)
462 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
464 nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
465 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
467 $(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin
468 cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
470 onenand_ipl: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
471 $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all
473 $(obj)u-boot-onenand.bin: onenand_ipl $(obj)u-boot.bin
474 cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin
476 mmc_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
477 $(MAKE) -C mmc_spl/board/$(BOARDDIR) all
479 $(obj)mmc_spl/u-boot-mmc-spl.bin: mmc_spl
481 $(obj)spl/u-boot-spl.bin: depend
485 $(MAKE) -C tools/updater all
487 # Explicitly make _depend in subdirs containing multiple targets to prevent
488 # parallel sub-makes creating .depend files simultaneously.
489 depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \
490 $(obj)include/autoconf.mk \
491 $(obj)include/generated/generic-asm-offsets.h \
492 $(obj)include/generated/asm-offsets.h
493 for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \
494 $(MAKE) -C $$dir _depend ; done
496 TAG_SUBDIRS = $(SUBDIRS)
497 TAG_SUBDIRS += $(dir $(__LIBS))
498 TAG_SUBDIRS += include
504 ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
505 -name '*.[chS]' -print`
508 etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
509 -name '*.[chS]' -print`
511 $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
517 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
519 $(obj)System.map: $(obj)u-boot
520 @$(call SYSTEM_MAP,$<) > $(obj)System.map
523 # Auto-generate the autoconf.mk file (which is included by all makefiles)
525 # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
526 # the dep file is only include in this top level makefile to determine when
527 # to regenerate the autoconf.mk file.
528 $(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
529 @$(XECHO) Generating $@ ; \
531 : Generate the dependancies ; \
532 $(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \
533 -MQ $(obj)include/autoconf.mk include/common.h > $@
535 $(obj)include/autoconf.mk: $(obj)include/config.h
536 @$(XECHO) Generating $@ ; \
538 : Extract the config macros ; \
539 $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
540 sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
543 $(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \
544 $(obj)lib/asm-offsets.s
545 @$(XECHO) Generating $@
546 tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
548 $(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \
549 $(src)lib/asm-offsets.c
551 $(CC) -DDO_DEPS_ONLY \
552 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
553 -o $@ $(src)lib/asm-offsets.c -c -S
555 $(obj)include/generated/asm-offsets.h: $(obj)include/autoconf.mk.dep \
556 $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
558 tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@
560 $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s: $(obj)include/autoconf.mk.dep
561 @mkdir -p $(obj)$(CPUDIR)/$(SOC)
562 if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
563 $(CC) -DDO_DEPS_ONLY \
564 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
565 -o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
570 #########################################################################
572 all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
573 $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
574 $(filter-out tools,$(SUBDIRS)) \
575 updater depend dep tags ctags etags cscope $(obj)System.map:
576 @echo "System not configured - see README" >&2
579 tools: $(VERSION_FILE) $(TIMESTAMP_FILE)
584 @mkdir -p $(dir $(VERSION_FILE))
585 @( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \
586 printf '#define PLAIN_VERSION "%s%s"\n' \
587 "$(U_BOOT_VERSION)" "$${localvers}" ; \
588 printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
589 "$(U_BOOT_VERSION)" "$${localvers}" ; \
591 @( printf '#define CC_VERSION_STRING "%s"\n' \
592 '$(shell $(CC) --version | head -n 1)' )>> $@.tmp
593 @( printf '#define LD_VERSION_STRING "%s"\n' \
594 '$(shell $(LD) -v | head -n 1)' )>> $@.tmp
595 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
598 @mkdir -p $(dir $(TIMESTAMP_FILE))
599 @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
600 @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
601 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
604 $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
607 tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
608 $(MAKE) -C tools HOST_TOOLS_ALL=y
612 git log --no-merges U-Boot-1_1_5.. | \
613 unexpand -a | sed -e 's/\s\s*$$//' > $@
615 include/license.h: tools/bin2header COPYING
616 cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
617 #########################################################################
620 @rm -f $(obj)include/config.h $(obj)include/config.mk \
621 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
622 $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
625 @$(MKCONFIG) -A $(@:_config=)
627 sinclude $(obj).boards.depend
628 $(obj).boards.depend: boards.cfg
629 awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@
632 # Functions to generate common board directory names
634 lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/')
635 ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')
637 #########################################################################
639 #########################################################################
641 M52277EVB_spansion_config \
642 M52277EVB_stmicro_config : unconfig
643 @mkdir -p $(obj)include
644 @mkdir -p $(obj)board/freescale/m52277evb
646 M52277EVB_config) FLASH=SPANSION;; \
647 M52277EVB_spansion_config) FLASH=SPANSION;; \
648 M52277EVB_stmicro_config) FLASH=STMICRO;; \
650 if [ "$${FLASH}" = "SPANSION" ] ; then \
651 echo "#define CONFIG_SYS_SPANSION_BOOT" >> $(obj)include/config.h ; \
652 echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m52277evb/config.tmp ; \
654 if [ "$${FLASH}" = "STMICRO" ] ; then \
655 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
656 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
657 echo "CONFIG_SYS_TEXT_BASE = 0x43E00000" > $(obj)board/freescale/m52277evb/config.tmp ; \
659 @$(MKCONFIG) -n $@ -a M52277EVB m68k mcf5227x m52277evb freescale
662 M5235EVB_Flash16_config \
663 M5235EVB_Flash32_config: unconfig
664 @mkdir -p $(obj)include
665 @mkdir -p $(obj)board/freescale/m5235evb
667 M5235EVB_config) FLASH=16;; \
668 M5235EVB_Flash16_config) FLASH=16;; \
669 M5235EVB_Flash32_config) FLASH=32;; \
671 if [ "$${FLASH}" != "16" ] ; then \
672 echo "#define NORFLASH_PS32BIT 1" >> $(obj)include/config.h ; \
673 echo "CONFIG_SYS_TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
675 echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
677 @$(MKCONFIG) -n $@ -a M5235EVB m68k mcf523x m5235evb freescale
679 EB+MCF-EV123_config : unconfig
680 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
681 @echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
682 @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
684 EB+MCF-EV123_internal_config : unconfig
685 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
686 @echo "CONFIG_SYS_TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
687 @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
690 M54451EVB_stmicro_config : unconfig
691 @mkdir -p $(obj)include
692 @mkdir -p $(obj)board/freescale/m54451evb
694 M54451EVB_config) FLASH=NOR;; \
695 M54451EVB_stmicro_config) FLASH=STMICRO;; \
697 if [ "$${FLASH}" = "NOR" ] ; then \
698 echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54451evb/config.tmp ; \
700 if [ "$${FLASH}" = "STMICRO" ] ; then \
701 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
702 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
703 echo "CONFIG_SYS_TEXT_BASE = 0x47E00000" > $(obj)board/freescale/m54451evb/config.tmp ; \
705 echo "#define CONFIG_SYS_INPUT_CLKSRC 24000000" >> $(obj)include/config.h ;
706 @$(MKCONFIG) -n $@ -a M54451EVB m68k mcf5445x m54451evb freescale
709 M54455EVB_atmel_config \
710 M54455EVB_intel_config \
711 M54455EVB_a33_config \
712 M54455EVB_a66_config \
713 M54455EVB_i33_config \
714 M54455EVB_i66_config \
715 M54455EVB_stm33_config : unconfig
716 @mkdir -p $(obj)include
717 @mkdir -p $(obj)board/freescale/m54455evb
719 M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \
720 M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \
721 M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \
722 M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \
723 M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \
724 M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \
725 M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \
726 M54455EVB_stm33_config) FLASH=STMICRO; FREQ=33333333;; \
728 if [ "$${FLASH}" = "INTEL" ] ; then \
729 echo "#define CONFIG_SYS_INTEL_BOOT" >> $(obj)include/config.h ; \
730 echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
732 if [ "$${FLASH}" = "ATMEL" ] ; then \
733 echo "#define CONFIG_SYS_ATMEL_BOOT" >> $(obj)include/config.h ; \
734 echo "CONFIG_SYS_TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
736 if [ "$${FLASH}" = "STMICRO" ] ; then \
737 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
738 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
739 echo "CONFIG_SYS_TEXT_BASE = 0x4FE00000" > $(obj)board/freescale/m54455evb/config.tmp ; \
741 echo "#define CONFIG_SYS_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \
742 $(XECHO) "... with $${FREQ}Hz input clock"
743 @$(MKCONFIG) -n $@ -a M54455EVB m68k mcf5445x m54455evb freescale
745 #========================================================================
747 #========================================================================
749 xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
752 omap1610inn_cs0boot_config \
753 omap1610inn_cs3boot_config \
754 omap1610inn_cs_autoboot_config \
756 omap1610h2_cs0boot_config \
757 omap1610h2_cs3boot_config \
758 omap1610h2_cs_autoboot_config: unconfig
759 @mkdir -p $(obj)include
760 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
761 echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
762 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
763 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
765 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
767 @$(MKCONFIG) -n $@ -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap
770 omap730p2_cs0boot_config \
771 omap730p2_cs3boot_config : unconfig
772 @mkdir -p $(obj)include
773 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
774 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
776 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
778 @$(MKCONFIG) -n $@ -a omap730p2 arm arm926ejs omap730p2 ti omap
782 spear320_config : unconfig
783 @$(MKCONFIG) -n $@ -t $@ spear3xx arm arm926ejs $(@:_config=) spear spear
785 spear600_config : unconfig
786 @$(MKCONFIG) -n $@ -t $@ spear6xx arm arm926ejs $(@:_config=) spear spear
788 SX1_stdout_serial_config \
790 @mkdir -p $(obj)include
791 @if [ "$(findstring _stdout_serial_, $@)" ] ; then \
792 echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
794 echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
796 @$(MKCONFIG) -n $@ SX1 arm arm925t sx1
798 #########################################################################
800 #########################################################################
803 scpu_config: unconfig
804 @mkdir -p $(obj)include
805 @if [ "$(findstring scpu_,$@)" ] ; then \
806 echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \
808 @$(MKCONFIG) -n $@ -a pdnb3 arm ixp pdnb3 prodrive
810 #########################################################################
812 #########################################################################
814 apollon_config : unconfig
815 @mkdir -p $(obj)include
816 @echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h
817 @echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk
818 @$(MKCONFIG) $@ arm arm1136 apollon - omap24xx
820 #########################################################################
822 #########################################################################
823 smdk6400_noUSB_config \
824 smdk6400_config : unconfig
825 @mkdir -p $(obj)include $(obj)board/samsung/smdk6400
826 @mkdir -p $(obj)nand_spl/board/samsung/smdk6400
827 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
828 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
829 @if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \
830 echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
832 echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
834 @$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx
835 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
837 #########################################################################
838 #########################################################################
841 @rm -f $(obj)examples/standalone/82559_eeprom \
842 $(obj)examples/standalone/atmel_df_pow2 \
843 $(obj)examples/standalone/eepro100_eeprom \
844 $(obj)examples/standalone/hello_world \
845 $(obj)examples/standalone/interrupt \
846 $(obj)examples/standalone/mem_to_mem_idma2intr \
847 $(obj)examples/standalone/sched \
848 $(obj)examples/standalone/smc911{11,x}_eeprom \
849 $(obj)examples/standalone/test_burst \
850 $(obj)examples/standalone/timer
851 @rm -f $(obj)examples/api/demo{,.bin}
852 @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
853 $(obj)tools/env/{fw_printenv,fw_setenv} \
855 $(obj)tools/gdb/{astest,gdbcont,gdbsend} \
856 $(obj)tools/gen_eth_addr $(obj)tools/img2srec \
857 $(obj)tools/mkimage $(obj)tools/mpc86x_clk \
858 $(obj)tools/ncb $(obj)tools/ubsha1
859 @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \
860 $(obj)board/matrix_vision/*/bootscript.img \
861 $(obj)board/voiceblue/eeprom \
863 $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \
864 $(obj)arch/blackfin/cpu/init.{lds,elf}
865 @rm -f $(obj)include/bmp_logo.h
866 @rm -f $(obj)lib/asm-offsets.s
867 @rm -f $(obj)include/generated/asm-offsets.h
868 @rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
869 @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map,System.map}
870 @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map}
871 @rm -f $(obj)mmc_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,u-boot-spl.bin,u-boot-mmc-spl.bin}
872 @rm -f $(ONENAND_BIN)
873 @rm -f $(obj)onenand_ipl/u-boot.lds
874 @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.lds,u-boot-spl.map}
876 @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
877 @find $(OBJTREE) -type f \
878 \( -name 'core' -o -name '*.bak' -o -name '*~' \
879 -o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \
883 @find $(OBJTREE) -type f \( -name '*.depend*' \
884 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
887 @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
888 $(obj)cscope.* $(obj)*.*~
889 @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y)
890 @rm -f $(obj)u-boot.kwb
891 @rm -f $(obj)u-boot.imx
892 @rm -f $(obj)u-boot.ubl
893 @rm -f $(obj)u-boot.dtb
894 @rm -f $(obj)tools/{env/crc32.c,inca-swap-bytes}
895 @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
896 @rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
897 @rm -fr $(obj)include/generated
898 @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
899 @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f
900 @[ ! -d $(obj)mmc_spl ] || find $(obj)mmc_spl -name "*" -type l -print | xargs rm -f
901 @rm -f $(obj)dts/*.tmp
904 distclean: clobber unconfig
905 ifneq ($(OBJTREE),$(SRCTREE))
910 F=`basename $(TOPDIR)` ; cd .. ; \
911 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
913 #########################################################################