2005-08-01 23:42:30 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* setconsole.c - redirect system console output
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004,2005 Enrik Berkhan <Enrik.Berkhan@inka.de>
|
2008-09-25 17:43:34 +05:30
|
|
|
* Copyright (C) 2008 Bernhard Reutner-Fischer
|
2005-08-01 23:42:30 +05:30
|
|
|
*
|
2006-05-20 00:59:19 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2005-08-01 23:42:30 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-08-01 23:42:30 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int setconsole_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int setconsole_main(int argc UNUSED_PARAM, char **argv)
|
2005-08-01 23:42:30 +05:30
|
|
|
{
|
2005-09-08 08:57:06 +05:30
|
|
|
const char *device = CURRENT_TTY;
|
2008-05-19 13:48:50 +05:30
|
|
|
bool reset;
|
2005-08-01 23:42:30 +05:30
|
|
|
|
2006-05-27 01:49:22 +05:30
|
|
|
#if ENABLE_FEATURE_SETCONSOLE_LONG_OPTIONS
|
2008-05-19 13:48:50 +05:30
|
|
|
static const char setconsole_longopts[] ALIGN1 =
|
|
|
|
"reset\0" No_argument "r"
|
|
|
|
;
|
2007-07-23 22:44:14 +05:30
|
|
|
applet_long_options = setconsole_longopts;
|
2006-05-27 01:49:22 +05:30
|
|
|
#endif
|
2008-05-19 13:48:50 +05:30
|
|
|
/* at most one non-option argument */
|
|
|
|
opt_complementary = "?1";
|
|
|
|
reset = getopt32(argv, "r");
|
2005-08-01 23:42:30 +05:30
|
|
|
|
2008-05-19 13:48:50 +05:30
|
|
|
argv += 1 + reset;
|
|
|
|
if (*argv) {
|
|
|
|
device = *argv;
|
2005-08-01 23:42:30 +05:30
|
|
|
} else {
|
2008-05-19 13:48:50 +05:30
|
|
|
if (reset)
|
2007-02-17 21:22:02 +05:30
|
|
|
device = DEV_CONSOLE;
|
2005-08-01 23:42:30 +05:30
|
|
|
}
|
|
|
|
|
2007-07-15 03:37:14 +05:30
|
|
|
xioctl(xopen(device, O_RDONLY), TIOCCONS, NULL);
|
2005-08-01 23:42:30 +05:30
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|