busybox/console-tools/chvt.c

34 lines
683 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
1999-10-26 05:02:44 +05:30
/*
* Mini chvt implementation for busybox
1999-10-26 05:02:44 +05:30
*
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
1999-10-26 05:02:44 +05:30
*/
#include "busybox.h"
/* From <linux/vt.h> */
enum {
VT_ACTIVATE = 0x5606, /* make vt active */
VT_WAITACTIVE = 0x5607 /* wait for vt active */
};
int chvt_main(int argc, char **argv)
1999-10-26 05:02:44 +05:30
{
int fd, num;
1999-10-26 05:02:44 +05:30
if (argc != 2) {
2003-03-19 14:43:01 +05:30
bb_show_usage();
}
2002-09-16 11:52:25 +05:30
fd = get_console_fd();
2006-10-08 18:19:22 +05:30
num = xatoul_range(argv[1], 1, 63);
2006-03-11 04:46:25 +05:30
if ((-1 == ioctl(fd, VT_ACTIVATE, num))
|| (-1 == ioctl(fd, VT_WAITACTIVE, num))) {
2005-09-08 08:57:06 +05:30
bb_perror_msg_and_die("ioctl");
}
return EXIT_SUCCESS;
1999-10-26 05:02:44 +05:30
}