blob: 2ea36f0397c1f3df51ff431e59675fc1d84203ba [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 */
Denys Vlasenko6d932992016-11-23 10:39:27 +010011//config:config SETLOGCONS
12//config: bool "setlogcons"
13//config: default y
14//config: select PLATFORM_LINUX
15//config: help
16//config: This program redirects the output console of kernel messages.
17
18//applet:IF_SETLOGCONS(APPLET(setlogcons, BB_DIR_USR_SBIN, BB_SUID_DROP))
19
20//kbuild:lib-$(CONFIG_SETLOGCONS) += setlogcons.o
Rob Landley87848d92006-03-27 23:23:43 +000021
Pere Orga55068c42011-03-27 23:42:28 +020022//usage:#define setlogcons_trivial_usage
Denys Vlasenko6e177662014-07-04 13:58:57 +020023//usage: "[N]"
Pere Orga55068c42011-03-27 23:42:28 +020024//usage:#define setlogcons_full_usage "\n\n"
Denys Vlasenko6e177662014-07-04 13:58:57 +020025//usage: "Redirect the kernel output to console N. Default:0 (current console)"
Pere Orga55068c42011-03-27 23:42:28 +020026
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000027#include "libbb.h"
Rob Landley87848d92006-03-27 23:23:43 +000028
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000029int setlogcons_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000030int setlogcons_main(int argc UNUSED_PARAM, char **argv)
Rob Landley87848d92006-03-27 23:23:43 +000031{
32 struct {
33 char fn;
34 char subarg;
Denys Vlasenko69675782013-01-14 01:34:48 +010035 } arg = {
36 11, /* redirect kernel messages */
37 0 /* to specified console (current as default) */
38 };
Rob Landley87848d92006-03-27 23:23:43 +000039
Denis Vlasenko1d426652008-03-17 09:09:09 +000040 if (argv[1])
41 arg.subarg = xatou_range(argv[1], 0, 63);
Rob Landley87848d92006-03-27 23:23:43 +000042
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000043 xioctl(xopen(VC_1, O_RDONLY), TIOCLINUX, &arg);
Rob Landley87848d92006-03-27 23:23:43 +000044
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000045 return EXIT_SUCCESS;
Rob Landley87848d92006-03-27 23:23:43 +000046}