Kconfig 413 B

123456789101112131415161718192021222324
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the file kconfig-language.txt in the NuttX tools repository.
  4. #
  5. if ARCH_OR1K
  6. comment "OpenRISC Options"
  7. choice
  8. prompt "OpenRISC chip selection"
  9. default ARCH_CHIP_MOR1KX
  10. config ARCH_CHIP_MOR1KX
  11. bool "mor1kx"
  12. endchoice
  13. config ARCH_CHIP
  14. string
  15. default "mor1kx" if ARCH_CHIP_MOR1KX
  16. source arch/or1k/src/mor1kx/Kconfig
  17. endif # ARCH_OR1K