03fa08025b
* conf/DEFAULT: new file, default install kernel * conf/INSTALL: +MSDOSFS, +NO_INLINE_SPLX, +RD_SIZE=2mb, +scn4/5 * conf/KLONDIKE: cosmetic changes * conf/STEELHEAD: cosmetic changes * conf/files.pc532: rd got a file of it's own * dev/lpt.c: changes to support lower interrupt latency, packet input/output is now done at spl0 * dev/ncr.c: changes to support the most recent atari version of the ncr5380 driver * dev/ncr5380.c, dev/ncr5380reg.h: upgraded to most recent atari version, memcpy -> bcopy. * dev/rd.c: ramdisk driver * dev/scn.c: by patching scndefaultrate, the kernel's default baud rate can be changed with gdb * include/psl.h: struct iv now protected by !LOCORE && _KERNEL inlining of splx can be prevented with new kernel option NO_INLINE_SPLX splx_di is like splx but leaves processor interrupts disabled * pc532/autoconf.c: cosmetic changes * pc532/conf.c: with rd entries * pc532/intr.c: changes to support splx_di * pc532/locore.s: ramdisk is no longer initialized not splx, but rett is now used to reenable CPU interrupts when leaving the interrupt service routine. This is necessary to prevent recursive interrupts. * pc532/sys_machdep.c: memcpy -> bcopy * pc532/mem.c: moved ramdisk to dev/rd.c * stand/Makefile: boot is now loaded at 0x3eb800 instead of 0x363800 Use current form of libsa and libkern. * stand/inflate.c: emit twiddle every 8k and not every 1k * stand/rd.c: ramdisk starts at 0x288000
86 lines
2.5 KiB
Plaintext
86 lines
2.5 KiB
Plaintext
# $NetBSD: STEELHEAD,v 1.9 1995/09/26 20:16:02 phil Exp $
|
|
#
|
|
# STEELHEAD: Phil Nelson's pc532
|
|
#
|
|
machine "pc532"
|
|
|
|
maxusers 10 # estimated number of users
|
|
options TIMEZONE=0, DST=0 # time zone to read RTC in
|
|
options SWAPPAGER # paging
|
|
options VNODEPAGER,DEVPAGER # vnode and device node caching
|
|
#options DDB # kernel debugger; not working
|
|
#options DIAGNOSTIC # internal consistency checking
|
|
|
|
#options ACCOUNTING # process accounting
|
|
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_43" # 4.3 system calls
|
|
options "TCP_COMPAT_42" # 4.2 networking ABI
|
|
options "COMPAT_09" # NetBSD-0.9
|
|
options "COMPAT_10" # NetBSD-1.0
|
|
|
|
# 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 ISOFS # ISO 9660 CD-ROM file system, with RR
|
|
#options MSDOSFS # MS-DOS FAT file system
|
|
options FDESC # /dev/fd
|
|
options KERNFS # kernel file system; recommended
|
|
|
|
# networking options
|
|
#options GATEWAY # packet forwarding
|
|
options INET # IP
|
|
#options NS # XNS
|
|
#options CCITT # X.25
|
|
#options ISO # OSI
|
|
#options TPIP # ?
|
|
#options EON # ?
|
|
|
|
# pc532 specific options
|
|
options "COMDEF_SPEED=B19200" # default baud on the scn chips
|
|
#options "RAMD_SIZE=1536000" # Size of the "boot strap ram disk"
|
|
#options "RAMD_ADR=0x400000" # Adr of the "boot strap ram disk"
|
|
options "CONFIG_NEW" # Use config.new stuff
|
|
options "DEV_RTC" # /dev/rtc access to hardware clock
|
|
options "CON_BRK_PANIC" # 3 breaks on tty0 -> panic? y/n
|
|
|
|
config "netbsd" root on sd0 swap on sd0 and sd1 and vnd0a
|
|
|
|
membus0 at root
|
|
|
|
#rd0 at membus?
|
|
|
|
ncr0 at membus?
|
|
|
|
scsibus0 at scsi?
|
|
|
|
sd* at scsibus? target ? lun ? # SCSI disks
|
|
st* at scsibus? target ? lun ? # SCSI tapes
|
|
#cd* at scsibus? target ? lun ? # SCSI ???
|
|
|
|
scn0 at membus?
|
|
scn1 at membus?
|
|
scn2 at membus?
|
|
scn3 at membus?
|
|
scn4 at membus?
|
|
scn5 at membus?
|
|
scn6 at membus?
|
|
scn7 at membus?
|
|
|
|
pseudo-device pty 16 # pseudo-terminals
|
|
pseudo-device loop 1 # loopback network
|
|
pseudo-device bpfilter 4 # packet filter
|
|
pseudo-device sl 1 # compressed SLIP
|
|
pseudo-device ppp 1 # Point-to-Point Protocol
|
|
pseudo-device vnd 4 # Vnode devices
|
|
#pseudo-device ether #
|