• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1##  @file
2# Provides shell driver1 profile functions
3#
4# Copyright (c) 2010 - 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 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#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13#
14##
15[Defines]
16  INF_VERSION                    = 0x00010006
17  BASE_NAME                      = UefiShellDriver1CommandsLib
18  FILE_GUID                      = 313D3674-3ED4-48fd-BF97-7DB35D4190D1
19  MODULE_TYPE                    = UEFI_APPLICATION
20  VERSION_STRING                 = 1.0
21  LIBRARY_CLASS                  = NULL|UEFI_APPLICATION UEFI_DRIVER
22  CONSTRUCTOR                    = UefiShellDriver1CommandsLibConstructor
23  DESTRUCTOR                     = UefiShellDriver1CommandsLibDestructor
24
25[Sources]
26  Connect.c
27  Devices.c
28  OpenInfo.c
29  Disconnect.c
30  Reconnect.c
31  Unload.c
32  DrvDiag.c
33  Dh.c
34  Drivers.c
35  DevTree.c
36  DrvCfg.c
37  UefiShellDriver1CommandsLib.c
38  UefiShellDriver1CommandsLib.h
39  UefiShellDriver1CommandsLib.uni
40
41[Packages]
42  MdePkg/MdePkg.dec
43  ShellPkg/ShellPkg.dec
44  MdeModulePkg/MdeModulePkg.dec
45
46[LibraryClasses]
47  MemoryAllocationLib
48  BaseLib
49  BaseMemoryLib
50  DebugLib
51  ShellCommandLib
52  ShellLib
53  UefiLib
54  UefiRuntimeServicesTableLib
55  UefiBootServicesTableLib
56  SortLib
57  PrintLib
58  PeCoffGetEntryPointLib
59
60[Pcd]
61  gEfiShellPkgTokenSpaceGuid.PcdShellProfileMask  ## CONSUMES
62
63[Protocols]
64  gEfiDriverHealthProtocolGuid                    ## UNDEFINED
65  gEfiDriverFamilyOverrideProtocolGuid            ## UNDEFINED
66  gEfiHiiConfigAccessProtocolGuid                 ## SOMETIMES_CONSUMES
67  gEfiHiiDatabaseProtocolGuid                     ## CONSUMES
68
69[Guids]
70  gEfiGlobalVariableGuid                          ## SOMETIMES_CONSUMES ## GUID
71  gEfiConsoleInDeviceGuid                         ## CONSUMES ## GUID
72  gEfiConsoleOutDeviceGuid                        ## CONSUMES ## GUID
73  gShellDriver1HiiGuid                            ## PRODUCES ## HII
74