u-isdn/tools/insmod

15 lines
301 B
Plaintext
Raw Normal View History

#!/bin/sh
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
VERSION=${VERSION:-$(${TOPDIR}/tools/getversion)}
2022-02-17 07:14:30 +00:00
dir=/lib/modules/$VERSION
echo isdn/$FILE >>$dir/../modules.isdn.all
2022-02-17 07:14:30 +00:00
rm -f $dir/isdn/$FILE
cp $FILE $dir/isdn/$FILE &
exit 0