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@google.com> Reviewed-on: https://review.coreboot.org/15896 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins)
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user