diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-04-24 15:46:31 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-04-24 15:46:31 +0000 |
commit | 0a562126d84c59a113231ae7ab38984f92d62153 (patch) | |
tree | 5e87b9094f4ebdc328979e3a0640dee5f1fc40cb /isys/isys.py | |
parent | dd200d781bd9012f562399c2ee69c23fe60d86b9 (diff) | |
download | anaconda-0a562126d84c59a113231ae7ab38984f92d62153.tar.gz anaconda-0a562126d84c59a113231ae7ab38984f92d62153.tar.xz anaconda-0a562126d84c59a113231ae7ab38984f92d62153.zip |
another taroon merge. tagged before as before-taroon-merge, after as
after-taroon-merge
this one adds s390 fixes, basic i/p series platform support, support for
multiple kernels and one second stage, cmdline kickstart mode (nice for s390),
some warning cleanups.
Diffstat (limited to 'isys/isys.py')
-rw-r--r-- | isys/isys.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/isys/isys.py b/isys/isys.py index 2ddb44e1c..d1e6f6dee 100644 --- a/isys/isys.py +++ b/isys/isys.py @@ -14,8 +14,6 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # -import kudzu -import parted import _isys import string import os @@ -251,6 +249,8 @@ def driveDict(klassArg): return dict def hardDriveDict(): + import parted + dict = driveDict("disk") # this is kind of ugly, but it's much easier to do this from python @@ -310,6 +310,9 @@ def getDasdPorts(): def isUsableDasd(device): return _isys.isUsableDasd(device) +def isLdlDasd(device): + return _isys.isLdlDasd(device) + def makeDevInode(name, fn=None): if fn: _isys.mkdevinode(name, fn) |