coreboot-kgpe-d16/src/lib/fallback_boot.c
Aaron Durbin 6403167d29 compiler.h: add __weak macro
Instead of writing out '__attribute__((weak))' use a shorter form.

Change-Id: If418a1d55052780077febd2d8f2089021f414b91
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/25767
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Justin TerAvest <teravest@chromium.org>
2018-04-24 14:37:59 +00:00

22 lines
471 B
C

#include <fallback.h>
#include <compiler.h>
#include <watchdog.h>
/* Implement platform specific override. */
void __weak set_boot_successful(void) { }
void boot_successful(void)
{
if (IS_ENABLED(CONFIG_FRAMEBUFFER_SET_VESA_MODE) &&
IS_ENABLED(CONFIG_VGA_TEXT_FRAMEBUFFER)) {
void vbe_textmode_console(void);
vbe_textmode_console();
}
/* Remember this was a successful boot */
set_boot_successful();
/* turn off the boot watchdog */
watchdog_off();
}