History log of /openbmc/phosphor-dbus-interfaces/yaml/xyz/ (Results 151 – 175 of 285)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
219368be26-Oct-2022 William A. Kennington III <wak@google.com>

Network/VLAN: Remove InterfaceName

Having the interface name is redundant with EthernetInterface and
nothing currently relies on this version of the value.

Change-Id: I53e700dae937059c2fd415bf7d546

Network/VLAN: Remove InterfaceName

Having the interface name is redundant with EthernetInterface and
nothing currently relies on this version of the value.

Change-Id: I53e700dae937059c2fd415bf7d546a8c887b68d4
Signed-off-by: William A. Kennington III <wak@google.com>

show more ...

e7c10bd503-Nov-2022 George Liu <liuxiwei@inspur.com>

Item, LED: add fault_identifying association

Signed-off-by: George Liu <liuxiwei@inspur.com>
Change-Id: Ibc9d0859498fafbc1647179357d5d38926f302d9

9eb460c631-Oct-2022 George Liu <liuxiwei@inspur.com>

Item, LED: add identifying association

Create association documentation between LED and Item.

Signed-off-by: George Liu <liuxiwei@inspur.com>
Change-Id: I121cd09cd3eb032400200e51a1c94e2dfcc872cc

d0aa13b431-Oct-2022 George Liu <liuxiwei@inspur.com>

Fan, Item: add cooling association

Create association documentation between Fan and Item.

Signed-off-by: George Liu <liuxiwei@inspur.com>
Change-Id: Ifc3f38958c00f432a741774dbf570f39dd817966

6319014007-Nov-2022 DelphineCCChiu <Delphine_CC_Chiu@wiwynn.com>

Add PowerCycleError parameter in Chassis Error yaml

A new system is being designed which will utilize phosphor-state-manager
and it requires the chassis system power cycle feature.
When chassis powe

Add PowerCycleError parameter in Chassis Error yaml

A new system is being designed which will utilize phosphor-state-manager
and it requires the chassis system power cycle feature.
When chassis power cycle target failed to complete,
it need a parameter to represent chassis system power error status.

Test plan:
Build success and check the chassis system power parameter in configuration.

Change-Id: I0de438b63f6221ec4fbffcdc070a65a48a2dafde
Signed-off-by: Bonnie Lo <Bonnie_Lo@wiwynn.com>

show more ...

36b527af02-Nov-2022 Benjamin Fair <benjaminfair@google.com>

Inventory: Add "containing" Association for Item

This Association indicates that an Item (usually a Chassis or Board
object) physically contains other objects.

Also remove the duplicate definition

Inventory: Add "containing" Association for Item

This Association indicates that an Item (usually a Chassis or Board
object) physically contains other objects.

Also remove the duplicate definition from Cpu and CpuCore since it's now
covered by Item.

Signed-off-by: Benjamin Fair <benjaminfair@google.com>
Change-Id: I6df06b1dddfd9408ff39e8917d269a2cba22668d

show more ...

484f6c4501-Nov-2022 Patrick Williams <patrick@stwcx.xyz>

Item: remove documentation for non-conforming association

The association for CPU/Slot does not conform to the documented
association rules, so remove it from the readme so as to not mislead
others.

Item: remove documentation for non-conforming association

The association for CPU/Slot does not conform to the documented
association rules, so remove it from the readme so as to not mislead
others.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I00fd61d13c9d75609221698118225f6dab5fe56f

show more ...

fc5546ea25-Oct-2022 Sui Chen <suichen@google.com>

Item: Add description for associations involving Bmc

Change-Id: I9aa0fe58c5ab0c47f168c1340fd8c328ad7f6e9e
Signed-off-by: Sui Chen <suichen@google.com>

8c79b1dc08-Aug-2022 Nikhil Namjoshi <nikhilnamjoshi@google.com>

Inventory : Add Association interface for Cpu and Core

The change #38570 in bmcweb, uses associations between Cpu and CpuCore.
So document those associations in phosphor-dbus-interfaces

Change-Id:

Inventory : Add Association interface for Cpu and Core

The change #38570 in bmcweb, uses associations between Cpu and CpuCore.
So document those associations in phosphor-dbus-interfaces

Change-Id: I5b12ca5a89c094e2a5b47a7fbc39482d6286e9d3
Signed-off-by: Nikhil Namjoshi <nikhilnamjoshi@google.com>

show more ...

b78a070424-Oct-2022 Patrick Williams <patrick@stwcx.xyz>

treewide: use more specific object_path type

The sdbus++ tool allows the YAML to specify either "path" or
"object_path". Switch to "object_path" everywhere for consistency
and clarity.

