-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmeson.options
More file actions
88 lines (75 loc) · 1.52 KB
/
meson.options
File metadata and controls
88 lines (75 loc) · 1.52 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
option(
'bashcompletiondir',
type: 'string',
description: 'bash completion directory',
)
option(
'systemdsystemunitdir',
type: 'string',
description: 'systemd system unit directory',
)
option(
'sysusersdir',
type: 'string',
description: 'systemd-sysusers directory',
)
option(
'udevrulesdir',
type: 'string',
description: 'udev rules directory',
)
option(
'dracut',
type: 'feature',
value: 'auto',
description: 'Enable dracut support',
)
option(
'dracutmodulesdir',
type: 'string',
description: 'dracut modules directory',
)
option(
'initramfs-tools',
type: 'feature',
value: 'auto',
description: 'Enable initramfs-tools support',
)
option(
'initramfstoolsdir',
type: 'string',
description: 'initramfs-tools directory',
)
option(
'mkinitcpio',
type: 'feature',
value: 'auto',
description: 'Enable mkinitcpio support',
)
option(
'mkinitcpiodir',
type: 'string',
description: 'mkinitcpio directory',
)
option(
'waylandsessionsdir',
type: 'string',
description: 'wayland-sessions directory',
)
option(
'pam',
type: 'boolean',
value: true,
description: 'Install the default vtty PAM stack',
)
option(
'pamconfdir',
type: 'string',
description: 'PAM configuration directory',
)
option(
'cagebinaryname',
type: 'string',
value: 'cage',
description: 'Name of the cage binary. Usually it is "cage", but some distributions might want to make a "cage-minimal" or something that links against a build of wlroots with no gl/vulkan renderers for smaller initrds.',
)