mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-01 12:53:27 +01:00
56 lines
1.3 KiB
INI
56 lines
1.3 KiB
INI
## @file
|
|
# This driver installs SMBIOS information for bhyve
|
|
#
|
|
# Copyright (c) 2020, Rebecca Cran <rebecca@bsdio.com>
|
|
# Copyright (c) 2011, Bei Guan <gbtju85@gmail.com>
|
|
# Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 1.29
|
|
BASE_NAME = SmbiosPlatformDxe
|
|
FILE_GUID = e2d8a63c-c239-484f-bb21-2917843cc382
|
|
MODULE_TYPE = DXE_DRIVER
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = SmbiosTablePublishEntry
|
|
|
|
#
|
|
# The following information is for reference only and not required by the build tools.
|
|
#
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC ARM AARCH64
|
|
#
|
|
|
|
[Sources]
|
|
Bhyve.c
|
|
SmbiosPlatformDxe.h
|
|
SmbiosPlatformDxe.c
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
OvmfPkg/OvmfPkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
BaseMemoryLib
|
|
DebugLib
|
|
HobLib
|
|
MemoryAllocationLib
|
|
PcdLib
|
|
UefiBootServicesTableLib
|
|
UefiDriverEntryPoint
|
|
|
|
[Pcd]
|
|
gUefiOvmfPkgTokenSpaceGuid.PcdQemuSmbiosValidated
|
|
|
|
[Protocols]
|
|
gEfiSmbiosProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
|
|
[Depex]
|
|
gEfiSmbiosProtocolGuid
|
|
|