git: b0832b507484 - main - netdump(4): document all kernel options required

From: Mitchell Horne <mhorne_at_FreeBSD.org>
Date: Fri, 11 Nov 2022 18:26:25 UTC
The branch main has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=b0832b5074840bce6f52842888b8c5279528fefa

commit b0832b5074840bce6f52842888b8c5279528fefa
Author:     Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2022-11-11 18:20:58 +0000
Commit:     Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2022-11-11 18:25:38 +0000

    netdump(4): document all kernel options required
    
    This means INET and DEBUGNET in addition to NETDUMP.
    
    Reviewed by:    pauamma, markj
    MFC after:      3 days
    Differential Revision:  https://reviews.freebsd.org/D37331
---
 share/man/man4/netdump.4 | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/share/man/man4/netdump.4 b/share/man/man4/netdump.4
index a6150eb758e3..ba39452c7076 100644
--- a/share/man/man4/netdump.4
+++ b/share/man/man4/netdump.4
@@ -24,16 +24,18 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd August 25, 2020
+.Dd November 10, 2022
 .Dt NETDUMP 4
 .Os
 .Sh NAME
 .Nm netdump
 .Nd protocol for transmitting kernel dumps to a remote server
 .Sh SYNOPSIS
-To compile netdump client support into the kernel, place the following line in
+To compile netdump client support into the kernel, place the following lines in
 your kernel configuration file:
 .Bd -ragged -offset indent
+.Cd "options INET"
+.Cd "options DEBUGNET"
 .Cd "options NETDUMP"
 .Ed
 .Sh DESCRIPTION