Last change
on this file was 80721, checked in by vboxsync, 6 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.8 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Provides interface to shell functionality for shell commands and applications.
|
---|
3 | #
|
---|
4 | # (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
|
---|
5 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010006
|
---|
14 | BASE_NAME = UefiShellLib
|
---|
15 | FILE_GUID = 449D0F00-2148-4a43-9836-F10B3980ECF5
|
---|
16 | MODULE_TYPE = UEFI_DRIVER
|
---|
17 | VERSION_STRING = 1.2
|
---|
18 | LIBRARY_CLASS = ShellLib|UEFI_APPLICATION UEFI_DRIVER DXE_RUNTIME_DRIVER DXE_DRIVER
|
---|
19 | CONSTRUCTOR = ShellLibConstructor
|
---|
20 | DESTRUCTOR = ShellLibDestructor
|
---|
21 |
|
---|
22 | #
|
---|
23 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
24 | #
|
---|
25 |
|
---|
26 | [Sources.common]
|
---|
27 | UefiShellLib.c
|
---|
28 | UefiShellLib.h
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 | ShellPkg/ShellPkg.dec
|
---|
34 |
|
---|
35 | [LibraryClasses]
|
---|
36 | UefiBootServicesTableLib
|
---|
37 | MemoryAllocationLib
|
---|
38 | DevicePathLib
|
---|
39 | BaseLib
|
---|
40 | BaseMemoryLib
|
---|
41 | DebugLib
|
---|
42 | FileHandleLib
|
---|
43 | PrintLib
|
---|
44 | UefiLib
|
---|
45 | HiiLib
|
---|
46 | SortLib
|
---|
47 |
|
---|
48 | [Protocols]
|
---|
49 | gEfiUnicodeCollation2ProtocolGuid ## CONSUMES
|
---|
50 |
|
---|
51 | # shell 2.0
|
---|
52 | gEfiShellProtocolGuid ## SOMETIMES_CONSUMES
|
---|
53 | gEfiShellParametersProtocolGuid ## SOMETIMES_CONSUMES
|
---|
54 |
|
---|
55 | # 'old' shell
|
---|
56 | gEfiShellEnvironment2Guid ## SOMETIMES_CONSUMES
|
---|
57 | gEfiShellInterfaceGuid ## SOMETIMES_CONSUMES
|
---|
58 |
|
---|
59 | [Guids]
|
---|
60 | gEfiFileInfoGuid ## SOMETIMES_CONSUMES ## GUID
|
---|
61 | gEfiShellEnvironment2ExtGuid ## SOMETIMES_CONSUMES ## GUID
|
---|
62 |
|
---|
63 | [Pcd.common]
|
---|
64 | gEfiShellPkgTokenSpaceGuid.PcdShellLibAutoInitialize ## CONSUMES
|
---|
65 | gEfiShellPkgTokenSpaceGuid.PcdShellPrintBufferSize ## CONSUMES
|
---|
Note:
See
TracBrowser
for help on using the repository browser.