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', |
Matt Spinler | 341e3cf | 2025-07-09 13:37:41 -0500 | [diff] [blame] | 11 | value: false, |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 12 | ) |
Brad Bishop | 5906173 | 2019-10-07 15:48:37 -0400 | [diff] [blame] | 13 | option( |
| 14 | 'sensor-root', |
| 15 | description: 'The DBus sensors namespace root.', |
| 16 | type: 'string', |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 17 | value: '/xyz/openbmc_project/sensors', |
Brad Bishop | 5906173 | 2019-10-07 15:48:37 -0400 | [diff] [blame] | 18 | ) |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 19 | option('tests', type: 'feature', description: 'Build tests.') |
Brad Bishop | 5906173 | 2019-10-07 15:48:37 -0400 | [diff] [blame] | 20 | option( |
| 21 | 'update-functional-on-fail', |
| 22 | 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] | 23 | type: 'boolean', |
| 24 | ) |
Matthew Barth | 9455535 | 2020-11-16 14:57:50 -0600 | [diff] [blame] | 25 | option( |
| 26 | 'enable-max31785-msl', |
| 27 | type: 'boolean', |
| 28 | value: false, |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 29 | 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] | 30 | ) |
Willy Tu | 24b8b4b | 2023-08-07 17:49:37 -0700 | [diff] [blame] | 31 | |
| 32 | |
| 33 | option( |
| 34 | 'override-with-devpath', |
| 35 | type: 'array', |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 36 | description: 'Only use the devpath of the device even if OFPath exists', |
Willy Tu | 24b8b4b | 2023-08-07 17:49:37 -0700 | [diff] [blame] | 37 | ) |
Matt Spinler | 670d92a | 2024-07-22 15:52:02 -0500 | [diff] [blame] | 38 | |
| 39 | option( |
| 40 | 'always-use-devpath', |
| 41 | type: 'feature', |
| 42 | value: 'disabled', |
Patrick Williams | a385d89 | 2025-02-01 08:37:40 -0500 | [diff] [blame] | 43 | description: 'Only use the devpath for all devices.', |
Matt Spinler | 670d92a | 2024-07-22 15:52:02 -0500 | [diff] [blame] | 44 | ) |