Subject: Re: kernel params
To: rj45 <rj45@lart.xmission.com>
From: Ignatios Souvatzis <ignatios@cs.uni-bonn.de>
List: port-vax
Date: 07/25/2000 14:13:52
On Tue, Jul 25, 2000 at 06:02:33AM -0600, rj45 wrote:
> 
> which is the entry I ahve to modify in  /sys/arch/vax/include/param.h ?

sorry, I had to look it up myself.

Of course it was not param.h, but vmparam.h... and all those constants are
#ifndef'ed so you can set them using configuration file options.


options 'MAXTSIZE=(8*1024*1024)'	# max text size
options 'MAXDSIZE=(24*1024*1024)'	# max data size
options 'MAXSSIZE=(8*1024*1024)'	# max stack size
options 'DFLDSIZ=(16*1024*1024)'	# initial data size
options 'DFLSSIZ=(512*1024)'		# initial stack size


Change to taste, config, make depend and make.

	-is