All of lore.kernel.org
 help / color / mirror / Atom feed
* keyboard problems
@ 2000-08-01  5:48 Thomas Graichen
  2000-08-01 20:37 ` Nelson Abramson
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Thomas Graichen @ 2000-08-01  5:48 UTC (permalink / raw)
  To: linuxppc-dev


i have a little keyboard problem on my blueberry imac with the
standard usb keyboard: whenever i type something very quickly
followed by space the typed in will be repeated before the
space (best example: i want to type "cd " and get "cdcd ")
- this gets a bit annoying - does anybody have the same
problem (or even a fix for it) ? - is it more a soft-
wareproblem (i hope :-) or maybe a hardwareproblem ?
(i had it on all kernels from 2.2.x to 2.4.0-testx)

a lot of thanks in advance

t

p.s.: it appears both on the console and under x - so it has
      to - if software - a problem in the kbd driver

--
thomas.graichen@innominate.de
technical director                                       innominate AG
clustering & security                                networking people
tel: +49.30.308806-13 fax: -77 web: http://innominate.de pgp: /pgp/tgr

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 9+ messages in thread

* keyboard problems
       [not found] <8m5oaq$6tj$3@mate.bln.innominate.de>
@ 2000-08-01 19:49 ` Thomas Graichen
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Graichen @ 2000-08-01 19:49 UTC (permalink / raw)
  To: linuxppc-dev


looks like this one got lost too - so here it is again ...

i have a little keyboard problem on my blueberry imac with the
standard usb keyboard: whenever i type something very quickly
followed by space the typed in will be repeated before the
space (best example: i want to type "cd " and get "cdcd ")
- this gets a bit annoying - does anybody have the same
problem (or even a fix for it) ? - is it more a soft-
wareproblem (i hope :-) or maybe a hardwareproblem ?
(i had it on all kernels from 2.2.x to 2.4.0-testx)

a lot of thanks in advance

t

p.s.: it appears both on the console and under x - so it has
      to - if software - a problem in the kbd driver

--
thomas.graichen@innominate.de
technical director                                       innominate AG
clustering & security                                networking people
tel: +49.30.308806-13 fax: -77 web: http://innominate.de pgp: /pgp/tgr

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: keyboard problems
  2000-08-01  5:48 Thomas Graichen
@ 2000-08-01 20:37 ` Nelson Abramson
  2000-08-02  0:07 ` David A. Gatwood
  2000-08-03  6:17 ` Paul Mackerras
  2 siblings, 0 replies; 9+ messages in thread
From: Nelson Abramson @ 2000-08-01 20:37 UTC (permalink / raw)
  To: Thomas Graichen; +Cc: linuxppc-dev


Thomas Graichen wrote:

> i have a little keyboard problem on my blueberry imac with the
> standard usb keyboard: whenever i type something very quickly
> followed by space the typed in will be repeated before the
> space (best example: i want to type "cd " and get "cdcd ")
> - this gets a bit annoying - does anybody have the same
> problem (or even a fix for it) ? - is it more a soft-
> wareproblem (i hope :-) or maybe a hardwareproblem ?
> (i had it on all kernels from 2.2.x to 2.4.0-testx)

This is a well known issue with the usb keyboard driver.  It was a a
relatively lengthy thread a few months ago with no (AFAIK) solution,
other than "will be fixed in the future".

It has to do with depressing three keys at a time.  It takes a little
getting used to, but now, except for the occasional moment of serious
energy, I no longer strike three simultaneous keys on my Sawtooth.

HTH
--Nelson Abramson


** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: keyboard problems
  2000-08-01  5:48 Thomas Graichen
  2000-08-01 20:37 ` Nelson Abramson
@ 2000-08-02  0:07 ` David A. Gatwood
  2000-08-03  6:17 ` Paul Mackerras
  2 siblings, 0 replies; 9+ messages in thread
From: David A. Gatwood @ 2000-08-02  0:07 UTC (permalink / raw)
  To: Thomas Graichen, thomas.graichen; +Cc: linuxppc-dev


On 1 Aug 2000, Thomas Graichen wrote:

> i have a little keyboard problem on my blueberry imac with the
> standard usb keyboard: whenever i type something very quickly
> followed by space the typed in will be repeated before the
> space (best example: i want to type "cd " and get "cdcd ")
> - this gets a bit annoying - does anybody have the same
> problem (or even a fix for it) ? - is it more a soft-
> wareproblem (i hope :-) or maybe a hardwareproblem ?
> (i had it on all kernels from 2.2.x to 2.4.0-testx)

