coreboot-kgpe-d16/src/arch/x86/bootblock_simple.c

29 lines
490 B
C
Raw Normal View History

#include <smp/node.h>
#include <bootblock_common.h>
#include <halt.h>
static void main(unsigned long bist)
{
if (boot_cpu()) {
bootblock_mainboard_init();
#if CONFIG_USE_OPTION_TABLE
sanitize_cmos();
#endif
#if CONFIG_CMOS_POST
cmos_post_init();
#endif
}
#if CONFIG_SEPARATE_VERSTAGE
const char* target1 = "fallback/verstage";
#else
const char* target1 = "fallback/romstage";
#endif
unsigned long entry;
entry = findstage(target1);
if (entry) call(entry, bist);
halt();
}