1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <sys/kd.h>
#include <stdlib.h>
#include <unistd.h>
void die(char * mess) {
perror(mess);
exit(1);
}
#define MAXFONTSIZE 65536
int main(void) {
char buf[MAXFONTSIZE];
struct console_font_op cfo;
unsigned short map[E_TABSZ];
struct unipair descs[2048];
struct unimapdesc d;
int fd;
if ((fd = open("/dev/tty0", O_RDONLY)) < 0)
die("open");
cfo.op = KD_FONT_OP_GET;
cfo.flags = 0;
cfo.width = 8;
cfo.height = 16;
cfo.charcount = 512;
cfo.data = buf;
if (ioctl(fd, KDFONTOP, &cfo))
die("KDFONTOP KD_FONT_OP_GET");
if (ioctl(fd, GIO_UNISCRNMAP, map))
die("GIO_UNISCRNMAP");
d.entry_ct = 2048;
d.entries = descs;
if (ioctl(fd, GIO_UNIMAP, &d))
die("GIO_UNIMAP");
write(1, &cfo, sizeof(cfo));
write(1, buf, sizeof(buf));
write(1, map, sizeof(map));
write(1, &d.entry_ct, sizeof(d.entry_ct));
write(1, descs, d.entry_ct * sizeof(descs[0]));
return 0;
}
|