Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch Ensure all INSTALL config files consistantly includ...
details: https://anonhg.NetBSD.org/src/rev/d884f956d0bc
branches: trunk
changeset: 533616:d884f956d0bc
user: abs <abs%NetBSD.org@localhost>
date: Fri Jul 05 13:40:10 2002 +0000
description:
Ensure all INSTALL config files consistantly include PIPE_SOCKETPAIR,
MALLOC_NOINLINE, and VNODE_OP_NOINLINE. The exceptions are when they
include another config files that already defines the options, or if
they are for an embedded board, just define a few extra options, and
do not already define PIPE_SOCKETPAIR.
diffstat:
sys/arch/acorn32/conf/INSTALL | 9 ++++++---
sys/arch/alpha/conf/INSTALL | 5 +++--
sys/arch/amiga/conf/MDINSTALL | 7 +++++--
sys/arch/bebox/conf/INSTALL | 5 +++--
sys/arch/cats/conf/INSTALL | 7 ++++---
sys/arch/hp300/conf/INSTALL | 5 +++--
sys/arch/hpcmips/conf/INSTALL_TX3912 | 4 +++-
sys/arch/i386/conf/INSTALL | 7 ++++---
sys/arch/i386/conf/INSTALL_LAPTOP | 7 ++++---
sys/arch/i386/conf/INSTALL_PS2 | 4 +---
sys/arch/i386/conf/INSTALL_SMALL | 5 +++--
sys/arch/i386/conf/INSTALL_TINY | 7 ++++---
sys/arch/mac68k/conf/INSTALL | 7 ++++---
sys/arch/mac68k/conf/INSTALLSBC | 7 ++++---
sys/arch/macppc/conf/INSTALL | 7 ++++---
sys/arch/mipsco/conf/INSTALL | 5 +++--
sys/arch/news68k/conf/INSTALL | 5 +++--
sys/arch/newsmips/conf/INSTALL | 5 +++--
sys/arch/pc532/conf/INSTALL | 5 +++--
sys/arch/pmax/conf/INSTALL | 7 ++++---
sys/arch/pmppc/conf/INSTALL | 7 +++++--
sys/arch/prep/conf/INSTALL | 7 ++++---
sys/arch/sandpoint/conf/INSTALL | 4 +---
sys/arch/shark/conf/INSTALL | 7 +++++--
sys/arch/sparc/conf/INSTALL | 7 ++++---
sys/arch/sparc64/conf/INSTALL | 8 +++++---
sys/arch/sun2/conf/INSTALL | 9 +++++----
sys/arch/sun3/conf/INSTALL | 7 ++++---
sys/arch/sun3/conf/INSTALL3X | 7 ++++---
sys/arch/vax/conf/INSTALL | 7 ++++---
sys/arch/walnut/conf/INSTALL | 8 +++++---
sys/arch/x68k/conf/INSTALL | 9 +++++----
32 files changed, 122 insertions(+), 85 deletions(-)
diffs (truncated from 860 to 300 lines):
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/acorn32/conf/INSTALL
--- a/sys/arch/acorn32/conf/INSTALL Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/acorn32/conf/INSTALL Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.10 2002/04/25 15:06:20 atatat Exp $
+# $NetBSD: INSTALL,v 1.11 2002/07/05 13:40:10 abs Exp $
#
# INSTALL -- NetBSD/acorn32 install configuration
#
@@ -22,7 +22,7 @@
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "INSTALL-$Revision: 1.10 $"
+#ident "INSTALL-$Revision: 1.11 $"
# estimated number of users
maxusers 32
@@ -71,6 +71,8 @@
#options SOFTDEP # FFS soft updates support.
#options NFSSERVER
+options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
+
# Networking options
#options GATEWAY # packet forwarding
@@ -128,7 +130,8 @@
#options KMEMSTATS # kernel memory statistics
#options SCSIVERBOSE # Verbose SCSI errors
#options USERCONF # userconf(4) support
-options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
# Development and Debugging options
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/alpha/conf/INSTALL
--- a/sys/arch/alpha/conf/INSTALL Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/alpha/conf/INSTALL Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.64 2002/04/25 15:06:22 atatat Exp $
+# $NetBSD: INSTALL,v 1.65 2002/07/05 13:40:10 abs Exp $
#
# Alpha INSTALL kernel.
@@ -48,7 +48,7 @@
# Filesystem options
#options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
-#options VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
+options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
# Networking options
options INET # Internet protocol suite
@@ -75,6 +75,7 @@
options INSECURE # disable `kernel security level'
#options USERCONF # userconf(4) support
options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
# The Alpha console firmware network boots using the BOOTP
# protocol, so we ask the NFS code to use BOOTP/DHCP as well,
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/amiga/conf/MDINSTALL
--- a/sys/arch/amiga/conf/MDINSTALL Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/amiga/conf/MDINSTALL Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: MDINSTALL,v 1.13 2002/05/30 19:45:15 thorpej Exp $
+# $NetBSD: MDINSTALL,v 1.14 2002/07/05 13:40:11 abs Exp $
#
# INSTALL kernel for ramdisk installation
@@ -48,6 +48,8 @@
file-system MSDOSFS # MS-DOS filesystem
file-system KERNFS # kernel data-structure filesystem
+options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
+
#
# Support for various kernel options
#
@@ -57,7 +59,8 @@
options SCSIVERBOSE # human readable SCSI error messages
options NTP # NTP phase/frequency locked loop
#options USERCONF # userconf(4) support
-#options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
#
# Misc. debugging options
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/bebox/conf/INSTALL
--- a/sys/arch/bebox/conf/INSTALL Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/bebox/conf/INSTALL Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.21 2002/04/25 15:06:25 atatat Exp $
+# $NetBSD: INSTALL,v 1.22 2002/07/05 13:40:11 abs Exp $
#
# First try for BEBOX config file
#
@@ -32,6 +32,7 @@
#options KTRACE
#options USERCONF # userconf(4) support
options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
#options COMPAT_43
@@ -59,7 +60,7 @@
# Filesystem options
#options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
-#options VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
+options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
#options NFSSERVER
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/cats/conf/INSTALL
--- a/sys/arch/cats/conf/INSTALL Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/cats/conf/INSTALL Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.20 2002/05/14 19:44:57 chris Exp $
+# $NetBSD: INSTALL,v 1.21 2002/07/05 13:40:11 abs Exp $
#
# CATSINST -- CHALTECH CATS Install kernel
#
@@ -54,7 +54,7 @@
#options FFS_EI # FFS Endian Independant support
#options NFSSERVER
#options SOFTDEP # FFS soft updates support
-options VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
+options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
# Networking options
@@ -119,7 +119,8 @@
#options DDB_KEYCODE=0x40
options PMAP_STATIC_L1S=128
#options USERCONF # userconf(4) support
-options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
# wscons options
#options WSEMUL_SUN # sun terminal emulation
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/hp300/conf/INSTALL
--- a/sys/arch/hp300/conf/INSTALL Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/hp300/conf/INSTALL Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.6 2002/05/07 06:17:10 gmcgarry Exp $
+# $NetBSD: INSTALL,v 1.7 2002/07/05 13:40:12 abs Exp $
#
# INSTALL machine description file
#
@@ -17,9 +17,10 @@
options NMBCLUSTERS=64
options NFS_V2_ONLY
options NFS_DEFAULT_NIOTHREADS=1
-options VNODE_OP_NOINLINE
#options USERCONF # userconf(4) support
options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
+options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
# Support for various CPU types
options HP320
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/hpcmips/conf/INSTALL_TX3912
--- a/sys/arch/hpcmips/conf/INSTALL_TX3912 Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/hpcmips/conf/INSTALL_TX3912 Fri Jul 05 13:40:10 2002 +0000
@@ -1,7 +1,7 @@
#
# kernel config file for system install
#
-# $NetBSD: INSTALL_TX3912,v 1.5 2002/04/12 08:10:59 gmcgarry Exp $
+# $NetBSD: INSTALL_TX3912,v 1.6 2002/07/05 13:40:12 abs Exp $
#
include "arch/hpcmips/conf/TX3912"
@@ -16,3 +16,5 @@
#options USERCONF # userconf(4) support
options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
+options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/i386/conf/INSTALL
--- a/sys/arch/i386/conf/INSTALL Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/i386/conf/INSTALL Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.199 2002/06/25 03:12:08 lukem Exp $
+# $NetBSD: INSTALL,v 1.200 2002/07/05 13:40:12 abs Exp $
#
# INSTALL - Installation kernel.
#
@@ -73,7 +73,8 @@
#options LKM # loadable kernel modules
#options USERCONF # userconf(4) support
-options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
# Diagnostic/debugging support options
#options DIAGNOSTIC # expensive kernel consistency checks
@@ -124,7 +125,7 @@
#options QUOTA # UFS quotas
#options NFSSERVER # Network File System server
#options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
-options VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
+options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
# immutable) behave as system flags.
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/i386/conf/INSTALL_LAPTOP
--- a/sys/arch/i386/conf/INSTALL_LAPTOP Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/i386/conf/INSTALL_LAPTOP Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL_LAPTOP,v 1.32 2002/06/25 03:12:09 lukem Exp $
+# $NetBSD: INSTALL_LAPTOP,v 1.33 2002/07/05 13:40:13 abs Exp $
#
# INSTALL - Installation kernel.
#
@@ -73,7 +73,8 @@
#options LKM # loadable kernel modules
#options USERCONF # userconf(4) support
-options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
# Diagnostic/debugging support options
#options DIAGNOSTIC # expensive kernel consistency checks
@@ -125,7 +126,7 @@
#options NFSSERVER # Network File System server
#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
# immutable) behave as system flags.
-options VNODE_OP_NOINLINE # don't inline vnode op calls
+options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
# Networking options
#options GATEWAY # packet forwarding
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/i386/conf/INSTALL_PS2
--- a/sys/arch/i386/conf/INSTALL_PS2 Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/i386/conf/INSTALL_PS2 Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL_PS2,v 1.7 2002/04/02 05:30:42 lukem Exp $
+# $NetBSD: INSTALL_PS2,v 1.8 2002/07/05 13:40:13 abs Exp $
#
# INSTALL_PS2 - PS/2 Installation kernel.
#
@@ -14,7 +14,5 @@
options MEMORY_DISK_SERVER=0 # no userspace memory disk support
options MEMORY_DISK_ROOT_SIZE=2880 # 1.44M, same as a floppy
-options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
-
# File systems
file-system MFS # memory file system
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/i386/conf/INSTALL_SMALL
--- a/sys/arch/i386/conf/INSTALL_SMALL Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/i386/conf/INSTALL_SMALL Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL_SMALL,v 1.86 2002/06/25 03:12:09 lukem Exp $
+# $NetBSD: INSTALL_SMALL,v 1.87 2002/07/05 13:40:13 abs Exp $
#
# INSTALL_SMALL - Small Installation kernel.
#
@@ -71,6 +71,7 @@
#options USERCONF # userconf(4) support
options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
# Diagnostic/debugging support options
#options DIAGNOSTIC # expensive kernel consistency checks
@@ -121,7 +122,7 @@
#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
# immutable) behave as system flags.
options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
-options VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
+options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
# Networking options
#options GATEWAY # packet forwarding
diff -r bd35c3b8fc05 -r d884f956d0bc sys/arch/i386/conf/INSTALL_TINY
--- a/sys/arch/i386/conf/INSTALL_TINY Fri Jul 05 13:32:58 2002 +0000
+++ b/sys/arch/i386/conf/INSTALL_TINY Fri Jul 05 13:40:10 2002 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL_TINY,v 1.54 2002/06/25 03:12:10 lukem Exp $
+# $NetBSD: INSTALL_TINY,v 1.55 2002/07/05 13:40:13 abs Exp $
#
# INSTALL_TINY - Tiny Installation kernel, suitable for 4M machines.
#
@@ -67,7 +67,8 @@
#options LKM # loadable kernel modules
#options USERCONF # userconf(4) support
-options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+options MALLOC_NOINLINE # Not inlining MALLOC saves memory
Home |
Main Index |
Thread Index |
Old Index