diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-12-11 12:22:27 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-01-20 10:19:35 -0500 |
commit | 614fc893e9d22b474cdd826cae9b754bb0fa8968 (patch) | |
tree | 4d5a208c737f68f74be2dd69d90bf6e26d3cb790 /include/configs | |
parent | b766476df09b10c244bcf6f35a667d44f618a561 (diff) | |
download | u-boot-imx-614fc893e9d22b474cdd826cae9b754bb0fa8968.zip u-boot-imx-614fc893e9d22b474cdd826cae9b754bb0fa8968.tar.gz u-boot-imx-614fc893e9d22b474cdd826cae9b754bb0fa8968.tar.bz2 |
mips: vct: move CONFIG_SYS_TEXT_BASE away from config.mk
We can delete board/micronas/vct/config.mk by moving the define of
CONFIG_SYS_TEXT_BASE to somewhere else. Other MIPS boards are
still defining it in include/config/${BOARD}.h, so I am following
that way here.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/vct.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/vct.h b/include/configs/vct.h index 872f2f0..ea6e3c0 100644 --- a/include/configs/vct.h +++ b/include/configs/vct.h @@ -32,6 +32,7 @@ #define CONFIG_SKIP_LOWLEVEL_INIT /* SDRAM is initialized by the bootstrap code */ +#define CONFIG_SYS_TEXT_BASE 0x87000000 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_MONITOR_LEN (256 << 10) #define CONFIG_SYS_MALLOC_LEN (1 << 20) |