135 lines
3.9 KiB
Plaintext
135 lines
3.9 KiB
Plaintext
#
|
|
# ALL -- everything that's currently supported
|
|
#
|
|
# $Id: SMALL030,v 1.1.1.1 1996/05/05 12:17:03 oki Exp $
|
|
#
|
|
|
|
# architecture type and name of kernel; REQUIRED
|
|
machine "x68k"
|
|
ident SMALL
|
|
|
|
# different CPU types; you must have at least the correct one; REQUIRED
|
|
cpu "M68030"
|
|
#cpu "M68040"
|
|
|
|
# time zone RTC is expected to be set in; REQUIRED
|
|
timezone -9
|
|
|
|
# estimated number of users
|
|
maxusers 8
|
|
|
|
# standard options
|
|
options GENERIC # historical
|
|
options SWAPPAGER # paging
|
|
options VNODEPAGER,DEVPAGER # vnode and device node caching
|
|
options DDB # kernel debugger; recommended
|
|
options DIAGNOSTIC # internal consistency checking
|
|
|
|
#options KTRACE # system call tracing, a la ktrace(1)
|
|
options FIFO # fifos; recommended
|
|
#options SYSVSHM # System V shared memory; broken
|
|
#options SHMMAXPGS=1024
|
|
#options LKM # loadable kernel modules
|
|
|
|
# compatibility options
|
|
#options COMPAT_NOMID # old zmagic executables
|
|
#options "COMPAT_09" # older NetBSD binaries
|
|
options "COMPAT_43" # 4.3 system calls
|
|
#options "TCP_COMPAT_42" # 4.2 networking ABI
|
|
#options COMPAT_SUNOS # SunOS binaries
|
|
#options COMPAT_HPUX # HP-UX binaries
|
|
|
|
# file system options
|
|
#options QUOTA # file system quotas
|
|
options FFS # Berkeley fast file system
|
|
options FASTLINKS # fast symbolic links in FFS
|
|
#options MFS # memory file system; uses RAM and swap
|
|
#options NFSSERVER # Network File System server
|
|
#options NFSCLIENT # Network File System client
|
|
#options "CD9660" # ISO 9660 CD-ROM file system, with RR
|
|
#options MSDOSFS # MS-DOS FAT file system
|
|
#options HUMANFS # MS-DOS FAT file system with Human Ext.
|
|
#options FDESC # /dev/fd
|
|
#options KERNFS # kernel file system; recommended
|
|
#options PROCFS # /proc
|
|
#options LOFS # Loop-back filesystem
|
|
#options PORTAL # portal filesystem (still experimental)
|
|
#options ADOSFS # AmigaDOS filesystem
|
|
#options LFS # Log-based filesystem (still experimental)
|
|
#options UMAPFS # uid/gid remapping filesystem
|
|
#options HAVE_USL_UFS # SVR4 ufs
|
|
|
|
# networking options
|
|
#options GATEWAY # packet forwarding
|
|
options INET # IP
|
|
#options NS # XNS
|
|
#options CCITT # X.25
|
|
#options ISO # OSI networking
|
|
#options TPIP # ?
|
|
#options EON # ?
|
|
#options MULTICAST # multicast
|
|
|
|
# Options specific to this host.
|
|
options DEBUG
|
|
#options FPSP # '40 Floating Point Software
|
|
options ITEKANJI # Kanji display for console
|
|
#options PANICBUTTON
|
|
#options BUFPAGES=900
|
|
#options NKMEMCLUSTERS=256
|
|
#options PROFTIMER, PRF_INTERVAL=500
|
|
#options KGDB,"KGDBDEV=15*256+2", KGDBRATE=19200
|
|
#options PPP_OUTQ_SIZE=4096
|
|
|
|
#config netbsd root on sd6a swap on sd6b
|
|
config netbsd swap generic
|
|
|
|
# manufacturer 1 is a pseudo and stands for `builtin'
|
|
master scsi0 at nexus0
|
|
master scsi1 at nexus0
|
|
#master fdc0 at nexus0
|
|
|
|
# further builtin devices
|
|
device zs0 at nexus0
|
|
#device ser2 at nexus0
|
|
#device clock at manufacturer 1 product 4
|
|
#device kbd at manufacturer 1 product 5
|
|
#device par0 at nexus0
|
|
#device fd0 at fdc0 slave 0
|
|
#device fd1 at fdc0 slave 1
|
|
|
|
# SCSI disks
|
|
disk sd0 at scsi0 slave 0
|
|
disk sd1 at scsi0 slave 1
|
|
disk sd2 at scsi0 slave 2
|
|
disk sd3 at scsi0 slave 3
|
|
disk sd4 at scsi0 slave 4
|
|
disk sd5 at scsi0 slave 5
|
|
disk sd6 at scsi0 slave 6
|
|
disk sd7 at scsi0 slave 7
|
|
|
|
# SCSI tapes
|
|
tape st0 at scsi0 slave 4
|
|
#tape st1 at scsi0 slave ?
|
|
|
|
device grf0 at manufacturer 1 product 7
|
|
#device grf1 at manufacturer 18260 product 6
|
|
|
|
# builtin clock (should all identify as "rtclock")
|
|
device rtclock0 at nexus0
|
|
|
|
# ethernet board
|
|
#device le0 at manufacturer ? product ?
|
|
|
|
device bsdaudio0 at nexus0
|
|
|
|
#pseudo-device sl 4 # compressed SLIP
|
|
#pseudo-device ppp 4 # point-to-point protocol
|
|
#pseudo-device bpfilter 16 # packet filter
|
|
pseudo-device ite # internal terminal emulator
|
|
pseudo-device view 10 # ?
|
|
pseudo-device pty 16 # pseudo-terminals
|
|
#pseudo-device mouse # mouse
|
|
pseudo-device loop # loopback; recommended
|
|
pseudo-device ether # ethernet
|
|
#pseudo-device vnd 10 # vn virtual filesystem device
|