Remove ifdef BOOTCDROM option to start init.

When BOOTCDROM is defined (via CFLAGS as there is no config option)
it causes -C to be passed to init, but our init and the version of
sysinstall I glanced at in 6.x don't support -C. The last plausibly
related support was removed from the tree in 1995.

Reviewed by:	kib
Sponsored by:	DARPA, AFRL
Differential Revision:	https://reviews.freebsd.org/D18431
This commit is contained in:
Brooks Davis 2018-12-05 17:29:14 +00:00
parent 006678fd05
commit 7a5db3a770
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=341599

View File

@ -774,10 +774,6 @@ start_init(void *dummy)
*flagp++ = 'f';
options++;
}
#endif
#ifdef BOOTCDROM
*flagp++ = 'C';
options++;
#endif
if (options == 0)
*flagp++ = '-';