Signed-off-

treewide: use more specific object_path type

The sdbus++ tool allows the YAML to specify either "path" or
"object_path". Switch to "object_path" everywhere for consistency
and clarity.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I60c51b2ece5fc4cb23d05ce5151301db3dcddf3a

show more ...

8e56f4cd11-Oct-2022 Willy Tu <wltu@google.com>

mapper: Add Associated subtree method definition

Create new mapper function to make subtree call and association call at
the same time. With the association definitition, we will have more
endpoints

mapper: Add Associated subtree method definition

Create new mapper function to make subtree call and association call at
the same time. With the association definitition, we will have more
endpoints to fetch and verify that it is actually the resource that we
are looking for. We need to verify that it has the expected interface to
confirm that it is right device. In the current workflow this will take
two dbus calls to the mapper to get the assocation and the subtree.

This change aims to reduce that down to one by combination the two
operations. It will not sigificant performance increase for the daemons,
but it can help reduce the load on the dbus-broker.service.

Tested:
```
Normal Call:
busctl call "xyz.openbmc_project.ObjectMapper" \
"/xyz/openbmc_project/object_mapper" \
"xyz.openbmc_project.ObjectMapper" "GetSubTreePaths" sias \
"/xyz/openbmc_project/inventory" 0 1 \
"xyz.openbmc_project.Inventory.Item.Storage"
as 4 "/xyz/openbmc_project/inventory/storage_0" "/xyz/openbmc_project/inventory/storage_1"
"/xyz/openbmc_project/inventory/storage_4" "/xyz/openbmc_project/inventory/storage_3"

Associated Call: (Only 0 and 1 is associated to the chassis)
busctl call "xyz.openbmc_project.ObjectMapper" \
"/xyz/openbmc_project/object_mapper" \
"xyz.openbmc_project.ObjectMapper" "GetAssociatedSubTreePaths" ssias \
"/xyz/openbmc_project/inventory/chassis_0/storage" \
"/xyz/openbmc_project/inventory" 0 1 "xyz.openbmc_project.Inventory.Item.Storage"
as 2 "/xyz/openbmc_project/inventory/storage_0" "/xyz/openbmc_project/inventory/storage_1"
```

Signed-off-by: Willy Tu <wltu@google.com>
Change-Id: I079adf41a5775f80b9c773e8e9e319d46be924ea

show more ...

f3e6ff1924-Oct-2022 Patrick Williams <patrick@stwcx.xyz>

ACPIPowerState: set default property values

The property values should default to 'Unknown' instead of 'S0' (the
first enum).

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ida5362e

ACPIPowerState: set default property values

The property values should default to 'Unknown' instead of 'S0' (the
first enum).

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ida5362ec29238a14e6b5ce078ad0c0951993dd8b

show more ...

78f3103d20-Oct-2022 Chris Cain <cjcain@us.ibm.com>

Control.Power.CapLimits: Add power cap limits interface

This interface will provide the minimum and maximum power cap values
supported. This will be hosted/written by OCC.Control and is replacing
th

Control.Power.CapLimits: Add power cap limits interface

This interface will provide the minimum and maximum power cap values
supported. This will be hosted/written by OCC.Control and is replacing
the same properties from Control.Power.Cap.

The properties in Control.Power.Cap are hosted by Settings and the cap
limits had to temporarily be made writable so that OCC.Control could
write them.

Change-Id: Id24be182f7af8bfdc66d312a72b56afe172f8543
Signed-off-by: Chris Cain <cjcain@us.ibm.com>

show more ...

bed657a126-Apr-2022 Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>

Dump: Create: Add Unavailable error

Some types of dumps cannot be initiated when another dump
is in progress, return Unavailable error when the dump
cannot be created.

Signed-off-by: Dhruvaraj Subh

Dump: Create: Add Unavailable error

Some types of dumps cannot be initiated when another dump
is in progress, return Unavailable error when the dump
cannot be created.

Signed-off-by: Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>
Change-Id: I5590181a7d6c31cd40dc1d673924b56a1a38f186

show more ...

11efbb3c26-Sep-2022 Chicago Duan <duanzhijia01@inspur.com>

PowerSupply, Chassis: add powering association

Create association documentation between Chassis and PowerSupply.
For a machine with multiple chassis, it is necessary to indicate which
chassis a Powe

PowerSupply, Chassis: add powering association

Create association documentation between Chassis and PowerSupply.
For a machine with multiple chassis, it is necessary to indicate which
chassis a PowerSupply is managed by.
One example is that the ChassisID and PowerSupplyID in the Redfish URL
need to match, so we can confirm it through this association.

