-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathdkms_framework.conf.in
More file actions
77 lines (61 loc) · 3.04 KB
/
dkms_framework.conf.in
File metadata and controls
77 lines (61 loc) · 3.04 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
# This configuration file modifies the behavior of DKMS (Dynamic Kernel Module
# Support) and is sourced in by DKMS every time it is run.
# Additionally to /etc/dkms/framework.conf, any file matching the glob
# /etc/dkms/framework.conf.d/*.conf will be loaded as well.
# Source Tree Location (default: /usr/src):
# source_tree="/usr/src"
# DKMS Tree Location (default: /var/lib/dkms):
# dkms_tree="/var/lib/dkms"
# Install Tree Location (default: @MODDIR@):
# install_tree="@MODDIR@"
# Temporary folder Location (default: /tmp):
# tmp_location="/tmp"
# Verbosity setting, will be active if set to a non-null value:
# verbose=""
# This creates symlinks from the install_tree into the dkms_tree instead of
# copying the modules. This preserves some space on the costs of being less
# safe. Symlinking will be active if set to a non-null value:
# symlink_modules=""
# Automatic installation and upgrade for all installed kernels if set to a
# non-null value:
# autoinstall_all_kernels=""
# Location of the sign-file kernel binary. $kernelver can be used in path to
# represent the target kernel version. (default: depends on distribution):
# sign_file="/path/to/sign-file"
# Whether to try to sign modules. May be set to "true", "false", or
# "not_in_chroot". (default: not_in_chroot)
# try_sign_modules=not_in_chroot
# Location of the key and certificate files used for Secure boot. $kernelver
# can be used in path to represent the target kernel version.
#
# NOTE: If any of the files specified by `mok_signing_key` and `mok_certificate`
# are non-existent, dkms will re-create both files.
#
# mok_signing_key can also be a "pkcs11:..." string for PKCS#11 engine, as
# long as the sign_file program supports it.
# (default: /var/lib/dkms):
# mok_signing_key=/var/lib/dkms/mok.key
# mok_certificate=/var/lib/dkms/mok.pub
# Automatically modprobe the built modules upon successful installation:
# modprobe_on_install="true"
# Limit the number of jobs run in parallel (default is the number of CPUs)
# parallel_jobs=2
# Compression settings DKMS uses when compressing modules. The defaults are
# used, for reasonable compression times. One might instead wish to use maximum
# compression, at the expense of speed when compressing.
# compress_gzip_opts="-6"
# compress_xz_opts="--check=crc32 --lzma2=dict=1MiB -6"
# compress_zstd_opts="-q --rm -T0 -3"
# Path to a file containing environment variables to be sourced by DKMS.
# This file will be sourced for the build command. $kernelver can be used in
# the environment file to represent the target kernel version.
# build_environment=""
# Command to run at the end of every DKMS transaction, for example after a new
# kernel has been installed on the system and all modules have been successfully
# built and installed.
# The command listed is executed if set to any non null value. $kernelver can be
# used in path to represent the target kernel version.
# post_transaction=""
# In common.postinst, if en error is encountered while building a module for
# a kernel, continue on to the next kernel if true, otherwise stop.
# continue_on_error="true"