diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-12-23 14:13:41 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-04-08 00:44:26 -0400 |
commit | fbb21ff0478f1bac0b009133bf82b7412ea0230b (patch) | |
tree | 778e1fef6d0042f8e72b588069bc961bb36a860a /arch/blackfin | |
parent | 7d69dfd2a80885b570cd1d47e5c25f0f76f09468 (diff) | |
download | u-boot-imx-fbb21ff0478f1bac0b009133bf82b7412ea0230b.zip u-boot-imx-fbb21ff0478f1bac0b009133bf82b7412ea0230b.tar.gz u-boot-imx-fbb21ff0478f1bac0b009133bf82b7412ea0230b.tar.bz2 |
Blackfin: drop CONFIG_SYS_TEXT_BASE from boards
We don't want/use this value for Blackfin boards, so punt it and have the
common code error out when people try to use it.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/config.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/blackfin/config.mk b/arch/blackfin/config.mk index f4503ea..92520e8 100644 --- a/arch/blackfin/config.mk +++ b/arch/blackfin/config.mk @@ -70,3 +70,7 @@ LDR_FLAGS += $(LDR_FLAGS-y) ifeq ($(wildcard $(TOPDIR)/board/$(BOARD)/u-boot.lds*),) LDSCRIPT = $(obj)arch/$(ARCH)/lib/u-boot.lds.S endif + +ifneq ($(CONFIG_SYS_TEXT_BASE),) +$(error do not set CONFIG_SYS_TEXT_BASE for Blackfin boards) +endif |