mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
75 lines
2.1 KiB
INI
75 lines
2.1 KiB
INI
## @file
|
|
# BdsDxe module is core driver for BDS phase.
|
|
#
|
|
# When DxeCore dispatching all DXE driver, this module will produce architecture protocol
|
|
# gEfiBdsArchProtocolGuid. After DxeCore finish dispatching, DxeCore will invoke Entry
|
|
# interface of protocol gEfiBdsArchProtocolGuid, then BDS phase is entered.
|
|
#
|
|
# Copyright (c) 2008 - 2019, Intel Corporation. All rights reserved.<BR>
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = BdsDxe
|
|
MODULE_UNI_FILE = BdsDxe.uni
|
|
FILE_GUID = FC5C7020-1A48-4198-9BE2-EAD5ABC8CF2F
|
|
MODULE_TYPE = DXE_DRIVER
|
|
VERSION_STRING = 1.0
|
|
ENTRY_POINT = BdsInitialize
|
|
|
|
#
|
|
# The following information is for reference only and not required by the build tools.
|
|
#
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
|
#
|
|
|
|
[Sources]
|
|
Bds.h
|
|
BdsEntry.c
|
|
|
|
[Packages]
|
|
OpenCorePkg/OpenDuetPkg.dec
|
|
OpenCorePkg/OpenCorePkg.dec
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
OvmfPkg/OvmfPkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
BaseMemoryLib
|
|
DebugLib
|
|
DevicePathLib
|
|
DuetBdsLib
|
|
MemoryAllocationLib
|
|
PcdLib
|
|
PrintLib
|
|
UefiBootServicesTableLib
|
|
UefiDriverEntryPoint
|
|
UefiLib
|
|
UefiRuntimeServicesTableLib
|
|
|
|
[Guids]
|
|
gEfiEndOfDxeEventGroupGuid
|
|
|
|
[Protocols]
|
|
gEfiSimpleFileSystemProtocolGuid ## PROTOCOL CONSUMES
|
|
gEfiCpuArchProtocolGuid
|
|
gEdkiiVariableLockProtocolGuid ## PROTOCOL CONSUMES
|
|
gEfiBdsArchProtocolGuid ## PROTOCOL PRODUCES
|
|
gEfiCapsuleArchProtocolGuid ## PROTOCOL PRODUCES
|
|
gEfiBlockIoProtocolGuid
|
|
|
|
[Pcd]
|
|
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLangCodes ## CONSUMES
|
|
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang ## SOMETIMES_CONSUMES
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVendor ## CONSUMES
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareRevision ## CONSUMES
|
|
|
|
[Depex]
|
|
TRUE
|
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
BdsDxeExtra.uni
|