diff options
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 34517bf14ba4..1eb59971af5d 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -1,13 +1,25 @@ | |||
1 | # x86 configuration | 1 | # x86 configuration |
2 | mainmenu "Linux Kernel Configuration for x86" | ||
3 | |||
4 | # Select 32 or 64 bit | ||
5 | config 64BIT | ||
6 | bool "64-bit kernel" | ||
7 | default n | ||
8 | help | ||
9 | Say yes to build a 64-bit kernel - formerly known as x86_64 | ||
10 | Say no to build a 32-bit kernel - formerly known as i386 | ||
11 | |||
12 | config X86_32 | ||
13 | def_bool !64BIT | ||
14 | |||
15 | config X86_64 | ||
16 | def_bool 64BIT | ||
2 | 17 | ||
3 | ### Arch settings | 18 | ### Arch settings |
4 | config X86 | 19 | config X86 |
5 | bool | 20 | bool |
6 | default y | 21 | default y |
7 | 22 | ||
8 | config 64BIT | ||
9 | def_bool X86_64 | ||
10 | |||
11 | config GENERIC_TIME | 23 | config GENERIC_TIME |
12 | bool | 24 | bool |
13 | default y | 25 | default y |