From ffd3733d2ff454a0b48b892fd4f4cb2c5bea50de Mon Sep 17 00:00:00 2001 From: "James W. Brinkerhoff" Date: Wed, 31 Jan 2024 10:11:43 -0500 Subject: [PATCH] Add FeatureBiosConfigurationGetting and FeatureBiosConfigurationSetting --- providers/providers.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/providers/providers.go b/providers/providers.go index 9e7addc5..3bf4faf3 100644 --- a/providers/providers.go +++ b/providers/providers.go @@ -42,24 +42,24 @@ const ( FeatureScreenshot registrar.Feature = "screenshot" // FeatureClearSystemEventLog means an implementation that clears the BMC System Event Log (SEL) FeatureClearSystemEventLog registrar.Feature = "clearsystemeventlog" -<<<<<<< HEAD // FeatureGetSystemEventLog means an implementation that returns the BMC System Event Log (SEL) FeatureGetSystemEventLog registrar.Feature = "getsystemeventlog" // FeatureGetSystemEventLogRaw means an implementation that returns the BMC System Event Log (SEL) in raw format FeatureGetSystemEventLogRaw registrar.Feature = "getsystemeventlograw" -======= ->>>>>>> cf12342 (clean up formating of const defs) // FeatureFirmwareInstallSteps means an implementation returns the steps part of the firmware update process. FeatureFirmwareInstallSteps registrar.Feature = "firmwareinstallsteps" // FeatureFirmwareUpload means an implementation that uploads firmware for installing. FeatureFirmwareUpload registrar.Feature = "firmwareupload" - // FeatureFirmwareInstallUploaded means an implementation that installs firmware uploaded using the firmwareupload feature. + // FeatureFirmwareInstallUploaded means an implementation that installs firmware uploaded using the firmwareupload feature. FeatureFirmwareInstallUploaded registrar.Feature = "firmwareinstalluploaded" // FeatureFirmwareTaskStatus identifies an implementaton that can return the status of a firmware upload/install task. FeatureFirmwareTaskStatus registrar.Feature = "firmwaretaskstatus" // FeatureFirmwareUploadInitiateInstall identifies an implementation that uploads firmware _and_ initiates the install process. FeatureFirmwareUploadInitiateInstall registrar.Feature = "uploadandinitiateinstall" - // FeatureDeactivateSOL means an implementation that can deactivate active SOL sessions FeatureDeactivateSOL registrar.Feature = "deactivatesol" + // FeatureBiosConfigurationGetting identifies an implementation that allows BIOS configuration values to be retrieved. + FeatureBiosConfigurationGetting registrar.Feature = "configget" + // FeatureBiosConfigurationSetting identifies an implementation that allows BIOS configuration values to be set. + FeatureBiosConfigurationSetting registrar.Feature = "configset" )