commit | 6aa72f654eef4d6c0ffda861584871b5727124f7 | [log] [tgz] |
---|---|---|
author | Konstantin Aladyshev <aladyshev22@gmail.com> | Wed Feb 10 20:11:52 2021 +0300 |
committer | Patrick Williams <patrick@stwcx.xyz> | Sun Feb 21 16:30:07 2021 +0000 |
tree | 360abbfb6fd841aebb0c17439fd8508fed0cffed | |
parent | cfe12d262822fe7cdde8e744842a22b24513e6d3 [diff] |
Add d-bus interface for BIOS boot type (EFI/Legacy) The interface is addded to support IPMI boot type field of a "Get System Boot Options" сommand. [1] - BIOS boot type (for BIOS that support both legacy and EFI boots) 0b = "PC compatible" boot (legacy) 1b = Extensible Firmware Interface Boot (EFI) Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com> Change-Id: Ia31918ee941f4dbed5f27c4f5cbfb62c2b259d6e
YAML descriptors of standard D-Bus interfaces. The format is described by the sdbusplus binding generation tool sdbus++.
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 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