Skip to content

Commit bbdd63b

Browse files
[bot] AutoMerging: merge all upstream's changes:
* https://github.com/coolsnowwolf/lede: ramips: fixes typo error in kang kernel: bump 5.4 to 5.14.224 (coolsnowwolf#10406) kernel: bump 6.0 to 6.0.8 (coolsnowwolf#10401) kernel: bump 5.15 to 5.15.78 (coolsnowwolf#10403) kernel: bump 5.10 to 5.10.154 (coolsnowwolf#10404) r8125: upate to version 9.010.01-1 mt76: add firmware package for mt7916 kernel: add support for XMC XM25QH128C
2 parents 55c418f + fced2da commit bbdd63b

File tree

26 files changed

+91
-36
lines changed

26 files changed

+91
-36
lines changed

include/kernel-5.10

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-5.10 = .153
2-
LINUX_KERNEL_HASH-5.10.153 = 3cf2e4519fe451caef0ee0a8beac694612267325f7055fc38d6a990a762f1662
1+
LINUX_VERSION-5.10 = .154
2+
LINUX_KERNEL_HASH-5.10.154 = c6ae3d4da4324933160260d0f092a40cd27f9ed03449380790afbe6ce91ee688

include/kernel-5.15

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-5.15 = .77
2-
LINUX_KERNEL_HASH-5.15.77 = 142f841f33796a84c62fae2f2b96d2120bd8bbf9e0aac4ce157692cdb0afe9f9
1+
LINUX_VERSION-5.15 = .78
2+
LINUX_KERNEL_HASH-5.15.78 = 0db99f7347a38c27b8c155f3c9c8b260011aea0a4ded85ee95e6095b1e69a499

include/kernel-5.4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-5.4 = .223
2-
LINUX_KERNEL_HASH-5.4.223 = 9ef07f12df6887f196e2e21c197f26854859e6b586aa4bfdd4798f562a717eeb
1+
LINUX_VERSION-5.4 = .224
2+
LINUX_KERNEL_HASH-5.4.224 = 8b7df25b5560620eb2776d7b7c67569764b3916ff2f596767f72567b38d13d36

include/kernel-6.0

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-6.0 = .7
2-
LINUX_KERNEL_HASH-6.0.7 = 67dacc2b78605a56e997f4c08d009be87c98ec66f1870220226c8b3cc676590f
1+
LINUX_VERSION-6.0 = .8
2+
LINUX_KERNEL_HASH-6.0.8 = 0de4f83996951c6faf9b2225db4f645882c47b1a09198190f97bd46e5f5fa257

package/kernel/mt76/Makefile

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,12 @@ define KernelPackage/mt7915e
226226
AUTOLOAD:=$(call AutoProbe,mt7915e)
227227
endef
228228

229+
define KernelPackage/mt7916-firmware
230+
$(KernelPackage/mt76-default)
231+
DEPENDS+=+kmod-mt7915e
232+
TITLE:=MediaTek MT7916 firmware
233+
endef
234+
229235
define KernelPackage/mt7986-firmware
230236
$(KernelPackage/mt76-default)
231237
DEPENDS:=@TARGET_mediatek_filogic
@@ -457,10 +463,15 @@ define KernelPackage/mt7915e/install
457463
$(PKG_BUILD_DIR)/firmware/mt7915_wa.bin \
458464
$(PKG_BUILD_DIR)/firmware/mt7915_wm.bin \
459465
$(PKG_BUILD_DIR)/firmware/mt7915_rom_patch.bin \
466+
$(1)/lib/firmware/mediatek
467+
endef
468+
469+
define KernelPackage/mt7916-firmware/install
470+
$(INSTALL_DIR) $(1)/lib/firmware/mediatek
471+
cp \
460472
$(PKG_BUILD_DIR)/firmware/mt7916_wa.bin \
461473
$(PKG_BUILD_DIR)/firmware/mt7916_wm.bin \
462474
$(PKG_BUILD_DIR)/firmware/mt7916_rom_patch.bin \
463-
$(PKG_BUILD_DIR)/firmware/mt7916_eeprom.bin \
464475
$(1)/lib/firmware/mediatek
465476
endef
466477

