Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch add PULLDOWN_TEST for all the platforms.
details: https://anonhg.NetBSD.org/src/rev/5d038c9f2196
branches: trunk
changeset: 494063:5d038c9f2196
user: itojun <itojun%NetBSD.org@localhost>
date: Fri Jun 30 17:10:15 2000 +0000
description:
add PULLDOWN_TEST for all the platforms.
XXX should be moved to somewhere else when stabilized
diffstat:
sys/arch/alpha/conf/GENERIC | 5 +++--
sys/arch/amiga/conf/GENERIC | 5 +++--
sys/arch/arc/conf/GENERIC | 5 +++--
sys/arch/arm26/conf/GENERIC | 3 ++-
sys/arch/arm32/conf/GENERIC | 5 +++--
sys/arch/atari/conf/GENERIC | 5 +++--
sys/arch/bebox/conf/GENERIC | 5 +++--
sys/arch/cobalt/conf/GENERIC | 5 +++--
sys/arch/hp300/conf/GENERIC | 5 +++--
sys/arch/hpcmips/conf/GENERIC | 5 +++--
sys/arch/i386/conf/GENERIC | 5 +++--
sys/arch/luna68k/conf/GENERIC | 5 +++--
sys/arch/mac68k/conf/GENERIC | 5 +++--
sys/arch/macppc/conf/GENERIC | 5 +++--
sys/arch/mmeye/conf/GENERIC | 5 +++--
sys/arch/mvme68k/conf/GENERIC | 5 +++--
sys/arch/news68k/conf/GENERIC | 5 +++--
sys/arch/newsmips/conf/GENERIC | 5 +++--
sys/arch/next68k/conf/GENERIC | 5 +++--
sys/arch/ofppc/conf/GENERIC | 5 +++--
sys/arch/pc532/conf/GENERIC | 5 +++--
sys/arch/pmax/conf/GENERIC | 5 +++--
sys/arch/prep/conf/GENERIC | 5 +++--
sys/arch/sparc/conf/GENERIC | 5 +++--
sys/arch/sparc64/conf/GENERIC | 5 +++--
sys/arch/sun3/conf/GENERIC | 5 +++--
sys/arch/vax/conf/GENERIC | 5 +++--
sys/arch/x68k/conf/GENERIC | 5 +++--
28 files changed, 83 insertions(+), 55 deletions(-)
diffs (truncated from 684 to 300 lines):
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/alpha/conf/GENERIC
--- a/sys/arch/alpha/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/alpha/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.158 2000/06/22 20:27:49 fvdl Exp $
+# $NetBSD: GENERIC,v 1.159 2000/06/30 17:10:15 itojun Exp $
#
# Generic Alpha kernel. Enough to get booted, etc., but not much more.
#
@@ -6,7 +6,7 @@
include "arch/alpha/conf/std.alpha"
-#ident "GENERIC-$Revision: 1.158 $"
+#ident "GENERIC-$Revision: 1.159 $"
maxusers 32
@@ -55,6 +55,7 @@
# Networking options
options INET # Internet protocol suite
options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/amiga/conf/GENERIC
--- a/sys/arch/amiga/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/amiga/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.144 2000/06/22 20:27:50 fvdl Exp $
+# $NetBSD: GENERIC,v 1.145 2000/06/30 17:10:15 itojun Exp $
#
#if 0
@@ -16,7 +16,7 @@
include "arch/amiga/conf/std.amiga"
-#ident "GENERIC-$Revision: 1.144 $"
+#ident "GENERIC-$Revision: 1.145 $"
maxusers 8
options RTC_OFFSET=0
@@ -55,6 +55,7 @@
#
options INET # IP networking support (Required)
options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/arc/conf/GENERIC
--- a/sys/arch/arc/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/arc/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.34 2000/06/22 20:27:50 fvdl Exp $
+# $NetBSD: GENERIC,v 1.35 2000/06/30 17:10:15 itojun Exp $
# $OpenBSD: GENERIC,v 1.29 1999/08/29 12:14:03 niklas Exp $
#
# GENERIC -- everything that's currently supported
@@ -6,7 +6,7 @@
include "arch/arc/conf/std.arc"
-#ident "GENERIC-$Revision: 1.34 $"
+#ident "GENERIC-$Revision: 1.35 $"
maxusers 32 # estimated number of users
@@ -79,6 +79,7 @@
#options GATEWAY # IP packet forwarding
options INET # IP + ICMP + TCP + UDP
options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/arm26/conf/GENERIC
--- a/sys/arch/arm26/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/arm26/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.3 2000/06/22 20:27:50 fvdl Exp $
+# $NetBSD: GENERIC,v 1.4 2000/06/30 17:10:15 itojun Exp $
# GENERIC arm26 configuration -- everything I've implemented so far
@@ -57,6 +57,7 @@
options GATEWAY # packet forwarding
options INET # Internet protocol suite
#options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/arm32/conf/GENERIC
--- a/sys/arch/arm32/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/arm32/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: GENERIC,v 1.68 2000/06/22 20:27:51 fvdl Exp $
+# $NetBSD: GENERIC,v 1.69 2000/06/30 17:10:16 itojun Exp $
#
# GENERIC -- everything that's currently supported
#
include "arch/arm32/conf/std.arm32"
-#ident "GENERIC-$Revision: 1.68 $"
+#ident "GENERIC-$Revision: 1.69 $"
# estimated number of users
maxusers 32
@@ -68,6 +68,7 @@
options GATEWAY # packet forwarding
options INET # IP + ICMP + TCP + UDP
options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/atari/conf/GENERIC
--- a/sys/arch/atari/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/atari/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,5 +1,5 @@
#
-# $NetBSD: GENERIC,v 1.67 2000/06/22 20:27:51 fvdl Exp $
+# $NetBSD: GENERIC,v 1.68 2000/06/30 17:10:16 itojun Exp $
#
# Generic atari
#
@@ -8,7 +8,7 @@
include "arch/atari/conf/std.atari"
-#ident "GENERIC-$Revision: 1.67 $"
+#ident "GENERIC-$Revision: 1.68 $"
#
# Add support for about 16 users. This variable is used to size
@@ -46,6 +46,7 @@
#options GATEWAY # packet forwarding
options INET # IP + ICMP + TCP + UDP
options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/bebox/conf/GENERIC
--- a/sys/arch/bebox/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/bebox/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: GENERIC,v 1.29 2000/06/22 20:27:51 fvdl Exp $
+# $NetBSD: GENERIC,v 1.30 2000/06/30 17:10:16 itojun Exp $
#
# First try for BEBOX config file
#
include "arch/bebox/conf/std.bebox"
-#ident "GENERIC-$Revision: 1.29 $"
+#ident "GENERIC-$Revision: 1.30 $"
maxusers 32
@@ -52,6 +52,7 @@
options INET
options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/cobalt/conf/GENERIC
--- a/sys/arch/cobalt/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/cobalt/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: GENERIC,v 1.10 2000/06/27 08:34:02 soren Exp $
+# $NetBSD: GENERIC,v 1.11 2000/06/30 17:10:16 itojun Exp $
include "arch/cobalt/conf/std.cobalt"
-#ident "GENERIC-$Revision: 1.10 $"
+#ident "GENERIC-$Revision: 1.11 $"
maxusers 32
@@ -65,6 +65,7 @@
#options GATEWAY # IP packet forwarding
options INET # Internet protocols
#options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/hp300/conf/GENERIC
--- a/sys/arch/hp300/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/hp300/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.56 2000/06/22 20:27:52 fvdl Exp $
+# $NetBSD: GENERIC,v 1.57 2000/06/30 17:10:17 itojun Exp $
#
# Generic kernel - one size fits all.
#
@@ -6,7 +6,7 @@
# Include attributes common to all hp300s
include "arch/hp300/conf/std.hp300"
-#ident "GENERIC-$Revision: 1.56 $"
+#ident "GENERIC-$Revision: 1.57 $"
# Support for various CPU types
options HP320
@@ -62,6 +62,7 @@
# Networking options
options INET # Internet protocols
options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/hpcmips/conf/GENERIC
--- a/sys/arch/hpcmips/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/hpcmips/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -2,11 +2,11 @@
# Distribution kernel (NEC VR based model) kernel config file
#
-# $NetBSD: GENERIC,v 1.55 2000/06/22 20:27:52 fvdl Exp $
+# $NetBSD: GENERIC,v 1.56 2000/06/30 17:10:17 itojun Exp $
#
include "arch/hpcmips/conf/std.hpcmips"
-#ident "GENERIC-$Revision: 1.55 $"
+#ident "GENERIC-$Revision: 1.56 $"
maxusers 8
@@ -69,6 +69,7 @@
#options GATEWAY # IP packet forwarding
options INET # IP + ICMP + TCP + UDP
options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/ IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/i386/conf/GENERIC
--- a/sys/arch/i386/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/i386/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: GENERIC,v 1.355 2000/06/22 20:27:52 fvdl Exp $
+# $NetBSD: GENERIC,v 1.356 2000/06/30 17:10:17 itojun Exp $
#
# GENERIC -- everything that's currently supported
#
include "arch/i386/conf/std.i386"
-#ident "GENERIC-$Revision: 1.355 $"
+#ident "GENERIC-$Revision: 1.356 $"
maxusers 32 # estimated number of users
@@ -116,6 +116,7 @@
#options GATEWAY # packet forwarding
options INET # IP + ICMP + TCP + UDP
options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/luna68k/conf/GENERIC
--- a/sys/arch/luna68k/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/luna68k/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: GENERIC,v 1.6 2000/06/22 20:27:53 fvdl Exp $
+# $NetBSD: GENERIC,v 1.7 2000/06/30 17:10:17 itojun Exp $
#
# GENERIC LUNA68K
#
include "arch/luna68k/conf/std.luna68k"
-#ident "GENERIC-$Revision: 1.6 $"
+#ident "GENERIC-$Revision: 1.7 $"
maxusers 8
@@ -64,6 +64,7 @@
# Networking options
options INET # IP prototol stack support
#options INET6 # IPV6
+options PULLDOWN_TEST # use m_pulldown for IPv4/v6 processing
#options IPSEC # IP security
#options IPSEC_ESP # IP securyty (encryption part; define w/IPSEC)
#options IPSEC_DEBUG # debug for IP security
diff -r 494630ba74ee -r 5d038c9f2196 sys/arch/mac68k/conf/GENERIC
--- a/sys/arch/mac68k/conf/GENERIC Fri Jun 30 16:48:47 2000 +0000
+++ b/sys/arch/mac68k/conf/GENERIC Fri Jun 30 17:10:15 2000 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: GENERIC,v 1.103 2000/06/22 20:27:53 fvdl Exp $
+# $NetBSD: GENERIC,v 1.104 2000/06/30 17:10:18 itojun Exp $
Home |
Main Index |
Thread Index |
Old Index