2002-11-02 23:17:16 +00:00
|
|
|
#
|
2011-11-07 18:43:14 +00:00
|
|
|
# (C) Copyright 2000-2012
|
2002-11-02 23:17:16 +00:00
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# See file CREDITS for list of people who contributed to this
|
|
|
|
# project.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
2006-07-19 15:52:30 +00:00
|
|
|
# published by the Free Software Foundatio; either version 2 of
|
2002-11-02 23:17:16 +00:00
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-03-04 13:58:31 +00:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2002-11-02 23:17:16 +00:00
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2012-03-30 22:13:05 +00:00
|
|
|
VERSION = 2012
|
2012-07-10 07:21:12 +00:00
|
|
|
PATCHLEVEL = 07
|
|
|
|
SUBLEVEL =
|
2012-07-30 18:24:37 +00:00
|
|
|
EXTRAVERSION =
|
2008-09-09 21:55:18 +00:00
|
|
|
ifneq "$(SUBLEVEL)" ""
|
2006-02-21 16:33:04 +00:00
|
|
|
U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
|
2008-09-09 21:55:18 +00:00
|
|
|
else
|
|
|
|
U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
|
|
|
|
endif
|
Move timestamp and version files into 'generated' subdir
There is a rather subtle build problem where the build time stamp is not
updated for out-of-tree builds if there exists an in-tree build which
has a valid timestamp file. So if you do an in-tree build, then an
out-of-tree build your timestamp will not change.
The correct timestamp_autogenerated.h lives in the object tree, but it
is not always found there. The source still lives in the source tree and
when compiling version.h, it includes timestamp_autogenerated.h. Since
the current directory is always searched first, this will come from the
source tree rather than the object tree if it exists there. This affects
dependency generation also, which means that common/cmd_version.o will not
even be rebuilt if you have ever done an in-tree build.
A similar problem exists with the version file.
This change moves both files into the 'generated' subdir, which is already
used for asm-offsets.h. Then timestamp.h and version.h are updated to
include the files from there.
There are other places where these generated files are included, but I
cannot see why these don't just use the timestamp.h and version.h headers.
So this change also tidies that up.
I have tested this with in- and out-of-tree builds, but not SPL. I have
looked at various other options for fixing this, including sed on the dep
files, -I- and -include flags to gcc, but I don't think they can be made
to work. Comments welcome.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
2011-10-10 08:55:19 +00:00
|
|
|
TIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h
|
|
|
|
VERSION_FILE = $(obj)include/generated/version_autogenerated.h
|
2006-02-21 16:33:04 +00:00
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
HOSTARCH := $(shell uname -m | \
|
2011-04-13 09:43:28 +00:00
|
|
|
sed -e s/i.86/x86/ \
|
2002-11-02 23:17:16 +00:00
|
|
|
-e s/sun4u/sparc64/ \
|
|
|
|
-e s/arm.*/arm/ \
|
|
|
|
-e s/sa110/arm/ \
|
2010-04-28 07:52:02 +00:00
|
|
|
-e s/ppc64/powerpc/ \
|
|
|
|
-e s/ppc/powerpc/ \
|
2010-06-15 22:59:17 +00:00
|
|
|
-e s/macppc/powerpc/\
|
|
|
|
-e s/sh.*/sh/)
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2005-08-12 21:23:46 +00:00
|
|
|
HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
|
2002-11-02 23:17:16 +00:00
|
|
|
sed -e 's/\(cygwin\).*/cygwin/')
|
|
|
|
|
2008-11-12 18:33:20 +00:00
|
|
|
# Set shell to bash if possible, otherwise fall back to sh
|
|
|
|
SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
|
|
|
|
else if [ -x /bin/bash ]; then echo /bin/bash; \
|
|
|
|
else echo sh; fi; fi)
|
|
|
|
|
|
|
|
export HOSTARCH HOSTOS SHELL
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
# Deal with colliding definitions from tcsh etc.
|
|
|
|
VENDOR=
|
|
|
|
|
2008-01-12 23:59:21 +00:00
|
|
|
#########################################################################
|
|
|
|
# Allow for silent builds
|
|
|
|
ifeq (,$(findstring s,$(MAKEFLAGS)))
|
|
|
|
XECHO = echo
|
|
|
|
else
|
|
|
|
XECHO = :
|
|
|
|
endif
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
2006-09-01 17:49:50 +00:00
|
|
|
#
|
|
|
|
# U-boot build supports producing a object files to the separate external
|
|
|
|
# directory. Two use cases are supported:
|
2006-09-07 09:51:23 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# 1) Add O= to the make command line
|
|
|
|
# 'make O=/tmp/build all'
|
|
|
|
#
|
|
|
|
# 2) Set environement variable BUILD_DIR to point to the desired location
|
|
|
|
# 'export BUILD_DIR=/tmp/build'
|
|
|
|
# 'make'
|
|
|
|
#
|
|
|
|
# The second approach can also be used with a MAKEALL script
|
|
|
|
# 'export BUILD_DIR=/tmp/build'
|
|
|
|
# './MAKEALL'
|
2006-09-07 09:51:23 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# Command line 'O=' setting overrides BUILD_DIR environent variable.
|
2006-09-07 09:51:23 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# When none of the above methods is used the local build is performed and
|
|
|
|
# the object files are placed in the source directory.
|
2006-09-07 09:51:23 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
|
|
|
|
ifdef O
|
|
|
|
ifeq ("$(origin O)", "command line")
|
|
|
|
BUILD_DIR := $(O)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(BUILD_DIR),)
|
|
|
|
saved-output := $(BUILD_DIR)
|
2006-09-07 10:05:53 +00:00
|
|
|
|
|
|
|
# Attempt to create a output directory.
|
|
|
|
$(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
|
|
|
|
|
2006-09-12 06:49:07 +00:00
|
|
|
# Verify if it was successful.
|
2006-09-01 17:49:50 +00:00
|
|
|
BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
|
|
|
|
$(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
|
|
|
|
endif # ifneq ($(BUILD_DIR),)
|
|
|
|
|
|
|
|
OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
|
2011-07-18 06:09:15 +00:00
|
|
|
SPLTREE := $(OBJTREE)/spl
|
2006-09-01 17:49:50 +00:00
|
|
|
SRCTREE := $(CURDIR)
|
|
|
|
TOPDIR := $(SRCTREE)
|
|
|
|
LNDIR := $(OBJTREE)
|
2011-07-18 06:09:15 +00:00
|
|
|
export TOPDIR SRCTREE OBJTREE SPLTREE
|
2006-09-01 17:49:50 +00:00
|
|
|
|
|
|
|
MKCONFIG := $(SRCTREE)/mkconfig
|
|
|
|
export MKCONFIG
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
ifneq ($(OBJTREE),$(SRCTREE))
|
2006-11-30 17:02:20 +00:00
|
|
|
REMOTE_BUILD := 1
|
2006-09-01 17:49:50 +00:00
|
|
|
export REMOTE_BUILD
|
|
|
|
endif
|
|
|
|
|
|
|
|
# $(obj) and (src) are defined in config.mk but here in main Makefile
|
|
|
|
# we also need them before config.mk is included which is the case for
|
|
|
|
# some targets like unconfig, clean, clobber, distclean, etc.
|
|
|
|
ifneq ($(OBJTREE),$(SRCTREE))
|
|
|
|
obj := $(OBJTREE)/
|
|
|
|
src := $(SRCTREE)/
|
|
|
|
else
|
|
|
|
obj :=
|
|
|
|
src :=
|
2006-09-07 09:51:23 +00:00
|
|
|
endif
|
2006-09-01 17:49:50 +00:00
|
|
|
export obj src
|
|
|
|
|
2008-03-02 21:45:33 +00:00
|
|
|
# Make sure CDPATH settings don't interfere
|
|
|
|
unexport CDPATH
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2009-05-30 05:02:03 +00:00
|
|
|
# The "tools" are needed early, so put this first
|
|
|
|
# Don't include stuff already done in $(LIBS)
|
2011-10-17 21:04:15 +00:00
|
|
|
# The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
|
|
|
|
# is "yes"), so compile examples after U-Boot is compiled.
|
|
|
|
SUBDIR_TOOLS = tools
|
|
|
|
SUBDIR_EXAMPLES = examples/standalone examples/api
|
|
|
|
SUBDIRS = $(SUBDIR_TOOLS)
|
2009-05-30 05:02:03 +00:00
|
|
|
|
2011-10-03 09:57:10 +00:00
|
|
|
.PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
|
2009-05-30 05:02:03 +00:00
|
|
|
|
2008-01-12 23:59:21 +00:00
|
|
|
ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-07-22 02:59:36 +00:00
|
|
|
# Include autoconf.mk before config.mk so that the config options are available
|
|
|
|
# to all top level build files. We need the dummy all: target to prevent the
|
|
|
|
# dependency target in autoconf.mk.dep from being the default.
|
|
|
|
all:
|
|
|
|
sinclude $(obj)include/autoconf.mk.dep
|
|
|
|
sinclude $(obj)include/autoconf.mk
|
|
|
|
|
2011-10-25 11:29:28 +00:00
|
|
|
ifndef CONFIG_SANDBOX
|
|
|
|
SUBDIRS += $(SUBDIR_EXAMPLES)
|
|
|
|
endif
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
# load ARCH, BOARD, and CPU configuration
|
2008-01-12 23:59:21 +00:00
|
|
|
include $(obj)include/config.mk
|
2004-10-09 22:21:29 +00:00
|
|
|
export ARCH CPU BOARD VENDOR SOC
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2009-06-15 03:33:14 +00:00
|
|
|
# set default to nothing for native builds
|
2007-03-06 17:01:47 +00:00
|
|
|
ifeq ($(HOSTARCH),$(ARCH))
|
2009-06-15 03:33:14 +00:00
|
|
|
CROSS_COMPILE ?=
|
2004-10-10 21:27:30 +00:00
|
|
|
endif
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-03-12 00:37:50 +00:00
|
|
|
# load other configuration
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2011-06-20 12:45:37 +00:00
|
|
|
# If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
|
|
|
|
# that (or fail if absent). Otherwise, search for a linker script in a
|
|
|
|
# standard location.
|
|
|
|
|
2011-11-21 10:49:37 +00:00
|
|
|
LDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT))
|
|
|
|
|
2011-06-20 12:45:37 +00:00
|
|
|
ifndef LDSCRIPT
|
|
|
|
#LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
|
|
|
|
ifdef CONFIG_SYS_LDSCRIPT
|
|
|
|
# need to strip off double quotes
|
|
|
|
LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2011-11-21 10:49:37 +00:00
|
|
|
# If there is no specified link script, we look in a number of places for it
|
2011-06-20 12:45:37 +00:00
|
|
|
ifndef LDSCRIPT
|
|
|
|
ifeq ($(CONFIG_NAND_U_BOOT),y)
|
|
|
|
LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
|
|
|
|
ifeq ($(wildcard $(LDSCRIPT)),)
|
|
|
|
LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
ifeq ($(wildcard $(LDSCRIPT)),)
|
|
|
|
LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
|
|
|
|
endif
|
|
|
|
ifeq ($(wildcard $(LDSCRIPT)),)
|
|
|
|
LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
|
|
|
|
endif
|
2011-11-21 10:49:37 +00:00
|
|
|
ifeq ($(wildcard $(LDSCRIPT)),)
|
|
|
|
LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds
|
|
|
|
# We don't expect a Makefile here
|
|
|
|
LDSCRIPT_MAKEFILE_DIR =
|
|
|
|
endif
|
2011-06-20 12:45:37 +00:00
|
|
|
ifeq ($(wildcard $(LDSCRIPT)),)
|
|
|
|
$(error could not find linker script)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
# U-Boot objects....order is important (i.e. start must be first)
|
|
|
|
|
2010-04-13 03:28:02 +00:00
|
|
|
OBJS = $(CPUDIR)/start.o
|
2011-04-13 09:43:28 +00:00
|
|
|
ifeq ($(CPU),x86)
|
2010-04-13 03:28:02 +00:00
|
|
|
OBJS += $(CPUDIR)/start16.o
|
|
|
|
OBJS += $(CPUDIR)/resetvec.o
|
2002-11-18 00:14:45 +00:00
|
|
|
endif
|
2002-11-02 23:17:16 +00:00
|
|
|
ifeq ($(CPU),ppc4xx)
|
2010-04-13 03:28:02 +00:00
|
|
|
OBJS += $(CPUDIR)/resetvec.o
|
2002-11-02 23:17:16 +00:00
|
|
|
endif
|
2003-10-15 23:53:47 +00:00
|
|
|
ifeq ($(CPU),mpc85xx)
|
2010-04-13 03:28:02 +00:00
|
|
|
OBJS += $(CPUDIR)/resetvec.o
|
2003-10-15 23:53:47 +00:00
|
|
|
endif
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
OBJS := $(addprefix $(obj),$(OBJS))
|
|
|
|
|
2012-08-14 01:44:29 +00:00
|
|
|
HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n)
|
2012-07-19 13:39:58 +00:00
|
|
|
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += lib/libgeneric.o
|
|
|
|
LIBS-y += lib/lzma/liblzma.o
|
|
|
|
LIBS-y += lib/lzo/liblzo.o
|
|
|
|
LIBS-y += lib/zlib/libz.o
|
2012-07-19 13:39:58 +00:00
|
|
|
LIBS-$(CONFIG_TIZEN) += lib/tizen/libtizen.o
|
|
|
|
LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += $(CPUDIR)/lib$(CPU).o
|
2004-10-09 22:21:29 +00:00
|
|
|
ifdef SOC
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o
|
2004-10-09 22:21:29 +00:00
|
|
|
endif
|
2007-04-23 10:00:22 +00:00
|
|
|
ifeq ($(CPU),ixp)
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += arch/arm/cpu/ixp/npe/libnpe.o
|
2007-04-23 10:00:22 +00:00
|
|
|
endif
|
2012-07-19 13:39:58 +00:00
|
|
|
LIBS-$(CONFIG_OF_EMBED) += dts/libdts.o
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
|
|
|
|
LIBS-y += fs/cramfs/libcramfs.o fs/fat/libfat.o fs/fdos/libfdos.o fs/jffs2/libjffs2.o \
|
2010-11-05 14:48:07 +00:00
|
|
|
fs/reiserfs/libreiserfs.o fs/ext2/libext2fs.o fs/yaffs2/libyaffs2.o \
|
2012-07-19 20:48:25 +00:00
|
|
|
fs/ubifs/libubifs.o fs/zfs/libzfs.o
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += net/libnet.o
|
|
|
|
LIBS-y += disk/libdisk.o
|
|
|
|
LIBS-y += drivers/bios_emulator/libatibiosemu.o
|
|
|
|
LIBS-y += drivers/block/libblock.o
|
|
|
|
LIBS-y += drivers/dma/libdma.o
|
|
|
|
LIBS-y += drivers/fpga/libfpga.o
|
|
|
|
LIBS-y += drivers/gpio/libgpio.o
|
|
|
|
LIBS-y += drivers/hwmon/libhwmon.o
|
|
|
|
LIBS-y += drivers/i2c/libi2c.o
|
|
|
|
LIBS-y += drivers/input/libinput.o
|
|
|
|
LIBS-y += drivers/misc/libmisc.o
|
|
|
|
LIBS-y += drivers/mmc/libmmc.o
|
|
|
|
LIBS-y += drivers/mtd/libmtd.o
|
|
|
|
LIBS-y += drivers/mtd/nand/libnand.o
|
|
|
|
LIBS-y += drivers/mtd/onenand/libonenand.o
|
|
|
|
LIBS-y += drivers/mtd/ubi/libubi.o
|
|
|
|
LIBS-y += drivers/mtd/spi/libspi_flash.o
|
|
|
|
LIBS-y += drivers/net/libnet.o
|
|
|
|
LIBS-y += drivers/net/phy/libphy.o
|
|
|
|
LIBS-y += drivers/pci/libpci.o
|
|
|
|
LIBS-y += drivers/pcmcia/libpcmcia.o
|
|
|
|
LIBS-y += drivers/power/libpower.o
|
|
|
|
LIBS-y += drivers/spi/libspi.o
|
2006-11-03 18:11:15 +00:00
|
|
|
ifeq ($(CPU),mpc83xx)
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += drivers/qe/libqe.o
|
|
|
|
LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
|
|
|
|
LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
|
2006-11-03 18:11:15 +00:00
|
|
|
endif
|
2007-08-14 05:14:25 +00:00
|
|
|
ifeq ($(CPU),mpc85xx)
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += drivers/qe/libqe.o
|
|
|
|
LIBS-y += drivers/net/fm/libfm.o
|
|
|
|
LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
|
|
|
|
LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
|
2008-08-26 20:01:29 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(CPU),mpc86xx)
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
|
|
|
|
LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
|
2007-08-14 05:14:25 +00:00
|
|
|
endif
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += drivers/rtc/librtc.o
|
|
|
|
LIBS-y += drivers/serial/libserial.o
|
2012-07-19 13:39:58 +00:00
|
|
|
LIBS-$(CONFIG_GENERIC_LPC_TPM) += drivers/tpm/libtpm.o
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += drivers/twserial/libtws.o
|
|
|
|
LIBS-y += drivers/usb/eth/libusb_eth.o
|
|
|
|
LIBS-y += drivers/usb/gadget/libusb_gadget.o
|
|
|
|
LIBS-y += drivers/usb/host/libusb_host.o
|
|
|
|
LIBS-y += drivers/usb/musb/libusb_musb.o
|
|
|
|
LIBS-y += drivers/usb/phy/libusb_phy.o
|
|
|
|
LIBS-y += drivers/usb/ulpi/libusb_ulpi.o
|
|
|
|
LIBS-y += drivers/video/libvideo.o
|
|
|
|
LIBS-y += drivers/watchdog/libwatchdog.o
|
|
|
|
LIBS-y += common/libcommon.o
|
|
|
|
LIBS-y += lib/libfdt/libfdt.o
|
|
|
|
LIBS-y += api/libapi.o
|
|
|
|
LIBS-y += post/libpost.o
|
|
|
|
LIBS-y += test/libtest.o
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2012-01-09 20:38:55 +00:00
|
|
|
ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
|
2011-10-14 02:58:25 +00:00
|
|
|
endif
|
2011-11-25 00:18:01 +00:00
|
|
|
|
|
|
|
ifeq ($(SOC),mx5)
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += $(CPUDIR)/imx-common/libimx-common.o
|
2011-11-25 00:18:01 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(SOC),mx6)
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += $(CPUDIR)/imx-common/libimx-common.o
|
2011-11-25 00:18:01 +00:00
|
|
|
endif
|
|
|
|
|
2010-08-19 04:48:11 +00:00
|
|
|
ifeq ($(SOC),s5pc1xx)
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
|
2010-08-19 04:48:11 +00:00
|
|
|
endif
|
2011-12-06 23:34:12 +00:00
|
|
|
ifeq ($(SOC),exynos)
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
|
2010-08-19 04:48:11 +00:00
|
|
|
endif
|
|
|
|
|
2012-06-28 06:45:20 +00:00
|
|
|
LIBS := $(addprefix $(obj),$(sort $(LIBS-y)))
|
2011-10-03 09:57:10 +00:00
|
|
|
.PHONY : $(LIBS)
|
2003-12-06 19:49:23 +00:00
|
|
|
|
2010-11-05 14:48:07 +00:00
|
|
|
LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o
|
2008-04-30 15:25:07 +00:00
|
|
|
LIBBOARD := $(addprefix $(obj),$(LIBBOARD))
|
|
|
|
|
2003-09-11 23:06:34 +00:00
|
|
|
# Add GCC lib
|
2009-07-23 11:15:59 +00:00
|
|
|
ifdef USE_PRIVATE_LIBGCC
|
|
|
|
ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
|
2010-11-18 08:35:09 +00:00
|
|
|
PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
|
2009-07-23 11:15:59 +00:00
|
|
|
else
|
|
|
|
PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
|
|
|
|
endif
|
|
|
|
else
|
2011-11-01 20:54:02 +00:00
|
|
|
PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
|
2009-07-23 11:15:59 +00:00
|
|
|
endif
|
|
|
|
PLATFORM_LIBS += $(PLATFORM_LIBGCC)
|
|
|
|
export PLATFORM_LIBS
|
2004-03-14 15:06:13 +00:00
|
|
|
|
2009-08-23 06:47:59 +00:00
|
|
|
# Special flags for CPP when processing the linker script.
|
|
|
|
# Pass the version down so we can handle backwards compatibility
|
|
|
|
# on the fly.
|
|
|
|
LDPPFLAGS += \
|
|
|
|
-include $(TOPDIR)/include/u-boot/u-boot.lds.h \
|
2011-11-21 10:49:40 +00:00
|
|
|
-DCPUDIR=$(CPUDIR) \
|
2009-08-23 06:47:59 +00:00
|
|
|
$(shell $(LD) --version | \
|
|
|
|
sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
__OBJS := $(subst $(obj),,$(OBJS))
|
2008-04-30 15:25:07 +00:00
|
|
|
__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2003-08-05 17:43:17 +00:00
|
|
|
#########################################################################
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
|
2010-10-14 02:58:23 +00:00
|
|
|
ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
|
|
|
|
BOARD_SIZE_CHECK = \
|
|
|
|
@actual=`wc -c $@ | awk '{print $$1}'`; \
|
|
|
|
limit=$(CONFIG_BOARD_SIZE_LIMIT); \
|
|
|
|
if test $$actual -gt $$limit; then \
|
|
|
|
echo "$@ exceeds file size limit:"; \
|
|
|
|
echo " limit: $$limit bytes"; \
|
|
|
|
echo " actual: $$actual bytes"; \
|
|
|
|
echo " excess: $$((actual - limit)) bytes"; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
BOARD_SIZE_CHECK =
|
|
|
|
endif
|
|
|
|
|
2009-06-15 04:25:19 +00:00
|
|
|
# Always append ALL so that arch config.mk's can add custom ones
|
2011-07-13 05:11:01 +00:00
|
|
|
ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map
|
2011-01-27 14:44:59 +00:00
|
|
|
|
2011-07-13 05:11:01 +00:00
|
|
|
ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin
|
|
|
|
ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin
|
2011-01-27 14:44:59 +00:00
|
|
|
ONENAND_BIN ?= $(obj)onenand_ipl/onenand-ipl-2k.bin
|
2011-07-13 05:11:04 +00:00
|
|
|
ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin
|
2011-10-24 19:15:31 +00:00
|
|
|
ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin
|
2011-05-24 20:02:57 +00:00
|
|
|
|
2011-10-17 21:04:15 +00:00
|
|
|
all: $(ALL-y) $(SUBDIR_EXAMPLES)
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2011-10-24 19:15:31 +00:00
|
|
|
$(obj)u-boot.dtb: $(obj)u-boot
|
|
|
|
$(MAKE) -C dts binary
|
|
|
|
mv $(obj)dts/dt.dtb $@
|
|
|
|
|
|
|
|
$(obj)u-boot-dtb.bin: $(obj)u-boot.bin $(obj)u-boot.dtb
|
|
|
|
cat $^ >$@
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)u-boot.hex: $(obj)u-boot
|
2005-01-09 21:28:15 +00:00
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)u-boot.srec: $(obj)u-boot
|
2008-09-07 21:10:27 +00:00
|
|
|
$(OBJCOPY) -O srec $< $@
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)u-boot.bin: $(obj)u-boot
|
2002-11-02 23:17:16 +00:00
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
|
2010-10-14 02:58:23 +00:00
|
|
|
$(BOARD_SIZE_CHECK)
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2008-02-05 00:26:57 +00:00
|
|
|
$(obj)u-boot.ldr: $(obj)u-boot
|
2009-07-22 02:17:36 +00:00
|
|
|
$(CREATE_LDR_ENV)
|
2008-08-07 22:56:56 +00:00
|
|
|
$(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
|
2010-10-14 02:58:23 +00:00
|
|
|
$(BOARD_SIZE_CHECK)
|
2008-02-05 00:26:57 +00:00
|
|
|
|
|
|
|
$(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
|
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
|
|
|
|
|
|
|
|
$(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
|
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)u-boot.img: $(obj)u-boot.bin
|
2010-05-15 19:23:51 +00:00
|
|
|
$(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
|
2011-07-16 02:53:20 +00:00
|
|
|
-O u-boot -a $(CONFIG_SYS_TEXT_BASE) -e 0 \
|
2006-02-21 16:33:04 +00:00
|
|
|
-n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
|
2003-08-05 17:43:17 +00:00
|
|
|
sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
|
|
|
|
-d $< $@
|
|
|
|
|
2010-01-20 17:19:10 +00:00
|
|
|
$(obj)u-boot.imx: $(obj)u-boot.bin
|
2011-01-24 00:14:26 +00:00
|
|
|
$(obj)tools/mkimage -n $(CONFIG_IMX_CONFIG) -T imximage \
|
2010-10-07 19:51:12 +00:00
|
|
|
-e $(CONFIG_SYS_TEXT_BASE) -d $< $@
|
2010-01-20 17:19:10 +00:00
|
|
|
|
2009-09-07 09:35:02 +00:00
|
|
|
$(obj)u-boot.kwb: $(obj)u-boot.bin
|
2010-10-27 12:16:06 +00:00
|
|
|
$(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
|
2010-10-19 17:31:11 +00:00
|
|
|
-a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
|
2009-09-07 09:35:02 +00:00
|
|
|
|
2012-08-10 02:49:35 +00:00
|
|
|
$(obj)u-boot.pbl: $(obj)u-boot.bin
|
|
|
|
$(obj)tools/mkimage -n $(CONFIG_PBLRCW_CONFIG) \
|
|
|
|
-R $(CONFIG_PBLPBI_CONFIG) -T pblimage \
|
|
|
|
-d $< $@
|
|
|
|
|
2007-06-22 17:11:54 +00:00
|
|
|
$(obj)u-boot.sha1: $(obj)u-boot.bin
|
2007-07-13 23:06:58 +00:00
|
|
|
$(obj)tools/ubsha1 $(obj)u-boot.bin
|
2007-06-22 17:11:54 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(obj)u-boot.dis: $(obj)u-boot
|
2002-11-02 23:17:16 +00:00
|
|
|
$(OBJDUMP) -d $< > $@
|
|
|
|
|
2011-11-01 20:00:29 +00:00
|
|
|
$(obj)u-boot.ubl: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
|
|
|
|
$(OBJCOPY) ${OBJCFLAGS} --pad-to=$(PAD_TO) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
|
|
|
|
cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $(obj)u-boot-ubl.bin
|
2011-07-16 00:06:42 +00:00
|
|
|
$(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \
|
2011-11-01 20:00:29 +00:00
|
|
|
-e $(CONFIG_SYS_TEXT_BASE) -d $(obj)u-boot-ubl.bin $(obj)u-boot.ubl
|
|
|
|
rm $(obj)u-boot-ubl.bin
|
|
|
|
rm $(obj)spl/u-boot-spl-pad.bin
|
2011-07-16 00:06:42 +00:00
|
|
|
|
2011-12-09 09:47:39 +00:00
|
|
|
$(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
|
|
|
|
$(obj)tools/mkimage -s -n /dev/null -T aisimage \
|
|
|
|
-e $(CONFIG_SPL_TEXT_BASE) \
|
|
|
|
-d $(obj)spl/u-boot-spl.bin \
|
|
|
|
$(obj)spl/u-boot-spl.ais
|
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -I binary \
|
|
|
|
--pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \
|
|
|
|
$(obj)spl/u-boot-spl.ais $(obj)spl/u-boot-spl-pad.ais
|
|
|
|
cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.bin > \
|
|
|
|
$(obj)u-boot.ais
|
|
|
|
rm $(obj)spl/u-boot-spl{,-pad}.ais
|
|
|
|
|
2011-11-08 23:18:19 +00:00
|
|
|
$(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin
|
|
|
|
elftosb -zdf imx28 -c $(TOPDIR)/board/$(BOARDDIR)/u-boot.bd \
|
|
|
|
-o $(obj)u-boot.sb
|
|
|
|
|
2012-01-05 10:19:50 +00:00
|
|
|
# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.
|
|
|
|
# Both images are created using mkimage (crc etc), so that the ROM
|
|
|
|
# bootloader can check its integrity. Padding needs to be done to the
|
|
|
|
# SPL image (with mkimage header) and not the binary. Otherwise the resulting image
|
|
|
|
# which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
|
|
|
|
# The resulting image containing both U-Boot images is called u-boot.spr
|
|
|
|
$(obj)u-boot.spr: $(obj)u-boot.img $(obj)spl/u-boot-spl.bin
|
|
|
|
$(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
|
|
|
|
-a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \
|
|
|
|
-d $(obj)spl/u-boot-spl.bin $(obj)spl/u-boot-spl.img
|
|
|
|
tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_SPL_PAD_TO) \
|
|
|
|
of=$(obj)spl/u-boot-spl-pad.img 2>/dev/null
|
|
|
|
dd if=$(obj)spl/u-boot-spl.img of=$(obj)spl/u-boot-spl-pad.img \
|
|
|
|
conv=notrunc 2>/dev/null
|
|
|
|
cat $(obj)spl/u-boot-spl-pad.img $(obj)u-boot.img > $@
|
|
|
|
|
2011-10-03 19:26:50 +00:00
|
|
|
ifeq ($(CONFIG_SANDBOX),y)
|
|
|
|
GEN_UBOOT = \
|
|
|
|
cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \
|
|
|
|
-Wl,--start-group $(__LIBS) -Wl,--end-group \
|
|
|
|
$(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
|
|
|
|
else
|
2009-05-20 08:35:14 +00:00
|
|
|
GEN_UBOOT = \
|
2008-04-30 15:25:07 +00:00
|
|
|
UNDEF_SYM=`$(OBJDUMP) -x $(LIBBOARD) $(LIBS) | \
|
|
|
|
sed -n -e 's/.*\($(SYM_PREFIX)__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
|
2011-01-06 01:23:54 +00:00
|
|
|
cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) $$UNDEF_SYM $(__OBJS) \
|
2006-09-01 17:49:50 +00:00
|
|
|
--start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
|
2002-11-19 23:01:07 +00:00
|
|
|
-Map u-boot.map -o u-boot
|
2011-10-03 19:26:50 +00:00
|
|
|
endif
|
|
|
|
|
2010-10-25 22:08:35 +00:00
|
|
|
$(obj)u-boot: depend \
|
2011-10-17 21:04:15 +00:00
|
|
|
$(SUBDIR_TOOLS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
|
2009-05-20 08:35:14 +00:00
|
|
|
$(GEN_UBOOT)
|
|
|
|
ifeq ($(CONFIG_KALLSYMS),y)
|
2009-08-17 12:00:53 +00:00
|
|
|
smap=`$(call SYSTEM_MAP,u-boot) | \
|
|
|
|
awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
|
|
|
|
$(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
|
|
|
|
-c common/system_map.c -o $(obj)common/system_map.o
|
2009-05-20 08:35:14 +00:00
|
|
|
$(GEN_UBOOT) $(obj)common/system_map.o
|
|
|
|
endif
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(OBJS): depend
|
2010-04-13 03:28:02 +00:00
|
|
|
$(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2011-10-17 21:04:15 +00:00
|
|
|
$(LIBS): depend $(SUBDIR_TOOLS)
|
2006-09-01 17:49:50 +00:00
|
|
|
$(MAKE) -C $(dir $(subst $(obj),,$@))
|
2003-12-06 19:49:23 +00:00
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(LIBBOARD): depend $(LIBS)
|
2008-04-30 15:25:07 +00:00
|
|
|
$(MAKE) -C $(dir $(subst $(obj),,$@))
|
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(SUBDIRS): depend
|
2003-12-07 21:39:28 +00:00
|
|
|
$(MAKE) -C $@ all
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2011-10-17 21:04:15 +00:00
|
|
|
$(SUBDIR_EXAMPLES): $(obj)u-boot
|
|
|
|
|
2009-03-13 23:54:25 +00:00
|
|
|
$(LDSCRIPT): depend
|
2008-02-16 07:12:37 +00:00
|
|
|
$(MAKE) -C $(dir $@) $(notdir $@)
|
|
|
|
|
2009-08-17 12:00:53 +00:00
|
|
|
$(obj)u-boot.lds: $(LDSCRIPT)
|
|
|
|
$(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
|
|
|
|
|
2011-01-27 14:44:59 +00:00
|
|
|
nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
|
2006-10-23 20:17:05 +00:00
|
|
|
$(MAKE) -C nand_spl/board/$(BOARDDIR) all
|
2006-09-07 09:51:23 +00:00
|
|
|
|
2011-01-27 14:44:59 +00:00
|
|
|
$(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin
|
2006-10-23 20:17:05 +00:00
|
|
|
cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
|
2006-09-07 09:51:23 +00:00
|
|
|
|
2011-01-27 14:44:59 +00:00
|
|
|
onenand_ipl: $(TIMESTAMP_FILE) $(VERSION_FILE) $(obj)include/autoconf.mk
|
2008-08-06 12:05:38 +00:00
|
|
|
$(MAKE) -C onenand_ipl/board/$(BOARDDIR) all
|
2008-01-17 07:43:25 +00:00
|
|
|
|
2011-01-27 14:44:59 +00:00
|
|
|
$(obj)u-boot-onenand.bin: onenand_ipl $(obj)u-boot.bin
|
2009-09-22 00:05:00 +00:00
|
|
|
cat $(ONENAND_BIN) $(obj)u-boot.bin > $(obj)u-boot-onenand.bin
|
2008-01-17 07:43:25 +00:00
|
|
|
|
2011-11-05 07:43:33 +00:00
|
|
|
$(obj)spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend
|
2011-07-13 05:11:04 +00:00
|
|
|
$(MAKE) -C spl all
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
updater:
|
2010-08-15 04:03:21 +00:00
|
|
|
$(MAKE) -C tools/updater all
|
2003-08-07 14:20:31 +00:00
|
|
|
|
2010-01-18 17:13:39 +00:00
|
|
|
# Explicitly make _depend in subdirs containing multiple targets to prevent
|
|
|
|
# parallel sub-makes creating .depend files simultaneously.
|
2010-10-25 22:08:35 +00:00
|
|
|
depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \
|
|
|
|
$(obj)include/autoconf.mk \
|
2011-09-05 04:32:28 +00:00
|
|
|
$(obj)include/generated/generic-asm-offsets.h \
|
|
|
|
$(obj)include/generated/asm-offsets.h
|
2011-11-21 10:49:37 +00:00
|
|
|
for dir in $(SUBDIRS) $(CPUDIR) $(LDSCRIPT_MAKEFILE_DIR) ; do \
|
2010-01-18 17:13:39 +00:00
|
|
|
$(MAKE) -C $$dir _depend ; done
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-12-09 10:13:26 +00:00
|
|
|
TAG_SUBDIRS = $(SUBDIRS)
|
|
|
|
TAG_SUBDIRS += $(dir $(__LIBS))
|
2007-11-25 17:45:47 +00:00
|
|
|
TAG_SUBDIRS += include
|
|
|
|
|
2011-07-18 01:21:18 +00:00
|
|
|
FIND := find
|
|
|
|
FINDFLAGS := -L
|
|
|
|
|
2012-02-02 14:07:05 +00:00
|
|
|
checkstack:
|
|
|
|
$(CROSS_COMPILE)objdump -d $(obj)u-boot \
|
|
|
|
`$(FIND) $(obj) -name u-boot-spl -print` | \
|
|
|
|
perl $(src)tools/checkstack.pl $(ARCH)
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
tags ctags:
|
2011-07-18 01:21:18 +00:00
|
|
|
ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
|
2009-12-09 10:13:26 +00:00
|
|
|
-name '*.[chS]' -print`
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
etags:
|
2011-07-18 01:21:18 +00:00
|
|
|
etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
|
2009-12-09 10:13:26 +00:00
|
|
|
-name '*.[chS]' -print`
|
2008-02-29 03:46:05 +00:00
|
|
|
cscope:
|
2011-07-18 01:21:18 +00:00
|
|
|
$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
|
|
|
|
cscope.files
|
2008-02-29 03:46:05 +00:00
|
|
|
cscope -b -q -k
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2009-05-20 08:35:14 +00:00
|
|
|
SYSTEM_MAP = \
|
|
|
|
$(NM) $1 | \
|
2002-11-02 23:17:16 +00:00
|
|
|
grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
|
2009-05-20 08:35:14 +00:00
|
|
|
LC_ALL=C sort
|
|
|
|
$(obj)System.map: $(obj)u-boot
|
|
|
|
@$(call SYSTEM_MAP,$<) > $(obj)System.map
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2012-03-16 06:34:35 +00:00
|
|
|
checkthumb:
|
|
|
|
@if test $(call cc-version) -lt 0404; then \
|
|
|
|
echo -n '*** Your GCC does not produce working '; \
|
|
|
|
echo 'binaries in THUMB mode.'; \
|
|
|
|
echo '*** Your board is configured for THUMB mode.'; \
|
|
|
|
false; \
|
|
|
|
fi
|
2007-09-24 15:05:31 +00:00
|
|
|
#
|
|
|
|
# Auto-generate the autoconf.mk file (which is included by all makefiles)
|
|
|
|
#
|
|
|
|
# This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
|
|
|
|
# the dep file is only include in this top level makefile to determine when
|
|
|
|
# to regenerate the autoconf.mk file.
|
2008-05-13 21:15:52 +00:00
|
|
|
$(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
|
|
|
|
@$(XECHO) Generating $@ ; \
|
2008-02-18 10:10:07 +00:00
|
|
|
set -e ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
: Generate the dependancies ; \
|
2011-10-12 19:48:00 +00:00
|
|
|
$(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \
|
2008-05-13 21:15:52 +00:00
|
|
|
-MQ $(obj)include/autoconf.mk include/common.h > $@
|
|
|
|
|
|
|
|
$(obj)include/autoconf.mk: $(obj)include/config.h
|
|
|
|
@$(XECHO) Generating $@ ; \
|
|
|
|
set -e ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
: Extract the config macros ; \
|
2008-05-13 21:15:52 +00:00
|
|
|
$(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
|
2008-12-16 13:41:02 +00:00
|
|
|
sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
|
|
|
|
mv $@.tmp $@
|
2007-09-24 15:05:31 +00:00
|
|
|
|
2010-10-25 22:08:35 +00:00
|
|
|
$(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \
|
|
|
|
$(obj)lib/asm-offsets.s
|
|
|
|
@$(XECHO) Generating $@
|
|
|
|
tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
|
|
|
|
|
|
|
|
$(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \
|
|
|
|
$(src)lib/asm-offsets.c
|
|
|
|
@mkdir -p $(obj)lib
|
|
|
|
$(CC) -DDO_DEPS_ONLY \
|
|
|
|
$(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
|
|
|
|
-o $@ $(src)lib/asm-offsets.c -c -S
|
|
|
|
|
2011-09-05 04:32:28 +00:00
|
|
|
$(obj)include/generated/asm-offsets.h: $(obj)include/autoconf.mk.dep \
|
|
|
|
$(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
|
2012-07-26 20:52:41 +00:00
|
|
|
@$(XECHO) Generating $@
|
2011-09-05 04:32:28 +00:00
|
|
|
tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@
|
|
|
|
|
|
|
|
$(obj)$(CPUDIR)/$(SOC)/asm-offsets.s: $(obj)include/autoconf.mk.dep
|
|
|
|
@mkdir -p $(obj)$(CPUDIR)/$(SOC)
|
|
|
|
if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
|
|
|
|
$(CC) -DDO_DEPS_ONLY \
|
|
|
|
$(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
|
|
|
|
-o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
|
|
|
|
else \
|
|
|
|
touch $@; \
|
|
|
|
fi
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
2008-01-12 23:59:21 +00:00
|
|
|
else # !config.mk
|
2006-09-01 17:49:50 +00:00
|
|
|
all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
|
|
|
|
$(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
|
2011-10-03 09:57:10 +00:00
|
|
|
$(filter-out tools,$(SUBDIRS)) \
|
2010-08-15 04:03:21 +00:00
|
|
|
updater depend dep tags ctags etags cscope $(obj)System.map:
|
2002-11-02 23:17:16 +00:00
|
|
|
@echo "System not configured - see README" >&2
|
|
|
|
@ exit 1
|
2010-01-21 09:03:22 +00:00
|
|
|
|
2011-10-03 09:57:10 +00:00
|
|
|
tools: $(VERSION_FILE) $(TIMESTAMP_FILE)
|
2010-08-15 04:03:21 +00:00
|
|
|
$(MAKE) -C $@ all
|
2008-01-12 23:59:21 +00:00
|
|
|
endif # config.mk
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2011-06-20 12:45:38 +00:00
|
|
|
$(VERSION_FILE):
|
2011-06-30 16:56:20 +00:00
|
|
|
@mkdir -p $(dir $(VERSION_FILE))
|
2011-06-20 12:45:38 +00:00
|
|
|
@( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \
|
|
|
|
printf '#define PLAIN_VERSION "%s%s"\n' \
|
|
|
|
"$(U_BOOT_VERSION)" "$${localvers}" ; \
|
|
|
|
printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
|
|
|
|
"$(U_BOOT_VERSION)" "$${localvers}" ; \
|
|
|
|
) > $@.tmp
|
|
|
|
@( printf '#define CC_VERSION_STRING "%s"\n' \
|
|
|
|
'$(shell $(CC) --version | head -n 1)' )>> $@.tmp
|
|
|
|
@( printf '#define LD_VERSION_STRING "%s"\n' \
|
|
|
|
'$(shell $(LD) -v | head -n 1)' )>> $@.tmp
|
|
|
|
@cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
|
|
|
|
|
2011-10-03 09:57:10 +00:00
|
|
|
$(TIMESTAMP_FILE):
|
|
|
|
@mkdir -p $(dir $(TIMESTAMP_FILE))
|
2011-10-03 09:57:11 +00:00
|
|
|
@LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
|
|
|
|
@LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
|
|
|
|
@cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
|
2011-10-03 09:57:10 +00:00
|
|
|
|
2010-08-15 04:03:21 +00:00
|
|
|
easylogo env gdb:
|
|
|
|
$(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
|
|
|
|
gdbtools: gdb
|
|
|
|
|
2011-10-03 09:57:10 +00:00
|
|
|
tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
|
2010-08-15 04:03:21 +00:00
|
|
|
$(MAKE) -C tools HOST_TOOLS_ALL=y
|
|
|
|
|
2006-10-24 22:43:17 +00:00
|
|
|
.PHONY : CHANGELOG
|
|
|
|
CHANGELOG:
|
2006-10-26 18:38:25 +00:00
|
|
|
git log --no-merges U-Boot-1_1_5.. | \
|
|
|
|
unexpand -a | sed -e 's/\s\s*$$//' > $@
|
2006-10-24 22:43:17 +00:00
|
|
|
|
2008-07-09 14:30:30 +00:00
|
|
|
include/license.h: tools/bin2header COPYING
|
2010-05-27 21:18:33 +00:00
|
|
|
cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
|
2002-11-02 23:17:16 +00:00
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
unconfig:
|
2006-09-07 09:51:23 +00:00
|
|
|
@rm -f $(obj)include/config.h $(obj)include/config.mk \
|
2007-09-24 15:05:31 +00:00
|
|
|
$(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
|
|
|
|
$(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2010-05-27 21:18:36 +00:00
|
|
|
%_config:: unconfig
|
|
|
|
@$(MKCONFIG) -A $(@:_config=)
|
|
|
|
|
2011-01-19 12:16:30 +00:00
|
|
|
sinclude $(obj).boards.depend
|
|
|
|
$(obj).boards.depend: boards.cfg
|
2011-12-20 04:23:57 +00:00
|
|
|
@awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@
|
2009-10-01 16:11:54 +00:00
|
|
|
|
2010-05-27 21:18:35 +00:00
|
|
|
#
|
|
|
|
# Functions to generate common board directory names
|
|
|
|
#
|
|
|
|
lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/')
|
|
|
|
ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')
|
|
|
|
|
2002-11-02 23:17:16 +00:00
|
|
|
#========================================================================
|
|
|
|
# ARM
|
|
|
|
#========================================================================
|
2009-11-11 09:27:30 +00:00
|
|
|
|
2009-01-28 20:58:03 +00:00
|
|
|
SX1_stdout_serial_config \
|
|
|
|
SX1_config: unconfig
|
|
|
|
@mkdir -p $(obj)include
|
|
|
|
@if [ "$(findstring _stdout_serial_, $@)" ] ; then \
|
|
|
|
echo "#undef CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
|
|
|
|
else \
|
|
|
|
echo "#define CONFIG_STDOUT_USBTTY" >> $(obj)include/config.h ; \
|
|
|
|
fi;
|
2010-05-27 21:18:33 +00:00
|
|
|
@$(MKCONFIG) -n $@ SX1 arm arm925t sx1
|
2004-06-09 21:50:45 +00:00
|
|
|
|
2008-08-30 22:39:47 +00:00
|
|
|
#########################################################################
|
|
|
|
## ARM1176 Systems
|
|
|
|
#########################################################################
|
|
|
|
smdk6400_noUSB_config \
|
|
|
|
smdk6400_config : unconfig
|
|
|
|
@mkdir -p $(obj)include $(obj)board/samsung/smdk6400
|
|
|
|
@mkdir -p $(obj)nand_spl/board/samsung/smdk6400
|
|
|
|
@echo "#define CONFIG_NAND_U_BOOT" > $(obj)include/config.h
|
2010-05-27 21:18:33 +00:00
|
|
|
@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
|
2008-08-30 22:39:47 +00:00
|
|
|
@if [ -z "$(findstring smdk6400_noUSB_config,$@)" ]; then \
|
|
|
|
echo "RAM_TEXT = 0x57e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
|
|
|
|
else \
|
|
|
|
echo "RAM_TEXT = 0xc7e00000" >> $(obj)board/samsung/smdk6400/config.tmp;\
|
|
|
|
fi
|
2010-06-17 23:20:49 +00:00
|
|
|
@$(MKCONFIG) smdk6400 arm arm1176 smdk6400 samsung s3c64xx
|
2008-08-30 22:39:47 +00:00
|
|
|
@echo "CONFIG_NAND_U_BOOT = y" >> $(obj)include/config.mk
|
|
|
|
|
2003-04-05 00:53:31 +00:00
|
|
|
#########################################################################
|
|
|
|
#########################################################################
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
clean:
|
2009-07-10 16:03:19 +00:00
|
|
|
@rm -f $(obj)examples/standalone/82559_eeprom \
|
2009-09-07 21:52:31 +00:00
|
|
|
$(obj)examples/standalone/atmel_df_pow2 \
|
2009-07-10 16:03:19 +00:00
|
|
|
$(obj)examples/standalone/eepro100_eeprom \
|
|
|
|
$(obj)examples/standalone/hello_world \
|
|
|
|
$(obj)examples/standalone/interrupt \
|
|
|
|
$(obj)examples/standalone/mem_to_mem_idma2intr \
|
|
|
|
$(obj)examples/standalone/sched \
|
2011-05-07 12:05:30 +00:00
|
|
|
$(obj)examples/standalone/smc911{11,x}_eeprom \
|
2009-07-10 16:03:19 +00:00
|
|
|
$(obj)examples/standalone/test_burst \
|
|
|
|
$(obj)examples/standalone/timer
|
2009-07-21 00:02:21 +00:00
|
|
|
@rm -f $(obj)examples/api/demo{,.bin}
|
2008-03-04 13:58:31 +00:00
|
|
|
@rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
|
|
|
|
$(obj)tools/env/{fw_printenv,fw_setenv} \
|
|
|
|
$(obj)tools/envcrc \
|
|
|
|
$(obj)tools/gdb/{astest,gdbcont,gdbsend} \
|
|
|
|
$(obj)tools/gen_eth_addr $(obj)tools/img2srec \
|
2011-11-28 23:42:14 +00:00
|
|
|
$(obj)tools/mk{env,}image $(obj)tools/mpc86x_clk \
|
2012-02-05 23:01:48 +00:00
|
|
|
$(obj)tools/mk{smdk5250,}spl \
|
2008-03-04 13:58:31 +00:00
|
|
|
$(obj)tools/ncb $(obj)tools/ubsha1
|
|
|
|
@rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \
|
2010-10-16 16:24:16 +00:00
|
|
|
$(obj)board/matrix_vision/*/bootscript.img \
|
2011-05-01 18:44:23 +00:00
|
|
|
$(obj)board/voiceblue/eeprom \
|
2009-08-17 12:00:53 +00:00
|
|
|
$(obj)u-boot.lds \
|
2011-05-07 21:55:04 +00:00
|
|
|
$(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \
|
|
|
|
$(obj)arch/blackfin/cpu/init.{lds,elf}
|
2008-04-20 22:39:38 +00:00
|
|
|
@rm -f $(obj)include/bmp_logo.h
|
2011-10-20 23:04:20 +00:00
|
|
|
@rm -f $(obj)include/bmp_logo_data.h
|
2010-10-25 22:08:35 +00:00
|
|
|
@rm -f $(obj)lib/asm-offsets.s
|
2011-09-05 04:32:28 +00:00
|
|
|
@rm -f $(obj)include/generated/asm-offsets.h
|
|
|
|
@rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
|
2011-06-30 06:17:02 +00:00
|
|
|
@rm -f $(obj)nand_spl/{u-boot.lds,u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map,System.map}
|
2009-09-22 00:05:00 +00:00
|
|
|
@rm -f $(obj)onenand_ipl/onenand-{ipl,ipl.bin,ipl.map}
|
|
|
|
@rm -f $(ONENAND_BIN)
|
2009-08-17 12:00:53 +00:00
|
|
|
@rm -f $(obj)onenand_ipl/u-boot.lds
|
2011-07-13 05:11:04 +00:00
|
|
|
@rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.lds,u-boot-spl.map}
|
2011-10-12 16:12:55 +00:00
|
|
|
@rm -f $(obj)MLO
|
2009-07-21 00:02:21 +00:00
|
|
|
@rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
|
2008-01-12 23:59:21 +00:00
|
|
|
@find $(OBJTREE) -type f \
|
2012-02-20 13:50:10 +00:00
|
|
|
\( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \
|
2009-03-13 23:54:26 +00:00
|
|
|
-o -name '*.o' -o -name '*.a' -o -name '*.exe' \) -print \
|
2002-11-02 23:17:16 +00:00
|
|
|
| xargs rm -f
|
|
|
|
|
2011-11-21 13:40:43 +00:00
|
|
|
# Removes everything not needed for testing u-boot
|
|
|
|
tidy: clean
|
|
|
|
@find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f
|
|
|
|
|
|
|
|
clobber: tidy
|
|
|
|
@find $(OBJTREE) -type f \( -name '*.srec' \
|
|
|
|
-o -name '*.bin' -o -name u-boot.img \) \
|
|
|
|
-print0 | xargs -0 rm -f
|
2008-02-29 03:46:05 +00:00
|
|
|
@rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
|
2008-03-02 21:45:33 +00:00
|
|
|
$(obj)cscope.* $(obj)*.*~
|
2011-07-13 05:11:01 +00:00
|
|
|
@rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y)
|
2009-09-07 09:35:02 +00:00
|
|
|
@rm -f $(obj)u-boot.kwb
|
2012-08-10 02:49:35 +00:00
|
|
|
@rm -f $(obj)u-boot.pbl
|
2010-02-05 14:13:58 +00:00
|
|
|
@rm -f $(obj)u-boot.imx
|
2011-07-16 00:06:42 +00:00
|
|
|
@rm -f $(obj)u-boot.ubl
|
2011-12-09 09:47:39 +00:00
|
|
|
@rm -f $(obj)u-boot.ais
|
2011-10-15 05:48:21 +00:00
|
|
|
@rm -f $(obj)u-boot.dtb
|
2011-11-08 23:18:19 +00:00
|
|
|
@rm -f $(obj)u-boot.sb
|
2012-01-05 10:19:50 +00:00
|
|
|
@rm -f $(obj)u-boot.spr
|
2012-07-27 21:44:24 +00:00
|
|
|
@rm -f $(obj)tools/xway-swap-bytes
|
2010-04-15 14:07:28 +00:00
|
|
|
@rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
|
2011-10-25 06:29:17 +00:00
|
|
|
@rm -f $(obj)arch/powerpc/cpu/mpc83xx/ddr-gen?.c
|
2011-01-19 12:16:29 +00:00
|
|
|
@rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
|
2010-10-25 22:08:35 +00:00
|
|
|
@rm -fr $(obj)include/generated
|
2008-08-16 16:54:27 +00:00
|
|
|
@[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
|
|
|
|
@[ ! -d $(obj)onenand_ipl ] || find $(obj)onenand_ipl -name "*" -type l -print | xargs rm -f
|
2011-10-15 05:48:21 +00:00
|
|
|
@rm -f $(obj)dts/*.tmp
|
2006-09-01 17:49:50 +00:00
|
|
|
|
|
|
|
mrproper \
|
|
|
|
distclean: clobber unconfig
|
2011-06-24 18:37:55 +00:00
|
|
|
ifneq ($(OBJTREE),$(SRCTREE))
|
2008-01-12 23:59:21 +00:00
|
|
|
rm -rf $(obj)*
|
2006-09-01 17:49:50 +00:00
|
|
|
endif
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
backup:
|
|
|
|
F=`basename $(TOPDIR)` ; cd .. ; \
|
2010-06-21 14:13:21 +00:00
|
|
|
gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
#########################################################################
|