diff options
author | Ronald Cron <Ronald.Cron@arm.com> | 2015-02-26 10:56:20 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@Edk2> | 2015-02-26 10:56:20 +0000 |
commit | cae7af275ed6bc8873fb5469b861f37b59685e07 (patch) | |
tree | 79f6d86c7cf784db69c2a82184a8b1b3602eff00 /ArmPlatformPkg/Bds/BootMenu.c | |
parent | 04f1a7096adf2fc5fd6d70e37a9a4a8e47dfa4d1 (diff) | |
download | edk2-platforms-cae7af275ed6bc8873fb5469b861f37b59685e07.tar.xz |
ArmPlatformPkg/ArmJunoPkg : Use FdtPlatformDxe driver to install the FDT
Remove the installation of the FDT for Juno into the UEFI Configuration
Table from the Juno specific DXE driver. Use the FdtPlatformDxe driver to
do it instead.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ronald Cron <Ronald.Cron@arm.com>
Reviewed-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16938 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg/Bds/BootMenu.c')
-rw-r--r-- | ArmPlatformPkg/Bds/BootMenu.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/ArmPlatformPkg/Bds/BootMenu.c b/ArmPlatformPkg/Bds/BootMenu.c index 3676bf0245..04a2eee6f5 100644 --- a/ArmPlatformPkg/Bds/BootMenu.c +++ b/ArmPlatformPkg/Bds/BootMenu.c @@ -15,7 +15,6 @@ #include "BdsInternal.h"
#include <Guid/ArmGlobalVariableHob.h>
-#include <Guid/ArmPlatformEvents.h>
extern BDS_LOAD_OPTION_SUPPORT *BdsLoadOptionSupportList;
@@ -835,7 +834,6 @@ UpdateFdtPath ( BDS_SUPPORTED_DEVICE *SupportedBootDevice;
EFI_DEVICE_PATH_PROTOCOL *FdtDevicePathNodes;
EFI_DEVICE_PATH_PROTOCOL *FdtDevicePath;
- EFI_EVENT UpdateFdtEvent;
Status = SelectBootDevice (&SupportedBootDevice);
if (EFI_ERROR(Status)) {
@@ -875,23 +873,6 @@ UpdateFdtPath ( ASSERT_EFI_ERROR(Status);
}
- if (!EFI_ERROR (Status)) {
- //
- // Signal FDT has been updated
- //
- Status = gBS->CreateEventEx (
- EVT_NOTIFY_SIGNAL,
- TPL_NOTIFY,
- EmptyCallbackFunction,
- NULL,
- &gArmPlatformUpdateFdtEventGuid,
- &UpdateFdtEvent
- );
- if (!EFI_ERROR (Status)) {
- gBS->SignalEvent (UpdateFdtEvent);
- }
- }
-
EXIT:
if (Status == EFI_ABORTED) {
Print(L"\n");
|