diff options
author | Liav A <liavalb@gmail.com> | 2022-03-15 22:04:12 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-03-18 09:22:10 +0000 |
commit | eca8f292a56f8a0000532c15081a753cc21878b1 (patch) | |
tree | a6adca58d7c3d6fc4f1420f3ba0af40591e05b7d /Kernel/CommandLine.h | |
parent | 0ef1137e8833fdcd7f859ec02cbf7b93f5f0c4f9 (diff) | |
download | serenity-eca8f292a56f8a0000532c15081a753cc21878b1.zip |
Kernel: Allow to disable early boot console
This aid debugging on bare metal when we suspect that the boot console
does something wrong that interferes with other kernel components.
Diffstat (limited to 'Kernel/CommandLine.h')
-rw-r--r-- | Kernel/CommandLine.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/CommandLine.h b/Kernel/CommandLine.h index b4ef9b7fb6..0fe2ef1169 100644 --- a/Kernel/CommandLine.h +++ b/Kernel/CommandLine.h @@ -85,6 +85,7 @@ public: [[nodiscard]] bool disable_uhci_controller() const; [[nodiscard]] bool disable_usb() const; [[nodiscard]] bool disable_virtio() const; + [[nodiscard]] bool is_early_boot_console_disabled() const; [[nodiscard]] AHCIResetMode ahci_reset_mode() const; [[nodiscard]] StringView userspace_init() const; [[nodiscard]] NonnullOwnPtrVector<KString> userspace_init_args() const; |