blob: bf254ebaf3398911210b36f4c1d0a636ab72878b [file] [log] [blame]
Brad Bishop59061732019-10-07 15:48:37 -04001option(
2 'busname-prefix',
3 description: 'The DBus busname prefix.',
4 type: 'string',
Patrick Williamsa385d892025-02-01 08:37:40 -05005 value: 'xyz.openbmc_project.Hwmon',
6)
Brad Bishop59061732019-10-07 15:48:37 -04007option(
8 'negative-errno-on-fail',
9 description: 'Set sensor value to -errno on read failures.',
Patrick Williamsa385d892025-02-01 08:37:40 -050010 type: 'boolean',
Matt Spinler341e3cf2025-07-09 13:37:41 -050011 value: false,
Patrick Williamsa385d892025-02-01 08:37:40 -050012)
Brad Bishop59061732019-10-07 15:48:37 -040013option(
14 'sensor-root',
15 description: 'The DBus sensors namespace root.',
16 type: 'string',
Patrick Williamsa385d892025-02-01 08:37:40 -050017 value: '/xyz/openbmc_project/sensors',
Brad Bishop59061732019-10-07 15:48:37 -040018)
Patrick Williamsa385d892025-02-01 08:37:40 -050019option('tests', type: 'feature', description: 'Build tests.')
Brad Bishop59061732019-10-07 15:48:37 -040020option(
21 'update-functional-on-fail',
22 description: 'Update functional property on read failures. Incompatible with negative-errno-on-fail.',
Patrick Williamsa385d892025-02-01 08:37:40 -050023 type: 'boolean',
24)
Matthew Barth94555352020-11-16 14:57:50 -060025option(
26 'enable-max31785-msl',
27 type: 'boolean',
28 value: false,
Patrick Williamsa385d892025-02-01 08:37:40 -050029 description: 'Include building and installing the MAX31785 chip\'s minimum ship level checking application.',
Matthew Barth94555352020-11-16 14:57:50 -060030)
Willy Tu24b8b4b2023-08-07 17:49:37 -070031
32
33option(
34 'override-with-devpath',
35 type: 'array',
Patrick Williamsa385d892025-02-01 08:37:40 -050036 description: 'Only use the devpath of the device even if OFPath exists',
Willy Tu24b8b4b2023-08-07 17:49:37 -070037)
Matt Spinler670d92a2024-07-22 15:52:02 -050038
39option(
40 'always-use-devpath',
41 type: 'feature',
42 value: 'disabled',
Patrick Williamsa385d892025-02-01 08:37:40 -050043 description: 'Only use the devpath for all devices.',
Matt Spinler670d92a2024-07-22 15:52:02 -050044)