Skip to content

Commit 2e7fa41

Browse files
[bot] AutoMerging: merge all upstream's changes:
* https://github.com/coolsnowwolf/lede: Fix modules in kernel 5.19 (coolsnowwolf#9883) tools: bump 7z package to 22.01 wolfssl: fix math library build wolfssl: bump to 5.4.0
2 parents 1f227d5 + 975e0f7 commit 2e7fa41

11 files changed

+41
-62
lines changed

package/kernel/linux/modules/fs.mk

+4-4
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ define KernelPackage/fs-cifs
109109
+kmod-crypto-ccm \
110110
+kmod-crypto-ecb \
111111
+kmod-crypto-des \
112-
+(LINUX_5_15||LINUX_5_18):kmod-asn1-decoder \
113-
+(LINUX_5_15||LINUX_5_18):kmod-oid-registry \
114-
+(LINUX_5_15||LINUX_5_18):kmod-dnsresolver
112+
+(LINUX_5_15||LINUX_5_18||LINUX_5_19):kmod-asn1-decoder \
113+
+(LINUX_5_15||LINUX_5_18||LINUX_5_19):kmod-oid-registry \
114+
+(LINUX_5_15||LINUX_5_18||LINUX_5_19):kmod-dnsresolver
115115
endef
116116

117117
define KernelPackage/fs-cifs/description
@@ -530,7 +530,7 @@ $(eval $(call KernelPackage,fs-ntfs))
530530
define KernelPackage/fs-ntfs3
531531
SUBMENU:=$(FS_MENU)
532532
TITLE:=NTFS3 Read-Write file system support
533-
DEPENDS:=@(LINUX_5_15||LINUX_5_18) +kmod-nls-base
533+
DEPENDS:=@(LINUX_5_15||LINUX_5_18||LINUX_5_19) +kmod-nls-base
534534
KCONFIG:= \
535535
CONFIG_NTFS3_FS \
536536
CONFIG_NTFS3_64BIT_CLUSTER=y \

package/kernel/linux/modules/netdevices.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ $(eval $(call KernelPackage,mii))
142142
define KernelPackage/mdio-devres
143143
SUBMENU:=$(NETWORK_DEVICES_MENU)
144144
TITLE:=Supports MDIO device registration
145-
DEPENDS:=@(LINUX_5_10||LINUX_5_15||LINUX_5_18) +kmod-libphy PACKAGE_kmod-of-mdio:kmod-of-mdio
145+
DEPENDS:=@(LINUX_5_10||LINUX_5_15||LINUX_5_18||LINUX_5_19) +kmod-libphy PACKAGE_kmod-of-mdio:kmod-of-mdio
146146
KCONFIG:=CONFIG_MDIO_DEVRES
147147
HIDDEN:=1
148148
FILES:=$(LINUX_DIR)/drivers/net/phy/mdio_devres.ko
@@ -563,7 +563,7 @@ $(eval $(call KernelPackage,8139cp))
563563
define KernelPackage/r8169
564564
SUBMENU:=$(NETWORK_DEVICES_MENU)
565565
TITLE:=RealTek RTL-8169 PCI Gigabit Ethernet Adapter kernel support
566-
DEPENDS:=@PCI_SUPPORT +kmod-mii +r8169-firmware +kmod-phy-realtek +(LINUX_5_10||LINUX_5_15||LINUX_5_18):kmod-mdio-devres
566+
DEPENDS:=@PCI_SUPPORT +kmod-mii +r8169-firmware +kmod-phy-realtek +(LINUX_5_10||LINUX_5_15||LINUX_5_18||LINUX_5_19):kmod-mdio-devres
567567
KCONFIG:= \
568568
CONFIG_R8169 \
569569
CONFIG_R8169_NAPI=y \
@@ -689,7 +689,7 @@ $(eval $(call KernelPackage,igbvf))
689689
define KernelPackage/ixgbe
690690
SUBMENU:=$(NETWORK_DEVICES_MENU)
691691
TITLE:=Intel(R) 82598/82599 PCI-Express 10 Gigabit Ethernet support
692-
DEPENDS:=@PCI_SUPPORT +kmod-mdio +kmod-ptp +kmod-hwmon-core +kmod-libphy +(LINUX_5_10||LINUX_5_15||LINUX_5_18):kmod-mdio-devres
692+
DEPENDS:=@PCI_SUPPORT +kmod-mdio +kmod-ptp +kmod-hwmon-core +kmod-libphy +(LINUX_5_10||LINUX_5_15||LINUX_5_18||LINUX_5_19):kmod-mdio-devres
693693
KCONFIG:=CONFIG_IXGBE \
694694
CONFIG_IXGBE_VXLAN=n \
695695
CONFIG_IXGBE_HWMON=y \

package/kernel/linux/modules/other.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -1151,8 +1151,8 @@ $(eval $(call KernelPackage,keys-trusted))
11511151
define KernelPackage/tpm
11521152
SUBMENU:=$(OTHER_MENU)
11531153
TITLE:=TPM Hardware Support
1154-
DEPENDS:= +kmod-random-core +(LINUX_5_15||LINUX_5_18):kmod-asn1-decoder \
1155-
+(LINUX_5_15||LINUX_5_18):kmod-asn1-encoder +(LINUX_5_15||LINUX_5_18):kmod-oid-registry
1154+
DEPENDS:= +kmod-random-core +(LINUX_5_15||LINUX_5_18||LINUX_5_19):kmod-asn1-decoder \
1155+
+(LINUX_5_15||LINUX_5_18||LINUX_5_19):kmod-asn1-encoder +(LINUX_5_15||LINUX_5_18||LINUX_5_19):kmod-oid-registry
11561156
KCONFIG:= CONFIG_TCG_TPM
11571157
FILES:= $(LINUX_DIR)/drivers/char/tpm/tpm.ko
11581158
AUTOLOAD:=$(call AutoLoad,10,tpm,1)

