diff options
author | Chris Lumens <clumens@redhat.com> | 2007-07-30 14:29:24 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-07-30 14:29:24 +0000 |
commit | 248e06917467e6c677cec8d9e576344edda2e3d3 (patch) | |
tree | 73bbe1578028b11caedf0f2b23eb7c3881f7ce5c /anaconda | |
parent | f1ab21ef6dc0ef38bae271053fd2fd1c80ddd8a2 (diff) | |
download | anaconda-248e06917467e6c677cec8d9e576344edda2e3d3.tar.gz anaconda-248e06917467e6c677cec8d9e576344edda2e3d3.tar.xz anaconda-248e06917467e6c677cec8d9e576344edda2e3d3.zip |
Create devices nodes even earlier (#249882).
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -862,12 +862,12 @@ if __name__ == "__main__": log.critical (_("unknown install method: %s"), opts.method) sys.exit(1) - anaconda.setBackend(instClass) - # 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, floppyDevice, anaconda.methodstr, opts.display_mode, anaconda.backend) anaconda.id.x_already_set = x_already_set |