Date: Wed, 5 Dec 2018 17:35:15 +0000 (UTC) From: Brooks Davis <brooks@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r341600 - head/sys/kern Message-ID: <201812051735.wB5HZFuc004517@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812051735.wB5HZFuc004517>