diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-22 05:52:06 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-22 05:52:06 +0000 |
commit | 780184d7cd87d1301e52631381f63b30213ae47f (patch) | |
tree | c89d85e6b2c1f91dc2ee6ad41c8f492c819aaf1a /installclass.py | |
parent | ffab316c87251475a1c4695ef16d342bdd617b7f (diff) | |
download | anaconda-780184d7cd87d1301e52631381f63b30213ae47f.tar.gz anaconda-780184d7cd87d1301e52631381f63b30213ae47f.tar.xz anaconda-780184d7cd87d1301e52631381f63b30213ae47f.zip |
this should fix xconfig in kickstart
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installclass.py b/installclass.py index b29c21845..213bddb9d 100644 --- a/installclass.py +++ b/installclass.py @@ -301,7 +301,7 @@ class BaseInstallClass: # XXX they could have sensitive hardware, but we need this info =\ videohw = videocard.VideoCardInfo() if videohw: - id.setVideoCard(videohw) + id.setVideoCard(videohw) if (not noProbe): monitorhw = monitor.MonitorInfo() @@ -334,7 +334,7 @@ class BaseInstallClass: else: id.desktop.setDefaultRunLevel(3) - xcfg = XF86Config(id.videocard, id.monitor, id.mouse) + xcfg = XF86Config(id.videocard.primaryCard(), id.monitor, id.mouse) available = xcfg.availableModes() |