summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2007-12-06 17:19:06 -0500
committerBill Nottingham <notting@redhat.com>2007-12-07 13:27:43 -0500
commited7c89428ab7a5dfec6c6e9f7add0e2c20ae644d (patch)
tree2ba78909498d92d3024605eec38f22fe93dab225 /anaconda
parent5863d19efb90b03fc2e3b59500586c4e8083d6b6 (diff)
downloadanaconda-ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d.tar.gz
anaconda-ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d.tar.xz
anaconda-ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d.zip
Don't try and make devices. Adjust calls as necessary.
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda12
1 files changed, 0 insertions, 12 deletions
diff --git a/anaconda b/anaconda
index bca8c5ef7..9503d4959 100755
--- a/anaconda
+++ b/anaconda
@@ -719,9 +719,6 @@ if __name__ == "__main__":
import rescue, instdata
- iutil.makeDriveDeviceNodes()
- iutil.makeCharDeviceNodes()
-
anaconda.id = instdata.InstallData(anaconda, [], anaconda.methodstr, opts.display_mode)
rescue.runRescue(anaconda, instClass)
@@ -782,11 +779,6 @@ if __name__ == "__main__":
checkMemory(opts)
- # create character device nodes if we're not running in test mode - have
- # to do this early sine it's used for Synaptics, etc.
- if not flags.test:
- iutil.makeCharDeviceNodes()
-
# this lets install classes force text mode instlls
if instClass.forceTextMode:
stdoutLog.info(_("Install class forcing text mode installation"))
@@ -891,10 +883,6 @@ if __name__ == "__main__":
else:
anaconda.intf.messageWindow("Unknown monitor", msg)
- # create device nodes for detected devices if we're not running in test mode
- if not flags.test and flags.setupFilesystems:
- iutil.makeDriveDeviceNodes()
-
anaconda.setBackend(instClass)
anaconda.id = instClass.installDataClass(anaconda, extraModules, anaconda.methodstr, opts.display_mode, anaconda.backend)