diff options
Diffstat (limited to 'src/arch/x86/bootblock_simple.c')
-rw-r--r-- | src/arch/x86/bootblock_simple.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/arch/x86/bootblock_simple.c b/src/arch/x86/bootblock_simple.c new file mode 100644 index 0000000000..adeecf7ba6 --- /dev/null +++ b/src/arch/x86/bootblock_simple.c @@ -0,0 +1,23 @@ +#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 + } + + const char* target1 = "fallback/romstage"; + unsigned long entry; + entry = findstage(target1); + if (entry) call(entry, bist); + halt(); +} |