hush/console-tools/chvt.c

34 lines
791 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
1999-10-25 23:32:44 +00:00
/*
* Mini chvt implementation for busybox
1999-10-25 23:32:44 +00:00
*
* 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-25 23:32:44 +00:00
*/
#include "libbb.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) MAIN_EXTERNALLY_VISIBLE;
int chvt_main(int argc, char **argv)
1999-10-25 23:32:44 +00:00
{
int fd, num;
1999-10-25 23:32:44 +00:00
if (argc != 2) {
2003-03-19 09:13:01 +00:00
bb_show_usage();
}
2002-09-16 06:22:25 +00:00
fd = get_console_fd();
2007-08-23 10:52:52 +00:00
num = xatou_range(argv[1], 1, 63);
/* double cast suppresses "cast to ptr from int of different size */
xioctl(fd, VT_ACTIVATE, (void *)(ptrdiff_t)num);
xioctl(fd, VT_WAITACTIVE, (void *)(ptrdiff_t)num);
return EXIT_SUCCESS;
1999-10-25 23:32:44 +00:00
}