summaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-10-30 15:30:58 +0900
committerTom Rini <trini@ti.com>2014-11-04 15:01:46 -0500
commit7f7563cec11388451cd81c99abfa86836b1bdd75 (patch)
treefdb19d5c982ed1ae1fd23f75441c0ef3928e9ebc /Kconfig
parent89bedb0c10d47c3889a218c17c3ee4612ec9af6c (diff)
sparc: move CONFIG_SYS_TEXT_BASE to Kconfig
Defining CONFIG_SYS_TEXT_BASE in config.mk is very old style. Create CONFIG_SYS_TEXT_BASE option in Kconfig, but let it depend on CONFIG_SPARC because we do not want to disturb the other architectures that still define CONFIG_SYS_TEXT_BASE in their header files. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Daniel Hellstrom <daniel@gaisler.com>
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig6
1 files changed, 6 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
index 932fc8b12a..f34f341dd7 100644
--- a/Kconfig
+++ b/Kconfig
@@ -107,6 +107,12 @@ config SYS_EXTRA_OPTIONS
configuration to Kconfig. Since this option will be removed sometime,
new boards should not use this option.
+config SYS_TEXT_BASE
+ depends on SPARC
+ hex "Text Base"
+ help
+ TODO: Move CONFIG_SYS_TEXT_BASE for all the architecture
+
endmenu # Boot images
source "arch/Kconfig"