summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-10-23 18:26:50 +0200
committerAndreas Kling <kling@serenityos.org>2021-10-25 23:38:28 +0200
commit8d13f6ddce54deca5ed9bff9af2a4d31bb290121 (patch)
treeee400910bcbe04621c5bf561a0933536bfefd48f /Documentation
parent09432a82412357421b2a1247001e4c919e954777 (diff)
downloadserenity-8d13f6ddce54deca5ed9bff9af2a4d31bb290121.zip
Kernel+SystemServer: Change bootmode to system_mode
'bootmode' now only controls which set of services are started by SystemServer, so it is more appropriate to rename it to system_mode, and no longer validate it in the Kernel.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/RunningTests.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/RunningTests.md b/Documentation/RunningTests.md
index 07e8ece69e..64d9aed405 100644
--- a/Documentation/RunningTests.md
+++ b/Documentation/RunningTests.md
@@ -115,6 +115,6 @@ the default value `halt` keeps qemu around, which allows you to inspect the stat
```sh
export SERENITY_RUN=ci
-export SERENITY_KERNEL_CMDLINE="fbdev=off boot_mode=self-test"
+export SERENITY_KERNEL_CMDLINE="fbdev=off system_mode=self-test"
ninja run
```