blob: 52d2608aa7cef36b59760c196f376b121952be33 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Rob Landley87848d92006-03-27 23:23:43 +00002/*
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00003 * setlogcons: Send kernel messages to the current console or to console N
Rob Landley87848d92006-03-27 23:23:43 +00004 *
5 * Copyright (C) 2006 by Jan Kiszka <jan.kiszka@web.de>
6 *
7 * Based on setlogcons (kbd-1.12) by Andries E. Brouwer
8 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02009 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Rob Landley87848d92006-03-27 23:23:43 +000010 */
11
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Rob Landley87848d92006-03-27 23:23:43 +000013
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000014int setlogcons_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000015int setlogcons_main(int argc UNUSED_PARAM, char **argv)
Rob Landley87848d92006-03-27 23:23:43 +000016{
17 struct {
18 char fn;
19 char subarg;
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000020 } arg = { 11, /* redirect kernel messages */
21 0 /* to specified console (current as default) */
22 };
Rob Landley87848d92006-03-27 23:23:43 +000023
Denis Vlasenko1d426652008-03-17 09:09:09 +000024 if (argv[1])
25 arg.subarg = xatou_range(argv[1], 0, 63);
Rob Landley87848d92006-03-27 23:23:43 +000026
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000027 xioctl(xopen(VC_1, O_RDONLY), TIOCLINUX, &arg);
Rob Landley87848d92006-03-27 23:23:43 +000028
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000029 return EXIT_SUCCESS;
Rob Landley87848d92006-03-27 23:23:43 +000030}