I believe I've experienced this as well.  As I recall, it occurs when two
non-modifier keys are pressed nearly simultaneously.  I suspect the issue
is that the driver is seeing a key up event and passing it on, and then at
a higher level, the kernel is getting confused because it gets two key
downs followed by two key ups, and proceeds to turn them all into bytes at
the tty level or something similar, instead of ignoring the key up events.

Probably the easiest fix would be to modify the driver to send a key up
event when a second key is pressed, even if the first key hasn't been
pressed, then to ignore the very next key up event for that first key....
Just a thought.  Of course, it's critical that such a change exclude the
modifier keys, so....  Not sure how easy that would end up being.

I'm not sure how to implement that sort of change beyond a conceptual
view, though, as I haven't really looked at Linux's USB drivers much.


Later,
David

---------------------------------------------------------------------
A brief Haiku:

Microsoft is bad.
It seems secure at first glance.
Then you read your mail.


** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: keyboard problems
  2000-08-01  5:48 Thomas Graichen
  2000-08-01 20:37 ` Nelson Abramson
  2000-08-02  0:07 ` David A. Gatwood
@ 2000-08-03  6:17 ` Paul Mackerras
  2000-08-04 12:31   ` Thomas Graichen
  2 siblings, 1 reply; 9+ messages in thread
From: Paul Mackerras @ 2000-08-03  6:17 UTC (permalink / raw)
  To: linuxppc-dev


Thomas Graichen writes:
>
> i have a little keyboard problem on my blueberry imac with the
> standard usb keyboard: whenever i type something very quickly
> followed by space the typed in will be repeated before the
> space (best example: i want to type "cd " and get "cdcd ")
> - this gets a bit annoying - does anybody have the same
> problem (or even a fix for it) ? - is it more a soft-
> wareproblem (i hope :-) or maybe a hardwareproblem ?
> (i had it on all kernels from 2.2.x to 2.4.0-testx)

It's simply a bug in the USB keyboard driver.  It just means that the
driver isn't coping with the "overflow" code that the keyboard sends
when it has too many keys depressed at once.

--
Paul Mackerras, Senior Open Source Researcher, Linuxcare, Inc.
+61 2 6262 8990 tel, +61 2 6262 8991 fax
paulus@linuxcare.com.au, http://www.linuxcare.com.au/
Linuxcare.  Support for the revolution.

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: keyboard problems
  2000-08-03  6:17 ` Paul Mackerras
@ 2000-08-04 12:31   ` Thomas Graichen
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Graichen @ 2000-08-04 12:31 UTC (permalink / raw)
  To: linuxppc-dev


Paul Mackerras <paulus@linuxcare.com.au> wrote:

> Thomas Graichen writes:
>>
>> i have a little keyboard problem on my blueberry imac with the
>> standard usb keyboard: whenever i type something very quickly
>> followed by space the typed in will be repeated before the
>> space (best example: i want to type "cd " and get "cdcd ")
>> - this gets a bit annoying - does anybody have the same
>> problem (or even a fix for it) ? - is it more a soft-
>> wareproblem (i hope :-) or maybe a hardwareproblem ?
>> (i had it on all kernels from 2.2.x to 2.4.0-testx)

> It's simply a bug in the USB keyboard driver.  It just means that the
> driver isn't coping with the "overflow" code that the keyboard sends
> when it has too many keys depressed at once.

any chance of this getting fixed in the next time ? - any patch
around to try ? (because it's close to unuseable for me this
way :-)

t

--
thomas.graichen@innominate.de
Technical Director                                       innominate AG
Clustering & Security                                networking people
tel: +49.30.308806-13  fax: -77                   http://innominate.de

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 9+ messages in thread

* keyboard problems
@ 2002-04-19 15:56 Johannes Weißl
  2002-04-19 17:35 ` Riley Williams
  2002-04-20 11:30 ` Albrecht Kleine
  0 siblings, 2 replies; 9+ messages in thread
From: Johannes Weißl @ 2002-04-19 15:56 UTC (permalink / raw)
  To: linux-8086

Hello,

I got a Sanyo XT with two 5.25 drives and without any harddisk.
I made a root and a boot floppy on my linux-pc with the command:

