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.
VoyagerWithEPT/Voyager (1703-1511)/UefiMain.c

45 lines
1.1 KiB

#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_HANDLE BootMgfwHandle;
EFI_DEVICE_PATH* BootMgfwPath;
if (EFI_ERROR((Result = GetBootMgfwPath(&BootMgfwPath))))
{
Print(L"unable to get bootmgfw file path... reason -> %r\n", Result);
return EFI_NOT_FOUND;
}
if (EFI_ERROR((Result = gBS->LoadImage(TRUE, ImageHandle, BootMgfwPath, NULL, 0, &BootMgfwHandle))))
{
Print(L"failed to load bootmgfw.efi... reason -> %r\n", Result);
return EFI_ABORTED;
}
if (EFI_ERROR((Result = InstallBootMgfwHooks(BootMgfwHandle))))
{
Print(L"Failed to install bootmgfw hooks... reason -> %r\n", Result);
return EFI_ABORTED;
}
if (EFI_ERROR((Result = gBS->StartImage(BootMgfwHandle, NULL, NULL))))
{
Print(L"Failed to start bootmgfw.efi...\n");
return EFI_ABORTED;
}
return EFI_SUCCESS;
}