2 # (C) Copyright 2000-2010
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/timestamp_autogenerated.h
34 VERSION_FILE = $(obj)include/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))
110 export TOPDIR SRCTREE OBJTREE
112 MKCONFIG := $(SRCTREE)/mkconfig
115 ifneq ($(OBJTREE),$(SRCTREE))
120 # $(obj) and (src) are defined in config.mk but here in main Makefile
121 # we also need them before config.mk is included which is the case for
122 # some targets like unconfig, clean, clobber, distclean, etc.
123 ifneq ($(OBJTREE),$(SRCTREE))
132 # Make sure CDPATH settings don't interfere
135 #########################################################################
137 # The "tools" are needed early, so put this first
138 # Don't include stuff already done in $(LIBS)
140 examples/standalone \
145 ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
147 # Include autoconf.mk before config.mk so that the config options are available
148 # to all top level build files. We need the dummy all: target to prevent the
149 # dependency target in autoconf.mk.dep from being the default.
151 sinclude $(obj)include/autoconf.mk.dep
152 sinclude $(obj)include/autoconf.mk
154 # load ARCH, BOARD, and CPU configuration
155 include $(obj)include/config.mk
156 export ARCH CPU BOARD VENDOR SOC
158 # set default to nothing for native builds
159 ifeq ($(HOSTARCH),$(ARCH))
163 # load other configuration
164 include $(TOPDIR)/config.mk
166 #########################################################################
167 # U-Boot objects....order is important (i.e. start must be first)
169 OBJS = $(CPUDIR)/start.o
171 OBJS += $(CPUDIR)/start16.o
172 OBJS += $(CPUDIR)/resetvec.o
175 OBJS += $(CPUDIR)/resetvec.o
177 ifeq ($(CPU),mpc85xx)
178 OBJS += $(CPUDIR)/resetvec.o
181 OBJS := $(addprefix $(obj),$(OBJS))
183 LIBS = lib/libgeneric.o
184 LIBS += lib/lzma/liblzma.o
185 LIBS += lib/lzo/liblzo.o
186 LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \
187 "board/$(VENDOR)/common/lib$(VENDOR).o"; fi)
188 ifdef CONFIG_FSL_DIU_FB
189 LIBS += board/freescale/common/libfreescale.o
191 LIBS += $(CPUDIR)/lib$(CPU).o
193 LIBS += $(CPUDIR)/$(SOC)/lib$(SOC).o
196 LIBS += arch/arm/cpu/ixp/npe/libnpe.o
198 LIBS += arch/$(ARCH)/lib/lib$(ARCH).o
199 LIBS += fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o fs/jffs2/libjffs2.o \
200 fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o fs/yaffs2/libyaffs2.o \
203 LIBS += disk/libdisk.o
204 LIBS += drivers/bios_emulator/libatibiosemu.o
205 LIBS += drivers/block/libblock.o
206 LIBS += drivers/dma/libdma.o
207 LIBS += drivers/fpga/libfpga.o
208 LIBS += drivers/gpio/libgpio.o
209 LIBS += drivers/hwmon/libhwmon.o
210 LIBS += drivers/i2c/libi2c.o
211 LIBS += drivers/input/libinput.o
212 LIBS += drivers/misc/libmisc.o
213 LIBS += drivers/mmc/libmmc.o
214 LIBS += drivers/mtd/libmtd.o
215 LIBS += drivers/mtd/nand/libnand.o
216 LIBS += drivers/mtd/onenand/libonenand.o
217 LIBS += drivers/mtd/ubi/libubi.o
218 LIBS += drivers/mtd/spi/libspi_flash.o
219 LIBS += drivers/net/libnet.o
220 LIBS += drivers/net/phy/libphy.o
221 LIBS += drivers/pci/libpci.o
222 LIBS += drivers/pcmcia/libpcmcia.o
223 LIBS += drivers/power/libpower.o
224 LIBS += drivers/spi/libspi.o
225 ifeq ($(CPU),mpc83xx)
226 LIBS += drivers/qe/libqe.o
227 LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
229 ifeq ($(CPU),mpc85xx)
230 LIBS += drivers/qe/libqe.o
231 LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
232 LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
234 ifeq ($(CPU),mpc86xx)
235 LIBS += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
236 LIBS += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
238 LIBS += drivers/rtc/librtc.o
239 LIBS += drivers/serial/libserial.o
240 LIBS += drivers/twserial/libtws.o
241 LIBS += drivers/usb/gadget/libusb_gadget.o
242 LIBS += drivers/usb/host/libusb_host.o
243 LIBS += drivers/usb/musb/libusb_musb.o
244 LIBS += drivers/usb/phy/libusb_phy.o
245 LIBS += drivers/video/libvideo.o
246 LIBS += drivers/watchdog/libwatchdog.o
247 LIBS += common/libcommon.o
248 LIBS += lib/libfdt/libfdt.o
250 LIBS += post/libpost.o
253 LIBS += $(CPUDIR)/omap-common/libomap-common.o
256 LIBS += $(CPUDIR)/omap-common/libomap-common.o
259 ifeq ($(SOC),s5pc1xx)
260 LIBS += $(CPUDIR)/s5p-common/libs5p-common.o
262 ifeq ($(SOC),s5pc2xx)
263 LIBS += $(CPUDIR)/s5p-common/libs5p-common.o
266 LIBS := $(addprefix $(obj),$(sort $(LIBS)))
267 .PHONY : $(LIBS) $(TIMESTAMP_FILE) $(VERSION_FILE)
269 LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o
270 LIBBOARD := $(addprefix $(obj),$(LIBBOARD))
273 ifdef USE_PRIVATE_LIBGCC
274 ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
275 PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
277 PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
280 PLATFORM_LIBGCC = -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
282 PLATFORM_LIBS += $(PLATFORM_LIBGCC)
285 # Special flags for CPP when processing the linker script.
286 # Pass the version down so we can handle backwards compatibility
289 -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
290 $(shell $(LD) --version | \
291 sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
293 ifeq ($(CONFIG_NAND_U_BOOT),y)
295 U_BOOT_NAND = $(obj)u-boot-nand.bin
298 ifeq ($(CONFIG_ONENAND_U_BOOT),y)
299 ONENAND_IPL = onenand_ipl
300 U_BOOT_ONENAND = $(obj)u-boot-onenand.bin
301 ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin
304 __OBJS := $(subst $(obj),,$(OBJS))
305 __LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
307 #########################################################################
308 #########################################################################
310 ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
312 @actual=`wc -c $@ | awk '{print $$1}'`; \
313 limit=$(CONFIG_BOARD_SIZE_LIMIT); \
314 if test $$actual -gt $$limit; then \
315 echo "$@ exceeds file size limit:"; \
316 echo " limit: $$limit bytes"; \
317 echo " actual: $$actual bytes"; \
318 echo " excess: $$((actual - limit)) bytes"; \
325 # Always append ALL so that arch config.mk's can add custom ones
326 ALL += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map $(U_BOOT_NAND) $(U_BOOT_ONENAND)
330 $(obj)u-boot.hex: $(obj)u-boot
331 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
333 $(obj)u-boot.srec: $(obj)u-boot
334 $(OBJCOPY) -O srec $< $@
336 $(obj)u-boot.bin: $(obj)u-boot
337 $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
340 $(obj)u-boot.ldr: $(obj)u-boot
342 $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
345 $(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
346 $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
348 $(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
349 $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
351 $(obj)u-boot.img: $(obj)u-boot.bin
352 $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
353 -a $(CONFIG_SYS_TEXT_BASE) -e 0 \
354 -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
355 sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
358 $(obj)u-boot.imx: $(obj)u-boot.bin
359 $(obj)tools/mkimage -n $(IMX_CONFIG) -T imximage \
360 -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
362 $(obj)u-boot.kwb: $(obj)u-boot.bin
363 $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
364 -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
366 $(obj)u-boot.sha1: $(obj)u-boot.bin
367 $(obj)tools/ubsha1 $(obj)u-boot.bin
369 $(obj)u-boot.dis: $(obj)u-boot
370 $(OBJDUMP) -d $< > $@
373 UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
374 sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
375 cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \
376 --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
377 -Map u-boot.map -o u-boot
378 $(obj)u-boot: depend \
379 $(SUBDIRS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
381 ifeq ($(CONFIG_KALLSYMS),y)
382 smap=`$(call SYSTEM_MAP,u-boot) | \
383 awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
384 $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
385 -c common/system_map.c -o $(obj)common/system_map.o
386 $(GEN_UBOOT) $(obj)common/system_map.o
390 $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
392 $(LIBS): depend $(SUBDIRS)
393 $(MAKE) -C $(dir $(subst $(obj),,$@))
395 $(LIBBOARD): depend $(LIBS)
396 $(MAKE) -C $(dir $(subst $(obj),,$@))
402 $(MAKE) -C $(dir $@) $(notdir $@)
404 $(obj)u-boot.lds: $(LDSCRIPT)
405 $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
407 $(NAND_SPL): $(TIMESTAMP_FILE) $(VERSION_FILE) depend
408 $(MAKE) -C nand_spl/board/$(BOARDDIR) all
410 $(U_BOOT_NAND): $(NAND_SPL) $(obj)u-boot.bin
411 cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
413 $(ONENAND_IPL): $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
414 $(MAKE) -C onenand_ipl/board/$(BOARDDIR) all
416 $(U_BOOT_ONENAND): $(ONENAND_IPL) $(obj)u-boot.bin
417 cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin
420 @( printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' "$(U_BOOT_VERSION)" \
421 '$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ) > $@.tmp
422 @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
425 @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@
426 @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@
429 $(MAKE) -C tools/updater all
431 # Explicitly make _depend in subdirs containing multiple targets to prevent
432 # parallel sub-makes creating .depend files simultaneously.
433 depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \
434 $(obj)include/autoconf.mk \
435 $(obj)include/generated/generic-asm-offsets.h
436 for dir in $(SUBDIRS) $(CPUDIR) $(dir $(LDSCRIPT)) ; do \
437 $(MAKE) -C $$dir _depend ; done
439 TAG_SUBDIRS = $(SUBDIRS)
440 TAG_SUBDIRS += $(dir $(__LIBS))
441 TAG_SUBDIRS += include
444 ctags -w -o $(obj)ctags `find $(TAG_SUBDIRS) \
445 -name '*.[chS]' -print`
448 etags -a -o $(obj)etags `find $(TAG_SUBDIRS) \
449 -name '*.[chS]' -print`
451 find $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files
456 grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
458 $(obj)System.map: $(obj)u-boot
459 @$(call SYSTEM_MAP,$<) > $(obj)System.map
462 # Auto-generate the autoconf.mk file (which is included by all makefiles)
464 # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
465 # the dep file is only include in this top level makefile to determine when
466 # to regenerate the autoconf.mk file.
467 $(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
468 @$(XECHO) Generating $@ ; \
470 : Generate the dependancies ; \
471 $(CC) -x c -DDO_DEPS_ONLY -M $(HOSTCFLAGS) $(CPPFLAGS) \
472 -MQ $(obj)include/autoconf.mk include/common.h > $@
474 $(obj)include/autoconf.mk: $(obj)include/config.h
475 @$(XECHO) Generating $@ ; \
477 : Extract the config macros ; \
478 $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
479 sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
482 $(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \
483 $(obj)lib/asm-offsets.s
484 @$(XECHO) Generating $@
485 tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
487 $(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \
488 $(src)lib/asm-offsets.c
490 $(CC) -DDO_DEPS_ONLY \
491 $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
492 -o $@ $(src)lib/asm-offsets.c -c -S
494 #########################################################################
496 all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
497 $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
498 $(filter-out tools,$(SUBDIRS)) $(TIMESTAMP_FILE) $(VERSION_FILE) \
499 updater depend dep tags ctags etags cscope $(obj)System.map:
500 @echo "System not configured - see README" >&2
508 $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
511 tools-all: easylogo env gdb
512 $(MAKE) -C tools HOST_TOOLS_ALL=y
516 git log --no-merges U-Boot-1_1_5.. | \
517 unexpand -a | sed -e 's/\s\s*$$//' > $@
519 include/license.h: tools/bin2header COPYING
520 cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
521 #########################################################################
524 @rm -f $(obj)include/config.h $(obj)include/config.mk \
525 $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
526 $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
529 @$(MKCONFIG) -A $(@:_config=)
531 sinclude .boards.depend
532 .boards.depend: boards.cfg
533 awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@
536 # Functions to generate common board directory names
538 lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/')
539 ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')
541 #########################################################################
543 #########################################################################
545 astro_mcf5373l_config \
546 astro_mcf5373l_RAM_config : unconfig
547 @$(MKCONFIG) -n $@ -t $@ astro_mcf5373l m68k mcf532x mcf5373l astro
550 M52277EVB_spansion_config \
551 M52277EVB_stmicro_config : unconfig
553 M52277EVB_config) FLASH=SPANSION;; \
554 M52277EVB_spansion_config) FLASH=SPANSION;; \
555 M52277EVB_stmicro_config) FLASH=STMICRO;; \
557 if [ "$${FLASH}" = "SPANSION" ] ; then \
558 echo "#define CONFIG_SYS_SPANSION_BOOT" >> $(obj)include/config.h ; \
559 echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m52277evb/config.tmp ; \
560 cp $(obj)board/freescale/m52277evb/u-boot.spa $(obj)board/freescale/m52277evb/u-boot.lds ; \
562 if [ "$${FLASH}" = "STMICRO" ] ; then \
563 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
564 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
565 echo "CONFIG_SYS_TEXT_BASE = 0x43E00000" > $(obj)board/freescale/m52277evb/config.tmp ; \
566 cp $(obj)board/freescale/m52277evb/u-boot.stm $(obj)board/freescale/m52277evb/u-boot.lds ; \
568 @$(MKCONFIG) -n $@ -a M52277EVB m68k mcf5227x m52277evb freescale
571 M5235EVB_Flash16_config \
572 M5235EVB_Flash32_config: unconfig
574 M5235EVB_config) FLASH=16;; \
575 M5235EVB_Flash16_config) FLASH=16;; \
576 M5235EVB_Flash32_config) FLASH=32;; \
578 if [ "$${FLASH}" != "16" ] ; then \
579 echo "#define NORFLASH_PS32BIT 1" >> $(obj)include/config.h ; \
580 echo "CONFIG_SYS_TEXT_BASE = 0xFFC00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
581 cp $(obj)board/freescale/m5235evb/u-boot.32 $(obj)board/freescale/m5235evb/u-boot.lds ; \
583 echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000" > $(obj)board/freescale/m5235evb/config.tmp ; \
584 cp $(obj)board/freescale/m5235evb/u-boot.16 $(obj)board/freescale/m5235evb/u-boot.lds ; \
586 @$(MKCONFIG) -n $@ -a M5235EVB m68k mcf523x m5235evb freescale
588 cobra5272_config : unconfig
589 @$(MKCONFIG) $@ m68k mcf52x2 cobra5272
591 EB+MCF-EV123_config : unconfig
592 @mkdir -p $(obj)include
593 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
594 @echo "CONFIG_SYS_TEXT_BASE = 0xFFE00000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
595 @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
597 EB+MCF-EV123_internal_config : unconfig
598 @mkdir -p $(obj)include
599 @mkdir -p $(obj)board/BuS/EB+MCF-EV123
600 @echo "CONFIG_SYS_TEXT_BASE = 0xF0000000"|tee $(obj)board/BuS/EB+MCF-EV123/textbase.mk
601 @$(MKCONFIG) -n $@ EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
604 M5329BFEE_config : unconfig
606 M5329AFEE_config) NAND=0;; \
607 M5329BFEE_config) NAND=16;; \
609 if [ "$${NAND}" != "0" ] ; then \
610 echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
612 @$(MKCONFIG) -n $@ -a M5329EVB m68k mcf532x m5329evb freescale
614 M5373EVB_config : unconfig
616 M5373EVB_config) NAND=16;; \
618 if [ "$${NAND}" != "0" ] ; then \
619 echo "#define NANDFLASH_SIZE $${NAND}" > $(obj)include/config.h ; \
621 @$(MKCONFIG) -a M5373EVB m68k mcf532x m5373evb freescale
624 M54451EVB_stmicro_config : unconfig
626 M54451EVB_config) FLASH=NOR;; \
627 M54451EVB_stmicro_config) FLASH=STMICRO;; \
629 if [ "$${FLASH}" = "NOR" ] ; then \
630 echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54451evb/config.tmp ; \
631 cp $(obj)board/freescale/m54451evb/u-boot.spa $(obj)board/freescale/m54451evb/u-boot.lds ; \
633 if [ "$${FLASH}" = "STMICRO" ] ; then \
634 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
635 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
636 echo "CONFIG_SYS_TEXT_BASE = 0x47E00000" > $(obj)board/freescale/m54451evb/config.tmp ; \
637 cp $(obj)board/freescale/m54451evb/u-boot.stm $(obj)board/freescale/m54451evb/u-boot.lds ; \
639 echo "#define CONFIG_SYS_INPUT_CLKSRC 24000000" >> $(obj)include/config.h ;
640 @$(MKCONFIG) -n $@ -a M54451EVB m68k mcf5445x m54451evb freescale
643 M54455EVB_atmel_config \
644 M54455EVB_intel_config \
645 M54455EVB_a33_config \
646 M54455EVB_a66_config \
647 M54455EVB_i33_config \
648 M54455EVB_i66_config \
649 M54455EVB_stm33_config : unconfig
651 M54455EVB_config) FLASH=ATMEL; FREQ=33333333;; \
652 M54455EVB_atmel_config) FLASH=ATMEL; FREQ=33333333;; \
653 M54455EVB_intel_config) FLASH=INTEL; FREQ=33333333;; \
654 M54455EVB_a33_config) FLASH=ATMEL; FREQ=33333333;; \
655 M54455EVB_a66_config) FLASH=ATMEL; FREQ=66666666;; \
656 M54455EVB_i33_config) FLASH=INTEL; FREQ=33333333;; \
657 M54455EVB_i66_config) FLASH=INTEL; FREQ=66666666;; \
658 M54455EVB_stm33_config) FLASH=STMICRO; FREQ=33333333;; \
660 if [ "$${FLASH}" = "INTEL" ] ; then \
661 echo "#define CONFIG_SYS_INTEL_BOOT" >> $(obj)include/config.h ; \
662 echo "CONFIG_SYS_TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
663 cp $(obj)board/freescale/m54455evb/u-boot.int $(obj)board/freescale/m54455evb/u-boot.lds ; \
665 if [ "$${FLASH}" = "ATMEL" ] ; then \
666 echo "#define CONFIG_SYS_ATMEL_BOOT" >> $(obj)include/config.h ; \
667 echo "CONFIG_SYS_TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \
668 cp $(obj)board/freescale/m54455evb/u-boot.atm $(obj)board/freescale/m54455evb/u-boot.lds ; \
670 if [ "$${FLASH}" = "STMICRO" ] ; then \
671 echo "#define CONFIG_CF_SBF" >> $(obj)include/config.h ; \
672 echo "#define CONFIG_SYS_STMICRO_BOOT" >> $(obj)include/config.h ; \
673 echo "CONFIG_SYS_TEXT_BASE = 0x4FE00000" > $(obj)board/freescale/m54455evb/config.tmp ; \
674 cp $(obj)board/freescale/m54455evb/u-boot.stm $(obj)board/freescale/m54455evb/u-boot.lds ; \
676 echo "#define CONFIG_SYS_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \
677 @$(MKCONFIG) -n $@ -a M54455EVB m68k mcf5445x m54455evb freescale
685 M5475GFE_config : unconfig
687 M5475AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
688 M5475BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
689 M5475CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
690 M5475DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
691 M5475EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
692 M5475FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
693 M5475GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
695 echo "#define CONFIG_SYS_BUSCLK 133333333" > $(obj)include/config.h ; \
696 echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \
697 echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \
698 if [ "$${RAM1}" != "0" ] ; then \
699 echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \
701 if [ "$${CODE}" != "0" ] ; then \
702 echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \
704 if [ "$${VID}" == "1" ] ; then \
705 echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
707 if [ "$${USB}" == "1" ] ; then \
708 echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
710 @$(MKCONFIG) -n $@ -a M5475EVB m68k mcf547x_8x m547xevb freescale
719 M5485HFE_config : unconfig
721 M5485AFE_config) BOOT=2;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
722 M5485BFE_config) BOOT=2;CODE=16;VID=0;USB=0;RAM=64;RAM1=0;; \
723 M5485CFE_config) BOOT=2;CODE=16;VID=1;USB=1;RAM=64;RAM1=0;; \
724 M5485DFE_config) BOOT=2;CODE=0;VID=0;USB=1;RAM=64;RAM1=0;; \
725 M5485EFE_config) BOOT=2;CODE=0;VID=1;USB=1;RAM=64;RAM1=0;; \
726 M5485FFE_config) BOOT=2;CODE=32;VID=1;USB=1;RAM=64;RAM1=64;; \
727 M5485GFE_config) BOOT=4;CODE=0;VID=0;USB=0;RAM=64;RAM1=0;; \
728 M5485HFE_config) BOOT=2;CODE=16;VID=1;USB=0;RAM=64;RAM1=0;; \
730 echo "#define CONFIG_SYS_BUSCLK 100000000" > $(obj)include/config.h ; \
731 echo "#define CONFIG_SYS_BOOTSZ $${BOOT}" >> $(obj)include/config.h ; \
732 echo "#define CONFIG_SYS_DRAMSZ $${RAM}" >> $(obj)include/config.h ; \
733 if [ "$${RAM1}" != "0" ] ; then \
734 echo "#define CONFIG_SYS_DRAMSZ1 $${RAM1}" >> $(obj)include/config.h ; \
736 if [ "$${CODE}" != "0" ] ; then \
737 echo "#define CONFIG_SYS_NOR1SZ $${CODE}" >> $(obj)include/config.h ; \
739 if [ "$${VID}" == "1" ] ; then \
740 echo "#define CONFIG_SYS_VIDEO" >> $(obj)include/config.h ; \
742 if [ "$${USB}" == "1" ] ; then \
743 echo "#define CONFIG_SYS_USBCTRL" >> $(obj)include/config.h ; \
745 @$(MKCONFIG) -n $@ -a M5485EVB m68k mcf547x_8x m548xevb freescale
747 #========================================================================
749 #========================================================================
751 #########################################################################
752 ## Atmel AT91RM9200 Systems
753 #########################################################################
756 CPUAT91_config : unconfig
757 @mkdir -p $(obj)include
758 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
759 @$(MKCONFIG) -n $@ -a cpuat91 arm arm920t cpuat91 eukrea at91
761 #########################################################################
762 ## ARM926EJ-S Systems
763 #########################################################################
765 at91sam9260ek_nandflash_config \
766 at91sam9260ek_dataflash_cs0_config \
767 at91sam9260ek_dataflash_cs1_config \
768 at91sam9260ek_config \
769 at91sam9g20ek_nandflash_config \
770 at91sam9g20ek_dataflash_cs0_config \
771 at91sam9g20ek_dataflash_cs1_config \
772 at91sam9g20ek_config : unconfig
773 @mkdir -p $(obj)include
774 @if [ "$(findstring 9g20,$@)" ] ; then \
775 echo "#define CONFIG_AT91SAM9G20EK 1" >>$(obj)include/config.h ; \
777 echo "#define CONFIG_AT91SAM9260EK 1" >>$(obj)include/config.h ; \
779 @if [ "$(findstring _nandflash,$@)" ] ; then \
780 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
781 elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
782 echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \
784 echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1" >>$(obj)include/config.h ; \
786 @$(MKCONFIG) -n $@ -a at91sam9260ek arm arm926ejs at91sam9260ek atmel at91
788 at91sam9xeek_nandflash_config \
789 at91sam9xeek_dataflash_cs0_config \
790 at91sam9xeek_dataflash_cs1_config \
791 at91sam9xeek_config : unconfig
792 @mkdir -p $(obj)include
793 @if [ "$(findstring _nandflash,$@)" ] ; then \
794 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
795 elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
796 echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \
798 echo "#define CONFIG_SYS_USE_DATAFLASH_CS1 1" >>$(obj)include/config.h ; \
800 @$(MKCONFIG) -n $@ -a at91sam9260ek arm arm926ejs at91sam9260ek atmel at91
802 at91sam9261ek_nandflash_config \
803 at91sam9261ek_dataflash_cs0_config \
804 at91sam9261ek_dataflash_cs3_config \
805 at91sam9261ek_config \
806 at91sam9g10ek_nandflash_config \
807 at91sam9g10ek_dataflash_cs0_config \
808 at91sam9g10ek_dataflash_cs3_config \
809 at91sam9g10ek_config : unconfig
810 @mkdir -p $(obj)include
811 @if [ "$(findstring 9g10,$@)" ] ; then \
812 echo "#define CONFIG_AT91SAM9G10EK 1" >>$(obj)include/config.h ; \
814 echo "#define CONFIG_AT91SAM9261EK 1" >>$(obj)include/config.h ; \
816 @if [ "$(findstring _nandflash,$@)" ] ; then \
817 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
818 elif [ "$(findstring dataflash_cs0,$@)" ] ; then \
819 echo "#define CONFIG_SYS_USE_DATAFLASH_CS3 1" >>$(obj)include/config.h ; \
821 echo "#define CONFIG_SYS_USE_DATAFLASH_CS0 1" >>$(obj)include/config.h ; \
823 @$(MKCONFIG) -n $@ -a at91sam9261ek arm arm926ejs at91sam9261ek atmel at91
825 at91sam9263ek_norflash_config \
826 at91sam9263ek_norflash_boot_config \
827 at91sam9263ek_nandflash_config \
828 at91sam9263ek_dataflash_config \
829 at91sam9263ek_dataflash_cs0_config \
830 at91sam9263ek_config : unconfig
831 @mkdir -p $(obj)include
832 @if [ "$(findstring _nandflash,$@)" ] ; then \
833 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
834 elif [ "$(findstring norflash,$@)" ] ; then \
835 echo "#define CONFIG_SYS_USE_NORFLASH 1" >>$(obj)include/config.h ; \
837 echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \
839 @if [ "$(findstring norflash_boot,$@)" ] ; then \
840 echo "#define CONFIG_SYS_USE_BOOT_NORFLASH 1" >>$(obj)include/config.h ; \
842 @$(MKCONFIG) -n $@ -a at91sam9263ek arm arm926ejs at91sam9263ek atmel at91
844 at91sam9rlek_nandflash_config \
845 at91sam9rlek_dataflash_config \
846 at91sam9rlek_dataflash_cs0_config \
847 at91sam9rlek_config : unconfig
848 @mkdir -p $(obj)include
849 @if [ "$(findstring _nandflash,$@)" ] ; then \
850 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
852 echo "#define CONFIG_SYS_USE_DATAFLASH 1" >>$(obj)include/config.h ; \
854 @$(MKCONFIG) -n $@ -a at91sam9rlek arm arm926ejs at91sam9rlek atmel at91
856 CPU9G20_128M_config \
858 CPU9260_128M_config \
859 CPU9260_config : unconfig
860 @mkdir -p $(obj)include
861 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
862 @$(MKCONFIG) -n $@ -a cpu9260 arm arm926ejs cpu9260 eukrea at91
864 at91sam9m10g45ek_nandflash_config \
865 at91sam9m10g45ek_dataflash_config \
866 at91sam9m10g45ek_dataflash_cs0_config \
867 at91sam9m10g45ek_config \
868 at91sam9g45ekes_nandflash_config \
869 at91sam9g45ekes_dataflash_config \
870 at91sam9g45ekes_dataflash_cs0_config \
871 at91sam9g45ekes_config : unconfig
872 @mkdir -p $(obj)include
873 @if [ "$(findstring 9m10,$@)" ] ; then \
874 echo "#define CONFIG_AT91SAM9M10G45EK 1" >>$(obj)include/config.h ; \
876 echo "#define CONFIG_AT91SAM9G45EKES 1" >>$(obj)include/config.h ; \
878 @if [ "$(findstring _nandflash,$@)" ] ; then \
879 echo "#define CONFIG_SYS_USE_NANDFLASH 1" >>$(obj)include/config.h ; \
881 echo "#define CONFIG_ATMEL_SPI 1" >>$(obj)include/config.h ; \
883 @$(MKCONFIG) -n $@ -a at91sam9m10g45ek arm arm926ejs at91sam9m10g45ek atmel at91
885 pm9g45_config : unconfig
886 @mkdir -p $(obj)include
887 @$(MKCONFIG) -a pm9g45 arm arm926ejs pm9g45 ronetix at91
889 SBC35_A9G20_NANDFLASH_config \
890 SBC35_A9G20_EEPROM_config \
891 SBC35_A9G20_config : unconfig
892 @mkdir -p $(obj)include
893 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
894 @$(MKCONFIG) -n $@ -a sbc35_a9g20 arm arm926ejs sbc35_a9g20 calao at91
896 TNY_A9G20_NANDFLASH_config \
897 TNY_A9G20_EEPROM_config \
899 TNY_A9260_NANDFLASH_config \
900 TNY_A9260_EEPROM_config \
901 TNY_A9260_config : unconfig
902 @mkdir -p $(obj)include
903 @echo "#define CONFIG_$(@:_config=) 1" >$(obj)include/config.h
904 @$(MKCONFIG) -n $@ -a tny_a9260 arm arm926ejs tny_a9260 calao at91
906 ########################################################################
907 ## ARM Integrator boards - see doc/README-integrator for more info.
908 integratorap_config \
917 ap946es_config: unconfig
918 @board/armltd/integrator/split_by_variant.sh ap $@
920 integratorcp_config \
929 cp1026_config: unconfig
930 @board/armltd/integrator/split_by_variant.sh cp $@
933 nhk8815_onenand_config: unconfig
934 @mkdir -p $(obj)include
935 @ > $(obj)include/config.h
936 @if [ "$(findstring _onenand, $@)" ] ; then \
937 echo "#define CONFIG_BOOT_ONENAND" >> $(obj)include/config.h; \
939 @$(MKCONFIG) -n $@ -a nhk8815 arm arm926ejs nhk8815 st nomadik
941 xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
944 omap1610inn_cs0boot_config \
945 omap1610inn_cs3boot_config \
946 omap1610inn_cs_autoboot_config \
948 omap1610h2_cs0boot_config \
949 omap1610h2_cs3boot_config \
950 omap1610h2_cs_autoboot_config: unconfig
951 @mkdir -p $(obj)include
952 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
953 echo "#define CONFIG_CS0_BOOT" >> .$(obj)include/config.h ; \
954 elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
955 echo "#define CONFIG_CS_AUTOBOOT" >> $(obj)include/config.h ; \
957 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
959 @$(MKCONFIG) -n $@ -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn ti omap
962 omap730p2_cs0boot_config \
963 omap730p2_cs3boot_config : unconfig
964 @mkdir -p $(obj)include
965 @if [ "$(findstring _cs0boot_, $@)" ] ; then \
966 echo "#define CONFIG_CS0_BOOT" >> $(obj)include/config.h ; \
968 echo "#define CONFIG_CS3_BOOT" >> $(obj)include/config.h ; \
970 @$(MKCONFIG) -n $@ -a omap730p2 arm arm926ejs omap730p2 ti omap
974 spear320_config : unconfig
975 @$(MKCONFIG) -n $@ -t $@ spear3xx arm arm926ejs $(@:_config=) spear spear
977 spear600_config : unconfig
978 @$(MKCONFIG) -n $@ -t $@ spear6xx arm arm926ejs $(@:_config=) spear spear
980 SX1_stdout_serial_config \
982 @mkdir -p $(obj)include
983 @if [ "$(findstring _stdout_serial_, $@)" ] ; then \
984 echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
986 echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
988 @$(MKCONFIG) -n $@ SX1 arm arm925t sx1
990 # TRAB default configuration: 8 MB Flash, 32 MB RAM
993 trab_bigflash_config \
994 trab_old_config: unconfig
995 @mkdir -p $(obj)include
996 @mkdir -p $(obj)board/trab
997 @[ -z "$(findstring _bigram,$@)" ] || \
998 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
999 echo "#define CONFIG_RAM_32MB" >>$(obj)include/config.h ; \
1001 @[ -z "$(findstring _bigflash,$@)" ] || \
1002 { echo "#define CONFIG_FLASH_16MB" >>$(obj)include/config.h ; \
1003 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
1004 echo "CONFIG_SYS_TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
1006 @[ -z "$(findstring _old,$@)" ] || \
1007 { echo "#define CONFIG_FLASH_8MB" >>$(obj)include/config.h ; \
1008 echo "#define CONFIG_RAM_16MB" >>$(obj)include/config.h ; \
1009 echo "CONFIG_SYS_TEXT_BASE = 0x0CF40000" >$(obj)board/trab/config.tmp ; \
1011 @$(MKCONFIG) -n $@ -a trab arm arm920t trab - s3c24x0
1013 tx25_config : unconfig
1014 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1015 @$(MKCONFIG) $@ arm arm926ejs tx25 karo mx25
1024 edb9315a_config: unconfig
1025 @$(MKCONFIG) -n $@ -t $(@:_config=) edb93xx arm arm920t edb93xx - ep93xx
1027 #########################################################################
1028 # ARM supplied Versatile development boards
1029 #########################################################################
1032 versatileab_config \
1033 versatilepb_config : unconfig
1034 @board/armltd/versatile/split_by_variant.sh $@
1036 #########################################################################
1038 #########################################################################
1041 scpu_config: unconfig
1042 @mkdir -p $(obj)include
1043 @if [ "$(findstring scpu_,$@)" ] ; then \
1044 echo "#define CONFIG_SCPU" >>$(obj)include/config.h ; \
1046 @$(MKCONFIG) -n $@ -a pdnb3 arm ixp pdnb3 prodrive
1048 #########################################################################
1050 #########################################################################
1052 apollon_config : unconfig
1053 @mkdir -p $(obj)include
1054 @echo "#define CONFIG_ONENAND_U_BOOT" > $(obj)include/config.h
1055 @echo "CONFIG_ONENAND_U_BOOT = y" >> $(obj)include/config.mk
1056 @$(MKCONFIG) $@ arm arm1136 apollon - omap24xx
1058 imx31_phycore_eet_config \
1059 imx31_phycore_config : unconfig
1060 @mkdir -p $(obj)include
1061 @if [ -n "$(findstring _eet_,$@)" ]; then \
1062 echo "#define CONFIG_IMX31_PHYCORE_EET" >> $(obj)include/config.h; \
1064 @$(MKCONFIG) -n $@ -a imx31_phycore arm arm1136 imx31_phycore - mx31
1067 mx31pdk_nand_config : unconfig
1068 @mkdir -p $(obj)include
1069 @if [ -n "$(findstring _nand_,$@)" ]; then \
1070 echo "#define CONFIG_NAND_U_BOOT" >> $(obj)include/config.h; \
1072 echo "#define CONFIG_SKIP_LOWLEVEL_INIT" >> $(obj)include/config.h; \
1074 @$(MKCONFIG) -n $@ -a mx31pdk arm arm1136 mx31pdk freescale mx31
1076 #########################################################################
1078 #########################################################################
1079 smdk6400_noUSB_config \
1080 smdk6400_config : unconfig
1081 @mkdir -p $(obj)include $(obj)board/samsung/smdk6400
1082 @mkdir -p $(obj)nand_spl/board/samsung/smdk6400
1083 @echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
1084 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1085 @if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \
1086 echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
1088 echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
1090 @$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx
1091 @echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
1093 #========================================================================
1095 #========================================================================
1096 #########################################################################
1098 #########################################################################
1100 incaip_100MHz_config \
1101 incaip_133MHz_config \
1102 incaip_150MHz_config \
1103 incaip_config: unconfig
1104 @mkdir -p $(obj)include
1105 @[ -z "$(findstring _100MHz,$@)" ] || \
1106 echo "#define CPU_CLOCK_RATE 100000000" >>$(obj)include/config.h
1107 @[ -z "$(findstring _133MHz,$@)" ] || \
1108 echo "#define CPU_CLOCK_RATE 133000000" >>$(obj)include/config.h
1109 @[ -z "$(findstring _150MHz,$@)" ] || \
1110 echo "#define CPU_CLOCK_RATE 150000000" >>$(obj)include/config.h
1111 @$(MKCONFIG) -n $@ -a incaip mips mips incaip
1113 vct_premium_config \
1114 vct_premium_small_config \
1115 vct_premium_onenand_config \
1116 vct_premium_onenand_small_config \
1117 vct_platinum_config \
1118 vct_platinum_small_config \
1119 vct_platinum_onenand_config \
1120 vct_platinum_onenand_small_config \
1121 vct_platinumavc_config \
1122 vct_platinumavc_small_config \
1123 vct_platinumavc_onenand_config \
1124 vct_platinumavc_onenand_small_config: unconfig
1125 @mkdir -p $(obj)include
1126 @[ -z "$(findstring _premium,$@)" ] || \
1127 echo "#define CONFIG_VCT_PREMIUM" > $(obj)include/config.h
1128 @[ -z "$(findstring _platinum_,$@)" ] || \
1129 echo "#define CONFIG_VCT_PLATINUM" > $(obj)include/config.h
1130 @[ -z "$(findstring _platinumavc,$@)" ] || \
1131 echo "#define CONFIG_VCT_PLATINUMAVC" > $(obj)include/config.h
1132 @[ -z "$(findstring _onenand,$@)" ] || \
1133 echo "#define CONFIG_VCT_ONENAND" >> $(obj)include/config.h
1134 @[ -z "$(findstring _small,$@)" ] || \
1135 echo "#define CONFIG_VCT_SMALL_IMAGE" >> $(obj)include/config.h
1136 @$(MKCONFIG) -n $@ -a vct mips mips vct micronas
1138 #########################################################################
1140 #########################################################################
1142 dbau1000_config : unconfig
1143 @mkdir -p $(obj)include
1144 @echo "#define CONFIG_DBAU1000 1" >$(obj)include/config.h
1145 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
1147 dbau1100_config : unconfig
1148 @mkdir -p $(obj)include
1149 @echo "#define CONFIG_DBAU1100 1" >$(obj)include/config.h
1150 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
1152 dbau1500_config : unconfig
1153 @mkdir -p $(obj)include
1154 @echo "#define CONFIG_DBAU1500 1" >$(obj)include/config.h
1155 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
1157 dbau1550_config : unconfig
1158 @mkdir -p $(obj)include
1159 @echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h
1160 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
1162 dbau1550_el_config : unconfig
1163 @mkdir -p $(obj)include
1164 @echo "#define CONFIG_DBAU1550 1" >$(obj)include/config.h
1165 @$(MKCONFIG) -a dbau1x00 mips mips dbau1x00
1167 gth2_config : unconfig
1168 @mkdir -p $(obj)include
1169 @echo "#define CONFIG_GTH2 1" >$(obj)include/config.h
1170 @$(MKCONFIG) -a $@ mips mips gth2
1172 pb1000_config : unconfig
1173 @mkdir -p $(obj)include
1174 @echo "#define CONFIG_PB1000 1" >$(obj)include/config.h
1175 @$(MKCONFIG) -a pb1x00 mips mips pb1x00
1177 qemu_mips_config : unconfig
1178 @mkdir -p $(obj)include
1179 @echo "#define CONFIG_QEMU_MIPS 1" >$(obj)include/config.h
1180 @$(MKCONFIG) -a qemu-mips mips mips qemu-mips
1182 #========================================================================
1184 #========================================================================
1186 #########################################################################
1188 #########################################################################
1190 # nios2 generic boards
1191 NIOS2_GENERIC = nios2-generic
1193 $(NIOS2_GENERIC:%=%_config) : unconfig
1194 @$(MKCONFIG) $@ nios2 nios2 nios2-generic altera
1196 #########################################################################
1197 #########################################################################
1200 @rm -f $(obj)examples/standalone/82559_eeprom \
1201 $(obj)examples/standalone/atmel_df_pow2 \
1202 $(obj)examples/standalone/eepro100_eeprom \
1203 $(obj)examples/standalone/hello_world \
1204 $(obj)examples/standalone/interrupt \
1205 $(obj)examples/standalone/mem_to_mem_idma2intr \
1206 $(obj)examples/standalone/sched \
1207 $(obj)examples/standalone/smc91111_eeprom \
1208 $(obj)examples/standalone/test_burst \
1209 $(obj)examples/standalone/timer
1210 @rm -f $(obj)examples/api/demo{,.bin}
1211 @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
1212 $(obj)tools/env/{fw_printenv,fw_setenv} \
1213 $(obj)tools/envcrc \
1214 $(obj)tools/gdb/{astest,gdbcont,gdbsend} \
1215 $(obj)tools/gen_eth_addr $(obj)tools/img2srec \
1216 $(obj)tools/mkimage $(obj)tools/mpc86x_clk \
1217 $(obj)tools/ncb $(obj)tools/ubsha1
1218 @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \
1219 $(obj)board/matrix_vision/*/bootscript.img \
1220 $(obj)board/netstar/{eeprom,crcek,crcit,*.srec,*.bin} \
1221 $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom \
1222 $(obj)board/armltd/{integratorap,integratorcp}/u-boot.lds \
1224 $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs]
1225 @rm -f $(obj)include/bmp_logo.h
1226 @rm -f $(obj)lib/asm-offsets.s
1227 @rm -f $(obj)nand_spl/{u-boot.lds,u-boot-spl,u-boot-spl.map,System.map}
1228 @rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map}
1229 @rm -f $(ONENAND_BIN)
1230 @rm -f $(obj)onenand_ipl/u-boot.lds
1231 @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
1232 @find $(OBJTREE) -type f \
1233 \( -name 'core' -o -name '*.bak' -o -name '*~' \
1234 -o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \
1238 @find $(OBJTREE) -type f \( -name '*.depend' \
1239 -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
1242 @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
1243 $(obj)cscope.* $(obj)*.*~
1244 @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL)
1245 @rm -f $(obj)u-boot.kwb
1246 @rm -f $(obj)u-boot.imx
1247 @rm -f $(obj)tools/{env/crc32.c,inca-swap-bytes}
1248 @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
1249 @rm -f $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
1250 @rm -fr $(obj)include/generated
1251 @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
1252 @[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f
1254 ifeq ($(OBJTREE),$(SRCTREE))
1256 distclean: clobber unconfig
1259 distclean: clobber unconfig
1264 F=`basename $(TOPDIR)` ; cd .. ; \
1265 gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
1267 #########################################################################