Stop printing out the Nfoo options help, since these tunables are about to

go away.
This commit is contained in:
Mike Smith 2000-09-22 21:07:24 +00:00
parent b9d13dac47
commit 531454fd6d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66264

View File

@ -276,7 +276,6 @@ static void sasEntry( void );
static void bhdEntry( void );
static void cbasmEntry( void );
static void doOptionList( void );
static void doDmesg( void );
static void pnstr( char* s, int c );
@ -379,9 +378,6 @@ main( int argc, char *argv[] )
else
MPConfigTableHeader( mpfps.pap );
/* build "options" entries for the kernel config file */
doOptionList();
/* do a dmesg output */
if ( dmesg )
doDmesg();
@ -1092,28 +1088,6 @@ doDmesg( void )
}
/*
* build "options" entries for the kernel config file
*/
static void
doOptionList( void )
{
puts( SEP_LINE );
printf( "# SMP kernel config file options:\n\n" );
printf( "\n# Required:\n" );
printf( "options SMP\t\t\t# Symmetric MultiProcessor Kernel\n" );
printf( "options APIC_IO\t\t\t# Symmetric (APIC) I/O\n" );
printf( "\n# Optional (built-in defaults will work in most cases):\n" );
printf( "#options NCPU=%d\t\t\t# number of CPUs\n", ncpu );
printf( "#options NBUS=%d\t\t\t# number of busses\n", nbus );
printf( "#options NAPIC=%d\t\t\t# number of IO APICs\n", napic );
printf( "#options NINTR=%d\t\t# number of INTs\n",
(nintr < 24) ? 24 : nintr );
}
/*
*
*/