diff options
| author | Kit Dallege <xaum.io@gmail.com> | 2026-03-27 04:25:38 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2026-06-10 12:35:04 +0000 |
| commit | e7bdf44da75a3f877c90dbbb9ff3db730937bc96 (patch) | |
| tree | f05227dee609e9b72cf78cf7e6c559e1799bff8f | |
| parent | f8c8875add6946b09ea8cf1f7bbdbd90fe5b1f17 (diff) | |
bsdconfig(8): add missing vt(4) console commands
Add documentation for the vt_font, vt_keymap, vt_repeat, vt_saver,
vt_screenmap, and vt_ttys commands which are available at runtime
but were not listed in the man page.
Also clarify that the existing syscons_* commands are for the
syscons(4) console driver and remove stale commented-out entries.
PR: 291051
Signed-off-by: Kit Dallege <xaum.io@gmail.com>
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/2100
| -rw-r--r-- | usr.sbin/bsdconfig/bsdconfig.8 | 48 |
1 files changed, 31 insertions, 17 deletions
diff --git a/usr.sbin/bsdconfig/bsdconfig.8 b/usr.sbin/bsdconfig/bsdconfig.8 index c4fb1e612dbb..aa81785a3acc 100644 --- a/usr.sbin/bsdconfig/bsdconfig.8 +++ b/usr.sbin/bsdconfig/bsdconfig.8 @@ -23,7 +23,7 @@ .\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd April 12, 2020 +.Dd June 9, 2026 .Dt BSDCONFIG 8 .Os .Sh NAME @@ -170,29 +170,43 @@ Shortcut to the Delete menu under the View/Edit Startup Configuration menu (startup_rcconf) of startup. .It Cm startup_rcvar Shortcut to the Toggle Startup Services menu under startup. -.\" use neutral name, e.g. console_keymap instead of syscons_keymap? -.\" font (encoding) selection not applicable to vt(4)! .It Cm syscons_font -Shortcut to the Font menu under console. -.\" .It Cm console_keymap -.\" Shortcut to the Keymap menu under console. +Shortcut to the Font menu under console for +.Xr syscons 4 . .It Cm syscons_keymap -Shortcut to the Keymap menu under console. -.\" .It Cm vt_repeat -.\" Shortcut to the Repeat menu under console. +Shortcut to the Keymap menu under console for +.Xr syscons 4 . .It Cm syscons_repeat -Shortcut to the Repeat menu under console. +Shortcut to the Repeat menu under console for +.Xr syscons 4 . .\" .It Cm vt_saver -.\" Shortcut to the Saver menu under console. .It Cm syscons_saver -Shortcut to the Saver menu under console. -.\" screenmap (encoding) selection not applicable to vt(4)! +Shortcut to the Saver menu under console for +.Xr syscons 4 . .It Cm syscons_screenmap -Shortcut to the Screenmap menu under console. -.\" .It Cm vt_syscons_ttys -.\" Shortcut to the Ttys menu under console. +Shortcut to the Screenmap menu under console for +.Xr syscons 4 . .It Cm syscons_ttys -Shortcut to the Ttys menu under console. +Shortcut to the Ttys menu under console for +.Xr syscons 4 . +.It Cm vt_font +Shortcut to the Font menu under console for +.Xr vt 4 . +.It Cm vt_keymap +Shortcut to the Keymap menu under console for +.Xr vt 4 . +.It Cm vt_repeat +Shortcut to the Repeat menu under console for +.Xr vt 4 . +.It Cm vt_saver +Shortcut to the Saver menu under console for +.Xr vt 4 . +.It Cm vt_screenmap +Shortcut to the Screenmap menu under console for +.Xr vt 4 . +.It Cm vt_ttys +Shortcut to the Ttys menu under console for +.Xr vt 4 . .It Cm timezone Set the regional timezone of the local machine. .It Cm ttys |
