Forgot PFIL_HOOKS; correct this. Also, organize options less insanely.
This commit is contained in:
parent
6f224ae59f
commit
b19a7547d4
@ -1,4 +1,4 @@
|
||||
# $NetBSD: GENERIC,v 1.53 1997/01/25 22:41:40 scottr Exp $
|
||||
# $NetBSD: GENERIC,v 1.54 1997/01/26 18:41:19 scottr Exp $
|
||||
#
|
||||
# GENERIC
|
||||
|
||||
@ -7,48 +7,59 @@ include "arch/mac68k/conf/std.mac68k"
|
||||
maxusers 16
|
||||
|
||||
# Standard system options
|
||||
options DIAGNOSTIC # DEBUG for extra kernel debugging
|
||||
options KTRACE # system call tracing support
|
||||
options KTRACE # system call tracing
|
||||
options SYSVMSG # System V message queues
|
||||
options SYSVSEM # System V semaphores
|
||||
options SYSVSHM # System V shared memory
|
||||
#options SHMMAXPGS=1024 # 1024 pages is the default
|
||||
options LKM # loadable kernel modules
|
||||
#options INSECURE # disable kernel security level
|
||||
options UCONSOLE # allow anyone to steal the virtual console
|
||||
|
||||
# Debugging options
|
||||
options DDB # kernel dynamic debugger
|
||||
#options DEBUG # kernel debugging code
|
||||
options DIAGNOSTIC # extra kernel sanity checking
|
||||
#options KGDB # support for kernel gdb
|
||||
#options GDB # support for normal gdb
|
||||
#options KGDBDEV=0xc01, KGDBRATE=38400 # device & baud rate
|
||||
#options KGDBDEV=0xc01 # kgdb device number (dev_t)
|
||||
#options KGDBRATE=38400 # baud rate
|
||||
|
||||
# Compatibility options
|
||||
options COMPAT_43 # 4.3BSD system interfaces
|
||||
options COMPAT_10 # NetBSD 1.0 binary compatibility
|
||||
options COMPAT_11 # NetBSD 1.1 binary compatibility
|
||||
options COMPAT_12 # NetBSD 1.2 binary compatibility
|
||||
options COMPAT_SUNOS # SunOS 4.x binary compatibility
|
||||
#options COMPAT_M68K4K # compatibility with NetBSD/m68k4k binaries
|
||||
|
||||
# Filesystem options
|
||||
options FIFO # POSIX fifo support (in all filesystems)
|
||||
options DDB
|
||||
options FFS
|
||||
options QUOTA # fast filesystem with user and group quotas
|
||||
options MFS # memory-based filesystem
|
||||
#options NFSSERVER # Sun NFS-compatible filesystem
|
||||
options NFSCLIENT # Sun NFS-compatible filesystem
|
||||
options NULLFS # Null (formerly loop-back) filesystem
|
||||
options CD9660 # ISO-9660 w/ RockRidge
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options QUOTA # FFS quotas
|
||||
options NFSSERVER # Sun NFS-compatible filesystem server
|
||||
options NFSCLIENT # Sun NFS-compatible filesystem client
|
||||
options KERNFS # kernel data-structure filesystem
|
||||
options NULLFS # NULL layered filesystem
|
||||
options MFS # memory-based filesystem
|
||||
options FDESC # user file descriptor filesystem
|
||||
#options UMAPFS # uid/gid remapping filesystem
|
||||
#options LFS # Log-based filesystem (still experimental)
|
||||
#options PORTAL # portal filesystem (still experimental)
|
||||
options PROCFS # Process filesystem
|
||||
|
||||
options SCSI
|
||||
#options SCSIDEBUG
|
||||
options UMAPFS # uid/gid remapping filesystem
|
||||
options LFS # Log-based filesystem (still experimental)
|
||||
options PORTAL # portal filesystem (still experimental)
|
||||
options PROCFS # /proc
|
||||
options CD9660 # ISO 9660 + Rock Ridge file system
|
||||
options UNION # union file system
|
||||
options MSDOSFS # MS-DOS FAT filesystem(s).
|
||||
options FIFO # POSIX fifo support (in all filesystems)
|
||||
|
||||
# Networking options
|
||||
options INET
|
||||
options INET # IP stack
|
||||
options TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP
|
||||
options GATEWAY # IP packet forwarding
|
||||
#options ISO # OSI networking
|
||||
#options TPIP
|
||||
#options EON
|
||||
options COMPAT_42
|
||||
options COMPAT_43
|
||||
options NS
|
||||
options MAPMEM
|
||||
options SYSVSHM,SYSVSEM,SYSVMSG
|
||||
options PPP_BSDCOMP,PPP_DEFLATE
|
||||
|
||||
# Loadable Kernel Modules
|
||||
options LKM
|
||||
#options ISO,TPIP # OSI networking
|
||||
#options EON # OSI tunneling over IP
|
||||
#options CCITT,LLC,HDLC # X.25
|
||||
options PPP_BSDCOMP # PPP header compression
|
||||
options PPP_DEFLATE # PPP-Deflate compression
|
||||
#options PFIL_HOOKS # pfil(9) packet filter hooks.
|
||||
|
||||
# Mac-specific options
|
||||
options M68040
|
||||
@ -56,13 +67,6 @@ options M68030
|
||||
options M68020 # Must have 68851 PMMU
|
||||
options FPSP
|
||||
options FPU_EMULATE
|
||||
options COMPAT_NOMID
|
||||
options COMPAT_SUNOS
|
||||
options COMPAT_09
|
||||
options COMPAT_10
|
||||
options COMPAT_11
|
||||
options COMPAT_12
|
||||
#options COMPAT_M68K4K # compatibility with NetBSD/m68k4k binaries
|
||||
options ZS_CONSOLE_ABORT
|
||||
options DISABLE_EXT_CACHE # Don't use IIci external cache
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: SPOT,v 1.23 1997/01/25 22:44:08 scottr Exp $
|
||||
# $NetBSD: SPOT,v 1.24 1997/01/26 18:41:20 scottr Exp $
|
||||
#
|
||||
# SPOT
|
||||
|
||||
@ -9,47 +9,68 @@ maxusers 16
|
||||
makeoptions COPTS="-O2 -m68030"
|
||||
|
||||
# Standard system options
|
||||
options DIAGNOSTIC # DEBUG for extra kernel debugging
|
||||
options KTRACE # system call tracing support
|
||||
#options KGDB # support for kernel gdb
|
||||
#options GDB # support for normal gdb
|
||||
#options KGDBDEV=0xc01, KGDBRATE=38400 # device & baud rate
|
||||
options UCONSOLE # non-root can grab console
|
||||
options KTRACE # system call tracing
|
||||
options SYSVMSG # System V message queues
|
||||
options SYSVSEM # System V semaphores
|
||||
options SYSVSHM # System V shared memory
|
||||
#options SHMMAXPGS=1024 # 1024 pages is the default
|
||||
options LKM # loadable kernel modules
|
||||
#options INSECURE # disable kernel security level
|
||||
options UCONSOLE # allow anyone to steal the virtual console
|
||||
|
||||
# Debugging options
|
||||
options DDB # kernel dynamic debugger
|
||||
#options DEBUG # kernel debugging code
|
||||
options DIAGNOSTIC # extra kernel sanity checking
|
||||
#options KGDB # support for kernel gdb
|
||||
#options KGDBDEV=0xc01 # kgdb device number (dev_t)
|
||||
#options KGDBRATE=38400 # baud rate
|
||||
|
||||
# Compatibility options
|
||||
options COMPAT_43 # 4.3BSD system interfaces
|
||||
options COMPAT_10 # NetBSD 1.0 binary compatibility
|
||||
options COMPAT_11 # NetBSD 1.1 binary compatibility
|
||||
options COMPAT_12 # NetBSD 1.2 binary compatibility
|
||||
options COMPAT_SUNOS # SunOS 4.x binary compatibility
|
||||
#options COMPAT_M68K4K # compatibility with NetBSD/m68k4k binaries
|
||||
|
||||
# Filesystem options
|
||||
options FIFO # POSIX fifo support (in all filesystems)
|
||||
options DDB
|
||||
options FFS
|
||||
options QUOTA # fast filesystem with user and group quotas
|
||||
options MFS # memory-based filesystem
|
||||
options NFSSERVER # Sun NFS-compatible filesystem
|
||||
options NFSCLIENT # Sun NFS-compatible filesystem
|
||||
options CD9660 # ISO-9660 w/ RockRidge
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options QUOTA # FFS quotas
|
||||
options NFSSERVER # Sun NFS-compatible filesystem server
|
||||
options NFSCLIENT # Sun NFS-compatible filesystem client
|
||||
options KERNFS # kernel data-structure filesystem
|
||||
options FDESC # user file descriptor filesystem
|
||||
options PROCFS # Process filesystem
|
||||
|
||||
options SCSI
|
||||
options NULLFS # NULL layered filesystem
|
||||
options MFS # memory-based filesystem
|
||||
#options FDESC # user file descriptor filesystem
|
||||
#options UMAPFS # uid/gid remapping filesystem
|
||||
#options LFS # Log-based filesystem (still experimental)
|
||||
#options PORTAL # portal filesystem (still experimental)
|
||||
options PROCFS # /proc
|
||||
options CD9660 # ISO 9660 + Rock Ridge file system
|
||||
options UNION # union file system
|
||||
#options MSDOSFS # MS-DOS FAT filesystem(s).
|
||||
options FIFO # POSIX fifo support (in all filesystems)
|
||||
|
||||
# Networking options
|
||||
options INET
|
||||
options INET # IP stack
|
||||
options TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP
|
||||
options GATEWAY # IP packet forwarding
|
||||
options PPP_BSDCOMP
|
||||
options PPP_DEFLATE
|
||||
options COMPAT_42
|
||||
options COMPAT_43
|
||||
options MAPMEM
|
||||
options SYSVSHM,SYSVSEM,SYSVMSG
|
||||
#options ISO,TPIP # OSI networking
|
||||
#options EON # OSI tunneling over IP
|
||||
#options CCITT,LLC,HDLC # X.25
|
||||
options PPP_BSDCOMP # PPP header compression
|
||||
options PPP_DEFLATE # PPP-Deflate compression
|
||||
options PFIL_HOOKS # pfil(9) packet filter hooks.
|
||||
|
||||
# Mac-specific options
|
||||
#options M68040
|
||||
options M68030
|
||||
options COMPAT_10
|
||||
options COMPAT_11
|
||||
options COMPAT_12
|
||||
|
||||
# Loadable Kernel Modules
|
||||
options LKM
|
||||
#options M68020 # Must have 68851 PMMU
|
||||
#options FPSP
|
||||
#options FPU_EMULATE
|
||||
options ZS_CONSOLE_ABORT
|
||||
options DISABLE_EXT_CACHE # Don't use IIci external cache
|
||||
|
||||
# SPOT-specific options
|
||||
options RTC_OFFSET=360 # hardware clock is this many mins. west of GMT
|
||||
|
Loading…
Reference in New Issue
Block a user