Re: no USB mice detected on GA-MA74GM-S2

2009-04-09 Thread Chris Rees
2009/4/9  piotr.smy...@heron.pl:
 On Wed, 08 Apr 2009 15:48:04 -0500, Robert Noland wrote
 On Wed, 2009-04-08 at 21:08 +0200, Piotr Smyrak wrote:
 
  I recently upgraded my system to newer hardware with
 motherboard
  GIGABYTE GA-MA74GM-S2 Rev 1.0 with AMD 740G chipset (north
 bridge)
  and AMD SB700 (south) where USB support is located. Everything
  would be fine except there is no USB mice detection by FreeBSD
 at
  all. And I am stuck with USB mise since the mobo has no PS/2
 port.
 
  First I started with my old build of 6.2, then upgraded to 6.4
  STABLE, to finally upgrade to 7.2 PRERELEASE in hope of fixing
 the
  issue. None of versions gave me USB mouse support. I have tried
  connecting 3 various mice. No luck. The only effect I can
 achieve
  after connecting a mouse, is a somewhat delayed message on
 console:

 rebuild/reinstall devel/libpciaccess now that you have
 updated kernel.

 I think I was not clear in my first post. My issue is the kernel
 does not recognizes my USB mice, so I get no /dev/ums* devices at
 all.

 I have made a clean install of all my ports after upgrade. Thanks
 for your suggestion.
 --
  Piotr Smyrak
  piotr.smy...@heron.pl

 ___


Is your BIOS up to date? I know of many Gigabyte mainboards with a USB
stack bug, which is fixed with the latest images. Be careful if you do
that though!

Chris

--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?



-- 
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


USB mice in fbsd7

2008-02-05 Thread Nikolaj Thygesen

Hi list,

   About a week ago I installed fbsd7 on a new machine, and no matter 
what I do the USB mouse doesn't kick in when booting. If I pull out the 
usb plug and reinsert it, the mouse starts working fine. The very same 
mouse has worked w/out a hitch for years on fbsd6.x. When I look in /dev 
there's no ums0 entry, but after reconnecting the mouse, the ums0 entry 
appears. Does anyone have a clue about this??


   best regards - Nikolaj

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-29 Thread Jonathan Fosburgh
On Saturday 24 December 2005 04:15, Teilhard Knight wrote:


 It didn't work. Actually I have a little more than a USB mouse, I have a
 wireless mouse and wireless keyboard which are both controlled by a central
 unit which plugs into an USB port in the computer. The keyboard works well,
 with the option of booting with an USB keyboard, but I cannot make the
 mouse work. Any suggestions?


Try one of the attached patches.  They are taken from usb/77604.  The patch is 
now known to work with at least three different manufacturers mice, and so 
far as I have been able to tell doesn't break anything that works without it.  
Maybe someone will eventually commit these patches to the appropriate trees, 
the PR has only been open for about 10 months...

Choose one of the patches based on the release of FreeBSD you are using.  the 
hid.c.patch file is for RELENG_5, hid.c.patch.6 is for RELENG_6 and HEAD. 
Deposit the file in /usr/src/sys/dev/usb and run patch hid.c.patch[.6] then 
recompile and reinstall your kernel.

