Config.cris 851 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. source "extra/Configs/Config.in.arches"
  9. menu "Target Architecture Features and Options"
  10. source "extra/Configs/Config.in.arch"
  11. config FORCE_OPTIONS_FOR_ARCH
  12. bool
  13. default y
  14. select ARCH_LITTLE_ENDIAN
  15. config ARCH_CFLAGS
  16. string
  17. choice
  18. prompt "Target Architecture Type"
  19. default CONFIG_CRIS
  20. help
  21. This is the architecture type of your CPU. This information
  22. is used for optimizing purposes.
  23. Possible settings:
  24. - CRIS Generic support for Axis' CRIS architecture.
  25. - CRISv32 Support for Axis' CRISv32 architecture.
  26. config CONFIG_CRIS
  27. select ARCH_HAS_MMU
  28. bool "CRIS"
  29. config CONFIG_CRISV32
  30. select ARCH_HAS_MMU
  31. bool "CRISv32"
  32. endchoice
  33. endmenu
  34. source "extra/Configs/Config.in.common"