diff options
author | nl6720 <nl6720@gmail.com> | 2024-04-29 13:39:14 +0200 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-04-29 14:16:57 +0200 |
commit | 92ecff609830ec3599eb706eba9df984de2c39c2 (patch) | |
tree | 527abda87c5a384ac952dd59c165c3c395b675c4 | |
parent | core: Pass NULL error in dump_impl() (diff) | |
download | systemd-92ecff609830ec3599eb706eba9df984de2c39c2.tar.xz systemd-92ecff609830ec3599eb706eba9df984de2c39c2.zip |
docs/DEBUGGING.md: use an underscore in the kernel command line option
systemd-debug-generator(8) lists it as `systemd.debug_shell`.
According to 1d84ad944520fc3e062ef518c4db4e1d3a1866af, kernel command
line options should use an underscore instead of a dash.
-rw-r--r-- | docs/DEBUGGING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/DEBUGGING.md b/docs/DEBUGGING.md index 3e89a5d8a4..175e557e6c 100644 --- a/docs/DEBUGGING.md +++ b/docs/DEBUGGING.md @@ -93,7 +93,7 @@ systemctl enable debug-shell.service or by specifying ```sh -systemd.debug-shell=1 +systemd.debug_shell=1 ``` on the kernel command line. |