-- 
Jonathan Fosburgh
AIX and Storage Administrator
UT MD Anderson Cancer Center
Houston, TX 
--- hid.c.orig	Sun Feb  6 06:41:00 2005
+++ hid.c	Wed Mar  9 11:31:02 2005
@@ -371,14 +371,23 @@
 {
 	struct hid_data *d;
 	struct hid_item h;
-	int size, id;
+	int hi, lo, size, id;
 
 	id = 0;
+	hi = lo = -1;
 	for (d = hid_start_parse(buf, len, 1k); hid_get_item(d, h); )
-		if (h.report_ID != 0  !id)
-			id = h.report_ID;
+		if (h.kind == k) {
+   if (h.report_ID != 0  !id)
+   id = h.report_ID;
+   if (h.report_ID == id) {
+   if (lo  0)
+   lo = h.loc.pos;
+   hi = h.loc.pos + h.loc.size * h.loc.count;
+   }
+   }
+
 	hid_end_parse(d);
-	size = h.loc.pos;
+	size = hi - lo;
 	if (id != 0) {
 		size += 8;
 		*idp = id;	/* XXX wrong */
--- hid.c.orig	Tue Feb 22 01:27:35 2005
+++ hid.c	Tue Feb 22 01:38:44 2005
@@ -371,14 +371,22 @@ hid_report_size(void *buf, int len, enum
 {
 	struct hid_data *d;
 	struct hid_item h;
-	int size, id;
+	int hi, lo, size, id;
 
 	id = 0;
+	hi = lo = -1;
 	for (d = hid_start_parse(buf, len, 1k); hid_get_item(d, h); )
-		if (h.report_ID != 0)
-			id = h.report_ID;
+		if (h.kind == k) {
+			if (h.report_ID != 0  !id)
+id = h.report_ID;
+			if (h.report_ID == id) {
+if (lo  0)
+	lo = h.loc.pos;
+hi = h.loc.pos + h.loc.size * h.loc.count;
+			}
+		}
 	hid_end_parse(d);
-	size = h.loc.pos;
+	size = hi - lo;
 	if (id != 0) {
 		size += 8;
 		*idp = id;	/* XXX wrong */



pgpcwjnYCM3qs.pgp
Description: PGP signature


USB mice

2005-12-24 Thread Teilhard Knight
It seems to me that the way FreeBSD is catching up with new hardware leaves 
you unsatisfied. One has to choose, upon boot, the option to use an USB 
keyboard by hand, and I have found no way to make a USB mouse to work. The 
OS broadly supports serial mice and hardly PS/2 mice, both almost out of the 
market nowadays. Are USB mice supported by FreeBSD?


Teilhard. 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Frank Staals

Teilhard Knight wrote:

It seems to me that the way FreeBSD is catching up with new hardware 
leaves you unsatisfied. One has to choose, upon boot, the option to 
use an USB keyboard by hand, and I have found no way to make a USB 
mouse to work. The OS broadly supports serial mice and hardly PS/2 
mice, both almost out of the market nowadays. Are USB mice supported 
by FreeBSD?


Teilhard.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]



Currently all three systems which run FreeBSD have USB mice, two of them 
just plain Logitech optical mouses, the third is a Logitech MX 300, but 
every other mouse should work when you have enabled moused. Try plugin 
in the mouse when FreeBSD is up and running, it should detect it 
automatically


--
-Frank Staals


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Teilhard Knight

Teilhard Knight wrote:

It seems to me that the way FreeBSD is catching up with new hardware 
leaves you unsatisfied. One has to choose, upon boot, the option to use 
an USB keyboard by hand, and I have found no way to make a USB mouse to 
work. The OS broadly supports serial mice and hardly PS/2 mice, both 
almost out of the market nowadays. Are USB mice supported by FreeBSD?


Teilhard.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]



Currently all three systems which run FreeBSD have USB mice, two of them 
just plain Logitech optical mouses, the third is a Logitech MX 300, but 
every other mouse should work when you have enabled moused. Try plugin in 
the mouse when FreeBSD is up and running, it should detect it 
automatically


It didn't work. Actually I have a little more than a USB mouse, I have a 
wireless mouse and wireless keyboard which are both controlled by a central 
unit which plugs into an USB port in the computer. The keyboard works well, 
with the option of booting with an USB keyboard, but I cannot make the mouse 
work. Any suggestions?


Teilhard. 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Robert Slade
On Sat, 2005-12-24 at 10:15, Teilhard Knight wrote:
  Teilhard Knight wrote:
 
  It seems to me that the way FreeBSD is catching up with new hardware 
  leaves you unsatisfied. One has to choose, upon boot, the option to use 
  an USB keyboard by hand, and I have found no way to make a USB mouse to 
  work. The OS broadly supports serial mice and hardly PS/2 mice, both 
  almost out of the market nowadays. Are USB mice supported by FreeBSD?
 
  Teilhard.
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
  [EMAIL PROTECTED]
 
 
  Currently all three systems which run FreeBSD have USB mice, two of them 
  just plain Logitech optical mouses, the third is a Logitech MX 300, but 
  every other mouse should work when you have enabled moused. Try plugin in 
  the mouse when FreeBSD is up and running, it should detect it 
  automatically
 
 It didn't work. Actually I have a little more than a USB mouse, I have a 
 wireless mouse and wireless keyboard which are both controlled by a central 
 unit which plugs into an USB port in the computer. The keyboard works well, 
 with the option of booting with an USB keyboard, but I cannot make the mouse 
 work. Any suggestions?
 
 Teilhard. 

I can confirm what Frank says. I have a number of machines running
mainly Freebsd. USB and PS/2 mice work fine on both OS' but I did have
problems with a wireless mouse on both. The problem lies with the mouse
connection to the wireless hub. Under XP I had to press the connect
button on both the hub and mouse after booting to get the mouse to
connect to the hub and then re-boot to get XP to recognise the mouse was
there. 

I gave up on the wireless mouse in the end it was to much trouble.

Rob  


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Teilhard Knight

On 12/24/05, Teilhard Knight [EMAIL PROTECTED] wrote:

 Teilhard Knight wrote:

 It seems to me that the way FreeBSD is catching up with new hardware
 leaves you unsatisfied. One has to choose, upon boot, the option to use
 an USB keyboard by hand, and I have found no way to make a USB mouse to
 work. The OS broadly supports serial mice and hardly PS/2 mice, both
 almost out of the market nowadays. Are USB mice supported by FreeBSD?

 Teilhard.
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]


 Currently all three systems which run FreeBSD have USB mice, two of them
 just plain Logitech optical mouses, the third is a Logitech MX 300, but
 every other mouse should work when you have enabled moused. Try plugin 
 in

 the mouse when FreeBSD is up and running, it should detect it
 automatically

It didn't work. Actually I have a little more than a USB mouse, I have a
wireless mouse and wireless keyboard which are both controlled by a 
central
unit which plugs into an USB port in the computer. The keyboard works 
well,
with the option of booting with an USB keyboard, but I cannot make the 
mouse

work. Any suggestions?

Teilhard.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]




load the ums module by typing these  command. you need to be root though.



# kldload ums
# moused -p /dev/ums0 -t auto

then see if the mouse daemon is running using top or ps.

---
if this does not work you may have to rebuild yoru kernel with the
following options

device ohci
device ums
--

Thanks. Upon issuing the command:

# kldload ums,

I get:

'kldload: can't load ums: file exists'.

But if I go to /dev, ums is not present. Are you sure kldload is the right 
command?


Teilhard.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Teilhard Knight

 
  It seems to me that the way FreeBSD is catching up with new hardware
  leaves you unsatisfied. One has to choose, upon boot, the option to 
  use
  an USB keyboard by hand, and I have found no way to make a USB mouse 
  to

  work. The OS broadly supports serial mice and hardly PS/2 mice, both
  almost out of the market nowadays. Are USB mice supported by FreeBSD?
 
  Teilhard.
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
  [EMAIL PROTECTED]
 
 
  Currently all three systems which run FreeBSD have USB mice, two of 
  them
  just plain Logitech optical mouses, the third is a Logitech MX 300, 
  but

  every other mouse should work when you have enabled moused. Try plugin
  in
  the mouse when FreeBSD is up and running, it should detect it
  automatically

 It didn't work. Actually I have a little more than a USB mouse, I have a
 wireless mouse and wireless keyboard which are both controlled by a
 central
 unit which plugs into an USB port in the computer. The keyboard works
 well,
 with the option of booting with an USB keyboard, but I cannot make the
 mouse
 work. Any suggestions?

 Teilhard.

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]