package/kernel/linux/modules/usb.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1138,7 +1138,7 @@ $(eval $(call KernelPackage,usb-net-aqc111))
11381138

11391139
define KernelPackage/usb-net-asix
11401140
TITLE:=Kernel module for USB-to-Ethernet Asix convertors
1141-
DEPENDS:=+kmod-libphy +(LINUX_5_15||LINUX_5_18):kmod-mdio-devres
1141+
DEPENDS:=+kmod-libphy +(LINUX_5_15||LINUX_5_18||LINUX_5_19):kmod-mdio-devres
11421142
KCONFIG:=CONFIG_USB_NET_AX8817X
11431143
FILES:= \
11441144
$(LINUX_DIR)/drivers/$(USBNET_DIR)/asix.ko \

package/kernel/linux/modules/video.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ define KernelPackage/drm
244244
TITLE:=Direct Rendering Manager (DRM) support
245245
HIDDEN:=1
246246
DEPENDS:=+kmod-dma-buf +kmod-i2c-core +kmod-i2c-algo-bit +PACKAGE_kmod-backlight:kmod-backlight \
247-
+(LINUX_5_15||LINUX_5_18):kmod-fb
247+
+(LINUX_5_15||LINUX_5_18||LINUX_5_19):kmod-fb
248248
KCONFIG:= \
249249
CONFIG_DRM \
250250
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y \

package/libs/wolfssl/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
include $(TOPDIR)/rules.mk
99

1010
PKG_NAME:=wolfssl
11-
PKG_VERSION:=5.3.0-stable
11+
PKG_VERSION:=5.4.0-stable
1212
PKG_RELEASE:=$(AUTORELEASE)
1313

1414
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
1515
PKG_SOURCE_URL:=https://github.com/wolfSSL/wolfssl/archive/v$(PKG_VERSION)
16-
PKG_HASH:=1a3bb310dc01d3e73d9ad91b6ea8249d081016f8eef4ae8f21d3421f91ef1de9
16+
PKG_HASH:=dc36cc19dad197253e5c2ecaa490c7eef579ad448706e55d73d79396e814098b
1717

1818
PKG_FIXUP:=libtool libtool-abiver
1919
PKG_INSTALL:=1

package/libs/wolfssl/patches/100-disable-hardening-check.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/wolfssl/wolfcrypt/settings.h
22
+++ b/wolfssl/wolfcrypt/settings.h
3-
@@ -2338,7 +2338,7 @@ extern void uITRON4_free(void *p) ;
3+
@@ -2442,7 +2442,7 @@ extern void uITRON4_free(void *p) ;
44
#endif
55

66
/* warning for not using harden build options (default with ./configure) */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
From dc92ec2aa9cb76b782bdba3fc5203267ebf39994 Mon Sep 17 00:00:00 2001
2+
From: Kareem <[email protected]>
3+
Date: Fri, 22 Jul 2022 11:07:46 -0700
4+
Subject: [PATCH] Update sp_rand_prime's preprocessor gating to match
5+
wolfSSL_BN_generate_prime_ex's.
6+
7+
---
8+
wolfcrypt/src/sp_int.c | 4 ++--
9+
1 file changed, 2 insertions(+), 2 deletions(-)
10+
11+
--- a/wolfcrypt/src/sp_int.c
12+
+++ b/wolfcrypt/src/sp_int.c
13+
@@ -15647,8 +15647,8 @@ int sp_radix_size(sp_int* a, int radix,
14+
* Prime number generation and checking.
15+
***************************************/
16+
17+
-#if defined(WOLFSSL_KEY_GEN) && (!defined(NO_DH) || !defined(NO_DSA)) && \
18+
- !defined(WC_NO_RNG)
19+
+#if defined(WOLFSSL_KEY_GEN) && (!defined(NO_RSA) || !defined(NO_DH) || \
20+
+ !defined(NO_DSA)) && !defined(WC_NO_RNG)
21+
/* Generate a random prime for RSA only.
22+
*
23+
* @param [out] r SP integer to hold result.

package/libs/wolfssl/patches/200-ecc-rng.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RNG regardless of the built settings for wolfssl.
1111

1212
--- a/wolfcrypt/src/ecc.c
1313
+++ b/wolfcrypt/src/ecc.c
14-
@@ -11655,21 +11655,21 @@ void wc_ecc_fp_free(void)
14+
@@ -12288,21 +12288,21 @@ void wc_ecc_fp_free(void)
1515

1616
#endif /* FP_ECC */
1717

package/libs/wolfssl/patches/300-AESNI-fix-configure-to-use-minimal-compiler-flags.patch

-44
This file was deleted.

tools/7z/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
include $(TOPDIR)/rules.mk
22

33
PKG_NAME:=7z
4-
PKG_VERSION:=22.00
5-
PKG_SOURCE_VERSION:=2200
4+
PKG_VERSION:=22.01
5+
PKG_SOURCE_VERSION:=2201
66

77
PKG_SOURCE:=$(PKG_NAME)$(PKG_SOURCE_VERSION)-src.tar.xz
88
PKG_SOURCE_URL:=https://7-zip.org/a/
9-
PKG_HASH:=40969f601e86aff49aaa0ba0df5ce6fd397cf7e2683a84b591b0081e461ef675
9+
PKG_HASH:=393098730c70042392af808917e765945dc2437dee7aae3cfcc4966eb920fbc5
1010

1111
# This builds the 7zr variant which supports only 7z, so no non-LGPL code should be included
1212
PKG_LICENSE:=LGPL-2.1-or-later

0 commit comments

Comments
 (0)