Config.cris 719 B

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