From 1c48866e041d2afaabb170086c5bb0c69a4653d3 Mon Sep 17 00:00:00 2001 From: Abner Chang Date: Wed, 4 Nov 2020 21:26:10 +0800 Subject: [PATCH] RedfishPkg: DSC and FDF include files for enabling EFI Redfish support Provide the DSC/FDF include files of edk2 Redfish related modules and definitions which can be included in platform's DSC/FDF. Signed-off-by: Abner Chang Cc: Jiaxin Wu Cc: Siyuan Fu Cc: Fan Wang Cc: Nickle Wang Cc: Peter O'Hanley Reviewed-by: Nickle Wang --- RedfishPkg/Redfish.dsc.inc | 21 +++++++++++++++++++++ RedfishPkg/Redfish.fdf.inc | 16 ++++++++++++++++ RedfishPkg/RedfishComponents.dsc.inc | 18 ++++++++++++++++++ RedfishPkg/RedfishDefines.dsc.inc | 27 +++++++++++++++++++++++++++ RedfishPkg/RedfishLibs.dsc.inc | 15 +++++++++++++++ 5 files changed, 97 insertions(+) create mode 100644 RedfishPkg/Redfish.dsc.inc create mode 100644 RedfishPkg/Redfish.fdf.inc create mode 100644 RedfishPkg/RedfishComponents.dsc.inc create mode 100644 RedfishPkg/RedfishDefines.dsc.inc create mode 100644 RedfishPkg/RedfishLibs.dsc.inc diff --git a/RedfishPkg/Redfish.dsc.inc b/RedfishPkg/Redfish.dsc.inc new file mode 100644 index 0000000000..ac72909ca2 --- /dev/null +++ b/RedfishPkg/Redfish.dsc.inc @@ -0,0 +1,21 @@ +## @file +# Redfish DSC include file for Platform DSC +# +# This file includes all required information to enable Redfish features. +# It can be included to a platform DSC file by using "!include RedfishPkg/Redfish.dsc.inc". +# +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## + +[Defines] + !include RedfishPkg/RedfishDefines.dsc.inc + +[LibraryClasses] + !include RedfishPkg/RedfishLibs.dsc.inc + +[Components] + !include RedfishPkg/RedfishComponents.dsc.inc + diff --git a/RedfishPkg/Redfish.fdf.inc b/RedfishPkg/Redfish.fdf.inc new file mode 100644 index 0000000000..19de479a80 --- /dev/null +++ b/RedfishPkg/Redfish.fdf.inc @@ -0,0 +1,16 @@ +## @file +# Redfish FDF include file for [FV*] section of all Architectures. +# +# This file can be included to the [FV*] section(s) of a platform FDF file +# by using "!include RedfishPkg/RedfisLibs.fdf.inc" to specify the module instances +# to be built in the firmware volume. +# +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## +!if $(REDFISH_ENABLE) == TRUE + INF RedfishPkg/RestJsonStructureDxe/RestJsonStructureDxe.inf + INF RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.inf +!endif diff --git a/RedfishPkg/RedfishComponents.dsc.inc b/RedfishPkg/RedfishComponents.dsc.inc new file mode 100644 index 0000000000..ac1b57ed8f --- /dev/null +++ b/RedfishPkg/RedfishComponents.dsc.inc @@ -0,0 +1,18 @@ +## @file +# Redfish DSC include file for [Components*] section of all Architectures. +# +# This file can be included to the [Components*] section(s) of a platform DSC file +# by using "!include RedfishPkg/RedfishComponents.dsc.inc" to specify the INF files +# of EDKII Redfish drivers according to the value of flags described in +# "RedfishDefines.dsc.inc". +# +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## + +!if $(REDFISH_ENABLE) == TRUE + RedfishPkg/RestJsonStructureDxe/RestJsonStructureDxe.inf + RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.inf +!endif diff --git a/RedfishPkg/RedfishDefines.dsc.inc b/RedfishPkg/RedfishDefines.dsc.inc new file mode 100644 index 0000000000..0049f92378 --- /dev/null +++ b/RedfishPkg/RedfishDefines.dsc.inc @@ -0,0 +1,27 @@ +## @file +# RedfishPkg DSC include file for [Defines] section of all Architectures. +# +# This file can be included to the [Defines] section of a platform DSC file by +# using "!include RedfishPkg/RedfishDefines.dsc.inc" to set value of +# flags. +# +# These flags can be defined before the !include line, or changed on the command +# line to enable or disable related feature support. +# -D FLAG=VALUE +# +# The default value of these flags are: +# DEFINE REDFISH_ENABLE = TRUE +# +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## + +!ifndef REDFISH_ENABLE + # + # This flag is to enable or disable the whole Redfish support. + # + DEFINE REDFISH_ENABLE = TRUE +!endif + diff --git a/RedfishPkg/RedfishLibs.dsc.inc b/RedfishPkg/RedfishLibs.dsc.inc new file mode 100644 index 0000000000..e780b5c270 --- /dev/null +++ b/RedfishPkg/RedfishLibs.dsc.inc @@ -0,0 +1,15 @@ +## @file +# Redfish DSC include file for [LibraryClasses*] section of all Architectures. +# +# This file can be included to the [LibraryClasses*] section(s) of a platform DSC file +# by using "!include RedfishPkg/RedfisLibs.dsc.inc" to specify the library instances +# of EDKII network library classes. +# +# (C) Copyright 2020 Hewlett Packard Enterprise Development LP
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## +!if $(REDFISH_ENABLE) == TRUE +!endif + -- 2.39.2