1option( 2 'busname-prefix', 3 description: 'The DBus busname prefix.', 4 type: 'string', 5 value: 'xyz.openbmc_project.Hwmon', 6) 7option( 8 'negative-errno-on-fail', 9 description: 'Set sensor value to -errno on read failures.', 10 type: 'boolean', 11 value: false, 12) 13option( 14 'sensor-root', 15 description: 'The DBus sensors namespace root.', 16 type: 'string', 17 value: '/xyz/openbmc_project/sensors', 18) 19option('tests', type: 'feature', description: 'Build tests.') 20option( 21 'update-functional-on-fail', 22 description: 'Update functional property on read failures. Incompatible with negative-errno-on-fail.', 23 type: 'boolean', 24) 25option( 26 'enable-max31785-msl', 27 type: 'boolean', 28 value: false, 29 description: 'Include building and installing the MAX31785 chip\'s minimum ship level checking application.', 30) 31 32 33option( 34 'override-with-devpath', 35 type: 'array', 36 description: 'Only use the devpath of the device even if OFPath exists', 37) 38 39option( 40 'always-use-devpath', 41 type: 'feature', 42 value: 'disabled', 43 description: 'Only use the devpath for all devices.', 44) 45