[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: AVM A1



Hi!

Fredo Strüber wrote (Wed 2002-Sep-18 21:54:14 +0200):

> ich hab da ein kleines Problem. Ich bekomme eine Fritz PCMCIA KArte
> nicht unter Debian 3.0 zum laufen . Die Card Servises sagen mir immer 
> unsupported Card...

If you add a file called "whatever-you-like.conf" to
"/etc/pcmcia/" containing something like this:

==== avma1.conf ====

device "avma1_cs"
  class "avma1" module "avma1_cs"

card "AVM A1 PCMCIA"
  version "AVM", "ISDN A"
  bind "avma1_cs"

====================

it will work fine after a restart of PCMCIA services.

If you then add an executable file to "/etc/pcmcia/" with the
same name as the "class" attribute above, this will be executed
upon insertion or removal of the card. It could look like this:

==== avma1 ====

#!/bin/sh

case "$1" in

'start')
    /etc/init.d/isdnutils start
    ;;

'check')
    ;;

'stop')
    ;;

'cksum')
    exit 1
    ;;

'suspend'|'resume')
    ;;

*)
    echo "What?"
    exit 1
    ;;

esac

exit 0

===============


> .. this system lacks PPP Kernel Support ???

Don't worry, it's probably not true.


Cheers, Marcus

-- 
   Marcus C. Gottwald  ·  http://www.inf.fu-berlin.de/~gottwald/



Reply to: