diff options
author | Raul E Rangel <rrangel@chromium.org> | 2021-02-05 16:45:16 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-02-09 20:43:12 +0000 |
commit | ccf99a39d202535ceaa19493f7f762116efc8d50 (patch) | |
tree | cef76a09a137a7c8d41b0ea31e9bea9286541521 /src/security/vboot | |
parent | 3da5569488bd6155be96ec57e1a477623a21b176 (diff) | |
download | coreboot-ccf99a39d202535ceaa19493f7f762116efc8d50.tar.xz |
security/vboot/bootmode: Add weak fill_lb_gpios
This change allows VBOOT to build when the mainboard hasn't implemented
any of the VBOOT functions yet.
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: I42ca8f0dba9fd4a868bc7b636e4ed04cbf8dfab0
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50341
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/security/vboot')
-rw-r--r-- | src/security/vboot/bootmode.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/security/vboot/bootmode.c b/src/security/vboot/bootmode.c index 4f491db951..6c051093ea 100644 --- a/src/security/vboot/bootmode.c +++ b/src/security/vboot/bootmode.c @@ -72,4 +72,8 @@ int __weak get_recovery_mode_switch(void) return 0; } +void __weak fill_lb_gpios(struct lb_gpios *gpios) +{ +} + #endif |