2008-01-11 19:32:33 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
2006-10-17 13:18:01 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2007-09-16 17:45:15 +00:00
|
|
|
WIRELESS_MENU:=Wireless Drivers
|
2006-10-17 13:18:01 +00:00
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
define KernelPackage/net-airo
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(WIRELESS_MENU)
|
2006-10-19 04:35:29 +00:00
|
|
|
TITLE:=Cisco Aironet driver
|
2011-02-13 14:18:13 +00:00
|
|
|
DEPENDS:=@PCI_SUPPORT +@DRIVER_WEXT_SUPPORT
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_AIRO
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/net/wireless/airo.ko
|
2006-10-19 04:35:29 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,50,airo)
|
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/net-airo/description
|
|
|
|
Kernel support for Cisco Aironet cards
|
|
|
|
endef
|
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
$(eval $(call KernelPackage,net-airo))
|
|
|
|
|
|
|
|
|
2010-12-10 19:33:36 +00:00
|
|
|
define KernelPackage/net-zd1201
|
|
|
|
SUBMENU:=$(WIRELESS_MENU)
|
|
|
|
TITLE:=Zydas ZD1201 support
|
2011-06-24 19:53:09 +00:00
|
|
|
DEPENDS:=@USB_SUPPORT +@DRIVER_WEXT_SUPPORT
|
|
|
|
KCONFIG:=CONFIG_USB_ZD1201
|
2011-05-15 09:37:24 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/net/wireless/zd1201.ko
|
2010-12-10 19:33:36 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,zd1201)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/net-zd1201/description
|
|
|
|
Kernel modules for Zydas ZD1201 support
|
|
|
|
Devices using this chip:
|
|
|
|
* Sweex LC100020
|
|
|
|
* Zyxel ZyAir B-220
|
|
|
|
* Peabird USB
|
|
|
|
* Gigafast WF741-UIC
|
|
|
|
* E-Tech Wireless USB Adapter
|
|
|
|
* DSE 802.11b USB wireless LAN adapter
|
|
|
|
* CC and C WLAN USB Adapter (WL 1202)
|
|
|
|
* Edimax EW-7117U
|
|
|
|
* X-Micro WLAN 11b USB Adapter
|
|
|
|
* Belkin F5D6051
|
|
|
|
* Topcom SKYR@CER WIRELESS USB STICK 11
|
|
|
|
* Surecom EP-9001
|
|
|
|
* JAHT WN-1011U
|
|
|
|
* BeWAN Wi-Fi USB 11
|
|
|
|
* NorthQ NQ9000
|
|
|
|
* MSI UB11B
|
|
|
|
* Origo WLL-1610
|
|
|
|
* Longshine LCS-8131R
|
|
|
|
* Gigabyte GN-WLBZ201
|
|
|
|
endef
|
|
|
|
|
|
|
|
ZD1201FW_NAME:=zd1201
|
|
|
|
ZD1201FW_VERSION:=0.14
|
|
|
|
ZD1201FW_DIR:=$(ZD1201FW_NAME)-$(ZD1201FW_VERSION)-fw
|
|
|
|
ZD1201FW_FILE:=$(ZD1201FW_DIR).tar.gz
|
|
|
|
|
|
|
|
define Download/net-zd1201
|
|
|
|
FILE:=$(ZD1201FW_FILE)
|
|
|
|
#http://downloads.sourceforge.net/project/linux-lc100020/%28NEW%29%20zd1201%20driver/zd1201.%20Version%200.14/zd1201-0.14-fw.tar.gz
|
|
|
|
URL:=@SF/linux-lc100020/\(NEW\)\ $(ZD1201FW_NAME)\ driver/$(ZD1201FW_NAME).\ Version\ $(ZD1201FW_VERSION)/
|
|
|
|
MD5SUM:=07a4febc365121f975e2c5e59791d55d
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/net-zd1201/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware
|
|
|
|
$(TAR) -C $(1)/lib/firmware -zxf $(DL_DIR)/$(ZD1201FW_FILE) --strip-components=1 $(ZD1201FW_DIR)/$(ZD1201FW_NAME).fw $(ZD1201FW_DIR)/$(ZD1201FW_NAME)-ap.fw
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Download,net-zd1201))
|
|
|
|
$(eval $(call KernelPackage,net-zd1201))
|
|
|
|
|
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
define KernelPackage/net-prism54
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(WIRELESS_MENU)
|
2006-10-19 04:35:29 +00:00
|
|
|
TITLE:=Intersil Prism54 support
|
2011-02-13 14:18:13 +00:00
|
|
|
DEPENDS:=@PCI_SUPPORT +@DRIVER_WEXT_SUPPORT
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_PRISM54
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/net/wireless/prism54/prism54.ko
|
2006-11-18 21:24:57 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,60,prism54)
|
2006-10-19 04:35:29 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/net-prism54/description
|
|
|
|
Kernel modules for Intersil Prism54 support
|
|
|
|
endef
|
|
|
|
|
2008-11-15 17:39:50 +00:00
|
|
|
# Prism54 FullMAC firmware (jbnore.free.fr seems to be rather slow, so we use daemonizer.de)
|
|
|
|
PRISM54_FW:=1.0.4.3.arm
|
|
|
|
|
|
|
|
define Download/net-prism54
|
2009-01-06 14:31:38 +00:00
|
|
|
FILE:=$(PRISM54_FW)
|
|
|
|
URL:=http://daemonizer.de/prism54/prism54-fw/fw-fullmac/
|
|
|
|
MD5SUM:=8bd4310971772a486b9784c77f8a6df9
|
2008-11-15 17:39:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/net-prism54/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware
|
|
|
|
$(INSTALL_DATA) $(DL_DIR)/$(PRISM54_FW) $(1)/lib/firmware/isl3890
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Download,net-prism54))
|
2006-10-19 04:35:29 +00:00
|
|
|
$(eval $(call KernelPackage,net-prism54))
|
2006-10-17 13:18:01 +00:00
|
|
|
|