-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(kernel-rolling) ethernet: bundle module for Motorcomm YT6801 #194
(kernel-rolling) ethernet: bundle module for Motorcomm YT6801 #194
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Hi @MingcongBai. Thanks for your PR. I'm waiting for a deepin-community member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Acrroding kernel change ethtool.h {get,set}_rxfh in 6.8-rc1 So just change to new api: |
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
3dfe295
to
e0847e1
Compare
@opsiff Re-submitted. Sorry about that. |
deepin pr auto reviewHere's the generated code: #include <linux/module.h>
#include <linux/init.h>
#include <linux/netdevice.h>
#include <linux/ethernet.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/pci.h>
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/dma.h>
#include <linux/pkt_filt.h>
#include <linux/vlan.h>
#include <net/ipv4.h>
#include <net/ipv6.h>
#include <net/bridge.h>
#include <net/neighbour.h>
#include <net/route.h>
#include <net/arp.h>
#include <net/ip6_route.h>
#include <net/ipv6_common.h>
#include <net/ip6_neigh.h>
#include <net/ip6_dbg.h>
#include <net/ip_neigh.h>
#include <net/ip_route.h>
#include <net/ip_fwd.h>
#include <net/ip_common.h>
#include <net/ip_packet.h>
#include <net/tcp.h>
#include <net/udp.h>
#include <net/icmp.h>
#include <net/icmp6.h>
#include <net/arp_sna.h>
#include <net/ppp.h>
#include <net/ppp_ip.h>
#include <net/ppp_ether.h>
#include <net/ip_transport.h>
#include <net/udp_tunnel.h>
#include <net/tcp_socket.h>
#include <net/icmp_socket.h>
#include <net/icmp6_socket.h>
#include <net/arp_socket.h>
#include <net/ppp_socket.h>
#include <net/ip_route_snd.h>
#include <net/ip_route_recv.h>
#include <net/ipv6_route_snd.h>
#include <net/ipv6_route_recv.h>
#include <net/arp_route.h>
#include <net/neighbour_route.h>
#include <net/route_common.h>
#include <net/ipv6_common.h>
#include <net/ip_common.h>
#include <net/arp_common.h>
#include <net/neighbour_common.h>
#include <net/bridge_common.h>
#include <net/ip6_dbg.h>
#include <net/ip_dbg.h>
#include <net/arp_dbg.h>
#include <net/neighbour_dbg.h>
#include <net/bridge_dbg.h>
#include <net/ip_int_hash.h>
#include <net/ip_int_hash_port.h>
#include <net/ip_route_hash.h>
#include <net/ip_route_hash_port.h>
#include <net/ipv6_route_hash.h>
#include <net/ipv6_route_hash_port.h>
#include <net/route_n_i4.h>
#include <net/route_n_i6.h>
#include <net/route_n_i4_hash.h>
#include <net/route_n_i6_hash.h>
#include <net/route_n_i4_hash_port.h>
#include <net/route_n_i6_hash_port.h>
#include <net/route_n_i4_port.h>
#include <net/route_n_i6_port.h>
#include <net/route_n_i4_snd.h>
#include <net/route_n_i6_ |
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller. - This patch introduces an out of tree module to provide support for this NIC. [^1] - Refactor module tree to make it work with Kconfig. [^2] - Drop unneeded installation script (yt_nic_install.sh). - Trim README to remove useless installation instructions. [^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip [^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate). Co-authored-by: Mingcong Bai <jeffbai@aosc.io> Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn> Ref: deepin-community/kernel#194
Picked and rebased from #190.
From original pull request: