diff options
author | wdenk <wdenk> | 2004-01-16 00:30:56 (GMT) |
---|---|---|
committer | wdenk <wdenk> | 2004-01-16 00:30:56 (GMT) |
commit | 1c43771ba888bb9260692636d645fb2d73390a4b (patch) | |
tree | 5fbd3865ac2a0d926396927ba2a192c5f1609339 /lib_ppc | |
parent | c83bf6a2d00ef846c1fb2b0c60540f03ef203125 (diff) | |
download | u-boot-1c43771ba888bb9260692636d645fb2d73390a4b.tar.xz |
[Strange. I _did_ check these in before. Seems SF restored an old
version of the repository???]
* Patch by Reinhard Meyer, 09 Jan 2004:
- add RTC support for MPC5200 based boards (requires RTC_XTAL)
* Add support for IDE LED on BMS2003 board
(exclusive with status LED!)
* Add support for PS/2 keyboard (used with PS/2 multiplexor on
BMS2003 board)
* Patches by Reinhard Meyer, 4 Jan 2004 + 7 Jan 2004:
Add common files for "emk" boards
Diffstat (limited to 'lib_ppc')
-rw-r--r-- | lib_ppc/board.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 8e05df1..d18a9a3 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -67,6 +67,9 @@ #if defined(CFG_INIT_RAM_LOCK) && defined(CONFIG_E500) #include <asm/cache.h> #endif +#ifdef CONFIG_PS2KBD +#include <keyboard.h> +#endif #if (CONFIG_COMMANDS & CFG_CMD_DOC) void doc_init (void); @@ -956,6 +959,11 @@ void board_init_r (gd_t *id, ulong dest_addr) } #endif +#ifdef CONFIG_PS2KBD + puts ("PS/2: "); + kbd_init(); +#endif + #ifdef CONFIG_MODEM_SUPPORT { extern int do_mdm_init; |