1menu "MIPS architecture" 2 depends on MIPS 3 4config SYS_ARCH 5 string 6 default "mips" 7 8choice 9 prompt "Target select" 10 11config TARGET_QEMU_MIPS 12 bool "Support qemu-mips" 13 14config TARGET_MALTA 15 bool "Support malta" 16 17config TARGET_VCT 18 bool "Support vct" 19 20config TARGET_DBAU1X00 21 bool "Support dbau1x00" 22 23config TARGET_PB1X00 24 bool "Support pb1x00" 25 26config TARGET_QEMU_MIPS64 27 bool "Support qemu-mips64" 28 29endchoice 30 31source "board/dbau1x00/Kconfig" 32source "board/imgtec/malta/Kconfig" 33source "board/micronas/vct/Kconfig" 34source "board/pb1x00/Kconfig" 35source "board/qemu-mips/Kconfig" 36 37endmenu 38