1 | ## @file
|
---|
2 | # INF file for the UEFI driver model Redfish Configuration Handler
|
---|
3 | # Driver.
|
---|
4 | #
|
---|
5 | # Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
|
---|
6 | # (C) Copyright 2021 Hewlett Packard Enterprise Development LP<BR>
|
---|
7 | # Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
---|
8 | #
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | ##
|
---|
12 |
|
---|
13 | [Defines]
|
---|
14 | INF_VERSION = 0x0001000b
|
---|
15 | BASE_NAME = RedfishConfigHandlerDriver
|
---|
16 | FILE_GUID = 6e881000-5749-11e8-9bf0-8cdcd426c973
|
---|
17 | MODULE_TYPE = UEFI_DRIVER
|
---|
18 | VERSION_STRING = 1.0
|
---|
19 | ENTRY_POINT = RedfishConfigHandlerDriverEntryPoint
|
---|
20 | UNLOAD_IMAGE = RedfishConfigHandlerDriverUnload
|
---|
21 |
|
---|
22 | #
|
---|
23 | # VALID_ARCHITECTURES = IA32 X64 ARM AARCH64 RISCV64
|
---|
24 | #
|
---|
25 |
|
---|
26 | [Packages]
|
---|
27 | MdePkg/MdePkg.dec
|
---|
28 | MdeModulePkg/MdeModulePkg.dec
|
---|
29 | NetworkPkg/NetworkPkg.dec
|
---|
30 | RedfishPkg/RedfishPkg.dec
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | RedfishConfigHandlerDriver.h
|
---|
34 | RedfishConfigHandlerDriver.c
|
---|
35 | RedfishConfigHandlerCommon.h
|
---|
36 | RedfishConfigHandlerCommon.c
|
---|
37 |
|
---|
38 | [LibraryClasses]
|
---|
39 | BaseLib
|
---|
40 | BaseMemoryLib
|
---|
41 | DebugLib
|
---|
42 | UefiLib
|
---|
43 | MemoryAllocationLib
|
---|
44 | NetLib
|
---|
45 | UefiBootServicesTableLib
|
---|
46 | UefiDriverEntryPoint
|
---|
47 |
|
---|
48 | [Protocols]
|
---|
49 | gEfiRedfishDiscoverProtocolGuid ## CONSUMES
|
---|
50 | gEfiRestExServiceBindingProtocolGuid
|
---|
51 | gEfiRestExProtocolGuid ## CONSUMES
|
---|
52 | gEdkIIRedfishCredentialProtocolGuid ## CONSUMES
|
---|
53 | gEdkIIRedfishConfigHandlerProtocolGuid ## CONSUMES
|
---|
54 |
|
---|
55 | [Guids]
|
---|
56 | gEfiEventExitBootServicesGuid ## CONSUMES ## Event
|
---|
57 | gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event
|
---|
58 |
|
---|
59 | [Depex]
|
---|
60 | gEdkIIRedfishCredentialProtocolGuid
|
---|