diff options
author | edwin <edwin@FreeBSD.org> | 2004-10-12 12:17:02 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-10-12 12:17:02 +0800 |
commit | e50e0649bd3bf3d38cde66e7432e005da23e0b09 (patch) | |
tree | 3a21180c067147d344d4c744a40f43d7deab90ae /comms/ltmdm | |
parent | d18132393266c1d649a8e492b6bf4c8a6665ba25 (diff) | |
download | freebsd-ports-gnome-e50e0649bd3bf3d38cde66e7432e005da23e0b09.tar.gz freebsd-ports-gnome-e50e0649bd3bf3d38cde66e7432e005da23e0b09.tar.zst freebsd-ports-gnome-e50e0649bd3bf3d38cde66e7432e005da23e0b09.zip |
[patch] comms/ltmdm: ltmdm.sh patch
Machine: Dell inspiron 8000 with Lucent Technology integrated
modem
The system panics on an incoming ring signal from the ltmdm.
Workaround: initializing the S0 register to a >=0 to max_value
fix the problem.
PR: ports/71951
Submitted by: raoul megelas <raoul.megelas@libertysurf.fr>
Diffstat (limited to 'comms/ltmdm')
-rw-r--r-- | comms/ltmdm/Makefile | 2 | ||||
-rw-r--r-- | comms/ltmdm/files/ltmdm.sh | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/comms/ltmdm/Makefile b/comms/ltmdm/Makefile index 35912fd2fc11..f28b4d4cea02 100644 --- a/comms/ltmdm/Makefile +++ b/comms/ltmdm/Makefile @@ -7,7 +7,7 @@ PORTNAME= ltmdm PORTVERSION= 1.4 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= comms MASTER_SITES= http://www.dons.net.au/~darius/ \ http://soupnazi.org/FreeBSD/ports/distfiles/ diff --git a/comms/ltmdm/files/ltmdm.sh b/comms/ltmdm/files/ltmdm.sh index 9eca81695a7d..bea704345b76 100644 --- a/comms/ltmdm/files/ltmdm.sh +++ b/comms/ltmdm/files/ltmdm.sh @@ -31,6 +31,10 @@ case "$1" in fi kldload ${PREFIX}/share/ltmdm/ltmdm.ko + + # by default ignore incoming calls + echo "ats0=0">/dev/cual0 + echo -n ' ltmdm' ;; esac |