Signed-off-by: Chicago Duan <duanzhijia01@inspur.com>
Change-Id: I6beb18fd0b621cec6cd4a38606e009cda40f9761
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>

show more ...

a1a46a9414-Sep-2022 Brad Bishop <bradleyb@fuzziesquirrel.com>

cpu: add family default

Implementations need not provide the family information.

Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Change-Id: I771e7d44ca41d7cc00602ec2b9411548b647e5e9

6258c4ff14-Sep-2022 Brad Bishop <bradleyb@fuzziesquirrel.com>

cpu: add socket default

Implementations need not provide the socket information.

Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Change-Id: I874692061c4d61669017db27ac8fc57dfd980ea9

b4ee2af713-Sep-2022 Tyson Tuckerbear <ttucker@google.com>

Dimm.interface.yaml: Include High Bandwidth Memory v3 (HBM3)

Signed-off-by: Tyson Tuckerbear <ttucker@google.com>
Change-Id: Ic51b9383b76ab5d50b2c73be8ffae811f25e6246


/openbmc/phosphor-dbus-interfaces/gen/com/google/gbmc/Hoth/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/google/gbmc/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/Dump/Create/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/Dump/Entry/Hardware/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/Dump/Entry/Hostboot/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/Dump/Entry/Resource/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/Dump/Entry/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/Dump/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/Logging/Policy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/Logging/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/VPD/Manager/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/VPD/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/CP00/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/CRP0/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/DINF/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LRP0/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LRP1/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LRP2/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LRP3/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LRP4/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LRP5/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LRP6/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LRP7/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LWP0/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LWP1/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LWP2/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LWP3/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LWP4/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LWP5/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LWP6/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LWP7/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/LXR0/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/Location/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/MER0/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/UTIL/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VCEN/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VCFG/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VEIR/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VER0/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VINI/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VMPU/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VMSC/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VPRI/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VR10/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VRML/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VRTN/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VSBP/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VSRC/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VSYS/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VW10/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/VWML/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/ipzvpd/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/ibm/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/intel/Protocol/PECI/Raw/meson.build
/openbmc/phosphor-dbus-interfaces/gen/com/intel/Protocol/PECI/meson.build
/openbmc/phosphor-dbus-interfaces/gen/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/freedesktop/UPower/Device/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/freedesktop/UPower/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Common/Callout/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Common/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Control/Host/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Control/TPM/SecurityKeys/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Control/TPM/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Control/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Host/Access/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Host/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Inventory/Decorator/Asset/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Inventory/Decorator/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Logging/PEL/Entry/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Logging/PEL/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Logging/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/OCC/PassThrough/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/OCC/Status/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/OCC/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Proc/FSI/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Proc/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Sensor/Aggregation/History/Average/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Sensor/Aggregation/History/Maximum/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/Sensor/Aggregation/History/meson.build
/openbmc/phosphor-dbus-interfaces/gen/org/open_power/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Association/Definitions/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Association/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/BIOSConfig/Common/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/BIOSConfig/Manager/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/BIOSConfig/Password/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/BIOSConfig/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/Authority/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/CSR/Create/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/CSR/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/Certificate/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/Entry/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/Install/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/InstallAll/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/Replace/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/ReplaceAll/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Certs/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Channel/ChannelAccess/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Channel/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Buttons/Button/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Buttons/HostSelector/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Buttons/ID/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Buttons/NMI/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Buttons/Power/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Buttons/Reset/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Buttons/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Common/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Control/NMISource/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Control/Power/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Control/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/Intrusion/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Chassis/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Collection/DeleteAll/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Collection/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/Callout/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/Device/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/FactoryReset/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/File/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/FilePath/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/ObjectPath/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/OriginatedBy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/Progress/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/TFTP/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/UUID/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Common/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Condition/HostFirmware/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Condition/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Boot/Mode/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Boot/RebootAttempts/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Boot/RebootPolicy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Boot/Source/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Boot/Type/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Boot/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/CFMLimit/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/ChassisCapabilities/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Device/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/FanPwm/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/FanRedundancy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/FanSpeed/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/FieldMode/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Host/NMI/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Host/TurboAllowed/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Host/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/MinimumShipLevel/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Mode/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Power/ACPIPowerState/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Power/Cap/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Power/IdlePowerSaver/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Power/Mode/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Power/RestorePolicy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Power/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/PowerSupplyAttributes/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/PowerSupplyRedundancy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Processor/CurrentOperatingConfig/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Processor/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Security/RestrictionMode/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Security/SpecialMode/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Security/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Service/Attributes/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Service/SocketAttributes/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/Service/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/TPM/Policy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/TPM/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/ThermalMode/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/VoltageRegulatorControl/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/VoltageRegulatorMode/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Control/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Dump/Create/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Dump/Entry/BMC/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Dump/Entry/FaultLog/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Dump/Entry/System/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Dump/Entry/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Dump/NewDump/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Dump/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/HardwareIsolation/Create/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/HardwareIsolation/Entry/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/HardwareIsolation/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Connector/Embedded/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Connector/Slot/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Connector/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/Asset/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/AssetTag/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/CLEI/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/Cacheable/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/Compatible/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/CoolingType/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/Dimension/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/I2CDevice/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/LocationCode/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/ManufacturerExt/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/MeetsMinimumShipLevel/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/Replaceable/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/Revision/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/Slot/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/UniqueIdentifier/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/VendorInformation/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/VoltageControl/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Decorator/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Accelerator/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Battery/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Bmc/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Board/IOBoard/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Board/Motherboard/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Board/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Cable/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Chassis/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Connector/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Cpu/OperatingConfig/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Cpu/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/CpuCore/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Dimm/MemoryLocation/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Dimm/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/DiskBackplane/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Drive/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Ethernet/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/FabricAdapter/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Fan/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Global/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/MemoryBuffer/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/NetworkInterface/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/PCIeDevice/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/PCIeSlot/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Panel/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/PersistentMemory/Partition/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/PersistentMemory/PowerManagementPolicy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/PersistentMemory/SecurityCapabilities/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/PersistentMemory/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/PowerSupply/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Rotor/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Storage/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/StorageController/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/System/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Tpm/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Volume/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/Vrm/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Item/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Manager/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Source/PLDM/Entity/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Source/PLDM/FRU/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/Source/PLDM/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Inventory/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Ipmi/SOL/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Ipmi/SessionInfo/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Ipmi/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Led/Group/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Led/Physical/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Led/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/Create/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/Entry/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/ErrorBlocksTransition/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/Event/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/IPMI/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/SEL/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/Settings/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/Syslog/Destination/Mail/Create/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/Syslog/Destination/Mail/Entry/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/Syslog/Destination/Mail/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/Syslog/Destination/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Logging/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/MCTP/Endpoint/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/MCTP/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Memory/MemoryECC/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Memory/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/Client/Create/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/Client/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/DHCPConfiguration/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/EthernetInterface/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/Experimental/Bond/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/Experimental/Tunnel/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/Experimental/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/IP/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/MACAddress/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/Neighbor/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/SystemConfiguration/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/VLAN/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Network/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Nvme/Status/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Nvme/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Object/Delete/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Object/Enable/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Object/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/ObjectMapper/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/PFR/Attributes/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/PFR/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/PLDM/Event/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/PLDM/PDR/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/PLDM/Provider/Certs/Authority/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/PLDM/Requester/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/PLDM/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/ScheduledTime/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/Accuracy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/Device/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/Threshold/Critical/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/Threshold/HardShutdown/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/Threshold/PerformanceLoss/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/Threshold/SoftShutdown/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/Threshold/Warning/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/Threshold/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/Value/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/ValueMutability/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Sensor/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Smbios/MDR_V2/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Smbios/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/Activation/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/ActivationBlocksTransition/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/ActivationProgress/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/ApplyOptions/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/ApplyTime/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/ExtendedVersion/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/RedundancyPriority/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/RequestedRedundancyPriority/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/Settings/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/Version/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/BMC/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/BMCRedundancy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Boot/PostCode/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Boot/Progress/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Boot/Raw/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Boot/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Chassis/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Decorator/Availability/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Decorator/OperationalStatus/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Decorator/PowerState/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Decorator/PowerSystemInputs/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Decorator/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Drive/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Host/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/OperatingSystem/Status/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/OperatingSystem/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/PowerOnHours/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/ScheduledHostTransition/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Shutdown/Inventory/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Shutdown/Power/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Shutdown/ThermalEvent/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Shutdown/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/SystemdTarget/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/Watchdog/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/State/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Telemetry/Report/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Telemetry/ReportManager/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Telemetry/Trigger/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Telemetry/TriggerManager/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Telemetry/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Time/EpochTime/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Time/Synchronization/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Time/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/User/AccountPolicy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/User/Attributes/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/User/Common/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/User/Ldap/Config/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/User/Ldap/Create/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/User/Ldap/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/User/Manager/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/User/PrivilegeMapper/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/User/PrivilegeMapperEntry/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/User/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/VirtualMedia/Legacy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/VirtualMedia/MountPoint/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/VirtualMedia/Process/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/VirtualMedia/Proxy/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/VirtualMedia/Stats/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/VirtualMedia/meson.build
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/meson.build
/openbmc/phosphor-dbus-interfaces/meson.build
openbmc_project/Inventory/Item/Dimm.interface.yaml
4f9c091401-Aug-2022 Michal Orzel <michalx.orzel@intel.com>

