blob: f7ac0b5ec898303e0171def0e09587c4b6dd6b19 [file] [log] [blame]
Brad Bishop6491f652016-08-16 13:23:07 -04001OBMC_BMC_INSTANCES ?= "0"
Brad Bishopb6e45122017-01-26 10:49:22 -05002OBMC_CHASSIS_INSTANCES ?= "0"
3OBMC_CHECKSTOP_INSTANCES ?= "0"
Brad Bishop6491f652016-08-16 13:23:07 -04004OBMC_FAN_INSTANCES ?= ""
Brad Bishopb6e45122017-01-26 10:49:22 -05005OBMC_HOST_INSTANCES ?= "0"
6OBMC_POWER_BUTTON_INSTANCES ?= "0"
7OBMC_POWER_INSTANCES ?= "0"
8OBMC_RESET_BUTTON_INSTANCES ?= "0"
9OBMC_WATCHDOG_INSTANCES ?= "0"
Brad Bishop52d43372016-08-30 08:54:14 -040010
Brad Bishop9bfcfcf2016-09-06 23:27:27 -040011PREFERRED_PROVIDER_virtual/obmc-chassis-mgmt ?= "obmc-phosphor-chassisd"
Brad Bishopb6e45122017-01-26 10:49:22 -050012PREFERRED_PROVIDER_virtual/obmc-event-mgmt ?= "obmc-phosphor-event"
Brad Bishop9bfcfcf2016-09-06 23:27:27 -040013PREFERRED_PROVIDER_virtual/obmc-fan-mgmt ?= "obmc-phosphor-fand"
14PREFERRED_PROVIDER_virtual/obmc-flash-mgmt ?= "obmc-phosphor-flashd"
Brad Bishopb6e45122017-01-26 10:49:22 -050015PREFERRED_PROVIDER_virtual/obmc-host-ipmi-hw ?= "phosphor-ipmi-hw-example"
Brad Bishop46631702017-03-01 16:16:06 -050016
17# obmc-bmc-state-manager
18#
19# Provides an implementation of the xyz.openbmc_project.State.BMC
20# interface.
21VIRTUAL-RUNTIME_obmc-bmc-state-manager ?= "phosphor-state-manager-bmc"
22
23# obmc-chassis-state-manager
24#
25# Provides an implementation of the xyz.openbmc_project.State.Chassis
26# interface.
27VIRTUAL-RUNTIME_obmc-chassis-state-manager ?= "phosphor-state-manager-chassis"
28
29# obmc-host-state-manager
30#
31# Provides an implementation of the xyz.openbmc_project.State.Host
32# interface.
33VIRTUAL-RUNTIME_obmc-host-state-manager ?= "phosphor-state-manager-host"
Brad Bishop45f8b572017-02-01 21:04:14 -050034
35# obmc-inventory-manager
36#
37# Provides an implementation of the xyz.openbmc_project.Inventory.Manager
38# interface.
39VIRTUAL-RUNTIME_obmc-inventory-manager ?= "phosphor-inventory-manager"
40
41# obmc-led-manager
42#
43# Provides an implementation of the xyz.openbmc_project.ledmanager interface.
44VIRTUAL-RUNTIME_obmc-leds-manager ?= "phosphor-led-manager"
45
46# obmc-led-sysfs
47#
48# Provides an implementation of xyz.openbmc_project.Led.Physical for
49# Linux kernel LED subsystem LEDs.
50VIRTUAL-RUNTIME_obmc-leds-sysfs ?= "phosphor-led-sysfs"
51
Gunnar Millsc868f922017-02-15 16:01:45 -060052# obmc-bmc-code-mgr
53#
54# Provides an implementation of the xyz.openbmc_project.Software.BMC.Version
55# interface.
56VIRTUAL-RUNTIME_obmc-bmc-code-mgr ?= "phosphor-software-manager-version"
57
Brad Bishopb6e45122017-01-26 10:49:22 -050058PREFERRED_PROVIDER_virtual/obmc-logging-mgmt ?= "phosphor-logging"
Tom Josephfddc4052017-01-16 16:43:05 +053059PREFERRED_PROVIDER_virtual/obmc-net-ipmi ?= "phosphor-net-ipmid"
Brad Bishop45f8b572017-02-01 21:04:14 -050060
61# obmc-sensors-hwmon
62#
63# Provides an implementation of xyz.openbmc_project.Sensor.Value
64# for hwmon sensors.
65VIRTUAL-RUNTIME_obmc-sensors-hwmon ?= "phosphor-hwmon"
66
Brad Bishopb6e45122017-01-26 10:49:22 -050067PREFERRED_PROVIDER_virtual/obmc-settings-mgmt ?= "phosphor-settings"
68PREFERRED_PROVIDER_virtual/obmc-system-mgmt ?= "obmc-phosphor-sysd"
69PREFERRED_PROVIDER_virtual/obmc-user-mgmt ?= "obmc-phosphor-user"
70PREFERRED_PROVIDER_virtual/obmc-wsgihost ?= "phosphor-gevent"
Brad Bishopd4d99d42017-01-12 21:25:04 -050071
Brad Bishopfe7871c2017-02-22 20:50:13 -050072# phosphor-hwmon-config
73#
74# The phosphor-hwmon package can have its configuration generated
75# automatically if the MRW feature is enabled.
76VIRTUAL-RUNTIME_phosphor-hwmon-config ?= \
77 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-hwmon-config-mrw')}"
78
Brad Bishopda5923e2017-01-28 11:53:03 -050079# virtual/phosphor-ipmi-fru-hostfw-config
80#
81# The phosphor-ipmi-fru application is data-driven and requires an input
82# mapping of how the host firmware reports inventory via IPMI.
83# This virtual is a native recipe that provides that mapping by installing
84# configuration files in the format and native sysroot location expected by
85# the phosphor-ipmi-fru build process.
86PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-hostfw-config ?= "phosphor-ipmi-fru-hostfw-config-example-native"
87
Brad Bishop30f78552017-01-28 12:51:42 -050088# The phosphor-ipmi-fru application is data-driven and requires an input
89# mapping of IPMI inventory metadata to DBus objects interfaces and properties.
90# This virtual is a native recipe that provides that mapping by installing
91# configuration files in the format and native sysroot location expected by
92# the phosphor-ipmi-fru build process in the native sysroot.
93PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-inventory ?= \
94 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-ipmi-fru-inventory-mrw-native', 'phosphor-ipmi-fru-inventory-example-native')}"
Deepak Kodihalli5b183e02017-02-20 04:55:20 -060095PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-properties ?= \
96 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-ipmi-fru-properties-mrw-native', 'phosphor-ipmi-fru-properties-example-native')}"
Brad Bishop30f78552017-01-28 12:51:42 -050097
Vishwanatha Subbanna8bec8252017-02-11 22:10:23 +053098# The phosphor-led-manager application is data-driven and requires an input
99# yaml of LED group and members.
100# This virtual is a native recipe that provides that mapping by installing
101# configuration files in the format and native sysroot location expected by
102# the phosphor-led-manager build process in the native sysroot.
103PREFERRED_PROVIDER_virtual/phosphor-led-manager-config-native ?= \
104 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-led-manager-config-mrw-native', 'phosphor-led-manager-config-example-native')}"
105
Brad Bishopd4d99d42017-01-12 21:25:04 -0500106OBMC_DBUS_PATH_ROOT ?= "/xyz/openbmc_project"
107OBMC_DBUS_IFACE_ROOT ?= "xyz.openbmc_project"