From 4a2a3500ed42577f1ed49cbf3818b7069e369483 Mon Sep 17 00:00:00 2001 From: Admin Pupkin Date: Tue, 9 Jun 2026 11:21:58 +0300 Subject: [PATCH] initfs: update inputd service to register scheme 'input/evdev' (v6.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The v6.0 single-producer input architecture registers the input producer scheme as 'input/evdev' (not the legacy 'input' scheme). Without this update, the initfs would try to register 'input' but the inputd binary would attempt to register 'input/evdev' — leading to a 'scheme already registered' error or a missing scheme entirely. Also update the description to reflect the v6.0 role: pure evdev ring buffer (not the legacy VT input and graphics multiplexer). --- 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 ba291046ab..b52e1cdc41 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 = "VT input and graphics multiplexer" +description = "v6.0 input/evdev ring buffer (multi-writer, single-reader)" [service] cmd = "inputd" -type = { scheme = "input" } +type = { scheme = "input/evdev" }