diff options
author | Matt Waddel <matt.waddel@linaro.org> | 2010-12-02 12:43:14 -0700 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-12-08 23:44:21 +0100 |
commit | 7d38f8747466abb427b8cac8e7a2f9687cd97294 (patch) | |
tree | fcf8b3dde54c59fd62418c732635d714364fb629 /board/armltd/vexpress/config.mk | |
parent | b097b9282c96ee0a10fc5e64894be440e075335d (diff) | |
download | u-boot-imx-7d38f8747466abb427b8cac8e7a2f9687cd97294.zip u-boot-imx-7d38f8747466abb427b8cac8e7a2f9687cd97294.tar.gz u-boot-imx-7d38f8747466abb427b8cac8e7a2f9687cd97294.tar.bz2 |
ARMV7: Vexpress: fix build errors
This patch fixes build errors in the vexpress system:
- Removed sys_proto.h requirement from syslib.c.
- Switched vexpress to the default armv7 linker script.
- Renamed TEXT_BASE to CONFIG_SYS_TEXT_BASE.
Signed-off-by: Matt Waddel <matt.waddel@linaro.org>
Diffstat (limited to 'board/armltd/vexpress/config.mk')
-rw-r--r-- | board/armltd/vexpress/config.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/board/armltd/vexpress/config.mk b/board/armltd/vexpress/config.mk index 2d797d7..36395f2 100644 --- a/board/armltd/vexpress/config.mk +++ b/board/armltd/vexpress/config.mk @@ -19,5 +19,4 @@ # # Linux-Kernel is expected to be at 0x60008000 # -TEXT_BASE = 0x60800000 -LDSCRIPT := $(SRCTREE)/board/armltd/vexpress/u-boot.lds +CONFIG_SYS_TEXT_BASE = 0x60800000 |