add COMPAT_09 to all kernels, Pentium support to generic kernels

This commit is contained in:
cgd 1994-04-15 00:25:12 +00:00
parent 0f8b2efbad
commit 1a5363baff
10 changed files with 24 additions and 10 deletions

View File

@ -1,7 +1,7 @@
#
# ALL -- everything that's currently supported
#
# $Id: ALL,v 1.45 1994/04/13 07:53:02 deraadt Exp $
# $Id: ALL,v 1.46 1994/04/15 00:25:12 cgd Exp $
#
# architecture type and name of kernel; REQUIRED
@ -97,7 +97,10 @@ options DDB
# Allows user to create an i386 LDT (Used by Wine to run Windows programs)
options "USER_LDT"
# NetBSD 0.8 and 0.9 compatibility
options "COMPAT_NOMID"
options "COMPAT_09"
options "COMPAT_43"
options "TCP_COMPAT_42"

View File

@ -1,7 +1,7 @@
#
# BOAT_ANCHOR -- kernel for the 386-20 the gang uses for testing
#
# $Id: BOAT_ANCHOR,v 1.32 1994/04/14 07:01:44 cgd Exp $
# $Id: BOAT_ANCHOR,v 1.33 1994/04/15 00:25:13 cgd Exp $
#
machine "i386"
cpu "I386_CPU"
@ -18,6 +18,7 @@ options XSERVER,UCONSOLE
options "DUMMY_NOPS"
options MSDOSFS
options KTRACE
options "COMPAT_09"
options "COMPAT_NOMID"
options "MACHINE_NONCONTIG"
options LKM

View File

@ -1,12 +1,13 @@
#
# GENERICAHA -- Generic machine w/aha driver -- distribution floppy
#
# $Id: GENERICAHA,v 1.38 1994/04/13 07:53:03 deraadt Exp $
# $Id: GENERICAHA,v 1.39 1994/04/15 00:25:14 cgd Exp $
#
machine "i386"
cpu "I386_CPU"
cpu "I486_CPU"
cpu "I586_CPU"
ident GENERICAHA
timezone 8 dst
maxusers 10
@ -22,6 +23,7 @@ options KERNFS
options SCSI
options "MATH_EMULATE"
options "COMPAT_NOMID"
options "COMPAT_09"
options "MACHINE_NONCONTIG"
config netbsd root on wd0 swap on wd0 and sd0

View File

@ -1,12 +1,13 @@
#
# GENERICBT -- Generic machine w/bt driver -- distribution floppy
#
# $Id: GENERICBT,v 1.2 1994/04/13 07:53:04 deraadt Exp $
# $Id: GENERICBT,v 1.3 1994/04/15 00:25:15 cgd Exp $
#
machine "i386"
cpu "I386_CPU"
cpu "I486_CPU"
cpu "I586_CPU"
ident GENERICBT
timezone 8 dst
maxusers 10
@ -22,6 +23,7 @@ options KERNFS
options SCSI
options "MATH_EMULATE"
options "COMPAT_NOMID"
options "COMPAT_09"
options "MACHINE_NONCONTIG"
config netbsd root on wd0 swap on wd0 and sd0

View File

@ -1,7 +1,7 @@
#
# KICKME -- 486Cx-33 development machine.
#
# $Id: KICKME,v 1.6 1994/04/06 23:30:26 cgd Exp $
# $Id: KICKME,v 1.7 1994/04/15 00:25:16 cgd Exp $
#
machine "i386"
@ -18,6 +18,7 @@ options MSDOSFS
options SCSI
options "MATH_EMULATE"
#options "COMPAT_NOMID"
options "COMPAT_09"
options "MACHINE_NONCONTIG"
options KTRACE
options DDB

View File

@ -1,7 +1,7 @@
#
# PAIN -- kernel for another of cgd's 486/50 EISA boxes...
#
# $Id: PAIN,v 1.24 1994/03/29 04:40:46 mycroft Exp $
# $Id: PAIN,v 1.25 1994/04/15 00:25:16 cgd Exp $
#
machine "i386"
cpu "I486_CPU"
@ -29,6 +29,7 @@ options GATEWAY
# "optional, but generally included"
options "COMPAT_43"
options "TCP_COMPAT_42"
options "COMPAT_09"
# i386 stuff
options UCONSOLE, XSERVER

View File

@ -1,7 +1,7 @@
#
# PATEK -- Mycroft's 486 test box
#
# $Id: PATEK,v 1.9 1994/03/29 22:59:55 mycroft Exp $
# $Id: PATEK,v 1.10 1994/04/15 00:25:17 cgd Exp $
#
machine "i386"
@ -29,6 +29,7 @@ options SYSVSHM
options LKM
options "COMPAT_NOMID"
options "COMPAT_09"
options "COMPAT_43"
options "TCP_COMPAT_42"

View File

@ -1,7 +1,7 @@
#
# SUN_LAMP -- kernel for one of cgd's 486/50 EISA boxes...
#
# $Id: SUN_LAMP,v 1.41 1994/03/29 04:40:48 mycroft Exp $
# $Id: SUN_LAMP,v 1.42 1994/04/15 00:25:18 cgd Exp $
#
machine "i386"
cpu "I486_CPU"
@ -19,6 +19,7 @@ options "DUMMY_NOPS"
options KTRACE
options SCSI
options "COMPAT_NOMID"
options "COMPAT_09"
options "MACHINE_NONCONTIG"
options DDB

View File

@ -1,7 +1,7 @@
#
# Theo Deraadt's 486
#
# $Id: TDR,v 1.30 1994/04/13 07:47:08 deraadt Exp $
# $Id: TDR,v 1.31 1994/04/15 00:25:19 cgd Exp $
#
machine "i386"
cpu "I486_CPU"
@ -16,6 +16,7 @@ options "COMPAT_43"
options "TCP_COMPAT_42"
options DDB,SCSI,KTRACE
options COMPAT_NOMID
options "COMPAT_09"
options DUMMY_NOPS
options MACHINE_NONCONTIG

View File

@ -1,7 +1,7 @@
#
# TRINITY -- Mycroft's 386 box
#
# $Id: TRINITY,v 1.30 1994/03/29 04:40:51 mycroft Exp $
# $Id: TRINITY,v 1.31 1994/04/15 00:25:20 cgd Exp $
#
machine "i386"
@ -27,6 +27,7 @@ options FIFO
options LKM
options "COMPAT_NOMID"
options "COMPAT_09"
options "COMPAT_43"
options "TCP_COMPAT_42"