commit | 76686dcc74002493e22d72e24db9d3326b3a63ed | [log] [tgz] |
---|---|---|
author | Nan Zhou <nanzhoumails@gmail.com> | Fri Jun 17 23:01:51 2022 +0000 |
committer | Ed Tanous <ed@tanous.net> | Tue Jun 21 14:44:02 2022 +0000 |
tree | 37ba751f84c9c72bd1fb570b143ca3bfebc24a59 | |
parent | 9bc556993f0e13bf024a4e7cba13f8339c02c0d8 [diff] |
memory: match DIMM ID even more precisely https://gerrit.openbmc.org/c/openbmc/bmcweb/+/53791 attemps to fix the common error #12 in memory resource. However, it's still not perfect. There is an edge case that Partition objects have wrong paths like /xyz/openbmc_project/Inventory/Item/dimm1, where this partition will still be parsed as a partition of dimm1. This commit corrects this by making path checking explicitly different for DIMM and Partition objects: one check filename, the other check filename of the parent path. Tested: 1. /redfish/v1/Systems/system/Memory/dimm0 ``` { "@odata.id": "/redfish/v1/Systems/system/Memory/dimm0", "@odata.type": "#Memory.v1_11_0.Memory", "AllowedSpeedsMHz": [], "BaseModuleType": "RDIMM", "BusWidthBits": 0, "CapacityMiB": 1024, "DataWidthBits": 0, "ErrorCorrection": "NoECC", "FirmwareRevision": "0", "Id": "dimm0", "Name": "DIMM Slot", "OperatingSpeedMhz": 0, "RankCount": 0, "Regions": [ { "MemoryClassification": "Volatile", "OffsetMiB": 0, "PassphraseEnabled": false, "RegionId": "", "SizeMiB": 1024 }, { "MemoryClassification": "Volatile", "OffsetMiB": 0, "PassphraseEnabled": false, "RegionId": "", "SizeMiB": 1024 } ], "Status": { "Health": "OK", "HealthRollup": "OK", "State": "Enabled" } } ``` 2. No validator errors on Memory Resource. Signed-off-by: Nan Zhou <nanzhoumails@gmail.com> Change-Id: Ic078b5046ac3397e398f050ed7b54ebadcb2aa32
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/meson_options.txt
and then compiling. For example, meson <builddir> -Dkvm=disabled ...
followed by ninja
in build directory. The option names become C++ preprocessor symbols that control which code is compiled into the program.
meson builddir ninja -C builddir
meson builddir -Dbuildtype=minsize -Db_lto=true -Dtests=disabled ninja -C buildir
If any of the dependencies are not found on the host system during configuration, meson automatically gets them via its wrap dependencies mentioned in bmcweb/subprojects
.
meson builddir -Dwrap_mode=nofallback ninja -C builddir
meson builddir -Dbuildtype=debug ninja -C builddir
meson builddir -Db_coverage=true -Dtests=enabled ninja -C builddir test ninja -C builddir coverage
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.