Puma will soon be looking a bit different.
This commit is contained in:
parent
e658b8b476
commit
81a98183d1
|
@ -1,79 +1,88 @@
|
|||
# $NetBSD: PUMA,v 1.23 1997/07/23 06:36:59 scottr Exp $
|
||||
#
|
||||
# PUMA
|
||||
|
||||
include "arch/mac68k/conf/std.mac68k"
|
||||
include "arch/mac68k/conf/std.mac68k"
|
||||
|
||||
maxusers 16
|
||||
maxusers 64
|
||||
|
||||
options DDB
|
||||
# Standard system options
|
||||
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
|
||||
|
||||
# Filesystem
|
||||
file-system FFS
|
||||
file-system MFS # memory-based filesystem
|
||||
file-system NFS # Sun NFS-compatible filesystem
|
||||
file-system NULLFS # Null (formerly loop-back) filesystem
|
||||
file-system UNION # Union filesystem
|
||||
file-system CD9660 # ISO-9660 w/ RockRidge
|
||||
# Debugging options
|
||||
options DDB # kernel dynamic debugger
|
||||
options SCSIVERBOSE # Verbose SCSI errors
|
||||
|
||||
# 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
|
||||
|
||||
# File systems
|
||||
file-system FFS # Berkeley Fast Filesystem
|
||||
file-system NFS # Sun NFS-compatible filesystem client
|
||||
file-system KERNFS # kernel data-structure filesystem
|
||||
file-system FDESC # user file descriptor filesystem
|
||||
file-system PROCFS # Process filesystem
|
||||
file-system NULLFS # NULL layered filesystem
|
||||
file-system MFS # memory-based filesystem
|
||||
file-system PROCFS # /proc
|
||||
file-system CD9660 # ISO 9660 + Rock Ridge file system
|
||||
file-system UNION # union file system
|
||||
file-system MSDOSFS # MS-DOS FAT filesystem(s).
|
||||
|
||||
# File system options
|
||||
options QUOTA # FFS quotas
|
||||
options NFSSERVER # Sun NFS-compatible filesystem server
|
||||
options FIFO # POSIX fifo support (in all filesystems)
|
||||
options NFSSERVER # Sun NFS-compatible filesystem
|
||||
|
||||
options LKM # Loadable Kernel Modules
|
||||
|
||||
options SCSI
|
||||
|
||||
# Networking options
|
||||
options INET
|
||||
options INET # IP stack
|
||||
options TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP
|
||||
options GATEWAY # IP packet forwarding
|
||||
options COMPAT_42
|
||||
options COMPAT_43
|
||||
options NS
|
||||
options SYSVSHM,SYSVSEM,SYSVMSG
|
||||
options NETATALK # AppleTalk networking
|
||||
options PFIL_HOOKS # pfil(9) packet filter hooks.
|
||||
|
||||
# Mac-specific options
|
||||
options M68030
|
||||
options COMPAT_NOMID
|
||||
options COMPAT_SUNOS
|
||||
options COMPAT_09
|
||||
options COMPAT_10
|
||||
options COMPAT_11
|
||||
options COMPAT_12
|
||||
options M68040
|
||||
options FPSP
|
||||
|
||||
config netbsd root on sd0 dumps on sd1b
|
||||
config netbsd root on ? type ?
|
||||
|
||||
asc0 at obio? # ASC/EASC audio
|
||||
intvid0 at obio? # Internal video hardware
|
||||
sn* at obio? # SONIC-based internal ethernet
|
||||
|
||||
nubus0 at mainbus?
|
||||
ae* at nubus? # 8390-based Ethernet NIC
|
||||
sn* at nubus? # SONIC-based Ethernet NIC
|
||||
macvid* at nubus? # NuBus video card
|
||||
|
||||
# Attach grf semantics to all video hardware as it is found
|
||||
grf* at intvid?
|
||||
grf* at macvid?
|
||||
|
||||
# Attach ite semantics to the appropriate grf device
|
||||
ite0 at grf?
|
||||
|
||||
# Use only one of ncrscsi or sbc
|
||||
ncrscsi0 at obio? # SCSI NCR 5380
|
||||
esp0 at obio? # SCSI NCR 53C9x
|
||||
esp1 at obio? # SCSI NCR 53C9x
|
||||
|
||||
scsibus* at scsi?
|
||||
sd* at scsibus? target ? lun ? # SCSI disk drives
|
||||
st* at scsibus? target ? lun ? # SCSI tape drives
|
||||
cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
|
||||
ch* at scsibus? target ? lun ? # SCSI autochangers
|
||||
se* at scsibus? target ? lun ? # SCSI ethernet
|
||||
|
||||
pseudo-device pty 16
|
||||
pseudo-device bpfilter 16
|
||||
pseudo-device vnd 4
|
||||
pseudo-device pty 64
|
||||
pseudo-device bpfilter 12
|
||||
pseudo-device vnd 2
|
||||
pseudo-device ccd 2
|
||||
pseudo-device md 1
|
||||
pseudo-device loop
|
||||
pseudo-device ppp
|
||||
pseudo-device sl
|
||||
|
||||
# Puma-specific options
|
||||
|
||||
# Try linked commands on all targets
|
||||
options TRY_SCSI_LINKED_COMMANDS=0x7f
|
||||
pseudo-device ipfilter
|
||||
|
|
Loading…
Reference in New Issue