mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-23 14:58:09 +00:00
fix(core): stay_in_bootloader should default to false, not true
This commit is contained in:
parent
efac5d56f5
commit
ebfd51d818
@ -260,7 +260,7 @@ int main(void) {
|
||||
|
||||
vendor_header vhdr;
|
||||
image_header hdr;
|
||||
secbool stay_in_bootloader = sectrue; // flag to stay in bootloader
|
||||
secbool stay_in_bootloader = secfalse; // flag to stay in bootloader
|
||||
|
||||
// detect whether the devices contains a valid firmware
|
||||
|
||||
@ -308,18 +308,18 @@ int main(void) {
|
||||
if (bootloader_usb_loop(NULL, NULL) != sectrue) {
|
||||
return 1;
|
||||
}
|
||||
} else {
|
||||
// ... or if user touched the screen on start
|
||||
// ... or we have stay_in_bootloader flag to force it
|
||||
if (touched || stay_in_bootloader == sectrue) {
|
||||
// no ui_fadeout(); - we already start from black screen
|
||||
ui_screen_info(secfalse, &vhdr, &hdr);
|
||||
ui_fadein();
|
||||
}
|
||||
|
||||
// and start the usb loop
|
||||
if (bootloader_usb_loop(&vhdr, &hdr) != sectrue) {
|
||||
return 1;
|
||||
}
|
||||
// ... or if user touched the screen on start
|
||||
// ... or we have stay_in_bootloader flag to force it
|
||||
if (touched || stay_in_bootloader == sectrue) {
|
||||
// no ui_fadeout(); - we already start from black screen
|
||||
ui_screen_info(secfalse, &vhdr, &hdr);
|
||||
ui_fadein();
|
||||
|
||||
// and start the usb loop
|
||||
if (bootloader_usb_loop(&vhdr, &hdr) != sectrue) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user