xref: /openbmc/estoraged/meson.options (revision 30bfe8efd252bee31f919d61bbe94af6619fb39b)
1option(
2    'erase_min_geometry',
3    type: 'integer',
4    min: 0,
5    max: 18446744073709551615,
6    value: 10,
7    description: 'The min size allowed in bytes, used by the geometry check',
8)
9option(
10    'erase_max_geometry',
11    type: 'integer',
12    min: 0,
13    max: 18446744073709551615,
14    value: 5368709120,
15    description: 'the max size allowed in bytes, used by the geometry check',
16)
17option(
18    'highspeed_parts',
19    type: 'array',
20    value: [],
21    description: 'A list of part number to enable Highspeed Timing modes for the MMC',
22)
23option('tests', type: 'feature', value: 'enabled', description: 'Build tests')
24