xref: /openbmc/phosphor-buttons/meson.options (revision 301edb95a5875d134a5d87fb36801e601f399769)
1option(
2    'id-led-group',
3    type: 'string',
4    value: 'enclosure_identify',
5    description: 'The identify LED group name',
6)
7
8option(
9    'long-press-time-ms',
10    type: 'integer',
11    value: 3000,
12    description: 'Time to long press the button',
13)
14
15option(
16    'lookup-gpio-base',
17    type: 'feature',
18    value: 'enabled',
19    description: 'Look up the GPIO base value in /sys/class/gpio. Otherwise use a base of 0.',
20)
21
22option(
23    'power-button-profile',
24    type: 'combo',
25    choices: ['default', 'host_then_chassis_poweroff'],
26    value: 'default',
27    description: 'Used to select a custom power button behavior profile.',
28)
29
30option(
31    'reset-button-do-warm-reboot',
32    type: 'feature',
33    value: 'disabled',
34    description: 'Enable warm reboot on the reset button',
35)
36
37option(
38    'host-instances',
39    type: 'string',
40    value: '0',
41    description: 'Host Instances that can be defined by project, for example: 1 2 3 4',
42)
43