mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* DiscImageChef.Helpers/BigEndianStructure.cs:
* DiscImageChef.Helpers/DiscImageChef.Helpers.csproj: Added code that directly marshals from a big-endian byte array. But untested with nested structures. * DiscImageChef.Partitions/Acorn.cs: Added support for Acorn FileCore partition, closes #4. * DiscImageChef.Partitions/BSD.cs: Moved BSD partitions from inside MBR code to separate code, as they can (and do) appear on other architectures as the only scheme. * DiscImageChef.Partitions/DEC.cs: Added support for DEC disklabels, closes #11. * DiscImageChef.Partitions/DragonFlyBSD.cs: Added support for DragonFly BSD 64-bit disklabels. * DiscImageChef.Partitions/PC98.cs: Added support for NEC PC-9800 partitions. * DiscImageChef.Partitions/RioKarma.cs: Added support for Rio Karma partitions. * DiscImageChef.Partitions/SGI.cs: Added support for SGI DVHs, closes #9. * DiscImageChef.Partitions/UNIX.cs: Moved UNIX partitions from inside MBR code to separate code, as they can (and do) appear on other architectures as the only scheme. * TODO: * README.md: * DiscImageChef.Partitions/DiscImageChef.Partitions.csproj: Added support for Acorn FileCore partition, closes #4. Added support for DEC disklabels, closes #11. Added support for SGI DVHs, closes #9. Moved BSD partitions from inside MBR code to separate code, as they can (and do) appear on other architectures as the only scheme. Added support for DragonFly BSD 64-bit disklabels. Added support for NEC PC-9800 partitions. Added support for Rio Karma partitions. Moved UNIX partitions from inside MBR code to separate code, as they can (and do) appear on other architectures as the only scheme. * DiscImageChef.Partitions/GPT.cs: Added new partition type UUIDs. * DiscImageChef.Partitions/MBR.cs: Moved BSD partitions from inside MBR code to separate code, as they can (and do) appear on other architectures as the only scheme. Moved UNIX partitions from inside MBR code to separate code, as they can (and do) appear on other architectures as the only scheme. * DiscImageChef.Partitions/Sun.cs: Added new partition types. Prepare structures for marshaling.
This commit is contained in:
@@ -215,10 +215,14 @@ namespace DiscImageChef.PartPlugins
|
||||
return "FreeBSD Swap";
|
||||
case "516E7CB6-6ECF-11D6-8FF8-00022D09712B":
|
||||
return "FreeBSD UFS";
|
||||
case "516E7CB7-6ECF-11D6-8FF8-00022D09712B":
|
||||
return "FreeBSD UFS2";
|
||||
case "516E7CB8-6ECF-11D6-8FF8-00022D09712B":
|
||||
return "FreeBSD Vinum";
|
||||
case "516E7CBA-6ECF-11D6-8FF8-00022D09712B":
|
||||
return "FreeBSD ZFS";
|
||||
case "74BA7DD9-A689-11E1-BD04-00E081286ACF":
|
||||
return "FreeBSD nandfs";
|
||||
case "48465300-0000-11AA-AA11-00306543ECAC":
|
||||
return "Apple HFS";
|
||||
case "55465300-0000-11AA-AA11-00306543ECAC":
|
||||
@@ -323,6 +327,24 @@ namespace DiscImageChef.PartPlugins
|
||||
return "Acronis Secure Zone";
|
||||
case "7C3457EF-0000-11AA-AA11-00306543ECAC":
|
||||
return "Apple File System";
|
||||
case "9D087404-1CA5-11DC-8817-01301BB8A9F5":
|
||||
return "DragonflyBSD Label";
|
||||
case "9D58FDBD-1CA5-11DC-8817-01301BB8A9F5":
|
||||
return "DragonflyBSD Swap";
|
||||
case "9D94CE7C-1CA5-11DC-8817-01301BB8A9F5":
|
||||
return "DragonflyBSD UFS";
|
||||
case "9DD4478F-1CA5-11DC-8817-01301BB8A9F5":
|
||||
return "DragonflyBSD Vinum";
|
||||
case "DBD5211B-1CA5-11DC-8817-01301BB8A9F5":
|
||||
return "DragonflyBSD CCD";
|
||||
case "3D48CE54-1D16-11DC-8817-01301BB8A9F5":
|
||||
return "DragonflyBSD Label";
|
||||
case "BD215AB2-1D16-11DC-8696-01301BB8A9F5":
|
||||
return "DragonflyBSD Legacy";
|
||||
case "61DC63AC-6E38-11DC-8513-01301BB8A9F5":
|
||||
return "DragonflyBSD Hammer";
|
||||
case "5CBB9AD1-862D-11DC-A94D-01301BB8A9F5":
|
||||
return "DragonflyBSD Hammer2";
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user