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
/
console.c
blob
3c820bceaea6b07a70b47016a906ca3f05b6ef87
1
/* Console unsupport for ARM. Just stubs. */
2
#include <minix/ipc.h>
3
#include <termios.h>
4
#include
"tty.h"
5
6
void
7
do_video
(
message
*
m
)
8
{
9
}
10
11
void
12
scr_init
(
tty_t
*
tp
)
13
{
14
}
15
16
void
17
cons_stop
(
void
)
18
{
19
}
20
21
int
22
con_loadfont
(
message
*
m
)
23
{
24
return
0
;
25
}
26