Reduce ramdisk size to the amount that is really needed for optimal
space saving. Reduce number of ptys to 2. Use NFS_V2_ONLY.
This commit is contained in:
parent
48b43cdfb9
commit
0619e37229
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: INSTALL_TINY,v 1.25 2000/09/26 11:51:14 ad Exp $
|
||||
# $NetBSD: INSTALL_TINY,v 1.26 2000/09/27 16:54:56 fvdl Exp $
|
||||
#
|
||||
# INSTALL_TINY - Tiny Installation kernel, suitable for 4M machines.
|
||||
#
|
||||
|
@ -21,7 +21,7 @@ makeoptions COPTS="-Os" # Optimise for space. Implies -O2
|
|||
options MEMORY_DISK_HOOKS
|
||||
options MEMORY_DISK_IS_ROOT # force root on memory disk
|
||||
options MEMORY_DISK_SERVER=0 # no userspace memory disk support
|
||||
options MINIROOTSIZE=3072 # size of memory disk, in blocks
|
||||
options MINIROOTSIZE=2688 # size of memory disk, in blocks
|
||||
#options MINIROOTSIZE=2880 # 1.44M, same as a floppy
|
||||
|
||||
maxusers 2 # estimated number of users
|
||||
|
@ -113,7 +113,7 @@ file-system KERNFS # /kern
|
|||
# Filesystem options
|
||||
#options QUOTA # UFS quotas
|
||||
#options NFSSERVER # Network File System server
|
||||
#options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
|
||||
options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
|
||||
options VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
|
||||
#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
|
||||
# immutable) behave as system flags.
|
||||
|
@ -488,7 +488,7 @@ pseudo-device sl 2 # Serial Line IP
|
|||
#pseudo-device tun 2 # network tunneling over tty
|
||||
|
||||
# miscellaneous pseudo-devices
|
||||
pseudo-device pty # pseudo-terminals
|
||||
pseudo-device pty 2 # pseudo-terminals
|
||||
#pseudo-device tb 1 # tablet line discipline
|
||||
#pseudo-device rnd # /dev/random and in-kernel generator
|
||||
#options RND_COM # use "com" randomness as well (BROKEN)
|
||||
|
|
Loading…
Reference in New Issue