1menu "RISC-V architecture" 2 depends on RISCV 3 4config SYS_ARCH 5 default "riscv" 6 7choice 8 prompt "Target select" 9 optional 10 11config TARGET_AX25_AE350 12 bool "Support ax25-ae350" 13 14config TARGET_QEMU_VIRT 15 bool "Support QEMU Virt Board" 16 17endchoice 18 19source "board/AndesTech/ax25-ae350/Kconfig" 20source "board/emulation/qemu-riscv/Kconfig" 21 22choice 23 prompt "CPU selection" 24 default CPU_RISCV_32 25 26config CPU_RISCV_32 27 bool "RISC-V 32-bit" 28 select 32BIT 29 help 30 Choose this option to build an U-Boot for RISCV32 architecture. 31 32config CPU_RISCV_64 33 bool "RISC-V 64-bit" 34 select 64BIT 35 help 36 Choose this option to build an U-Boot for RISCV64 architecture. 37 38endchoice 39 40config 32BIT 41 bool 42 43config 64BIT 44 bool 45 46endmenu 47