load the ums module by typing these  command. you need to be root though.



# kldload ums
# moused -p /dev/ums0 -t auto

then see if the mouse daemon is running using top or ps.

---
if this does not work you may have to rebuild yoru kernel with the
following options

device ohci
device ums
--

Thanks. Upon issuing the command:

# kldload ums,

I get:

'kldload: can't load ums: file exists'.

But if I go to /dev, ums is not present. Are you sure kldload is the right
command?

Teilhard.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]




i am positive.
The message basically means that the ums module is already. You can
check this by issuing the command

# kldstat

Yes, I have found it. It is under /usr/src/sys/modules. Shouldn't it be 
under /dev? The second command you ask me to perform gives an error: 'no 
such device ums0'. What should I do now?


Teilhard


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Teilhard Knight

On 12/24/05, Teilhard Knight [EMAIL PROTECTED] wrote:

  
   It seems to me that the way FreeBSD is catching up with new 
   hardware

   leaves you unsatisfied. One has to choose, upon boot, the option to
   use
   an USB keyboard by hand, and I have found no way to make a USB 
   mouse

   to
   work. The OS broadly supports serial mice and hardly PS/2 mice, 
   both
   almost out of the market nowadays. Are USB mice supported by 
   FreeBSD?

  
   Teilhard.
   ___
   freebsd-questions@freebsd.org mailing list
   http://lists.freebsd.org/mailman/listinfo/freebsd-questions
   To unsubscribe, send any mail to
   [EMAIL PROTECTED]
  
  
   Currently all three systems which run FreeBSD have USB mice, two of
   them
   just plain Logitech optical mouses, the third is a Logitech MX 300,
   but
   every other mouse should work when you have enabled moused. Try 
   plugin

   in
   the mouse when FreeBSD is up and running, it should detect it
   automatically
 
  It didn't work. Actually I have a little more than a USB mouse, I have 
  a

  wireless mouse and wireless keyboard which are both controlled by a
  central
  unit which plugs into an USB port in the computer. The keyboard works
  well,
  with the option of booting with an USB keyboard, but I cannot make the
  mouse
  work. Any suggestions?
 
  Teilhard.
 
  ___
  freebsd-questions@freebsd.org mailing list




 load the ums module by typing these  command. you need to be root 
 though.




 # kldload ums
 # moused -p /dev/ums0 -t auto

 then see if the mouse daemon is running using top or ps.

 ---
 if this does not work you may have to rebuild yoru kernel with the
 following options

 device ohci
 device ums
 --

 Thanks. Upon issuing the command:

 # kldload ums,

 I get:

 'kldload: can't load ums: file exists'.

 But if I go to /dev, ums is not present. Are you sure kldload is the 
 right

 command?

 Teilhard.


 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]


