summaryrefslogtreecommitdiffstats
path: root/dkms_framework.conf.in
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 07:40:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 07:40:50 +0000
commit10b5bfdee99e8161f353593ee3e85f4775b1dedc (patch)
tree958ac703fcfc692348b1564f02317e9f2ca67fd5 /dkms_framework.conf.in
parentInitial commit. (diff)
downloaddkms-10b5bfdee99e8161f353593ee3e85f4775b1dedc.tar.xz
dkms-10b5bfdee99e8161f353593ee3e85f4775b1dedc.zip
Adding upstream version 3.0.13.upstream/3.0.13upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dkms_framework.conf.in')
-rw-r--r--dkms_framework.conf.in45
1 files changed, 45 insertions, 0 deletions
diff --git a/dkms_framework.conf.in b/dkms_framework.conf.in
new file mode 100644
index 0000000..b3ea3e9
--- /dev/null
+++ b/dkms_framework.conf.in
@@ -0,0 +1,45 @@
+# This configuration file modifies the behavior of DKMS (Dynamic Kernel Module
+# Support) and is sourced in by DKMS every time it is run.
+
+# 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"
+
+# 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-existant, 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"