diff options
author | Erik Troan <ewt@redhat.com> | 2001-06-21 23:16:16 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2001-06-21 23:16:16 +0000 |
commit | f538a06abc4c32b01c8633afd51ee709c3deefcd (patch) | |
tree | 58dc8182d5143266f5a88148e906f34cf3e52fa8 /anaconda | |
parent | 7b2529cb17fd1f82e4fbe02af7ccc38553ec97e8 (diff) | |
download | anaconda-f538a06abc4c32b01c8633afd51ee709c3deefcd.tar.gz anaconda-f538a06abc4c32b01c8633afd51ee709c3deefcd.tar.xz anaconda-f538a06abc4c32b01c8633afd51ee709c3deefcd.zip |
get floppy code working again
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -218,6 +218,7 @@ import instdata import videocard import monitor import mouse +import floppy # handle traceonly and exit if traceOnly: @@ -483,7 +484,9 @@ if method: print "unknown install method:", method sys.exit(1) -id = instClass.installDataClass(extraModules) +floppyDevice = floppy.probeFloppyDevice() + +id = instClass.installDataClass(extraModules, floppyDevice) if mousehw: id.setMouse(mousehw) |