aboutsummaryrefslogtreecommitdiff
path: root/development/dkms/README
blob: b1295403af5d83ce57b71e8d3f66239c88f6ebbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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

To update the nvidia binary module, see README.nvidia