You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
727 B

#include "BootMgfw.h"
CHAR8* gEfiCallerBaseName = "Voyager";
const UINT32 _gUefiDriverRevision = 0x200;
EFI_STATUS EFIAPI UefiUnload(
IN EFI_HANDLE ImageHandle
)
{ return EFI_SUCCESS; }
EFI_STATUS EFIAPI UefiMain
(
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE* SystemTable
)
{
EFI_STATUS Result;
EFI_DEVICE_PATH_PROTOCOL* BootMgfwPath;
if (EFI_ERROR((Result = RestoreBootMgfw())))
{
DBG_PRINT("unable to restore bootmgfw... reason -> %r\n", Result);
return Result;
}
if (EFI_ERROR((Result = InstallBootMgfwHooks(ImageHandle))))
{
DBG_PRINT("Failed to install bootmgfw hooks... reason -> %r\n", Result);
return Result;
}
return EFI_SUCCESS;
}