Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch enable TMPFS in all GENERICs that have MFS enabled.
details: https://anonhg.NetBSD.org/src/rev/d92b205e79bc
branches: trunk
changeset: 754406:d92b205e79bc
user: chs <chs%NetBSD.org@localhost>
date: Thu Apr 29 22:40:48 2010 +0000
description:
enable TMPFS in all GENERICs that have MFS enabled.
diffstat:
sys/arch/acorn26/conf/GENERIC | 4 ++--
sys/arch/acorn32/conf/GENERIC | 6 +++---
sys/arch/alpha/conf/GENERIC | 6 +++---
sys/arch/amiga/conf/GENERIC.in | 6 +++---
sys/arch/atari/conf/GENERIC.in | 6 +++---
sys/arch/bebox/conf/GENERIC | 10 +++++-----
sys/arch/cats/conf/GENERIC | 4 ++--
sys/arch/cobalt/conf/GENERIC | 6 +++---
sys/arch/dreamcast/conf/GENERIC | 6 +++---
sys/arch/ews4800mips/conf/GENERIC | 6 +++---
sys/arch/hp300/conf/GENERIC | 6 +++---
sys/arch/hp700/conf/GENERIC | 6 +++---
sys/arch/hpcmips/conf/GENERIC | 6 +++---
sys/arch/ia64/conf/GENERIC | 5 +++--
sys/arch/luna68k/conf/GENERIC | 6 +++---
sys/arch/mipsco/conf/GENERIC | 4 ++--
sys/arch/mmeye/conf/GENERIC | 6 +++---
sys/arch/mvme68k/conf/GENERIC | 6 +++---
sys/arch/mvmeppc/conf/GENERIC | 5 +++--
sys/arch/netwinder/conf/GENERIC | 4 ++--
sys/arch/news68k/conf/GENERIC | 6 +++---
sys/arch/newsmips/conf/GENERIC | 6 +++---
sys/arch/next68k/conf/GENERIC | 6 +++---
sys/arch/ofppc/conf/GENERIC | 6 +++---
sys/arch/ofppc/conf/GENERIC.MP | 6 +++---
sys/arch/pmax/conf/GENERIC | 6 +++---
sys/arch/pmax/conf/GENERIC64 | 6 +++---
sys/arch/prep/conf/GENERIC | 6 +++---
sys/arch/rs6000/conf/GENERIC | 6 +++---
sys/arch/sbmips/conf/GENERIC | 6 +++---
sys/arch/sparc/conf/GENERIC | 6 +++---
sys/arch/sun2/conf/GENERIC | 6 +++---
sys/arch/sun3/conf/GENERIC | 6 +++---
sys/arch/sun3/conf/GENERIC3X | 6 +++---
sys/arch/vax/conf/GENERIC | 6 +++---
sys/arch/x68k/conf/GENERIC | 6 +++---
36 files changed, 106 insertions(+), 104 deletions(-)
diffs (truncated from 926 to 300 lines):
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/acorn26/conf/GENERIC
--- a/sys/arch/acorn26/conf/GENERIC Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/acorn26/conf/GENERIC Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.61 2010/04/16 13:48:27 pooka Exp $
+# $NetBSD: GENERIC,v 1.62 2010/04/29 22:40:48 chs Exp $
#
# GENERIC machine description file
#
@@ -61,7 +61,7 @@
file-system KERNFS # /kern
file-system FDESC # /dev/fd
file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
# File system options
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/acorn32/conf/GENERIC
--- a/sys/arch/acorn32/conf/GENERIC Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/acorn32/conf/GENERIC Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.95 2010/04/16 13:48:27 pooka Exp $
+# $NetBSD: GENERIC,v 1.96 2010/04/29 22:40:48 chs Exp $
#
# GENERIC --- NetBSD/acorn32 complete configuration
#
@@ -22,7 +22,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.95 $"
+#ident "GENERIC-$Revision: 1.96 $"
# estimated number of users
maxusers 32
@@ -65,7 +65,7 @@
file-system UMAPFS # NULLFS + uid and gid remapping
file-system UNION # union file system
file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
# File system options
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/alpha/conf/GENERIC
--- a/sys/arch/alpha/conf/GENERIC Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/alpha/conf/GENERIC Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.334 2010/04/16 13:48:28 pooka Exp $
+# $NetBSD: GENERIC,v 1.335 2010/04/29 22:40:49 chs Exp $
#
# This machine description file is used to generate the default NetBSD
# kernel.
@@ -19,7 +19,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-ident "GENERIC-$Revision: 1.334 $"
+ident "GENERIC-$Revision: 1.335 $"
maxusers 32
@@ -87,7 +87,7 @@
file-system CODA # CODA distributed file system
file-system SMBFS # experimental - CIFS; also needs nsmb (below)
file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
# File system options
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/amiga/conf/GENERIC.in
--- a/sys/arch/amiga/conf/GENERIC.in Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/amiga/conf/GENERIC.in Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC.in,v 1.74 2010/04/16 13:48:28 pooka Exp $
+# $NetBSD: GENERIC.in,v 1.75 2010/04/29 22:40:49 chs Exp $
#
# GENERIC machine description file
#
@@ -56,7 +56,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.74 $"
+#ident "GENERIC-$Revision: 1.75 $"
m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl
makeoptions COPTS="-Os"
@@ -160,7 +160,7 @@
file-system UNION # union filesystem
file-system SMBFS # experimental - CIFS; also needs nsmb (below)
file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
')m4_dnl
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/atari/conf/GENERIC.in
--- a/sys/arch/atari/conf/GENERIC.in Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/atari/conf/GENERIC.in Thu Apr 29 22:40:48 2010 +0000
@@ -1,5 +1,5 @@
#
-# $NetBSD: GENERIC.in,v 1.87 2010/04/16 13:48:29 pooka Exp $
+# $NetBSD: GENERIC.in,v 1.88 2010/04/29 22:40:50 chs Exp $
#
# Generic atari
#
@@ -112,8 +112,8 @@
file-system MFS # Memory based filesystem
file-system MSDOSFS # MSDOS filesystem
file-system CD9660 # ISO 9660 filesystem with Rock Ridge
-#file-system PTYFS # experimental - /dev/ptm support
-#file-system TMPFS # Efficient memory file-system
+file-system PTYFS # experimental - /dev/ptm support
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
#if !defined(SMALL030_KERNEL)
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/bebox/conf/GENERIC
--- a/sys/arch/bebox/conf/GENERIC Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/bebox/conf/GENERIC Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.117 2010/04/16 13:48:29 pooka Exp $
+# $NetBSD: GENERIC,v 1.118 2010/04/29 22:40:50 chs Exp $
#
# GENERIC machine description file
#
@@ -22,7 +22,7 @@
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.117 $"
+#ident "GENERIC-$Revision: 1.118 $"
maxusers 32
@@ -89,13 +89,13 @@
file-system KERNFS # /kern
file-system NULLFS # loopback file system
#file-system OVERLAY # overlay file system
-#file-system PROCFS # /proc
+file-system PROCFS # /proc
#file-system UMAPFS # NULLFS + uid and gid remapping
file-system UNION # union file system
#file-system CODA # Coda File System; also needs vcoda (below)
#file-system SMBFS # CIFS; also needs nsmb (below)
-#file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system PTYFS # /dev/pts/N support
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
#file-system HFS # experimental - Apple HFS+ (read-only)
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/cats/conf/GENERIC
--- a/sys/arch/cats/conf/GENERIC Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/cats/conf/GENERIC Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.130 2010/04/16 13:48:29 pooka Exp $
+# $NetBSD: GENERIC,v 1.131 2010/04/29 22:40:50 chs Exp $
#
# GENERIC machine description file
#
@@ -72,7 +72,7 @@
file-system UNION # union file system
file-system CODA # Coda File System; also needs vcode (below)
file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
# File system options
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/cobalt/conf/GENERIC
--- a/sys/arch/cobalt/conf/GENERIC Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/cobalt/conf/GENERIC Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.124 2010/04/16 13:48:30 pooka Exp $
+# $NetBSD: GENERIC,v 1.125 2010/04/29 22:40:50 chs Exp $
#
# GENERIC machine description file
#
@@ -22,7 +22,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.124 $"
+#ident "GENERIC-$Revision: 1.125 $"
maxusers 32
@@ -88,7 +88,7 @@
#file-system CODA # Coda File System; also needs vcoda (below)
file-system SMBFS # experimental - CIFS; also needs nsmb (below)
file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
# File system options
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/dreamcast/conf/GENERIC
--- a/sys/arch/dreamcast/conf/GENERIC Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/dreamcast/conf/GENERIC Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.93 2010/03/11 02:21:41 uwe Exp $
+# $NetBSD: GENERIC,v 1.94 2010/04/29 22:40:50 chs Exp $
#
# GENERIC machine description file
#
@@ -84,8 +84,8 @@
#file-system OVERLAY # overlay file system
#file-system UMAPFS # NULLFS + uid and gid remapping
#file-system UNION # union file system
-#file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system PTYFS # /dev/pts/N support
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
# File system options
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/ews4800mips/conf/GENERIC
--- a/sys/arch/ews4800mips/conf/GENERIC Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/ews4800mips/conf/GENERIC Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.30 2010/04/16 13:48:31 pooka Exp $
+# $NetBSD: GENERIC,v 1.31 2010/04/29 22:40:50 chs Exp $
#
# GENERIC machine description file
# This machine description file is used to generate the default NetBSD
@@ -25,7 +25,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.30 $"
+#ident "GENERIC-$Revision: 1.31 $"
maxusers 16
@@ -111,7 +111,7 @@
#file-system SMBFS # experimental - CIFS; also needs nsmb (below)
file-system SYSVBFS # System V boot filesystem.
file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
# File system options
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/hp300/conf/GENERIC
--- a/sys/arch/hp300/conf/GENERIC Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/hp300/conf/GENERIC Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.153 2010/04/16 13:48:31 pooka Exp $
+# $NetBSD: GENERIC,v 1.154 2010/04/29 22:40:51 chs Exp $
#
# GENERIC machine description file
#
@@ -22,7 +22,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.153 $"
+#ident "GENERIC-$Revision: 1.154 $"
maxusers 32 # estimated number of users
@@ -113,7 +113,7 @@
file-system UNION # Union filesystem (req. for FDESC)
file-system CODA # Coda File System; also needs vcoda (below)
file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
# Filesystem options
diff -r 75ae07317be0 -r d92b205e79bc sys/arch/hp700/conf/GENERIC
--- a/sys/arch/hp700/conf/GENERIC Thu Apr 29 22:34:21 2010 +0000
+++ b/sys/arch/hp700/conf/GENERIC Thu Apr 29 22:40:48 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.94 2010/04/16 13:48:31 pooka Exp $
+# $NetBSD: GENERIC,v 1.95 2010/04/29 22:40:51 chs Exp $
#
# GENERIC machine description file
#
@@ -23,7 +23,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
-#ident "GENERIC-$Revision: 1.94 $"
+#ident "GENERIC-$Revision: 1.95 $"
maxusers 32 # estimated number of users
@@ -106,7 +106,7 @@
file-system UNION # union file system
file-system CODA # Coda File System; also needs vcoda (below)
file-system PTYFS # /dev/pts/N support
-#file-system TMPFS # Efficient memory file-system
+file-system TMPFS # Efficient memory file-system
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
Home |
Main Index |
Thread Index |
Old Index