mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* commandline:
Moved commandline submodule to my own fork. * DiscImageChef.sln: * DiscImageChef/Main.cs: * DiscImageChef/Options.cs: * DiscImageChef/Commands/Decode.cs: * DiscImageChef/Commands/Verify.cs: * DiscImageChef/Commands/Entropy.cs: * DiscImageChef/Commands/Analyze.cs: * DiscImageChef/Commands/Compare.cs: * DiscImageChef/Commands/Formats.cs: * DiscImageChef/DiscImageChef.csproj: * DiscImageChef/Commands/PrintHex.cs: * DiscImageChef/Commands/Checksum.cs: * DiscImageChef/Commands/Benchmark.cs: * DiscImageChef/Commands/MediaScan.cs: * DiscImageChef/Commands/MediaInfo.cs: * DiscImageChef/Commands/DumpMedia.cs: * DiscImageChef/Commands/DeviceInfo.cs: * DiscImageChef/Commands/DeviceReport.cs: * DiscImageChef/Commands/CreateSidecar.cs: Updated to new CommandLine API.
This commit is contained in:
@@ -46,7 +46,7 @@ namespace DiscImageChef.Commands
|
||||
{
|
||||
public static class DeviceReport
|
||||
{
|
||||
public static void doDeviceReport(DeviceReportSubOptions options)
|
||||
public static void doDeviceReport(DeviceReportOptions options)
|
||||
{
|
||||
DicConsole.DebugWriteLine("Device-Report command", "--debug={0}", options.Debug);
|
||||
DicConsole.DebugWriteLine("Device-Report command", "--verbose={0}", options.Verbose);
|
||||
@@ -97,7 +97,7 @@ namespace DiscImageChef.Commands
|
||||
Core.Statistics.AddCommand("device-report");
|
||||
}
|
||||
|
||||
static void doATADeviceReport(DeviceReportSubOptions options, Device dev)
|
||||
static void doATADeviceReport(DeviceReportOptions options, Device dev)
|
||||
{
|
||||
DiscImageChef.Decoders.ATA.AtaErrorRegistersCHS errorRegs;
|
||||
byte[] buffer;
|
||||
@@ -1074,17 +1074,17 @@ namespace DiscImageChef.Commands
|
||||
xmlFs.Close();
|
||||
}
|
||||
|
||||
static void doNVMeDeviceReport(DeviceReportSubOptions options, Device dev)
|
||||
static void doNVMeDeviceReport(DeviceReportOptions options, Device dev)
|
||||
{
|
||||
throw new NotImplementedException("NVMe devices not yet supported.");
|
||||
}
|
||||
|
||||
static void doSDDeviceReport(DeviceReportSubOptions options, Device dev)
|
||||
static void doSDDeviceReport(DeviceReportOptions options, Device dev)
|
||||
{
|
||||
throw new NotImplementedException("MMC/SD devices not yet supported.");
|
||||
}
|
||||
|
||||
static void doSCSIDeviceReport(DeviceReportSubOptions options, Device dev)
|
||||
static void doSCSIDeviceReport(DeviceReportOptions options, Device dev)
|
||||
{
|
||||
byte[] senseBuffer;
|
||||
byte[] buffer;
|
||||
|
||||
Reference in New Issue
Block a user