diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-10-23 17:31:00 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-25 23:38:28 +0200 |
commit | 09432a82412357421b2a1247001e4c919e954777 (patch) | |
tree | 48f0b2baaefb661b94c0f70e92995932027e314f /Base/usr/share | |
parent | 542a88a7be9fbdbc2ff3eadc38cdcaa33292fb97 (diff) | |
download | serenity-09432a82412357421b2a1247001e4c919e954777.zip |
Kernel: Separate panic behavior from bootmode
Bootmode used to control panic behavior and SystemServer.
This patch factors panic behavior control into a separate flag.
Diffstat (limited to 'Base/usr/share')
-rw-r--r-- | Base/usr/share/man/man7/boot_parameters.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Base/usr/share/man/man7/boot_parameters.md b/Base/usr/share/man/man7/boot_parameters.md index 74fb849084..20a9ad71d0 100644 --- a/Base/usr/share/man/man7/boot_parameters.md +++ b/Base/usr/share/man/man7/boot_parameters.md @@ -51,6 +51,8 @@ List of options: * **`init_args`** - This parameter expects a set of arguments to pass to the **`init`** program. The value should be a set of strings separated by `,` characters. +* **`panic`** - This parameter expects **`halt`** or **`shutdown`**. This is particularly useful in CI contexts. + * **`pci_ecam`** - This parameter expects **`on`** or **`off`**. * **`root`** - This parameter configures the device to use as the root file system. It defaults to **`/dev/hda`** if unspecified. |