Kconfig 601 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. menu "RISCV 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. endchoice
  11. source "board/AndesTech/ax25-ae350/Kconfig"
  12. choice
  13. prompt "CPU selection"
  14. default CPU_RISCV_32
  15. config CPU_RISCV_32
  16. bool "RISCV 32 bit"
  17. select 32BIT
  18. help
  19. Choose this option to build an U-Boot for RISCV32 architecture.
  20. config CPU_RISCV_64
  21. bool "RISCV 64 bit"
  22. select 64BIT
  23. help
  24. Choose this option to build an U-Boot for RISCV64 architecture.
  25. endchoice
  26. config 32BIT
  27. bool
  28. config 64BIT
  29. bool
  30. endmenu