From: Thomas Marteau <marteaut@esiee.fr>
To: Jari Eskelinen <jari.eskelinen@enfo.fi>,
"parisc-linux@parisc-linux.org" <parisc-linux@parisc-linux.org>
Subject: Re: [parisc-linux] 712/60, kernel 2.4.6 and keyboard.
Date: Wed, 11 Jul 2001 17:25:33 +0200 [thread overview]
Message-ID: <3B4C6FED.BAA6CD6F@esiee.fr> (raw)
In-Reply-To: JA8AAAAAAd8izgABYQABMhINAcxU@enfo.fi
Hi Jari,
>
> Hi!
>
> I have 712/60 machine and I have used 2.4.0-pa30 kernel with it with great success. Today I tried to compile 2.4.6-pa11 kernel (cross-compiling with my P800, it was horrible sloooooow with 721/60 :) and it almost succeeded. Everything else works, but PS/2 keyboard won't just work. Nothing comes to screen when typing. Logging from network works as usual. Kernel seems to recognise keyboard:
>
> PS/2 keyboard controller at 0xf0108000 (irq 69) found, device attached.
> Lasi PS/2 wait 3734
> PS/2 psaux controller at 0xf0108100 (irq 69) found, device attached.
>
For the moment, my conclusion is that gsc_ps2_kbd_ops are not
registered. That's why you should not have the leds working on your
keyboard too. If you want the keyboard working, you can add a little
hack but it is NOT the best solution.
In drivers/char/hp_psaux.c:
You have
switch (id) {
case 0:
register_kbd_ops(&gsc_ps2_kbd_ops);
break;
case 1:
And, you can put this:
switch (id) {
case 0:
-> inited++;
register_kbd_ops(&gsc_ps2_kbd_ops);
break;
case 1:
Agian, this is not a permanent solution, Thomas
ESIEE Team
next prev parent reply other threads:[~2001-07-11 15:37 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-07-11 16:18 [parisc-linux] 712/60, kernel 2.4.6 and keyboard Jari Eskelinen
2001-07-11 15:25 ` Thomas Marteau [this message]
2001-07-11 15:32 ` Richard Hirst
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3B4C6FED.BAA6CD6F@esiee.fr \
--to=marteaut@esiee.fr \
--cc=jari.eskelinen@enfo.fi \
--cc=parisc-linux@parisc-linux.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.