blob: a2d1e3c56190bb6b9bea91331f4bd5058063c72b [file] [log] [blame]
Patrick Williamsbcf09f12023-07-13 16:47:07 -05001option('tests', type: 'feature', value: 'enabled', description: 'Build tests')
Patrick Williams6813d892025-02-01 08:37:30 -05002option(
3 'oe-sdk',
4 type: 'feature',
5 value: 'disabled',
6 description: 'Enable OE SDK',
7)
8option(
9 'strict-failsafe-pwm',
10 type: 'boolean',
11 value: false,
12 description: 'Set the fans strictly at the failsafe PWM when in failsafe mode',
13)
14option(
15 'offline-failsafe-pwm',
16 type: 'boolean',
17 value: false,
18 description: 'Set the fans at the failsafe PWM when reloading or terminated.',
19)
20option(
21 'systemd_target',
22 type: 'string',
23 value: 'multi-user.target',
24 description: 'Target for starting this service',
25)
26option(
27 'unc-failsafe',
28 type: 'boolean',
29 value: false,
30 description: 'Set the fans to failsafe mode when a temp sensor is above upper non-critical threshold',
31)
Chaul Lya552fe22024-11-15 10:20:28 +000032option(
33 'handle-missing-object-paths',
34 type: 'boolean',
35 value: false,
36 description: 'Further handlings to sensors missing from D-Bus',
37)