minix/drivers/tty/arch/arm/keyboard.c
Thomas Veerman b01e9ebfdb TTY: seperate hardware dependent parts + add new serial driver
.Split TTY in order to support both x86 and ARM.
.Add support for the TI 16750 UARTs on OMAP35x.
.Various other improvements:
  .Kernel messages are printed using generic terminal write
   functions. That is, they are no longer directly displayed
   on the console.
  .The console can now be displayed on any terminal. This
   is configured by the "console={tty00,tty01,ttyc2,ttyc3,ttyc4}"
   boot variable -- basically any valid /dev/tty* terminal.
  .Cutify kernel messages with colors. Configured by
   "kernelclr={1,2,3,4,5,6,7}" boot variable.
2012-10-30 11:33:29 +00:00

51 lines
418 B
C

/* Keyboard unsupport for ARM. Just stubs. */
#include <minix/ipc.h>
#include <termios.h>
#include "tty.h"
void
kbd_interrupt(message *m)
{
}
void
do_fkey_ctl(message *m)
{
}
void
do_kb_inject(message *m)
{
}
void
do_kbd(message *m)
{
}
void
do_kbdaux(message *m)
{
}
void
kb_init_once(void)
{
}
int
kbd_status(message *m)
{
return 0;
}
int
kbd_loadmap(message *m)
{
return 0;
}
void
kb_init(tty_t *tp)
{
}