mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
00f17c4de9
Signed-off-by: Christoph Willing <chris.willing@linux.com>
12 lines
400 B
Text
12 lines
400 B
Text
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
|
|
|