mirror of https://github.com/acidanthera/audk.git
80 lines
2.5 KiB
INI
80 lines
2.5 KiB
INI
## @file
|
|
# Produces EFI_RAM_DISK_PROTOCOL and provides the capability to
|
|
# create/remove RAM disks in a setup browser.
|
|
#
|
|
# Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
|
|
# This program and the accompanying materials
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
#
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = RamDiskDxe
|
|
MODULE_UNI_FILE = RamDiskDxe.uni
|
|
FILE_GUID = 28A03FF4-12B3-4305-A417-BB1A4F94081E
|
|
MODULE_TYPE = DXE_DRIVER
|
|
VERSION_STRING = 1.0
|
|
ENTRY_POINT = RamDiskDxeEntryPoint
|
|
UNLOAD_IMAGE = RamDiskDxeUnload
|
|
|
|
#
|
|
# The following information is for reference only and not required by the build tools.
|
|
#
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
#
|
|
|
|
[Sources]
|
|
RamDiskDriver.c
|
|
RamDiskImpl.c
|
|
RamDiskBlockIo.c
|
|
RamDiskProtocol.c
|
|
RamDiskFileExplorer.c
|
|
RamDiskImpl.h
|
|
RamDiskHii.vfr
|
|
RamDiskHiiStrings.uni
|
|
RamDiskNVData.h
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
BaseMemoryLib
|
|
DebugLib
|
|
UefiLib
|
|
UefiDriverEntryPoint
|
|
UefiBootServicesTableLib
|
|
UefiHiiServicesLib
|
|
MemoryAllocationLib
|
|
HiiLib
|
|
FileExplorerLib
|
|
DevicePathLib
|
|
PrintLib
|
|
|
|
[Guids]
|
|
gEfiIfrTianoGuid ## PRODUCES ## GUID # HII opcode
|
|
## PRODUCES ## HII
|
|
## CONSUMES ## HII
|
|
gRamDiskFormSetGuid
|
|
gEfiVirtualDiskGuid ## SOMETIMES_CONSUMES ## GUID
|
|
gEfiFileInfoGuid ## SOMETIMES_CONSUMES ## GUID # Indicate the information type
|
|
|
|
[Protocols]
|
|
gEfiRamDiskProtocolGuid ## PRODUCES
|
|
gEfiHiiConfigAccessProtocolGuid ## PRODUCES
|
|
gEfiDevicePathProtocolGuid ## PRODUCES
|
|
gEfiBlockIoProtocolGuid ## PRODUCES
|
|
gEfiBlockIo2ProtocolGuid ## PRODUCES
|
|
gEfiSimpleFileSystemProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
[Depex]
|
|
gEfiHiiConfigRoutingProtocolGuid AND
|
|
gEfiHiiDatabaseProtocolGuid
|