1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

Kernel/HID: Add boot option to disable PS2 Mouse

This commit is contained in:
Liav A 2022-03-05 13:58:10 +02:00 committed by Jelle Raaijmakers
parent 95bf6ddb8e
commit 83835c7256
4 changed files with 10 additions and 1 deletions

View file

@ -226,6 +226,11 @@ UNMAP_AFTER_INIT bool CommandLine::is_physical_networking_disabled() const
return contains("disable_physical_networking"sv);
}
UNMAP_AFTER_INIT bool CommandLine::disable_ps2_mouse() const
{
return contains("disable_ps2_mouse"sv);
}
UNMAP_AFTER_INIT bool CommandLine::disable_physical_storage() const
{
return contains("disable_physical_storage"sv);