diff options
author | grr <grr@cvs.openbsd.org> | 1997-06-06 00:07:56 +0000 |
---|---|---|
committer | grr <grr@cvs.openbsd.org> | 1997-06-06 00:07:56 +0000 |
commit | 6060529b193842456cc2a6f7bb4038331159ce8a (patch) | |
tree | 7a96dd64b32099aed5ec824ea48a310970f9b6ce /sys/arch/sparc/conf | |
parent | e17d5713fdfb721c5673cc962be3070871411e2e (diff) |
tweaks to make the ramdisk kernel smaller and also reduce the vm requirements, since vm & pm aren't much different in the install environment
Diffstat (limited to 'sys/arch/sparc/conf')
-rw-r--r-- | sys/arch/sparc/conf/RAMDISK | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/sys/arch/sparc/conf/RAMDISK b/sys/arch/sparc/conf/RAMDISK index ee821fffc09..c963e874815 100644 --- a/sys/arch/sparc/conf/RAMDISK +++ b/sys/arch/sparc/conf/RAMDISK @@ -2,12 +2,20 @@ # Machine architecture; required by config(8) machine sparc -maxusers 32 + +# maxusers means mostly "let's get small" in terms of kernel malloc's +maxusers 2 +# force default minimum number of buffers and dependents +option NBUF=16 +# this should only waste 64K vs. 512K, but hopefully enough for ftp et.al. +option NMBCLUSTERS=32 # the size for MINIROOTSIZE must insure: 16384+size(bsd) < RELOC(boot,bootxx) option RAMDISK_HOOKS option MINIROOTSIZE=4352 +#option DDB # need this to see what's happening + option TIMEZONE=0 # time zone to adjust RTC time by option DST=0 # daylight savings time used by RTC @@ -17,7 +25,7 @@ option DIAGNOSTIC # internal consistency checks option FFS # UFS option NFSCLIENT # Network File System client option CD9660 # ISO 9660 + Rock Ridge file system -option FDESC # /dev/fd +#option FDESC # /dev/fd #option FIFO # FIFOs; RECOMMENDED option KERNFS # /kern option INET # IP + ICMP + TCP + UDP @@ -250,8 +258,8 @@ pseudo-device kbd # Sun keyboard pseudo-device rd 2 pseudo-device loop 1 # network loopback pseudo-device sl 2 # CSLIP -pseudo-device ppp 2 # PPP -pseudo-device pty 64 # pseudo-terminals +# pseudo-device ppp 2 # PPP +pseudo-device pty 4 # pseudo-terminals #pseudo-device ccd 4 # concatenated disk devices |