Skip to content
Snippets Groups Projects
Commit 6c995eb8 authored by Daniel's avatar Daniel
Browse files

Pad out the uboot file being flashed to 640KB to prevent md5 errors

parent 1e128d4c
No related branches found
No related tags found
No related merge requests found
......@@ -784,6 +784,8 @@ namespace com.clusterrr.hakchi_gui.Tasks
throw new Exception(Resources.InvalidUbootSize + " " + uboot.Length);
}
uboot.SetLength(655360);
uboot.OnProgress += tasker.OnProgress;
hakchi.Shell.Execute("cat > /uboot.bin", uboot, null, null, 0, true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment