Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/sys/arch As on the trunk, update these for the move of ...



details:   https://anonhg.NetBSD.org/src/rev/112fa48475ab
branches:  netbsd-1-5
changeset: 488240:112fa48475ab
user:      fvdl <fvdl%NetBSD.org@localhost>
date:      Fri Jun 23 14:36:06 2000 +0000

description:
As on the trunk, update these for the move of ffs_softdep.c into the
kernel source itself. Remove prefix construction, and add the SOFTDEP
option to GENERIC kernels.

diffstat:

 sys/arch/alpha/conf/GENERIC         |   6 +++---
 sys/arch/alpha/conf/std.alpha       |   6 +-----
 sys/arch/amiga/conf/GENERIC         |   6 +++---
 sys/arch/amiga/conf/std.amiga       |   6 +-----
 sys/arch/arc/conf/GENERIC           |   6 +++---
 sys/arch/arc/conf/std.arc           |   6 +-----
 sys/arch/arm26/conf/GENERIC         |   4 ++--
 sys/arch/arm32/conf/GENERIC         |   6 +++---
 sys/arch/arm32/conf/std.arm32       |   6 +-----
 sys/arch/atari/conf/GENERIC         |   6 +++---
 sys/arch/atari/conf/std.atari       |   6 +-----
 sys/arch/bebox/conf/GENERIC         |   6 +++---
 sys/arch/bebox/conf/std.bebox       |   6 +-----
 sys/arch/cobalt/conf/GENERIC        |   6 +++---
 sys/arch/cobalt/conf/std.cobalt     |   6 +-----
 sys/arch/evbsh3/conf/std.evbsh3     |   6 +-----
 sys/arch/hp300/conf/GENERIC         |   6 +++---
 sys/arch/hp300/conf/std.hp300       |   6 +-----
 sys/arch/hpcmips/conf/GENERIC       |   6 +++---
 sys/arch/hpcmips/conf/std.hpcmips   |   6 +-----
 sys/arch/i386/conf/GENERIC          |   6 +++---
 sys/arch/i386/conf/std.i386         |   6 +-----
 sys/arch/luna68k/conf/GENERIC       |   6 +++---
 sys/arch/luna68k/conf/std.luna68k   |   6 +-----
 sys/arch/mac68k/conf/GENERIC        |   6 +++---
 sys/arch/mac68k/conf/std.mac68k     |   6 +-----
 sys/arch/macppc/conf/GENERIC        |   6 +++---
 sys/arch/macppc/conf/std.macppc     |   6 +-----
 sys/arch/mmeye/conf/GENERIC         |   6 +++---
 sys/arch/mmeye/conf/std.mmeye       |   6 +-----
 sys/arch/mvme68k/conf/GENERIC       |   6 +++---
 sys/arch/mvme68k/conf/std.mvme68k   |   6 +-----
 sys/arch/news68k/conf/GENERIC       |   6 +++---
 sys/arch/news68k/conf/std.news68k   |   6 +-----
 sys/arch/newsmips/conf/GENERIC      |   6 +++---
 sys/arch/newsmips/conf/std.newsmips |   6 +-----
 sys/arch/next68k/conf/GENERIC       |   6 +++---
 sys/arch/next68k/conf/std.next68k   |   6 +-----
 sys/arch/ofppc/conf/GENERIC         |   6 +++---
 sys/arch/ofppc/conf/std.ofppc       |   6 +-----
 sys/arch/pc532/conf/GENERIC         |   6 +++---
 sys/arch/pc532/conf/std.pc532       |   6 +-----
 sys/arch/pmax/conf/GENERIC          |   6 +++---
 sys/arch/pmax/conf/std.pmax         |   6 +-----
 sys/arch/prep/conf/GENERIC          |   6 +++---
 sys/arch/prep/conf/std.prep         |   6 +-----
 sys/arch/sgimips/conf/std.sgimips   |   6 +-----
 sys/arch/sh3/conf/std.sh3           |   6 +-----
 sys/arch/sparc/conf/GENERIC         |  18 ++++++++++--------
 sys/arch/sparc/conf/std.sparc       |   6 +-----
 sys/arch/sparc64/conf/GENERIC       |   6 +++---
 sys/arch/sparc64/conf/std.sparc64   |   6 +-----
 sys/arch/sun3/conf/GENERIC          |   6 +++---
 sys/arch/sun3/conf/std.sun3         |   6 +-----
 sys/arch/sun3/conf/std.sun3x        |   6 +-----
 sys/arch/vax/conf/GENERIC           |   6 +++---
 sys/arch/vax/conf/std.vax           |   6 +-----
 sys/arch/x68k/conf/GENERIC          |   6 +++---
 sys/arch/x68k/conf/std.x68k         |   6 +-----
 59 files changed, 121 insertions(+), 243 deletions(-)

