1# 2# (C) Copyright 2000-2011 3# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4# 5# See file CREDITS for list of people who contributed to this 6# project. 7# 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. 12# 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. 17# 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, 21# MA 02111-1307 USA 22# 23 24VERSION = 2011 25PATCHLEVEL = 09 26SUBLEVEL = 27EXTRAVERSION = 28ifneq "$(SUBLEVEL)" "" 29U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) 30else 31U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION) 32endif 33TIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h 34VERSION_FILE = $(obj)include/generated/version_autogenerated.h 35 36HOSTARCH := $(shell uname -m | \ 37 sed -e s/i.86/x86/ \ 38 -e s/sun4u/sparc64/ \ 39 -e s/arm.*/arm/ \ 40 -e s/sa110/arm/ \ 41 -e s/ppc64/powerpc/ \ 42 -e s/ppc/powerpc/ \ 43 -e s/macppc/powerpc/\ 44 -e s/sh.*/sh/) 45 46HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \ 47 sed -e 's/\(cygwin\).*/cygwin/') 48 49# Set shell to bash if possible, otherwise fall back to sh 50SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ 51 else if [ -x /bin/bash ]; then echo /bin/bash; \ 52 else echo sh; fi; fi) 53 54export HOSTARCH HOSTOS SHELL 55 56# Deal with colliding definitions from tcsh etc. 57VENDOR= 58 59######################################################################### 60# Allow for silent builds 61ifeq (,$(findstring s,$(MAKEFLAGS))) 62XECHO = echo 63else 64XECHO = : 65endif 66 67######################################################################### 68# 69# U-boot build supports producing a object files to the separate external 70# directory. Two use cases are supported: 71# 72# 1) Add O= to the make command line 73# 'make O=/tmp/build all' 74# 75# 2) Set environement variable BUILD_DIR to point to the desired location 76# 'export BUILD_DIR=/tmp/build' 77# 'make' 78# 79# The second approach can also be used with a MAKEALL script 80# 'export BUILD_DIR=/tmp/build' 81# './MAKEALL' 82# 83# Command line 'O=' setting overrides BUILD_DIR environent variable. 84# 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. 87# 88 89ifdef O 90ifeq ("$(origin O)", "command line") 91BUILD_DIR := $(O) 92endif 93endif 94 95ifneq ($(BUILD_DIR),) 96saved-output := $(BUILD_DIR) 97 98# Attempt to create a output directory. 99$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}) 100 101# Verify if it was successful. 102BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd) 103$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist)) 104endif # ifneq ($(BUILD_DIR),) 105 106OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR)) 107SPLTREE := $(OBJTREE)/spl 108SRCTREE := $(CURDIR) 109TOPDIR := $(SRCTREE) 110LNDIR := $(OBJTREE) 111export TOPDIR SRCTREE OBJTREE SPLTREE 112 113MKCONFIG := $(SRCTREE)/mkconfig 114export MKCONFIG 115 116ifneq ($(OBJTREE),$(SRCTREE)) 117REMOTE_BUILD := 1 118export REMOTE_BUILD 119endif 120 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. 124ifneq ($(OBJTREE),$(SRCTREE)) 125obj := $(OBJTREE)/ 126src := $(SRCTREE)/ 127else 128obj := 129src := 130endif 131export obj src 132 133# Make sure CDPATH settings don't interfere 134unexport CDPATH 135 136######################################################################### 137 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. 142SUBDIR_TOOLS = tools 143SUBDIR_EXAMPLES = examples/standalone examples/api 144SUBDIRS = $(SUBDIR_TOOLS) 145 146.PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE) 147 148ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk)) 149 150# Include autoconf.mk before config.mk so that the config options are available 151# to all top level build files. We need the dummy all: target to prevent the 152# dependency target in autoconf.mk.dep from being the default. 153all: 154sinclude $(obj)include/autoconf.mk.dep 155sinclude $(obj)include/autoconf.mk 156 157ifndef CONFIG_SANDBOX 158SUBDIRS += $(SUBDIR_EXAMPLES) 159endif 160 161# load ARCH, BOARD, and CPU configuration 162include $(obj)include/config.mk 163export ARCH CPU BOARD VENDOR SOC 164 165# set default to nothing for native builds 166ifeq ($(HOSTARCH),$(ARCH)) 167CROSS_COMPILE ?= 168endif 169 170# load other configuration 171include $(TOPDIR)/config.mk 172 173# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use 174# that (or fail if absent). Otherwise, search for a linker script in a 175# standard location. 176 177ifndef LDSCRIPT 178 #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug 179 ifdef CONFIG_SYS_LDSCRIPT 180 # need to strip off double quotes 181 LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT)) 182 endif 183endif 184 185ifndef LDSCRIPT 186 ifeq ($(CONFIG_NAND_U_BOOT),y) 187 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds 188 ifeq ($(wildcard $(LDSCRIPT)),) 189 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds 190 endif 191 endif 192 ifeq ($(wildcard $(LDSCRIPT)),) 193 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds 194 endif 195 ifeq ($(wildcard $(LDSCRIPT)),) 196 LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds 197 endif 198 ifeq ($(wildcard $(LDSCRIPT)),) 199$(error could not find linker script) 200 endif 201endif 202 203######################################################################### 204# U-Boot objects....order is important (i.e. start must be first) 205 206OBJS = $(CPUDIR)/start.o 207ifeq ($(CPU),x86) 208OBJS += $(CPUDIR)/start16.o 209OBJS += $(CPUDIR)/resetvec.o 210endif 211ifeq ($(CPU),ppc4xx) 212OBJS += $(CPUDIR)/resetvec.o 213endif 214ifeq ($(CPU),mpc85xx) 215OBJS += $(CPUDIR)/resetvec.o 216endif 217 218OBJS := $(addprefix $(obj),$(OBJS)) 219 220LIBS = lib/libgeneric.o 221LIBS += lib/lzma/liblzma.o 222LIBS += lib/lzo/liblzo.o 223LIBS += lib/zlib/libz.o 224LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \ 225 "board/$(VENDOR)/common/lib$(VENDOR).o"; fi) 226LIBS += $(CPUDIR)/lib$(CPU).o 227ifdef SOC 228LIBS += $(CPUDIR)/$(SOC)/lib$(SOC).o 229endif 230ifeq ($(CPU),ixp) 231LIBS += arch/arm/cpu/ixp/npe/libnpe.o 232endif 233ifeq ($(CONFIG_OF_EMBED),y) 234LIBS += dts/libdts.o 235endif 236LIBS += arch/$(ARCH)/lib/lib$(ARCH).o 237LIBS += fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o fs/jffs2/libjffs2.o \ 238 fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o fs/yaffs2/libyaffs2.o \ 239 fs/ubifs/libubifs.o 240LIBS += net/libnet.o 241LIBS += disk/libdisk.o 242LIBS += drivers/bios_emulator/libatibiosemu.o 243LIBS += drivers/block/libblock.o 244LIBS += drivers/dma/libdma.o 245LIBS += drivers/fpga/libfpga.o 246LIBS += drivers/gpio/libgpio.o 247LIBS += drivers/hwmon/libhwmon.o 248LIBS += drivers/i2c/libi2c.o 249LIBS += drivers/input/libinput.o 250LIBS += drivers/misc/libmisc.o 251LIBS += drivers/mmc/libmmc.o 252LIBS += drivers/mtd/libmtd.o 253LIBS += drivers/mtd/nand/libnand.o 254LIBS += drivers/mtd/onenand/libonenand.o 255LIBS += drivers/mtd/ubi/libubi.o 256LIBS += drivers/mtd/spi/libspi_flash.o 257LIBS += drivers/net/libnet.o 258LIBS += drivers/net/phy/libphy.o 259LIBS += drivers/pci/libpci.o 260LIBS += drivers/pcmcia/libpcmcia.o 261LIBS += drivers/power/libpower.o 262LIBS += drivers/spi/libspi.o 263ifeq ($(CPU),mpc83xx) 264LIBS += drivers/qe/libqe.o 265LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o 266LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o 267endif 268ifeq ($(CPU),mpc85xx) 269LIBS += drivers/qe/libqe.o 270LIBS += drivers/net/fm/libfm.o 271LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o 272LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o 273endif 274ifeq ($(CPU),mpc86xx) 275LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o 276LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o 277endif 278LIBS += drivers/rtc/librtc.o 279LIBS += drivers/serial/libserial.o 280LIBS += drivers/twserial/libtws.o 281LIBS += drivers/usb/eth/libusb_eth.o 282LIBS += drivers/usb/gadget/libusb_gadget.o 283LIBS += drivers/usb/host/libusb_host.o 284LIBS += drivers/usb/musb/libusb_musb.o 285LIBS += drivers/usb/phy/libusb_phy.o 286LIBS += drivers/video/libvideo.o 287LIBS += drivers/watchdog/libwatchdog.o 288LIBS += common/libcommon.o 289LIBS += lib/libfdt/libfdt.o 290LIBS += api/libapi.o 291LIBS += post/libpost.o 292 293ifeq ($(SOC),am33xx) 294LIBS += $(CPUDIR)/omap-common/libomap-common.o 295endif 296ifeq ($(SOC),omap3) 297LIBS += $(CPUDIR)/omap-common/libomap-common.o 298endif 299ifeq ($(SOC),omap4) 300LIBS += $(CPUDIR)/omap-common/libomap-common.o 301endif 302 303ifeq ($(SOC),s5pc1xx) 304LIBS += $(CPUDIR)/s5p-common/libs5p-common.o 305endif 306ifeq ($(SOC),s5pc2xx) 307LIBS += $(CPUDIR)/s5p-common/libs5p-common.o 308endif 309 310LIBS := $(addprefix $(obj),$(sort $(LIBS))) 311.PHONY : $(LIBS) 312 313LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o 314LIBBOARD := $(addprefix $(obj),$(LIBBOARD)) 315 316# Add GCC lib 317ifdef USE_PRIVATE_LIBGCC 318ifeq ("$(USE_PRIVATE_LIBGCC)", "yes") 319PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o 320else 321PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc 322endif 323else 324PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc 325endif 326PLATFORM_LIBS += $(PLATFORM_LIBGCC) 327export PLATFORM_LIBS 328 329# Special flags for CPP when processing the linker script. 330# Pass the version down so we can handle backwards compatibility 331# on the fly. 332LDPPFLAGS += \ 333 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ 334 $(shell $(LD) --version | \ 335 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') 336 337__OBJS := $(subst $(obj),,$(OBJS)) 338__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD)) 339 340######################################################################### 341######################################################################### 342 343ifneq ($(CONFIG_BOARD_SIZE_LIMIT),) 344BOARD_SIZE_CHECK = \ 345 @actual=`wc -c $@ | awk '{print $$1}'`; \ 346 limit=$(CONFIG_BOARD_SIZE_LIMIT); \ 347 if test $$actual -gt $$limit; then \ 348 echo "$@ exceeds file size limit:"; \ 349 echo " limit: $$limit bytes"; \ 350 echo " actual: $$actual bytes"; \ 351 echo " excess: $$((actual - limit)) bytes"; \ 352 exit 1; \ 353 fi 354else 355BOARD_SIZE_CHECK = 356endif 357 358# Always append ALL so that arch config.mk's can add custom ones 359ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map 360 361ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin 362ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin 363ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin 364ALL-$(CONFIG_MMC_U_BOOT) += $(obj)mmc_spl/u-boot-mmc-spl.bin 365ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin 366ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin 367 368all: $(ALL-y) $(SUBDIR_EXAMPLES) 369 370$(obj)u-boot.dtb: $(obj)u-boot 371 $(MAKE) -C dts binary 372 mv $(obj)dts/dt.dtb $@ 373 374$(obj)u-boot-dtb.bin: $(obj)u-boot.bin $(obj)u-boot.dtb 375 cat $^ >$@ 376 377$(obj)u-boot.hex: $(obj)u-boot 378 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ 379 380$(obj)u-boot.srec: $(obj)u-boot 381 $(OBJCOPY) -O srec $< $@ 382 383$(obj)u-boot.bin: $(obj)u-boot 384 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ 385 $(BOARD_SIZE_CHECK) 386 387$(obj)u-boot.ldr: $(obj)u-boot 388 $(CREATE_LDR_ENV) 389 $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS) 390 $(BOARD_SIZE_CHECK) 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 398$(obj)u-boot.img: $(obj)u-boot.bin 399 $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \ 400 -O u-boot -a $(CONFIG_SYS_TEXT_BASE) -e 0 \ 401 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \ 402 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ 403 -d $< $@ 404 405$(obj)u-boot.imx: $(obj)u-boot.bin 406 $(obj)tools/mkimage -n $(CONFIG_IMX_CONFIG) -T imximage \ 407 -e $(CONFIG_SYS_TEXT_BASE) -d $< $@ 408 409$(obj)u-boot.kwb: $(obj)u-boot.bin 410 $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \ 411 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@ 412 413$(obj)u-boot.sha1: $(obj)u-boot.bin 414 $(obj)tools/ubsha1 $(obj)u-boot.bin 415 416$(obj)u-boot.dis: $(obj)u-boot 417 $(OBJDUMP) -d $< > $@ 418 419$(obj)u-boot.ubl: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin 420 $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin 421 cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $(obj)u-boot-ubl.bin 422 $(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \ 423 -e $(CONFIG_SYS_TEXT_BASE) -d $(obj)u-boot-ubl.bin $(obj)u-boot.ubl 424 rm $(obj)u-boot-ubl.bin 425 rm $(obj)spl/u-boot-spl-pad.bin 426 427ifeq ($(CONFIG_SANDBOX),y) 428GEN_UBOOT = \ 429 cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \ 430 -Wl,--start-group $(__LIBS) -Wl,--end-group \ 431 $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot 432else 433GEN_UBOOT = \ 434 UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \ 435 sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\ 436 cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__OBJS) \ 437 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \ 438 -Map u-boot.map -o u-boot 439endif 440 441$(obj)u-boot: depend \ 442 $(SUBDIR_TOOLS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds 443 $(GEN_UBOOT) 444ifeq ($(CONFIG_KALLSYMS),y) 445 smap=`$(call SYSTEM_MAP,u-boot) | \ 446 awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \ 447 $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \ 448 -c common/system_map.c -o $(obj)common/system_map.o 449 $(GEN_UBOOT) $(obj)common/system_map.o 450endif 451 452$(OBJS): depend 453 $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@)) 454 455$(LIBS): depend $(SUBDIR_TOOLS) 456 $(MAKE) -C $(dir $(subst $(obj),,$@)) 457 458$(LIBBOARD): depend $(LIBS) 459 $(MAKE) -C $(dir $(subst $(obj),,$@)) 460 461$(SUBDIRS): depend 462 $(MAKE) -C $@ all 463 464$(SUBDIR_EXAMPLES): $(obj)u-boot 465 466$(LDSCRIPT): depend 467 $(MAKE) -C $(dir $@) $(notdir $@) 468 469$(obj)u-boot.lds: $(LDSCRIPT) 470 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@ 471 472nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend 473 $(MAKE) -C nand_spl/board/$(BOARDDIR) all 474 475$(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin 476 cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin 477 478onenand_ipl: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk 479 $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all 480 481$(obj)u-boot-onenand.bin: onenand_ipl $(obj)u-boot.bin 482 cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin 483 484mmc_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend 485 $(MAKE) -C mmc_spl/board/$(BOARDDIR) all 486 487$(obj)mmc_spl/u-boot-mmc-spl.bin: mmc_spl 488 489$(obj)spl/u-boot-spl.bin: depend 490 $(MAKE) -C spl all 491 492updater: 493 $(MAKE) -C tools/updater all 494 495# Explicitly make _depend in subdirs containing multiple targets to prevent 496# parallel sub-makes creating .depend files simultaneously. 497depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \ 498 $(obj)include/autoconf.mk \ 499 $(obj)include/generated/generic-asm-offsets.h \ 500 $(obj)include/generated/asm-offsets.h 501 for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \ 502 $(MAKE) -C $$dir _depend ; done 503 504TAG_SUBDIRS = $(SUBDIRS) 505TAG_SUBDIRS += $(dir $(__LIBS)) 506TAG_SUBDIRS += include 507 508FIND := find 509FINDFLAGS := -L 510 511tags ctags: 512 ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ 513 -name '*.[chS]' -print` 514 515etags: 516 etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \ 517 -name '*.[chS]' -print` 518cscope: 519 $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \ 520 cscope.files 521 cscope -b -q -k 522 523SYSTEM_MAP = \ 524 $(NM) $1 | \ 525 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ 526 LC_ALL=C sort 527$(obj)System.map: $(obj)u-boot 528 @$(call SYSTEM_MAP,$<) > $(obj)System.map 529 530# 531# Auto-generate the autoconf.mk file (which is included by all makefiles) 532# 533# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep. 534# the dep file is only include in this top level makefile to determine when 535# to regenerate the autoconf.mk file. 536$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h 537 @$(XECHO) Generating $@ ; \ 538 set -e ; \ 539 : Generate the dependancies ; \ 540 $(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \ 541 -MQ $(obj)include/autoconf.mk include/common.h > $@ 542 543$(obj)include/autoconf.mk: $(obj)include/config.h 544 @$(XECHO) Generating $@ ; \ 545 set -e ; \ 546 : Extract the config macros ; \ 547 $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \ 548 sed -n -f tools/scripts/define2mk.sed > $@.tmp && \ 549 mv $@.tmp $@ 550 551$(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \ 552 $(obj)lib/asm-offsets.s 553 @$(XECHO) Generating $@ 554 tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@ 555 556$(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \ 557 $(src)lib/asm-offsets.c 558 @mkdir -p $(obj)lib 559 $(CC) -DDO_DEPS_ONLY \ 560 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ 561 -o $@ $(src)lib/asm-offsets.c -c -S 562 563$(obj)include/generated/asm-offsets.h: $(obj)include/autoconf.mk.dep \ 564 $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s 565 @echo Generating $@ 566 tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@ 567 568$(obj)$(CPUDIR)/$(SOC)/asm-offsets.s: $(obj)include/autoconf.mk.dep 569 @mkdir -p $(obj)$(CPUDIR)/$(SOC) 570 if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \ 571 $(CC) -DDO_DEPS_ONLY \ 572 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ 573 -o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \ 574 else \ 575 touch $@; \ 576 fi 577 578######################################################################### 579else # !config.mk 580all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \ 581$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \ 582$(filter-out tools,$(SUBDIRS)) \ 583updater depend dep tags ctags etags cscope $(obj)System.map: 584 @echo "System not configured - see README" >&2 585 @ exit 1 586 587tools: $(VERSION_FILE) $(TIMESTAMP_FILE) 588 $(MAKE) -C $@ all 589endif # config.mk 590 591$(VERSION_FILE): 592 @mkdir -p $(dir $(VERSION_FILE)) 593 @( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \ 594 printf '#define PLAIN_VERSION "%s%s"\n' \ 595 "$(U_BOOT_VERSION)" "$${localvers}" ; \ 596 printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \ 597 "$(U_BOOT_VERSION)" "$${localvers}" ; \ 598 ) > $@.tmp 599 @( printf '#define CC_VERSION_STRING "%s"\n' \ 600 '$(shell $(CC) --version | head -n 1)' )>> $@.tmp 601 @( printf '#define LD_VERSION_STRING "%s"\n' \ 602 '$(shell $(LD) -v | head -n 1)' )>> $@.tmp 603 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ 604 605$(TIMESTAMP_FILE): 606 @mkdir -p $(dir $(TIMESTAMP_FILE)) 607 @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp 608 @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp 609 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@ 610 611easylogo env gdb: 612 $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION} 613gdbtools: gdb 614 615tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE) 616 $(MAKE) -C tools HOST_TOOLS_ALL=y 617 618.PHONY : CHANGELOG 619CHANGELOG: 620 git log --no-merges U-Boot-1_1_5.. | \ 621 unexpand -a | sed -e 's/\s\s*$$//' > $@ 622 623include/license.h: tools/bin2header COPYING 624 cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h 625######################################################################### 626 627unconfig: 628 @rm -f $(obj)include/config.h $(obj)include/config.mk \ 629 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \ 630 $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep 631 632%_config:: unconfig 633 @$(MKCONFIG) -A $(@:_config=) 634 635sinclude $(obj).boards.depend 636$(obj).boards.depend: boards.cfg 637 awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@ 638 639# 640# Functions to generate common board directory names 641# 642lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/') 643ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/') 644 645#======================================================================== 646# ARM 647#======================================================================== 648 649xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1)))) 650 651omap1610inn_config \ 652omap1610inn_cs0boot_config \ 653omap1610inn_cs3boot_config \ 654omap1610inn_cs_autoboot_config \ 655omap1610h2_config \ 656omap1610h2_cs0boot_config \ 657omap1610h2_cs3boot_config \ 658omap1610h2_cs_autoboot_config: unconfig 659 @mkdir -p $(obj)include 660 @if [ "$(findstring _cs0boot_, $@)" ] ; then \ 661 echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \ 662 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \ 663 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \ 664 else \ 665 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ 666 fi; 667 @$(MKCONFIG) -n $@ -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap 668 669omap730p2_config \ 670omap730p2_cs0boot_config \ 671omap730p2_cs3boot_config : unconfig 672 @mkdir -p $(obj)include 673 @if [ "$(findstring _cs0boot_, $@)" ] ; then \ 674 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \ 675 else \ 676 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \ 677 fi; 678 @$(MKCONFIG) -n $@ -a omap730p2 arm arm926ejs omap730p2 ti omap 679 680spear300_config \ 681spear310_config \ 682spear320_config : unconfig 683 @$(MKCONFIG) -n $@ -t $@ spear3xx arm arm926ejs $(@:_config=) spear spear 684 685spear600_config : unconfig 686 @$(MKCONFIG) -n $@ -t $@ spear6xx arm arm926ejs $(@:_config=) spear spear 687 688SX1_stdout_serial_config \ 689SX1_config: unconfig 690 @mkdir -p $(obj)include 691 @if [ "$(findstring _stdout_serial_, $@)" ] ; then \ 692 echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \ 693 else \ 694 echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \ 695 fi; 696 @$(MKCONFIG) -n $@ SX1 arm arm925t sx1 697 698######################################################################### 699## XScale Systems 700######################################################################### 701 702pdnb3_config \ 703scpu_config: unconfig 704 @mkdir -p $(obj)include 705 @if [ "$(findstring scpu_,$@)" ] ; then \ 706 echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \ 707 fi 708 @$(MKCONFIG) -n $@ -a pdnb3 arm ixp pdnb3 prodrive 709 710######################################################################### 711## ARM1136 Systems 712######################################################################### 713 714apollon_config : unconfig 715 @mkdir -p $(obj)include 716 @echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h 717 @echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk 718 @$(MKCONFIG) $@ arm arm1136 apollon - omap24xx 719 720######################################################################### 721## ARM1176 Systems 722######################################################################### 723smdk6400_noUSB_config \ 724smdk6400_config : unconfig 725 @mkdir -p $(obj)include $(obj)board/samsung/smdk6400 726 @mkdir -p $(obj)nand_spl/board/samsung/smdk6400 727 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h 728 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk 729 @if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \ 730 echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\ 731 else \ 732 echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\ 733 fi 734 @$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx 735 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk 736 737######################################################################### 738######################################################################### 739 740clean: 741 @rm -f $(obj)examples/standalone/82559_eeprom \ 742 $(obj)examples/standalone/atmel_df_pow2 \ 743 $(obj)examples/standalone/eepro100_eeprom \ 744 $(obj)examples/standalone/hello_world \ 745 $(obj)examples/standalone/interrupt \ 746 $(obj)examples/standalone/mem_to_mem_idma2intr \ 747 $(obj)examples/standalone/sched \ 748 $(obj)examples/standalone/smc911{11,x}_eeprom \ 749 $(obj)examples/standalone/test_burst \ 750 $(obj)examples/standalone/timer 751 @rm -f $(obj)examples/api/demo{,.bin} 752 @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \ 753 $(obj)tools/env/{fw_printenv,fw_setenv} \ 754 $(obj)tools/envcrc \ 755 $(obj)tools/gdb/{astest,gdbcont,gdbsend} \ 756 $(obj)tools/gen_eth_addr $(obj)tools/img2srec \ 757 $(obj)tools/mkimage $(obj)tools/mpc86x_clk \ 758 $(obj)tools/ncb $(obj)tools/ubsha1 759 @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \ 760 $(obj)board/matrix_vision/*/bootscript.img \ 761 $(obj)board/voiceblue/eeprom \ 762 $(obj)u-boot.lds \ 763 $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \ 764 $(obj)arch/blackfin/cpu/init.{lds,elf} 765 @rm -f $(obj)include/bmp_logo.h 766 @rm -f $(obj)lib/asm-offsets.s 767 @rm -f $(obj)include/generated/asm-offsets.h 768 @rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s 769 @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map,System.map} 770 @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map} 771 @rm -f $(obj)mmc_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,u-boot-spl.bin,u-boot-mmc-spl.bin} 772 @rm -f $(ONENAND_BIN) 773 @rm -f $(obj)onenand_ipl/u-boot.lds 774 @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.lds,u-boot-spl.map} 775 @rm -f $(obj)MLO 776 @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE) 777 @find $(OBJTREE) -type f \ 778 \( -name 'core' -o -name '*.bak' -o -name '*~' \ 779 -o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \ 780 | xargs rm -f 781 782clobber: clean 783 @find $(OBJTREE) -type f \( -name '*.depend*' \ 784 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \ 785 -print0 \ 786 | xargs -0 rm -f 787 @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \ 788 $(obj)cscope.* $(obj)*.*~ 789 @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y) 790 @rm -f $(obj)u-boot.kwb 791 @rm -f $(obj)u-boot.imx 792 @rm -f $(obj)u-boot.ubl 793 @rm -f $(obj)u-boot.dtb 794 @rm -f $(obj)tools/{env/crc32.c,inca-swap-bytes} 795 @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c 796 @rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm 797 @rm -fr $(obj)include/generated 798 @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f 799 @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f 800 @[ ! -d $(obj)mmc_spl ] || find $(obj)mmc_spl -name "*" -type l -print | xargs rm -f 801 @rm -f $(obj)dts/*.tmp 802 803mrproper \ 804distclean: clobber unconfig 805ifneq ($(OBJTREE),$(SRCTREE)) 806 rm -rf $(obj)* 807endif 808 809backup: 810 F=`basename $(TOPDIR)` ; cd .. ; \ 811 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F 812 813######################################################################### 814