diff options
author | Lucas Stach <l.stach@pengutronix.de> | 2017-10-12 12:26:47 +0200 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2017-10-16 09:31:41 +0200 |
commit | 13f67845afc084805c631ad537241b5046c33858 (patch) | |
tree | fe7bef61d9158299286a5a183ba1dcf00726b079 /arch/arm/mach-vexpress | |
parent | f5fb5c8f2fd2ad229bfd8d62683b002c2a6f62ba (diff) | |
download | barebox-13f67845afc084805c631ad537241b5046c33858.tar.gz barebox-13f67845afc084805c631ad537241b5046c33858.tar.xz |
ARM: vexpress: always build relocatable image
This allows to make more space available for the malloc area and
allows us to drop the special CA9 defconfig, which had a different
text base.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-vexpress')
-rw-r--r-- | arch/arm/mach-vexpress/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-vexpress/Kconfig b/arch/arm/mach-vexpress/Kconfig index bf1dd5a791..1d5e293602 100644 --- a/arch/arm/mach-vexpress/Kconfig +++ b/arch/arm/mach-vexpress/Kconfig @@ -2,13 +2,14 @@ if ARCH_VEXPRESS config ARCH_TEXT_BASE hex - default 0x83f00000 + default 0x0 choice prompt "ARM Board type" config MACH_VEXPRESS bool "ARM Vexpress" + select RELOCATABLE endchoice |