u-isdn/tools/insmod

16 lines
301 B
Plaintext
Raw Normal View History

#!/bin/bash
2022-02-17 07:14:30 +00:00
#
## Diese Version von "insmod" f<>gt ein Modul nicht in diesen, sondern in
## den n<>chsten Kernel ein...
FILE=$1
2022-02-17 07:14:30 +00:00
VERSION=$(getversion)
dir=/lib/modules/$VERSION
touch $dir/../modules.isdn.all
echo $FILE >>$dir/../modules.isdn.all
rm -f $dir/isdn/$FILE
cp $FILE $dir/isdn/$FILE &
exit 0