diff options
author | Mike Fulbright <msf@redhat.com> | 2001-07-31 15:39:38 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-07-31 15:39:38 +0000 |
commit | b982f18634a2844db845222cd8f060704bf98b70 (patch) | |
tree | c61b4fdb401ece36ddf9e1b4c609928c604782ef /anaconda | |
parent | a5c7ccbcb7b41f44d26c3f4d0efba74d973499f9 (diff) | |
download | anaconda-b982f18634a2844db845222cd8f060704bf98b70.tar.gz anaconda-b982f18634a2844db845222cd8f060704bf98b70.tar.xz anaconda-b982f18634a2844db845222cd8f060704bf98b70.zip |
dont ddcprobe in test mode
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -369,7 +369,7 @@ mousehw = mouse.Mouse(skipProbe = 1) if 1: sys.stdout.write( _("Probing for video card: ")) fbdev = None - videohw = videocard.VideoCardInfo() + videohw = videocard.VideoCardInfo(skipDDCProbe = flags.test) if videohw and videohw.primaryCard(): sys.stdout.write(videohw.primaryCard().shortDescription()+'\n') @@ -378,7 +378,7 @@ if 1: sys.stdout.write(_("Unable to probe\n")) sys.stdout.write( _("Probing for monitor type: ")) - monitorhw = monitor.MonitorInfo(fbDevice=fbdev) + monitorhw = monitor.MonitorInfo(fbDevice=fbdev, skipDDCProbe = flags.test) sys.stdout.write(monitorhw.shortDescription()+'\n') # only probe if we're installing a real box or |