mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
a1ab0f4b02
a/btrfs-progs-6.12-x86_64-1.txz: Upgraded. a/pkgtools-15.1-noarch-19.txz: Rebuilt. make-kernel-backup: report the creation of symlinks. Thanks to Mechanikx. ap/mariadb-11.4.4-x86_64-5.txz: Rebuilt. Since /etc/default/mariadb skips SSL (--skip-ssl) by default, the client side needs to do this by default also. So we've added /etc/my.cnf.d/skip-ssl.cnf to configure this, and have added comments in both files about what to change in order to enable SSL for both the client and server. Thanks to TJ09. l/alsa-lib-1.2.13-x86_64-2.txz: Rebuilt. [PATCH] UCM2: Intel: sof-hda-dsp: Fix handling of empty sys_vendor. Thanks to fulalas. l/mozjs128-128.5.1esr-x86_64-1.txz: Upgraded. l/pulseaudio-17.0-x86_64-5.txz: Rebuilt. In the X11/Wayland startup files, test the configuration better to make sure that we actually wanted autospawn before assuming we should start pulseaudio manually because autospawn wasn't working. Thanks to crtlaltca for the bug report. xap/mozilla-firefox-128.5.1esr-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/firefox/128.5.1/releasenotes/
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
From 11b028a9a01e47fc9b48e4a566803752011902e2 Mon Sep 17 00:00:00 2001
|
|
From: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
|
|
Date: Wed, 13 Nov 2024 14:48:38 +0200
|
|
Subject: [PATCH] UCM2: Intel: sof-hda-dsp: Fix handling of empty sys_vendor
|
|
|
|
The mistake in UCM syntax caused in alsaucm start error:
|
|
|
|
ALSA lib ucm_cond.c:367:(if_eval) unknown If.Condition.Type
|
|
|
|
Fixes: 13022a97711d ("sof-hda-dsp: Fix the case where sysfs dmi
|
|
sys_vendor attribute is not set")
|
|
|
|
Closes: https://github.com/alsa-project/alsa-ucm-conf/pull/463
|
|
Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
|
|
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
|
|
---
|
|
ucm2/Intel/sof-hda-dsp/HiFi-sof.conf | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/ucm2/Intel/sof-hda-dsp/HiFi-sof.conf b/ucm2/Intel/sof-hda-dsp/HiFi-sof.conf
|
|
index fea8159e..c755ba26 100644
|
|
--- a/ucm2/Intel/sof-hda-dsp/HiFi-sof.conf
|
|
+++ b/ucm2/Intel/sof-hda-dsp/HiFi-sof.conf
|
|
@@ -6,8 +6,8 @@ Define.SOFVendor "$${sys:devices/virtual/dmi/id/sys_vendor}"
|
|
|
|
If.SOFVendor {
|
|
Condition {
|
|
- Type Empty
|
|
- String "${var:SOFVendor}"
|
|
+ Type String
|
|
+ Empty "${var:SOFVendor}"
|
|
}
|
|
True.Define.SOFVendor "${sys:devices/virtual/dmi/id/board_vendor}"
|
|
}
|