• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#/** @file
2#  Build file for the MMC DXE driver
3#
4#  Copyright (c) 2011-2015, ARM Limited. All rights reserved.
5#
6#  This program and the accompanying materials
7#  are licensed and made available under the terms and conditions of the BSD License
8#  which accompanies this distribution.  The full text of the license may be found at
9#  http://opensource.org/licenses/bsd-license.php
10#
11#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13#
14#**/
15
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = MmcDxe
19  FILE_GUID                      = b6f44cc0-9e45-11df-be21-0002a5d5c51b
20  MODULE_TYPE                    = DXE_DRIVER
21  VERSION_STRING                 = 1.0
22
23  ENTRY_POINT                    = MmcDxeInitialize
24
25[Sources.common]
26  ComponentName.c
27  Mmc.c
28  MmcBlockIo.c
29  MmcIdentification.c
30  MmcDebug.c
31  Diagnostics.c
32
33[Packages]
34  EmbeddedPkg/EmbeddedPkg.dec
35  MdePkg/MdePkg.dec
36
37[LibraryClasses]
38  BaseLib
39  UefiLib
40  UefiDriverEntryPoint
41  BaseMemoryLib
42
43[Protocols]
44  gEfiDiskIoProtocolGuid
45  gEfiBlockIoProtocolGuid
46  gEfiDevicePathProtocolGuid
47  gEfiMmcHostProtocolGuid
48  gEfiDriverDiagnostics2ProtocolGuid
49  gEfiEraseBlockProtocolGuid
50
51[Depex]
52  TRUE
53