Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/FelLib
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2018-07-24 01:37:31 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2018-07-24 01:37:31 +0300
commit1d18116378d23281c4ba18efb269592780e1b52b (patch)
treec0904aef1c778a07e0d32a37423908ec7d7df4d9 /FelLib
parent66fab6d0bc42f560306fa4cee70d49a343649569 (diff)
Fix for 'Cant unpack ramdisk' problem
Diffstat (limited to 'FelLib')
-rw-r--r--FelLib/Fel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/FelLib/Fel.cs b/FelLib/Fel.cs
index ae60468d..1111d00e 100644
--- a/FelLib/Fel.cs
+++ b/FelLib/Fel.cs
@@ -399,7 +399,7 @@ namespace com.clusterrr.FelLib
public void RunUbootCmd(string command, bool noreturn = false, OnFelProgress callback = null)
{
callback?.Invoke(CurrentAction.RunningCommand, command);
- if (cmdOffset < 0) throw new Exception("Invalid Unoot binary, command variable not found");
+ if (cmdOffset < 0) throw new Exception("Invalid Uboot binary, command variable not found");
const UInt32 testSize = 0x20;
if (UBootBin == null || UBootBin.Length < testSize)
throw new FelException("Can't init Uboot, incorrect Uboot binary");