diff options
Diffstat (limited to 'sys/arch/mac68k/conf')
-rw-r--r-- | sys/arch/mac68k/conf/GENERIC | 4 | ||||
-rw-r--r-- | sys/arch/mac68k/conf/GENERICSBC | 4 | ||||
-rw-r--r-- | sys/arch/mac68k/conf/MRGADB | 66 |
3 files changed, 72 insertions, 2 deletions
diff --git a/sys/arch/mac68k/conf/GENERIC b/sys/arch/mac68k/conf/GENERIC index 7b3bde2ddf3..2c94490744e 100644 --- a/sys/arch/mac68k/conf/GENERIC +++ b/sys/arch/mac68k/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.26 2001/03/08 03:37:17 itojun Exp $ +# $OpenBSD: GENERIC,v 1.27 2001/05/08 17:30:39 aaron Exp $ # $NetBSD: GENERIC,v 1.52 1997/01/13 23:34:07 scottr Exp $ # # GENERIC - an all-in-one kernel for the mac68k @@ -19,6 +19,8 @@ option DISABLE_EXT_CACHE # Don't use IIci external cache option DISABLE_ADB_WITH_SERIAL_CONSOLE #option MRG_ADB # Use ROM-based ADB driver +option UVM # use the UVM virtual memory system + config bsd swap generic maxusers 16 diff --git a/sys/arch/mac68k/conf/GENERICSBC b/sys/arch/mac68k/conf/GENERICSBC index e7bf280c266..68e4a966fa7 100644 --- a/sys/arch/mac68k/conf/GENERICSBC +++ b/sys/arch/mac68k/conf/GENERICSBC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERICSBC,v 1.10 1998/05/08 22:21:35 gene Exp $ +# $OpenBSD: GENERICSBC,v 1.11 2001/05/08 17:30:39 aaron Exp $ # $NetBSD: GENERIC,v 1.52 1997/01/13 23:34:07 scottr Exp $ # # GENERICSBC --- our generic kernel using the SBC SCSI driver @@ -19,6 +19,8 @@ option DISABLE_EXT_CACHE # Don't use IIci external cache option DISABLE_ADB_WITH_SERIAL_CONSOLE #option MRG_ADB # Use ROM-based ADB driver +option UVM # use the UVM virtual memory system + config bsd swap generic maxusers 16 diff --git a/sys/arch/mac68k/conf/MRGADB b/sys/arch/mac68k/conf/MRGADB new file mode 100644 index 00000000000..656aa40371c --- /dev/null +++ b/sys/arch/mac68k/conf/MRGADB @@ -0,0 +1,66 @@ +# $OpenBSD: MRGADB,v 1.4 2001/05/08 17:30:39 aaron Exp $ +# +# MRGADB - generic kernel with the optional "mrg" adb driver by default +# + +machine mac68k m68k +include "conf/GENERIC" + +# Mac-specific options +option HZ=60 # Macs like 60hz +option M68040 +option M68030 +option M68020 # Must have 68851 PMMU +option FPSP +option FPU_EMULATE +option COMPAT_SUNOS # SunOS m68k binary compatiblity +option ZS_CONSOLE_ABORT +option DISABLE_EXT_CACHE # Don't use IIci external cache +option DISABLE_ADB_WITH_SERIAL_CONSOLE +option MRG_ADB # Use ROM-based ADB driver + +option UVM # use the UVM virtual memory system + +config bsd swap generic +maxusers 16 + +mainbus0 at root +fpu0 at mainbus? + +# on-board I/O +obio0 at mainbus? + +adb0 at obio? +asc0 at obio? # ASC/EASC audio +esp0 at obio? # SCSI NCR 53C9x +esp1 at obio? # SCSI NCR 53C9x +intvid0 at obio? # Internal video hardware +mc* at obio? # MACE ethernet on Centris/Quadra 660av +sn* at obio? # Internal ethernet +zsc0 at obio? # Zilog serial chip +zstty* at zsc? channel ? + +nubus0 at mainbus? + +ae* at nubus? # Most Apple Ethernet Cards +macvid* at nubus? # NuBus video cards +sn* at nubus? # SONIC-based ethernet cards + +# 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 +#sbc0 at obio? flags 0x1 # MI NCR 5380 SCSI Bus Controller + +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 +ss* at scsibus? target ? lun ? # SCSI scanners +uk* at scsibus? target ? lun ? # SCSI unknown |