i am positive.
The message basically means that the ums module is already. You can
check this by issuing the command

# kldstat

Yes, I have found it. It is under /usr/src/sys/modules. Shouldn't it be
under /dev? The second command you ask me to perform gives an error: 'no
such device ums0'. What should I do now?

Teilhard


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]





From what you said earlier, i can deduce that the ums module is

*already* loaded. It seems that FreeBSD cannot de tect your mouse at
bootup. I don't really know what to do next. Could you tell me what
you get when you issue:

#  cat /var/run/dmesg.boot | grep ums

uname -a will tell me what version  of FreeBSD you are using

and

# uname -a


This can tell us what is detected at boot time.

I'm having problems now. ums seems to have disappeared, at least when I go 
to /usr/src/sys/modules, I cannot find it. However when I run:


# kldload ums

I get the same as before: file exists. Konqueror cannot find ums either. 
It found it when I wrote to you, but not anymore. I have been fiddling with 
Konqueror manually in absence of a mouse and I highlighted the module path 
to be able to read it complete and then I hit enter to leave it as it was. 
Do you think I might made it hidden?


The first command you ask me to perform gives nothing under these 
circumstances. uname -a, gives 'FreeBSD 6.0-RELEASE', and gives the time and 
says I am using the GENERIC kernel, that's all.


Teilhard.





___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Russell J. Wood
On Sat, Dec 24, 2005 at 03:36:28AM -0600, Teilhard Knight wrote:
 It seems to me that the way FreeBSD is catching up with new hardware leaves 
 you unsatisfied. One has to choose, upon boot, the option to use an USB 
 keyboard by hand, and I have found no way to make a USB mouse to work. The 
 OS broadly supports serial mice and hardly PS/2 mice, both almost out of 
 the market nowadays. Are USB mice supported by FreeBSD?

I have a USB keyboard and I don't have to choose the ``USB Keyboard''
option at start up. Also, I have a USB Mouse hooked up via a hub in my
keyboard. Works fine.

Maybe you should consult the Handbook, or maybe even Google for your
answers.

- Russell
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Teilhard Knight


- Original Message - 
From: Russell J. Wood [EMAIL PROTECTED]

To: freebsd-questions@freebsd.org
Sent: Saturday, December 24, 2005 8:43 AM
Subject: Re: USB mice



On Sat, Dec 24, 2005 at 03:36:28AM -0600, Teilhard Knight wrote:
It seems to me that the way FreeBSD is catching up with new hardware 
leaves

you unsatisfied. One has to choose, upon boot, the option to use an USB
keyboard by hand, and I have found no way to make a USB mouse to work. 
The

OS broadly supports serial mice and hardly PS/2 mice, both almost out of
the market nowadays. Are USB mice supported by FreeBSD?


I have a USB keyboard and I don't have to choose the ``USB Keyboard''
option at start up. Also, I have a USB Mouse hooked up via a hub in my
keyboard. Works fine.


Are they, your keyboard and your mouse, wireless?

