forked from xt-sys/exectos
Unify naming convention
This commit is contained in:
parent
9ab4328c9d
commit
73bd43d16d
@ -150,11 +150,11 @@ XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Set routines available via ChainLoader boot protocol */
|
/* Set routines available via ChainLoader boot protocol */
|
||||||
ChBootProtocol.BootSystem = ChBootSystem;
|
ChpBootProtocol.BootSystem = ChBootSystem;
|
||||||
|
|
||||||
/* Register XTOS boot protocol */
|
/* Register XTOS boot protocol */
|
||||||
XtLdrProtocol->Boot.RegisterProtocol(L"CHAINLOADER", &Guid);
|
XtLdrProtocol->Boot.RegisterProtocol(L"CHAINLOADER", &Guid);
|
||||||
|
|
||||||
/* Install XTOS protocol */
|
/* Install XTOS protocol */
|
||||||
return XtLdrProtocol->Protocol.Install(&ChBootProtocol, &Guid);
|
return XtLdrProtocol->Protocol.Install(&ChpBootProtocol, &Guid);
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/* ChainLoader Boot Protocol */
|
/* ChainLoader Boot Protocol */
|
||||||
XTBL_BOOT_PROTOCOL ChBootProtocol;
|
XTBL_BOOT_PROTOCOL ChpBootProtocol;
|
||||||
|
|
||||||
/* XTLDR protocol handler */
|
/* XTLDR protocol handler */
|
||||||
PXTBL_LOADER_PROTOCOL XtLdrProtocol;
|
PXTBL_LOADER_PROTOCOL XtLdrProtocol;
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/* ChainLoader Boot Protocol */
|
/* ChainLoader Boot Protocol */
|
||||||
EXTERN XTBL_BOOT_PROTOCOL ChBootProtocol;
|
EXTERN XTBL_BOOT_PROTOCOL ChpBootProtocol;
|
||||||
|
|
||||||
/* XTLDR protocol handler */
|
/* XTLDR protocol handler */
|
||||||
EXTERN PXTBL_LOADER_PROTOCOL XtLdrProtocol;
|
EXTERN PXTBL_LOADER_PROTOCOL XtLdrProtocol;
|
||||||
|
@ -24,7 +24,7 @@ XTBL_MODINFO = L"XTLDR Dummy Module";
|
|||||||
*/
|
*/
|
||||||
XTCDECL
|
XTCDECL
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
BlBootDummyOS(IN PXTBL_BOOT_PARAMETERS Parameters)
|
DmBootSystem(IN PXTBL_BOOT_PARAMETERS Parameters)
|
||||||
{
|
{
|
||||||
return STATUS_EFI_SUCCESS;
|
return STATUS_EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
@ -59,7 +59,7 @@ XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Set boot protocol routines */
|
/* Set boot protocol routines */
|
||||||
BlpDummyProtocol.BootSystem = BlBootDummyOS;
|
BlpDummyProtocol.BootSystem = DmBootSystem;
|
||||||
|
|
||||||
/* Register XTOS boot protocol */
|
/* Register XTOS boot protocol */
|
||||||
XtLdrProtocol->Boot.RegisterProtocol(L"XTOS", &DummyGuid);
|
XtLdrProtocol->Boot.RegisterProtocol(L"XTOS", &DummyGuid);
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
/* Dummy module routines forward references */
|
/* Dummy module routines forward references */
|
||||||
XTCDECL
|
XTCDECL
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
BlBootDummyOS(IN PXTBL_BOOT_PARAMETERS Parameters);
|
DmBootSystem(IN PXTBL_BOOT_PARAMETERS Parameters);
|
||||||
|
|
||||||
XTCDECL
|
XTCDECL
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
Loading…
Reference in New Issue
Block a user