Unconditionalize USERCONFIG. Uh, thanks, David.

This commit is contained in:
Jordan K. Hubbard 1994-11-03 14:57:54 +00:00
parent 03076d6bbf
commit 8cf0da9ceb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4116
2 changed files with 2 additions and 6 deletions

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.83 1994/10/28 12:41:50 jkh Exp $
* $Id: machdep.c,v 1.84 1994/11/01 06:04:12 ache Exp $
*/
#include "npx.h"
@ -339,10 +339,8 @@ cpu_startup()
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
#ifdef USERCONFIG
if (boothowto & RB_CONFIG)
userconfig();
#endif
printf("avail memory = %d (%d pages)\n", ptoa(cnt.v_free_count), cnt.v_free_count);
printf("using %d buffers containing %d bytes of memory\n",
nbuf, bufpages * CLBYTES);

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.83 1994/10/28 12:41:50 jkh Exp $
* $Id: machdep.c,v 1.84 1994/11/01 06:04:12 ache Exp $
*/
#include "npx.h"
@ -339,10 +339,8 @@ cpu_startup()
callfree = callout;
for (i = 1; i < ncallout; i++)
callout[i-1].c_next = &callout[i];
#ifdef USERCONFIG
if (boothowto & RB_CONFIG)
userconfig();
#endif
printf("avail memory = %d (%d pages)\n", ptoa(cnt.v_free_count), cnt.v_free_count);
printf("using %d buffers containing %d bytes of memory\n",
nbuf, bufpages * CLBYTES);