summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorGreg Banks <gnb@alphalink.com.au>2002-07-14 23:05:43 -0700
committerLinus Torvalds <torvalds@penguin.transmeta.com>2002-07-14 23:05:43 -0700
commite611985ead62abbcd34b87faa38df24f6472822a (patch)
tree4e77ef3d8d939c461595d9a123ba3c12371ad891 /drivers
parent8703710e43aab0da333908754e592f88dc2323e8 (diff)
[PATCH] PATCH 2.5: kconfig use of $ARCH (3_12)
Use of the $ARCH variable is undocumented; the alpha and i386 ports define the bool constants CONFIG_ALPHA and CONFIG_X86 for this purpose.
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/Config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/Config.in b/drivers/video/Config.in
index 27f14174d72e..845e254807a9 100644
--- a/drivers/video/Config.in
+++ b/drivers/video/Config.in
@@ -91,10 +91,10 @@ if [ "$CONFIG_FB" = "y" ]; then
if [ "$CONFIG_HP300" = "y" ]; then
define_bool CONFIG_FB_HP300 y
fi
- if [ "$ARCH" = "alpha" ]; then
+ if [ "$CONFIG_ALPHA" = "y" ]; then
tristate ' TGA framebuffer support' CONFIG_FB_TGA
fi
- if [ "$ARCH" = "i386" ]; then
+ if [ "$CONFIG_X86" = "y" ]; then
bool ' VESA VGA graphics console' CONFIG_FB_VESA
tristate ' VGA 16-color graphics console' CONFIG_FB_VGA16
tristate ' Hercules mono graphics console (EXPERIMENTAL)' CONFIG_FB_HGA