diff options
author | Christoph Willing <chris.willing@linux.com> | 2018-07-10 09:05:23 +1000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-07-14 06:55:52 +0700 |
commit | 00f17c4de9a2e01cd8d699703e9b56e2fd618427 (patch) | |
tree | 0e20bddb37e667d5ffc3ad690275d141bd380e84 /development/dkms/README | |
parent | 79d4ae2349af13f4cb4c3a2d83bee81bdcb37102 (diff) | |
download | slackbuilds-00f17c4de9a2e01cd8d699703e9b56e2fd618427.tar.gz |
development/dkms: Updated for version 2.6.1 + new maintainer
Signed-off-by: Christoph Willing <chris.willing@linux.com>
Diffstat (limited to 'development/dkms/README')
-rw-r--r-- | development/dkms/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/development/dkms/README b/development/dkms/README index baf8553d25..56098a14a0 100644 --- a/development/dkms/README +++ b/development/dkms/README @@ -1 +1,12 @@ Helper script for creating kernel modules. + +To facilitate automatic rebuilding of modules at reboot after +installation of a new kernel version, the following code should be +added near the beginning of the file /etc/rc.d/rc.modules.local + +# Enable DKMS module rebuilding +if [ -x /usr/lib/dkms/dkms_autoinstaller ]; then + echo "Running DKMS autoinstaller" + /usr/lib/dkms/dkms_autoinstaller start +fi + |