]> git.ipfire.org Git - thirdparty/plymouth.git/blame - meson_options.txt
Merge branch 'fixmeson' into 'main'
[thirdparty/plymouth.git] / meson_options.txt
CommitLineData
95d3e3bb
NDG
1option('logo',
2 type: 'string',
3 value: '',
4 description: 'Full path for logo used by boot splash plugin (if empty, uses a fallback logo)',
5)
6option('background-color',
7 type: 'string',
8 value: '0x5d5950',
9 description: 'Background color used by boot splash plugins',
10)
11option('background-start-color-stop',
12 type: 'string',
13 value: '0x807c71',
14 description: 'First color stop in background gradients used by boot splash plugins',
15)
16option('background-end-color-stop',
17 type: 'string',
18 value: '0x3a362f',
19 description: 'Last color end in background gradients used by boot splash plugins',
20)
21option('release-file',
22 type: 'string',
23 value: '/etc/system-release',
24 description: 'Release file to use to detect distribution',
25)
26option('runstatedir',
27 type: 'string',
28 value: '/run',
29 description: 'runstatedir',
30)
31option('boot-tty',
32 type: 'string',
33 value: '/dev/tty1',
34 description: 'TTY to use in boot mode',
35)
36option('shutdown-tty',
37 type: 'string',
38 value: '/dev/tty63',
39 description: 'TTY to use in shutdown mode',
40)
41option('tracing',
42 type: 'boolean',
43 value: true,
44 description: 'Build with verbose debug tracing spew',
45)
46option('upstart-monitoring',
47 type: 'boolean',
48 value: false,
49 description: 'Listen for messages on the Upstart D-Bus interface',
50)
51option('systemd-integration',
52 type: 'boolean',
53 value: true,
54 description: 'Coordinate boot up with systemd',
55)
56option('udev',
57 type: 'feature',
58 value: 'auto',
59 description: 'Build with udev support',
60)
61option('pango',
62 type: 'feature',
63 value: 'enabled',
64 description: 'Build with pango support (if enabled, used for encryption prompts)',
65)
66option('freetype',
67 type: 'feature',
68 value: 'enabled',
69 description: 'Build with freetype support (if enabled, used for encryption prompts)',
70)
71option('gtk',
72 type: 'feature',
73 value: 'enabled',
74 description: 'Build with GTK support (if disabled, there is no X11 support)',
75)
76option('drm',
77 type: 'boolean',
78 value: true,
79 description: 'Build with drm kms support',
80)
81option('docs',
82 type: 'boolean',
83 value: true,
84 description: 'Build documentation',
85)