generated from hsbasu/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
85 lines (85 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
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
option('logo',
type: 'string',
value: '',
description: 'Full path for logo used by boot splash plugin (if empty, uses a fallback logo)',
)
option('background-color',
type: 'string',
value: '0x5d5950',
description: 'Background color used by boot splash plugins',
)
option('background-start-color-stop',
type: 'string',
value: '0x807c71',
description: 'First color stop in background gradients used by boot splash plugins',
)
option('background-end-color-stop',
type: 'string',
value: '0x3a362f',
description: 'Last color end in background gradients used by boot splash plugins',
)
option('release-file',
type: 'string',
value: '/etc/system-release',
description: 'Release file to use to detect distribution',
)
option('runstatedir',
type: 'string',
value: '/run',
description: 'runstatedir',
)
option('boot-tty',
type: 'string',
value: '/dev/tty1',
description: 'TTY to use in boot mode',
)
option('shutdown-tty',
type: 'string',
value: '/dev/tty63',
description: 'TTY to use in shutdown mode',
)
option('tracing',
type: 'boolean',
value: true,
description: 'Build with verbose debug tracing spew',
)
option('upstart-monitoring',
type: 'boolean',
value: false,
description: 'Listen for messages on the Upstart D-Bus interface',
)
option('systemd-integration',
type: 'boolean',
value: true,
description: 'Coordinate boot up with systemd',
)
option('udev',
type: 'feature',
value: 'auto',
description: 'Build with udev support',
)
option('pango',
type: 'feature',
value: 'enabled',
description: 'Build with pango support (if enabled, used for encryption prompts)',
)
option('freetype',
type: 'feature',
value: 'enabled',
description: 'Build with freetype support (if enabled, used for encryption prompts)',
)
option('gtk',
type: 'feature',
value: 'enabled',
description: 'Build with GTK support (if disabled, there is no X11 support)',
)
option('drm',
type: 'boolean',
value: true,
description: 'Build with drm kms support',
)
option('docs',
type: 'boolean',
value: true,
description: 'Build documentation',
)