Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch With the introduction of ddb.dumpstack which is ena...
details: https://anonhg.NetBSD.org/src/rev/bd0e1ee743ac
branches: trunk
changeset: 359608:bd0e1ee743ac
user: sevan <sevan%NetBSD.org@localhost>
date: Sat Feb 17 01:31:01 2018 +0000
description:
With the introduction of ddb.dumpstack which is enabled by default, we no longer
need to explicitly set DDB_COMMANDONENTER to run a trace.
diffstat:
sys/arch/amd64/conf/XEN3_DOM0 | 6 +++---
sys/arch/amd64/conf/XEN3_DOMU | 6 +++---
sys/arch/evbarm/conf/MARVELL_NAS | 4 ++--
sys/arch/i386/conf/XEN3_DOM0 | 4 ++--
sys/arch/i386/conf/XEN3_DOMU | 4 ++--
sys/arch/macppc/conf/GENERIC | 6 +++---
sys/arch/macppc/conf/GENERIC_601 | 6 +++---
7 files changed, 18 insertions(+), 18 deletions(-)
diffs (162 lines):
diff -r fccfea22c4da -r bd0e1ee743ac sys/arch/amd64/conf/XEN3_DOM0
--- a/sys/arch/amd64/conf/XEN3_DOM0 Sat Feb 17 01:13:07 2018 +0000
+++ b/sys/arch/amd64/conf/XEN3_DOM0 Sat Feb 17 01:31:01 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3_DOM0,v 1.148 2018/02/05 11:19:55 bouyer Exp $
+# $NetBSD: XEN3_DOM0,v 1.149 2018/02/17 01:31:01 sevan Exp $
include "arch/amd64/conf/std.xen"
@@ -10,7 +10,7 @@
#options UVMHIST_PRINT
#options SYSCALL_DEBUG
-#ident "XEN3_DOM0-$Revision: 1.148 $"
+#ident "XEN3_DOM0-$Revision: 1.149 $"
maxusers 32 # estimated number of users
@@ -63,7 +63,7 @@
#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x2f8,KGDB_DEVRATE=57600
#makeoptions DEBUG="-g" # compile full symbol table
makeoptions COPTS="-O2 -fno-omit-frame-pointer"
-options DDB_COMMANDONENTER="trace;show registers"
+options DDB_COMMANDONENTER="show registers"
# Compatibility options
include "conf/compat_netbsd15.config"
diff -r fccfea22c4da -r bd0e1ee743ac sys/arch/amd64/conf/XEN3_DOMU
--- a/sys/arch/amd64/conf/XEN3_DOMU Sat Feb 17 01:13:07 2018 +0000
+++ b/sys/arch/amd64/conf/XEN3_DOMU Sat Feb 17 01:31:01 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3_DOMU,v 1.83 2018/01/23 14:47:53 sevan Exp $
+# $NetBSD: XEN3_DOMU,v 1.84 2018/02/17 01:31:01 sevan Exp $
include "arch/amd64/conf/std.xen"
@@ -10,7 +10,7 @@
#options UVMHIST_PRINT
#options SYSCALL_DEBUG
-#ident "XEN3_DOMU-$Revision: 1.83 $"
+#ident "XEN3_DOMU-$Revision: 1.84 $"
maxusers 32 # estimated number of users
@@ -55,7 +55,7 @@
#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x2f8,KGDB_DEVRATE=57600
#makeoptions DEBUG="-g" # compile full symbol table
makeoptions COPTS="-O2 -fno-omit-frame-pointer"
-options DDB_COMMANDONENTER="trace;show registers"
+options DDB_COMMANDONENTER="show registers"
# Compatibility options
include "conf/compat_netbsd15.config"
diff -r fccfea22c4da -r bd0e1ee743ac sys/arch/evbarm/conf/MARVELL_NAS
--- a/sys/arch/evbarm/conf/MARVELL_NAS Sat Feb 17 01:13:07 2018 +0000
+++ b/sys/arch/evbarm/conf/MARVELL_NAS Sat Feb 17 01:31:01 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: MARVELL_NAS,v 1.28 2017/09/14 07:58:40 mrg Exp $
+# $NetBSD: MARVELL_NAS,v 1.29 2018/02/17 01:31:02 sevan Exp $
#
# This configuration supports for generically Marvell NAS.
@@ -241,7 +241,7 @@
options DDB # in-kernel debugger
options DDB_ONPANIC=0
options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
-options DDB_COMMANDONENTER="bt"
+#options DDB_COMMANDONENTER="bt"
#options KGDB
#options SYSCALL_DEBUG
diff -r fccfea22c4da -r bd0e1ee743ac sys/arch/i386/conf/XEN3_DOM0
--- a/sys/arch/i386/conf/XEN3_DOM0 Sat Feb 17 01:13:07 2018 +0000
+++ b/sys/arch/i386/conf/XEN3_DOM0 Sat Feb 17 01:31:01 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3_DOM0,v 1.126 2018/02/05 11:19:55 bouyer Exp $
+# $NetBSD: XEN3_DOM0,v 1.127 2018/02/17 01:34:45 sevan Exp $
#
# XEN3_0: Xen 3.0 domain0 kernel
@@ -75,7 +75,7 @@
#options KGDB # remote debugger
#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x2f8,KGDB_DEVRATE=57600
#makeoptions DEBUG="-g" # compile full symbol table
-options DDB_COMMANDONENTER="trace;show registers"
+options DDB_COMMANDONENTER="show registers"
# Compatibility options
include "conf/compat_netbsd09.config"
diff -r fccfea22c4da -r bd0e1ee743ac sys/arch/i386/conf/XEN3_DOMU
--- a/sys/arch/i386/conf/XEN3_DOMU Sat Feb 17 01:13:07 2018 +0000
+++ b/sys/arch/i386/conf/XEN3_DOMU Sat Feb 17 01:31:01 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3_DOMU,v 1.88 2018/01/23 15:08:12 sevan Exp $
+# $NetBSD: XEN3_DOMU,v 1.89 2018/02/17 01:34:45 sevan Exp $
include "arch/xen/conf/std.xen"
@@ -59,7 +59,7 @@
#options KGDB # remote debugger
#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x2f8,KGDB_DEVRATE=57600
#makeoptions DEBUG="-g" # compile full symbol table
-options DDB_COMMANDONENTER="trace;show registers"
+options DDB_COMMANDONENTER="show registers"
# Compatibility options
include "conf/compat_netbsd09.config"
diff -r fccfea22c4da -r bd0e1ee743ac sys/arch/macppc/conf/GENERIC
--- a/sys/arch/macppc/conf/GENERIC Sat Feb 17 01:13:07 2018 +0000
+++ b/sys/arch/macppc/conf/GENERIC Sat Feb 17 01:31:01 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.339 2018/01/23 14:47:55 sevan Exp $
+# $NetBSD: GENERIC,v 1.340 2018/02/17 01:31:02 sevan Exp $
#
# GENERIC machine description file
#
@@ -22,7 +22,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.339 $"
+#ident "GENERIC-$Revision: 1.340 $"
maxusers 32
@@ -59,7 +59,7 @@
#options DDB_ONPANIC=0 # don't go into ddb on panic.
options DDB_HISTORY_SIZE=512 # enable history editing in DDB
#options TRAP_PANICWAIT
-options DDB_COMMANDONENTER="bt"
+#options DDB_COMMANDONENTER="bt"
#makeoptions DEBUG="-g" # compile full symbol table
diff -r fccfea22c4da -r bd0e1ee743ac sys/arch/macppc/conf/GENERIC_601
--- a/sys/arch/macppc/conf/GENERIC_601 Sat Feb 17 01:13:07 2018 +0000
+++ b/sys/arch/macppc/conf/GENERIC_601 Sat Feb 17 01:31:01 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC_601,v 1.16 2018/01/23 14:47:55 sevan Exp $
+# $NetBSD: GENERIC_601,v 1.17 2018/02/17 01:31:02 sevan Exp $
#
# GENERIC machine description file
#
@@ -28,7 +28,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-ident "GENERIC-$Revision: 1.16 $"
+ident "GENERIC-$Revision: 1.17 $"
maxusers 32
@@ -63,7 +63,7 @@
#options DDB_ONPANIC=0 # don't go into ddb on panic.
options DDB_HISTORY_SIZE=512 # enable history editing in DDB
#options TRAP_PANICWAIT
-options DDB_COMMANDONENTER="bt"
+#options DDB_COMMANDONENTER="bt"
#makeoptions DEBUG="-g" # compile full symbol table
Home |
Main Index |
Thread Index |
Old Index