Config.cris 684 B

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