summaryrefslogtreecommitdiffstats
path: root/xf86config.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-08-23 16:03:57 +0000
committerMatt Wilson <msw@redhat.com>2001-08-23 16:03:57 +0000
commitd14d78b83ec5e0df5265debf52fbfecdc2df5001 (patch)
tree8aba9af95da81757dbc2059a79d6314c0262cc34 /xf86config.py
parent8d8a067308728aa28ee8e425931f7c835be392cb (diff)
downloadanaconda-d14d78b83ec5e0df5265debf52fbfecdc2df5001.tar.gz
anaconda-d14d78b83ec5e0df5265debf52fbfecdc2df5001.tar.xz
anaconda-d14d78b83ec5e0df5265debf52fbfecdc2df5001.zip
don't fall over if the X package isn't available if you choose a generic 3.3.x server, remove I128 from list (#52364)
Diffstat (limited to 'xf86config.py')
-rw-r--r--xf86config.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/xf86config.py b/xf86config.py
index f47079631..5af8752be 100644
--- a/xf86config.py
+++ b/xf86config.py
@@ -773,9 +773,8 @@ class XF86Config:
def cards (self, thecard = None):
cards = {}
# all the straight servers
- for server in [ "3DLabs", "8514", "FBDev", "I128",
- "Mach8", "Mach32", "Mach64", "Mono",
- "P9000", "S3", "S3V", "SVGA", "W32", "VGA16" ]:
+ for server in [ "3DLabs", "8514", "FBDev", "Mach8", "Mach32", "Mach64",
+ "Mono", "P9000", "S3", "S3V", "SVGA", "W32", "VGA16" ]:
cards["Generic " + server] = { "SERVER" : server,
"NAME" : "Generic " + server }