diffs (truncated from 1274 to 300 lines):

diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/alpha/conf/GENERIC
--- a/sys/arch/alpha/conf/GENERIC       Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/alpha/conf/GENERIC       Fri Jun 23 14:36:06 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.157 2000/06/14 22:02:15 veego Exp $
+# $NetBSD: GENERIC,v 1.157.2.1 2000/06/23 14:36:06 fvdl 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.157 $"
+#ident                 "GENERIC-$Revision: 1.157.2.1 $"
 
 maxusers 32
 
@@ -50,7 +50,7 @@
 # File system options
 options        NFSSERVER       # Sun NFS-compatible file system server
 #options       FFS_EI          # FFS Endian Independant support
-#options       SOFTDEP         # FFS soft updates support.
+options        SOFTDEP         # FFS soft updates support.
 
 # Networking options
 options        INET            # Internet protocol suite
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/alpha/conf/std.alpha
--- a/sys/arch/alpha/conf/std.alpha     Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/alpha/conf/std.alpha     Fri Jun 23 14:36:06 2000 +0000
@@ -1,13 +1,9 @@
-# $NetBSD: std.alpha,v 1.18 1999/11/15 19:00:25 fvdl Exp $
+# $NetBSD: std.alpha,v 1.18.4.1 2000/06/23 14:36:06 fvdl Exp $
 #
 # Standard/required configuration info for NetBSD/alpha.
 
 machine                alpha
 
-prefix ../gnu/sys
-cinclude "conf/files.softdep"
-prefix
-
 # standard ("mandatory") kernel options.
 
 # Executable support: once transitioned to ELF, EXEC_ECOFF will become optional
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/amiga/conf/GENERIC
--- a/sys/arch/amiga/conf/GENERIC       Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/amiga/conf/GENERIC       Fri Jun 23 14:36:06 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: GENERIC,v 1.143 2000/06/14 22:02:18 veego Exp $
+#      $NetBSD: GENERIC,v 1.143.2.1 2000/06/23 14:36:06 fvdl Exp $
 
 #
 #if 0
@@ -16,7 +16,7 @@
 
 include "arch/amiga/conf/std.amiga"
 
-#ident                 "GENERIC-$Revision: 1.143 $"
+#ident                 "GENERIC-$Revision: 1.143.2.1 $"
 
 maxusers       8
 options        RTC_OFFSET=0
@@ -109,7 +109,7 @@
 
 #ifndef INSTALL_CONFIGURATION
 options        QUOTA           # User and group quotas in FFS
-#options       SOFTDEP         # FFS soft updates support.
+options        SOFTDEP         # FFS soft updates support.
 options        NFSSERVER       # Network File System server side code
 #endif
 
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/amiga/conf/std.amiga
--- a/sys/arch/amiga/conf/std.amiga     Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/amiga/conf/std.amiga     Fri Jun 23 14:36:06 2000 +0000
@@ -1,13 +1,9 @@
-#      $NetBSD: std.amiga,v 1.17 1999/11/15 19:00:26 fvdl Exp $
+#      $NetBSD: std.amiga,v 1.17.4.1 2000/06/23 14:36:06 fvdl Exp $
 
 # standard amiga information
 
 machine amiga m68k
 
-prefix ../gnu/sys
-cinclude "conf/files.softdep"
-prefix
-
 mainbus0       at root
 
 clock0 at mainbus0
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/arc/conf/GENERIC
--- a/sys/arch/arc/conf/GENERIC Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/arc/conf/GENERIC Fri Jun 23 14:36:06 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: GENERIC,v 1.33 2000/06/17 07:29:07 soda Exp $
+#      $NetBSD: GENERIC,v 1.33.2.1 2000/06/23 14:36:07 fvdl 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.33 $"
+#ident         "GENERIC-$Revision: 1.33.2.1 $"
 
 maxusers       32              # estimated number of users
 
