From: James S. <jsi...@tr...> - 2001-12-27 17:31:45
|
> Done. The Input stuff (and namely HID/HIDBP) now compiles fine again on > 2.5.1. I tried to boot that kernel, and failed with 'unable to open the > initial console' message from I think the init process. I do have only > VGA console enabled (no fbcon ...). You must have more than one keybaord attached but only one display. I ran into this problem to. I will fix it today. The problem is the way a struct vt_struct is added to the link list versus how a keybaord is attached. When a new vt_struct is added to the link list it is placed int front of the link list. This means the last VT in the list is the first VT. Now when a keyboard is detected it scans the VT list from the head to the end. That is why the no console error. I will work on the problem right now. |