Update Telemetry service interfaces

This change updates description of interfaces utilized by Telemetry
service, so that its contents mirror the desired implementation.

Change-Id: I7207c4889912e848

Update Telemetry service interfaces

This change updates description of interfaces utilized by Telemetry
service, so that its contents mirror the desired implementation.

Change-Id: I7207c4889912e848a058279b9d89f643a7e0b6b8
Signed-off-by: Michal Orzel <michalx.orzel@intel.com>

show more ...

9f2fee8201-Sep-2022 William A. Kennington III <wak@google.com>

Network/IP: Fix error class names

Change-Id: I03cc41d0b7a6c420ae42280f8f77aaafc2db23ea
Signed-off-by: William A. Kennington III <wak@google.com>

d75995d101-Sep-2022 William A. Kennington III <wak@google.com>

Network/Neighbor: Allow blocking value changes

phosphor-networkd does not allow these values to be changed, so we need
to provide an error class to return in this case.

Change-Id: Ifed959a2be7867a8

Network/Neighbor: Allow blocking value changes

phosphor-networkd does not allow these values to be changed, so we need
to provide an error class to return in this case.

Change-Id: Ifed959a2be7867a81b40d5b65510b89ff759dda6
Signed-off-by: William A. Kennington III <wak@google.com>

show more ...

