add experimental aarch64 support
[uclibc-ng.git] / extra / Configs / Config.aarch64
blobcf1ce3b791a571fbd60ca990346f9184400c96b5
2 # For a description of the syntax of this configuration file,
3 # see extra/config/Kconfig-language.txt
6 config TARGET_ARCH
7         string
8         default "aarch64"
10 config FORCE_OPTIONS_FOR_ARCH
11         bool
12         default y
13         select ARCH_ANY_ENDIAN
14         select ARCH_HAS_MMU
15         select UCLIBC_HAS_FPU
17 choice
18         prompt "MMU Page Size"
19         default CONFIG_AARCH64_PAGE_SIZE_4K
21 config CONFIG_AARCH64_PAGE_SIZE_4K
22         bool "4KB"
23         help
24           Choose between 4k(default), 16k or 64k
26 config CONFIG_AARCH64_PAGE_SIZE_16K
27         bool "16KB"
29 config CONFIG_AARCH64_PAGE_SIZE_64K
30         bool "64KB"
32 endchoice