blob: 2387b5df215a8dccb79023e24870303636a21c4e [file] [log] [blame]
Patrick Williamsd4430272025-02-01 08:36:58 -05001option(
2 'max-boot-cycle-count',
3 type: 'integer',
4 min: 1,
5 max: 100,
6 description: 'Maximum boot cycles for which the post codes should be persisted',
7 value: 100,
8)
9option(
10 'bios-post-code-log',
11 type: 'feature',
12 description: 'bios post code log',
13 value: 'disabled',
14)
15option(
16 'max-post-code-size-per-cycle',
17 type: 'integer',
18 min: 64,
19 max: 1024,
20 description: 'Maximum post code file size per cycle',
21 value: 512,
22)
23option(
24 'postcode-display-path',
25 type: 'string',
26 description: 'The sys path for postcode display on debug card',
27)