blob: 8bac9e6796ff49f2a48286ea4deac80d18c94021 (
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_MMU
select ARCH_HAS_UCONTEXT
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
|