Unify naming convention
Alle Prüfungen waren erfolgreich
Builds / ExectOS (amd64) (push) Successful in 35s
Builds / ExectOS (i686) (push) Successful in 45s

Dieser Commit ist enthalten in:
Rafal Kupiec 2024-01-25 22:25:23 +01:00
Ursprung 9ab4328c9d
Commit 73bd43d16d
Signiert von: belliash
GPG-Schlüssel-ID: 4E829243E0CFE6B4
5 geänderte Dateien mit 7 neuen und 7 gelöschten Zeilen

Datei anzeigen

@ -150,11 +150,11 @@ XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
}
/* Set routines available via ChainLoader boot protocol */
ChBootProtocol.BootSystem = ChBootSystem;
ChpBootProtocol.BootSystem = ChBootSystem;
/* Register XTOS boot protocol */
XtLdrProtocol->Boot.RegisterProtocol(L"CHAINLOADER", &Guid);
/* Install XTOS protocol */
return XtLdrProtocol->Protocol.Install(&ChBootProtocol, &Guid);
return XtLdrProtocol->Protocol.Install(&ChpBootProtocol, &Guid);
}

Datei anzeigen

@ -10,7 +10,7 @@
/* ChainLoader Boot Protocol */
XTBL_BOOT_PROTOCOL ChBootProtocol;
XTBL_BOOT_PROTOCOL ChpBootProtocol;
/* XTLDR protocol handler */
PXTBL_LOADER_PROTOCOL XtLdrProtocol;

Datei anzeigen

@ -13,7 +13,7 @@
/* ChainLoader Boot Protocol */
EXTERN XTBL_BOOT_PROTOCOL ChBootProtocol;
EXTERN XTBL_BOOT_PROTOCOL ChpBootProtocol;
/* XTLDR protocol handler */
EXTERN PXTBL_LOADER_PROTOCOL XtLdrProtocol;

Datei anzeigen

@ -24,7 +24,7 @@ XTBL_MODINFO = L"XTLDR Dummy Module";
*/
XTCDECL
EFI_STATUS
BlBootDummyOS(IN PXTBL_BOOT_PARAMETERS Parameters)
DmBootSystem(IN PXTBL_BOOT_PARAMETERS Parameters)
{
return STATUS_EFI_SUCCESS;
}
@ -59,7 +59,7 @@ XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
}
/* Set boot protocol routines */
BlpDummyProtocol.BootSystem = BlBootDummyOS;
BlpDummyProtocol.BootSystem = DmBootSystem;
/* Register XTOS boot protocol */
XtLdrProtocol->Boot.RegisterProtocol(L"XTOS", &DummyGuid);

Datei anzeigen

@ -16,7 +16,7 @@
/* Dummy module routines forward references */
XTCDECL
EFI_STATUS
BlBootDummyOS(IN PXTBL_BOOT_PARAMETERS Parameters);
DmBootSystem(IN PXTBL_BOOT_PARAMETERS Parameters);
XTCDECL
EFI_STATUS