diff options
author | Paul Burton <paul.burton@imgtec.com> | 2016-05-26 14:49:36 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-05-31 09:38:11 +0200 |
commit | 0f832b9cdcbe8a024b53c585622d70129652d20b (patch) | |
tree | 97fed9c304660ccb7d084a954cc2649872fa2461 /board/imgtec/malta/Kconfig | |
parent | bed1ca322da9b597aa59723a02a1dd647bf8bde4 (diff) | |
download | u-boot-0f832b9cdcbe8a024b53c585622d70129652d20b.tar.gz |
malta: Allow MIPS64 builds
Both real Malta boards & emulators that mimic Malta (eg. QEMU) can
support MIPS64 CPUs. Allow MIPS64 builds of U-Boot for such boards,
which enables the user to make use of the whole 64 bit address space.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Diffstat (limited to 'board/imgtec/malta/Kconfig')
-rw-r--r-- | board/imgtec/malta/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/imgtec/malta/Kconfig b/board/imgtec/malta/Kconfig index 2bb8e8be16..98eb4d16c7 100644 --- a/board/imgtec/malta/Kconfig +++ b/board/imgtec/malta/Kconfig @@ -10,6 +10,7 @@ config SYS_CONFIG_NAME default "malta" config SYS_TEXT_BASE - default 0xbe000000 + default 0xbe000000 if 32BIT + default 0xffffffffbe000000 if 64BIT endif |