kernel-6.11.11-300
* Thu Dec 05 2024 Augusto Caringi <acaringi@redhat.com> [6.11.11-0] - Bluetooth: btusb: add Foxconn 0xe0fc for Qualcomm WCN785x (Mark Pearson) [2329005] - Linux v6.11.11 Resolves: rhbz#2329005 Signed-off-by: Augusto Caringi <acaringi@redhat.com>
This commit is contained in:
parent
74cc764544
commit
9fbe08a365
@ -1,3 +1,6 @@
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/3c1074ffe1ff3c21ce7bfea7d5b2195853d7ea90
|
||||
3c1074ffe1ff3c21ce7bfea7d5b2195853d7ea90 Bluetooth: btusb: add Foxconn 0xe0fc for Qualcomm WCN785x
|
||||
|
||||
https://gitlab.com/cki-project/kernel-ark/-/commit/5726a406fa039a9c1cf831953428f87caff38745
|
||||
5726a406fa039a9c1cf831953428f87caff38745 Bluetooth: btusb: Fix not being able to reconnect after suspend
|
||||
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
* Thu Dec 05 2024 Augusto Caringi <acaringi@redhat.com> [6.11.11-0]
|
||||
- Bluetooth: btusb: add Foxconn 0xe0fc for Qualcomm WCN785x (Mark Pearson) [2329005]
|
||||
- Linux v6.11.11
|
||||
Resolves: rhbz#2329005
|
||||
|
||||
* Fri Nov 22 2024 Augusto Caringi <acaringi@redhat.com> [6.11.10-0]
|
||||
- Remove F39 from release_targets as we near EOL (Justin M. Forbes)
|
||||
- Linux v6.11.10
|
||||
|
||||
12
kernel.spec
12
kernel.spec
@ -160,18 +160,18 @@ Summary: The Linux kernel
|
||||
# the --with-release option overrides this setting.)
|
||||
%define debugbuildsenabled 1
|
||||
# define buildid .local
|
||||
%define specrpmversion 6.11.10
|
||||
%define specversion 6.11.10
|
||||
%define specrpmversion 6.11.11
|
||||
%define specversion 6.11.11
|
||||
%define patchversion 6.11
|
||||
%define pkgrelease 300
|
||||
%define kversion 6
|
||||
%define tarfile_release 6.11.10
|
||||
%define tarfile_release 6.11.11
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 11
|
||||
# This allows pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 300%{?buildid}%{?dist}
|
||||
# This defines the kabi tarball version
|
||||
%define kabiversion 6.11.10
|
||||
%define kabiversion 6.11.11
|
||||
|
||||
# If this variable is set to 1, a bpf selftests build failure will cause a
|
||||
# fatal kernel package build error
|
||||
@ -4128,6 +4128,10 @@ fi\
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Thu Dec 05 2024 Augusto Caringi <acaringi@redhat.com> [6.11.11-0]
|
||||
- Bluetooth: btusb: add Foxconn 0xe0fc for Qualcomm WCN785x (Mark Pearson) [2329005]
|
||||
- Linux v6.11.11
|
||||
|
||||
* Fri Nov 22 2024 Augusto Caringi <acaringi@redhat.com> [6.11.10-0]
|
||||
- Remove F39 from release_targets as we near EOL (Justin M. Forbes)
|
||||
- Linux v6.11.10
|
||||
|
||||
@ -19,6 +19,7 @@
|
||||
drivers/acpi/irq.c | 17 +-
|
||||
drivers/acpi/scan.c | 9 +
|
||||
drivers/ata/libahci.c | 18 ++
|
||||
drivers/bluetooth/btusb.c | 2 +
|
||||
drivers/char/ipmi/ipmi_dmi.c | 15 ++
|
||||
drivers/char/ipmi/ipmi_msghandler.c | 16 +-
|
||||
drivers/firmware/efi/Makefile | 1 +
|
||||
@ -43,10 +44,10 @@
|
||||
security/lockdown/Kconfig | 13 +
|
||||
security/lockdown/lockdown.c | 1 +
|
||||
security/security.c | 12 +
|
||||
45 files changed, 971 insertions(+), 233 deletions(-)
|
||||
46 files changed, 973 insertions(+), 233 deletions(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index 4b075e003b2d..6bcdec719505 100644
|
||||
index e19ae179ca36..ea924cf7055c 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -22,6 +22,18 @@ $(if $(filter __%, $(MAKECMDGOALS)), \
|
||||
@ -996,6 +997,19 @@ index fdfa7b266218..f5f8ba457c93 100644
|
||||
/* wait for engine to stop. This could be as long as 500 msec */
|
||||
tmp = ata_wait_register(ap, port_mmio + PORT_CMD,
|
||||
PORT_CMD_LIST_ON, PORT_CMD_LIST_ON, 1, 500);
|
||||
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
|
||||
index 09afd75145ed..a90cb00d7b4f 100644
|
||||
--- a/drivers/bluetooth/btusb.c
|
||||
+++ b/drivers/bluetooth/btusb.c
|
||||
@@ -295,6 +295,8 @@ static const struct usb_device_id quirks_table[] = {
|
||||
BTUSB_WIDEBAND_SPEECH },
|
||||
{ USB_DEVICE(0x13d3, 0x3501), .driver_info = BTUSB_QCA_ROME |
|
||||
BTUSB_WIDEBAND_SPEECH },
|
||||
+ { USB_DEVICE(0x0489, 0xe0fc), .driver_info = BTUSB_QCA_WCN6855 |
|
||||
+ BTUSB_WIDEBAND_SPEECH },
|
||||
|
||||
/* QCA WCN6855 chipset */
|
||||
{ USB_DEVICE(0x0cf3, 0xe600), .driver_info = BTUSB_QCA_WCN6855 |
|
||||
diff --git a/drivers/char/ipmi/ipmi_dmi.c b/drivers/char/ipmi/ipmi_dmi.c
|
||||
index bbf7029e224b..cf7faa970dd6 100644
|
||||
--- a/drivers/char/ipmi/ipmi_dmi.c
|
||||
|
||||
6
sources
6
sources
@ -1,3 +1,3 @@
|
||||
SHA512 (linux-6.11.10.tar.xz) = b09e87e8ee5c24b5cf1347cd7020c91b8ed6907cb8e6cc9c2f94590fb0a9a446a3d360f9289b9d6e1653a06add14309d6a62b44c4e96057dbceb151a8525c6cb
|
||||
SHA512 (kernel-abi-stablelists-6.11.10.tar.xz) = 4bde6be8304c98ac0c616a7fcd10e5f94641d94cdf89f1f6a77924374d7c960eb156b595dc3c8bf8c7cef30ffeef331110d03f0f92bde602c1aa772f7ee346bc
|
||||
SHA512 (kernel-kabi-dw-6.11.10.tar.xz) = 1cdce3c515d38395fdae3d92e4749b270ee1a195a1dd803a4b7091fe19fdd6b8237c0e2f38ab90ed53a3c646bfcba6d470658ac2138bc5d668e7e2a4d8c95c5d
|
||||
SHA512 (linux-6.11.11.tar.xz) = ffb5dd0d5f59111bfd59a07f5216f46fbaebf3a53c981fb2af5f93c98555475234fd4725ae96797b21ccd166b7d02b4663eb8e0ef07a44e2a81ef591a6011c56
|
||||
SHA512 (kernel-abi-stablelists-6.11.11.tar.xz) = 1bd7df943ad7cad3a7b04734608c68e8542e554317aef4da47b8c7e7f7e7b4ca61d57c59d82d09da226a570b639d7b72d2447340ab4880ea810ef5bd4beae88d
|
||||
SHA512 (kernel-kabi-dw-6.11.11.tar.xz) = f673995c75db56d7ea9a7860b261f1e84d2820e80b7f8dfa494734700e03755ece7caeb4e739fd3b31fffb6e4e80191eee4ba74aa951b1e90b073da8a029a0e1
|
||||
|
||||
Loading…
Reference in New Issue
Block a user