From a2ad2023e866f77e85ca677d67895e3ebf589554 Mon Sep 17 00:00:00 2001 From: Admin Pupkin Date: Wed, 10 Jun 2026 19:32:01 +0300 Subject: [PATCH] inputd: fix service type to scheme='input' for init registration The v6.0 service file used type={scheme='input/evdev'} which caused init to register the scheme under the wrong name. Restored the original type={scheme='input'} so init correctly registers the :input scheme and all downstream services (vesad, fbcond, fbbootlogd) can find it. --- recipes/core/base/init.initfs.d/10_inputd.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/core/base/init.initfs.d/10_inputd.service b/recipes/core/base/init.initfs.d/10_inputd.service index b52e1cdc41..ba291046ab 100644 --- a/recipes/core/base/init.initfs.d/10_inputd.service +++ b/recipes/core/base/init.initfs.d/10_inputd.service @@ -1,6 +1,6 @@ [unit] -description = "v6.0 input/evdev ring buffer (multi-writer, single-reader)" +description = "VT input and graphics multiplexer" [service] cmd = "inputd" -type = { scheme = "input/evdev" } +type = { scheme = "input" }