Skip to content

Commit bd4b598

Browse files
[bot] AutoMerging: merge all upstream's changes:
* https://github.com/coolsnowwolf/lede: kernel: bump 6.0 to 6.0.12 (coolsnowwolf#10567) ath11k-wifi: add Edgecore EAP102 bdf support
2 parents 5db1f35 + 419f7c7 commit bd4b598

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

include/kernel-6.0

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LINUX_VERSION-6.0 = .11
2-
LINUX_KERNEL_HASH-6.0.11 = 2bae6131e64971e1e34ff395fa542971134c857bdb0b29069ab847c7c9a9c762
1+
LINUX_VERSION-6.0 = .12
2+
LINUX_KERNEL_HASH-6.0.12 = 89b730edf8942b49e02f9894244205886c9a214d629b35b88c4ff06ee9304f01

package/firmware/ath11k-wifi/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ endef
2525
# <https://wireless.wiki.kernel.org/en/users/drivers/ath10k/boardfiles>
2626

2727
ALLWIFIBOARDS:= \
28+
edgecore-eap102 \
2829
gl-ax1800 \
2930
gl-axt1800 \
3031
qihoo_v6
@@ -84,6 +85,7 @@ endef
8485
# Place files in this directory as board-<devicename>.<qca4019|qca9888|qca9984>
8586
# Add $(eval $(call generate-ath11k-wifi-package,<devicename>,<display name>))
8687

88+
$(eval $(call generate-ath11k-wifi-package,edgecore-eap102,Edgecore EAP102))
8789
$(eval $(call generate-ath11k-wifi-package,gl-ax1800,Gl.iNET AX1800))
8890
$(eval $(call generate-ath11k-wifi-package,gl-axt1800,Gl.iNET AXT1800))
8991
$(eval $(call generate-ath11k-wifi-package,qihoo_v6,QIHOO 360V6))
Binary file not shown.

target/linux/generic/pending-6.0/630-packet_socket_type.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ Signed-off-by: Felix Fietkau <[email protected]>
8787
if (!net_eq(dev_net(dev), sock_net(sk)))
8888
goto drop;
8989

90-
@@ -3372,6 +3374,7 @@ static int packet_create(struct net *net
90+
@@ -3371,6 +3373,7 @@ static int packet_create(struct net *net
9191
mutex_init(&po->pg_vec_lock);
9292
po->rollover = NULL;
9393
po->prot_hook.func = packet_rcv;
9494
+ po->pkt_type = PACKET_MASK_ANY & ~(1 << PACKET_LOOPBACK);
9595

9696
if (sock->type == SOCK_PACKET)
9797
po->prot_hook.func = packet_rcv_spkt;
98-
@@ -4011,6 +4014,16 @@ packet_setsockopt(struct socket *sock, i
98+
@@ -4009,6 +4012,16 @@ packet_setsockopt(struct socket *sock, i
9999
po->xmit = val ? packet_direct_xmit : dev_queue_xmit;
100100
return 0;
101101
}
@@ -112,7 +112,7 @@ Signed-off-by: Felix Fietkau <[email protected]>
112112
default:
113113
return -ENOPROTOOPT;
114114
}
115-
@@ -4067,6 +4080,13 @@ static int packet_getsockopt(struct sock
115+
@@ -4065,6 +4078,13 @@ static int packet_getsockopt(struct sock
116116
case PACKET_VNET_HDR:
117117
val = po->has_vnet_hdr;
118118
break;

target/linux/generic/pending-6.0/703-phy-add-detach-callback-to-struct-phy_driver.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Signed-off-by: Gabor Juhos <[email protected]>
1111

1212
--- a/drivers/net/phy/phy_device.c
1313
+++ b/drivers/net/phy/phy_device.c
14-
@@ -1746,6 +1746,9 @@ void phy_detach(struct phy_device *phyde
14+
@@ -1748,6 +1748,9 @@ void phy_detach(struct phy_device *phyde
1515
struct module *ndev_owner = NULL;
1616
struct mii_bus *bus;
1717

0 commit comments

Comments
 (0)