@@ -70,7 +70,7 @@
 # File system options
 options        QUOTA           # FFS quotas
 #options       FFS_EI          # FFS Endian Independent support
-#options       SOFTDEP         # FFS soft updates support.
+options        SOFTDEP         # FFS soft updates support.
 options        NFSSERVER       # Network File System server
 #options       EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
                                # immutable) behave as system flags.
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/arc/conf/std.arc
--- a/sys/arch/arc/conf/std.arc Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/arc/conf/std.arc Fri Jun 23 14:36:06 2000 +0000
@@ -1,12 +1,8 @@
-#      $NetBSD: std.arc,v 1.9 2000/01/25 16:07:13 enami Exp $
+#      $NetBSD: std.arc,v 1.9.4.1 2000/06/23 14:36:07 fvdl Exp $
 # standard arc info
 
 machine arc mips
 
-prefix ../gnu/sys
-cinclude "conf/files.softdep"
-prefix
-
 mainbus0 at root
 cpu* at mainbus0
 
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/arm26/conf/GENERIC
--- a/sys/arch/arm26/conf/GENERIC       Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/arm26/conf/GENERIC       Fri Jun 23 14:36:06 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.2 2000/06/14 22:02:20 veego Exp $
+# $NetBSD: GENERIC,v 1.2.2.1 2000/06/23 14:36:07 fvdl Exp $
 
 # GENERIC arm26 configuration -- everything I've implemented so far
 
@@ -46,7 +46,7 @@
 #options       QUOTA           # UFS quotas
 #options       NFSSERVER       # Sun NFS-compatible file system server
 #options       FFS_EI          # FFS endianness-independence support
-#options       SOFTDEP         # FFS soft updates support.
+options        SOFTDEP         # FFS soft updates support.
 
 # Executable format options
 #options       EXEC_AOUT
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/arm32/conf/GENERIC
--- a/sys/arch/arm32/conf/GENERIC       Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/arm32/conf/GENERIC       Fri Jun 23 14:36:06 2000 +0000
@@ -1,11 +1,11 @@
-#      $NetBSD: GENERIC,v 1.67 2000/06/14 22:02:21 veego Exp $
+#      $NetBSD: GENERIC,v 1.67.2.1 2000/06/23 14:36:07 fvdl Exp $
 #
 #      GENERIC -- everything that's currently supported
 #
 
 include        "arch/arm32/conf/std.arm32"
 
-#ident                 "GENERIC-$Revision: 1.67 $"
+#ident                 "GENERIC-$Revision: 1.67.2.1 $"
 
 # estimated number of users
 maxusers       32
@@ -60,7 +60,7 @@
 # File system options
 options        QUOTA           # UFS quotas
 #options       FFS_EI          # FFS Endian Independant support
-#options       SOFTDEP         # FFS soft updates support.
+options        SOFTDEP         # FFS soft updates support.
 options        NFSSERVER
 
 # Networking options
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/arm32/conf/std.arm32
--- a/sys/arch/arm32/conf/std.arm32     Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/arm32/conf/std.arm32     Fri Jun 23 14:36:06 2000 +0000
@@ -1,12 +1,8 @@
-#      $NetBSD: std.arm32,v 1.10 1999/11/15 19:00:26 fvdl Exp $
+#      $NetBSD: std.arm32,v 1.10.4.1 2000/06/23 14:36:07 fvdl Exp $
 #
 # standard NetBSD/arm32 options
 
 machine        arm32
 
-prefix ../gnu/sys
-cinclude "conf/files.softdep"
-prefix
-
 options        EXEC_AOUT
 options        EXEC_SCRIPT
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/atari/conf/GENERIC
--- a/sys/arch/atari/conf/GENERIC       Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/atari/conf/GENERIC       Fri Jun 23 14:36:06 2000 +0000
@@ -1,5 +1,5 @@
 #
-#      $NetBSD: GENERIC,v 1.66 2000/06/14 22:02:22 veego Exp $
+#      $NetBSD: GENERIC,v 1.66.2.1 2000/06/23 14:36:08 fvdl Exp $
 #
 # Generic atari
 #
