diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-11-18 07:54:15 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-11-18 07:54:15 +0000 |
commit | 852e0c8a49874bcc7abcf51635aa274a3a9f9cab (patch) | |
tree | 39fdfab5dd59f29783af1d246e31f0fc0796a1f7 /net-dialup/capi4k-utils/files | |
parent | Remove obsolete versions. (diff) | |
download | gentoo-2-852e0c8a49874bcc7abcf51635aa274a3a9f9cab.tar.gz gentoo-2-852e0c8a49874bcc7abcf51635aa274a3a9f9cab.tar.bz2 gentoo-2-852e0c8a49874bcc7abcf51635aa274a3a9f9cab.zip |
Remove obsolete versions.
(Portage version: 2.1.1-r1)
(Signed Manifest commit)
Diffstat (limited to 'net-dialup/capi4k-utils/files')
11 files changed, 0 insertions, 273 deletions
diff --git a/net-dialup/capi4k-utils/files/20041006/README.gentoo b/net-dialup/capi4k-utils/files/20041006/README.gentoo deleted file mode 100644 index ea1e3a985ca3..000000000000 --- a/net-dialup/capi4k-utils/files/20041006/README.gentoo +++ /dev/null @@ -1,48 +0,0 @@ -#################################################################### -# CAPI4Linux / Gentoo usage instructions # -#################################################################### - -First edit /etc/capi.conf to match your configuration. - -here an example for the AVM B1 PCI card: - - # card file proto io irq mem cardnr options - b1pci b1.t4 DSS1 - - - - - -First option is the name of the kernel driver, second is the firmware -file which will be uploaded to the card. All firmware files for the -active AVM controllers can be found in /lib/firmware which is the -location where all firmware files have to be placed. - -The 'cardnr' option can be left '-' if you only have one card. -Otherwise fill in the card number you want to assign to this card. - -Now you can start the CAPI with - - /etc/init.d/capi start - -It should show the loaded drivers/cards after the initialization. -You can check the CAPI with the 'capiinfo' command. - -So, if all runs smoothly, then fixate it - - rc-update add capi boot - -You can now install the package net-dialup/isdn4k-utils if you -want to use all the legacy ISDN apps, such as 'isdnlog'. - - -pppdcapiplugin -~~~~~~~~~~~~~~ -please read the README and have a look at the examples. - - -rcapid -~~~~~~ -if you want to use 'rcapid' (remote capi daemon), then install -sys-apps/xinetd and configure it in /etc/xinetd.d/rcapid -and read the rcapid documentation. - - --- -Stefan Briesenick <sbriesen@gmx.de> 2004-12-20 diff --git a/net-dialup/capi4k-utils/files/20041006/capi.blacklist b/net-dialup/capi4k-utils/files/20041006/capi.blacklist deleted file mode 100644 index 8b71e804d8e5..000000000000 --- a/net-dialup/capi4k-utils/files/20041006/capi.blacklist +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/files/20041006/capi.blacklist,v 1.1 2004/12/23 20:57:46 mrness Exp $ - -# CAPI USB is handled via /etc/hotplug/usb/capi.usermap -fcusb -fcusb2 -fxusb -fxusb_CZ -fcdslusb -bfusb - -# CAPI modules are load from /etc/init.d/capi -b1isa -b1pci -b1pcmcia -c4 -t1isa -t1pci -fcpci -fcclassic -fcdsl -fcdsl2 -fcdslsl diff --git a/net-dialup/capi4k-utils/files/20041006/capi.confd b/net-dialup/capi4k-utils/files/20041006/capi.confd deleted file mode 100644 index 6215987018d6..000000000000 --- a/net-dialup/capi4k-utils/files/20041006/capi.confd +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/files/20041006/capi.confd,v 1.1 2004/12/23 20:57:46 mrness Exp $ - -# do you want to use USB hotplug? -# if disabled, you have to configure your device in /etc/capi.conf -CAPI_HOTPLUG_USB=1 - -# should via hotplug added cards generate a beep? -CAPI_HOTPLUG_BEEP=1 - diff --git a/net-dialup/capi4k-utils/files/20041006/capi.hotplug b/net-dialup/capi4k-utils/files/20041006/capi.hotplug deleted file mode 100644 index 6577ff818ff2..000000000000 --- a/net-dialup/capi4k-utils/files/20041006/capi.hotplug +++ /dev/null @@ -1,95 +0,0 @@ -#!/bin/bash -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/files/20041006/capi.hotplug,v 1.1 2004/12/23 20:57:46 mrness Exp $ - -. /etc/conf.d/capi - -[ "$CAPI_HOTPLUG_USB" = "0" ] && exit 0 - -# driver lookup -cardinfo() { # <driver> - /bin/sed 2>/dev/null -n "s:^\([1-9][0-9]*\) \+${1} \+\([^ ]\+\) \+\([^ ]\+\).*:\1 \3 \2:p" /proc/capi/controller -} - -# AVM firmware loader -avmusb() { # <card> <firmware> - /usr/sbin/avmcapictrl load "/lib/firmware/${2}" "${1}" -} - -# normalize and split product code -# only needed, because coldplug gives other results than hotplug :-/ -IFS="/" read _A _B _C < <(echo "${PRODUCT}") -read VENDOR DEVID PCLASS < <(/usr/bin/printf "%04x %04x %04x" "0x${_A}" "0x${_B}" "0x${_C}") -VENDID="${VENDOR}/${DEVID}" -DEVTMP="${DEVICE##/proc/bus/usb/}" -USBBUS="${DEVTMP%%/*}" -USBDEV="${DEVTMP##*/}" - -LOCK="/tmp/.capi-usb-${USBBUS}-${USBDEV}" -LOADER="" -DRIVER="" -FIRMWARE="" - -# select driver and firmware -case "${VENDID}" in - "057c/0c00") # FRITZCARD!USB - DRIVER="fcusb" - ;; - "057c/1000") # FRITZCARD!USB v2.0 - LOADER="avmusb" - DRIVER="fcusb2" - FIRMWARE="fus2base.frm" - ;; - "057c/1900") # FRITZCARD!USB v2.1 - LOADER="avmusb" - DRIVER="fcusb2" - FIRMWARE="fus3base.frm" - ;; - "057c/2000") # FRITZX!USB - DRIVER="fxusb" - ;; - "057c/2200") # BlueFRITZ!USB - DRIVER="bfusb" - ;; - "057c/2300") # FRITZDSL!USB - LOADER="avmusb" - DRIVER="fcdslusb" - FIRMWARE="fdsubase.frm" - ;; - "057c/2800") # FRITZX!USB OEM - DRIVER="fxusb_CZ" - ;; - "057c/3500") # FRITZDSL!USB SL - LOADER="avmusb" - DRIVER="fcdslslusb" - FIRMWARE="fdlubase.frm" - ;; - *) # unknown card - echo "unknown USB product: $VENDID" - exit 1 -esac - -case "$ACTION" in - add) - /bin/ln 2>/dev/null -s "$$" "$LOCK" || exit 0 - for MODULE in kernelcapi capi capidrv $DRIVER; do - /sbin/modprobe -s $MODULE || exit 1 - done - if [ -n "$LOADER" -a -n "$FIRMWARE" ]; then - CNT=0 # wait for udev - while [ ! -e /dev/capi20 -a $CNT -lt 10 ]; do - sleep 1; : $((CNT++)) - done - read CARD NAME STATUS < <(cardinfo $DRIVER) - [ "$STATUS" = "detected" ] && $LOADER $CARD $FIRMWARE - fi - [ "$CAPI_HOTPLUG_BEEP" = "0" ] || echo -en "\033[10;1200]\a\033[10;262]" > /dev/console - /bin/rm -f "$LOCK" - ;; - remove) - /sbin/modprobe -sqr $DRIVER - [ "$CAPI_HOTPLUG_BEEP" = "0" ] || echo -en "\033[10;300]\a\033[10;262]" > /dev/console - ;; -esac -exit 0 diff --git a/net-dialup/capi4k-utils/files/20041006/capi.initd b/net-dialup/capi4k-utils/files/20041006/capi.initd deleted file mode 100644 index 75d5d490581e..000000000000 --- a/net-dialup/capi4k-utils/files/20041006/capi.initd +++ /dev/null @@ -1,60 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/files/20041006/capi.initd,v 1.3 2005/01/06 18:17:57 mrness Exp $ - -opts="start stop info" - -depend() { - after coldplug isapnp -} - -get_modules() { - /usr/bin/cut 2>/dev/null -f2 -d' ' /proc/capi/controller -} - -start() { - if [ ! -e /etc/capi.conf ] ; then - eerror "You're missing /etc/capi.conf (comes with a capi-driver)." - eerror "Emerge net-dialup/fcpci if you are having an AVM Fritz!Card PCI" - return 1 - fi - - ebegin "Loading CAPI" - - /sbin/modprobe -s kernelcapi - /sbin/modprobe -s capi - /sbin/modprobe -s capidrv - - CNT=0 # wait for udev - while [ ! -e /dev/capi20 -a $CNT -lt 10 ]; do - sleep 1; : $((CNT++)) - done - - if /usr/sbin/capiinit activate ; then - while read INFO; do einfo " $INFO"; done < /proc/capi/controller - fi - - eend $? -} - -stop() { - local DRIVERS=$(get_modules) - - ebegin "Unloading CAPI" - - /sbin/modprobe -sr capidrv - /usr/sbin/capiinit 2>/dev/null stop - for DRV in $DRIVERS; do /sbin/modprobe -sr $DRV; done - - eend $? -} - -info() { - if [ -e /proc/capi/controller ]; then - while read INFO; do einfo "$INFO"; done < /proc/capi/controller - else - eerror "ERROR: CAPI not loaded" - return 1 - fi -} diff --git a/net-dialup/capi4k-utils/files/20041006/capi.usermap b/net-dialup/capi4k-utils/files/20041006/capi.usermap deleted file mode 100644 index 0285836dd726..000000000000 --- a/net-dialup/capi4k-utils/files/20041006/capi.usermap +++ /dev/null @@ -1,8 +0,0 @@ -capi 0x0003 0x057c 0x0c00 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000 -capi 0x0003 0x057c 0x1000 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000 -capi 0x0003 0x057c 0x1900 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000 -capi 0x0003 0x057c 0x2000 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000 -capi 0x0003 0x057c 0x2200 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000 -capi 0x0003 0x057c 0x2300 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000 -capi 0x0003 0x057c 0x2800 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000 -capi 0x0003 0x057c 0x3500 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000 diff --git a/net-dialup/capi4k-utils/files/20041006/config b/net-dialup/capi4k-utils/files/20041006/config deleted file mode 100644 index 970991b22951..000000000000 --- a/net-dialup/capi4k-utils/files/20041006/config +++ /dev/null @@ -1,8 +0,0 @@ -CONFIG_KERNELDIR='/usr/src/linux' -CONFIG_BINDIR='/usr/bin' -CONFIG_SBINDIR='/usr/sbin' -CONFIG_MANDIR='/usr/share/man' -CONFIG_AVMCAPICTRL=y -CONFIG_CAPIFAX=y -CONFIG_RCAPID=y -CONFIG_PPPDCAPIPLUGIN=y diff --git a/net-dialup/capi4k-utils/files/20041006/rcapid.xinetd b/net-dialup/capi4k-utils/files/20041006/rcapid.xinetd deleted file mode 100644 index 01208331873f..000000000000 --- a/net-dialup/capi4k-utils/files/20041006/rcapid.xinetd +++ /dev/null @@ -1,13 +0,0 @@ -service rcapid -{ - port = 2662 - socket_type = stream - wait = no - user = root - type = unlisted - server = /usr/sbin/rcapid - server_args = -l 5 - log_on_success += USERID - log_on_failure += USERID - disable = yes -} diff --git a/net-dialup/capi4k-utils/files/digest-capi4k-utils-20041006-r5 b/net-dialup/capi4k-utils/files/digest-capi4k-utils-20041006-r5 deleted file mode 100644 index 34abafb72602..000000000000 --- a/net-dialup/capi4k-utils/files/digest-capi4k-utils-20041006-r5 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 54992ff362ca44629fdf59773a6864cd capi4k-utils-2004-10-06.tar.gz 743667 -MD5 74951d290e717c8bc87887f55ad3e0dd capi4k-utils-20041006-patches.tar.bz2 11674 diff --git a/net-dialup/capi4k-utils/files/digest-capi4k-utils-20050509 b/net-dialup/capi4k-utils/files/digest-capi4k-utils-20050509 deleted file mode 100644 index 18cc113ee059..000000000000 --- a/net-dialup/capi4k-utils/files/digest-capi4k-utils-20050509 +++ /dev/null @@ -1 +0,0 @@ -MD5 16fd3dd947812a110227a6e7aa0ab021 capi4k-utils-2005-05-09.tar.gz 679827 diff --git a/net-dialup/capi4k-utils/files/digest-capi4k-utils-20050718 b/net-dialup/capi4k-utils/files/digest-capi4k-utils-20050718 deleted file mode 100644 index f1ed75afb639..000000000000 --- a/net-dialup/capi4k-utils/files/digest-capi4k-utils-20050718 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 c745759b6b3d64e19763727176648cdf capi4k-utils-2005-07-18.tar.gz 862826 -RMD160 cadd13328aeef50ab26218614176b4f368b0b19d capi4k-utils-2005-07-18.tar.gz 862826 -SHA256 b162d726a31310fc29e7c0a25a4f82a590457f6a95c1b1168bcd72b6497b5746 capi4k-utils-2005-07-18.tar.gz 862826 |