Brad Bishop | 5906173 | 2019-10-07 15:48:37 -0400 | [diff] [blame] | 1 | option( |
| 2 | 'busname-prefix', |
| 3 | description: 'The DBus busname prefix.', |
| 4 | type: 'string', |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 5 | value: 'xyz.openbmc_project.Hwmon', |
| 6 | ) |
Brad Bishop | 5906173 | 2019-10-07 15:48:37 -0400 | [diff] [blame] | 7 | option( |
| 8 | 'negative-errno-on-fail', |
| 9 | description: 'Set sensor value to -errno on read failures.', |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 10 | type: 'boolean', |
| 11 | ) |
Brad Bishop | 5906173 | 2019-10-07 15:48:37 -0400 | [diff] [blame] | 12 | option( |
| 13 | 'sensor-root', |
| 14 | description: 'The DBus sensors namespace root.', |
| 15 | type: 'string', |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 16 | value: '/xyz/openbmc_project/sensors', |
Brad Bishop | 5906173 | 2019-10-07 15:48:37 -0400 | [diff] [blame] | 17 | ) |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 18 | option('tests', type: 'feature', description: 'Build tests.') |
Brad Bishop | 5906173 | 2019-10-07 15:48:37 -0400 | [diff] [blame] | 19 | option( |
| 20 | 'update-functional-on-fail', |
| 21 | description: 'Update functional property on read failures. Incompatible with negative-errno-on-fail.', |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 22 | type: 'boolean', |
| 23 | ) |
Matthew Barth | 9455535 | 2020-11-16 14:57:50 -0600 | [diff] [blame] | 24 | option( |
| 25 | 'enable-max31785-msl', |
| 26 | type: 'boolean', |
| 27 | value: false, |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 28 | description: 'Include building and installing the MAX31785 chip\'s minimum ship level checking application.', |
Matthew Barth | 9455535 | 2020-11-16 14:57:50 -0600 | [diff] [blame] | 29 | ) |
Willy Tu | 24b8b4b | 2023-08-07 17:49:37 -0700 | [diff] [blame] | 30 | |
| 31 | |
| 32 | option( |
| 33 | 'override-with-devpath', |
| 34 | type: 'array', |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 35 | description: 'Only use the devpath of the device even if OFPath exists', |
Willy Tu | 24b8b4b | 2023-08-07 17:49:37 -0700 | [diff] [blame] | 36 | ) |
Matt Spinler | 670d92a | 2024-07-22 15:52:02 -0500 | [diff] [blame] | 37 | |
| 38 | option( |
| 39 | 'always-use-devpath', |
| 40 | type: 'feature', |
| 41 | value: 'disabled', |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 42 | description: 'Only use the devpath for all devices.', |
Matt Spinler | 670d92a | 2024-07-22 15:52:02 -0500 | [diff] [blame] | 43 | ) |