blob: a424a8e7722bd8e4b20e29011f3d76c17f0ea37a [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',
11)
Brad Bishop59061732019-10-07 15:48:37 -040012option(
13 'sensor-root',
14 description: 'The DBus sensors namespace root.',
15 type: 'string',
Patrick Williamsa385d892025-02-01 08:37:40 -050016 value: '/xyz/openbmc_project/sensors',
Brad Bishop59061732019-10-07 15:48:37 -040017)
Patrick Williamsa385d892025-02-01 08:37:40 -050018option('tests', type: 'feature', description: 'Build tests.')
Brad Bishop59061732019-10-07 15:48:37 -040019option(
20 'update-functional-on-fail',
21 description: 'Update functional property on read failures. Incompatible with negative-errno-on-fail.',
Patrick Williamsa385d892025-02-01 08:37:40 -050022 type: 'boolean',
23)
Matthew Barth94555352020-11-16 14:57:50 -060024option(
25 'enable-max31785-msl',
26 type: 'boolean',
27 value: false,
Patrick Williamsa385d892025-02-01 08:37:40 -050028 description: 'Include building and installing the MAX31785 chip\'s minimum ship level checking application.',
Matthew Barth94555352020-11-16 14:57:50 -060029)
Willy Tu24b8b4b2023-08-07 17:49:37 -070030
31
32option(
33 'override-with-devpath',
34 type: 'array',
Patrick Williamsa385d892025-02-01 08:37:40 -050035 description: 'Only use the devpath of the device even if OFPath exists',
Willy Tu24b8b4b2023-08-07 17:49:37 -070036)
Matt Spinler670d92a2024-07-22 15:52:02 -050037
38option(
39 'always-use-devpath',
40 type: 'feature',
41 value: 'disabled',
Patrick Williamsa385d892025-02-01 08:37:40 -050042 description: 'Only use the devpath for all devices.',
Matt Spinler670d92a2024-07-22 15:52:02 -050043)