hallo, ich habe gerade den Thread gesehen. Meine Moeglichkeiten sind derzeit etwas eingeschraenkt, da ich nur mit einem USB-Funkmodem im Ausland unterwegs bin.
Aber Zugriff auf mein ISDN-VoIP Gateway per ssh hab ich wenigstens
zum Problem:
hast du die alten Treiber wirklich alle entfernt? Ich mache es immer so (im 'extra' Verzeichnis landen die neu generierten misdn Treiber, also Vorsicht falls noch was anderes drinsteht!):
Code:
rm -rfv /lib/modules/`uname -r`/kernel/drivers/isdn
rm -rfv /lib/modules/`uname -r`/extra
ein paar meiner Boot-Files (allerdings fuer debian squeeze)
Code:
cat /etc/modprobe.d/asterisk.conf
blacklist wct4xxp
blacklist wcte12xp
blacklist wct1xxp
blacklist wcte11xp
blacklist wctdm24xxp
blacklist wcfxo
blacklist wctdm
blacklist wctc4xxp
blacklist wcb4xxp
blacklist crc_ccitt
blacklist hfcpci
blacklist hfcsusb
blacklist hisax
blacklist isdn
blacklist mISDN_core
blacklist slhc
blacklist zaphfc
Code:
cat /etc/rc2.d/S20lcr
#! /bin/sh
### BEGIN INIT INFO
# Provides: lcr
# Required-Start: $syslog $remote_fs
# Required-Stop: $syslog $remote_fs
# Default-Start: 2
# Default-Stop: 0 1 3 4 5 6
# Description: linux call router launch
### END INIT INFO
. /lib/lsb/init-functions
[ -f /etc/default/rcS ] && . /etc/default/rcS
PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/usr/local/sbin/lcr
DESC="linux call router daemon"
NAME="lcr"
PIDFILE=/var/run/lcr.pid
test -x $DAEMON || exit 0
case "$1" in
start)
log_daemon_msg "Starting $DESC" "$NAME"
# see genrc for std opts [ /usr/local/lcr/mISDN ]
modprobe mISDN_core debug=0x1
modprobe mISDN_dsp debug=0x1 options=0x0
modprobe mISDN_dsp_oslec
modprobe hfcpci debug=0x1
modprobe hfcsusb debug=0x1
sleep 1
start-stop-daemon --start --background --pidfile $PIDFILE --make-pidfile --startas $DAEMON -- start
log_end_msg $?
;;
stop)
log_daemon_msg "Stopping $DESC" "$NAME"
start-stop-daemon --stop --pidfile $PIDFILE
rm -f $PIDFILE
# NOT NOW
# rmmod hfcsusb
# rmmod hfcpci
# rmmod mISDN_dsp_oslec
# rmmod mISDN_dsp
# rmmod mISDN_core
log_end_msg $?
;;
restart)
log_daemon_msg "Restarting $DESC" "$NAME"
log_end_msg $?
$0 stop
sleep 1
$0 start
;;
*)
log_success_msg "Usage: $0 {start|stop|restart}"
exit 1
;;
esac
exit 0
ich hoffe es hilft erst mal weiter. Bin vermutlich erst morgen wieder online.
[EDIT]
du verwendest ja hoffentlich die aktuellen GIT Sourcen? Ich weiss nicht wie alt die Sourcen im angegebenen Link schon sind.
Code:
git clone git://git.misdn.org/git/mISDN.git/
git clone git://git.misdn.org/git/mISDNuser.git/
git clone git://git.misdn.org/git/lcr.git/
so - bin jetzt endgueltig weg fuer heute 
[/EDIT]
- sparkie