summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2024-04-01 23:25:51 +0300
committerEd Tanous <ed@tanous.net>2024-04-02 02:58:57 +0300
commit51bd2d8a8b9d73d4e86981c0d68056aa9e2c76b2 (patch)
treea19696e6447200311a0cc7092ab6b7b550d771cb /config
parent1873a04f43bb414408d1da9a5a775c05474603d2 (diff)
downloadbmcweb-51bd2d8a8b9d73d4e86981c0d68056aa9e2c76b2.tar.xz
Remove redfish-enable-proccessor-memory-status
The redfish-enable-proccessor-memory-status option was scheduled to be removed in 1Q 2024. It is now 2Q, so remove the option. No upstream layers enabled it and I could not find a downstream layer that did either. Redfish deprecated the Processor/Memory Summary Status (state, health, healthrollup) attributes. Discussion on discord, when disabling: [1]: https://discord.com/channels/775381525260664832/855566794994221117/1093939076710793296 Commit disabling this (merged 10 months ago): [2]: https://github.com/openbmc/bmcweb/commit/5fd0aafb0f14fb3011970e8575647bb608688c7c Tested: Code builds. Change-Id: I539cd5f384633afa7badf1cecfc6c7a87062f672 Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
Diffstat (limited to 'config')
-rw-r--r--config/bmcweb_config.h.in2
-rw-r--r--config/meson.build2
2 files changed, 0 insertions, 4 deletions
diff --git a/config/bmcweb_config.h.in b/config/bmcweb_config.h.in
index a1bd1ba067..04dcf7ee96 100644
--- a/config/bmcweb_config.h.in
+++ b/config/bmcweb_config.h.in
@@ -19,8 +19,6 @@ constexpr const char* bmcwebLoggingLevel = "@BMCWEB_LOGGING_LEVEL@";
constexpr const bool bmcwebEnableHealthPopulate = @BMCWEB_ENABLE_HEALTH_POPULATE@ == 1;
-constexpr const bool bmcwebEnableProcMemStatus = @BMCWEB_ENABLE_PROC_MEM_STATUS@ == 1;
-
constexpr const bool bmcwebEnableMultiHost = @BMCWEB_ENABLE_MULTI_HOST@ == 1;
constexpr const bool bmcwebEnableHTTP2 = @BMCWEB_ENABLE_HTTP2@ == 1;
diff --git a/config/meson.build b/config/meson.build
index 1ba34afac9..e19f964bcd 100644
--- a/config/meson.build
+++ b/config/meson.build
@@ -14,8 +14,6 @@ conf_data.set('MESON_INSTALL_PREFIX', get_option('prefix'))
conf_data.set('HTTPS_PORT', get_option('https_port'))
enable_health_populate = get_option('redfish-health-populate')
conf_data.set10('BMCWEB_ENABLE_HEALTH_POPULATE', enable_health_populate.allowed())
-enable_proc_mem_status = get_option('redfish-enable-proccessor-memory-status')
-conf_data.set10('BMCWEB_ENABLE_PROC_MEM_STATUS', enable_proc_mem_status.allowed())
enable_multi_host = get_option('experimental-redfish-multi-computer-system')
conf_data.set10('BMCWEB_ENABLE_MULTI_HOST', enable_multi_host.allowed())
enable_http2 = get_option('experimental-http2')