@@ -8,7 +8,7 @@
 
 include "arch/atari/conf/std.atari"
 
-#ident                 "GENERIC-$Revision: 1.66 $"
+#ident                 "GENERIC-$Revision: 1.66.2.1 $"
 
 #
 # Add support for about 16 users. This variable is used to size
@@ -83,7 +83,7 @@
 # File system options
 options        QUOTA           # Disk quotas for local disks
 #options       FFS_EI          # FFS Endian Independant support
-#options       SOFTDEP         # FFS soft updates support.
+options        SOFTDEP         # FFS soft updates support.
 options        NFSSERVER       # Network File System server side code
 #options       EXT2FS_SYSTEM_FLAGS     # makes ext2fs file flags (append and
                                # immutable) behave as system flags.
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/atari/conf/std.atari
--- a/sys/arch/atari/conf/std.atari     Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/atari/conf/std.atari     Fri Jun 23 14:36:06 2000 +0000
@@ -1,13 +1,9 @@
-#      $NetBSD: std.atari,v 1.17 2000/01/26 14:56:43 leo Exp $
+#      $NetBSD: std.atari,v 1.17.4.1 2000/06/23 14:36:08 fvdl Exp $
 #
 # standard atari information
 #
 machine                atari m68k
 
-prefix ../gnu/sys
-cinclude "conf/files.softdep"
-prefix
-
 options        EXEC_SCRIPT             # Support #!
 options        EXEC_AOUT               # a.out format executables
 
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/bebox/conf/GENERIC
--- a/sys/arch/bebox/conf/GENERIC       Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/bebox/conf/GENERIC       Fri Jun 23 14:36:06 2000 +0000
@@ -1,11 +1,11 @@
-#      $NetBSD: GENERIC,v 1.28 2000/06/14 22:02:23 veego Exp $
+#      $NetBSD: GENERIC,v 1.28.2.1 2000/06/23 14:36:08 fvdl Exp $
 #
 # First try for BEBOX config file
 #
 
 include "arch/bebox/conf/std.bebox"
 
-#ident                 "GENERIC-$Revision: 1.28 $"
+#ident                 "GENERIC-$Revision: 1.28.2.1 $"
 
 maxusers       32
 
@@ -47,7 +47,7 @@
 file-system    UNION
 
 #options       FFS_EI          # FFS Endian Independant support
-#options       SOFTDEP         # FFS soft updates support.
+options        SOFTDEP         # FFS soft updates support.
 #options       NFSSERVER
 
 options        INET
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/bebox/conf/std.bebox
--- a/sys/arch/bebox/conf/std.bebox     Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/bebox/conf/std.bebox     Fri Jun 23 14:36:06 2000 +0000
@@ -1,12 +1,8 @@
-#      $NetBSD: std.bebox,v 1.4 1999/11/15 19:00:27 fvdl Exp $
+#      $NetBSD: std.bebox,v 1.4.4.1 2000/06/23 14:36:08 fvdl Exp $
 #
 # standard, required NetBSD/bebox 'options'
 
 machine                bebox powerpc
 
-prefix ../gnu/sys
-cinclude "conf/files.softdep"
-prefix
-
 options        EXEC_ELF32      # exec ELF binaries
 options        EXEC_SCRIPT     # exec #! scripts
diff -r 5fd377680ce3 -r 112fa48475ab sys/arch/cobalt/conf/GENERIC
--- a/sys/arch/cobalt/conf/GENERIC      Fri Jun 23 14:32:22 2000 +0000
+++ b/sys/arch/cobalt/conf/GENERIC      Fri Jun 23 14:36:06 2000 +0000
@@ -1,8 +1,8 @@
-#      $NetBSD: GENERIC,v 1.8 2000/06/14 22:02:23 veego Exp $
+#      $NetBSD: GENERIC,v 1.8.2.1 2000/06/23 14:36:08 fvdl Exp $
 
 include        "arch/cobalt/conf/std.cobalt"
 
-#ident                 "GENERIC-$Revision: 1.8 $"
+#ident                 "GENERIC-$Revision: 1.8.2.1 $"
 
 maxusers       32
 
@@ -57,7 +57,7 @@
 options        NFSSERVER       # Sun NFS-compatible filesystem server



Home | Main Index | Thread Index | Old Index