summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/iutil.py b/iutil.py
index 824311157..8194824f3 100644
--- a/iutil.py
+++ b/iutil.py
@@ -270,6 +270,11 @@ def makeDriveDeviceNodes():
# make the node for the device mapper
makeDMNode()
+
+ # make loop devices
+ for loopMinor in range(0, 8):
+ loop = "loop%d" %(loopMinor,)
+ isys.makeDevInode(loop, "/dev/%s" %(loop,))
# this is disgusting and I feel very dirty
def hasiSeriesNativeStorage():