diff options
author | Brian Gerst <bgerst@didntduck.org> | 2005-10-30 17:59:20 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-30 20:37:10 -0500 |
commit | 0d078f6f96809c95c69b99d6605a502b0ac63d3d (patch) | |
tree | 1b4691abab5f96f2aa8a5217a2701f181b41940d /drivers/video/console/Kconfig | |
parent | 4276d32260662d5401a15a0a46e506fb5c8ab563 (diff) |
[PATCH] CONFIG_IA32
Add CONFIG_X86_32 for i386. This allows selecting options that only apply
to 32-bit systems.
(X86 && !X86_64) becomes X86_32
(X86 || X86_64) becomes X86
Signed-off-by: Brian Gerst <bgerst@didntduck.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/console/Kconfig')
-rw-r--r-- | drivers/video/console/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/console/Kconfig b/drivers/video/console/Kconfig index 7e731691e2a9..6a9ae2b3d1ab 100644 --- a/drivers/video/console/Kconfig +++ b/drivers/video/console/Kconfig | |||
@@ -28,7 +28,7 @@ config VGA_CONSOLE | |||
28 | 28 | ||
29 | config VIDEO_SELECT | 29 | config VIDEO_SELECT |
30 | bool "Video mode selection support" | 30 | bool "Video mode selection support" |
31 | depends on (X86 || X86_64) && VGA_CONSOLE | 31 | depends on X86 && VGA_CONSOLE |
32 | ---help--- | 32 | ---help--- |
33 | This enables support for text mode selection on kernel startup. If | 33 | This enables support for text mode selection on kernel startup. If |
34 | you want to take advantage of some high-resolution text mode your | 34 | you want to take advantage of some high-resolution text mode your |