Skip to content

Commit

Permalink
Add FeatureBiosConfigurationGetting and FeatureBiosConfigurationSetting
Browse files Browse the repository at this point in the history
  • Loading branch information
splaspood committed Feb 6, 2024
1 parent 434a1b2 commit ffd3733
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions providers/providers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

0 comments on commit ffd3733

Please sign in to comment.