From 9d66b357bd45ec6474eb5f97e1e614ab0434d99e Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 2 Jul 2017 05:07:07 +0100 Subject: [PATCH] Show OEM ID as system identifier. --- DiscImageChef.Filesystems/HPFS.cs | 1 + DiscImageChef.Tests/Filesystems/HPFS.cs | 47 +++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 DiscImageChef.Tests/Filesystems/HPFS.cs diff --git a/DiscImageChef.Filesystems/HPFS.cs b/DiscImageChef.Filesystems/HPFS.cs index 4e6c6c02..834aead2 100644 --- a/DiscImageChef.Filesystems/HPFS.cs +++ b/DiscImageChef.Filesystems/HPFS.cs @@ -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(); } diff --git a/DiscImageChef.Tests/Filesystems/HPFS.cs b/DiscImageChef.Tests/Filesystems/HPFS.cs new file mode 100644 index 00000000..e2ccec98 --- /dev/null +++ b/DiscImageChef.Tests/Filesystems/HPFS.cs @@ -0,0 +1,47 @@ +// /*************************************************************************** +// The Disc Image Chef +// ---------------------------------------------------------------------------- +// +// Filename : HPFS.cs +// Version : 1.0 +// Author(s) : Natalia Portillo +// +// Component : Component +// +// Revision : $Revision$ +// Last change by : $Author$ +// Date : $Date$ +// +// --[ Description ] ---------------------------------------------------------- +// +// Description +// +// --[ License ] -------------------------------------------------------------- +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// ---------------------------------------------------------------------------- +// Copyright (C) 2011-2015 Claunia.com +// ****************************************************************************/ +// //$Id$ +using System; +namespace DiscImageChef.Tests.Filesystems +{ + public class HPFS + { + public HPFS() + { + } + } +}