flog is ein weiters Form, indem das Memo log eingebunden ist
Das ist mir so noch gar nicht aufgefallen, das ich das erst schließe und dann wieder beschreibe
Neue Funktion ist somit dann:
Delphi-Quellcode:
function Tfmain.installcwm:Boolean;
begin
fmain.RunCaptured(ExtractFilePath(Application.Exename), 'adb', 'reboot bootloader');
Delay(500);
flog.log.Lines.Add('reboot into bootloader');
Delay(500);
fmain.RunCaptured(ExtractFilePath(Application.Exename), 'fastboot', 'flash recovery cwm.img');
flog.log.Lines.Add('install CWM recovery');
Delay(1000);
fmain.RunCaptured(ExtractFilePath(Application.Exename), 'fastboot', 'reboot');
Delay(500);
flog.log.Free;
result := true;
end;
Ist aber für das Problem keine Lösung