All of lore.kernel.org
 help / color / mirror / Atom feed
From: michael.opdenacker@rootcommit.com
To: openembedded-core@lists.openembedded.org
Cc: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Subject: [PATCH 4/4] alsa-utils: upgrade 1.2.13 -> 1.2.14
Date: Fri, 25 Apr 2025 06:23:26 +0000 (UTC)	[thread overview]
Message-ID: <20250425062251.2825835-4-michael.opdenacker@rootcommit.com> (raw)
In-Reply-To: <20250425062251.2825835-1-michael.opdenacker@rootcommit.com>

From: Michael Opdenacker <michael.opdenacker@rootcommit.com>

Remove 2 patches now included upstream.

Changelog:
https://www.alsa-project.org/wiki/Changes_v1.2.13_v1.2.14

Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
 ...restore.rules-fix-alsa_restore_go-st.patch | 42 -------------------
 ...restore.rules-fix-AMD-acp-pdm-mach-l.patch | 35 ----------------
 ...a-utils_1.2.13.bb => alsa-utils_1.2.14.bb} |  7 +---
 3 files changed, 2 insertions(+), 82 deletions(-)
 delete mode 100644 meta/recipes-multimedia/alsa/alsa-utils/0001-alsactl-90-alsa-restore.rules-fix-alsa_restore_go-st.patch
 delete mode 100644 meta/recipes-multimedia/alsa/alsa-utils/0002-alsactl-90-alsa-restore.rules-fix-AMD-acp-pdm-mach-l.patch
 rename meta/recipes-multimedia/alsa/{alsa-utils_1.2.13.bb => alsa-utils_1.2.14.bb} (95%)

