commit | 3bbd4827527ae41ea9e20c499506ff3a83027534 | [log] [tgz] |
---|---|---|
author | George Liu <liuxiwei@inspur.com> | Tue May 30 11:13:33 2023 +0800 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed Jun 21 20:46:35 2023 +0000 |
tree | 5863bb2272958acff8a93a8a752f4b3cb1a483bc | |
parent | e6718c5e42ec886e4c1d3e4dd1a4be093721c548 [diff] |
DIMM: Refactor the byte attribute to size type There is currently a problem that because the parameter types defined in PDI are too complicated, not all types are fully compatible in the Notify method. The intent behind this commit is replace "byte" type in the DIMM interface with "size", because it is more reasonable to use size for byte, uint16 and other types, and we also tend to change the uint16 type to size in the future. Signed-off-by: George Liu <liuxiwei@inspur.com> Change-Id: I884f1d871446ed1c4174a223e826c3a36530aea1
YAML descriptors of standard D-Bus interfaces. The format is described by the sdbusplus binding generation tool sdbus++.
Before defining a new D-Bus interface or modifying an existing one, please read through the documented set of the common requirements and expectations.
This project can be built with meson
. The typical meson
workflow is: meson builddir && ninja -C builddir
.
The meson files used to handle the YAML files are automatically generated and found under the gen
subdirectory. When adding or removing YAML files, this must be regenerated. This can be done with the helper script found in the gen
subdirectory: cd gen && ./regenerate-meson
.
Only the xyz/openbmc_project and org/freedesktop interfaces are built by default. Other interfaces can be enabled by meson options:
-Ddata_com_ibm=true
-Ddata_org_open_power=true
Example: meson builddir -Ddata_com_ibm=true && ninja -C builddir