aarch64: add hwcap header file
[uclibc-ng.git] / extra / Configs / Config.aarch64
blobd666cc595906703caea0e7c25cbaa1e207f02e68
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 ARCH_USE_MMU
16         select UCLIBC_HAS_FPU
18 choice
19         prompt "MMU Page Size"
20         default CONFIG_AARCH64_PAGE_SIZE_4K
22 config CONFIG_AARCH64_PAGE_SIZE_4K
23         bool "4KB"
24         help
25           Choose between 4k(default), 16k or 64k
27 config CONFIG_AARCH64_PAGE_SIZE_16K
28         bool "16KB"
30 config CONFIG_AARCH64_PAGE_SIZE_64K
31         bool "64KB"
33 endchoice