fdformat /dev/fd0d360 ; dd if=boot of=/dev/fd0d360 bs=1k count=360
fdformat /dev/fd0d360 ; dd if=root of=/dev/fd0d360 bs=1k count=360

Everything works fine, but when the Login-prompt is shown,
and I try to type "root", only cracy signs appear.

I'm using a German keyboard, because I live in Germany. I tried
several other old keyboards, but none of them worked.
Is there anyone with a non-us keyboard and knows what to do?
Or must I buy an us keyboard ?

-- 
cu,
Johannes Weifll
(sorry for my bad english)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: keyboard problems
  2002-04-19 15:56 keyboard problems Johannes Weißl
@ 2002-04-19 17:35 ` Riley Williams
  2002-04-20 11:30 ` Albrecht Kleine
  1 sibling, 0 replies; 9+ messages in thread
From: Riley Williams @ 2002-04-19 17:35 UTC (permalink / raw)
  To: Johannes Weißl; +Cc: Linux 8086

Hi Johannes.

> I got a Sanyo XT with two 5.25 drives and without any harddisk.
> I made a root and a boot floppy on my linux-pc with the command:

> fdformat /dev/fd0d360 ; dd if=boot of=/dev/fd0d360 bs=1k count=360
> fdformat /dev/fd0d360 ; dd if=root of=/dev/fd0d360 bs=1k count=360

> Everything works fine, but when the Login-prompt is shown, and I try
> to type "root", only cracy signs appear.

> I'm using a German keyboard, because I live in Germany. I tried
> several other old keyboards, but none of them worked. Is there
> anyone with a non-us keyboard and knows what to do? Or must I buy
> an US keyboard ?

It's true that the German keyboard has a different layout to the
standard US one, but the general layout is still the same, and you
should still get the standard ASCII characters when you press the keys
on their own.

However, if you're getting "Crazy signs" rather than normal ASCII
characters, you have other problems than that, and the problem is more
likely to be that you need an XT keyboard, but your keyboards are all AT
ones - IBM in their wisdom changed the keyboard protocol between the XT
and the AT, and you need the right one.

Best wishes from Riley.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: keyboard problems
  2002-04-19 15:56 keyboard problems Johannes Weißl
  2002-04-19 17:35 ` Riley Williams
@ 2002-04-20 11:30 ` Albrecht Kleine
  1 sibling, 0 replies; 9+ messages in thread
From: Albrecht Kleine @ 2002-04-20 11:30 UTC (permalink / raw)
  To: Johannes Weißl; +Cc: linux-8086

> Hello,

> I'm using a German keyboard, because I live in Germany. I tried
> several other old keyboards, but none of them worked.
> Is there anyone with a non-us keyboard and knows what to do?
> Or must I buy an us keyboard ?

Why not build your own elks kernel?

I am using this in .config:
.....
#
# Select a console driver
#
CONFIG_CONSOLE_DIRECT=y
# CONFIG_CONSOLE_BIOS is not set
# CONFIG_CONSOLE_SERIAL is not set
CONFIG_DCON_VT52=y
CONFIG_DCON_ANSI=y
# CONFIG_DCON_ANSI_PRINTK is not set
# CONFIG_KEYMAP_US is not set
# CONFIG_KEYMAP_BE is not set
# CONFIG_KEYMAP_UK is not set
CONFIG_KEYMAP_DE=y
^^^^^^^^^^^^^^^^^<-------------------!!!

# CONFIG_KEYMAP_DV is not set
# CONFIG_KEYMAP_ES is not set
# CONFIG_KEYMAP_FR is not set
# CONFIG_KEYMAP_SE is not set
CONFIG_DCON_KRAW=y
.......

Cheers,
Albrecht

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2002-04-20 11:30 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-04-19 15:56 keyboard problems Johannes Weißl
2002-04-19 17:35 ` Riley Williams
2002-04-20 11:30 ` Albrecht Kleine
     [not found] <8m5oaq$6tj$3@mate.bln.innominate.de>
2000-08-01 19:49 ` Thomas Graichen
  -- strict thread matches above, loose matches on Subject: below --
2000-08-01  5:48 Thomas Graichen
2000-08-01 20:37 ` Nelson Abramson
2000-08-02  0:07 ` David A. Gatwood
2000-08-03  6:17 ` Paul Mackerras
2000-08-04 12:31   ` Thomas Graichen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.