diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /sys/arch/atari/conf/BOOT |
initial import of NetBSD tree
Diffstat (limited to 'sys/arch/atari/conf/BOOT')
-rw-r--r-- | sys/arch/atari/conf/BOOT | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/sys/arch/atari/conf/BOOT b/sys/arch/atari/conf/BOOT new file mode 100644 index 00000000000..6f2e3cfea1e --- /dev/null +++ b/sys/arch/atari/conf/BOOT @@ -0,0 +1,96 @@ +# +# $NetBSD: BOOT,v 1.4 1995/09/30 12:48:13 leo Exp $ +# +# BOOT +# +# This configuration file is for a BOOT kernel. This kernel is supplied +# on the boot-floppy and in the 'arch/atari/kernels' directory. It supports +# both Falcons and TT's and should be small enough to allow installation +# on 4Mb machines. +# + +include "std.atari" +# +# Add support for about 16 users. This variable is used to size +# various kernel structures. +# +maxusers 16 + +# +# processors this kernel should support +# +options "M68030" # support for 030 + +options TIMEZONE=300 # Set the timezone that the kernel will use +options DST=1 # Set the timezone that the kernel will use +options HZ=64 # Set the clock-rate (48/64/96) + +options FPU_EMULATE # Support for MC68881/MC68882 emulator +#options FPSP + +# +# Networking options +# +options INET # Basic networking support + +options FFS # Berkeley fast file system +options MFS # Memory based filesystem +options PROCFS # Process filesystem +options KERNFS # Kernel parameter filesystem +options NULLFS # Loopback filesystem +options MSDOSFS # MSDOS filesystem +options CD9660 # ISO 9660 filesystem with Rock Ridge + +options FIFO # FIFO operations on vnodes + +options SWAPPAGER # Pager for swap device +options VNODEPAGER # Pager for vnodes +options DEVPAGER # Pager + + +# +# Misc. debuging options +# +options PANICWAIT # Require keystroke to dump/reboot +options DDB # Kernel debugger + +# +# Compatability options for various existing systems +# +options "COMPAT_43" # 4.3 BSD compatible system calls (required) + +# +# Support for various kernel options +# +options KTRACE # Add kernel tracing system call +options DIAGNOSTIC # Add additional error checking code +options "NKMEMCLUSTERS=256" # Size of kernel malloc area +options GENERIC # Mini-root boot support + +# +# Atari specific kernel options: +# +options "ST_POOL_SIZE=22" # smallest that allows TT-HIGH +options TT_SCSI # SCSI-support for TT +options FALCON_SCSI # SCSI-support for Falcon +options TT_VIDEO # Graphics support for TT +options FALCON_VIDEO # Graphics support for FALCON + +# +# Build one kernel that can boot from any disk. +# +config netbsd swap on generic + +pseudo-device view 2 # View (graphics mapping) +pseudo-device sl # Slip +pseudo-device ppp # ppp +pseudo-device pty 16 # Pseudo-tty support +pseudo-device loop # Loopback network +pseudo-device vnd 3 # 3 pseudo disks (see vnconfig) + +# +#The following sections describe various hardware options. +# +zs0 at mainbus0 # Serial support through 8530 +grf1 at grfbus0 # second graphics driver +ite1 at grf1 # second tty |