u-boot/board/qemu-mips/Kconfig
Daniel Schwierzeck b9863b6de2 MIPS: kconfig: globally define CONFIG_SYS_CPU for MIPS
Now the user can select the CPU type for each target. Thus
CONFIG_SYS_CPU could be set globally.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
2014-11-01 18:18:04 +01:00

22 lines
261 B
Text

if TARGET_QEMU_MIPS
config SYS_BOARD
default "qemu-mips"
config SYS_CONFIG_NAME
default "qemu-mips"
endif
if TARGET_QEMU_MIPS64
config SYS_CPU
default "mips64"
config SYS_BOARD
default "qemu-mips"
config SYS_CONFIG_NAME
default "qemu-mips64"
endif