You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
315 B
13 lines
315 B
3 years ago
|
#!/bin/sh
|
||
|
# regenerate module dependencies after pruning kernel modules
|
||
|
# (this script must run after anything touching /lib/modules)
|
||
|
|
||
|
cd /lib/modules
|
||
|
for i in *.*; do
|
||
|
if [ "$i" = "*.*" ]; then
|
||
|
echo "** error: no valid KFLAVOURS installed, bailing out" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
depmod -a -F /boot/System.map-$i $i
|
||
|
done
|