svn commit: r283333 - stable/10/sys/kern

Ian Lepore ian at FreeBSD.org
Sat May 23 22:34:26 UTC 2015


Author: ian
Date: Sat May 23 22:34:25 2015
New Revision: 283333
URL: https://svnweb.freebsd.org/changeset/base/283333

Log:
  MFC r274711:
  
   Stop using early_putc immediately after configuring console with cninit()

Modified:
  stable/10/sys/kern/kern_cons.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/kern/kern_cons.c
==============================================================================
--- stable/10/sys/kern/kern_cons.c	Sat May 23 22:33:06 2015	(r283332)
+++ stable/10/sys/kern/kern_cons.c	Sat May 23 22:34:25 2015	(r283333)
@@ -156,6 +156,13 @@ cninit(void)
 	 * Make the best console the preferred console.
 	 */
 	cnselect(best_cn);
+
+#ifdef EARLY_PRINTF
+	/*
+	 * Release early console.
+	 */
+	early_putc = NULL;
+#endif
 }
 
 void


More information about the svn-src-all mailing list