diff options
author | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2021-04-21 21:13:13 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2021-05-25 15:35:06 +0200 |
commit | 5308a71db80ede9f0e0b5c727ae26469ab7914c8 (patch) | |
tree | 161dd91242a152213ad798d7d57fa01a69f9a26f /arch | |
parent | 9c8e58ac2362a155dd79cd7befafa57e648bfb9c (diff) | |
download | u-boot-5308a71db80ede9f0e0b5c727ae26469ab7914c8.zip u-boot-5308a71db80ede9f0e0b5c727ae26469ab7914c8.tar.gz u-boot-5308a71db80ede9f0e0b5c727ae26469ab7914c8.tar.bz2 |
MIPS: remove deprecated qemu_mips board
Remove qemu_mips boards because DM migration doesn't make sense.
The board support for qemu_mips is already marked as deprecated
in Qemu in favour of the Malta board. Also qemu_mips support
has been removed from Linux a long time ago.
The official replacement is the Malta board. The same Malta U-Boot
image can be used with Qemu and on physical hardware.
All combinations of Big Endian and Little Endian as well as 32 bit
and 64 bit are supported.
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/Kconfig | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 77f563e..e548016 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -12,16 +12,6 @@ choice prompt "Target select" optional -config TARGET_QEMU_MIPS - bool "Support qemu-mips" - select ROM_EXCEPTION_VECTORS - select SUPPORTS_BIG_ENDIAN - select SUPPORTS_CPU_MIPS32_R1 - select SUPPORTS_CPU_MIPS32_R2 - select SUPPORTS_CPU_MIPS64_R1 - select SUPPORTS_CPU_MIPS64_R2 - select SUPPORTS_LITTLE_ENDIAN - config TARGET_MALTA bool "Support malta" select DM @@ -174,7 +164,6 @@ endchoice source "board/imgtec/boston/Kconfig" source "board/imgtec/malta/Kconfig" source "board/imgtec/xilfpga/Kconfig" -source "board/qemu-mips/Kconfig" source "arch/mips/mach-ath79/Kconfig" source "arch/mips/mach-mscc/Kconfig" source "arch/mips/mach-bmips/Kconfig" |