xref: /openbmc/phosphor-post-code-manager/meson.options (revision d4430278581a501ebaa80a7c6084867529224b0f)
1*d4430278SPatrick Williamsoption(
2*d4430278SPatrick Williams    'max-boot-cycle-count',
3*d4430278SPatrick Williams    type: 'integer',
4*d4430278SPatrick Williams    min: 1,
5*d4430278SPatrick Williams    max: 100,
6*d4430278SPatrick Williams    description: 'Maximum boot cycles for which the post codes should be persisted',
7*d4430278SPatrick Williams    value: 100,
8*d4430278SPatrick Williams)
9*d4430278SPatrick Williamsoption(
10*d4430278SPatrick Williams    'bios-post-code-log',
11*d4430278SPatrick Williams    type: 'feature',
12*d4430278SPatrick Williams    description: 'bios post code log',
13*d4430278SPatrick Williams    value: 'disabled',
14*d4430278SPatrick Williams)
15*d4430278SPatrick Williamsoption(
16*d4430278SPatrick Williams    'max-post-code-size-per-cycle',
17*d4430278SPatrick Williams    type: 'integer',
18*d4430278SPatrick Williams    min: 64,
19*d4430278SPatrick Williams    max: 1024,
20*d4430278SPatrick Williams    description: 'Maximum post code file size per cycle',
21*d4430278SPatrick Williams    value: 512,
22*d4430278SPatrick Williams)
23*d4430278SPatrick Williamsoption(
24*d4430278SPatrick Williams    'postcode-display-path',
25*d4430278SPatrick Williams    type: 'string',
26*d4430278SPatrick Williams    description: 'The sys path for postcode display on debug card',
27*d4430278SPatrick Williams)
28