From 2b78b17926d0e22d8f1eea46d1dbe48f19c23280 Mon Sep 17 00:00:00 2001 From: Tom Date: Wed, 25 Nov 2020 17:05:46 -0700 Subject: [PATCH] Kernel: Enable VMWareBackdoor immediately at boot Rather than waiting until we get the first mouse packet, enable the absolute mode immediately. This avoids having to click first to be able to move the mouse. --- Kernel/init.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/init.cpp b/Kernel/init.cpp index 420fa39d5c..f24da6513f 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -265,6 +265,7 @@ void init_stage2() new RandomDevice; PTYMultiplexer::initialize(); new SB16; + VMWareBackdoor::the(); // don't wait until first mouse packet bool force_pio = kernel_command_line().contains("force_pio");