-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
32 lines (27 loc) · 2.06 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
26
27
28
29
30
31
32
# Bootloader to use
option('with-bootloader', type: 'combo', choices:
['systemd-boot', 'shim-systemd-boot'], value: 'shim-systemd-boot')
option('with-grub2-backend', type: 'boolean', value: true,
description: 'Enables grub2 backend support.')
# Currently we'll only look for gnu-efi when using shim-systemd-boot
option('with-gnu-efi', type: 'string', description: 'Location of the gnu-efi headers')
option('with-efi-var', type: 'string', description: 'Location of the efivar headers')
# Kernel configuration
option('with-kernel-conf-dir', type: 'string', description: 'System kernel configuration directory')
option('with-kernel-dir', type: 'string', description: 'System kernel directory')
option('with-kernel-modules-dir', type: 'string', description: 'System kernel modules directory')
option('with-kernel-namespace', type: 'string', description: 'Identifier for boot assets', value: 'org.clearlinux')
option('with-kernel-vendor-conf-dir', type: 'string', description: 'Vendor kernel configuration directory')
# Initrd options
option('with-initrd-dir', type: 'string', description: 'Directory containing freestanding initrds')
# Users initrd options
option('with-user-initrd-dir', type: 'string', description: 'Directory containing users freestanding initrds')
# General options
option('with-boot-dir', type: 'string', description: 'System boot directory', value: '/boot')
option('with-vendor-prefix', type: 'string', description: 'Prefix for files created by clr-boot-manager', value: 'generic-linux-os')
option('with-systemd-system-unit-dir', type: 'string', description: 'systemd unit directory')
option('bash_completions', type: 'boolean', value: true, description: 'Install bash shell completions.')
option('zsh_completions', type: 'boolean', value: true, description: 'Install zsh shell completions.')
option('with-bash-completions-dir', type: 'string', description: 'System bash completions directory')
option('with-zsh-completions-dir', type: 'string', description: 'System zsh completions directory')
option('with-uefi-entry-label', type: 'string', description: 'uefi entry label')