@@ -514,6 +525,7 @@ $(eval $(call KernelPackage,mt7663-usb-sdio))
514525
$(eval $(call KernelPackage,mt7663u))
515526
$(eval $(call KernelPackage,mt7663s))
516527
$(eval $(call KernelPackage,mt7915e))
528+
$(eval $(call KernelPackage,mt7916-firmware))
517529
$(eval $(call KernelPackage,mt7986-firmware))
518530
$(eval $(call KernelPackage,mt7921-common))
519531
$(eval $(call KernelPackage,mt7921u))

package/lean/r8125/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ include $(TOPDIR)/rules.mk
77
include $(INCLUDE_DIR)/kernel.mk
88

99
PKG_NAME:=r8125
10-
PKG_VERSION:=9.009.02-1
10+
PKG_VERSION:=9.010.01-1
1111
PKG_RELEASE:=$(AUTORELEASE)
1212

1313
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
1414
PKG_SOURCE_URL:=https://codeload.github.com/awesometic/realtek-r8125-dkms/tar.gz/$(PKG_VERSION)?
15-
PKG_HASH:=e3f0a0a02a4ba847cb962ea7e12c89e3f4ab732944f04ebeb76d4d9711fa8ca6
15+
PKG_HASH:=81fb9a100e6cefb421557639b476fd03af61a99c55bc8fb03c6e396532bd0944
1616
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/realtek-$(PKG_NAME)-dkms-$(PKG_VERSION)
1717

1818
PKG_LICENSE:=GPL-2.0-only

package/lean/r8125/patches/030-add-LED-configuration-from-OF.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <linux/if_vlan.h>
99
#include <linux/crc32.h>
1010
#include <linux/interrupt.h>
11-
@@ -10407,6 +10408,23 @@ rtl8125_setup_mqs_reg(struct rtl8125_private *tp)
11+
@@ -10425,6 +10426,23 @@ rtl8125_setup_mqs_reg(struct rtl8125_private *tp)
1212
}
1313
}
1414

@@ -32,7 +32,7 @@
3232
static void
3333
rtl8125_init_software_variable(struct net_device *dev)
3434
{
35-
@@ -10838,6 +10856,8 @@ rtl8125_init_software_variable(struct net_device *dev)
35+
@@ -10856,6 +10874,8 @@ rtl8125_init_software_variable(struct net_device *dev)
3636
if (tp->InitRxDescType == RX_DESC_RING_TYPE_3)
3737
tp->rtl8125_rx_config |= EnableRxDescV3;
3838

target/linux/apm821xx/patches-5.10/802-usb-xhci-force-msi-renesas-xhci.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ produce a noisy warning.
1313

1414
--- a/drivers/usb/host/xhci-pci.c
1515
+++ b/drivers/usb/host/xhci-pci.c
16-
@@ -291,6 +291,7 @@ static void xhci_pci_quirks(struct devic
16+
@@ -274,6 +274,7 @@ static void xhci_pci_quirks(struct devic
1717
pdev->device == 0x0015) {
1818
xhci->quirks |= XHCI_RESET_ON_RESUME;
1919
xhci->quirks |= XHCI_ZERO_64B_REGS;

target/linux/bcm27xx/patches-5.15/950-0163-hid-usb-Add-device-quirks-for-Freeway-Airmouse-T3-an.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Signed-off-by: Jonathan Bell <[email protected]>
3333
#define USB_VENDOR_ID_BELKIN 0x050d
3434
#define USB_DEVICE_ID_FLIP_KVM 0x3201
3535

36-
@@ -1308,6 +1311,9 @@
36+
@@ -1310,6 +1313,9 @@
3737
#define USB_VENDOR_ID_XAT 0x2505
3838
#define USB_DEVICE_ID_XAT_CSR 0x0220
3939

target/linux/bcm27xx/patches-5.15/950-0419-media-v4l2-subdev-add-subdev-wide-state-struct.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ Signed-off-by: Dom Cobley <[email protected]>
442442
if (which == V4L2_SUBDEV_FORMAT_TRY)
443443
return v4l2_subdev_get_try_crop(&rsz->sd, sd_state, pad);
444444
else
445-
@@ -791,6 +803,12 @@ static int rkisp1_rsz_register(struct rk
445+
@@ -795,6 +807,12 @@ static int rkisp1_rsz_register(struct rk
446446
struct v4l2_subdev_state state = {
447447
.pads = rsz->pad_cfg
448448
};

0 commit comments

Comments
 (0)