commit | f5b16f030f1fd67412c7d279e79b58ffc5e36f67 | [log] [tgz] |
---|---|---|
author | Vikram Bodireddy <vikram.bodireddy@linux.intel.com> | Wed Aug 26 14:54:51 2020 +0530 |
committer | Vikram Bodireddy <vikram.bodireddy@linux.intel.com> | Wed Aug 26 14:54:51 2020 +0530 |
tree | 12aec00b4728dac71d3eacddc872a74164e1263b | |
parent | 3fcb12d03cd99b6e0ea5a1a332676af440930bfa [diff] |
Fix unused param errors Unused param errors are throwing from this sources by the recent CMake changes. Looks like CI build didn't catch these errors then. Tested: Build is verified. Signed-off-by: Vikram Bodireddy <vikram.bodireddy@linux.intel.com> Change-Id: I139c01a78babc1c370c0c5de787291726ea42b53
This component attempts to be a "do everything" embedded webserver for openbmc.
At this time, the webserver implements a few interfaces:
BMCWeb is configured by setting -D
flags that correspond to options in bmcweb/CMakeLists.txt
and then compiling. For example, cmake -DBMCWEB_ENABLE_KVM=NO ...
followed by make
. The option names become C++ preprocessor symbols that control which code is compiled into the program.
When BMCWeb starts running, it reads persistent configuration data (such as UUID and session data) from a local file. If this is not usable, it generates a new configuration.
When BMCWeb SSL support is enabled and a usable certificate is not found, it will generate a self-sign a certificate before launching the server. The keys are generated by the secp384r1
algorithm. The certificate
C=US, O=OpenBMC, CN=testhost
,SHA-256
algorithm.