Dave Frodin ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1983
-gerrit commit 6a9191f12c6ad50b7aebe535d1216f08fb7d491a Author: Dave Frodin <[email protected]> Date: Wed Dec 5 17:22:47 2012 -0700 coreinfo: changes to get the usb keyboard working Change-Id: I495b42055a54603e4efb92b2845051434d88432d Signed-off-by: Dave Frodin <[email protected]> --- payloads/coreinfo/coreinfo.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/payloads/coreinfo/coreinfo.c b/payloads/coreinfo/coreinfo.c index 846cf77..62224e7 100644 --- a/payloads/coreinfo/coreinfo.c +++ b/payloads/coreinfo/coreinfo.c @@ -271,6 +271,13 @@ int main(void) { int i, j; +#if defined(CONFIG_USB) + usb_initialize(); + /* the 1st call to havekey prints out info */ + /* lets do one here before the screen init */ + havekey(); +#endif + initscr(); init_pair(1, COLOR_WHITE, COLOR_GREEN); @@ -291,6 +298,9 @@ int main(void) categories[i].modules[j]->init(); } + noecho(); + keypad(stdscr, TRUE); /* there may be a Fn key */ + loop(); return 0; -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

