Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/evbppc/conf Add DKWEDGE_AUTODISCOVERY and DKWEDGE_G...



details:   https://anonhg.NetBSD.org/src/rev/6d1f283d5fb8
branches:  trunk
changeset: 780438:6d1f283d5fb8
user:      matt <matt%NetBSD.org@localhost>
date:      Mon Jul 23 16:27:44 2012 +0000

description:
Add DKWEDGE_AUTODISCOVERY and DKWEDGE_GPT support.

diffstat:

 sys/arch/evbppc/conf/MPC8536DS  |  8 ++++++--
 sys/arch/evbppc/conf/MPC8548CDS |  8 ++++++--
 sys/arch/evbppc/conf/P2020DS    |  8 ++++++--
 sys/arch/evbppc/conf/P2020RDB   |  8 ++++++--
 sys/arch/evbppc/conf/RB800      |  8 ++++++--
 5 files changed, 30 insertions(+), 10 deletions(-)

diffs (145 lines):

diff -r 7bdd661f68ea -r 6d1f283d5fb8 sys/arch/evbppc/conf/MPC8536DS
--- a/sys/arch/evbppc/conf/MPC8536DS    Mon Jul 23 15:51:48 2012 +0000
+++ b/sys/arch/evbppc/conf/MPC8536DS    Mon Jul 23 16:27:44 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: MPC8536DS,v 1.11 2012/07/22 23:46:10 matt Exp $
+#      $NetBSD: MPC8536DS,v 1.12 2012/07/23 16:27:44 matt Exp $
 #
 #      MPC8536DS -- everything that's currently supported
 #
@@ -7,7 +7,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-ident          "MPC8536DS-$Revision: 1.11 $"
+ident          "MPC8536DS-$Revision: 1.12 $"
 
 maxusers       32
 
@@ -62,6 +62,10 @@
 #options       TCP_COMPAT_42   # 4.2BSD TCP/IP bug compat. Not recommended.
 options                COMPAT_BSDPTY   # /dev/[pt]ty?? ptys.
 
+# Wedge support
+options        DKWEDGE_AUTODISCOVER    # Automatically add dk(4) instances
+options        DKWEDGE_METHOD_GPT      # Supports GPT partitions as wedges
+
 # File systems
 file-system    FFS             # UFS
 file-system    EXT2FS          # second extended file system (linux)
diff -r 7bdd661f68ea -r 6d1f283d5fb8 sys/arch/evbppc/conf/MPC8548CDS
--- a/sys/arch/evbppc/conf/MPC8548CDS   Mon Jul 23 15:51:48 2012 +0000
+++ b/sys/arch/evbppc/conf/MPC8548CDS   Mon Jul 23 16:27:44 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: MPC8548CDS,v 1.10 2012/07/22 23:46:10 matt Exp $
+#      $NetBSD: MPC8548CDS,v 1.11 2012/07/23 16:27:44 matt Exp $
 #
 #      MPC8548CDS -- everything that's currently supported
 #
@@ -7,7 +7,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-ident          "MPC8548CDS-$Revision: 1.10 $"
+ident          "MPC8548CDS-$Revision: 1.11 $"
 
 maxusers       32
 
@@ -64,6 +64,10 @@
 #options       TCP_COMPAT_42   # 4.2BSD TCP/IP bug compat. Not recommended.
 options                COMPAT_BSDPTY   # /dev/[pt]ty?? ptys.
 
+# Wedge support
+options        DKWEDGE_AUTODISCOVER    # Automatically add dk(4) instances
+options        DKWEDGE_METHOD_GPT      # Supports GPT partitions as wedges
+
 # File systems
 file-system    FFS             # UFS
 file-system    EXT2FS          # second extended file system (linux)
diff -r 7bdd661f68ea -r 6d1f283d5fb8 sys/arch/evbppc/conf/P2020DS
--- a/sys/arch/evbppc/conf/P2020DS      Mon Jul 23 15:51:48 2012 +0000
+++ b/sys/arch/evbppc/conf/P2020DS      Mon Jul 23 16:27:44 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: P2020DS,v 1.12 2012/07/22 23:46:10 matt Exp $
+#      $NetBSD: P2020DS,v 1.13 2012/07/23 16:27:44 matt Exp $
 #
 #      P2020DS -- everything that's currently supported
 #
@@ -8,7 +8,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-ident          "P2020DS-$Revision: 1.12 $"
+ident          "P2020DS-$Revision: 1.13 $"
 
 maxusers       32
 
@@ -68,6 +68,10 @@
 #options       TCP_COMPAT_42   # 4.2BSD TCP/IP bug compat. Not recommended.
 options                COMPAT_BSDPTY   # /dev/[pt]ty?? ptys.
 
+# Wedge support
+options        DKWEDGE_AUTODISCOVER    # Automatically add dk(4) instances
+options        DKWEDGE_METHOD_GPT      # Supports GPT partitions as wedges
+
 # File systems
 file-system    FFS             # UFS
 file-system    EXT2FS          # second extended file system (linux)
diff -r 7bdd661f68ea -r 6d1f283d5fb8 sys/arch/evbppc/conf/P2020RDB
--- a/sys/arch/evbppc/conf/P2020RDB     Mon Jul 23 15:51:48 2012 +0000
+++ b/sys/arch/evbppc/conf/P2020RDB     Mon Jul 23 16:27:44 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: P2020RDB,v 1.13 2012/07/22 23:46:10 matt Exp $
+#      $NetBSD: P2020RDB,v 1.14 2012/07/23 16:27:44 matt Exp $
 #
 #      P2020RBD -- everything that's currently supported
 #
@@ -7,7 +7,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-ident          "P2020RBD-$Revision: 1.13 $"
+ident          "P2020RBD-$Revision: 1.14 $"
 
 maxusers       32
 
@@ -64,6 +64,10 @@
 #options       TCP_COMPAT_42   # 4.2BSD TCP/IP bug compat. Not recommended.
 options                COMPAT_BSDPTY   # /dev/[pt]ty?? ptys.
 
+# Wedge support
+options        DKWEDGE_AUTODISCOVER    # Automatically add dk(4) instances
+options        DKWEDGE_METHOD_GPT      # Supports GPT partitions as wedges
+
 # File systems
 file-system    FFS             # UFS
 file-system    EXT2FS          # second extended file system (linux)
diff -r 7bdd661f68ea -r 6d1f283d5fb8 sys/arch/evbppc/conf/RB800
--- a/sys/arch/evbppc/conf/RB800        Mon Jul 23 15:51:48 2012 +0000
+++ b/sys/arch/evbppc/conf/RB800        Mon Jul 23 16:27:44 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: RB800,v 1.17 2012/07/22 23:46:10 matt Exp $
+#      $NetBSD: RB800,v 1.18 2012/07/23 16:27:44 matt Exp $
 #
 #      RB800 -- everything that's currently supported
 #
@@ -7,7 +7,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-ident          "RB800-$Revision: 1.17 $"
+ident          "RB800-$Revision: 1.18 $"
 
 maxusers       32
 
@@ -65,6 +65,10 @@
 #options       TCP_COMPAT_42   # 4.2BSD TCP/IP bug compat. Not recommended.
 options                COMPAT_BSDPTY   # /dev/[pt]ty?? ptys.
 
+# Wedge support
+options        DKWEDGE_AUTODISCOVER    # Automatically add dk(4) instances
+options        DKWEDGE_METHOD_GPT      # Supports GPT partitions as wedges
+
 # File systems
 file-system    FFS             # UFS
 file-system    EXT2FS          # second extended file system (linux)



Home | Main Index | Thread Index | Old Index