diff options
author | Raptor Engineering Development Team <support@raptorengineering.com> | 2019-11-05 21:22:28 +0000 |
---|---|---|
committer | Raptor Engineering Development Team <support@raptorengineering.com> | 2019-11-05 21:22:53 +0000 |
commit | f5907d7a3a9b27210bf4e39111bd229ed9079855 (patch) | |
tree | a062f7ee561400c4115e6b79da02a41b2958f879 /package/owl-linux/0001-fix-for-linux-3.3.x.patch | |
parent | 4b6188e0f2397a013b91105828437c90a3b1dfb7 (diff) | |
download | buildroot-2017.11-op-build.tar.gz buildroot-2017.11-op-build.zip |
Initial pass at removing binary-only, unlicensed, and proprietary packages from buildroot tree2017.11-op-build
Note that DAHDI is only being removed due to poor packaging -- it does not require binary
firmware on some cards, but the buildroot packaging for it unconditionally pulls in binary-only
firmware regardless.
Diffstat (limited to 'package/owl-linux/0001-fix-for-linux-3.3.x.patch')
-rw-r--r-- | package/owl-linux/0001-fix-for-linux-3.3.x.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/package/owl-linux/0001-fix-for-linux-3.3.x.patch b/package/owl-linux/0001-fix-for-linux-3.3.x.patch deleted file mode 100644 index 831ac7fd11..0000000000 --- a/package/owl-linux/0001-fix-for-linux-3.3.x.patch +++ /dev/null @@ -1,21 +0,0 @@ -Kernel commit b81693d9149c598302e8eb9c20cb20330d922c8e changed the -net_device_ops structure, removing the ndo_set_multicast_list callback. The -ndo_set_rx_mode has also been added to this structure. - -The upshot of these changes is that owl-linux fails to compile with 3.3.x -and later kernels. - -Signed-off-by: Simon Dawson <spdawson@gmail.com> -diff -Nurp a/owl_net.c b/owl_net.c ---- a/owl_net.c 2012-06-14 10:51:45.000000000 +0100 -+++ b/owl_net.c 2012-07-20 13:16:28.772351464 +0100 -@@ -384,7 +384,9 @@ static const struct net_device_ops netde - #endif /* OWL_CONFIG_IFUPDOWN */ - .ndo_start_xmit = owl_net_tx, - .ndo_get_stats = owl_net_get_stats, -+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,3,0) - .ndo_set_multicast_list = NULL, -+#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(3,3,0) */ - .ndo_tx_timeout = owl_net_tx_timeout, - .ndo_set_mac_address = NULL, - }; |