ptos: init: Initialize the pre-boot image subsystem

Signed-off-by: Chloe M <chloe@mensia.org>
This commit is contained in:
2026-07-14 22:13:02 -04:00
parent 705d8caef2
commit cb12ab9518
+4
View File
@@ -11,6 +11,7 @@
#include <ke/bugcheck.h> #include <ke/bugcheck.h>
#include <ke/sched.h> #include <ke/sched.h>
#include <ex/trace.h> #include <ex/trace.h>
#include <ex/pbi.h>
#include <ps/process.h> #include <ps/process.h>
#include <mm/pm.h> #include <mm/pm.h>
#include <mm/vm.h> #include <mm/vm.h>
@@ -96,6 +97,9 @@ KiKernelInit(VOID)
/* Phase 2 init of bootstrap core */ /* Phase 2 init of bootstrap core */
HalKpcrP2Init(&BootstrapCore); HalKpcrP2Init(&BootstrapCore);
/* Initialize the PBI manager */
ExPbiInit();
/* Initialize the root process */ /* Initialize the root process */
InitializeRootProcess(); InitializeRootProcess();