Al Viro | 61bee20 | 2008-08-25 04:51:27 -0400 | [diff] [blame] | 1 | source "arch/um/Kconfig.common" |
| 2 | |
| 3 | menu "UML-specific options" |
| 4 | |
Paolo 'Blaisorblade' Giarrusso | 8597737 | 2005-11-13 16:07:06 -0800 | [diff] [blame] | 5 | menu "Host processor type and features" |
| 6 | |
Al Viro | 7a78a17 | 2007-10-29 04:34:31 +0000 | [diff] [blame] | 7 | source "arch/x86/Kconfig.cpu" |
Paolo 'Blaisorblade' Giarrusso | 8597737 | 2005-11-13 16:07:06 -0800 | [diff] [blame] | 8 | |
| 9 | endmenu |
| 10 | |
Paolo 'Blaisorblade' Giarrusso | c45166be3 | 2005-05-01 08:58:54 -0700 | [diff] [blame] | 11 | config UML_X86 |
Jeff Dike | 54d67ee | 2007-12-01 12:16:28 -0800 | [diff] [blame] | 12 | def_bool y |
Jan Beulich | c49aa5b | 2011-03-08 09:24:26 +0000 | [diff] [blame] | 13 | select GENERIC_FIND_FIRST_BIT |
| 14 | select GENERIC_FIND_NEXT_BIT |
Jeff Dike | 54d67ee | 2007-12-01 12:16:28 -0800 | [diff] [blame] | 15 | |
Paolo 'Blaisorblade' Giarrusso | c45166be3 | 2005-05-01 08:58:54 -0700 | [diff] [blame] | 16 | config 64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | bool |
Al Viro | 4198426 | 2008-08-23 17:00:34 -0400 | [diff] [blame] | 18 | default SUBARCH = "x86_64" |
| 19 | |
| 20 | config X86_32 |
| 21 | def_bool !64BIT |
| 22 | select HAVE_AOUT |
| 23 | |
Jan Beulich | bfc39061 | 2011-03-01 11:14:55 +0000 | [diff] [blame] | 24 | config X86_64 |
| 25 | def_bool 64BIT |
| 26 | |
Al Viro | 4198426 | 2008-08-23 17:00:34 -0400 | [diff] [blame] | 27 | config RWSEM_XCHGADD_ALGORITHM |
| 28 | def_bool X86_XADD |
| 29 | |
| 30 | config RWSEM_GENERIC_SPINLOCK |
| 31 | def_bool !X86_XADD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | config 3_LEVEL_PGTABLES |
Al Viro | 4198426 | 2008-08-23 17:00:34 -0400 | [diff] [blame] | 34 | bool "Three-level pagetables (EXPERIMENTAL)" if !64BIT |
| 35 | default 64BIT |
Paolo 'Blaisorblade' Giarrusso | ce2d2ae | 2006-01-18 17:42:59 -0800 | [diff] [blame] | 36 | depends on EXPERIMENTAL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | help |
| 38 | Three-level pagetables will let UML have more than 4G of physical |
| 39 | memory. All the memory that can't be mapped directly will be treated |
| 40 | as high memory. |
| 41 | |
Paolo 'Blaisorblade' Giarrusso | ce2d2ae | 2006-01-18 17:42:59 -0800 | [diff] [blame] | 42 | However, this it experimental on 32-bit architectures, so if unsure say |
| 43 | N (on x86-64 it's automatically enabled, instead, as it's safe there). |
| 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | config ARCH_HAS_SC_SIGNALS |
Al Viro | 4198426 | 2008-08-23 17:00:34 -0400 | [diff] [blame] | 46 | def_bool !64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | config ARCH_REUSE_HOST_VSYSCALL_AREA |
Al Viro | 4198426 | 2008-08-23 17:00:34 -0400 | [diff] [blame] | 49 | def_bool !64BIT |
| 50 | |
| 51 | config SMP_BROKEN |
| 52 | def_bool 64BIT |
Akinobu Mita | f214ef3 | 2006-03-26 01:38:59 -0800 | [diff] [blame] | 53 | |
| 54 | config GENERIC_HWEIGHT |
Al Viro | 4198426 | 2008-08-23 17:00:34 -0400 | [diff] [blame] | 55 | def_bool y |
Al Viro | 61bee20 | 2008-08-25 04:51:27 -0400 | [diff] [blame] | 56 | |
| 57 | source "arch/um/Kconfig.um" |
| 58 | |
| 59 | endmenu |
| 60 | |
| 61 | source "arch/um/Kconfig.rest" |