diff --git a/meta/recipes-multimedia/alsa/alsa-utils/0001-alsactl-90-alsa-restore.rules-fix-alsa_restore_go-st.patch b/meta/recipes-multimedia/alsa/alsa-utils/0001-alsactl-90-alsa-restore.rules-fix-alsa_restore_go-st.patch
deleted file mode 100644
index ea02fdb8c5..0000000000
--- a/meta/recipes-multimedia/alsa/alsa-utils/0001-alsactl-90-alsa-restore.rules-fix-alsa_restore_go-st.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From f90124c73edd050b24961197a4abcf17e53b41a8 Mon Sep 17 00:00:00 2001
-From: Jaroslav Kysela <perex@perex.cz>
-Date: Thu, 14 Nov 2024 09:38:49 +0100
-Subject: [PATCH 1/2] alsactl: 90-alsa-restore.rules - fix alsa_restore_go/std
-
-Fix the label mismatch which was introduced in the transition from the
-temporary test rules.
-
-Closes: https://github.com/alsa-project/alsa-utils/issues/280
-Fixes: 8116639 ("alsactl: 90-alsa-restore.rules - add support for AMD ACP digital microphone")
-Signed-off-by: Jaroslav Kysela <perex@perex.cz>
-Upstream-Status: Backport [https://github.com/alsa-project/alsa-utils/commit/f90124c73edd050b24961197a4abcf17e53b41a8]
-Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
----
- alsactl/90-alsa-restore.rules.in | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/alsactl/90-alsa-restore.rules.in b/alsactl/90-alsa-restore.rules.in
-index 85f0b15f4856..dae2ed8ccc8f 100644
---- a/alsactl/90-alsa-restore.rules.in
-+++ b/alsactl/90-alsa-restore.rules.in
-@@ -3,6 +3,8 @@
- ACTION=="add", SUBSYSTEM=="sound", KERNEL=="controlC*", KERNELS!="card*",@extratest@ GOTO="alsa_restore_go"
- GOTO="alsa_restore_end"
- 
-+LABEL="alsa_restore_go"
-+
- ENV{ALSA_CARD_NUMBER}="$attr{device/number}"
- 
- # mark HDA analog card; HDMI/DP card does not have capture devices
-@@ -21,7 +23,7 @@ TEST!="/run/udev/alsa-hda-analog-card", GOTO="alsa_restore_std"
- IMPORT{program}="/usr/bin/cat /run/udev/alsa-hda-analog-card"
- ENV{ALSA_CARD_HDA_ANALOG}!="", ENV{ALSA_CARD_NUMBER}="$env{ALSA_CARD_HDA_ANALOG}"
- 
--LABEL="alsa_restore_go"
-+LABEL="alsa_restore_std"
- TEST!="@daemonswitch@", RUN+="@sbindir@/alsactl@args@ restore $env{ALSA_CARD_NUMBER}"
- TEST=="@daemonswitch@", RUN+="@sbindir@/alsactl@args@ nrestore $env{ALSA_CARD_NUMBER}"
- 
--- 
-2.25.1
-
diff --git a/meta/recipes-multimedia/alsa/alsa-utils/0002-alsactl-90-alsa-restore.rules-fix-AMD-acp-pdm-mach-l.patch b/meta/recipes-multimedia/alsa/alsa-utils/0002-alsactl-90-alsa-restore.rules-fix-AMD-acp-pdm-mach-l.patch
deleted file mode 100644
index 2299718d14..0000000000
--- a/meta/recipes-multimedia/alsa/alsa-utils/0002-alsactl-90-alsa-restore.rules-fix-AMD-acp-pdm-mach-l.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 6f7ce73159c02b726a6f0fe0acff961c95e337a8 Mon Sep 17 00:00:00 2001
-From: Aaron Ma <aaron.ma@canonical.com>
-Date: Wed, 20 Nov 2024 15:55:02 +0800
-Subject: [PATCH 2/2] alsactl: 90-alsa-restore.rules - fix AMD acp-pdm-mach
- link
-
-The link name of AMD ACP digital microphones driver acp-pdm-mach
-is acp-dmic-codec. Fix it to make UCM initialize it again.
-
-Closes: https://github.com/alsa-project/alsa-utils/pull/281
-Fixes: 8116639 ("alsactl: 90-alsa-restore.rules - add support for AMD ACP digital microphone")
-Signed-off-by: Aaron Ma <aaron.ma@canonical.com>
-Signed-off-by: Jaroslav Kysela <perex@perex.cz>
-Upstream-Status: Backport [https://github.com/alsa-project/alsa-utils/commit/6f7ce73159c02b726a6f0fe0acff961c95e337a8]
-Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
----
- alsactl/90-alsa-restore.rules.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/alsactl/90-alsa-restore.rules.in b/alsactl/90-alsa-restore.rules.in
-index dae2ed8ccc8f..5db6080b0dc6 100644
---- a/alsactl/90-alsa-restore.rules.in
-+++ b/alsactl/90-alsa-restore.rules.in
-@@ -14,7 +14,7 @@ DRIVERS=="snd_hda_intel", TEST=="device/pcmC$env{ALSA_CARD_NUMBER}D0p", RUN+="/b
- TEST=="device/device/acp3x-dmic-capture", GOTO="alsa_hda_analog"
- TEST=="device/device/acp6x-dmic-capture", GOTO="alsa_hda_analog"
- TEST=="device/device/acp63-dmic-capture", GOTO="alsa_hda_analog"
--TEST=="device/device/acp-pdm-dmic", GOTO="alsa_hda_analog"
-+TEST=="device/device/acp-dmic-codec", GOTO="alsa_hda_analog"
- GOTO="alsa_restore_std"
- 
- LABEL="alsa_hda_analog"
--- 
-2.25.1
-
diff --git a/meta/recipes-multimedia/alsa/alsa-utils_1.2.13.bb b/meta/recipes-multimedia/alsa/alsa-utils_1.2.14.bb
similarity index 95%
rename from meta/recipes-multimedia/alsa/alsa-utils_1.2.13.bb
rename to meta/recipes-multimedia/alsa/alsa-utils_1.2.14.bb
index 91dcee1453..74b36291d6 100644
--- a/meta/recipes-multimedia/alsa/alsa-utils_1.2.13.bb
+++ b/meta/recipes-multimedia/alsa/alsa-utils_1.2.14.bb
@@ -24,11 +24,8 @@ 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 \
-           file://0001-alsactl-90-alsa-restore.rules-fix-alsa_restore_go-st.patch \
-           file://0002-alsactl-90-alsa-restore.rules-fix-AMD-acp-pdm-mach-l.patch \
-           "
-SRC_URI[sha256sum] = "1702a6b1cdf9ba3e996ecbc1ddcf9171e6808f5961d503d0f27e80ee162f1daa"
+SRC_URI = "https://www.alsa-project.org/files/pub/utils/alsa-utils-${PV}.tar.bz2"
+SRC_URI[sha256sum] = "0794c74d33fed943e7c50609c13089e409312b6c403d6ae8984fc429c0960741"
 
 # On build machines with python-docutils (not python3-docutils !!) installed
 # rst2man (not rst2man.py) is detected and compile fails with


      parent reply	other threads:[~2025-04-25  6:23 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-25  6:23 [PATCH 1/4] alsa-lib: upgrade 1.2.13 -> 1.2.14 michael.opdenacker
2025-04-25  6:23 ` [PATCH 2/4] alsa-tools: upgrade 1.2.11 " michael.opdenacker
2025-04-25  6:23 ` [PATCH 3/4] alsa-ucm-conf: upgrade 1.2.13 " michael.opdenacker
2025-04-25  6:23 ` michael.opdenacker [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250425062251.2825835-4-michael.opdenacker@rootcommit.com \
    --to=michael.opdenacker@rootcommit.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.