Show OEM ID as system identifier.

This commit is contained in:
2017-07-02 05:07:07 +01:00
parent 688eeebce7
commit 9d66b357bd
2 changed files with 48 additions and 0 deletions

View File

@@ -260,6 +260,7 @@ namespace DiscImageChef.Filesystems
xmlFSType.Type = "HPFS";
xmlFSType.VolumeName = hpfs_bpb.volume_label;
xmlFSType.VolumeSerial = string.Format("{0:X8}", hpfs_bpb.serial_no);
xmlFSType.SystemIdentifier = hpfs_bpb.OEMName;
information = sb.ToString();
}