We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3a9562 commit 093ffd3Copy full SHA for 093ffd3
common/droidboot_main.c
@@ -45,11 +45,8 @@ void droidboot_show_dualboot_menu()
45
46
// If there is no SD card and fallback is unsupported fail unconditionally, else just error and continue to fallback
47
if(droidboot_get_sd_fail()){
48
- if(droidboot_have_fallback())
49
- droidboot_log(DROIDBOOT_LOG_ERROR, "droidboot main: failed to get sd card\n");
50
- else
51
52
- while(1);
+ droidboot_log(DROIDBOOT_LOG_ERROR, "droidboot main: failed to get sd card\n");
+ if(!droidboot_have_fallback()) while(1);
53
return;
54
}
55
0 commit comments