[coreboot-gerrit] Patch set updated for coreboot: google/urara: Provide dummy implementations of rec/dev functions

Furquan Shaikh (furquan@google.com) gerrit at coreboot.org
Wed Jul 27 19:08:11 CEST 2016


Furquan Shaikh (furquan at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15896

-gerrit

commit f082fde5b7a2074b0a91de06235af536b1c8f916
Author: Furquan Shaikh <furquan at google.com>
Date:   Mon Jul 25 16:59:00 2016 -0700

    google/urara: Provide dummy implementations of rec/dev functions
    
    This is required to enable elog support in ChromeOS by default.
    
    BUG=chrome-os-partner:55639
    
    Change-Id: I9c97143d794de4bf220ddf67c0ca2eac2f7a326d
    Signed-off-by: Furquan Shaikh <furquan at google.com>
---
 src/mainboard/google/urara/chromeos.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/src/mainboard/google/urara/chromeos.c b/src/mainboard/google/urara/chromeos.c
index 0d5485f..4db06c6 100644
--- a/src/mainboard/google/urara/chromeos.c
+++ b/src/mainboard/google/urara/chromeos.c
@@ -28,3 +28,15 @@ void fill_lb_gpios(struct lb_gpios *gpios)
 {
 	printk(BIOS_ERR, "%s unsupported, but called\n", __func__);
 }
+
+int get_developer_mode_switch(void)
+{
+	printk(BIOS_ERR, "%s unsupported, but called\n", __func__);
+	return 0;
+}
+
+int get_recovery_mode_switch(void)
+{
+	printk(BIOS_ERR, "%s unsupported, but called\n", __func__);
+	return 0;
+}



More information about the coreboot-gerrit mailing list