Config.aarch64 592 B

12345678910111213141516171819202122232425262728293031323334
  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 "aarch64"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_ANY_ENDIAN
  12. select ARCH_HAS_MMU
  13. select ARCH_USE_MMU
  14. select ARCH_VDSO_SUPPORT
  15. select UCLIBC_HAS_FPU
  16. choice
  17. prompt "MMU Page Size"
  18. default CONFIG_AARCH64_PAGE_SIZE_4K
  19. config CONFIG_AARCH64_PAGE_SIZE_4K
  20. bool "4KB"
  21. help
  22. Choose between 4k(default), 16k or 64k
  23. config CONFIG_AARCH64_PAGE_SIZE_16K
  24. bool "16KB"
  25. config CONFIG_AARCH64_PAGE_SIZE_64K
  26. bool "64KB"
  27. endchoice