Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame] | 1 | option('tests', type: 'feature', description: 'Build tests') |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 2 | |
| 3 | option( |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 4 | 'max-cpus', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame] | 5 | type: 'integer', |
| 6 | min: 0, |
| 7 | max: 255, |
| 8 | description: 'Maximum number of CPUs', |
| 9 | value: 2, |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 10 | ) |
| 11 | |
| 12 | option( |
Eddie James | 3f710bd | 2021-10-20 13:40:52 -0500 | [diff] [blame] | 13 | 'ps-derating-factor', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame] | 14 | type: 'integer', |
| 15 | min: 0, |
| 16 | max: 100, |
| 17 | description: 'Power supply derating factor', |
| 18 | value: 90, |
Eddie James | 3f710bd | 2021-10-20 13:40:52 -0500 | [diff] [blame] | 19 | ) |
| 20 | |
| 21 | option( |
George Liu | bddcf85 | 2021-09-08 08:46:22 +0800 | [diff] [blame] | 22 | 'yamldir', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame] | 23 | type: 'string', |
| 24 | description: 'The path to the yaml config files', |
Patrick Williams | 9bec8af | 2023-09-07 14:02:27 -0500 | [diff] [blame] | 25 | ) |
Dhruvaraj Subhashchandran | 1173b2b | 2024-06-01 11:12:13 -0500 | [diff] [blame] | 26 | |
| 27 | option( |
| 28 | 'op_dump_obj_path', |
| 29 | type: 'string', |
| 30 | value: '/org/openpower/dump', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame] | 31 | description: 'Object path requesting OpenPOWER dumps', |
Dhruvaraj Subhashchandran | 1173b2b | 2024-06-01 11:12:13 -0500 | [diff] [blame] | 32 | ) |
Lakshmi Yadlapati | 6213f19 | 2024-07-01 11:50:09 -0500 | [diff] [blame] | 33 | |
| 34 | option( |
| 35 | 'transport-implementation', |
| 36 | type: 'combo', |
| 37 | choices: ['mctp-demux', 'af-mctp'], |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame] | 38 | description: 'transport via af-mctp or mctp-demux', |
Lakshmi Yadlapati | 6213f19 | 2024-07-01 11:50:09 -0500 | [diff] [blame] | 39 | ) |
Chris Cain | 720a384 | 2025-01-09 10:23:36 -0600 | [diff] [blame] | 40 | |
| 41 | option( |
| 42 | 'phal-support', |
Patrick Williams | 601cea4 | 2025-02-01 08:36:51 -0500 | [diff] [blame] | 43 | type: 'feature', |
| 44 | description: 'Enable PHAL support', |
| 45 | value: 'disabled', |
Chris Cain | 720a384 | 2025-01-09 10:23:36 -0600 | [diff] [blame] | 46 | ) |
| 47 | |