1## @file
2# The Usb mass storage device Peim driver is used to support recovery from USB device.
3#
4# Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
5#
6# This program and the accompanying materials
7# are licensed and made available under the terms and conditions
8# of the BSD License which accompanies this distribution.  The
9# 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[Defines]
18  INF_VERSION                    = 0x00010005
19  BASE_NAME                      = UsbBotPei
20  MODULE_UNI_FILE                = UsbBotPei.uni
21  FILE_GUID                      = 8401A046-6F70-4505-8471-7015B40355E3
22  MODULE_TYPE                    = PEIM
23  VERSION_STRING                 = 1.0
24
25  ENTRY_POINT                    = PeimInitializeUsbBot
26
27#
28# The following information is for reference only and not required by the build tools.
29#
30#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
31#
32
33[Sources]
34  PeiUsbLib.c
35  PeiAtapi.c
36  BotPeim.c
37  UsbBotPeim.c
38  UsbPeim.h
39  UsbBotPeim.h
40  PeiUsbLib.h
41  BotPeim.h
42
43[Packages]
44  MdePkg/MdePkg.dec
45  MdeModulePkg/MdeModulePkg.dec
46
47
48[LibraryClasses]
49  BaseMemoryLib
50  PeiServicesLib
51  PeimEntryPoint
52  DebugLib
53  PcdLib
54
55[Pcd]
56  gEfiMdePkgTokenSpaceGuid.PcdUsbTransferTimeoutValue  ## CONSUMES
57
58[Ppis]
59  gEfiPeiVirtualBlockIoPpiGuid                  ## PRODUCES
60  gEfiPeiVirtualBlockIo2PpiGuid                 ## PRODUCES
61  ## CONSUMES
62  ## NOTIFY
63  gPeiUsbIoPpiGuid
64
65[Depex]
66  gEfiPeiMemoryDiscoveredPpiGuid AND gPeiUsbIoPpiGuid AND gEfiPeiBootInRecoveryModePpiGuid
67
68[UserExtensions.TianoCore."ExtraFiles"]
69  UsbBotPeiExtra.uni
70