diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-05-05 01:42:17 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-05-05 01:42:17 +0000 |
commit | 383a190ddb0648b78a0d80a9903348a64987438a (patch) | |
tree | 93ebfc2155378084003f2eb36bd9189598cae691 /fsset.py | |
parent | d2e725e1df3b07de24566d37dfb2afe3c7a29031 (diff) | |
download | anaconda-383a190ddb0648b78a0d80a9903348a64987438a.tar.gz anaconda-383a190ddb0648b78a0d80a9903348a64987438a.tar.xz anaconda-383a190ddb0648b78a0d80a9903348a64987438a.zip |
2005-05-04 Jeremy Katz <katzj@redhat.com>
* fsset.py (HfsPlusFileSystem.__init__): Add hfs+ support.
* autopart.py (growParts): Don't try to grow a partition beyond
the size of the largest free space. Fixes pathological problem
hit when installing a dual boot with MacOS X.
Diffstat (limited to 'fsset.py')
-rw-r--r-- | fsset.py | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -823,6 +823,16 @@ class hfsFileSystem(FileSystemType): fileSystemTypeRegister(hfsFileSystem()) +class HfsPlusFileSystem(FileSystemType): + def __init__(self): + FileSystemType.__init__(self) + self.partedFileSystemType = parted.file_system_type_get("hfs+") + self.formattable = 0 + self.checked = 0 + self.name = "hfs+" + +fileSystemTypeRegister(HfsPlusFileSystem()) + class applebootstrapFileSystem(hfsFileSystem): def __init__(self): hfsFileSystem.__init__(self) |