summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-07-30 14:29:24 +0000
committerChris Lumens <clumens@redhat.com>2007-07-30 14:29:24 +0000
commit248e06917467e6c677cec8d9e576344edda2e3d3 (patch)
tree73bbe1578028b11caedf0f2b23eb7c3881f7ce5c /anaconda
parentf1ab21ef6dc0ef38bae271053fd2fd1c80ddd8a2 (diff)
downloadanaconda-248e06917467e6c677cec8d9e576344edda2e3d3.tar.gz
anaconda-248e06917467e6c677cec8d9e576344edda2e3d3.tar.xz
anaconda-248e06917467e6c677cec8d9e576344edda2e3d3.zip
Create devices nodes even earlier (#249882).
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda4
1 files changed, 2 insertions, 2 deletions
diff --git a/anaconda b/anaconda
index 3d1b8622f..8009dca60 100755
--- a/anaconda
+++ b/anaconda
@@ -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