]> git.ipfire.org Git - thirdparty/systemd.git/blob - meson_options.txt
Merge pull request #31515 from keszybz/small-cleanups-after-review-of-stable-batch
[thirdparty/systemd.git] / meson_options.txt
1 # -*- mode: meson -*-
2 # SPDX-License-Identifier: LGPL-2.1-or-later
3
4 option('version-tag', type : 'string',
5 description : 'set the extended version string (defaults to project version)')
6 option('shared-lib-tag', type : 'string',
7 description : 'override the private shared library version tag (defaults to project version)')
8 option('vcs-tag', type : 'boolean', value : true,
9 description : 'append current git commit to version output when git information is available')
10
11 option('mode', type : 'combo', choices : ['developer', 'release'],
12 description : 'autoenable features suitable for systemd development/release builds')
13
14 option('split-usr', type : 'combo', choices : ['auto', 'true', 'false'], deprecated: true,
15 description : '''This option is deprecated and will be removed in a future release''')
16 option('split-bin', type : 'combo', choices : ['auto', 'true', 'false'],
17 description : '''sbin is not a symlink to bin''')
18 option('rootlibdir', type : 'string', deprecated: true,
19 description : '''This option is deprecated and will be removed in a future release''')
20 option('rootprefix', type : 'string', deprecated: true,
21 description : '''This option is deprecated and will be removed in a future release''')
22 option('link-udev-shared', type : 'boolean',
23 description : 'link systemd-udevd and its helpers to libsystemd-shared.so')
24 option('link-systemctl-shared', type: 'boolean',
25 description : 'link systemctl against libsystemd-shared.so')
26 option('link-networkd-shared', type: 'boolean',
27 description : 'link systemd-networkd and its helpers to libsystemd-shared.so')
28 option('link-timesyncd-shared', type: 'boolean',
29 description : 'link systemd-timesyncd and its helpers to libsystemd-shared.so')
30 option('link-journalctl-shared', type: 'boolean',
31 description : 'link journalctl against libsystemd-shared.so')
32 option('link-boot-shared', type: 'boolean',
33 description : 'link bootctl and systemd-bless-boot against libsystemd-shared.so')
34 option('link-portabled-shared', type: 'boolean',
35 description : 'link systemd-portabled and its helpers to libsystemd-shared.so')
36 option('first-boot-full-preset', type: 'boolean', value: false,
37 description : 'during first boot, do full preset-all (default will be changed to true later)')
38
39 option('static-libsystemd', type : 'combo',
40 choices : ['false', 'true', 'pic', 'no-pic'],
41 description : '''install a static library for libsystemd''')
42 option('static-libudev', type : 'combo',
43 choices : ['false', 'true', 'pic', 'no-pic'],
44 description : 'install a static library for libudev')
45 option('standalone-binaries', type : 'boolean', value : false,
46 description : 'also build standalone versions of supported binaries')
47
48 option('sysvinit-path', type : 'string', value : '/etc/init.d',
49 description : 'the directory where the SysV init scripts are located')
50 option('sysvrcnd-path', type : 'string', value : '/etc/rc.d',
51 description : 'the base directory for SysV rcN.d directories')
52 option('rc-local', type : 'string',
53 value : '/etc/rc.local')
54 option('initrd', type : 'boolean',
55 description : 'install services for use when running systemd in initrd')
56 option('compat-mutable-uid-boundaries', type : 'boolean', value : false,
57 description : 'look at uid boundaries in /etc/login.defs for compatibility')
58 option('nscd', type : 'boolean',
59 description : 'build support for flushing of the nscd caches')
60
61 option('quotaon-path', type : 'string', description : 'path to quotaon')
62 option('quotacheck-path', type : 'string', description : 'path to quotacheck')
63 option('kmod-path', type : 'string', description : 'path to kmod')
64 option('kexec-path', type : 'string', description : 'path to kexec')
65 option('sulogin-path', type : 'string', description : 'path to sulogin')
66 option('mount-path', type : 'string', description : 'path to mount')
67 option('umount-path', type : 'string', description : 'path to umount')
68 option('loadkeys-path', type : 'string', description : 'path to loadkeys')
69 option('setfont-path', type : 'string', description : 'path to setfont')
70 option('nologin-path', type : 'string', description : 'path to nologin')
71
72 option('debug-shell', type : 'string', value : '/usr/bin/sh',
73 description : 'path to debug shell binary')
74 option('debug-tty', type : 'string', value : '/dev/tty9',
75 description : 'specify the tty device for debug shell')
76 option('debug-extra', type : 'array', choices : ['hashmap', 'mmap-cache', 'siphash'], value : [],
77 description : 'enable extra debugging')
78 option('memory-accounting-default', type : 'boolean',
79 description : 'enable MemoryAccounting= by default')
80 option('bump-proc-sys-fs-file-max', type : 'boolean',
81 description : 'bump /proc/sys/fs/file-max to LONG_MAX')
82 option('bump-proc-sys-fs-nr-open', type : 'boolean',
83 description : 'bump /proc/sys/fs/nr_open to INT_MAX')
84 option('log-trace', type : 'boolean', value : false,
85 description : 'enable low level debug logging')
86 option('user-path', type : 'string',
87 description : '$PATH to use for user sessions')
88
89 option('utmp', type : 'boolean',
90 description : 'support for utmp/wtmp log handling')
91 option('hibernate', type : 'boolean',
92 description : 'support for hibernation')
93 option('ldconfig', type : 'boolean',
94 description : 'support for dynamic linker cache creation')
95 option('resolve', type : 'boolean',
96 description : 'systemd-resolved stack')
97 option('efi', type : 'boolean',
98 description : 'enable EFI support')
99 option('tpm', type : 'boolean',
100 description : 'TPM should be used to log events and extend the registers')
101 option('environment-d', type : 'boolean',
102 description : 'support for environment.d')
103 option('binfmt', type : 'boolean',
104 description : 'support for custom binary formats')
105 option('repart', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
106 description : 'install the systemd-repart tool')
107 option('sysupdate', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
108 description : 'install the systemd-sysupdate tool')
109 option('coredump', type : 'boolean',
110 description : 'install the coredump handler')
111 option('pstore', type : 'boolean',
112 description : 'install the pstore archival tool')
113 option('oomd', type : 'boolean',
114 description : 'install the userspace oom killer')
115 option('logind', type : 'boolean',
116 description : 'install the systemd-logind stack')
117 option('hostnamed', type : 'boolean',
118 description : 'install the systemd-hostnamed stack')
119 option('localed', type : 'boolean',
120 description : 'install the systemd-localed stack')
121 option('machined', type : 'boolean',
122 description : 'install the systemd-machined stack')
123 option('portabled', type : 'boolean',
124 description : 'install the systemd-portabled stack')
125 option('sysext', type : 'boolean',
126 description : 'install the systemd-sysext stack')
127 option('userdb', type : 'boolean',
128 description : 'install the systemd-userdbd stack')
129 option('homed', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
130 description : 'install the systemd-homed stack')
131 option('networkd', type : 'boolean',
132 description : 'install the systemd-networkd stack')
133 option('default-network', type : 'boolean', value : false,
134 description : 'install default .network files')
135 option('timedated', type : 'boolean',
136 description : 'install the systemd-timedated daemon')
137 option('timesyncd', type : 'boolean',
138 description : 'install the systemd-timesyncd daemon')
139 option('remote', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
140 description : 'support for "journal over the network"')
141 option('create-log-dirs', type : 'boolean',
142 description : 'create /var/log/journal{,/remote}')
143 option('nss-myhostname', type : 'boolean',
144 description : 'install nss-myhostname module')
145 option('nss-mymachines', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
146 description : 'install nss-mymachines module')
147 option('nss-resolve', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
148 description : 'install nss-resolve module')
149 option('nss-systemd', type : 'boolean',
150 description : 'install nss-systemd module')
151 option('firstboot', type : 'boolean',
152 description : 'support for firstboot mechanism')
153 option('randomseed', type : 'boolean',
154 description : 'support for restoring random seed')
155 option('backlight', type : 'boolean',
156 description : 'support for restoring backlight state')
157 option('vconsole', type : 'boolean',
158 description : 'support for vconsole configuration')
159 option('vmspawn', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
160 description : 'install the systemd-vmspawn tool')
161 option('quotacheck', type : 'boolean',
162 description : 'support for the quotacheck tools')
163 option('sysusers', type : 'boolean',
164 description : 'support for the sysusers configuration')
165 option('storagetm', type : 'boolean',
166 description : 'support for Storage Target Mode')
167 option('tmpfiles', type : 'boolean',
168 description : 'support for tmpfiles.d')
169 option('importd', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
170 description : 'install the systemd-importd daemon')
171 option('hwdb', type : 'boolean',
172 description : 'support for the hardware database')
173 option('rfkill', type : 'boolean',
174 description : 'support for the rfkill tools')
175 option('xdg-autostart', type : 'boolean',
176 description : 'install the xdg-autostart-generator and unit')
177 option('man', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
178 value : 'disabled',
179 description : 'build and install man pages')
180 option('html', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
181 value : 'disabled',
182 description : 'build and install html pages')
183 option('translations', type : 'boolean', value : true,
184 description : 'build and install translations')
185
186 option('certificate-root', type : 'string', value : '/etc/ssl',
187 description : 'the prefix for TLS certificates')
188 option('dbuspolicydir', type : 'string',
189 description : 'D-Bus policy directory')
190 option('dbussessionservicedir', type : 'string',
191 description : 'D-Bus session service directory')
192 option('dbussystemservicedir', type : 'string',
193 description : 'D-Bus system service directory')
194 option('dbus-interfaces-dir', type : 'string',
195 description : 'export D-Bus introspection XML as standalone files')
196 option('default-timeout-sec', type : 'integer', value : 90,
197 description : 'default timeout for system unit start/stop')
198 option('default-user-timeout-sec', type : 'integer', value : 90,
199 description : 'default timeout for user unit start/stop')
200 option('pkgconfigdatadir', type : 'string', value : '',
201 description : 'directory for arch-independent pkg-config files')
202 option('pkgconfiglibdir', type : 'string', value : '',
203 description : 'directory for standard pkg-config files')
204 option('xinitrcdir', type : 'string', value : '',
205 description : 'directory for xinitrc files')
206 option('rpmmacrosdir', type : 'string', value : 'lib/rpm/macros.d',
207 description : 'directory for rpm macros ["no" disables]')
208 option('update-helper-user-timeout-sec', type : 'integer', value : 15,
209 description : 'timeout for user manager package operations')
210 option('pamlibdir', type : 'string',
211 description : 'directory for PAM modules')
212 option('pamconfdir', type : 'string',
213 description : 'directory for PAM configuration ["no" disables]')
214 option('sshconfdir', type : 'string',
215 description : 'directory for SSH client configuration ["no" disables]')
216 option('sshdconfdir', type : 'string',
217 description : 'directory for SSH server configuration ["no" disables]')
218 option('libcryptsetup-plugins-dir', type : 'string',
219 description : 'directory for libcryptsetup plugins')
220 option('docdir', type : 'string',
221 description : 'documentation directory')
222 option('install-sysconfdir', type : 'combo', choices : ['true', 'no-samples', 'false'], value : 'true',
223 description : 'install configuration files and directories')
224 option('configfiledir', type : 'string', value : '',
225 description : 'directory for configuration files')
226
227 option('fallback-hostname', type : 'string', value : 'localhost',
228 description : 'the hostname used if none configured')
229 option('default-hierarchy', type : 'combo',
230 choices : ['legacy', 'hybrid', 'unified'], deprecated : true,
231 description : '''This option is deprecated and will be removed in a future release''')
232 option('extra-net-naming-schemes', type : 'string',
233 description : 'comma-separated list of extra net.naming-scheme= definitions')
234 option('default-net-naming-scheme', type : 'string', value : 'latest',
235 description : 'default net.naming-scheme= value')
236 option('status-unit-format-default', type : 'combo',
237 choices : ['auto', 'description', 'name', 'combined'],
238 description : 'use unit name or description in messages by default')
239 option('time-epoch', type : 'integer', value : 0,
240 description : 'time epoch for time clients')
241 option('clock-valid-range-usec-max', type : 'integer', value : 473364000000000, # 15 years
242 description : 'maximum value in microseconds for the difference between RTC and epoch, exceeding which is considered an RTC error ["0" disables]')
243 option('default-user-shell', type : 'string', value : '/usr/bin/bash',
244 description : 'default interactive shell')
245
246 option('system-alloc-uid-min', type : 'integer', value : 0,
247 description : 'minimum system UID used when allocating')
248 option('system-alloc-gid-min', type : 'integer', value : 0,
249 description : 'minimum system GID used when allocating')
250 option('system-uid-max', type : 'integer', value : 0,
251 description : 'maximum system UID')
252 option('system-gid-max', type : 'integer', value : 0,
253 description : 'maximum system GID')
254 option('dynamic-uid-min', type : 'integer', value : 0x0000EF00,
255 description : 'minimum dynamic UID')
256 option('dynamic-uid-max', type : 'integer', value : 0x0000FFEF,
257 description : 'maximum dynamic UID')
258 option('container-uid-base-min', type : 'integer', value : 0x00080000,
259 description : 'minimum container UID base')
260 option('container-uid-base-max', type : 'integer', value : 0x6FFF0000,
261 description : 'maximum container UID base')
262 option('adm-group', type : 'boolean',
263 description : 'the ACL for adm group should be added')
264 option('wheel-group', type : 'boolean',
265 description : 'the ACL for wheel group should be added')
266 option('nobody-user', type : 'string',
267 description : 'The name of the nobody user (the one with UID 65534)',
268 value : 'nobody')
269 option('nobody-group', type : 'string',
270 description : 'The name of the nobody group (the one with GID 65534)',
271 value : 'nobody')
272 option('adm-gid', type : 'integer', value : 0,
273 description : 'soft-static allocation for the "adm" group')
274 option('audio-gid', type : 'integer', value : 0,
275 description : 'soft-static allocation for the "audio" group')
276 option('cdrom-gid', type : 'integer', value : 0,
277 description : 'soft-static allocation for the "cdrom" group')
278 option('dialout-gid', type : 'integer', value : 0,
279 description : 'soft-static allocation for the "dialout" group')
280 option('disk-gid', type : 'integer', value : 0,
281 description : 'soft-static allocation for the "disk" group')
282 option('input-gid', type : 'integer', value : 0,
283 description : 'soft-static allocation for the "input" group')
284 option('kmem-gid', type : 'integer', value : 0,
285 description : 'soft-static allocation for the "kmem" group')
286 option('kvm-gid', type : 'integer', value : 0,
287 description : 'soft-static allocation for the "kvm" group')
288 option('lp-gid', type : 'integer', value : 0,
289 description : 'soft-static allocation for the "lp" group')
290 option('render-gid', type : 'integer', value : 0,
291 description : 'soft-static allocation for the "render" group')
292 option('sgx-gid', type : 'integer', value : 0,
293 description : 'soft-static allocation for the "sgx" group')
294 option('tape-gid', type : 'integer', value : 0,
295 description : 'soft-static allocation for the "tape" group')
296 option('tty-gid', type : 'integer', value : 5,
297 description : 'the numeric GID of the "tty" group')
298 option('users-gid', type : 'integer', value : 0,
299 description : 'soft-static allocation for the "users" group')
300 option('utmp-gid', type : 'integer', value : 0,
301 description : 'soft-static allocation for the "utmp" group')
302 option('video-gid', type : 'integer', value : 0,
303 description : 'soft-static allocation for the "video" group')
304 option('wheel-gid', type : 'integer', value : 0,
305 description : 'soft-static allocation for the "wheel" group')
306 option('systemd-journal-gid', type : 'integer', value : 0,
307 description : 'soft-static allocation for the systemd-journal group')
308 option('systemd-network-uid', type : 'integer', value : 0,
309 description : 'soft-static allocation for the systemd-network user')
310 option('systemd-resolve-uid', type : 'integer', value : 0,
311 description : 'soft-static allocation for the systemd-resolve user')
312 option('systemd-timesync-uid', type : 'integer', value : 0,
313 description : 'soft-static allocation for the systemd-timesync user')
314
315 option('dev-kvm-mode', type : 'string', value : '0666',
316 description : '/dev/kvm access mode')
317 option('group-render-mode', type : 'string', value : '0666',
318 description : 'Access mode for devices owned by render group (e.g. /dev/dri/renderD*, /dev/kfd).')
319 option('default-kill-user-processes', type : 'boolean',
320 description : 'the default value for KillUserProcesses= setting')
321 option('gshadow', type : 'boolean',
322 description : 'support for shadow group')
323 option('default-locale', type : 'string', value : 'C.UTF-8',
324 description : 'default locale used when /etc/locale.conf does not exist')
325 option('nspawn-locale', type : 'string', value : 'C.UTF-8',
326 description : 'default locale used by systemd-nspawn when executing commands in a container')
327 option('default-keymap', type : 'string', value : 'us',
328 description : 'default keymap used when populating /etc/vconsole.conf')
329 option('localegen-path', type : 'string', value : '',
330 description : 'absolute path to the locale-gen binary in case the system is using locale-gen')
331 option('service-watchdog', type : 'string', value : '3min',
332 description : 'default watchdog setting for systemd services')
333
334 option('default-dnssec', type : 'combo',
335 description : 'default DNSSEC mode',
336 choices : ['yes', 'allow-downgrade', 'no'],
337 value : 'allow-downgrade')
338 option('default-dns-over-tls', type : 'combo',
339 description : 'default DNS-over-TLS mode',
340 choices : ['yes', 'opportunistic', 'no'],
341 value : 'no')
342 option('default-mdns', type : 'combo',
343 choices : ['yes', 'resolve', 'no'],
344 description : 'default MulticastDNS mode',
345 value : 'yes')
346 option('default-llmnr', type : 'combo',
347 choices : ['yes', 'resolve', 'no'],
348 description : 'default LLMNR mode',
349 value : 'yes')
350 option('dns-over-tls', type : 'combo', choices : ['auto', 'gnutls', 'openssl', 'true', 'false'],
351 description : 'DNS-over-TLS support')
352 option('dns-servers', type : 'string',
353 description : 'space-separated list of default DNS servers',
354 value : '1.1.1.1#cloudflare-dns.com 8.8.8.8#dns.google 1.0.0.1#cloudflare-dns.com 8.8.4.4#dns.google 2606:4700:4700::1111#cloudflare-dns.com 2001:4860:4860::8888#dns.google 2606:4700:4700::1001#cloudflare-dns.com 2001:4860:4860::8844#dns.google')
355 option('ntp-servers', type : 'string',
356 description : 'space-separated list of default NTP servers',
357 value : 'time1.google.com time2.google.com time3.google.com time4.google.com')
358 option('support-url', type : 'string',
359 description : 'the support URL to show in catalog entries included in systemd',
360 value : 'https://lists.freedesktop.org/mailman/listinfo/systemd-devel')
361 option('www-target', type : 'string',
362 description : 'the address and dir to upload docs too',
363 value : 'www.freedesktop.org:/srv/www.freedesktop.org/www/software/systemd')
364
365 option('seccomp', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
366 description : 'SECCOMP support')
367 option('selinux', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
368 description : 'SELinux support')
369 option('apparmor', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
370 description : 'AppArmor support')
371 option('smack', type : 'boolean',
372 description : 'SMACK support')
373 option('smack-run-label', type : 'string',
374 description : 'run systemd --system itself with a specific SMACK label')
375 option('smack-default-process-label', type : 'string',
376 description : 'default SMACK label for executed processes')
377 option('polkit', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
378 description : 'polkit support')
379 option('ima', type : 'boolean',
380 description : 'IMA support')
381
382 option('acl', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
383 description : 'libacl support')
384 option('audit', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
385 description : 'libaudit support')
386 option('blkid', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
387 description : 'libblkid support')
388 option('fdisk', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
389 description : 'libfdisk support')
390 option('kmod', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
391 description : 'support for loadable modules')
392 option('xenctrl', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
393 description : 'support for Xen kexec')
394 option('pam', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
395 description : 'PAM support')
396 option('passwdqc', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
397 description : 'libpasswdqc support')
398 option('pwquality', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
399 description : 'libpwquality support')
400 option('microhttpd', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
401 description : 'libµhttpd support')
402 option('libcryptsetup', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
403 description : 'libcryptsetup support')
404 option('libcryptsetup-plugins', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
405 description : 'libcryptsetup LUKS2 external token handlers support (plugins)')
406 option('libcurl', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
407 description : 'libcurl support')
408 option('idn', type : 'boolean',
409 description : 'use IDN when printing hostnames')
410 option('libidn2', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
411 description : 'libidn2 support')
412 option('libidn', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
413 description : 'libidn support')
414 option('libiptc', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
415 description : 'libiptc support')
416 option('qrencode', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
417 description : 'libqrencode support')
418 option('gcrypt', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
419 description : 'gcrypt support')
420 option('gnutls', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
421 description : 'gnutls support')
422 option('openssl', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
423 description : 'openssl support')
424 option('cryptolib', type : 'combo', choices : ['auto', 'openssl', 'gcrypt'],
425 description : 'whether to use openssl or gcrypt where both are supported')
426 option('p11kit', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
427 description : 'p11kit support')
428 option('libfido2', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
429 description : 'FIDO2 support')
430 option('tpm2', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
431 description : 'TPM2 support')
432 option('elfutils', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
433 description : 'elfutils support')
434 option('zlib', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
435 description : 'zlib compression support')
436 option('bzip2', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
437 description : 'bzip2 compression support')
438 option('xz', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
439 description : 'xz compression support')
440 option('lz4', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
441 description : 'lz4 compression support')
442 option('zstd', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
443 description : 'zstd compression support')
444 option('default-compression', type : 'combo', choices : ['auto', 'zstd', 'lz4', 'xz'], value: 'auto',
445 description : 'default compression algorithm')
446 option('xkbcommon', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
447 description : 'xkbcommon keymap support')
448 option('pcre2', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
449 description : 'regexp matching support using pcre2')
450 option('glib', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
451 description : 'libglib support (for tests only)')
452 option('dbus', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
453 description : 'libdbus support (for tests only)')
454 option('libarchive', type : 'feature',
455 description : 'libarchive support')
456
457 option('bootloader', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
458 description : 'sd-boot/stub and userspace tools')
459 option('sbat-distro', type : 'string', value : 'auto',
460 description : 'SBAT distribution ID, e.g. fedora, or auto for autodetection')
461 option('sbat-distro-generation', type : 'integer', value : 1,
462 description : 'SBAT distribution generation')
463 option('sbat-distro-summary', type : 'string',
464 description : 'SBAT distribution summary, e.g. Fedora')
465 option('sbat-distro-pkgname', type : 'string',
466 description : 'SBAT distribution package name, e.g. systemd')
467 option('sbat-distro-version', type : 'string',
468 description : 'SBAT distribution package version, e.g. 248-7.fc34')
469 option('sbat-distro-url', type : 'string',
470 description : 'SBAT distribution URL, e.g. https://src.fedoraproject.org/rpms/systemd')
471 option('efi-color-normal', type : 'string', value : 'lightgray,black',
472 description : 'general boot loader color in "foreground,background" form, see constants from eficon.h')
473 option('efi-color-entry', type : 'string', value : 'lightgray,black',
474 description : 'boot loader color for entries')
475 option('efi-color-highlight', type : 'string', value : 'black,lightgray',
476 description : 'boot loader color for selected entries')
477 option('efi-color-edit', type : 'string', value : 'black,lightgray',
478 description : 'boot loader color for option line edit')
479
480 option('bashcompletiondir', type : 'string',
481 description : 'directory for bash completion scripts ["no" disables]')
482 option('zshcompletiondir', type : 'string',
483 description : 'directory for zsh completion scripts ["no" disables]')
484
485 option('tests', type : 'combo', choices : ['true', 'unsafe', 'false'],
486 description : 'enable extra tests with =unsafe')
487 option('slow-tests', type : 'boolean', value : false,
488 description : 'run the slow tests by default')
489 option('fuzz-tests', type : 'boolean', value : false,
490 description : 'run the fuzzer regression tests by default (with sanitizers)')
491 option('install-tests', type : 'boolean', value : false,
492 description : 'install test executables')
493 option('log-message-verification', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
494 description : 'do fake printf() calls to verify format strings')
495
496 option('ok-color', type : 'combo',
497 choices : ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan',
498 'white', 'highlight-black', 'highlight-red', 'highlight-green',
499 'highlight-yellow', 'highlight-blue', 'highlight-magenta',
500 'highlight-cyan', 'highlight-white'],
501 value : 'green',
502 description: 'color of the "OK" status message')
503 option('urlify', type : 'boolean', value : true,
504 description : 'enable pager Hyperlink ANSI sequence support')
505 option('fexecve', type : 'boolean', value : false,
506 description : 'use fexecve() to spawn children')
507
508 option('oss-fuzz', type : 'boolean', value : false,
509 description : 'build against oss-fuzz')
510 option('llvm-fuzz', type : 'boolean', value : false,
511 description : 'build against LLVM libFuzzer')
512 option('kernel-install', type: 'boolean', value: true,
513 description : 'install kernel-install and associated files')
514 option('ukify', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
515 description : 'install ukify')
516 option('analyze', type: 'boolean', value: true,
517 description : 'install systemd-analyze')
518
519 option('bpf-compiler', type : 'combo', choices : ['clang', 'gcc'],
520 description: 'compiler used to build BPF programs')
521 option('bpf-framework', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : 'disabled' },
522 description: 'build BPF programs from source code in restricted C')