diff options
author | Bill Nottingham <notting@redhat.com> | 2007-12-06 17:19:06 -0500 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2007-12-07 13:27:43 -0500 |
commit | ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d (patch) | |
tree | 2ba78909498d92d3024605eec38f22fe93dab225 /partitions.py | |
parent | 5863d19efb90b03fc2e3b59500586c4e8083d6b6 (diff) | |
download | anaconda-ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d.tar.gz anaconda-ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d.tar.xz anaconda-ed7c89428ab7a5dfec6c6e9f7add0e2c20ae644d.zip |
Don't try and make devices. Adjust calls as necessary.
Diffstat (limited to 'partitions.py')
-rw-r--r-- | partitions.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/partitions.py b/partitions.py index a2de28971..2b399d12b 100644 --- a/partitions.py +++ b/partitions.py @@ -69,9 +69,6 @@ def partitionObjectsInitialize(anaconda): anaconda.id.partitions.setFromDisk(anaconda.id.diskset) anaconda.id.partitions.setProtected(anaconda.dispatch) - # make sure we have all the device nodes we'll want - iutil.makeDriveDeviceNodes() - # dispatch.py helper function def partitioningComplete(anaconda): if anaconda.dir == DISPATCH_BACK and anaconda.id.fsset.isActive(): @@ -266,7 +263,7 @@ class Partitions: else: fsystem = fsset.fileSystemTypeGet(fs) try: - fslabel = isys.readFSLabel(theDev, makeDevNode=0) + fslabel = isys.readFSLabel(theDev) except: fslabel = None @@ -336,7 +333,7 @@ class Partitions: else: fsystem = fsset.fileSystemTypeGet(fs) try: - fslabel = isys.readFSLabel(theDev, makeDevNode=0) + fslabel = isys.readFSLabel(theDev) except: fslabel = None |