blob: 5b3883cebecbd4e0b64a192a8b2c86fc804afcba [file] [log] [blame]
Alec Thileniusf79f52b2017-12-22 12:10:17 -07001option(
2 'arch',
3 type : 'combo',
4 value: 'x86',
Gregory Meinke1c683152018-09-11 13:21:20 -06005 choices: ['x86', 'x86_64', 'amd64', 'arm', 'arm64'],
Alec Thileniusf79f52b2017-12-22 12:10:17 -07006 description: 'The target architecture.',
7)
8option(
9 'use_cros_config',
10 type: 'boolean',
11 value: 'false',
12 description: 'If set to true, cros_config will be used',
13)
Raul E Rangelc972fe02019-05-22 11:05:31 -060014
15option(
Jack Rosenthal24fea5c2020-10-20 09:51:15 -060016 'use_vpd_file_cache',
17 type: 'boolean',
18 value: 'false',
19 description: 'If set to true, enable usage of the legacy vpd_get_value command to read VPD values. Otherwise, read from sysfs.',
20)
21
22option(
Raul E Rangelc972fe02019-05-22 11:05:31 -060023 'cros_config_data_src',
24 type: 'string',
25 description: 'cros_config_data source file',
26)
Jack Rosenthal8180e5f2020-04-30 10:50:42 -060027
28option(
29 'platform_intf',
30 type: 'string',
31 description: 'If set to a non-empty string, compile for just this platform.',
32)