6a0b503025-Aug-2022 William A. Kennington III <wak@google.com>

Network: Set const properties where desired

We currently throw our own exceptions in these cases when we should just
be leveraging the generator and properly exposing our intention.

Change-Id: Ib16

Network: Set const properties where desired

We currently throw our own exceptions in these cases when we should just
be leveraging the generator and properly exposing our intention.

Change-Id: Ib16f95f1f04f7da8313c68245475ea87fec29e0b
Signed-off-by: William A. Kennington III <wak@google.com>

show more ...

d67b262717-Apr-2022 Claire Weinan <cweinan@google.com>

FaultLog: Add new FaultLog dump entry interface

Fault Log is a new type of dump in openbmc/phosphor-debug-collector.
For details please see
https://github.com/openbmc/docs/blob/master/designs/hw-fau

FaultLog: Add new FaultLog dump entry interface

Fault Log is a new type of dump in openbmc/phosphor-debug-collector.
For details please see
https://github.com/openbmc/docs/blob/master/designs/hw-fault-monitor.md

This new interface (xyz.openbmc_project.Dump.Entry.FaultLog) contains
properties that are specific to Fault Log entries. Fault log entries
can contain references to fault data captured and stored by other code
modules (e.g. see the PrimaryLogId property). A fault log entry
represents a bundle of data from various sources that correspond to the
same fault event (additional properties such as references to secondary
logs may be added later).

Change-Id: I491b8fc58c752513d9066c908bf91999380e17c5
Signed-off-by: Claire Weinan <cweinan@google.com>

show more ...

bcb24e1306-Jul-2022 William A. Kennington III <wak@google.com>

EthernetInterface: Split up dynamic config properties

Having all of the dynamic configuration options grouped together makes
it harder for clients to specify independent properties as they have to
d

EthernetInterface: Split up dynamic config properties

Having all of the dynamic configuration options grouped together makes
it harder for clients to specify independent properties as they have to
deal with reading unrelated settings and a combinatorically expanding
enum.

This change adds properties mirrored from DHCPEnabled that split up the
different DHCP4/DHCP6/RA acceptance options.

Change-Id: If9c0c84fcda6578a894b7bfe2d87ebe030f125de
Signed-off-by: William A. Kennington III <wak@google.com>

show more ...

7311efe310-Aug-2022 Claire Weinan <cweinan@google.com>

Dump Entry: Recommend implementing DeleteAll

State in the description that the dump object manager should implement
xyz.openbmc_project.Collection.DeleteAll

Change-Id: I0acda3dc0bd61eb3780ed0315252

Dump Entry: Recommend implementing DeleteAll

State in the description that the dump object manager should implement
xyz.openbmc_project.Collection.DeleteAll

Change-Id: I0acda3dc0bd61eb3780ed03152521da772c95983
Signed-off-by: Claire Weinan <cweinan@google.com>

show more ...

12345678910>>...12