diff options
-rw-r--r-- | src/mainboard/lenovo/x60/romstage.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/x60/romstage.c b/src/mainboard/lenovo/x60/romstage.c index 35d93454c2..aabbf657a4 100644 --- a/src/mainboard/lenovo/x60/romstage.c +++ b/src/mainboard/lenovo/x60/romstage.c @@ -244,6 +244,11 @@ void mainboard_romstage_entry(unsigned long bist) /* Set up the console */ console_init(); + if (dock_present()) + printk(BIOS_DEBUG, "Dock is present\n"); + else + printk(BIOS_DEBUG, "Dock is not present\n"); + /* Halt if there was a built in self test failure */ report_bist_failure(bist); |