[coreboot-gerrit] Patch set updated for coreboot: lenovo/x60: add info message if dock is present

Alexander Couzens (lynxis@fe80.eu) gerrit at coreboot.org
Wed Aug 10 14:28:52 CEST 2016


Alexander Couzens (lynxis at fe80.eu) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16136

-gerrit

commit 905dc4598e570939a7333e0127507b37929587c3
Author: Alexander Couzens <lynxis at fe80.eu>
Date:   Wed Aug 10 13:17:18 2016 +0200

    lenovo/x60: add info message if dock is present
    
    Change-Id: I5a6d41f815f65719780499fa18c131311a9dc8f7
    Signed-off-by: Alexander Couzens <lynxis at fe80.eu>
---
 src/mainboard/lenovo/x60/romstage.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/mainboard/lenovo/x60/romstage.c b/src/mainboard/lenovo/x60/romstage.c
index 1f249a6..bdfadab 100644
--- a/src/mainboard/lenovo/x60/romstage.c
+++ b/src/mainboard/lenovo/x60/romstage.c
@@ -239,6 +239,11 @@ void mainboard_romstage_entry(unsigned long bist)
 	/* Set up the console */
 	console_init();
 
+	if (dock_present())
+		printk(BIOS_INFO, "Dock is present\n");
+	else
+		printk(BIOS_INFO, "Dock is not present\n");
+
 	/* Halt if there was a built in self test failure */
 	report_bist_failure(bist);
 



More information about the coreboot-gerrit mailing list