mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-28 10:02:43 +01:00
6 lines
136 B
Bash
6 lines
136 B
Bash
|
# A good idea whenever kernel modules are added or changed:
|
||
|
if [ -x sbin/depmod ]; then
|
||
|
/sbin/depmod -a 1> /dev/null 2> /dev/null
|
||
|
fi
|
||
|
|