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
|
|
|
|
*/
|
|
|
|
#include "internal.h"
|
|
|
|
#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>
|
|
|
|
|
|
|
|
/* From <linux/vt.h> */
|
|
|
|
#define VT_ACTIVATE 0x5606 /* make vt active */
|
|
|
|
#define VT_WAITACTIVE 0x5607 /* wait for vt active */
|
|
|
|
|
1999-10-26 05:02:44 +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-02-09 01:28:47 +05:30
|
|
|
if ((argc != 2) || (**(argv + 1) == '-')) {
|
2000-04-21 06:56:49 +05:30
|
|
|
usage ("chvt N\n"
|
|
|
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
|
|
|
"\nChanges the foreground virtual terminal to /dev/ttyN\n"
|
|
|
|
#endif
|
|
|
|
);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
fd = get_console_fd("/dev/console");
|
|
|
|
num = atoi(argv[1]);
|
|
|
|
if (ioctl(fd, VT_ACTIVATE, num)) {
|
|
|
|
perror("VT_ACTIVATE");
|
|
|
|
exit(FALSE);
|
|
|
|
}
|
|
|
|
if (ioctl(fd, VT_WAITACTIVE, num)) {
|
|
|
|
perror("VT_WAITACTIVE");
|
|
|
|
exit(FALSE);
|
|
|
|
}
|
2000-06-19 22:55:40 +05:30
|
|
|
return(TRUE);
|
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:
|
|
|
|
*/
|