diff options
author | mini <mini@FreeBSD.org> | 2002-07-03 06:42:43 +0000 |
---|---|---|
committer | mini <mini@FreeBSD.org> | 2002-07-03 06:42:43 +0000 |
commit | 5355db5ad28b4c74d3a2bf3ecec7cb9514f5cac0 (patch) | |
tree | 181e7a9b5610b991a01d420674ba0ef998a7e285 /sys/boot | |
parent | 46aac0b82f4235ec836db7bda7446aac4bcf5101 (diff) | |
download | FreeBSD-src-5355db5ad28b4c74d3a2bf3ecec7cb9514f5cac0.zip FreeBSD-src-5355db5ad28b4c74d3a2bf3ecec7cb9514f5cac0.tar.gz |
Add missing kernal tunables to loader.conf.
PR: i386/39085
Submitted by: David Yeske <dyeske@yahoo.com>
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/forth/loader.conf | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/boot/forth/loader.conf b/sys/boot/forth/loader.conf index 87a1668..405c62c 100644 --- a/sys/boot/forth/loader.conf +++ b/sys/boot/forth/loader.conf @@ -74,8 +74,24 @@ module_path="/boot/kernel;/boot/modules;/modules" # Set the module search path ############################################################## #hw.physmem="1G" # Limit phyiscal memory. See loader(8) +#kern.dfldsiz="" # Set the initial data size limit +#kern.dflssiz="" # Set the initial stack size limit +#kern.hz="100" # Set the kernel interval timer rate +#kern.maxbcache="" # Set the max buffer cache KVA storage +#kern.maxdsiz="" # Set the max data size +#kern.maxfiles="" # Set the sys. wide open files limit +#kern.maxproc="" # Set the maximum # of processes +#kern.maxssiz="" # Set the max stack size +#kern.maxswzone="" # Set the max swmeta KVA storage +#kern.maxtsiz="" # Set the max text size #kern.maxusers="32" # Set size of various static tables +#kern.nbuf="" # Set the number of buffer headers +#kern.ncallout="" # Set the maximum # of timer events +#kern.sgrowsiz="" # Set the amount to grow stack +#kern.ipc.maxsockets="" # Set the maximum number of sockets avaliable #kern.ipc.nmbclusters="" # Set the number of mbuf clusters +#kern.ipc.nmbufs="" # Set the maximum number of mbufs +#kern.ipc.nsfbufs="" # Set the number of sendfile(2) bufs #kern.vm.kmem.size="" # Sets the size of kernel memory (bytes) #machdep.pccard.pcic_irq="0" # Assigns PCCARD controller IRQ (0=polled) #net.inet.tcp.tcbhashsize="" # Set the value of TCBHASHSIZE |