Config.aarch64 566 B

123456789101112131415161718192021222324252627282930313233
  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 UCLIBC_HAS_FPU
  15. choice
  16. prompt "MMU Page Size"
  17. default CONFIG_AARCH64_PAGE_SIZE_4K
  18. config CONFIG_AARCH64_PAGE_SIZE_4K
  19. bool "4KB"
  20. help
  21. Choose between 4k(default), 16k or 64k
  22. config CONFIG_AARCH64_PAGE_SIZE_16K
  23. bool "16KB"
  24. config CONFIG_AARCH64_PAGE_SIZE_64K
  25. bool "64KB"
  26. endchoice