-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
287 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
using Img2Ffu.Reader.Data; | ||
using MadWizard.WinUSBNet; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using UnifiedFlashingPlatform; | ||
|
||
namespace UFPTool | ||
{ | ||
internal static class RambootDevice | ||
{ | ||
internal static void Execute(string[] args) | ||
{ | ||
if (args.Contains("-?")) | ||
{ | ||
//PrintRambootDeviceHelp(); | ||
Environment.Exit(0); | ||
} | ||
|
||
if (!args.ToList().Any(x => x.Equals("-Path", StringComparison.InvariantCultureIgnoreCase))) | ||
{ | ||
Console.WriteLine("Insufficient number of arguments"); | ||
Console.WriteLine(); | ||
//PrintRambootDeviceHelp(); | ||
Environment.Exit(1); | ||
} | ||
|
||
string FFUPath = ""; | ||
string DevicePath = ""; | ||
bool VerifyWrite = false; | ||
bool SkipPlatformIDCheck = false; | ||
bool SkipSignatureCheck = false; | ||
bool SkipHash = false; | ||
|
||
for (int i = 1; i < args.Length; i++) | ||
{ | ||
string arg = args[i]; | ||
if (arg.Equals("-Path", StringComparison.InvariantCultureIgnoreCase)) | ||
{ | ||
if (i + 1 >= args.Length) | ||
{ | ||
Console.WriteLine("Insufficient number of arguments"); | ||
Console.WriteLine(); | ||
//PrintRambootDeviceHelp(); | ||
Environment.Exit(1); | ||
} | ||
|
||
i++; | ||
FFUPath = args[i]; | ||
} | ||
else if (arg.Equals("-DevicePath", StringComparison.InvariantCultureIgnoreCase)) | ||
{ | ||
if (i + 1 >= args.Length) | ||
{ | ||
Console.WriteLine("Insufficient number of arguments"); | ||
Console.WriteLine(); | ||
//PrintRambootDeviceHelp(); | ||
Environment.Exit(1); | ||
} | ||
|
||
i++; | ||
DevicePath = args[i]; | ||
} | ||
else if (arg.Equals("-VerifyWrite", StringComparison.InvariantCultureIgnoreCase)) | ||
{ | ||
VerifyWrite = true; | ||
} | ||
else | ||
{ | ||
Console.WriteLine($"Unknown argument: {arg}"); | ||
Console.WriteLine(); | ||
//PrintRambootDeviceHelp(); | ||
Environment.Exit(1); | ||
} | ||
} | ||
|
||
if (string.IsNullOrEmpty(DevicePath)) | ||
{ | ||
USBDeviceInfo[] details = USBDevice.GetDevices("{9E3BD5F7-9690-4FCC-8810-3E2650CD6ECC}"); | ||
if (details.Length == 0) | ||
{ | ||
Console.WriteLine("No UFP devices found"); | ||
Environment.Exit(1); | ||
} | ||
|
||
if (details.Length > 1) | ||
{ | ||
Console.WriteLine("Multiple UFP devices found. Please specify the device path"); | ||
Console.WriteLine(); | ||
Console.WriteLine("Available devices:"); | ||
for (int i = 0; i < details.Length; i++) | ||
{ | ||
Console.WriteLine($" {i + 1}. {details[i].DevicePath} {details[i].DeviceDescription} ({details[i].Manufacturer})"); | ||
} | ||
Environment.Exit(1); | ||
} | ||
|
||
DevicePath = details[0].DevicePath; | ||
} | ||
|
||
FlashFlags flashFlags = FlashFlags.FlashToRAM; | ||
|
||
if (VerifyWrite) | ||
{ | ||
flashFlags |= FlashFlags.VerifyWrite; | ||
} | ||
|
||
if (SkipPlatformIDCheck) | ||
{ | ||
flashFlags |= FlashFlags.SkipPlatformIDCheck; | ||
} | ||
|
||
if (SkipSignatureCheck) | ||
{ | ||
flashFlags |= FlashFlags.SkipSignatureCheck; | ||
} | ||
|
||
if (SkipHash) | ||
{ | ||
flashFlags |= FlashFlags.SkipHash; | ||
} | ||
|
||
using FileStream FFUStream = new(FFUPath, FileMode.Open, FileAccess.Read, FileShare.Read); | ||
SignedImage signedImage = new(FFUStream); | ||
int chunkSize = signedImage.ChunkSize; | ||
ulong totalChunkCount = (ulong)FFUStream.Length / (ulong)chunkSize; | ||
|
||
FFUStream.Seek(0, SeekOrigin.Begin); | ||
|
||
using UnifiedFlashingPlatformTransport ufp = new(DevicePath); | ||
|
||
int previousPercentage = -1; | ||
|
||
long length = FFUStream.Length; | ||
|
||
Stopwatch stopwatch = new(); | ||
stopwatch.Start(); | ||
|
||
Console.WriteLine($"Flashing {DevicePath}"); | ||
|
||
ufp.FlashFFU(FFUStream, new ProgressUpdater(totalChunkCount, (int percentage, TimeSpan? eta) => | ||
{ | ||
string NewText = null; | ||
if (percentage != null) | ||
{ | ||
NewText = $"\rFlash: {percentage:d}% completed..."; | ||
} | ||
|
||
if (eta != null) | ||
{ | ||
if (NewText == null) | ||
{ | ||
NewText = ""; | ||
} | ||
else | ||
{ | ||
NewText += " - "; | ||
} | ||
|
||
NewText += $"Estimated time remaining: {eta:h\\:mm\\:ss}"; | ||
} | ||
|
||
if (NewText != null && previousPercentage != percentage) | ||
{ | ||
previousPercentage = percentage; | ||
Console.Write(NewText); | ||
} | ||
}), ResetAfterwards: false, Options: (byte)flashFlags); | ||
|
||
stopwatch.Stop(); | ||
|
||
TimeSpan elapsed = stopwatch.Elapsed; | ||
double num = length / 1048576L / elapsed.TotalSeconds; | ||
|
||
Console.WriteLine(); | ||
Console.WriteLine($"Device flashed successfully at {num:F3} MB/s in {elapsed.TotalSeconds:F3} seconds"); | ||
Console.WriteLine("Device is RAM booting"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
using MadWizard.WinUSBNet; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using UnifiedFlashingPlatform; | ||
|
||
namespace UFPTool | ||
{ | ||
internal static class RelockDevice | ||
{ | ||
internal static void Execute(string[] args) | ||
{ | ||
if (args.Contains("-?")) | ||
{ | ||
//PrintRelockDeviceHelp(); | ||
Environment.Exit(0); | ||
} | ||
|
||
string DevicePath = ""; | ||
|
||
for (int i = 1; i < args.Length; i++) | ||
{ | ||
string arg = args[i]; | ||
if (arg.Equals("-DevicePath", StringComparison.InvariantCultureIgnoreCase)) | ||
{ | ||
if (i + 1 >= args.Length) | ||
{ | ||
Console.WriteLine("Insufficient number of arguments"); | ||
Console.WriteLine(); | ||
//PrintRelockDeviceHelp(); | ||
Environment.Exit(1); | ||
} | ||
|
||
i++; | ||
DevicePath = args[i]; | ||
} | ||
else | ||
{ | ||
Console.WriteLine($"Unknown argument: {arg}"); | ||
Console.WriteLine(); | ||
//PrintRelockDeviceHelp(); | ||
Environment.Exit(1); | ||
} | ||
} | ||
|
||
if (string.IsNullOrEmpty(DevicePath)) | ||
{ | ||
USBDeviceInfo[] details = USBDevice.GetDevices("{9E3BD5F7-9690-4FCC-8810-3E2650CD6ECC}"); | ||
if (details.Length == 0) | ||
{ | ||
Console.WriteLine("No UFP devices found"); | ||
Environment.Exit(1); | ||
} | ||
|
||
if (details.Length > 1) | ||
{ | ||
Console.WriteLine("Multiple UFP devices found. Please specify the device path"); | ||
Console.WriteLine(); | ||
Console.WriteLine("Available devices:"); | ||
for (int i = 0; i < details.Length; i++) | ||
{ | ||
Console.WriteLine($"[Device {i}]"); | ||
Console.WriteLine($"Device Path: {details[i].DevicePath}"); | ||
Console.WriteLine($"Can Flash: True"); | ||
Console.WriteLine(); | ||
} | ||
Environment.Exit(1); | ||
} | ||
|
||
DevicePath = details[0].DevicePath; | ||
} | ||
|
||
using UnifiedFlashingPlatformTransport ufp = new(DevicePath); | ||
ufp.Relock(); | ||
|
||
Console.WriteLine("Device relocked successfully"); | ||
} | ||
} | ||
} |