Last change
on this file since 105681 was 105670, checked in by vboxsync, 6 months ago |
Devices/EFI/FirmwareNew: Merge edk2-stable-202405 and make it build on aarch64, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.5 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # A UEFI variable policy dynamic shell command that displays information
|
---|
3 | # about UEFI variable policy configuration on the system.
|
---|
4 | #
|
---|
5 | # Copyright (c) Microsoft Corporation.
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | ##
|
---|
9 |
|
---|
10 | [Defines]
|
---|
11 | INF_VERSION = 1.27
|
---|
12 | BASE_NAME = VariablePolicyDynamicCommand
|
---|
13 | FILE_GUID = 17D0EF2A-5933-4007-8950-5749169D3DC5
|
---|
14 | MODULE_TYPE = DXE_DRIVER
|
---|
15 | VERSION_STRING = 1.0
|
---|
16 | ENTRY_POINT = VariablePolicyDynamicCommandEntryPoint
|
---|
17 | UNLOAD_IMAGE = VariablePolicyDynamicCommandUnload
|
---|
18 | UEFI_HII_RESOURCE_SECTION = TRUE
|
---|
19 |
|
---|
20 | [Sources.common]
|
---|
21 | VariablePolicy.uni
|
---|
22 | VariablePolicy.h
|
---|
23 | VariablePolicy.c
|
---|
24 | VariablePolicyDynamicCommand.c
|
---|
25 |
|
---|
26 | [Packages]
|
---|
27 | MdePkg/MdePkg.dec
|
---|
28 | MdeModulePkg/MdeModulePkg.dec
|
---|
29 | ShellPkg/ShellPkg.dec
|
---|
30 |
|
---|
31 | [LibraryClasses]
|
---|
32 | BaseLib
|
---|
33 | BaseMemoryLib
|
---|
34 | DebugLib
|
---|
35 | HiiLib
|
---|
36 | MemoryAllocationLib
|
---|
37 | PrintLib
|
---|
38 | ShellLib
|
---|
39 | UefiBootServicesTableLib
|
---|
40 | UefiDriverEntryPoint
|
---|
41 | UefiHiiServicesLib
|
---|
42 | UefiRuntimeServicesTableLib
|
---|
43 |
|
---|
44 | [Protocols]
|
---|
45 | gEdkiiVariablePolicyProtocolGuid ## SOMETIMES_CONSUMES
|
---|
46 | gEfiHiiPackageListProtocolGuid ## CONSUMES
|
---|
47 | gEfiShellDynamicCommandProtocolGuid ## PRODUCES
|
---|
48 |
|
---|
49 | [Guids]
|
---|
50 | ## SOMETIMES_CONSUMES ## Variables in Vendor Namespace
|
---|
51 | gEfiCapsuleReportGuid
|
---|
52 | gEfiCapsuleVendorGuid
|
---|
53 | gEfiGlobalVariableGuid
|
---|
54 | gEfiMemoryOverwriteRequestControlLockGuid
|
---|
55 | gEfiMemoryTypeInformationGuid
|
---|
56 | gMtcVendorGuid
|
---|
57 | gShellAliasGuid
|
---|
58 | gShellVariableGuid
|
---|
59 |
|
---|
60 | [DEPEX]
|
---|
61 | TRUE
|
---|
Note:
See
TracBrowser
for help on using the repository browser.