repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
RS: invoke a shell explicitly for scripts
[minix.git]
/
drivers
/
tty
/
arch
/
arm
/
keyboard.c
blob
3c6c1e570c675badf51e636c916da8371279f5b4
1
/* Keyboard unsupport for ARM. Just stubs. */
2
#include <minix/ipc.h>
3
#include <termios.h>
4
#include
"tty.h"
5
6
void
7
kbd_interrupt
(
message
*
m
)
8
{
9
}
10
11
void
12
do_fkey_ctl
(
message
*
m
)
13
{
14
}
15
16
void
17
do_kb_inject
(
message
*
m
)
18
{
19
}
20
21
void
22
do_kbd
(
message
*
m
)
23
{
24
}
25
26
void
27
do_kbdaux
(
message
*
m
)
28
{
29
}
30
31
void
32
kb_init_once
(
void
)
33
{
34
}
35
36
int
37
kbd_status
(
message
*
m
)
38
{
39
return
0
;
40
}
41
42
int
43
kbd_loadmap
(
message
*
m
)
44
{
45
return
0
;
46
}
47
48
void
49
kb_init
(
tty_t
*
tp
)
50
{
51
}