1##  @file
2#  Provides interface to shell internal functions for shell commands.
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 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
16[Defines]
17  INF_VERSION                    = 0x00010006
18  BASE_NAME                      = UefiShellCommandLib
19  FILE_GUID                      = 5C12F31F-EBAC-466e-A400-FCA8C9EA3A05
20  MODULE_TYPE                    = UEFI_DRIVER
21  VERSION_STRING                 = 1.1
22  LIBRARY_CLASS                  = ShellCommandLib|UEFI_APPLICATION UEFI_DRIVER DXE_RUNTIME_DRIVER
23  CONSTRUCTOR                    = ShellCommandLibConstructor
24  DESTRUCTOR                     = ShellCommandLibDestructor
25
26#
27#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
28#
29
30[Sources.common]
31  UefiShellCommandLib.c
32  UefiShellCommandLib.h
33  ConsistMapping.c
34
35[Packages]
36  MdePkg/MdePkg.dec
37  ShellPkg/ShellPkg.dec
38  MdeModulePkg/MdeModulePkg.dec
39
40[LibraryClasses]
41  MemoryAllocationLib
42  BaseLib
43  BaseMemoryLib
44  DebugLib
45  PrintLib
46  UefiBootServicesTableLib
47  ShellLib
48  HiiLib
49  HandleParsingLib
50
51[Protocols]
52  gEfiUnicodeCollation2ProtocolGuid                       ## CONSUMES
53  gEfiShellProtocolGuid                                   ## CONSUMES
54  gEfiShellParametersProtocolGuid                         ## CONSUMES
55  gEfiShellDynamicCommandProtocolGuid                     ## SOMETIMES_CONSUMES
56  gEfiUsbIoProtocolGuid                                   ## SOMETIMES_CONSUMES
57
58[Guids]
59  gEfiSasDevicePathGuid                                   ## SOMETIMES_CONSUMES ## GUID
60
61[Pcd.common]
62  gEfiShellPkgTokenSpaceGuid.PcdShellSupportLevel         ## CONSUMES
63  gEfiShellPkgTokenSpaceGuid.PcdShellMapNameLength        ## CONSUMES
64  gEfiShellPkgTokenSpaceGuid.PcdUsbExtendedDecode         ## SOMETIMES_CONSUMES
65  gEfiShellPkgTokenSpaceGuid.PcdShellDecodeIScsiMapNames  ## SOMETIMES_CONSUMES
66  gEfiShellPkgTokenSpaceGuid.PcdShellVendorExtendedDecode ## SOMETIMES_CONSUMES
67
68[Depex]
69  gEfiUnicodeCollation2ProtocolGuid
70