-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeson_options.txt
25 lines (22 loc) · 1.13 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- mode: meson -*-
# SPDX-License-Identifier: LGPL-2.1+
option('tpm', type : 'boolean',
description : 'TPM should be used to log events and extend the registers')
option('gnu-efi', type : 'combo', choices : ['auto', 'true', 'false'],
description : 'gnu-efi support for sd-boot')
option('efi-cc', type : 'array',
description : 'the compiler to use for EFI modules')
option('efi-ld', type : 'string',
description : 'the linker to use for EFI modules')
option('efi-libdir', type : 'string',
description : 'path to the EFI lib directory')
option('efi-ldsdir', type : 'string',
description : 'path to the EFI lds directory')
option('efi-includedir', type : 'string', value : '/usr/include/efi',
description : 'path to the EFI header directory')
option('tpm-pcrindex', type : 'integer', value : 8,
description : 'TPM PCR register number to use')
option('android-efi', type : 'string', value : '/android.efi',
description : 'Path to android.efi binary for booting Android images (optional)')
option('tests', type : 'combo', choices : ['true', 'false'],
description : 'enable tests')