Teilhard. 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Russell J. Wood
On Sat, Dec 24, 2005 at 09:29:53AM -0600, Teilhard Knight wrote:
 
 - Original Message - 
 From: Russell J. Wood [EMAIL PROTECTED]
 To: freebsd-questions@freebsd.org
 Sent: Saturday, December 24, 2005 8:43 AM
 Subject: Re: USB mice
 
 
 On Sat, Dec 24, 2005 at 03:36:28AM -0600, Teilhard Knight wrote:
 It seems to me that the way FreeBSD is catching up with new hardware 
 leaves
 you unsatisfied. One has to choose, upon boot, the option to use an USB
 keyboard by hand, and I have found no way to make a USB mouse to work. 
 The
 OS broadly supports serial mice and hardly PS/2 mice, both almost out of
 the market nowadays. Are USB mice supported by FreeBSD?
 
 I have a USB keyboard and I don't have to choose the ``USB Keyboard''
 option at start up. Also, I have a USB Mouse hooked up via a hub in my
 keyboard. Works fine.
 
 Are they, your keyboard and your mouse, wireless?
 
 Teilhard. 

No, they are not. However, before this setup I was using a complete
wireless setup. Logictec keyboard/mouse combination, from memory.

- Russell
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Giorgos Keramidas
On 2005-12-25 09:13, Russell J. Wood [EMAIL PROTECTED] wrote:
On Sat, Dec 24, 2005 at 09:29:53AM -0600, Teilhard Knight wrote:
Russell J. Wood [EMAIL PROTECTED] wrote:
On Sat, Dec 24, 2005 at 03:36:28AM -0600, Teilhard Knight wrote:
 It seems to me that the way FreeBSD is catching up with new
 hardware leaves you unsatisfied. One has to choose, upon boot, the
 option to use an USB keyboard by hand, and I have found no way to
 make a USB mouse to work.  The OS broadly supports serial mice and
 hardly PS/2 mice, both almost out of the market nowadays. Are USB
 mice supported by FreeBSD?

 I have a USB keyboard and I don't have to choose the ``USB
 Keyboard'' option at start up. Also, I have a USB Mouse hooked up
 via a hub in my keyboard. Works fine.

 Are they, your keyboard and your mouse, wireless?

 No, they are not. However, before this setup I was using a complete
 wireless setup. Logictec keyboard/mouse combination, from memory.

USB mice are supported, but I'm not sure about install time.  I very
rarely install from a CD-ROM these days and even when I do, I don't use
the mouse at all.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice

2005-12-24 Thread Russell J. Wood
On Sun, Dec 25, 2005 at 04:01:00AM +0200, Giorgos Keramidas wrote:
 On 2005-12-25 09:13, Russell J. Wood [EMAIL PROTECTED] wrote:
 On Sat, Dec 24, 2005 at 09:29:53AM -0600, Teilhard Knight wrote:
 Russell J. Wood [EMAIL PROTECTED] wrote:
 On Sat, Dec 24, 2005 at 03:36:28AM -0600, Teilhard Knight wrote:
  It seems to me that the way FreeBSD is catching up with new
  hardware leaves you unsatisfied. One has to choose, upon boot, the
  option to use an USB keyboard by hand, and I have found no way to
  make a USB mouse to work.  The OS broadly supports serial mice and
  hardly PS/2 mice, both almost out of the market nowadays. Are USB
  mice supported by FreeBSD?
 
  I have a USB keyboard and I don't have to choose the ``USB
  Keyboard'' option at start up. Also, I have a USB Mouse hooked up
  via a hub in my keyboard. Works fine.
 
  Are they, your keyboard and your mouse, wireless?
 
  No, they are not. However, before this setup I was using a complete
  wireless setup. Logictec keyboard/mouse combination, from memory.
 
 USB mice are supported, but I'm not sure about install time.  I very
 rarely install from a CD-ROM these days and even when I do, I don't use
 the mouse at all.

Who needs a mouse at install time? The keyboard is suffice.

- Russell
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice don't work

2005-11-07 Thread Jonathan Fosburgh
On Sunday 06 November 2005 02:54 pm, Moritz Lipfert wrote:


 At the moment there are no moused lines in my rc.conf. Should I add
 these configuration lines?

The usbd daemon should take care of it, but you might try putting it in 
rc.conf.  Also, you may wish to try applying one of the patches (hid.patch.c) 
in usb/77604. Maybe someone will eventually commit these or atleast explain 
why they can't be...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


