Config.aarch64 545 B

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