2011-07-26 08:12:48 +08:00
|
|
|
mainmenu "User Mode Linux/$SUBARCH $KERNELVERSION Kernel Configuration"
|
|
|
|
|
2008-08-25 16:51:27 +08:00
|
|
|
source "arch/um/Kconfig.common"
|
|
|
|
|
|
|
|
menu "UML-specific options"
|
|
|
|
|
2005-11-14 08:07:06 +08:00
|
|
|
menu "Host processor type and features"
|
|
|
|
|
2007-10-29 12:34:31 +08:00
|
|
|
source "arch/x86/Kconfig.cpu"
|
2005-11-14 08:07:06 +08:00
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
2005-05-01 23:58:54 +08:00
|
|
|
config UML_X86
|
2008-08-24 05:00:34 +08:00
|
|
|
def_bool y
|
2011-03-08 17:24:26 +08:00
|
|
|
select GENERIC_FIND_FIRST_BIT
|
2008-08-24 05:00:34 +08:00
|
|
|
|
|
|
|
config 64BIT
|
2012-02-11 19:15:50 +08:00
|
|
|
bool "64-bit kernel" if SUBARCH = "x86"
|
|
|
|
default SUBARCH != "i386"
|
2005-05-01 23:58:54 +08:00
|
|
|
|
2007-12-02 04:16:28 +08:00
|
|
|
config X86_32
|
2008-08-24 05:00:34 +08:00
|
|
|
def_bool !64BIT
|
|
|
|
select HAVE_AOUT
|
2012-09-28 02:10:57 +08:00
|
|
|
select ARCH_WANT_IPC_PARSE_VERSION
|
2012-09-28 13:01:03 +08:00
|
|
|
select MODULES_USE_ELF_REL
|
2012-10-23 10:34:11 +08:00
|
|
|
select CLONE_BACKWARDS
|
2012-12-26 05:09:20 +08:00
|
|
|
select OLD_SIGSUSPEND3
|
2012-12-26 08:14:55 +08:00
|
|
|
select OLD_SIGACTION
|
2007-12-02 04:16:28 +08:00
|
|
|
|
2011-03-01 19:14:55 +08:00
|
|
|
config X86_64
|
|
|
|
def_bool 64BIT
|
2012-09-28 13:01:03 +08:00
|
|
|
select MODULES_USE_ELF_RELA
|
2011-03-01 19:14:55 +08:00
|
|
|
|
2013-09-27 12:14:46 +08:00
|
|
|
config ARCH_DEFCONFIG
|
|
|
|
string
|
|
|
|
default "arch/um/configs/i386_defconfig" if X86_32
|
|
|
|
default "arch/um/configs/x86_64_defconfig" if X86_64
|
|
|
|
|
2007-12-02 04:16:28 +08:00
|
|
|
config RWSEM_XCHGADD_ALGORITHM
|
2012-11-29 03:50:25 +08:00
|
|
|
def_bool 64BIT
|
2007-12-02 04:16:28 +08:00
|
|
|
|
2008-08-24 05:00:34 +08:00
|
|
|
config RWSEM_GENERIC_SPINLOCK
|
2011-05-24 04:51:33 +08:00
|
|
|
def_bool !RWSEM_XCHGADD_ALGORITHM
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
config 3_LEVEL_PGTABLES
|
2012-10-03 02:16:48 +08:00
|
|
|
bool "Three-level pagetables" if !64BIT
|
2008-08-24 05:00:34 +08:00
|
|
|
default 64BIT
|
2005-04-17 06:20:36 +08:00
|
|
|
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.
|
|
|
|
|
2006-01-19 09:42:59 +08:00
|
|
|
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).
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
config ARCH_HAS_SC_SIGNALS
|
2008-08-24 05:00:34 +08:00
|
|
|
def_bool !64BIT
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
config ARCH_REUSE_HOST_VSYSCALL_AREA
|
2008-08-24 05:00:34 +08:00
|
|
|
def_bool !64BIT
|
|
|
|
|
2006-03-26 17:38:59 +08:00
|
|
|
config GENERIC_HWEIGHT
|
2008-08-24 05:00:34 +08:00
|
|
|
def_bool y
|
2008-08-25 16:51:27 +08:00
|
|
|
|
|
|
|
source "arch/um/Kconfig.um"
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
|
|
|
source "arch/um/Kconfig.rest"
|