summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-03-31 14:26:02 -0500
committerDavid Lehman <dlehman@redhat.com>2009-04-02 22:09:03 -0500
commit1ac59f21a9b28121b31c7e169ee0e3d07db852e9 (patch)
tree2edec38e24c63f9f29050948e28cb60e0bd467e2
parentd073744b0d7e0289e605a520482e1cd266203907 (diff)
downloadanaconda-1ac59f21a9b28121b31c7e169ee0e3d07db852e9.tar.gz
anaconda-1ac59f21a9b28121b31c7e169ee0e3d07db852e9.tar.xz
anaconda-1ac59f21a9b28121b31c7e169ee0e3d07db852e9.zip
Remove unused PRePDevice class.
-rw-r--r--storage/devices.py37
1 files changed, 0 insertions, 37 deletions
diff --git a/storage/devices.py b/storage/devices.py
index 11f453487..082725e0d 100644
--- a/storage/devices.py
+++ b/storage/devices.py
@@ -2765,43 +2765,6 @@ class DASDDevice(DiskDevice):
raise NotImplementedError("probe method not defined for StorageDevice")
-class PRePBootDevice(PartitionDevice):
- """ A PPC PReP boot partition.
-
- XXX Would this be better represented by a DeviceFormat class?
- """
- _type = "PReP"
- #_partedFlags = parted.PARTITION_PREP
-
- def __init__(self, device,
- size=None, grow=False, maxsize=None,
- major=None, minor=None,
- sysfsPath='', parents=None,
- exists=None, primary=False):
- """ Create a PRePBootDevice instance.
-
- Arguments:
-
- device -- the device name (generally a device node's basename)
-
- Keyword Arguments:
-
- grow -- whether or not to grow the partition (boolean )
- maxsize -- max size for growable partitions (units TBD)
- size -- the device's size (units/format TBD)
- major -- the device major
- minor -- the device minor
- sysfsPath -- sysfs device path
- parents -- a list of required Device instances
- exists -- indicates whether this is an existing device
- """
- PartitionDevice.__init__(self, device, partType=self._partType,
- size=size, grow=grow, maxsize=maxsize,
- major=major, minor=minor,
- sysfsPath=sysfsPath, exists=exists,
- parents=parents, primary=primary)
-
-
class NFSDevice(StorageDevice, NetworkStorageDevice):
""" An NFS device """
_type = "nfs"