Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Jan 2004 04:01:16 -0800 (PST)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 45138 for review
Message-ID:  <200401111201.i0BC1GQ0057474@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=45138

Change 45138 by jmallett@jmallett_oingo on 2004/01/11 04:01:05

	sysinit stuff if bootverbose.

Affected files ...

.. //depot/projects/mips/sys/kern/init_main.c#14 edit

Differences ...

==== //depot/projects/mips/sys/kern/init_main.c#14 (text+ko) ====

@@ -209,8 +209,9 @@
 		if ((*sipp)->subsystem == SI_SUB_DONE)
 			continue;
 
-		printf("SYSINIT[%8x] = %p:%p\n", (*sipp)->subsystem,
-		       sipp, *sipp);
+		if (bootverbose)
+			printf("SYSINIT[%8x] = %p:%p\n", (*sipp)->subsystem,
+			       sipp, *sipp);
 
 		/* Call function */
 		(*((*sipp)->func))((*sipp)->udata);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200401111201.i0BC1GQ0057474>