In any case, since at least bugs 657,659 and 674 are resolved, I'm gonna make build (RC2) this weekend. ID Sev Pri Plt Assignee Status
If the patch succeded, good, otherwise it's the first rc2 bug. However Filip or anyone else can fix and check-in until sunday or even monday and have it still included.
I'd like to see this patch in svn. So more people can test it in many HW situations
Filip Navara wrote:
Subject: Re: [ros-dev] mouse and keyboaed From: Filip Navara navaraf@reactos.com Date: Fri, 05 Aug 2005 21:31:48 +0200 To: ReactOS Development List ros-dev@reactos.com
To: ReactOS Development List ros-dev@reactos.com
Message-ID: 42F3BEA4.4090803@reactos.com User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 References: 42F3B8C9.3070309@gmx.de In-Reply-To: 42F3B8C9.3070309@gmx.de Content-Type: multipart/mixed; boundary="------------050503090407040307040800"
Hartmut Birr wrote:
Hi,
something is wrong with the keyboard and mouse. I get the following message on real hardware and keyboard and mouse are not usable:
(drivers\input\i8042prt\registry.c:215) Can't read registry: c0000034 (drivers\input\i8042prt\registry.c:226) Manually set defaults (drivers\input\i8042prt\i8042prt.c:538) Got fe instead of 55 (drivers\input\i8042prt\i8042prt.c:565) Basic keyboard detection failed: c0000185
- Hartmut
Does the attached patch help?
I officially gave up on fixing i8042prt detection ... every time I change something it and fix behaviour on my system it breaks for others. If there is anybody interested in fixing it I can write down the list of problems...
- Filip
Index: i8042prt.c
--- i8042prt.c (revision 17073) +++ i8042prt.c (working copy) @@ -517,9 +517,6 @@ DevExt->MouseExists = FALSE; DevExt->KeyboardExists = FALSE;
if (!I8042Write(DevExt, I8042_DATA_PORT, 0x74))
return STATUS_TIMEOUT;I8042Flush();
if (!I8042Write(DevExt, I8042_CTRL_PORT, KBD_SELF_TEST))
Ros-dev mailing list Ros-dev@reactos.com http://reactos.com:8080/mailman/listinfo/ros-dev
Bug 657 has not been merged to the 0.2.7 branch yet, I was a little hasty in closing that bug. As far as the i8042prt bugs, I'm not going to hold up 0.2.7 for that. The i8042prt code is going to need alot of testing, and I don't want to rush though it, just to find out post release that it still happens to some people. The i8042prt code in the 0.2.7 branch works under vmware, qemu, and some (if not most) hardware.
Unless compelled otherwise, I'm not going to make it a 0.2.7 blocker.
On 8/5/05, Robert Köpferl rob@koepferl.de wrote:
In any case, since at least bugs 657,659 and 674 are resolved, I'm gonna make build (RC2) this weekend. ID Sev Pri Plt Assignee Status
If the patch succeded, good, otherwise it's the first rc2 bug. However Filip or anyone else can fix and check-in until sunday or even monday and have it still included.
I'd like to see this patch in svn. So more people can test it in many HW situations
Filip Navara wrote:
Filip Navara wrote:
Does the attached patch help?
I officially gave up on fixing i8042prt detection ... every time I change something it and fix behaviour on my system it breaks for others. If there is anybody interested in fixing it I can write down the list of problems...
- Filip
It does fix my problem.
- Hartmut