Add a few things that were missing, and fix some comments.
This commit is contained in:
parent
96f49a9e5c
commit
bc94b1cf89
|
@ -1,56 +1,61 @@
|
||||||
#
|
#
|
||||||
# GENERIC -- everything that's currently supported
|
# GENERIC -- everything that's currently supported
|
||||||
#
|
#
|
||||||
# $Id: TEST,v 1.19 1993/11/14 14:45:16 cgd Exp $
|
# $Id: TEST,v 1.20 1993/11/14 17:41:37 mycroft Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
# standard options
|
# standard options
|
||||||
machine "i386"
|
machine "i386"
|
||||||
options "I386_CPU" # 386DX, 386SX, etc.
|
options "I386_CPU" # 386DX, 386SX, etc.
|
||||||
options "I486_CPU" # 486DX, 486SX, 486SLC, etc.
|
options "I486_CPU" # 486DX, 486SX, 486SLC, etc.
|
||||||
#options DUMMY_NOPS # speed hack; dangerous
|
|
||||||
|
|
||||||
options GENERIC # historical
|
options GENERIC # historical
|
||||||
maxusers 16 # estimated number of users
|
maxusers 16 # estimated number of users
|
||||||
options TIMEZONE=300, DST=1 # time zone to read RTC in
|
options TIMEZONE=300, DST=1 # time zone to read RTC in
|
||||||
options SWAPPAGER # paging
|
options SWAPPAGER # paging
|
||||||
options VNODEPAGER,DEVPAGER # vnode and device node caching
|
options VNODEPAGER,DEVPAGER # vnode and device memory mapping
|
||||||
options DDB # kernel debugger; recommended
|
options DDB # kernel debugger
|
||||||
options DIAGNOSTIC # internal consistency checking
|
options DIAGNOSTIC # internal consistency checking
|
||||||
|
options PARANOID
|
||||||
|
|
||||||
options KTRACE # system call tracing, a la ktrace(1)
|
options KTRACE # system call tracing, a la ktrace(1)
|
||||||
options FIFO # fifos; recommended
|
options FIFO # fifos; recommended
|
||||||
options SYSVMSG # System V message queues
|
options SYSVMSG # System V message queues; see msg.h
|
||||||
options SYSVSEM # System V semaphores
|
options SYSVSEM # System V semaphores; see sem.h
|
||||||
#options SYSVSHM # System V shared memory; broken
|
#options SYSVSHM # System V shared memory; broken
|
||||||
#options "SHMMAXPGS=1024"
|
#options SHMMAXPGS=1024
|
||||||
options LKM # loadable kernel modules
|
options LKM # loadable kernel modules
|
||||||
|
|
||||||
# compatibility options
|
# compatibility options
|
||||||
options "COMPAT_NOMID" # old zmagic executables
|
options COMPAT_NOMID # old zmagic executables
|
||||||
options "COMPAT_43" # 4.3 system calls
|
options COMPAT_43 # 4.3 system calls
|
||||||
options "TCP_COMPAT_42" # 4.2 TCP bugs
|
options TCP_COMPAT_42 # 4.2 TCP bugs
|
||||||
|
|
||||||
# file system options
|
# file system options
|
||||||
options QUOTA # file system quotas
|
options QUOTA # file system quotas
|
||||||
options FFS # Berkeley fast file system
|
options FFS # Berkeley fast file system
|
||||||
#options FASTLINKS # fast symbolic links in FFS
|
#options FASTLINKS # create fast symbolic links in FFS
|
||||||
options MFS # memory file system; uses RAM and swap
|
options MFS # memory file system; uses RAM and swap
|
||||||
options NFSSERVER # Network File System server
|
options NFSSERVER # Network File System server
|
||||||
options NFSCLIENT # Network File System client
|
options NFSCLIENT # Network File System client
|
||||||
options ISOFS # ISO 9660 CD-ROM file system, with RR
|
options ISOFS # ISO 9660 CD-ROM file system, with RR
|
||||||
options MSDOSFS # MS-DOS FAT file system
|
options MSDOSFS # MS-DOS FAT file system
|
||||||
options FDESC # /dev/fd
|
options FDESC # /dev/fd
|
||||||
options KERNFS # kernel file system; recommended
|
options KERNFS # kernel file system
|
||||||
|
|
||||||
# networking options
|
# networking options
|
||||||
|
#options MCLSHIFT=12 # log2(size) of a mbuf cluster
|
||||||
|
#options SUBNETSARELOCAL=0 # ??
|
||||||
options GATEWAY # packet forwarding
|
options GATEWAY # packet forwarding
|
||||||
|
options DIRECTED_BROADCAST # broadcast across subnets
|
||||||
options INET # IP
|
options INET # IP
|
||||||
options NS # XNS
|
options NS # XNS
|
||||||
|
optoins NSIP # IDP over IP
|
||||||
options CCITT # X.25
|
options CCITT # X.25
|
||||||
options ISO # OSI
|
options ISO # OSI
|
||||||
options TPIP # ?
|
options ISO_X25ESIS # ESIS over X.25
|
||||||
options EON # ?
|
options TPIP # TP over IP
|
||||||
|
options EON # CLNP over IP
|
||||||
|
|
||||||
config netbsd swap generic
|
config netbsd swap generic
|
||||||
|
|
||||||
|
@ -131,4 +136,4 @@ pseudo-device bpfilter 4 # packet filter
|
||||||
pseudo-device sl 1 # compressed SLIP
|
pseudo-device sl 1 # compressed SLIP
|
||||||
pseudo-device ppp 1 # Point-to-Point Protocol
|
pseudo-device ppp 1 # Point-to-Point Protocol
|
||||||
pseudo-device tb 2 # tablet line discipline
|
pseudo-device tb 2 # tablet line discipline
|
||||||
#pseudo-device tun # missing header files
|
#pseudo-device tun # network tunneling
|
||||||
|
|
Loading…
Reference in New Issue