1 /* vi: set sw=4 ts=4: */
2 /* dmesg.c -- Print out the contents of the kernel ring buffer
3 * Created: Sat Oct 9 16:19:47 1993
4 * Revised: Thu Oct 28 21:52:17 1993 by faith@cs.unc.edu
5 * Copyright 1993 Theodore Ts'o (tytso@athena.mit.edu)
6 * This program comes with ABSOLUTELY NO WARRANTY.
7 * Modifications by Rick Sladkey (jrs@world.std.com)
8 * Larger buffersize 3 June 1998 by Nicolai Langfeldt, based on a patch
9 * by Peeter Joot. This was also suggested by John Hudson.
10 * 1999-02-22 Arkadiusz Mi¶kiewicz <misiek@misiek.eu.org>
11 * - added Native Language Support
13 * from util-linux -- adapted for busybox by
14 * Erik Andersen <andersee@debian.org>. I ripped out Native Language
15 * Support, replaced getopt, added some gotos for redundant stuff.
22 #if __GNU_LIBRARY__ < 5
25 # define __NR_klogctl __NR_syslog
26 static inline _syscall3(int, klogctl, int, type, char *, b, int, len);
28 #define klogctl syslog
32 # include <sys/klog.h>
35 int dmesg_main(int argc, char **argv)
46 while ((c = getopt(argc, argv, "cn:s:")) != EOF) {
60 bufsize = atoi(optarg);
72 n = klogctl(cmd, NULL, level);
81 buf = (char *) xmalloc(bufsize);
82 n = klogctl(cmd, buf, bufsize);
88 for (i = 0; i < n; i++) {
89 if ((i == 0 || buf[i - 1] == '\n') && buf[i] == '<') {
91 while (buf[i] >= '0' && buf[i] <= '9')