Module Name: src Committed By: pooka Date: Wed Dec 16 20:59:04 UTC 2009
Modified Files: src/sys/rump/librump/rumpkern: rump.c Log Message: print spammy banner in spammy bootstrap To generate a diff of this commit: cvs rdiff -u -r1.147 -r1.148 src/sys/rump/librump/rumpkern/rump.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/rump/librump/rumpkern/rump.c diff -u src/sys/rump/librump/rumpkern/rump.c:1.147 src/sys/rump/librump/rumpkern/rump.c:1.148 --- src/sys/rump/librump/rumpkern/rump.c:1.147 Wed Dec 9 00:11:21 2009 +++ src/sys/rump/librump/rumpkern/rump.c Wed Dec 16 20:59:04 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: rump.c,v 1.147 2009/12/09 00:11:21 pooka Exp $ */ +/* $NetBSD: rump.c,v 1.148 2009/12/16 20:59:04 pooka Exp $ */ /* * Copyright (c) 2007 Antti Kantee. All Rights Reserved. @@ -28,7 +28,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.147 2009/12/09 00:11:21 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.148 2009/12/16 20:59:04 pooka Exp $"); #include <sys/param.h> #include <sys/atomic.h> @@ -184,6 +184,11 @@ else rump_inited = 1; + /* Print some silly banners for spammy bootstrap. */ + if (boothowto & AB_VERBOSE) { + printf("%s%s", copyright, version); + } + /* * Seed arc4random() with a "reasonable" amount of randomness. * Yes, this is a quick kludge which depends on the arc4random