1 | ## @file
|
---|
2 | # Provides interface to shell internal functions for shell commands.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2006 - 2011, 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.0
|
---|
22 | LIBRARY_CLASS = ShellCommandLib|UEFI_APPLICATION UEFI_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 |
|
---|
50 | [Protocols]
|
---|
51 | gEfiUnicodeCollation2ProtocolGuid # ALWAYS_CONSUMED
|
---|
52 | gEfiShellProtocolGuid # ALWAYS_CONSUMED
|
---|
53 | gEfiShellParametersProtocolGuid # ALWAYS_CONSUMED
|
---|
54 | gEfiDevicePathToTextProtocolGuid # ALWAYS_CONSUMED
|
---|
55 |
|
---|
56 | [Guids]
|
---|
57 | gEfiSasDevicePathGuid # ALWAYS_CONSUMED
|
---|
58 |
|
---|
59 | [Pcd.common]
|
---|
60 | gEfiShellPkgTokenSpaceGuid.PcdShellSupportLevel ## ALWAYS_CONSUMED
|
---|
61 | gEfiShellPkgTokenSpaceGuid.PcdShellMapNameLength ## ALWAYS_CONSUMED
|
---|