Kun Yi | 0d14a59 | 2020-04-06 14:01:36 -0700 | [diff] [blame] | 1 | option( |
| 2 | 'snoop-device', |
| 3 | description: 'Linux module name of the snoop device.', |
| 4 | type: 'string', |
| 5 | ) |
| 6 | option( |
| 7 | 'post-code-bytes', |
| 8 | description: 'Post code byte size.', |
| 9 | type: 'integer', |
| 10 | value: 1, |
| 11 | ) |
| 12 | option( |
Kumar Thangavel | 0269eaf | 2021-08-11 15:45:18 +0530 | [diff] [blame] | 13 | 'host-instances', |
| 14 | description: 'obmc instances of the host', |
| 15 | type: 'string', |
| 16 | ) |
| 17 | option( |
| 18 | 'snoop', |
| 19 | type: 'feature', |
| 20 | description: 'Compile time flag to enable Ipmi snoop.', |
| 21 | value: 'disabled', |
| 22 | ) |
| 23 | option( |
Kun Yi | 0d14a59 | 2020-04-06 14:01:36 -0700 | [diff] [blame] | 24 | 'systemd-target', |
| 25 | description: 'Target for starting this service.', |
Kumar Thangavel | d309da4 | 2022-05-20 13:19:26 +0530 | [diff] [blame] | 26 | type: 'string', |
| 27 | value: 'multi-user.target', |
Kun Yi | 0d14a59 | 2020-04-06 14:01:36 -0700 | [diff] [blame] | 28 | ) |
| 29 | option( |
| 30 | '7seg', type: 'feature', description: 'Enable building 7seg POST daemon.', |
| 31 | ) |
| 32 | option( |
| 33 | 'tests', type: 'feature', description: 'Build tests.', |
| 34 | ) |
Jonathan Doman | 38b0946 | 2023-04-26 11:45:39 -0700 | [diff] [blame] | 35 | option( |
| 36 | 'rate-limit', |
| 37 | description: 'Maximum number of POST codes to read from snoop device every' |
| 38 | + 'second. Value of 0 disables rate limiting.', |
| 39 | type: 'integer', |
| 40 | min: 0, |
| 41 | value: 1000 |
| 42 | ) |