2002-11-02 23:17:16 +00:00
|
|
|
#
|
Licenses: introduce SPDX Unique Lincense Identifiers
Like many other projects, U-Boot has a tradition of including big
blocks of License headers in all files. This not only blows up the
source code with mostly redundant information, but also makes it very
difficult to generate License Clearing Reports. An additional problem
is that even the same lincenses are referred to by a number of
slightly varying text blocks (full, abbreviated, different
indentation, line wrapping and/or white space, with obsolete address
information, ...) which makes automatic processing a nightmare.
To make this easier, such license headers in the source files will be
replaced with a single line reference to Unique Lincense Identifiers
as defined by the Linux Foundation's SPDX project [1]. For example,
in a source file the full "GPL v2.0 or later" header text will be
replaced by a single line:
SPDX-License-Identifier: GPL-2.0+
We use the SPDX Unique Lincense Identifiers here; these are available
at [2].
Note: From the legal point of view, this patch is supposed to be only
a change to the textual representation of the license information,
but in no way any change to the actual license terms. With this patch
applied, all files will still be licensed under the same terms they
were before.
Note 2: The apparent difference between the old "COPYING" and the new
"Licenses/gpl-2.0.txt" only results from switching to the upstream
version of the license which is differently formatted; there are not
any actual changes to the content.
Note 3: There are some recurring questions about linense issues, such
as:
- Is a "All Rights Reserved" clause a problem in GPL code?
- Are files without any license header a problem?
- Do we need license headers at all?
The following excerpt from an e-mail by Daniel B. Ravicher should help
with these:
| Message-ID: <4ADF8CAA.5030808@softwarefreedom.org>
| Date: Wed, 21 Oct 2009 18:35:22 -0400
| From: "Daniel B. Ravicher" <ravicher@softwarefreedom.org>
| To: Wolfgang Denk <wd@denx.de>
| Subject: Re: GPL and license cleanup questions
|
| Mr. Denk,
|
| Wolfgang Denk wrote:
| > - There are a number of files which do not include any specific
| > license information at all. Is it correct to assume that these files
| > are automatically covered by the "GPL v2 or later" clause as
| > specified by the COPYING file in the top level directory of the
| > U-Boot source tree?
|
| That is a very fact specific analysis and could be different across the
| various files. However, if the contributor could reasonably be expected
| to have known that the project was licensed GPLv2 or later at the time
| she made her contribution, then a reasonably implication is that she
| consented to her contributions being distributed under those terms.
|
| > - Do such files need any clean up, for example should we add GPL
| > headers to them, or is this not needed?
|
| If the project as a whole is licensed under clear terms, you need not
| identify those same terms in each file, although there is no harm in
| doing so.
|
| > - There are other files, which include both a GPL license header
| > _plus_ some copyright note with an "All Rights Reserved" clause. It
| > has been my understanding that this is a conflict, and me must ask
| > the copyright holders to remove such "All Rights Reserved" clauses.
| > But then, some people claim that "All Rights Reserved" is a no-op
| > nowadays. License checking tools (like OSLC) seem to indicate this is
| > a problem, but then we see quite a lot of "All rights reserved" in
| > BSD-licensed files in gcc and glibc. So what is the correct way to
| > deal with such files?
|
| It is not a conflict to grant a license and also reserve all rights, as
| implicit in that language is that you are reserving all "other" rights
| not granted in the license. Thus, a file with "Licensed under GPL, All
| Rights Reserved" would mean that it is licensed under the GPL, but no
| other rights are given to copy, modify or redistribute it.
|
| Warm regards,
| --Dan
|
| Daniel B. Ravicher, Legal Director
| Software Freedom Law Center (SFLC) and Moglen Ravicher LLC
| 1995 Broadway, 17th Fl., New York, NY 10023
| (212) 461-1902 direct (212) 580-0800 main (212) 580-0898 fax
| ravicher@softwarefreedom.org www.softwarefreedom.org
[1] http://spdx.org/
[2] http://spdx.org/licenses/
Signed-off-by: Wolfgang Denk <wd@denx.de>
2013-06-21 08:22:36 +00:00
|
|
|
# (C) Copyright 2000-2013
|
2002-11-02 23:17:16 +00:00
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
Licenses: introduce SPDX Unique Lincense Identifiers
Like many other projects, U-Boot has a tradition of including big
blocks of License headers in all files. This not only blows up the
source code with mostly redundant information, but also makes it very
difficult to generate License Clearing Reports. An additional problem
is that even the same lincenses are referred to by a number of
slightly varying text blocks (full, abbreviated, different
indentation, line wrapping and/or white space, with obsolete address
information, ...) which makes automatic processing a nightmare.
To make this easier, such license headers in the source files will be
replaced with a single line reference to Unique Lincense Identifiers
as defined by the Linux Foundation's SPDX project [1]. For example,
in a source file the full "GPL v2.0 or later" header text will be
replaced by a single line:
SPDX-License-Identifier: GPL-2.0+
We use the SPDX Unique Lincense Identifiers here; these are available
at [2].
Note: From the legal point of view, this patch is supposed to be only
a change to the textual representation of the license information,
but in no way any change to the actual license terms. With this patch
applied, all files will still be licensed under the same terms they
were before.
Note 2: The apparent difference between the old "COPYING" and the new
"Licenses/gpl-2.0.txt" only results from switching to the upstream
version of the license which is differently formatted; there are not
any actual changes to the content.
Note 3: There are some recurring questions about linense issues, such
as:
- Is a "All Rights Reserved" clause a problem in GPL code?
- Are files without any license header a problem?
- Do we need license headers at all?
The following excerpt from an e-mail by Daniel B. Ravicher should help
with these:
| Message-ID: <4ADF8CAA.5030808@softwarefreedom.org>
| Date: Wed, 21 Oct 2009 18:35:22 -0400
| From: "Daniel B. Ravicher" <ravicher@softwarefreedom.org>
| To: Wolfgang Denk <wd@denx.de>
| Subject: Re: GPL and license cleanup questions
|
| Mr. Denk,
|
| Wolfgang Denk wrote:
| > - There are a number of files which do not include any specific
| > license information at all. Is it correct to assume that these files
| > are automatically covered by the "GPL v2 or later" clause as
| > specified by the COPYING file in the top level directory of the
| > U-Boot source tree?
|
| That is a very fact specific analysis and could be different across the
| various files. However, if the contributor could reasonably be expected
| to have known that the project was licensed GPLv2 or later at the time
| she made her contribution, then a reasonably implication is that she
| consented to her contributions being distributed under those terms.
|
| > - Do such files need any clean up, for example should we add GPL
| > headers to them, or is this not needed?
|
| If the project as a whole is licensed under clear terms, you need not
| identify those same terms in each file, although there is no harm in
| doing so.
|
| > - There are other files, which include both a GPL license header
| > _plus_ some copyright note with an "All Rights Reserved" clause. It
| > has been my understanding that this is a conflict, and me must ask
| > the copyright holders to remove such "All Rights Reserved" clauses.
| > But then, some people claim that "All Rights Reserved" is a no-op
| > nowadays. License checking tools (like OSLC) seem to indicate this is
| > a problem, but then we see quite a lot of "All rights reserved" in
| > BSD-licensed files in gcc and glibc. So what is the correct way to
| > deal with such files?
|
| It is not a conflict to grant a license and also reserve all rights, as
| implicit in that language is that you are reserving all "other" rights
| not granted in the license. Thus, a file with "Licensed under GPL, All
| Rights Reserved" would mean that it is licensed under the GPL, but no
| other rights are given to copy, modify or redistribute it.
|
| Warm regards,
| --Dan
|
| Daniel B. Ravicher, Legal Director
| Software Freedom Law Center (SFLC) and Moglen Ravicher LLC
| 1995 Broadway, 17th Fl., New York, NY 10023
| (212) 461-1902 direct (212) 580-0800 main (212) 580-0898 fax
| ravicher@softwarefreedom.org www.softwarefreedom.org
[1] http://spdx.org/
[2] http://spdx.org/licenses/
Signed-off-by: Wolfgang Denk <wd@denx.de>
2013-06-21 08:22:36 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2002-11-02 23:17:16 +00:00
|
|
|
#
|
|
|
|
|
2013-11-25 21:49:32 +00:00
|
|
|
VERSION = 2014
|
|
|
|
PATCHLEVEL = 01
|
2012-07-10 07:21:12 +00:00
|
|
|
SUBLEVEL =
|
2014-01-20 22:52:59 +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/')
|
|
|
|
|
2013-04-11 09:35:54 +00:00
|
|
|
export HOSTARCH HOSTOS
|
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
|
|
|
#
|
2013-09-16 11:15:45 +00:00
|
|
|
# U-boot build supports generating object files in a separate external
|
2006-09-01 17:49:50 +00:00
|
|
|
# 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'
|
|
|
|
#
|
2013-09-16 11:15:45 +00:00
|
|
|
# 2) Set environment variable BUILD_DIR to point to the desired location
|
2006-09-01 17:49:50 +00:00
|
|
|
# '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
|
|
|
#
|
2013-09-16 11:15:45 +00:00
|
|
|
# Command line 'O=' setting overrides BUILD_DIR environment 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
|
|
|
|
|
|
|
ifeq ("$(origin O)", "command line")
|
|
|
|
BUILD_DIR := $(O)
|
|
|
|
endif
|
|
|
|
|
2012-09-21 12:28:17 +00:00
|
|
|
# Call a source code checker (by default, "sparse") as part of the
|
|
|
|
# C compilation.
|
|
|
|
#
|
|
|
|
# Use 'make C=1' to enable checking of re-compiled files.
|
|
|
|
#
|
|
|
|
# See the linux kernel file "Documentation/sparse.txt" for more details,
|
|
|
|
# including where to get the "sparse" utility.
|
|
|
|
|
|
|
|
ifdef C
|
|
|
|
ifeq ("$(origin C)", "command line")
|
|
|
|
CHECKSRC := $(C)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
ifndef CHECKSRC
|
|
|
|
CHECKSRC = 0
|
|
|
|
endif
|
|
|
|
export CHECKSRC
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
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
|
2013-08-16 07:16:15 +00:00
|
|
|
TPLTREE := $(OBJTREE)/tpl
|
2006-09-01 17:49:50 +00:00
|
|
|
SRCTREE := $(CURDIR)
|
2014-02-04 08:24:18 +00:00
|
|
|
srctree := $(SRCTREE)
|
2006-09-01 17:49:50 +00:00
|
|
|
TOPDIR := $(SRCTREE)
|
|
|
|
LNDIR := $(OBJTREE)
|
2014-02-04 08:24:18 +00:00
|
|
|
export TOPDIR SRCTREE srctree OBJTREE SPLTREE TPLTREE
|
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
|
|
|
# $(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
|
|
|
|
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
|
|
|
|
|
2013-11-18 02:08:35 +00:00
|
|
|
SUBDIR_EXAMPLES-y := examples/standalone
|
|
|
|
SUBDIR_EXAMPLES-$(CONFIG_API) += examples/api
|
2011-10-25 11:29:28 +00:00
|
|
|
ifndef CONFIG_SANDBOX
|
2013-11-18 02:08:35 +00:00
|
|
|
SUBDIRS += $(SUBDIR_EXAMPLES-y)
|
2011-10-25 11:29:28 +00:00
|
|
|
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
|
|
|
|
2014-02-04 08:24:15 +00:00
|
|
|
# SHELL used by kbuild
|
|
|
|
CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
|
|
|
|
else if [ -x /bin/bash ]; then echo /bin/bash; \
|
|
|
|
else echo sh; fi ; fi)
|
|
|
|
|
|
|
|
HOSTCC = gcc
|
|
|
|
HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
|
|
|
|
|
|
|
|
ifeq ($(HOSTOS),cygwin)
|
|
|
|
HOSTCFLAGS += -ansi
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Mac OS X / Darwin's C preprocessor is Apple specific. It
|
|
|
|
# generates numerous errors and warnings. We want to bypass it
|
|
|
|
# and use GNU C's cpp. To do this we pass the -traditional-cpp
|
|
|
|
# option to the compiler. Note that the -traditional-cpp flag
|
|
|
|
# DOES NOT have the same semantics as GNU C's flag, all it does
|
|
|
|
# is invoke the GNU preprocessor in stock ANSI/ISO C fashion.
|
|
|
|
#
|
|
|
|
# Apple's linker is similar, thanks to the new 2 stage linking
|
|
|
|
# multiple symbol definitions are treated as errors, hence the
|
|
|
|
# -multiply_defined suppress option to turn off this error.
|
|
|
|
#
|
|
|
|
ifeq ($(HOSTOS),darwin)
|
|
|
|
# get major and minor product version (e.g. '10' and '6' for Snow Leopard)
|
|
|
|
DARWIN_MAJOR_VERSION = $(shell sw_vers -productVersion | cut -f 1 -d '.')
|
|
|
|
DARWIN_MINOR_VERSION = $(shell sw_vers -productVersion | cut -f 2 -d '.')
|
|
|
|
|
|
|
|
os_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \
|
|
|
|
$(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
|
|
|
|
|
|
|
|
# Snow Leopards build environment has no longer restrictions as described above
|
|
|
|
HOSTCC = $(call os_x_before, 10, 5, "cc", "gcc")
|
|
|
|
HOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp")
|
|
|
|
HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")
|
|
|
|
endif
|
|
|
|
|
2014-02-04 08:24:18 +00:00
|
|
|
# We need some generic definitions (do not try to remake the file).
|
|
|
|
$(srctree)/scripts/Kbuild.include: ;
|
|
|
|
include $(srctree)/scripts/Kbuild.include
|
|
|
|
|
2014-02-04 08:24:15 +00:00
|
|
|
# Make variables (CC, etc...)
|
|
|
|
|
|
|
|
AS = $(CROSS_COMPILE)as
|
|
|
|
# Always use GNU ld
|
|
|
|
ifneq ($(shell $(CROSS_COMPILE)ld.bfd -v 2> /dev/null),)
|
|
|
|
LD = $(CROSS_COMPILE)ld.bfd
|
|
|
|
else
|
|
|
|
LD = $(CROSS_COMPILE)ld
|
|
|
|
endif
|
|
|
|
CC = $(CROSS_COMPILE)gcc
|
|
|
|
CPP = $(CC) -E
|
|
|
|
AR = $(CROSS_COMPILE)ar
|
|
|
|
NM = $(CROSS_COMPILE)nm
|
|
|
|
LDR = $(CROSS_COMPILE)ldr
|
|
|
|
STRIP = $(CROSS_COMPILE)strip
|
|
|
|
OBJCOPY = $(CROSS_COMPILE)objcopy
|
|
|
|
OBJDUMP = $(CROSS_COMPILE)objdump
|
|
|
|
AWK = awk
|
|
|
|
RANLIB = $(CROSS_COMPILE)RANLIB
|
|
|
|
DTC = dtc
|
|
|
|
CHECK = sparse
|
|
|
|
|
|
|
|
CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
|
|
|
|
-Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF)
|
|
|
|
|
|
|
|
export CONFIG_SHELL HOSTCC HOSTCFLAGS HOSTLDFLAGS CROSS_COMPILE AS LD CC
|
|
|
|
export CPP AR NM LDR STRIP OBJCOPY OBJDUMP
|
|
|
|
export MAKE AWK
|
|
|
|
export DTC CHECK CHECKFLAGS
|
|
|
|
|
2006-03-12 00:37:50 +00:00
|
|
|
# load other configuration
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2013-04-20 08:42:36 +00:00
|
|
|
# Targets which don't build the source code
|
2013-12-16 07:27:23 +00:00
|
|
|
NON_BUILD_TARGETS = backup clean clobber distclean mrproper tidy unconfig
|
2013-04-20 08:42:36 +00:00
|
|
|
|
|
|
|
# Only do the generic board check when actually building, not configuring
|
|
|
|
ifeq ($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),)
|
|
|
|
ifeq ($(findstring _config,$(MAKECMDGOALS)),)
|
|
|
|
$(CHECK_GENERIC_BOARD)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
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
|
2013-12-05 06:08:31 +00:00
|
|
|
LDSCRIPT := $(CONFIG_SYS_LDSCRIPT:"%"=%)
|
2011-06-20 12:45:37 +00:00
|
|
|
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)
|
|
|
|
|
2013-11-28 03:09:59 +00:00
|
|
|
head-y := $(CPUDIR)/start.o
|
|
|
|
head-$(CONFIG_4xx) += arch/powerpc/cpu/ppc4xx/resetvec.o
|
|
|
|
head-$(CONFIG_MPC85xx) += arch/powerpc/cpu/mpc85xx/resetvec.o
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2013-11-28 03:09:59 +00:00
|
|
|
OBJS := $(addprefix $(obj),$(head-y))
|
2006-09-01 17:49:50 +00:00
|
|
|
|
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
|
|
|
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-y += lib/
|
|
|
|
LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/
|
|
|
|
LIBS-y += $(CPUDIR)/
|
2004-10-09 22:21:29 +00:00
|
|
|
ifdef SOC
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-y += $(CPUDIR)/$(SOC)/
|
2004-10-09 22:21:29 +00:00
|
|
|
endif
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-$(CONFIG_IXP4XX_NPE) += drivers/net/npe/
|
|
|
|
LIBS-$(CONFIG_OF_EMBED) += dts/
|
|
|
|
LIBS-y += arch/$(ARCH)/lib/
|
2013-11-11 05:36:09 +00:00
|
|
|
LIBS-y += fs/
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-y += net/
|
|
|
|
LIBS-y += disk/
|
|
|
|
LIBS-y += drivers/
|
|
|
|
LIBS-y += drivers/dma/
|
|
|
|
LIBS-y += drivers/gpio/
|
|
|
|
LIBS-y += drivers/i2c/
|
|
|
|
LIBS-y += drivers/input/
|
|
|
|
LIBS-y += drivers/mmc/
|
|
|
|
LIBS-y += drivers/mtd/
|
2013-11-28 03:22:17 +00:00
|
|
|
LIBS-$(CONFIG_CMD_NAND) += drivers/mtd/nand/
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-y += drivers/mtd/onenand/
|
2013-11-28 03:22:17 +00:00
|
|
|
LIBS-$(CONFIG_CMD_UBI) += drivers/mtd/ubi/
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-y += drivers/mtd/spi/
|
|
|
|
LIBS-y += drivers/net/
|
|
|
|
LIBS-y += drivers/net/phy/
|
|
|
|
LIBS-y += drivers/pci/
|
|
|
|
LIBS-y += drivers/power/ \
|
|
|
|
drivers/power/fuel_gauge/ \
|
|
|
|
drivers/power/mfd/ \
|
|
|
|
drivers/power/pmic/ \
|
|
|
|
drivers/power/battery/
|
|
|
|
LIBS-y += drivers/spi/
|
|
|
|
LIBS-$(CONFIG_FMAN_ENET) += drivers/net/fm/
|
2013-09-30 16:22:09 +00:00
|
|
|
LIBS-$(CONFIG_SYS_FSL_DDR) += drivers/ddr/fsl/
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-y += drivers/serial/
|
|
|
|
LIBS-y += drivers/usb/eth/
|
|
|
|
LIBS-y += drivers/usb/gadget/
|
|
|
|
LIBS-y += drivers/usb/host/
|
|
|
|
LIBS-y += drivers/usb/musb/
|
|
|
|
LIBS-y += drivers/usb/musb-new/
|
|
|
|
LIBS-y += drivers/usb/phy/
|
|
|
|
LIBS-y += drivers/usb/ulpi/
|
|
|
|
LIBS-y += common/
|
|
|
|
LIBS-y += lib/libfdt/
|
2013-11-18 02:08:35 +00:00
|
|
|
LIBS-$(CONFIG_API) += api/
|
2013-11-28 03:09:58 +00:00
|
|
|
LIBS-$(CONFIG_HAS_POST) += post/
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-y += test/
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2013-05-27 22:55:42 +00:00
|
|
|
ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-y += arch/$(ARCH)/imx-common/
|
2011-11-25 00:18:01 +00:00
|
|
|
endif
|
|
|
|
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-$(CONFIG_ARM) += arch/arm/cpu/
|
|
|
|
LIBS-$(CONFIG_PPC) += arch/powerpc/cpu/
|
2010-08-19 04:48:11 +00:00
|
|
|
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-y += board/$(BOARDDIR)/
|
2013-11-11 05:35:55 +00:00
|
|
|
|
2013-11-11 05:36:00 +00:00
|
|
|
LIBS-y := $(patsubst %/, %/built-in.o, $(LIBS-y))
|
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
|
|
|
|
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))
|
2013-11-11 05:35:55 +00:00
|
|
|
__LIBS := $(subst $(obj),,$(LIBS))
|
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}'`; \
|
2012-11-08 10:19:09 +00:00
|
|
|
limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \
|
2010-10-14 02:58:23 +00:00
|
|
|
if test $$actual -gt $$limit; then \
|
2012-11-08 10:19:09 +00:00
|
|
|
echo "$@ exceeds file size limit:" >&2 ; \
|
|
|
|
echo " limit: $$limit bytes" >&2 ; \
|
|
|
|
echo " actual: $$actual bytes" >&2 ; \
|
|
|
|
echo " excess: $$((actual - limit)) bytes" >&2; \
|
2010-10-14 02:58:23 +00:00
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
BOARD_SIZE_CHECK =
|
|
|
|
endif
|
|
|
|
|
2013-12-14 03:47:32 +00:00
|
|
|
# Statically apply RELA-style relocations (currently arm64 only)
|
|
|
|
ifneq ($(CONFIG_STATIC_RELA),)
|
|
|
|
# $(1) is u-boot ELF, $(2) is u-boot bin, $(3) is text base
|
|
|
|
DO_STATIC_RELA = \
|
|
|
|
start=$$($(NM) $(1) | grep __rel_dyn_start | cut -f 1 -d ' '); \
|
|
|
|
end=$$($(NM) $(1) | grep __rel_dyn_end | cut -f 1 -d ' '); \
|
|
|
|
$(obj)tools/relocate-rela $(2) $(3) $$start $$end
|
|
|
|
else
|
|
|
|
DO_STATIC_RELA =
|
|
|
|
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
|
2013-09-11 06:48:29 +00:00
|
|
|
ALL-$(CONFIG_RAMBOOT_PBL) += $(obj)u-boot.pbl
|
2011-07-13 05:11:04 +00:00
|
|
|
ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin
|
2013-08-26 22:37:22 +00:00
|
|
|
ALL-$(CONFIG_SPL_FRAMEWORK) += $(obj)u-boot.img
|
2013-08-16 07:16:15 +00:00
|
|
|
ALL-$(CONFIG_TPL) += $(obj)tpl/u-boot-tpl.bin
|
2011-10-24 19:15:31 +00:00
|
|
|
ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin
|
2013-03-27 14:34:18 +00:00
|
|
|
ifneq ($(CONFIG_SPL_TARGET),)
|
2013-12-05 06:08:31 +00:00
|
|
|
ALL-$(CONFIG_SPL) += $(obj)$(CONFIG_SPL_TARGET:"%"=%)
|
2013-03-27 14:34:18 +00:00
|
|
|
endif
|
2013-12-14 03:47:33 +00:00
|
|
|
ALL-$(CONFIG_REMAKE_ELF) += $(obj)u-boot.elf
|
2011-05-24 20:02:57 +00:00
|
|
|
|
2012-08-31 08:30:12 +00:00
|
|
|
# enable combined SPL/u-boot/dtb rules for tegra
|
2012-12-11 13:34:17 +00:00
|
|
|
ifneq ($(CONFIG_TEGRA),)
|
2013-10-31 09:21:38 +00:00
|
|
|
ifeq ($(CONFIG_SPL),y)
|
2012-08-31 08:30:12 +00:00
|
|
|
ifeq ($(CONFIG_OF_SEPARATE),y)
|
|
|
|
ALL-y += $(obj)u-boot-dtb-tegra.bin
|
|
|
|
else
|
|
|
|
ALL-y += $(obj)u-boot-nodtb-tegra.bin
|
|
|
|
endif
|
|
|
|
endif
|
2013-10-31 09:21:38 +00:00
|
|
|
endif
|
2012-08-31 08:30:12 +00:00
|
|
|
|
2013-11-18 02:08:35 +00:00
|
|
|
all: $(ALL-y) $(SUBDIR_EXAMPLES-y)
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2013-07-24 17:09:16 +00:00
|
|
|
$(obj)u-boot.dtb: checkdtc $(obj)u-boot
|
2013-10-21 02:53:40 +00:00
|
|
|
$(MAKE) $(build) dts binary
|
2011-10-24 19:15:31 +00:00
|
|
|
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
|
2013-11-07 13:21:46 +00:00
|
|
|
$(OBJCOPY) ${OBJCFLAGS} -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 $< $@
|
2013-12-14 03:47:32 +00:00
|
|
|
$(call DO_STATIC_RELA,$<,$@,$(CONFIG_SYS_TEXT_BASE))
|
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
|
|
|
|
|
2012-08-16 15:54:52 +00:00
|
|
|
#
|
|
|
|
# U-Boot entry point, needed for booting of full-blown U-Boot
|
|
|
|
# from the SPL U-Boot version.
|
|
|
|
#
|
|
|
|
ifndef CONFIG_SYS_UBOOT_START
|
|
|
|
CONFIG_SYS_UBOOT_START := 0
|
|
|
|
endif
|
|
|
|
|
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 \
|
2012-08-16 15:54:52 +00:00
|
|
|
-O u-boot -a $(CONFIG_SYS_TEXT_BASE) \
|
|
|
|
-e $(CONFIG_SYS_UBOOT_START) \
|
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 $< $@
|
|
|
|
|
2013-02-11 04:33:51 +00:00
|
|
|
$(obj)u-boot.imx: $(obj)u-boot.bin depend
|
2013-10-17 08:34:53 +00:00
|
|
|
$(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common $(OBJTREE)/u-boot.imx
|
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
|
2014-01-13 05:58:04 +00:00
|
|
|
$(obj)tools/mkimage -n $(CONFIG_SYS_FSL_PBL_RCW) \
|
|
|
|
-R $(CONFIG_SYS_FSL_PBL_PBI) -T pblimage \
|
2012-08-10 02:49:35 +00:00
|
|
|
-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 $< > $@
|
|
|
|
|
2013-08-16 07:16:15 +00:00
|
|
|
# $@ is output, $(1) and $(2) are inputs, $(3) is padded intermediate,
|
|
|
|
# $(4) is pad-to
|
|
|
|
SPL_PAD_APPEND = \
|
|
|
|
$(OBJCOPY) ${OBJCFLAGS} --pad-to=$(4) -I binary -O binary \
|
|
|
|
$(1) $(obj)$(3); \
|
2013-08-21 16:03:29 +00:00
|
|
|
cat $(obj)$(3) $(2) > $@; \
|
2013-08-16 07:16:15 +00:00
|
|
|
rm $(obj)$(3)
|
2012-12-06 13:33:16 +00:00
|
|
|
|
2013-08-16 07:16:15 +00:00
|
|
|
ifdef CONFIG_TPL
|
|
|
|
SPL_PAYLOAD := $(obj)tpl/u-boot-with-tpl.bin
|
|
|
|
else
|
|
|
|
SPL_PAYLOAD := $(obj)u-boot.bin
|
|
|
|
endif
|
2012-12-06 13:33:16 +00:00
|
|
|
|
2013-08-16 07:16:15 +00:00
|
|
|
$(obj)u-boot-with-spl.bin: $(obj)spl/u-boot-spl.bin $(SPL_PAYLOAD)
|
|
|
|
$(call SPL_PAD_APPEND,$<,$(SPL_PAYLOAD),spl/u-boot-spl-pad.bin,$(CONFIG_SPL_PAD_TO))
|
|
|
|
|
|
|
|
$(obj)tpl/u-boot-with-tpl.bin: $(obj)tpl/u-boot-tpl.bin $(obj)u-boot.bin
|
2013-08-21 16:03:29 +00:00
|
|
|
$(call SPL_PAD_APPEND,$<,$(obj)u-boot.bin,tpl/u-boot-tpl-pad.bin,$(CONFIG_TPL_PAD_TO))
|
2011-07-16 00:06:42 +00:00
|
|
|
|
2013-04-11 09:35:56 +00:00
|
|
|
$(obj)u-boot-with-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
|
2013-10-17 08:34:53 +00:00
|
|
|
$(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common \
|
2013-04-11 09:35:56 +00:00
|
|
|
$(OBJTREE)/u-boot-with-spl.imx
|
|
|
|
|
2013-04-11 09:35:57 +00:00
|
|
|
$(obj)u-boot-with-nand-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
|
2013-10-17 08:34:53 +00:00
|
|
|
$(MAKE) $(build) $(SRCTREE)/arch/arm/imx-common \
|
2013-04-11 09:35:57 +00:00
|
|
|
$(OBJTREE)/u-boot-with-nand-spl.imx
|
|
|
|
|
2012-09-19 22:45:41 +00:00
|
|
|
$(obj)u-boot.ubl: $(obj)u-boot-with-spl.bin
|
2012-09-19 01:25:26 +00:00
|
|
|
$(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \
|
2012-09-19 22:45:41 +00:00
|
|
|
-e $(CONFIG_SYS_TEXT_BASE) -d $< $(obj)u-boot.ubl
|
2012-09-19 01:25:26 +00:00
|
|
|
|
2012-08-14 19:27:13 +00:00
|
|
|
$(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
|
2012-06-13 08:39:06 +00:00
|
|
|
$(obj)tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(CONFIG_AIS_CONFIG_FILE),"/dev/null") \
|
|
|
|
-T aisimage \
|
2011-12-09 09:47:39 +00:00
|
|
|
-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
|
2012-08-14 19:27:13 +00:00
|
|
|
cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.img > \
|
2011-12-09 09:47:39 +00:00
|
|
|
$(obj)u-boot.ais
|
|
|
|
|
2012-08-18 07:25:25 +00:00
|
|
|
|
2011-11-08 23:18:19 +00:00
|
|
|
$(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin
|
2013-11-05 08:09:02 +00:00
|
|
|
$(MAKE) $(build) $(SRCTREE)/$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb
|
2011-11-08 23:18:19 +00:00
|
|
|
|
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 \
|
2013-12-18 10:00:51 +00:00
|
|
|
-d $(obj)spl/u-boot-spl.bin $@
|
|
|
|
$(OBJCOPY) -I binary -O binary \
|
|
|
|
--pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff $@
|
|
|
|
cat $(obj)u-boot.img >> $@
|
2012-01-05 10:19:50 +00:00
|
|
|
|
2012-12-11 13:34:17 +00:00
|
|
|
ifneq ($(CONFIG_TEGRA),)
|
2013-05-14 08:00:53 +00:00
|
|
|
$(obj)u-boot-nodtb-tegra.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
|
2012-08-31 08:30:10 +00:00
|
|
|
$(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
|
2013-05-14 08:00:53 +00:00
|
|
|
cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@
|
2012-08-31 08:30:10 +00:00
|
|
|
rm $(obj)spl/u-boot-spl-pad.bin
|
2013-05-14 08:00:53 +00:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_OF_SEPARATE),y)
|
|
|
|
$(obj)u-boot-dtb-tegra.bin: $(obj)u-boot-nodtb-tegra.bin $(obj)u-boot.dtb
|
|
|
|
cat $(obj)u-boot-nodtb-tegra.bin $(obj)u-boot.dtb > $@
|
|
|
|
endif
|
2012-08-31 08:30:10 +00:00
|
|
|
endif
|
|
|
|
|
2012-08-24 15:36:53 +00:00
|
|
|
$(obj)u-boot-img.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
|
|
|
|
cat $(obj)spl/u-boot-spl.bin $(obj)u-boot.img > $@
|
|
|
|
|
2013-02-22 10:36:50 +00:00
|
|
|
# PPC4xx needs the SPL at the end of the image, since the reset vector
|
|
|
|
# is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target
|
|
|
|
# and need to introduce a new build target with the full blown U-Boot
|
|
|
|
# at the start padded up to the start of the SPL image. And then concat
|
|
|
|
# the SPL image to the end.
|
|
|
|
$(obj)u-boot-img-spl-at-end.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
|
2013-12-18 10:00:51 +00:00
|
|
|
$(OBJCOPY) -I binary -O binary --pad-to=$(CONFIG_UBOOT_PAD_TO) \
|
|
|
|
--gap-fill=0xff $(obj)u-boot.img $@
|
|
|
|
cat $(obj)spl/u-boot-spl.bin >> $@
|
2013-02-22 10:36:50 +00:00
|
|
|
|
2013-12-14 03:47:33 +00:00
|
|
|
# Create a new ELF from a raw binary file. This is useful for arm64
|
|
|
|
# where static relocation needs to be performed on the raw binary,
|
|
|
|
# but certain simulators only accept an ELF file (but don't do the
|
|
|
|
# relocation).
|
|
|
|
# FIXME refactor dts/Makefile to share target/arch detection
|
|
|
|
$(obj)u-boot.elf: $(obj)u-boot.bin
|
|
|
|
@$(OBJCOPY) -B aarch64 -I binary -O elf64-littleaarch64 \
|
|
|
|
$< $(obj)u-boot-elf.o
|
|
|
|
@$(LD) $(obj)u-boot-elf.o -o $@ \
|
|
|
|
--defsym=_start=$(CONFIG_SYS_TEXT_BASE) \
|
|
|
|
-Ttext=$(CONFIG_SYS_TEXT_BASE)
|
|
|
|
|
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 = \
|
2012-10-19 05:00:10 +00:00
|
|
|
cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
|
2013-02-25 00:59:00 +00:00
|
|
|
$(__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 \
|
2013-11-28 02:06:03 +00:00
|
|
|
$(SUBDIR_TOOLS) $(OBJS) $(LIBS) $(obj)u-boot.lds
|
2009-05-20 08:35:14 +00:00
|
|
|
$(GEN_UBOOT)
|
|
|
|
ifeq ($(CONFIG_KALLSYMS),y)
|
2012-07-30 22:44:53 +00:00
|
|
|
smap=`$(call SYSTEM_MAP,$(obj)u-boot) | \
|
2009-08-17 12:00:53 +00:00
|
|
|
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
|
|
|
|
2013-10-21 02:53:41 +00:00
|
|
|
$(OBJS):
|
|
|
|
@:
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2011-10-17 21:04:15 +00:00
|
|
|
$(LIBS): depend $(SUBDIR_TOOLS)
|
2013-10-21 02:53:41 +00:00
|
|
|
$(MAKE) $(build) $(dir $(subst $(obj),,$@))
|
2003-12-06 19:49:23 +00:00
|
|
|
|
2014-02-04 08:24:12 +00:00
|
|
|
$(SUBDIRS): depend
|
2014-02-04 08:24:10 +00:00
|
|
|
$(MAKE) $(build) $@ all
|
|
|
|
|
2013-11-18 02:08:35 +00:00
|
|
|
$(SUBDIR_EXAMPLES-y): $(obj)u-boot
|
2011-10-17 21:04:15 +00:00
|
|
|
|
2013-11-28 02:06:03 +00:00
|
|
|
$(obj)u-boot.lds: $(LDSCRIPT) depend
|
2012-10-19 05:00:10 +00:00
|
|
|
$(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@
|
2009-08-17 12:00:53 +00:00
|
|
|
|
2011-01-27 14:44:59 +00:00
|
|
|
nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
|
2014-02-04 08:24:13 +00:00
|
|
|
$(MAKE) $(build) 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-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
|
|
|
|
|
2013-08-16 07:16:15 +00:00
|
|
|
$(obj)tpl/u-boot-tpl.bin: $(SUBDIR_TOOLS) depend
|
|
|
|
$(MAKE) -C spl all CONFIG_TPL_BUILD=y
|
|
|
|
|
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) \
|
2013-08-19 08:14:14 +00:00
|
|
|
$(obj)include/spl-autoconf.mk \
|
2013-08-16 07:16:15 +00:00
|
|
|
$(obj)include/tpl-autoconf.mk \
|
2010-10-25 22:08:35 +00:00
|
|
|
$(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
|
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` | \
|
2013-11-28 07:29:23 +00:00
|
|
|
perl $(src)scripts/checkstack.pl $(ARCH)
|
2012-02-02 14:07:05 +00:00
|
|
|
|
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
|
2013-11-11 05:36:01 +00:00
|
|
|
@$(call 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
|
2012-09-21 00:10:01 +00:00
|
|
|
|
|
|
|
# GCC 3.x is reported to have problems generating the type of relocation
|
|
|
|
# that U-Boot wants.
|
|
|
|
# See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html
|
|
|
|
checkgcc4:
|
|
|
|
@if test $(call cc-version) -lt 0400; then \
|
|
|
|
echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \
|
|
|
|
false; \
|
|
|
|
fi
|
|
|
|
|
2013-07-24 17:09:16 +00:00
|
|
|
checkdtc:
|
|
|
|
@if test $(call dtc-version) -lt 0104; then \
|
|
|
|
echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \
|
|
|
|
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-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) \
|
2013-12-02 05:57:29 +00:00
|
|
|
-MQ $(obj)include/autoconf.mk include/common.h > $@ || \
|
|
|
|
rm $@
|
2008-05-13 21:15:52 +00:00
|
|
|
|
|
|
|
$(obj)include/autoconf.mk: $(obj)include/config.h
|
|
|
|
@$(XECHO) Generating $@ ; \
|
2008-01-12 23:59:21 +00:00
|
|
|
: Extract the config macros ; \
|
2013-12-02 05:57:29 +00:00
|
|
|
$(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h > $@.tmp && \
|
|
|
|
sed -n -f tools/scripts/define2mk.sed $@.tmp > $@; \
|
|
|
|
rm $@.tmp
|
2007-09-24 15:05:31 +00:00
|
|
|
|
2013-08-19 08:14:14 +00:00
|
|
|
# Auto-generate the spl-autoconf.mk file (which is included by all makefiles for SPL)
|
2013-08-16 07:16:15 +00:00
|
|
|
$(obj)include/tpl-autoconf.mk: $(obj)include/config.h
|
|
|
|
@$(XECHO) Generating $@ ; \
|
|
|
|
: Extract the config macros ; \
|
|
|
|
$(CPP) $(CFLAGS) -DCONFIG_TPL_BUILD -DCONFIG_SPL_BUILD\
|
2013-12-02 05:57:29 +00:00
|
|
|
-DDO_DEPS_ONLY -dM include/common.h > $@.tmp && \
|
|
|
|
sed -n -f tools/scripts/define2mk.sed $@.tmp > $@; \
|
|
|
|
rm $@.tmp
|
2013-08-16 07:16:15 +00:00
|
|
|
|
2013-08-19 08:14:14 +00:00
|
|
|
$(obj)include/spl-autoconf.mk: $(obj)include/config.h
|
|
|
|
@$(XECHO) Generating $@ ; \
|
|
|
|
: Extract the config macros ; \
|
2013-12-02 05:57:29 +00:00
|
|
|
$(CPP) $(CFLAGS) -DCONFIG_SPL_BUILD -DDO_DEPS_ONLY -dM include/common.h > $@.tmp && \
|
|
|
|
sed -n -f tools/scripts/define2mk.sed $@.tmp > $@; \
|
|
|
|
rm $@.tmp
|
2013-08-19 08:14:14 +00:00
|
|
|
|
2013-12-05 06:30:18 +00:00
|
|
|
$(obj)include/generated/generic-asm-offsets.h: $(obj)lib/asm-offsets.s
|
2010-10-25 22:08:35 +00:00
|
|
|
@$(XECHO) Generating $@
|
|
|
|
tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
|
|
|
|
|
2013-12-05 06:30:18 +00:00
|
|
|
$(obj)lib/asm-offsets.s: $(obj)include/config.h $(src)lib/asm-offsets.c
|
2010-10-25 22:08:35 +00:00
|
|
|
@mkdir -p $(obj)lib
|
|
|
|
$(CC) -DDO_DEPS_ONLY \
|
|
|
|
$(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
|
|
|
|
-o $@ $(src)lib/asm-offsets.c -c -S
|
|
|
|
|
2013-12-05 06:30:18 +00:00
|
|
|
$(obj)include/generated/asm-offsets.h: $(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 $@
|
|
|
|
|
2013-12-05 06:30:18 +00:00
|
|
|
$(obj)$(CPUDIR)/$(SOC)/asm-offsets.s: $(obj)include/config.h
|
2011-09-05 04:32:28 +00:00
|
|
|
@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)) \
|
2013-11-14 02:00:30 +00:00
|
|
|
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)
|
2014-02-04 08:24:10 +00:00
|
|
|
$(MAKE) $(build) $@ all
|
2008-01-12 23:59:21 +00:00
|
|
|
endif # config.mk
|
2002-11-02 23:17:16 +00:00
|
|
|
|
2013-12-14 03:47:34 +00:00
|
|
|
# ARM relocations should all be R_ARM_RELATIVE (32-bit) or
|
|
|
|
# R_AARCH64_RELATIVE (64-bit).
|
2013-06-11 12:17:30 +00:00
|
|
|
checkarmreloc: $(obj)u-boot
|
2013-12-14 03:47:34 +00:00
|
|
|
@RELOC="`$(CROSS_COMPILE)readelf -r -W $< | cut -d ' ' -f 4 | \
|
|
|
|
grep R_A | sort -u`"; \
|
|
|
|
if test "$$RELOC" != "R_ARM_RELATIVE" -a \
|
|
|
|
"$$RELOC" != "R_AARCH64_RELATIVE"; then \
|
|
|
|
echo "$< contains unexpected relocations: $$RELOC"; \
|
|
|
|
false; \
|
|
|
|
fi
|
2013-06-11 12:17:30 +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))
|
2013-11-28 07:29:23 +00:00
|
|
|
@( localvers='$(shell $(TOPDIR)/scripts/setlocalversion $(TOPDIR))' ; \
|
2011-06-20 12:45:38 +00:00
|
|
|
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:
|
2014-02-04 08:24:10 +00:00
|
|
|
$(MAKE) $(build) tools/$@ MTD_VERSION=${MTD_VERSION}
|
|
|
|
|
2010-08-15 04:03:21 +00:00
|
|
|
gdbtools: gdb
|
|
|
|
|
2012-10-06 14:04:58 +00:00
|
|
|
xmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc
|
|
|
|
$(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) -C doc/DocBook/ $@
|
|
|
|
|
2011-10-03 09:57:10 +00:00
|
|
|
tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
|
2014-02-04 08:24:10 +00:00
|
|
|
$(MAKE) $(build) tools HOST_TOOLS_ALL=y
|
2010-08-15 04:03:21 +00:00
|
|
|
|
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 \
|
2013-08-19 08:14:14 +00:00
|
|
|
$(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep \
|
2013-08-16 07:16:15 +00:00
|
|
|
$(obj)include/spl-autoconf.mk \
|
|
|
|
$(obj)include/tpl-autoconf.mk
|
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
|
2013-09-18 03:01:27 +00:00
|
|
|
@awk '(NF && $$1 !~ /^#/) { print $$7 ": " $$7 "_config; $$(MAKE)" }' $< > $@
|
2009-10-01 16:11:54 +00:00
|
|
|
|
2003-04-05 00:53:31 +00:00
|
|
|
#########################################################################
|
|
|
|
#########################################################################
|
2002-11-02 23:17:16 +00:00
|
|
|
|
|
|
|
clean:
|
2013-12-06 07:34:09 +00:00
|
|
|
@rm -f $(obj)examples/standalone/atmel_df_pow2 \
|
2009-07-10 16:03:19 +00:00
|
|
|
$(obj)examples/standalone/hello_world \
|
|
|
|
$(obj)examples/standalone/interrupt \
|
|
|
|
$(obj)examples/standalone/mem_to_mem_idma2intr \
|
|
|
|
$(obj)examples/standalone/sched \
|
2014-02-04 08:24:15 +00:00
|
|
|
$(addprefix $(obj)examples/standalone/, smc91111_eeprom smc911x_eeprom) \
|
2009-07-10 16:03:19 +00:00
|
|
|
$(obj)examples/standalone/test_burst \
|
|
|
|
$(obj)examples/standalone/timer
|
2014-02-04 08:24:15 +00:00
|
|
|
@rm -f $(addprefix $(obj)examples/api/, demo demo.bin)
|
2008-03-04 13:58:31 +00:00
|
|
|
@rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
|
2013-12-06 07:34:10 +00:00
|
|
|
$(obj)tools/env/fw_printenv \
|
2008-03-04 13:58:31 +00:00
|
|
|
$(obj)tools/envcrc \
|
2014-02-04 08:24:15 +00:00
|
|
|
$(addprefix $(obj)tools/gdb/, gdbcont gdbsend) \
|
2008-03-04 13:58:31 +00:00
|
|
|
$(obj)tools/gen_eth_addr $(obj)tools/img2srec \
|
2014-02-04 08:24:15 +00:00
|
|
|
$(obj)tools/dumpimage \
|
|
|
|
$(addprefix $(obj)tools/, mkenvimage mkimage) \
|
|
|
|
$(obj)tools/mpc86x_clk \
|
|
|
|
$(addprefix $(obj)tools/, mk$(BOARD)spl mkexynosspl) \
|
2012-08-28 15:15:52 +00:00
|
|
|
$(obj)tools/mxsboot \
|
2012-10-06 14:04:58 +00:00
|
|
|
$(obj)tools/ncb $(obj)tools/ubsha1 \
|
2013-06-11 18:14:43 +00:00
|
|
|
$(obj)tools/kernel-doc/docproc \
|
|
|
|
$(obj)tools/proftool
|
2014-02-04 08:24:15 +00:00
|
|
|
@rm -f $(addprefix $(obj)board/cray/L1/, bootscript.c bootscript.image) \
|
2010-10-16 16:24:16 +00:00
|
|
|
$(obj)board/matrix_vision/*/bootscript.img \
|
2014-02-04 08:24:11 +00:00
|
|
|
$(obj)spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl \
|
2009-08-17 12:00:53 +00:00
|
|
|
$(obj)u-boot.lds \
|
2014-02-04 08:24:15 +00:00
|
|
|
$(addprefix $(obj)arch/blackfin/cpu/, init.lds init.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
|
2009-07-21 00:02:21 +00:00
|
|
|
@rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
|
2012-11-13 06:31:39 +00:00
|
|
|
@$(MAKE) -s -C doc/DocBook/ cleandocs
|
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' \
|
2013-01-18 16:14:24 +00:00
|
|
|
-o -name '*.o' -o -name '*.a' -o -name '*.exe' \
|
|
|
|
-o -name '*.cfgtmp' \) -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
|
2013-04-11 09:35:56 +00:00
|
|
|
@rm -f $(obj)u-boot-with-spl.imx
|
2013-04-11 09:35:57 +00:00
|
|
|
@rm -f $(obj)u-boot-with-nand-spl.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
|
2014-02-04 08:24:15 +00:00
|
|
|
@rm -f $(addprefix $(obj)nand_spl/, u-boot.lds u-boot.lst System.map)
|
|
|
|
@rm -f $(addprefix $(obj)nand_spl/, u-boot-nand_spl.lds u-boot-spl u-boot-spl.map)
|
|
|
|
@rm -f $(addprefix $(obj)spl/, u-boot-spl u-boot-spl.bin u-boot-spl.map)
|
2013-02-25 00:59:00 +00:00
|
|
|
@rm -f $(obj)spl/u-boot-spl.lds
|
2014-02-04 08:24:15 +00:00
|
|
|
@rm -f $(addprefix $(obj)tpl/, u-boot-tpl u-boot-tpl.bin u-boot-tpl.map)
|
2013-08-16 07:16:15 +00:00
|
|
|
@rm -f $(obj)tpl/u-boot-spl.lds
|
2013-01-02 07:59:24 +00:00
|
|
|
@rm -f $(obj)MLO MLO.byteswap
|
2012-10-17 06:04:30 +00:00
|
|
|
@rm -f $(obj)SPL
|
2012-07-27 21:44:24 +00:00
|
|
|
@rm -f $(obj)tools/xway-swap-bytes
|
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
|
2011-10-15 05:48:21 +00:00
|
|
|
@rm -f $(obj)dts/*.tmp
|
2014-02-04 08:24:15 +00:00
|
|
|
@rm -f $(addprefix $(obj)spl/, u-boot-spl.ais, u-boot-spl-pad.ais)
|
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
|
|
|
|
|
|
|
#########################################################################
|