summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-06-21 23:16:16 +0000
committerErik Troan <ewt@redhat.com>2001-06-21 23:16:16 +0000
commitf538a06abc4c32b01c8633afd51ee709c3deefcd (patch)
tree58dc8182d5143266f5a88148e906f34cf3e52fa8 /anaconda
parent7b2529cb17fd1f82e4fbe02af7ccc38553ec97e8 (diff)
downloadanaconda-f538a06abc4c32b01c8633afd51ee709c3deefcd.tar.gz
anaconda-f538a06abc4c32b01c8633afd51ee709c3deefcd.tar.xz
anaconda-f538a06abc4c32b01c8633afd51ee709c3deefcd.zip
get floppy code working again
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda5
1 files changed, 4 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index 11e0a7ca5..2940a55fe 100755
--- a/anaconda
+++ b/anaconda
@@ -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)