blob: 74c645f3e3ebc9fb97256c97bc2392d78c6d7334 [file] [log] [blame]
Patrick Williams9c2e8362025-02-01 08:38:10 -05001option(
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)
Willy Tu30bfe8e2025-12-30 19:47:52 +000017option(
18 'highspeed_parts',
19 type: 'array',
20 value: [],
21 description: 'A list of part number to enable Highspeed Timing modes for the MMC',
22)
Patrick Williams9c2e8362025-02-01 08:38:10 -050023option('tests', type: 'feature', value: 'enabled', description: 'Build tests')