From: Mieczyslaw Nalewaj Date: Fri, 8 May 2026 17:31:41 +0000 (+0200) Subject: kernel: sound: fix kmod-sound-midi2 packaging X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e26edb2e359b9d90f99e003e6f9c43297eab85e;p=thirdparty%2Fopenwrt.git kernel: sound: fix kmod-sound-midi2 packaging kmod-sound-midi2 expects sound/core/snd-ump.ko, but CONFIG_SND_UMP=y builds it in-kernel rather than as a module. Replace the forced built-in setting with plain CONFIG_SND_UMP so the module can be packaged correctly. Signed-off-by: Mieczyslaw Nalewaj Link: https://github.com/openwrt/openwrt/pull/23265 Signed-off-by: Robert Marko --- diff --git a/package/kernel/linux/modules/sound.mk b/package/kernel/linux/modules/sound.mk index 45a7d7e0195..43f1fd059a9 100644 --- a/package/kernel/linux/modules/sound.mk +++ b/package/kernel/linux/modules/sound.mk @@ -663,7 +663,7 @@ $(eval $(call KernelPackage,sound-hda-intel)) define KernelPackage/sound-midi2 TITLE:=MIDI 2.0 and UMP Support KCONFIG:= \ - CONFIG_SND_UMP=y \ + CONFIG_SND_UMP \ CONFIG_SND_UMP_LEGACY_RAWMIDI=y FILES:=$(LINUX_DIR)/sound/core/snd-ump.ko AUTOLOAD:=$(call AutoProbe,snd-ump)