From 01ec3a3119766338e22fb69e87a5761b941b46d3 Mon Sep 17 00:00:00 2001 From: "Chloe M." Date: Tue, 23 Jun 2026 02:35:49 +0000 Subject: [PATCH] stos: init: Initialize PBI imager manager Signed-off-by: Chloe M. --- paw/stos/init/init.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/paw/stos/init/init.c b/paw/stos/init/init.c index 528ead5..3c4ff16 100644 --- a/paw/stos/init/init.c +++ b/paw/stos/init/init.c @@ -7,6 +7,7 @@ */ #include +#include #include #include #include @@ -58,4 +59,7 @@ KiKernelEntry(VOID) /* Phase 1 initialization the bootstrap core */ HalKpcrP1Init(&BootstrapCore); + + /* Initialize the pre-boot image manager */ + ExPbiInit(); }