blob: c76a5a42b164d7567309bec13ec75cd3dc199530 [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
Pere Orga55068c42011-03-27 23:42:28 +020012//usage:#define setlogcons_trivial_usage
13//usage: "N"
14//usage:#define setlogcons_full_usage "\n\n"
15//usage: "Redirect the kernel output to console N (0 for current)"
16
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000017#include "libbb.h"
Rob Landley87848d92006-03-27 23:23:43 +000018
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000019int setlogcons_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000020int setlogcons_main(int argc UNUSED_PARAM, char **argv)
Rob Landley87848d92006-03-27 23:23:43 +000021{
22 struct {
23 char fn;
24 char subarg;
Denys Vlasenko69675782013-01-14 01:34:48 +010025 } arg = {
26 11, /* redirect kernel messages */
27 0 /* to specified console (current as default) */
28 };
Rob Landley87848d92006-03-27 23:23:43 +000029
Denis Vlasenko1d426652008-03-17 09:09:09 +000030 if (argv[1])
31 arg.subarg = xatou_range(argv[1], 0, 63);
Rob Landley87848d92006-03-27 23:23:43 +000032
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000033 xioctl(xopen(VC_1, O_RDONLY), TIOCLINUX, &arg);
Rob Landley87848d92006-03-27 23:23:43 +000034
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000035 return EXIT_SUCCESS;
Rob Landley87848d92006-03-27 23:23:43 +000036}