blob: a74249947026431917342a0b3259838e69871eb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#
# For a description of the syntax of this configuration file,
# see extra/config/Kconfig-language.txt
#
config TARGET_ARCH
string
default "nds32"
config FORCE_OPTIONS_FOR_ARCH
bool
default y
select ARCH_ANY_ENDIAN
select ARCH_HAS_DEPRECATED_SYSCALLS
select ARCH_HAS_MMU
choice
prompt "MMU Page Size"
default CONFIG_NDS32_PAGE_SIZE_4K
config CONFIG_NDS32_PAGE_SIZE_4K
bool "4KB"
help
Use 4k pagesize.
config CONFIG_NDS32_PAGE_SIZE_8K
bool "8KB"
help
Use 8k pagesize.
endchoice
|