aboutsummaryrefslogtreecommitdiff
path: root/toys/chvt.c
blob: 6504bff1942678b1a55272edd7a3ea87b503c250 (plain)
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
51
52
53
54
55
56
57
58
59
60
61
/* vi: set sw=4 ts=4:
 *
 * chvt.c - switch virtual terminals
 *
 * Copyright (C) 2008 David Anders <danders@amltd.com>
 *
 * Not in SUSv3.

USE_CHVT(NEWTOY(chvt, "<1", TOYFLAG_USR|TOYFLAG_SBIN))

config CHVT
	bool "chvt"
	default y
	help
	  usage: chvt N

	  Change to virtual terminal number N.  (This only works in text mode.)

	  Virtual terminals are the Linux VGA text mode displays, ordinarily
	  switched between via alt-F1, alt-F2, etc.  Use ctrl-alt-F1 to switch
	  from X to a virtual terminal, and alt-F6 (or F7, or F8) to get back.
*/

#include "toys.h"

#define VT_ACTIVATE		0x5606
#define VT_WAITACTIVE	0x5607

/* Note: get_console_fb() will need to be moved into a seperate lib section */
int get_console_fd()
{
	int fd;

	fd = open("/dev/console", O_RDWR);
	if (fd >= 0) return fd;

	fd = open("/dev/vc/0", O_RDWR);
	if (fd >= 0) return fd;

	fd = open("/dev/tty", O_RDWR);
	if (fd >= 0) return fd;

	return -1;
}

void chvt_main(void)
{
	int vtnum, fd;


	if(!*toys.optargs) return;

	vtnum=atoi(*toys.optargs);

	fd=get_console_fd();
	if (fd < 0 || ioctl(fd,VT_ACTIVATE,vtnum)
		|| ioctl(fd,VT_WAITACTIVE,vtnum))
	{
		perror_exit(NULL);
	}
}