1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <console/vtxprintf.h>
8 * vboot callbacks implemented by coreboot -- necessary for making general API
9 * calls when CONFIG(VBOOT_LIB) is enabled. For callbacks specific to verstage
10 * CONFIG(VBOOT), please see vboot_logic.c.
13 void vb2ex_printf(const char *func
, const char *fmt
, ...)
18 printk(BIOS_INFO
, "VB2:%s() ", func
);
21 vprintk(BIOS_INFO
, fmt
, args
);
25 void vb2ex_abort(void)
27 die("vboot has aborted execution; exit\n");