Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2)  * Bond several ethernet interfaces into a Cisco, running 'Etherchannel'.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  * Portions are (c) Copyright 1995 Simon "Guru Aleph-Null" Janes
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  * NCM: Network and Communications Management, Inc.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7)  * BUT, I'm the one who modified it for ethernet, so:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8)  * (c) Copyright 1999, Thomas Davis, tadavis@lbl.gov
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10)  *	This software may be used and distributed according to the terms
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11)  *	of the GNU Public License, incorporated herein by reference.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) #ifndef _BONDING_PRIV_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #define _BONDING_PRIV_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) #include <generated/utsrelease.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) #define DRV_NAME	"bonding"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) #define DRV_DESCRIPTION	"Ethernet Channel Bonding Driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) #define bond_version DRV_DESCRIPTION ": v" UTS_RELEASE "\n"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) #endif