Config.cris 647 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. config TARGET_ARCH
  6. string
  7. default "cris"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_LITTLE_ENDIAN
  12. choice
  13. prompt "Target Architecture Type"
  14. default CONFIG_CRIS
  15. help
  16. This is the architecture type of your CPU. This information
  17. is used for optimizing purposes.
  18. Possible settings:
  19. - CRIS Generic support for Axis' CRIS architecture.
  20. - CRISv32 Support for Axis' CRISv32 architecture.
  21. config CONFIG_CRIS
  22. select ARCH_HAS_MMU
  23. bool "CRIS"
  24. config CONFIG_CRISV32
  25. select ARCH_HAS_MMU
  26. bool "CRISv32"
  27. endchoice