Kconfig 705 B

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