diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2005-09-03 20:05:10 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2005-09-03 20:05:10 +0000 |
commit | 50d0bad903d459b8e0576e9afdb6793ab67e7811 (patch) | |
tree | 44360ede6618bbf81f9714c2bc38dc3dca726612 /net-dialup | |
parent | nvidia USE flag for xorg-server, for binary Nvidia compatibility (diff) | |
download | gentoo-2-50d0bad903d459b8e0576e9afdb6793ab67e7811.tar.gz gentoo-2-50d0bad903d459b8e0576e9afdb6793ab67e7811.tar.bz2 gentoo-2-50d0bad903d459b8e0576e9afdb6793ab67e7811.zip |
updated modules.d/misdn config
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/misdn/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/misdn/files/misdn.modulesd | 47 |
2 files changed, 37 insertions, 15 deletions
diff --git a/net-dialup/misdn/ChangeLog b/net-dialup/misdn/ChangeLog index 56c3428a92de..e1bf9a5d1615 100644 --- a/net-dialup/misdn/ChangeLog +++ b/net-dialup/misdn/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/misdn # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/misdn/ChangeLog,v 1.4 2005/05/30 19:00:12 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/misdn/ChangeLog,v 1.5 2005/09/03 20:05:10 sbriesen Exp $ + + 03 Sep 2005; Stefan Briesenick <sbriesen@gentoo.org> files/misdn.modulesd: + updated modules.d/misdn config *misdn-20050519 (30 May 2005) diff --git a/net-dialup/misdn/files/misdn.modulesd b/net-dialup/misdn/files/misdn.modulesd index bc946a0f4255..fd3500207aad 100644 --- a/net-dialup/misdn/files/misdn.modulesd +++ b/net-dialup/misdn/files/misdn.modulesd @@ -1,13 +1,12 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/misdn/files/misdn.modulesd,v 1.2 2005/05/16 08:53:37 genstef Exp $ - # Options for the mISDN card drivers # # There's currently no documentation available. You should check # the comments in the source code for available parameters and # the possible values. # +# Important notice: FAX is not (yet) possible with mISDN, even +# with the Sedlbauer Speedfax+, but voice and PPP works. +# options avmfritz protocol=2 options hfcpci protocol=2 options hfcsusb protocol=2 @@ -15,15 +14,29 @@ options hfcmulti protocol=2 options sedlfax protocol=2 options w6692pci protocol=2 +# mISDN device +install mISDN_dev \ +[ -c /dev/mISDN ] || \ +( /bin/mknod -m 660 /dev/mISDN c 46 0 && \ + /bin/chown root:dialout /dev/mISDN ) +remove mISDN_dev \ +[ -c /dev/mISDN ] && /bin/rm -f /dev/mISDN +alias char-major-46 mISDN_dev +alias /dev/mISDN mISDN_dev + # mISDN framework install mISDN \ -/sbin/modprobe mISDN_core && \ -/sbin/modprobe mISDN_l1 && \ -/sbin/modprobe mISDN_l2 && \ -/sbin/modprobe l3udss1 && \ -/sbin/modprobe mISDN_capi && \ -/sbin/modprobe mISDN_x25dte +/sbin/modprobe mISDN_core && \ +/sbin/modprobe mISDN_l1 && \ +/sbin/modprobe mISDN_l2 && \ +/sbin/modprobe l3udss1 && \ +/sbin/modprobe mISDN_capi && \ +/sbin/modprobe mISDN_x25dte && \ +/sbin/modprobe mISDN_dsp && \ +/sbin/modprobe mISDN_dtmf remove mISDN \ +/sbin/modprobe -r mISDN_dtmf && \ +/sbin/modprobe -r mISDN_dsp && \ /sbin/modprobe -r mISDN_x25dte && \ /sbin/modprobe -r mISDN_capi && \ /sbin/modprobe -r l3udss1 && \ @@ -63,24 +76,30 @@ remove avmfritz \ /sbin/modprobe -r --ignore-remove avmfritz && \ /sbin/modprobe -r mISDN +# Winbond W6692 PCI +install w6692pci \ +/sbin/modprobe mISDN && \ +/sbin/modprobe --ignore-install w6692pci +remove w6692pci \ +/sbin/modprobe -r --ignore-remove w6692pci && \ +/sbin/modprobe -r mISDN + # Sedlbauer Speedfax+ # Important: For the sedlbauer speed fax+ to work properly # you have to download the firmware 'ISAR.BIN' onto the card. install sedlfax \ /sbin/modprobe mISDN && \ /sbin/modprobe faxl3 && \ -/sbin/modprobe --ignore-install sedlfax && \ -/usr/sbin/avmcapictrl load /lib/firmware/ISAR.BIN +/sbin/modprobe --ignore-install sedlfax remove sedlfax \ /sbin/modprobe -r --ignore-remove sedlfax && \ /sbin/modprobe -r faxl3 && \ /sbin/modprobe -r mISDN -# Winbond W6692 PCI +# Winbond W6692 PCI install w6692pci \ /sbin/modprobe mISDN && \ /sbin/modprobe --ignore-install w6692pci remove w6692pci \ /sbin/modprobe -r --ignore-remove w6692pci && \ /sbin/modprobe -r mISDN - |