diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-10-30 15:30:58 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-04 15:01:46 -0500 |
commit | 7f7563cec11388451cd81c99abfa86836b1bdd75 (patch) | |
tree | fdb19d5c982ed1ae1fd23f75441c0ef3928e9ebc /configs | |
parent | 89bedb0c10d47c3889a218c17c3ee4612ec9af6c (diff) | |
download | u-boot-imx-7f7563cec11388451cd81c99abfa86836b1bdd75.zip u-boot-imx-7f7563cec11388451cd81c99abfa86836b1bdd75.tar.gz u-boot-imx-7f7563cec11388451cd81c99abfa86836b1bdd75.tar.bz2 |
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 'configs')
-rw-r--r-- | configs/gr_cpci_ax2000_defconfig | 1 | ||||
-rw-r--r-- | configs/gr_ep2s60_defconfig | 1 | ||||
-rw-r--r-- | configs/gr_xc3s_1500_defconfig | 1 | ||||
-rw-r--r-- | configs/grsim_defconfig | 1 | ||||
-rw-r--r-- | configs/grsim_leon2_defconfig | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/configs/gr_cpci_ax2000_defconfig b/configs/gr_cpci_ax2000_defconfig index 6eb02ad..b59d077 100644 --- a/configs/gr_cpci_ax2000_defconfig +++ b/configs/gr_cpci_ax2000_defconfig @@ -1,2 +1,3 @@ +CONFIG_SYS_TEXT_BASE=0x00000000 CONFIG_SPARC=y CONFIG_TARGET_GR_CPCI_AX2000=y diff --git a/configs/gr_ep2s60_defconfig b/configs/gr_ep2s60_defconfig index 6e1eb83..2c69efa 100644 --- a/configs/gr_ep2s60_defconfig +++ b/configs/gr_ep2s60_defconfig @@ -1,2 +1,3 @@ +CONFIG_SYS_TEXT_BASE=0x00000000 CONFIG_SPARC=y CONFIG_TARGET_GR_EP2S60=y diff --git a/configs/gr_xc3s_1500_defconfig b/configs/gr_xc3s_1500_defconfig index da846db..fecdd25 100644 --- a/configs/gr_xc3s_1500_defconfig +++ b/configs/gr_xc3s_1500_defconfig @@ -1,2 +1,3 @@ +CONFIG_SYS_TEXT_BASE=0x00000000 CONFIG_SPARC=y CONFIG_TARGET_GR_XC3S_1500=y diff --git a/configs/grsim_defconfig b/configs/grsim_defconfig index 2a7e8e7..e3ffd69 100644 --- a/configs/grsim_defconfig +++ b/configs/grsim_defconfig @@ -1,2 +1,3 @@ +CONFIG_SYS_TEXT_BASE=0x00000000 CONFIG_SPARC=y CONFIG_TARGET_GRSIM=y diff --git a/configs/grsim_leon2_defconfig b/configs/grsim_leon2_defconfig index e91eb96..6090e34 100644 --- a/configs/grsim_leon2_defconfig +++ b/configs/grsim_leon2_defconfig @@ -1,2 +1,3 @@ +CONFIG_SYS_TEXT_BASE=0x00000000 CONFIG_SPARC=y CONFIG_TARGET_GRSIM_LEON2=y |