Config.cris 711 B

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