Simple confirmation instead of unlock sequence for FIRM boots

This commit is contained in:
d0k3 2017-11-22 22:39:40 +01:00
parent da7599d05c
commit b4ee86d4ef

View File

@ -786,7 +786,8 @@ u32 BootFirmHandler(const char* bootpath, bool verbose, bool delete) {
return 1;
}
if (verbose && !ShowUnlockSequence(3, "%s (%dkB)\nBoot FIRM via chainloader?", pathstr, firm_size / 1024))
if (verbose && !ShowPrompt(true, "%s (%dkB)\nWarning: Do not boot FIRMs\nfrom untrusted sources.\n \nBoot FIRM?",
pathstr, firm_size / 1024))
return 1;
void* firm = (void*) TEMP_BUFFER;