]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
bcm27xx: move bcm27xx-sound package to sound.mk
authorJoshua Covington <joshuacov@gmail.com>
Sun, 9 Aug 2026 14:03:25 +0000 (14:03 +0000)
committerJonas Jelonek <jelonek.jonas@gmail.com>
Fri, 14 Aug 2026 08:31:20 +0000 (10:31 +0200)
KernelPackage/bcm27xx-sound lives under SOUND_MENU and provides
onboard audio support, but the package definition itself was
misplaced in other.mk. Move it to sound.mk alongside the other
audio-related kernel packages. No functional change.

Signed-off-by: Joshua Covington <joshuacov@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/24645
Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
target/linux/bcm27xx/modules/other.mk
target/linux/bcm27xx/modules/sound.mk

index 47b463c7ac00fcb29949c46f2cf8c7e96636781a..acf7cf6bfda19670d73b51f319de788214e705be 100644 (file)
@@ -173,19 +173,3 @@ define KernelPackage/bcm27xx-hid/description
 endef
 
 $(eval $(call KernelPackage,bcm27xx-hid))
-
-
-define KernelPackage/bcm27xx-sound
-  SUBMENU:=$(SOUND_MENU)
-  TITLE:=Onboard audio support for bcm27xx boards
-  DEPENDS:=@TARGET_bcm27xx \
-       +kmod-sound-core +kmod-sound-arm-bcm2835
-endef
-
-define KernelPackage/bcm27xx-sound/description
- Pulls in onboard audio support. Not installed by default --
- headless/router deployments don't need it; install this if you
- want sound output on this board.
-endef
-
-$(eval $(call KernelPackage,bcm27xx-sound))
index 989828e97ee9633ad4503bb1cfa918de672ca01e..f2d0acf9af1faaf245ad35bd3dffcb75a67edfe6 100644 (file)
@@ -1086,3 +1086,19 @@ define KernelPackage/sound-soc-rpi-proto/description
 endef
 
 $(eval $(call KernelPackage,sound-soc-rpi-proto))
+
+
+define KernelPackage/bcm27xx-sound
+  SUBMENU:=$(SOUND_MENU)
+  TITLE:=Onboard audio support for bcm27xx boards
+  DEPENDS:=@TARGET_bcm27xx \
+       +kmod-sound-core +kmod-sound-arm-bcm2835
+endef
+
+define KernelPackage/bcm27xx-sound/description
+ Pulls in onboard audio support. Not installed by default --
+ headless/router deployments don't need it; install this if you
+ want sound output on this board.
+endef
+
+$(eval $(call KernelPackage,bcm27xx-sound))