2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-26 05:02:44 +05:30
|
|
|
/*
|
2003-10-22 16:00:53 +05:30
|
|
|
* Mini chvt implementation for busybox
|
1999-10-26 05:02:44 +05:30
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2003-10-22 16:00:53 +05:30
|
|
|
*
|
2006-05-20 00:59:19 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-10-26 05:02:44 +05:30
|
|
|
*/
|
2001-03-10 05:29:51 +05:30
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2000-07-09 00:25:24 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int chvt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2000-02-09 01:28:47 +05:30
|
|
|
int chvt_main(int argc, char **argv)
|
1999-10-26 05:02:44 +05:30
|
|
|
{
|
2008-05-19 13:48:50 +05:30
|
|
|
int num;
|
1999-10-26 05:02:44 +05:30
|
|
|
|
2004-01-14 13:04:37 +05:30
|
|
|
if (argc != 2) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2003-10-22 16:00:53 +05:30
|
|
|
}
|
|
|
|
|
2007-08-23 16:22:52 +05:30
|
|
|
num = xatou_range(argv[1], 1, 63);
|
2008-08-06 05:02:27 +05:30
|
|
|
console_make_active(get_console_fd_or_die(), num);
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-10-26 05:02:44 +05:30
|
|
|
}
|