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