summaryrefslogtreecommitdiffstats
path: root/package/owl-linux
diff options
context:
space:
mode:
Diffstat (limited to 'package/owl-linux')
-rw-r--r--package/owl-linux/0001-fix-for-linux-3.3.x.patch21
-rw-r--r--package/owl-linux/Config.in20
-rw-r--r--package/owl-linux/owl-linux.hash2
-rw-r--r--package/owl-linux/owl-linux.mk14
4 files changed, 0 insertions, 57 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,
- };
diff --git a/package/owl-linux/Config.in b/package/owl-linux/Config.in
deleted file mode 100644
index bf412d361e..0000000000
--- a/package/owl-linux/Config.in
+++ /dev/null
@@ -1,20 +0,0 @@
-config BR2_PACKAGE_OWL_LINUX
- bool "owl-linux"
- depends on BR2_LINUX_KERNEL
- depends on (BR2_arm920t || BR2_arm922t || BR2_arm926t)
- help
- Linux kernel driver for the H&D Wireless SPB104 SD-card WiFi
- SIP.
-
- owl-linux requires the hidden kernel option WIRELESS_EXT
- enabled.
-
- http://linux.hd-wireless.se/bin/view/Linux/GettingStarted
-
-comment "owl-linux needs a Linux kernel to be built"
- depends on !BR2_LINUX_KERNEL
- depends on BR2_arm || BR2_armeb
-
-comment "owl-linux is only supported on ARM9 architecture"
- depends on !(BR2_arm920t || BR2_arm922t || BR2_arm926t)
- depends on BR2_arm || BR2_armeb
diff --git a/package/owl-linux/owl-linux.hash b/package/owl-linux/owl-linux.hash
deleted file mode 100644
index 4a5133df47..0000000000
--- a/package/owl-linux/owl-linux.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# locally computed
-sha256 a6b1bc6b3900954438a0f1a316bac5f74171125a88c80c35e137f4ca512dedc6 owl-linux-1.0.7.tar.gz
diff --git a/package/owl-linux/owl-linux.mk b/package/owl-linux/owl-linux.mk
deleted file mode 100644
index 1262425249..0000000000
--- a/package/owl-linux/owl-linux.mk
+++ /dev/null
@@ -1,14 +0,0 @@
-################################################################################
-#
-# owl-linux
-#
-################################################################################
-
-OWL_LINUX_VERSION = 1.0.7
-OWL_LINUX_SITE = http://linux.hd-wireless.se/pub/Linux/DownloadDrivers
-OWL_LINUX_LICENSE = PROPRIETARY
-OWL_LINUX_LICENSE_FILES = LICENSE
-OWL_LINUX_REDISTRIBUTE = NO
-
-$(eval $(kernel-module))
-$(eval $(generic-package))
OpenPOWER on IntegriCloud