2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-26 05:02:44 +05:30
|
|
|
/*
|
|
|
|
* chvt.c - aeb - 940227 - Change virtual terminal
|
|
|
|
*
|
|
|
|
* busyboxed by Erik Andersen
|
|
|
|
*/
|
2001-03-10 05:29:51 +05:30
|
|
|
|
|
|
|
/* getopt not needed */
|
|
|
|
|
1999-10-26 05:02:44 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
2000-07-09 00:25:24 +05:30
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ioctl.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
2000-07-09 00:25:24 +05:30
|
|
|
|
|
|
|
/* From <linux/vt.h> */
|
2001-01-24 04:00:04 +05:30
|
|
|
static const int VT_ACTIVATE = 0x5606; /* make vt active */
|
|
|
|
static const int VT_WAITACTIVE = 0x5607; /* wait for vt active */
|
2000-07-09 00:25:24 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
int chvt_main(int argc, char **argv)
|
1999-10-26 05:02:44 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
int fd, num;
|
1999-10-26 05:02:44 +05:30
|
|
|
|
2000-07-15 04:58:47 +05:30
|
|
|
if ((argc != 2) || (**(argv + 1) == '-'))
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2002-09-16 11:52:25 +05:30
|
|
|
fd = get_console_fd();
|
2000-02-09 01:28:47 +05:30
|
|
|
num = atoi(argv[1]);
|
2000-12-14 11:14:36 +05:30
|
|
|
if (ioctl(fd, VT_ACTIVATE, num))
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die("VT_ACTIVATE");
|
2000-12-14 11:14:36 +05:30
|
|
|
if (ioctl(fd, VT_WAITACTIVE, num))
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die("VT_WAITACTIVE");
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-10-26 05:02:44 +05:30
|
|
|
}
|
2000-03-05 02:49:32 +05:30
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|