Config.arc 649 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. default "arc"
  7. config FORCE_OPTIONS_FOR_ARCH
  8. bool
  9. default y
  10. select ARCH_ANY_ENDIAN
  11. choice
  12. prompt "Target Processor Type"
  13. default CONFIG_ARC_CPU_700
  14. config CONFIG_ARC_CPU_700
  15. bool "ARC700"
  16. select ARCH_HAS_MMU
  17. help
  18. ARCompact ISA based ARC CPU
  19. endchoice
  20. choice
  21. prompt "MMU Page Size"
  22. default CONFIG_ARC_PAGE_SIZE_8K
  23. config CONFIG_ARC_PAGE_SIZE_8K
  24. bool "8KB"
  25. help
  26. Choose between 4k, 8k (default) or 16k
  27. config CONFIG_ARC_PAGE_SIZE_16K
  28. bool "16KB"
  29. config CONFIG_ARC_PAGE_SIZE_4K
  30. bool "4KB"
  31. endchoice