blob: 92c53170525f636b5b1399c1eb7e0a151ad195c3 [file] [log] [blame]
George Liud6a1bae2022-06-20 13:47:31 +08001option(
2 'id-led-group',
Patrick Williams301edb92025-03-03 11:08:14 -05003 type: 'string',
George Liud6a1bae2022-06-20 13:47:31 +08004 value: 'enclosure_identify',
Patrick Williams301edb92025-03-03 11:08:14 -05005 description: 'The identify LED group name',
George Liud6a1bae2022-06-20 13:47:31 +08006)
George Liuf756f8b2022-07-06 10:44:28 +08007
8option(
9 'long-press-time-ms',
Patrick Williams301edb92025-03-03 11:08:14 -050010 type: 'integer',
George Liuf756f8b2022-07-06 10:44:28 +080011 value: 3000,
Patrick Williams301edb92025-03-03 11:08:14 -050012 description: 'Time to long press the button',
George Liuf756f8b2022-07-06 10:44:28 +080013)
George Liuba332752022-07-07 13:31:40 +080014
15option(
16 'lookup-gpio-base',
Patrick Williams301edb92025-03-03 11:08:14 -050017 type: 'feature',
George Liuba332752022-07-07 13:31:40 +080018 value: 'enabled',
Patrick Williams301edb92025-03-03 11:08:14 -050019 description: 'Look up the GPIO base value in /sys/class/gpio. Otherwise use a base of 0.',
George Liuba332752022-07-07 13:31:40 +080020)
Matt Spinler1a309f72023-04-04 13:12:19 -050021
22option(
23 'power-button-profile',
24 type: 'combo',
25 choices: ['default', 'host_then_chassis_poweroff'],
26 value: 'default',
Patrick Williams301edb92025-03-03 11:08:14 -050027 description: 'Used to select a custom power button behavior profile.',
Matt Spinler1a309f72023-04-04 13:12:19 -050028)
HuyLe9456ffc2023-06-22 15:21:22 +070029
30option(
31 'reset-button-do-warm-reboot',
Patrick Williams301edb92025-03-03 11:08:14 -050032 type: 'feature',
33 value: 'disabled',
34 description: 'Enable warm reboot on the reset button',
HuyLe9456ffc2023-06-22 15:21:22 +070035)
Rush Chen31ce3752024-11-08 14:57:27 +080036
37option(
38 'host-instances',
39 type: 'string',
40 value: '0',
Patrick Williams301edb92025-03-03 11:08:14 -050041 description: 'Host Instances that can be defined by project, for example: 1 2 3 4',
Rush Chen31ce3752024-11-08 14:57:27 +080042)