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