mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/BdsDxe: Fix EBC build failure
Define EFI_REMOVABLE_MEDIA_FILE_NAME for EBC ARCH to fix EBC build failure. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com> Reviewed-by: Shumin Qiu <shumin.qiu@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18927 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
665b26ba33
commit
67b1c254dd
|
@ -42,6 +42,18 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
#include <Library/UefiBootManagerLib.h>
|
#include <Library/UefiBootManagerLib.h>
|
||||||
#include <Library/PlatformBootManagerLib.h>
|
#include <Library/PlatformBootManagerLib.h>
|
||||||
|
|
||||||
|
#if !defined (EFI_REMOVABLE_MEDIA_FILE_NAME)
|
||||||
|
#if defined (MDE_CPU_EBC)
|
||||||
|
//
|
||||||
|
// Uefi specification only defines the default boot file name for IA32, X64
|
||||||
|
// and IPF processor, so need define boot file name for EBC architecture here.
|
||||||
|
//
|
||||||
|
#define EFI_REMOVABLE_MEDIA_FILE_NAME L"\\EFI\\BOOT\\BOOTEBC.EFI"
|
||||||
|
#else
|
||||||
|
#error "Can not determine the default boot file name for unknown processor type!"
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
||||||
Service routine for BdsInstance->Entry(). Devices are connected, the
|
Service routine for BdsInstance->Entry(). Devices are connected, the
|
||||||
|
|
Loading…
Reference in New Issue