94b17fa1 |
1 | #/** @file\r |
2 | # Provides interface to shell functionality for shell commands and applications.\r |
3 | #\r |
4 | # Copyright (c) 2006 - 2009, Intel Corporation.\r |
5 | #\r |
6 | # All rights reserved. This program and the accompanying materials\r |
7 | # are licensed and made available under the terms and conditions of the BSD License\r |
8 | # which accompanies this distribution. The full text of the license may be found at\r |
9 | # http://opensource.org/licenses/bsd-license.php\r |
10 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
11 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
12 | #\r |
13 | #\r |
14 | #**/\r |
15 | \r |
16 | [Defines]\r |
17 | INF_VERSION = 0x00010006\r |
18 | BASE_NAME = BaseShellLib\r |
19 | FILE_GUID = 449D0F00-2148-4a43-9836-F10B3980ECF5\r |
20 | MODULE_TYPE = UEFI_DRIVER\r |
21 | VERSION_STRING = 1.0\r |
22 | LIBRARY_CLASS = ShellLib|UEFI_APPLICATION UEFI_DRIVER\r |
23 | CONSTRUCTOR = ShellLibConstructor\r |
24 | DESTRUCTOR = ShellLibDestructor\r |
25 | \r |
26 | #\r |
27 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r |
28 | #\r |
29 | \r |
30 | [Sources.common]\r |
31 | BaseShellLib.c\r |
32 | \r |
33 | [Packages]\r |
34 | MdePkg/MdePkg.dec\r |
35 | ShellPkg/ShellPkg.dec\r |
36 | \r |
37 | [LibraryClasses]\r |
38 | UefiBootServicesTableLib\r |
39 | MemoryAllocationLib\r |
40 | DevicePathLib\r |
41 | BaseLib\r |
42 | BaseMemoryLib\r |
43 | DebugLib\r |
44 | \r |
45 | [Protocols]\r |
46 | gEfiSimpleFileSystemProtocolGuid # ALWAYS_CONSUMED\r |
47 | \r |
48 | # shell 2.0 \r |
49 | gEfiShellProtocolGuid # SOMETIMES_CONSUMED\r |
50 | gEfiShellParametersProtocolGuid # SOMETIMES_CONSUMED\r |
51 | \r |
52 | # 'old' shell\r |
53 | gEfiShellEnvironment2Guid # SOMETIMES_CONSUMED\r |
54 | gEfiShellInterfaceGuid # SOMETIMES_CONSUMED\r |
55 | \r |
56 | [Guids]\r |
57 | gEfiFileInfoGuid # ALWAYS_CONSUMED\r |
58 | gEfiShellEnvironment2ExtGuid # ALWAYS_CONSUMED\r |
59 | \r |
60 | [Pcd.common]\r |
61 | \r |