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 bad01c2 commit ce97125Copy full SHA for ce97125
board/ti/omap4_kc1/kc1.c
@@ -251,15 +251,15 @@ int misc_init_r(void)
251
#endif
252
253
#ifdef CONFIG_FASTBOOT_COUNTDOWN
254
- if (fastboot_mode == 0) {
+ if ((fastboot_mode == 0) && ((start_condition & STRT_ON_PLUG_DET) == 0)) {
255
// DO MENU PREP
256
lcd_position_cursor((lcd_get_screen_columns()/2)-(lcd_strlen(CONFIG_WELCOME_MSG)/2), lcd_get_screen_rows()-1);
257
lcd_printf(CONFIG_WELCOME_MSG);
258
}
259
260
run_command("setbacklight 7f", 0);
261
- run_command("fastboot", 0);
262
-
+ if ((start_condition & STRT_ON_PLUG_DET) == 0)
+ run_command("fastboot", 0);
263
return 0;
264
265
0 commit comments