Re: usb modem problem

2002-11-30 Thread Bernd Walter
On Thu, Nov 28, 2002 at 11:44:10PM -0700, [EMAIL PROTECTED] wrote:
 Hello, 
 
 I am trying to use an usb modem under freebsd. It is detected during boot. 
 My system is current as of yesterday sources. Dmesg output is attached. 
 
 Modem is recognized as /dev/ugen0 and there is another node /dev/ugen0.1 
 
 I setup my ppp.conf file to use /dev/ugen0 when I try to use it the result 
 is below:
 test# ppp
 Working in interactive mode
 Using interface: tun0
 ppp ON test term
 deflink: Entering terminal mode on /dev/ugen0
 Type '~?' for help
 ugenpool: no edesc
 ugenpool: no edesc
 ppp ON test q
 test# 

ugen0 is a generic raw usb device, which is used as a fallback if no
specific driver is available.
ugen is not a tty type as expected by ppp.
Did you compile ucom and umodem in your kernel?

 uhci0: Intel 82801BA/BAM (ICH2) USB controller USB-A port 0x2440-0x245f irq 11 at 
device 31.2 on pci0
 usb0: Intel 82801BA/BAM (ICH2) USB controller USB-A on uhci0
 usb0: USB revision 1.0
 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
 uhub0: 2 ports with 2 removable, self powered
 ugen0: STMicroelectronics USB Communicator, rev 1.00/1.01, addr 2

-- 
B.Walter  COSMO-Project http://www.cosmo-project.de
[EMAIL PROTECTED] Usergroup   [EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: USB modem?

2000-12-12 Thread Mark Huizer

  Is it a case of being in the usbdevs list _and_ supporting those specs?
  Or just following the specs?
 
 I believe that being listed in usbdevs isn't a requirement, but I'm
 not positive. I also haven't had any look getting the thing to work
 dynamically loading the various modules involved.
 
It is detected as a generic device:
ugen0: Siemens AG Vox Chicago 390 ISDN, rev 1.10/1.00, addr 2

I will try to build a kernel with the umodem device in it, see if that
makes a difference
  
-- 
Nice testing in little China...


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: USB modem?

2000-12-12 Thread Nick Hibma


Whether a device is recognized by a driver depends on one thing
only: the probe routine in the driver. It either has to conform to the
specs and this device obviously doesn't, or it has to be supported by
the driver and therefore the IDs of the device need to be known.

The entries in usbdevs* are simply converted to a list of device names
plus defines for the use of drivers, to make things simpler.

Nick

On Tue, 12 Dec 2000, Mark Huizer wrote:

   Is it a case of being in the usbdevs list _and_ supporting those specs?
   Or just following the specs?
  
  I believe that being listed in usbdevs isn't a requirement, but I'm
  not positive. I also haven't had any look getting the thing to work
  dynamically loading the various modules involved.
  
 It is detected as a generic device:
 ugen0: Siemens AG Vox Chicago 390 ISDN, rev 1.10/1.00, addr 2
 
 I will try to build a kernel with the umodem device in it, see if that
 makes a difference
   
 -- 
 Nice testing in little China...
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with "unsubscribe freebsd-current" in the body of the message
 

--
Qube Software, Ltd. Private:
[EMAIL PROTECTED]  [EMAIL PROTECTED]
 [EMAIL PROTECTED]
http://www.qubesoft.com/   http://www.etla.net/~n_hibma/



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: USB modem?

2000-12-01 Thread Mark Huizer

  I have a USB modem here, (Siemens), that I would like to get to work
  under FreeBSD, but I can't even find the right tools to get vendor and
  product ID's to add to usbdevs :-(
 Try looking in dmesg - USB device that don't have known product and
 vendor ID's have theirs printed. Failing that, check the usbdevs(8)
 man page.
 
 The serious catch about USB modems is that they have to support the
 USB CDC spec. Not all of them do. If it does, the serial device will
 be umodem0 (1, 2, 3, ...), and you use it just like a tty line tied to
 an external modem.
 
Is it a case of being in the usbdevs list _and_ supporting those specs?
Or just following the specs?

I have the modem in the office, not at home. And of course there is that
tricky part where Windows wants my BIOS set to PNP OS=YES and FreeBSD
wants it set to NO. but well :-) we can survive that for the moment.

Mark
-- 
Nice testing in little China...


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: USB modem?

2000-12-01 Thread Mike Meyer

Mark Huizer [EMAIL PROTECTED] types:
   I have a USB modem here, (Siemens), that I would like to get to work
   under FreeBSD, but I can't even find the right tools to get vendor and
   product ID's to add to usbdevs :-(
  Try looking in dmesg - USB device that don't have known product and
  vendor ID's have theirs printed. Failing that, check the usbdevs(8)
  man page.
  
  The serious catch about USB modems is that they have to support the
  USB CDC spec. Not all of them do. If it does, the serial device will
  be umodem0 (1, 2, 3, ...), and you use it just like a tty line tied to
  an external modem.
  
 Is it a case of being in the usbdevs list _and_ supporting those specs?
 Or just following the specs?

I believe that being listed in usbdevs isn't a requirement, but I'm
not positive. I also haven't had any look getting the thing to work
dynamically loading the various modules involved.

mike
--
Mike Meyer [EMAIL PROTECTED]  http://www.mired.org/home/mwm/
Independent WWW/Unix/FreeBSD consultant,email for more information.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: USB modem?

2000-11-30 Thread Mike Meyer

Mark Huizer [EMAIL PROTECTED] types:
 Does anyone here have experience on tryuing to add USB devices?

I do.

 I have a USB modem here, (Siemens), that I would like to get to work
 under FreeBSD, but I can't even find the right tools to get vendor and
 product ID's to add to usbdevs :-(

Try looking in dmesg - USB device that don't have known product and
vendor ID's have theirs printed. Failing that, check the usbdevs(8)
man page.

The serious catch about USB modems is that they have to support the
USB CDC spec. Not all of them do. If it does, the serial device will
be umodem0 (1, 2, 3, ...), and you use it just like a tty line tied to
an external modem.

mike
--
Mike Meyer  http://www.mired.org/home/mwm/
Independent WWW/Unix/FreeBSD consultant,email for rates.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message