blob: d4e8a0ab2d79ed5fd56b3f95d119d1ae15506b41 [file] [log] [blame]
Vishal Bhoj82c80712015-12-15 21:13:33 +05301## @file
2# The driver wrappers BlockMmio protocol instances to produce
3# Block I/O Protocol instances.
4#
5# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
6#
7# This program and the accompanying materials
8# are licensed and made available under the terms and conditions of the BSD License
9# which accompanies this distribution. The full text of the license may be found at
10# http://opensource.org/licenses/bsd-license.php
11#
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15#
16##
17
18[Defines]
19 INF_VERSION = 0x00010005
20 BASE_NAME = BlockMmioToBlockIoDxe
21 FILE_GUID = 33cb97af-6c33-4c42-986b-07581fa366d4
22 MODULE_TYPE = UEFI_DRIVER
23 VERSION_STRING = 1.0
24 ENTRY_POINT = BlockMmioToBlockIoEntryPoint
25
26#
27# The following information is for reference only and not required by the build tools.
28#
29# VALID_ARCHITECTURES = IA32 X64 IPF EBC
30#
31
32[Sources]
33 BlockIo.c
34 ComponentName.c
35
36[Packages]
37 MdePkg/MdePkg.dec
38 OvmfPkg/OvmfPkg.dec
39
40[LibraryClasses]
41 BaseLib
42 BaseMemoryLib
43 DebugLib
44 DevicePathLib
45 MemoryAllocationLib
46 UefiBootServicesTableLib
47 UefiDriverEntryPoint
48 UefiLib
49
50[Protocols]
51 gBlockMmioProtocolGuid ## TO_START
52 gEfiCpuIo2ProtocolGuid ## TO_START
53 gEfiDevicePathProtocolGuid ## TO_START
54 gEfiBlockIoProtocolGuid ## BY_START
55