Config.nds32 492 B

12345678910111213141516171819202122232425262728293031
  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 "nds32"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_ANY_ENDIAN
  12. select ARCH_HAS_MMU
  13. select ARCH_HAS_UCONTEXT
  14. choice
  15. prompt "MMU Page Size"
  16. default CONFIG_NDS32_PAGE_SIZE_4K
  17. config CONFIG_NDS32_PAGE_SIZE_4K
  18. bool "4KB"
  19. help
  20. Use 4k pagesize.
  21. config CONFIG_NDS32_PAGE_SIZE_8K
  22. bool "8KB"
  23. help
  24. Use 8k pagesize.
  25. endchoice