mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
b9863b6de2
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>
22 lines
261 B
Text
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
|