-# this doesn't need to be here
class HFSPlus(FS):
_type = "hfs+"
_modules = ["hfsplus"]
_udevTypes = ["hfsplus"]
+ _mkfs = "mkfs.hfsplus"
+ _fsck = "fsck.hfsplus"
+ _packages = ["hfsplus-tools"]
+ _formattable = True
+ _minSize = 1
+ _maxSize = 2 * 1024 * 1024
partedSystem = fileSystemType["hfs+"]
register_device_format(HFSPlus)
--
1.7.7.6
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
02-14-2012, 05:05 PM
"Brian C. Lane"
Add support for HFS+ partitions
On Tue, Feb 14, 2012 at 12:52:17PM -0500, Matthew Garrett wrote:
> We'll want to actually create HFS+ partitions, so add the missing bits
> for that.
> ---
Ack
--
Brian C. Lane | Anaconda Team | IRC: bcl #anaconda | Port Orchard, WA (PST8PDT)
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
02-14-2012, 07:22 PM
Matthew Garrett
Add support for HFS+ partitions
We'll want to actually create HFS+ partitions, so add the missing bits
for that.
---
_mountType was missing - hfs+ is called hfsplus in-kernel, so it's needed.
-# this doesn't need to be here
class HFSPlus(FS):
_type = "hfs+"
_modules = ["hfsplus"]
_udevTypes = ["hfsplus"]
+ _mkfs = "mkfs.hfsplus"
+ _fsck = "fsck.hfsplus"
+ _packages = ["hfsplus-tools"]
+ _formattable = True
+ _mountType = "hfsplus"
+ _minSize = 1
+ _maxSize = 2 * 1024 * 1024
partedSystem = fileSystemType["hfs+"]
register_device_format(HFSPlus)
--
1.7.7.6
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
02-14-2012, 08:35 PM
David Lehman
Add support for HFS+ partitions
On Tue, 2012-02-14 at 15:22 -0500, Matthew Garrett wrote:
> We'll want to actually create HFS+ partitions, so add the missing bits
> for that.
> ---
>
> _mountType was missing - hfs+ is called hfsplus in-kernel, so it's needed.