Kconfig.x86 1.0 KB
Newer Older
A
Al Viro 已提交
1 2 3 4
source "arch/um/Kconfig.common"

menu "UML-specific options"

5 6
menu "Host processor type and features"

A
Al Viro 已提交
7
source "arch/x86/Kconfig.cpu"
8 9 10

endmenu

11
config UML_X86
12 13 14
	def_bool y

config 64BIT
15
	bool
16
	default SUBARCH = "x86_64"
17

J
Jeff Dike 已提交
18
config X86_32
19 20
	def_bool !64BIT
	select HAVE_AOUT
J
Jeff Dike 已提交
21

22 23 24
config X86_64
	def_bool 64BIT

J
Jeff Dike 已提交
25
config RWSEM_XCHGADD_ALGORITHM
26
	def_bool X86_XADD
J
Jeff Dike 已提交
27

28 29
config RWSEM_GENERIC_SPINLOCK
	def_bool !X86_XADD
L
Linus Torvalds 已提交
30 31

config 3_LEVEL_PGTABLES
32 33
	bool "Three-level pagetables (EXPERIMENTAL)" if !64BIT
	default 64BIT
34
	depends on EXPERIMENTAL
L
Linus Torvalds 已提交
35 36 37 38 39
	help
	Three-level pagetables will let UML have more than 4G of physical
	memory.  All the memory that can't be mapped directly will be treated
	as high memory.

40 41 42
	However, this it experimental on 32-bit architectures, so if unsure say
	N (on x86-64 it's automatically enabled, instead, as it's safe there).

L
Linus Torvalds 已提交
43
config ARCH_HAS_SC_SIGNALS
44
	def_bool !64BIT
L
Linus Torvalds 已提交
45 46

config ARCH_REUSE_HOST_VSYSCALL_AREA
47 48 49 50
	def_bool !64BIT

config SMP_BROKEN
	def_bool 64BIT
51 52

config GENERIC_HWEIGHT
53
	def_bool y
A
Al Viro 已提交
54 55 56 57 58 59

source "arch/um/Kconfig.um"

endmenu

source "arch/um/Kconfig.rest"