diff --git a/config/asrockrack.go b/config/asrockrack.go index f44b6a7..d70580a 100644 --- a/config/asrockrack.go +++ b/config/asrockrack.go @@ -115,6 +115,11 @@ func (cm *asrockrackVendorConfig) StandardConfig() (biosConfig map[string]string // Generic config options +func (cm *asrockrackVendorConfig) BootOrder(mode string) error { + // Unimplemented + return +} + func (cm *asrockrackVendorConfig) EnableTPM() { // Unimplemented } diff --git a/config/dell.go b/config/dell.go index fb2ed6f..b1a2963 100644 --- a/config/dell.go +++ b/config/dell.go @@ -139,6 +139,11 @@ func (cm *dellVendorConfig) StandardConfig() (biosConfig map[string]string, err // Generic config options +func (cm *dellVendorConfig) BootOrder(mode string) error { + // Unimplemented + return +} + func (cm *dellVendorConfig) EnableTPM() { cm.Raw("EnableTPM", "Enabled", []string{"BIOS.Setup.1-1"}) }