Skip to content

Commit

Permalink
Add compiler flag to enable delayed start
Browse files Browse the repository at this point in the history
  • Loading branch information
chp-io committed Feb 21, 2024
1 parent 2efa61a commit 8c710ea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions deps/hypervisor/bfdriver/src/platform/efi/entry.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,13 @@ extern uint64_t no_pci_pt_count;
#endif

EFI_EVENT mExitBootServicesEvent = NULL;

#ifdef EFI_DELAYED_START
int g_delayed_start = 1;
#else
int g_delayed_start = 0;
#endif

// ExitBootServices GUID (gEfiEventExitBootServicesGuid)
static const EFI_GUID g_ebs_guid
= { 0x27ABF055, 0xB1B8, 0x4C26, { 0x80, 0x48, 0x74, 0x8F, 0x37, 0xBA, 0xA2, 0xDF }};
Expand Down

0 comments on commit 8c710ea

Please sign in to comment.