USB mice don't work

2005-11-06 Thread Moritz Lipfert

Hi,

on every start of FreeBSD 6.0-stable amd64 the kernel reports device 
problem (set_addr_failed)... and my USB mice don't work. I've tested a 
Logitech MX518 and a Microsoft IntelliMouse Explorer 3.0. The LEDs of 
the optical sensors are not working. The USB-daemon is started and I 
already tried to configure the mice with sysinstall. Nothing helped.


How can I solve this problem? Any ideas?

System specs:
AMD Athlon64 3500+
2x 512MB Corsair Memory
MSI K8N Neo2 Platinum (nVidia nForce3)
ATi Radeon X800XT-PE

In Linux both mice work flawlessly!


Best regards,
MorLipf
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice don't work

2005-11-06 Thread Daniel Molina Wegener
   On Sun, Nov 06, 2005 at 05:27:51PM +0100,
   Moritz Lipfert wrote:

 Hi,
 
 on every start of FreeBSD 6.0-stable amd64 the kernel reports
 device problem (set_addr_failed)... and my USB mice
 don't work. I've tested a Logitech MX518 and a Microsoft
 IntelliMouse Explorer 3.0. The LEDs of the optical sensors are
 not working. The USB-daemon is started and I already tried to
 configure the mice with sysinstall. Nothing helped.
 
 How can I solve this problem? Any ideas?

  If you use moused, try de auto in the mouse type parameter.
  From the moused(8) manual page:
  --- BEGIN QUOTE --
  For the USB mouse, the protocol must be auto.  No other protocol
  will work with the USB mouse.
  --- END QUOTE ---

  Also, use the same moused in the X Windows System.

 System specs:
 AMD Athlon64 3500+
 2x 512MB Corsair Memory
 MSI K8N Neo2 Platinum (nVidia nForce3)
 ATi Radeon X800XT-PE
 
 In Linux both mice work flawlessly!

 Best regards,
 MorLipf
 [SNIP]

Regards
-- 
 . 0 . | Daniel Molina Wegener
 . . 0 | dmw at unete dot cl
 0 0 0 | FreeBSD Power User
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB mice don't work

2005-11-06 Thread Moritz Lipfert

Daniel Molina Wegener wrote:

   On Sun, Nov 06, 2005 at 05:27:51PM +0100,
   Moritz Lipfert wrote:

  

Hi,

on every start of FreeBSD 6.0-stable amd64 the kernel reports
device problem (set_addr_failed)... and my USB mice
don't work. I've tested a Logitech MX518 and a Microsoft
IntelliMouse Explorer 3.0. The LEDs of the optical sensors are
not working. The USB-daemon is started and I already tried to
configure the mice with sysinstall. Nothing helped.

How can I solve this problem? Any ideas?



  If you use moused, try de auto in the mouse type parameter.
  From the moused(8) manual page:
  --- BEGIN QUOTE --
  For the USB mouse, the protocol must be auto.  No other protocol
  will work with the USB mouse.
  --- END QUOTE ---

  Also, use the same moused in the X Windows System.

  

System specs:
AMD Athlon64 3500+
2x 512MB Corsair Memory
MSI K8N Neo2 Platinum (nVidia nForce3)
ATi Radeon X800XT-PE

In Linux both mice work flawlessly!

Best regards,
MorLipf
[SNIP]



Regards
  
At the moment there are no moused lines in my rc.conf. Should I add 
these configuration lines?

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can I use my USB mice in text mode? A bit more info

2002-11-12 Thread Alexey Tchouprinine

dmesg tells

uhci0: VIA 83C572 USB controller port 0xd000-0xd01f irq 10 at device 7.2 on pci0
uhci0: LegSup = 0x0030
usb0: VIA 83C572 USB controller on uhci0
usb0: USB revision 1.0
uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
usbd_transfer_cb: short transfer 08
usbd_transfer_cb: short transfer 08
usbd_transfer_cb: short transfer 08
usbd_new_device: addr=2, getting first desc failed
uhub_explore: usb_new_device failed, error=SHORT_XFER
uhub0: device problem, disabling port 2
uhci1: VIA 83C572 USB controller port 0xd400-0xd41f irq 10 at device 7.3 on pci0
uhci1: LegSup = 0x0030
usb1: VIA 83C572 USB controller on uhci1
usb1: USB revision 1.0
uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered

Do you need more info?

