From f077d2a1db0158db1632242f8dae193a5c2825c0 Mon Sep 17 00:00:00 2001 From: Paul Sajna Date: Sat, 16 May 2026 11:07:17 -0700 Subject: [PATCH] kconfig-generic: Enable MIDI sequencer and CH341 USB-UART Quoth /sound/core/seq/Kconfig: "Many programs require this feature, so you should enable it unless you know what you're doing." I'm using my google-wormdingler tablet for some music production stuff and these missing Kconfigs are really grinding my gears. The USB-UART is part of my MIDI adapter, but is also quite a common chip used for many things, including a bunch of arduinos. Other configs for MIDI are enabled by default, but for whatever reason the core sequencer device isn't. Signed-off-by: Paul Sajna Part-of: --- kconfig-generic.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kconfig-generic.toml b/kconfig-generic.toml index 9817139c8..d7aa81966 100644 --- a/kconfig-generic.toml +++ b/kconfig-generic.toml @@ -12,6 +12,7 @@ # audio devices and codecs ["category:audio".">=0.0.0"."all"] +SND_SEQUENCER = "m" SND_SOC = "m" SND_SOC_AW88261 = "m" SND_SOC_CS35L36 = "m" @@ -139,6 +140,8 @@ FB_EFI = "y" ["category:usb".">=0.0.0"."aarch64"] UCSI_LENOVO_YOGA_C630 = "m" QCOM_GSBI = "y" +["category:usb".">=0.0.0"."all"] +USB_SERIAL_CH341 = "m" # vhost acceleration ["category:vhost".">=0.0.0"."all"]