blob: c872aa8da3cba9dce4123ab796610da50ee6cc71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
## @file
# RedfishCredentialDxe is required to produce the
# EdkII RedfishCredentialProtocol for the consumer to get the Redfish
# credential Info and to restrict Redfish access from UEFI side.
#
# (C) Copyright 2020 Hewlett Packard Enterprise Development LP<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
[Defines]
INF_VERSION = 0x0001000b
BASE_NAME = RedfishCredentialDxe
FILE_GUID = 458CE95A-4942-09A9-5D21-A6B16D5DAD7F
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
ENTRY_POINT = RedfishCredentialDxeDriverEntryPoint
UNLOAD_IMAGE = RedfishCredentialDxeDriverUnload
#
# VALID_ARCHITECTURES = IA32 X64 ARM AARCH64 RISCV64
#
[Sources]
RedfishCredentialDxe.c
RedfishCredentialDxe.h
[Packages]
MdePkg/MdePkg.dec
MdeModulePkg/MdeModulePkg.dec
RedfishPkg/RedfishPkg.dec
[LibraryClasses]
BaseLib
DebugLib
PrintLib
RedfishPlatformCredentialLib
UefiBootServicesTableLib
UefiDriverEntryPoint
UefiRuntimeServicesTableLib
UefiLib
RedfishHttpLib
RedfishDebugLib
JsonLib
[Protocols]
gEdkIIRedfishCredentialProtocolGuid ## BY_START
gEdkIIRedfishCredential2ProtocolGuid ## BY_START
[Guids]
gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event
gEfiEventExitBootServicesGuid ## CONSUMES ## Event
[Pcd]
gEfiRedfishPkgTokenSpaceGuid.PcdRedfishCredentialDeleteAccount
gEfiRedfishPkgTokenSpaceGuid.PcdDefaultRedfishVersion
[Depex]
TRUE
|