Change OS boot identifier, to be able to load both 'dummy' and 'xtos' modules at the same time
All checks were successful
Builds / ExectOS (i686) (push) Successful in 32s
Builds / ExectOS (amd64) (push) Successful in 34s

This commit is contained in:
Rafal Kupiec 2024-04-29 12:31:18 +02:00
parent a6b8f97fbb
commit 170b11f7a2
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -65,7 +65,7 @@ XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
BlpDummyProtocol.BootSystem = DmBootSystem;
/* Register XTOS boot protocol */
XtLdrProtocol->Boot.RegisterProtocol(L"XTOS", &DummyGuid);
XtLdrProtocol->Boot.RegisterProtocol(L"DUMMYOS", &DummyGuid);
/* Register DUMMY protocol as XTOS boot protocol */
return XtLdrProtocol->Protocol.Install(&BlpDummyProtocol, &DummyGuid);