svn commit: r341600 - head/sys/kern

Brooks Davis brooks at FreeBSD.org
Wed Dec 5 17:35:16 UTC 2018


Author: brooks
Date: Wed Dec  5 17:35:15 2018
New Revision: 341600
URL: https://svnweb.freebsd.org/changeset/base/341600

Log:
  Remove never enabled support for "fastboot".
  
  This has been ifdef notyet since the import of BSD 4.4 Lite Kernel
  Sources in r1541.
  
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/kern/init_main.c

Modified: head/sys/kern/init_main.c
==============================================================================
--- head/sys/kern/init_main.c	Wed Dec  5 17:29:14 2018	(r341599)
+++ head/sys/kern/init_main.c	Wed Dec  5 17:35:15 2018	(r341600)
@@ -769,12 +769,6 @@ start_init(void *dummy)
 			*flagp++ = 's';
 			options++;
 		}
-#ifdef notyet
-                if (boothowto & RB_FASTBOOT) {
-			*flagp++ = 'f';
-			options++;
-		}
-#endif
 		if (options == 0)
 			*flagp++ = '-';
 		*flagp++ = 0;


More information about the svn-src-all mailing list