summaryrefslogtreecommitdiff
path: root/extra/Configs/Config.nds32
blob: 2ed6a32b7f1a7bba917681f639c5ac780477e113 (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
32
#
# 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
	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