blob: 85e6a55b3b59d6741c069378d31091c7de02ec55 [file] [log] [blame]
Paolo 'Blaisorblade' Giarrusso85977372005-11-13 16:07:06 -08001menu "Host processor type and features"
2
3source "arch/i386/Kconfig.cpu"
4
5endmenu
6
Paolo 'Blaisorblade' Giarrussoc45166be32005-05-01 08:58:54 -07007config UML_X86
8 bool
9 default y
10
11config 64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 bool
13 default n
14
Benjamin LaHaise52fdd082005-09-03 15:56:52 -070015config SEMAPHORE_SLEEPERS
16 bool
17 default y
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019config TOP_ADDR
20 hex
21 default 0xc0000000 if !HOST_2G_2G
22 default 0x80000000 if HOST_2G_2G
23
24config 3_LEVEL_PGTABLES
Paolo 'Blaisorblade' Giarrussoce2d2ae2006-01-18 17:42:59 -080025 bool "Three-level pagetables (EXPERIMENTAL)"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 default n
Paolo 'Blaisorblade' Giarrussoce2d2ae2006-01-18 17:42:59 -080027 depends on EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 help
29 Three-level pagetables will let UML have more than 4G of physical
30 memory. All the memory that can't be mapped directly will be treated
31 as high memory.
32
Paolo 'Blaisorblade' Giarrussoce2d2ae2006-01-18 17:42:59 -080033 However, this it experimental on 32-bit architectures, so if unsure say
34 N (on x86-64 it's automatically enabled, instead, as it's safe there).
35
Jeff Diked67b5692005-07-07 17:56:49 -070036config STUB_CODE
37 hex
38 default 0xbfffe000
39
40config STUB_DATA
41 hex
42 default 0xbffff000
43
44config STUB_START
45 hex
46 default STUB_CODE
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048config ARCH_HAS_SC_SIGNALS
49 bool
50 default y
51
52config ARCH_REUSE_HOST_VSYSCALL_AREA
53 bool
54 default y
Akinobu Mitaf214ef32006-03-26 01:38:59 -080055
56config GENERIC_HWEIGHT
57 bool
58 default y
59