diff options
| author | Carol Wang <wangkair@cn.ibm.com> | 2019-11-21 13:56:38 +0800 |
|---|---|---|
| committer | Carol Wang <wangkair@cn.ibm.com> | 2019-12-05 11:24:04 +0800 |
| commit | d82a3acd1abc04a13f90cef5234416c3e18da0e1 (patch) | |
| tree | f8c3dfaaa16bc5a812c7a15ab1376bd18a2403ba /redfish-core/include | |
| parent | 274dfe625f862e8ded2d4eb88dd856cf66bf54bf (diff) | |
| download | bmcweb-d82a3acd1abc04a13f90cef5234416c3e18da0e1.tar.gz bmcweb-d82a3acd1abc04a13f90cef5234416c3e18da0e1.zip | |
Redfish: Implement ResetBios action
This action resets the BIOS attributes to default.
Tested:
GET test:
1. $ curl -k -H "X-Auth-Token: $token" https://${bmc}/redfish/v1/Systems/system
{
...
"Bios": {
"@odata.id": "/redfish/v1/Systems/system/Bios"
},
...
}
2. $ curl -k -H "X-Auth-Token: $token" https://${bmc}/redfish/v1/Systems/system/Bios
{
"@odata.id": "/redfish/v1/Systems/system/Bios",
"@odata.type": "#Bios.v1_1_0.Bios",
"Actions": {
"#Bios.ResetBios": {
"target": "/redfish/v1/Systems/system/Bios/Actions/Bios.ResetBios"
}
},
"Description": "BIOS Configuration Service",
"Id": "BIOS",
"Name": "BIOS Configuration"
}
POST test:
1. Change gard list:
# ./gard list
No GARD entries to display
# ./gard create /Sys0/Node0/Proc1/EQ1/EX1/Core0
# ./gard list
ID | Error | Type | Path
-----------------------------------------------------------------------
00000001 | 00000000 | Manual | /Sys0/Node0/Proc1/EQ1/EX1/Core0
=======================================================================
2. Reset bios:
# curl -k -H "X-Auth-Token: $token" -X POST https://${bmc}/redfish/v1/Systems/system/Bios/Actions/Bios.ResetBios
3. Check gard list again:
# ./gard list
No GARD entries to display
Validator tool test:
Counter({'pass': 3001, 'skipOptional': 2475, 'metadataNamespaces': 1605,
'passGet': 191, 'serviceNamespaces': 72, 'invalidPropertyValue': 10,
'passAction': 7, 'optionalAction': 6, 'warningPresent': 6, 'warnDeprecated':
2, 'unverifiedComplexAdditional': 1})
Validation has succeeded.
Signed-off-by: Carol Wang <wangkair@cn.ibm.com>
Change-Id: I0cba966bfde04566001b6df07ad15217f627c327
Diffstat (limited to 'redfish-core/include')
| -rw-r--r-- | redfish-core/include/redfish.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/redfish-core/include/redfish.hpp b/redfish-core/include/redfish.hpp index d0e0531..715b4a4 100644 --- a/redfish-core/include/redfish.hpp +++ b/redfish-core/include/redfish.hpp @@ -16,6 +16,7 @@ #pragma once #include "../lib/account_service.hpp" +#include "../lib/bios.hpp" #include "../lib/certificate_service.hpp" #include "../lib/chassis.hpp" #include "../lib/cpudimm.hpp" @@ -121,6 +122,8 @@ class RedfishService nodes.emplace_back(std::make_unique<SystemsCollection>(app)); nodes.emplace_back(std::make_unique<Systems>(app)); nodes.emplace_back(std::make_unique<SystemActionsReset>(app)); + nodes.emplace_back(std::make_unique<BiosService>(app)); + nodes.emplace_back(std::make_unique<BiosReset>(app)); #ifdef BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES nodes.emplace_back(std::make_unique<DBusLogServiceActionsClear>(app)); nodes.emplace_back(std::make_unique<DBusEventLogEntryCollection>(app)); |

