Alec Thilenius | f79f52b | 2017-12-22 12:10:17 -0700 | [diff] [blame] | 1 | option( |
| 2 | 'arch', |
| 3 | type : 'combo', |
| 4 | value: 'x86', |
Gregory Meinke | 1c68315 | 2018-09-11 13:21:20 -0600 | [diff] [blame] | 5 | choices: ['x86', 'x86_64', 'amd64', 'arm', 'arm64'], |
Alec Thilenius | f79f52b | 2017-12-22 12:10:17 -0700 | [diff] [blame] | 6 | description: 'The target architecture.', |
| 7 | ) |
| 8 | option( |
| 9 | 'use_cros_config', |
| 10 | type: 'boolean', |
| 11 | value: 'false', |
| 12 | description: 'If set to true, cros_config will be used', |
| 13 | ) |
Raul E Rangel | c972fe0 | 2019-05-22 11:05:31 -0600 | [diff] [blame] | 14 | |
| 15 | option( |
Jack Rosenthal | 24fea5c | 2020-10-20 09:51:15 -0600 | [diff] [blame] | 16 | '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 | |
| 22 | option( |
Raul E Rangel | c972fe0 | 2019-05-22 11:05:31 -0600 | [diff] [blame] | 23 | 'cros_config_data_src', |
| 24 | type: 'string', |
| 25 | description: 'cros_config_data source file', |
| 26 | ) |
Jack Rosenthal | 8180e5f | 2020-04-30 10:50:42 -0600 | [diff] [blame] | 27 | |
| 28 | option( |
| 29 | 'platform_intf', |
| 30 | type: 'string', |
| 31 | description: 'If set to a non-empty string, compile for just this platform.', |
| 32 | ) |