Config.cris 675 B

12345678910111213141516171819202122232425262728293031323334353637
  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. config ARCH_CFLAGS
  13. string
  14. choice
  15. prompt "Target Architecture Type"
  16. default CONFIG_CRIS
  17. help
  18. This is the architecture type of your CPU. This information
  19. is used for optimizing purposes.
  20. Possible settings:
  21. - CRIS Generic support for Axis' CRIS architecture.
  22. - CRISv32 Support for Axis' CRISv32 architecture.
  23. config CONFIG_CRIS
  24. select ARCH_HAS_MMU
  25. bool "CRIS"
  26. config CONFIG_CRISV32
  27. select ARCH_HAS_MMU
  28. bool "CRISv32"
  29. endchoice