-- 
Alexey Chuprinin 
System administrator
Internet Securities, Inc., Moscow


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



Can I use my USB mice in text mode?

2002-11-11 Thread Alexey Tchouprinine
Hello

I'm trying to configure 4.7-release.
I have IntelliMouse Explorer 1.0A. I've read FAQ 4.15.
I've tried to execute
moused -p /dev/ums0 -t auto
Result:
moused: unable to open /dev/ums0: Device not configured

I use as GENERIC so my own kernel. My kernel config file:
--
machine i386
cpu I686_CPU
ident   WALKER
maxusers64
options MAXDSIZ=(256*1024*1024)
options MAXSSIZ=(256*1024*1024)
options DFLDSIZ=(256*1024*1024)
options PQ_CACHESIZE=1024   # color for 512k/16k cache
options INCLUDE_CONFIG_FILE # Include this file in kernel
options CPU_ENABLE_SSE
options CPU_SUSP_HLT
options PERFMON
options INET#InterNETworking
options FFS #Berkeley Fast Filesystem
options FFS_ROOT#FFS usable as root device [keep this!]
options NFS #Network Filesystem
options NFS_ROOT#NFS usable as root device, NFS required
options MSDOSFS #MSDOS Filesystem
options CD9660  #ISO 9660 Filesystem
options CD9660_ROOT #CD-ROM usable as root, CD9660 required
options PROCFS  #Process filesystem
options SOFTUPDATES #Enable FFS soft updates support
options UFS_DIRHASH #Improve performance on big directories
options NSWAPDEV=2
options QUOTA   #enable disk quotas
options COMPAT_43   #Compatible with BSD 4.3 [KEEP THIS!]
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
options UCONSOLE#Allow users to grab the console
options KTRACE  #ktrace(1) support
options SYSVSHM #SYSV-style shared memory
options SYSVMSG #SYSV-style message queues
options SYSVSEM #SYSV-style semaphores
options P1003_1B#Posix P1003_1B real-time extensions
options _KPOSIX_PRIORITY_SCHEDULING
options ICMP_BANDLIM#Rate limit bad replies
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
options AHC_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~128k to driver.
options AHD_REG_PRETTY_PRINT# Print register bitfields in debug 
# output.  Adds ~215k to driver.
options COMPAT_LINUX
device  isa
device  pci
options PCI_ENABLE_IO_MODES
device  fdc0at isa? port IO_FD1 irq 6 drq 2
device  fd0 at fdc0 drive 0
device  fd1 at fdc0 drive 1
device  ata
device  atadisk # ATA disk drives
device  atapicd # ATAPI CDROM drives
options ATA_STATIC_ID   #Static device numbering
device  ahc # AHA2940 and onboard AIC7xxx devices
device  scbus   # SCSI bus (required)
device  da  # Direct Access (disks)
device  pass# Passthrough device (direct SCSI access)
device  atkbdc0 at isa? port IO_KBD
device  atkbd0  at atkbdc? irq 1 flags 0x1
device  vga0at isa?
options VESA
device  agp
pseudo-device   splash
device  sc0 at isa? flags 0x100
options MAXCONS=12  # number of virtual consoles
options SC_DISABLE_REBOOT   # disable reboot key sequence
options SC_HISTORY_SIZE=200 # number of history buffer lines
options SC_MOUSE_CHAR=0x3   # char code for text mode mouse cursor
options SC_PIXEL_MODE   # add support for the raster text mode
device  npx0at nexus? port IO_NPX irq 13
device  apm0at nexus? disable flags 0x20 # Advanced Power Management
device  sio0at isa? port IO_COM1 flags 0x10 irq 4
device  sio1at isa? port IO_COM2 irq 3
device  ppc0at isa? irq 7
device  ppbus   # Parallel port bus (required)
device  lpt # Printer
device  plip# TCP/IP over parallel
device  ppi # Parallel port interface device
device  miibus  # MII bus support
device  fxp # Intel EtherExpress PRO/100B (82557, 82558)
pseudo-device   loop# Network loopback
pseudo-device   ether   # Ethernet support
pseudo-device   pty 16  #Pseudo ttys
pseudo-device   speaker #Play IBM BASIC-style noises out your speaker
pseudo-device   gzip#Exec gzipped a.out's
pseudo-device   vn  #Vnode driver (turns a file into a device)
pseudo-device   snp #Snoop device - to look at pty/vty/etc..
pseudo-device   bpf