From cea9c033f2db7b768bc48fe5c3e8d140d23da4e2 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Sat, 11 Aug 2018 13:25:39 +0000 Subject: Move ddb.conf to sbin/ddb/ and switch to CONFS. This helps pkgbase as this config file will now be tagged as a config file. Approved by: allanjude (mentor) Differential Revision: https://reviews.freebsd.org/D16675 --- sbin/ddb/Makefile | 1 + sbin/ddb/ddb.conf | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 sbin/ddb/ddb.conf (limited to 'sbin') diff --git a/sbin/ddb/Makefile b/sbin/ddb/Makefile index 44d002d6c229..f1bf75e41b36 100644 --- a/sbin/ddb/Makefile +++ b/sbin/ddb/Makefile @@ -1,5 +1,6 @@ # $FreeBSD$ +CONFS= ddb.conf PACKAGE=runtime PROG= ddb SRCS= ddb.c ddb_capture.c ddb_script.c diff --git a/sbin/ddb/ddb.conf b/sbin/ddb/ddb.conf new file mode 100644 index 000000000000..a793705c6585 --- /dev/null +++ b/sbin/ddb/ddb.conf @@ -0,0 +1,15 @@ +# $FreeBSD$ +# +# This file is read when going to multi-user and its contents piped thru +# ``ddb'' to define debugging scripts. +# +# see ``man 4 ddb'' and ``man 8 ddb'' for details. +# + +script lockinfo=show locks; show alllocks; show lockedvnods + +# kdb.enter.panic panic(9) was called. +script kdb.enter.panic=textdump set; capture on; run lockinfo; show pcpu; bt; ps; alltrace; capture off; call doadump; reset + +# kdb.enter.witness witness(4) detected a locking error. +script kdb.enter.witness=run lockinfo -- cgit v1.2.3