diff options
author | Paul Burton <paul.burton@imgtec.com> | 2016-05-17 11:56:39 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-05-26 01:34:13 +0200 |
commit | ec35e12331512cf5ed0f22005d7b6fb4ccc35969 (patch) | |
tree | 036188d9be0fe471d1de14c4ef21a16752e38d83 /board/qca | |
parent | 6242aa137427f6da6ca47e7a8c9a9f78ad63e00d (diff) |
MIPS: Move CONFIG_SYS_TEXT_BASE to Kconfig
Move CONFIG_SYS_TEXT_BASE to Kconfig, and add default values in board
Kconfig files matching what was present in their config headers. This
will make it cleaner to conditionalise the value for Malta based on 32
vs 64 bit builds.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Diffstat (limited to 'board/qca')
-rw-r--r-- | board/qca/ap121/Kconfig | 3 | ||||
-rw-r--r-- | board/qca/ap143/Kconfig | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/board/qca/ap121/Kconfig b/board/qca/ap121/Kconfig index f7e768ad58..c3ecc8f62f 100644 --- a/board/qca/ap121/Kconfig +++ b/board/qca/ap121/Kconfig @@ -9,4 +9,7 @@ config SYS_BOARD config SYS_CONFIG_NAME default "ap121" +config SYS_TEXT_BASE + default 0x9f000000 + endif diff --git a/board/qca/ap143/Kconfig b/board/qca/ap143/Kconfig index 4cdac0d06d..5ea5d6fbb0 100644 --- a/board/qca/ap143/Kconfig +++ b/board/qca/ap143/Kconfig @@ -9,4 +9,7 @@ config SYS_BOARD config SYS_CONFIG_NAME default "ap143" +config SYS_TEXT_BASE + default 0x9f000000 + endif |