mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-28 23:23:30 +08:00
ec35e12331
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>
15 lines
240 B
Plaintext
15 lines
240 B
Plaintext
if TARGET_QEMU_MIPS
|
|
|
|
config SYS_BOARD
|
|
default "qemu-mips"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "qemu-mips" if 32BIT
|
|
default "qemu-mips64" if 64BIT
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0xbfc00000 if 32BIT
|
|
default 0xffffffffbfc00000 if 64BIT
|
|
|
|
endif
|