Furquan Shaikh (furquan@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15896
-gerrit
commit e9aef8c485d39679f6087b835286abde396d94fc Author: Furquan Shaikh furquan@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.
Change-Id: I9c97143d794de4bf220ddf67c0ca2eac2f7a326d Signed-off-by: Furquan Shaikh furquan@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; +}