blob: 06995baa7d64426147a26a076c0a2e1e10dbe9b5 [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
Matthew Barth91460422017-02-24 13:14:43 -060035# obmc-fan-presence
36#
37# Provides implementations of fan presence detection
38VIRTUAL-RUNTIME_obmc-fan-presence ?= "phosphor-fan-presence-tach"
39
Brad Bishop45f8b572017-02-01 21:04:14 -050040# obmc-inventory-manager
41#
42# Provides an implementation of the xyz.openbmc_project.Inventory.Manager
43# interface.
44VIRTUAL-RUNTIME_obmc-inventory-manager ?= "phosphor-inventory-manager"
45
46# obmc-led-manager
47#
48# Provides an implementation of the xyz.openbmc_project.ledmanager interface.
49VIRTUAL-RUNTIME_obmc-leds-manager ?= "phosphor-led-manager"
50
51# obmc-led-sysfs
52#
53# Provides an implementation of xyz.openbmc_project.Led.Physical for
54# Linux kernel LED subsystem LEDs.
55VIRTUAL-RUNTIME_obmc-leds-sysfs ?= "phosphor-led-sysfs"
56
Gunnar Millsc868f922017-02-15 16:01:45 -060057# obmc-bmc-code-mgr
58#
59# Provides an implementation of the xyz.openbmc_project.Software.BMC.Version
60# interface.
61VIRTUAL-RUNTIME_obmc-bmc-code-mgr ?= "phosphor-software-manager-version"
62
Brad Bishopb6e45122017-01-26 10:49:22 -050063PREFERRED_PROVIDER_virtual/obmc-logging-mgmt ?= "phosphor-logging"
Tom Josephfddc4052017-01-16 16:43:05 +053064PREFERRED_PROVIDER_virtual/obmc-net-ipmi ?= "phosphor-net-ipmid"
Brad Bishop45f8b572017-02-01 21:04:14 -050065
66# obmc-sensors-hwmon
67#
68# Provides an implementation of xyz.openbmc_project.Sensor.Value
69# for hwmon sensors.
70VIRTUAL-RUNTIME_obmc-sensors-hwmon ?= "phosphor-hwmon"
71
Brad Bishopb6e45122017-01-26 10:49:22 -050072PREFERRED_PROVIDER_virtual/obmc-settings-mgmt ?= "phosphor-settings"
73PREFERRED_PROVIDER_virtual/obmc-system-mgmt ?= "obmc-phosphor-sysd"
74PREFERRED_PROVIDER_virtual/obmc-user-mgmt ?= "obmc-phosphor-user"
75PREFERRED_PROVIDER_virtual/obmc-wsgihost ?= "phosphor-gevent"
Brad Bishopd4d99d42017-01-12 21:25:04 -050076
Brad Bishopfe7871c2017-02-22 20:50:13 -050077# phosphor-hwmon-config
78#
79# The phosphor-hwmon package can have its configuration generated
80# automatically if the MRW feature is enabled.
81VIRTUAL-RUNTIME_phosphor-hwmon-config ?= \
82 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-hwmon-config-mrw')}"
83
Brad Bishopda5923e2017-01-28 11:53:03 -050084# virtual/phosphor-ipmi-fru-hostfw-config
85#
86# The phosphor-ipmi-fru application is data-driven and requires an input
87# mapping of how the host firmware reports inventory via IPMI.
88# This virtual is a native recipe that provides that mapping by installing
89# configuration files in the format and native sysroot location expected by
90# the phosphor-ipmi-fru build process.
91PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-hostfw-config ?= "phosphor-ipmi-fru-hostfw-config-example-native"
92
Brad Bishop30f78552017-01-28 12:51:42 -050093# The phosphor-ipmi-fru application is data-driven and requires an input
94# mapping of IPMI inventory metadata to DBus objects interfaces and properties.
95# This virtual is a native recipe that provides that mapping by installing
96# configuration files in the format and native sysroot location expected by
97# the phosphor-ipmi-fru build process in the native sysroot.
98PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-inventory ?= \
99 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-ipmi-fru-inventory-mrw-native', 'phosphor-ipmi-fru-inventory-example-native')}"
Deepak Kodihalli5b183e02017-02-20 04:55:20 -0600100PREFERRED_PROVIDER_virtual/phosphor-ipmi-fru-properties ?= \
101 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-ipmi-fru-properties-mrw-native', 'phosphor-ipmi-fru-properties-example-native')}"
Brad Bishop30f78552017-01-28 12:51:42 -0500102
Vishwanatha Subbanna8bec8252017-02-11 22:10:23 +0530103# The phosphor-led-manager application is data-driven and requires an input
104# yaml of LED group and members.
105# This virtual is a native recipe that provides that mapping by installing
106# configuration files in the format and native sysroot location expected by
107# the phosphor-led-manager build process in the native sysroot.
108PREFERRED_PROVIDER_virtual/phosphor-led-manager-config-native ?= \
109 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-led-manager-config-mrw-native', 'phosphor-led-manager-config-example-native')}"
110
Ratan Guptab92d0ec2017-03-06 17:05:11 +0530111# The phosphor-host-ipmid application is data-driven and requires an input
112# mapping of IPMI inventory sensor metadata to DBus objects interfaces and properties.
113# This virtual is a native recipe that provides that mapping by installing
114# configuration files in the format and native sysroot location expected by
115# the phosphor-host-ipmid build process in the native sysroot.
116PREFERRED_PROVIDER_virtual/phosphor-ipmi-sensor-inventory ?= \
117 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-ipmi-sensor-inventory-mrw-native', 'phosphor-ipmi-sensor-inventory-example-native')}"
118
Deepak Kodihalli44b1c522017-03-16 06:32:12 -0500119# The phosphor-logging application has a data driven plugin that adds FRU
120# callout information to error logs, when applications generating error logs
121# add the requisite callout metadata to the systemd journal. The plugin requires
122# an input mapping of Linux sysfs devices to OpenBMC DBus objects.
123# This virtual is a native recipe that provides that mapping by installing
124# configuration files in the format and native sysroot location expected by
125# the phosphor-logging build process in the native sysroot.
126PREFERRED_PROVIDER_virtual/phosphor-logging-callouts ?= \
127 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-logging-callouts-mrw-native', 'phosphor-logging-callouts-example-native')}"
Ratan Guptab92d0ec2017-03-06 17:05:11 +0530128
Matt Spinlerc943de32017-03-21 15:02:13 -0500129# The phosphor-fan-presence application is data driven and requires an
130# input YAML that maps fans to their tach sensors.
131# This virtual is a native recipe that provides that mapping by installing
132# configuration files in the format and native sysroot location expected by
133# the phosphor-fan-presence build process in the native sysroot.
134PREFERRED_PROVIDER_virtual/phosphor-fan-presence-config ?= \
135 "${@cf_enabled(d, 'obmc-mrw', 'phosphor-fan-presence-mrw-native', 'phosphor-fan-presence-example-native')}"
136
Brad Bishopd4d99d42017-01-12 21:25:04 -0500137OBMC_DBUS_PATH_ROOT ?= "/xyz/openbmc_project"
138OBMC_DBUS_IFACE_ROOT ?= "xyz.openbmc_project"