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