* [PATCH 2/5] alsa-utils: upgrade 1.2.14 -> 1.2.15
2025-12-17 12:17 [PATCH 0/5] ALSA 1.2.15 updates michael.opdenacker
2025-12-17 12:17 ` [PATCH 1/5] alsa-lib: upgrade 1.2.14 -> 1.2.15 michael.opdenacker
@ 2025-12-17 12:17 ` michael.opdenacker
2025-12-17 12:17 ` [PATCH 4/5] alsa-ucm-conf: " michael.opdenacker
` (3 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: michael.opdenacker @ 2025-12-17 12:17 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Include a fix from upstream fixing a build issue:
https://github.com/alsa-project/alsa-utils/commit/10587067fcf5b05e7fa5a84c38238dbffd079c4f
Upstream changes:
https://www.alsa-project.org/wiki/Changes_v1.2.14_v1.2.15#alsa-utils
Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
...sactl-fix-build-when-in-subdirectory.patch | 29 +++++++++++++++++++
...a-utils_1.2.14.bb => alsa-utils_1.2.15.bb} | 7 +++--
2 files changed, 33 insertions(+), 3 deletions(-)
create mode 100644 meta/recipes-multimedia/alsa/alsa-utils-1.2.15/0001-alsactl-fix-build-when-in-subdirectory.patch
rename meta/recipes-multimedia/alsa/{alsa-utils_1.2.14.bb => alsa-utils_1.2.15.bb} (96%)
diff --git a/meta/recipes-multimedia/alsa/alsa-utils-1.2.15/0001-alsactl-fix-build-when-in-subdirectory.patch b/meta/recipes-multimedia/alsa/alsa-utils-1.2.15/0001-alsactl-fix-build-when-in-subdirectory.patch
new file mode 100644
index 0000000000..d1c6b3d830
--- /dev/null
+++ b/meta/recipes-multimedia/alsa/alsa-utils-1.2.15/0001-alsactl-fix-build-when-in-subdirectory.patch
@@ -0,0 +1,29 @@
+From 10587067fcf5b05e7fa5a84c38238dbffd079c4f Mon Sep 17 00:00:00 2001
+From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
+Date: Mon, 8 Dec 2025 11:12:34 +0000
+Subject: [PATCH] alsactl: fix build when in subdirectory
+
+From: Rudi Heitbaum <rudi@heitbaum.com>
+
+create the conf directory as part of the edit recipe
+
+Closes: https://github.com/alsa-project/alsa-utils/pull/311
+Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
+Signed-off-by: Jaroslav Kysela <perex@perex.cz>
+Upstream-Status: Backport [10587067fcf5b05e7fa5a84c38238dbffd079c4f]
+---
+ alsactl/Makefile.am | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/alsactl/Makefile.am b/alsactl/Makefile.am
+index 48b7c7a..c8729e0 100644
+--- a/alsactl/Makefile.am
++++ b/alsactl/Makefile.am
+@@ -47,6 +47,7 @@ endif
+ edit = \
+ extratest=$$(echo ' $(ALSACTL_UDEV_EXTRATEST)' | sed -e 's/__/ /g' -e 's/^ $$//'); \
+ args=$$(echo ' $(ALSACTL_UDEV_ARGS)' | sed -e 's/__/ /g' -e 's/^ $$//'); \
++ mkdir -p conf; \
+ $(SED) -r -e 's,@sbindir\@,$(sbindir),g' \
+ -e 's,@mydatadir\@,$(mydatadir),g' \
+ -e 's,@daemonswitch\@,$(ALSACTL_DAEMONSWITCH),g' \
diff --git a/meta/recipes-multimedia/alsa/alsa-utils_1.2.14.bb b/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.bb
similarity index 96%
rename from meta/recipes-multimedia/alsa/alsa-utils_1.2.14.bb
rename to meta/recipes-multimedia/alsa/alsa-utils_1.2.15.bb
index 3cbb9b464b..8fae1cfd9e 100644
--- a/meta/recipes-multimedia/alsa/alsa-utils_1.2.14.bb
+++ b/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.bb
@@ -24,14 +24,15 @@ PACKAGECONFIG[udev] = "--with-udev-rules-dir=`pkg-config --variable=udevdir udev
PACKAGECONFIG[manpages] = "--enable-xmlto, --disable-xmlto, xmlto-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native"
# alsa-utils specified in SRC_URI due to alsa-utils-scripts recipe
-SRC_URI = "https://www.alsa-project.org/files/pub/utils/alsa-utils-${PV}.tar.bz2"
-SRC_URI[sha256sum] = "0794c74d33fed943e7c50609c13089e409312b6c403d6ae8984fc429c0960741"
+SRC_URI = "https://www.alsa-project.org/files/pub/utils/alsa-utils-${PV}.tar.bz2 \
+ file://0001-alsactl-fix-build-when-in-subdirectory.patch"
+SRC_URI[sha256sum] = "d3183d2ed2d69e9143c5beb97036267c3fdabfe8bfbea8bc6863f17b1f0b568e"
# On build machines with python-docutils (not python3-docutils !!) installed
# rst2man (not rst2man.py) is detected and compile fails with
# | make[1]: *** No rule to make target 'alsaucm.1', needed by 'all-am'. Stop.
# Avoid this by disabling expicitly
-EXTRA_OECONF = "--disable-rst2man"
+# EXTRA_OECONF = "--disable-rst2man"
inherit autotools gettext pkgconfig manpages
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 1/5] alsa-lib: upgrade 1.2.14 -> 1.2.15
2025-12-17 12:17 [PATCH 0/5] ALSA 1.2.15 updates michael.opdenacker
@ 2025-12-17 12:17 ` michael.opdenacker
2025-12-17 12:17 ` [PATCH 2/5] alsa-utils: " michael.opdenacker
` (4 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: michael.opdenacker @ 2025-12-17 12:17 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Upstream changes:
https://www.alsa-project.org/wiki/Changes_v1.2.14_v1.2.15#alsa-lib
Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
.../alsa/{alsa-lib_1.2.14.bb => alsa-lib_1.2.15.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-multimedia/alsa/{alsa-lib_1.2.14.bb => alsa-lib_1.2.15.bb} (94%)
diff --git a/meta/recipes-multimedia/alsa/alsa-lib_1.2.14.bb b/meta/recipes-multimedia/alsa/alsa-lib_1.2.15.bb
similarity index 94%
rename from meta/recipes-multimedia/alsa/alsa-lib_1.2.14.bb
rename to meta/recipes-multimedia/alsa/alsa-lib_1.2.15.bb
index 41a42f9ecc..bf20e1a1ad 100644
--- a/meta/recipes-multimedia/alsa/alsa-lib_1.2.14.bb
+++ b/meta/recipes-multimedia/alsa/alsa-lib_1.2.15.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7 \
"
SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2"
-SRC_URI[sha256sum] = "be9c88a0b3604367dd74167a2b754a35e142f670292ae47a2fdef27a2ee97a32"
+SRC_URI[sha256sum] = "83770841585e766a60c99fd23f8c574c22643ae0cb1f2d20b793c3d84eb95a8d"
inherit autotools pkgconfig
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 0/5] ALSA 1.2.15 updates
@ 2025-12-17 12:17 michael.opdenacker
2025-12-17 12:17 ` [PATCH 1/5] alsa-lib: upgrade 1.2.14 -> 1.2.15 michael.opdenacker
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: michael.opdenacker @ 2025-12-17 12:17 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
These changes update alsa-lib, alsa-utils, alsa-tools
and alsa-ucm-conf to the latest version: 1.2.15
Michael Opdenacker (5):
alsa-lib: upgrade 1.2.14 -> 1.2.15
alsa-utils: upgrade 1.2.14 -> 1.2.15
alsa-tools: upgrade 1.2.14 -> 1.2.15
alsa-ucm-conf: upgrade 1.2.14 -> 1.2.15
maintainers.inc: update e-mail address
meta/conf/distro/include/maintainers.inc | 22 +++++++-------
...{alsa-lib_1.2.14.bb => alsa-lib_1.2.15.bb} | 2 +-
...a-tools_1.2.14.bb => alsa-tools_1.2.15.bb} | 2 +-
...conf_1.2.14.bb => alsa-ucm-conf_1.2.15.bb} | 2 +-
...sactl-fix-build-when-in-subdirectory.patch | 29 +++++++++++++++++++
...a-utils_1.2.14.bb => alsa-utils_1.2.15.bb} | 7 +++--
6 files changed, 47 insertions(+), 17 deletions(-)
rename meta/recipes-multimedia/alsa/{alsa-lib_1.2.14.bb => alsa-lib_1.2.15.bb} (94%)
rename meta/recipes-multimedia/alsa/{alsa-tools_1.2.14.bb => alsa-tools_1.2.15.bb} (97%)
rename meta/recipes-multimedia/alsa/{alsa-ucm-conf_1.2.14.bb => alsa-ucm-conf_1.2.15.bb} (89%)
create mode 100644 meta/recipes-multimedia/alsa/alsa-utils-1.2.15/0001-alsactl-fix-build-when-in-subdirectory.patch
rename meta/recipes-multimedia/alsa/{alsa-utils_1.2.14.bb => alsa-utils_1.2.15.bb} (96%)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 4/5] alsa-ucm-conf: upgrade 1.2.14 -> 1.2.15
2025-12-17 12:17 [PATCH 0/5] ALSA 1.2.15 updates michael.opdenacker
2025-12-17 12:17 ` [PATCH 1/5] alsa-lib: upgrade 1.2.14 -> 1.2.15 michael.opdenacker
2025-12-17 12:17 ` [PATCH 2/5] alsa-utils: " michael.opdenacker
@ 2025-12-17 12:17 ` michael.opdenacker
2025-12-17 12:17 ` [PATCH 3/5] alsa-tools: " michael.opdenacker
` (2 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: michael.opdenacker @ 2025-12-17 12:17 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Upstream changes:
https://www.alsa-project.org/wiki/Changes_v1.2.14_v1.2.15#alsa-ucm-conf
Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
.../alsa/{alsa-ucm-conf_1.2.14.bb => alsa-ucm-conf_1.2.15.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-multimedia/alsa/{alsa-ucm-conf_1.2.14.bb => alsa-ucm-conf_1.2.15.bb} (89%)
diff --git a/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.14.bb b/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.15.bb
similarity index 89%
rename from meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.14.bb
rename to meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.15.bb
index d9ef831937..1eaec98e3b 100644
--- a/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.14.bb
+++ b/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.15.bb
@@ -8,7 +8,7 @@ LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=20d74d74db9741697903372ad001d3b4"
SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2"
-SRC_URI[sha256sum] = "32e9809f592d92b978aa1032e35293c33b8d0f1ec475f937022c3ee9a3069c21"
+SRC_URI[sha256sum] = "5510cb0947a3bb877b5ce218e3ecedd78bfa6643e372346c87d93d4844a45ffa"
# Something went wrong at upstream tarballing
inherit allarch
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 3/5] alsa-tools: upgrade 1.2.14 -> 1.2.15
2025-12-17 12:17 [PATCH 0/5] ALSA 1.2.15 updates michael.opdenacker
` (2 preceding siblings ...)
2025-12-17 12:17 ` [PATCH 4/5] alsa-ucm-conf: " michael.opdenacker
@ 2025-12-17 12:17 ` michael.opdenacker
2025-12-17 12:17 ` [PATCH 5/5] maintainers.inc: update e-mail address michael.opdenacker
2025-12-17 14:50 ` [OE-core] [PATCH 0/5] ALSA 1.2.15 updates Mathieu Dubois-Briand
5 siblings, 0 replies; 8+ messages in thread
From: michael.opdenacker @ 2025-12-17 12:17 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Upstream changes:
https://www.alsa-project.org/wiki/Changes_v1.2.14_v1.2.15#alsa-tools
Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
.../alsa/{alsa-tools_1.2.14.bb => alsa-tools_1.2.15.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-multimedia/alsa/{alsa-tools_1.2.14.bb => alsa-tools_1.2.15.bb} (97%)
diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.2.14.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.2.15.bb
similarity index 97%
rename from meta/recipes-multimedia/alsa/alsa-tools_1.2.14.bb
rename to meta/recipes-multimedia/alsa/alsa-tools_1.2.15.bb
index 751d9e8a76..1228176fb9 100644
--- a/meta/recipes-multimedia/alsa/alsa-tools_1.2.14.bb
+++ b/meta/recipes-multimedia/alsa/alsa-tools_1.2.15.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=59530bdf33659b29e73d4adb9f9f65
SRC_URI = "https://www.alsa-project.org/files/pub/tools/${BP}.tar.bz2"
-SRC_URI[sha256sum] = "faef6fdd39ec79c9a5473dc63aa1b6331bf7664a9d452a0a8198cec7016cbc6f"
+SRC_URI[sha256sum] = "800498d35233672ef67f4bf74cc6e1d37e1fe70c0540e2d2e062f2319e7b5df7"
inherit autotools-brokensep pkgconfig
# brokensep as as10k1 (and probably more) fail out of tree
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 5/5] maintainers.inc: update e-mail address
2025-12-17 12:17 [PATCH 0/5] ALSA 1.2.15 updates michael.opdenacker
` (3 preceding siblings ...)
2025-12-17 12:17 ` [PATCH 3/5] alsa-tools: " michael.opdenacker
@ 2025-12-17 12:17 ` michael.opdenacker
2025-12-17 14:50 ` [OE-core] [PATCH 0/5] ALSA 1.2.15 updates Mathieu Dubois-Briand
5 siblings, 0 replies; 8+ messages in thread
From: michael.opdenacker @ 2025-12-17 12:17 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
meta/conf/distro/include/maintainers.inc | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc
index 8971b9b552..447faf8fb3 100644
--- a/meta/conf/distro/include/maintainers.inc
+++ b/meta/conf/distro/include/maintainers.inc
@@ -31,13 +31,13 @@ RECIPE_MAINTAINER:pn-acl = "Chen Qi <Qi.Chen@windriver.com>"
RECIPE_MAINTAINER:pn-acpica = "Ross Burton <ross.burton@arm.com>"
RECIPE_MAINTAINER:pn-acpid = "Ross Burton <ross.burton@arm.com>"
RECIPE_MAINTAINER:pn-adwaita-icon-theme = "Ross Burton <ross.burton@arm.com>"
-RECIPE_MAINTAINER:pn-alsa-lib = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-plugins = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-state = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-tools = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-topology-conf = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-ucm-conf = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-utils = "Michael Opdenacker <michael@opdenacker.org>"
+RECIPE_MAINTAINER:pn-alsa-lib = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-plugins = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-state = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-tools = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-topology-conf = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-ucm-conf = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-utils = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
RECIPE_MAINTAINER:pn-appstream = "Markus Volk <f_l_k@t-online.de>"
RECIPE_MAINTAINER:pn-apr = "Hongxu Jia <hongxu.jia@windriver.com>"
RECIPE_MAINTAINER:pn-apr-util = "Hongxu Jia <hongxu.jia@windriver.com>"
@@ -182,7 +182,7 @@ RECIPE_MAINTAINER:pn-ffmpeg = "Unassigned <unassigned@yoctoproject.org>"
RECIPE_MAINTAINER:pn-fastfloat = "Markus Volk <f_l_k@t-online.de>"
RECIPE_MAINTAINER:pn-file = "Yi Zhao <yi.zhao@windriver.com>"
RECIPE_MAINTAINER:pn-findutils = "Chen Qi <Qi.Chen@windriver.com>"
-RECIPE_MAINTAINER:pn-flac = "Michael Opdenacker <michael@opdenacker.org>"
+RECIPE_MAINTAINER:pn-flac = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
RECIPE_MAINTAINER:pn-flex = "Chen Qi <Qi.Chen@windriver.com>"
RECIPE_MAINTAINER:pn-fmt = "Robert Yang <liezhi.yang@windriver.com>"
RECIPE_MAINTAINER:pn-font-alias = "Unassigned <unassigned@yoctoproject.org>"
@@ -311,7 +311,7 @@ RECIPE_MAINTAINER:pn-keymaps = "Unassigned <unassigned@yoctoproject.org>"
RECIPE_MAINTAINER:pn-kmod = "Chen Qi <Qi.Chen@windriver.com>"
RECIPE_MAINTAINER:pn-kmscube = "Unassigned <unassigned@yoctoproject.org>"
RECIPE_MAINTAINER:pn-l3afpad = "Unassigned <unassigned@yoctoproject.org>"
-RECIPE_MAINTAINER:pn-lame = "Michael Opdenacker <michael@opdenacker.org>"
+RECIPE_MAINTAINER:pn-lame = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
RECIPE_MAINTAINER:pn-ldconfig-native = "Khem Raj <raj.khem@gmail.com>"
RECIPE_MAINTAINER:pn-less = "Yi Zhao <yi.zhao@windriver.com>"
RECIPE_MAINTAINER:pn-libacpi = "Unassigned <unassigned@yoctoproject.org>"
@@ -797,8 +797,8 @@ RECIPE_MAINTAINER:pn-shutdown-desktop = "Unassigned <unassigned@yoctoproject.org
RECIPE_MAINTAINER:pn-signing-keys = "Richard Purdie <richard.purdie@linuxfoundation.org>"
RECIPE_MAINTAINER:pn-slang = "Yi Zhao <yi.zhao@windriver.com>"
RECIPE_MAINTAINER:pn-socat = "Hongxu Jia <hongxu.jia@windriver.com>"
-RECIPE_MAINTAINER:pn-speex = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-speexdsp = "Michael Opdenacker <michael@opdenacker.org>"
+RECIPE_MAINTAINER:pn-speex = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-speexdsp = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
RECIPE_MAINTAINER:pn-spirv-headers = "Jose Quaresma <quaresma.jose@gmail.com>"
RECIPE_MAINTAINER:pn-spirv-llvm-translator = "Khem Raj <raj.khem@gmail.com>"
RECIPE_MAINTAINER:pn-spirv-tools = "Jose Quaresma <quaresma.jose@gmail.com>"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [OE-core] [PATCH 0/5] ALSA 1.2.15 updates
2025-12-17 12:17 [PATCH 0/5] ALSA 1.2.15 updates michael.opdenacker
` (4 preceding siblings ...)
2025-12-17 12:17 ` [PATCH 5/5] maintainers.inc: update e-mail address michael.opdenacker
@ 2025-12-17 14:50 ` Mathieu Dubois-Briand
2025-12-17 15:59 ` Michael Opdenacker
5 siblings, 1 reply; 8+ messages in thread
From: Mathieu Dubois-Briand @ 2025-12-17 14:50 UTC (permalink / raw)
To: michael.opdenacker, openembedded-core
On Wed Dec 17, 2025 at 1:17 PM CET, Michael Opdenacker via lists.openembedded.org wrote:
> From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
>
> These changes update alsa-lib, alsa-utils, alsa-tools
> and alsa-ucm-conf to the latest version: 1.2.15
>
> Michael Opdenacker (5):
Hi Michael,
Thanks for your patch.
Based on the discussion on the other thread, you are probably already
aware of this, but just to confirm: this is failing with musl:
ERROR: alsa-lib-1.2.15-r0 do_compile: Execution of '/srv/pokybuild/yocto-worker/musl-qemux86/build/build/tmp/work/core2-32-poky-linux-musl/alsa-lib/1.2.15/temp/run.do_compile.644079' failed with exit code 1
...
| ../../../sources/alsa-lib-1.2.15/src/ucm/ucm_exec.c: In function 'uc_mgr_exec':
| ../../../sources/alsa-lib-1.2.15/src/ucm/ucm_exec.c:263:17: error: implicit declaration of function 'close_range' [-Wimplicit-function-declaration]
| 263 | close_range(3, maxfd, 0);
| | ^~~~~~~~~~~
https://autobuilder.yoctoproject.org/valkyrie/#/builders/6/builds/2885
https://autobuilder.yoctoproject.org/valkyrie/#/builders/111/builds/1605
Thanks,
Mathieu
--
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [OE-core] [PATCH 0/5] ALSA 1.2.15 updates
2025-12-17 14:50 ` [OE-core] [PATCH 0/5] ALSA 1.2.15 updates Mathieu Dubois-Briand
@ 2025-12-17 15:59 ` Michael Opdenacker
0 siblings, 0 replies; 8+ messages in thread
From: Michael Opdenacker @ 2025-12-17 15:59 UTC (permalink / raw)
To: Mathieu Dubois-Briand; +Cc: michael.opdenacker, openembedded-core
Hi Mathieu
On 12/17/25 15:50, Mathieu Dubois-Briand wrote:
> On Wed Dec 17, 2025 at 1:17 PM CET, Michael Opdenacker via lists.openembedded.org wrote:
>> From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
>>
>> These changes update alsa-lib, alsa-utils, alsa-tools
>> and alsa-ucm-conf to the latest version: 1.2.15
>>
>> Michael Opdenacker (5):
> Hi Michael,
>
> Thanks for your patch.
>
> Based on the discussion on the other thread, you are probably already
> aware of this, but just to confirm: this is failing with musl:
>
> ERROR: alsa-lib-1.2.15-r0 do_compile: Execution of '/srv/pokybuild/yocto-worker/musl-qemux86/build/build/tmp/work/core2-32-poky-linux-musl/alsa-lib/1.2.15/temp/run.do_compile.644079' failed with exit code 1
> ...
> | ../../../sources/alsa-lib-1.2.15/src/ucm/ucm_exec.c: In function 'uc_mgr_exec':
> | ../../../sources/alsa-lib-1.2.15/src/ucm/ucm_exec.c:263:17: error: implicit declaration of function 'close_range' [-Wimplicit-function-declaration]
> | 263 | close_range(3, maxfd, 0);
> | | ^~~~~~~~~~~
>
> https://autobuilder.yoctoproject.org/valkyrie/#/builders/6/builds/2885
> https://autobuilder.yoctoproject.org/valkyrie/#/builders/111/builds/1605
Thanks for the confirmation!
Fortunately, upstream already has a fix for this issue:
https://github.com/alsa-project/alsa-lib/commit/a068cf08ad67447893b707cddfce31c9cafee643
I'm preparing a V2 for your robots to test :)
Thanks again
Michael.
--
Michael Opdenacker
Root Commit
Yocto Project and OpenEmbedded Training course - Learn by doing:
https://rootcommit.com/training/yocto/
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-12-17 15:59 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-17 12:17 [PATCH 0/5] ALSA 1.2.15 updates michael.opdenacker
2025-12-17 12:17 ` [PATCH 1/5] alsa-lib: upgrade 1.2.14 -> 1.2.15 michael.opdenacker
2025-12-17 12:17 ` [PATCH 2/5] alsa-utils: " michael.opdenacker
2025-12-17 12:17 ` [PATCH 4/5] alsa-ucm-conf: " michael.opdenacker
2025-12-17 12:17 ` [PATCH 3/5] alsa-tools: " michael.opdenacker
2025-12-17 12:17 ` [PATCH 5/5] maintainers.inc: update e-mail address michael.opdenacker
2025-12-17 14:50 ` [OE-core] [PATCH 0/5] ALSA 1.2.15 updates Mathieu Dubois-Briand
2025-12-17 15:59 ` Michael Opdenacker
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox