summaryrefslogtreecommitdiffstats
path: root/command-stubs
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-12-20 21:20:08 +0000
committerJeremy Katz <katzj@redhat.com>2004-12-20 21:20:08 +0000
commitdee05788b0612b12a92b434748f369f5848d1cd3 (patch)
tree13c6ded4d0f8faaaa10c17d5dec674c4c98b4a83 /command-stubs
parent6cdd0175be203c618c92fa43b58764f1ccb230b6 (diff)
downloadanaconda-dee05788b0612b12a92b434748f369f5848d1cd3.tar.gz
anaconda-dee05788b0612b12a92b434748f369f5848d1cd3.tar.xz
anaconda-dee05788b0612b12a92b434748f369f5848d1cd3.zip
2004-12-20 Jeremy Katz <katzj@redhat.com>
* command-stubs/mknod-stub (main): Add * partedUtils.py (get_partition_name): * iutil.py (makeDriveDeviceNodes): * fsset.py (prepbootFileSystem.getDiskPart): Promise SX8 devices are of the form /dev/sx8/dpn; support this as needed.
Diffstat (limited to 'command-stubs')
-rwxr-xr-xcommand-stubs/mknod-stub3
1 files changed, 2 insertions, 1 deletions
diff --git a/command-stubs/mknod-stub b/command-stubs/mknod-stub
index 53fd44c17..f4239c75d 100755
--- a/command-stubs/mknod-stub
+++ b/command-stubs/mknod-stub
@@ -26,7 +26,8 @@ def main():
while (drive.find('/') != -1):
if (drive.startswith("cciss") or drive.startswith("ida") or
drive.startswith("rd") or drive.startswith("ataraid")
- or drive.startswith("iseries") or drive.startswith("i2o")):
+ or drive.startswith("iseries") or drive.startswith("i2o")
+ or drive.startswith("sx8")):
break
drive = drive[drive.find('/') + 1:]
isys.makeDevInode(drive, path)