diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-10-20 16:59:36 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-10-20 16:59:36 +0000 |
commit | e8f8ee6ccf9b8f791843e01a66b927d640fb2211 (patch) | |
tree | c07edd7e493a989dd4c2b16f81aa237ccf3dc46a /package/zd1211-driver/Makefile | |
parent | 0be626ae69a6cd5a7dd51d35ab168698bc2dc3f5 (diff) | |
download | upstream-e8f8ee6ccf9b8f791843e01a66b927d640fb2211.tar.gz upstream-e8f8ee6ccf9b8f791843e01a66b927d640fb2211.tar.bz2 upstream-e8f8ee6ccf9b8f791843e01a66b927d640fb2211.zip |
remove obsolete zd1211-driver, replaced by the in-tree module
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9372 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/zd1211-driver/Makefile')
-rw-r--r-- | package/zd1211-driver/Makefile | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/package/zd1211-driver/Makefile b/package/zd1211-driver/Makefile deleted file mode 100644 index 1abfc03608..0000000000 --- a/package/zd1211-driver/Makefile +++ /dev/null @@ -1,71 +0,0 @@ -# -# Copyright (C) 2006 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# -# $Id: Makefile 6582 2007-03-16 20:21:39Z nbd $ - -include $(TOPDIR)/rules.mk -include $(INCLUDE_DIR)/kernel.mk - -PKG_NAME:=zd1211-driver -PKG_VERSION:=r85 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz -PKG_SOURCE_URL:=@openwrt/ -PKG_MD5SUM:=885cf08742c95cc416258257b5842b22 - -include $(INCLUDE_DIR)/package.mk - -#FIXME: add proper dependency handling on kmod-usb-core packages -define KernelPackage/zd1211 - SUBMENU:=Wireless Drivers - DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core - TITLE:=Driver for Zydas 1211 based USB devices - FILES:=$(PKG_BUILD_DIR)/zd1211.$(LINUX_KMOD_SUFFIX) - AUTOLOAD:=$(call AutoLoad,60,zd1211) -endef - -define KernelPackage/zd1211/description - This package contains a Linux driver for the ZyDAS ZD1211 802.11b/g - USB-WLAN-Chip. - Initially contributed by ZyDAS, this driver is actively maintained by the - open source community. -endef - -define Package/zd1211-utils - SECTION:=utils - CATEGORY:=Utilities - TITLE:=zd1211 user-space utilities -endef - -define Package/zd1211-utils/description - zd1211 user-space utilities : - - apdbg - - zd1211-sta -endef - -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - ARCH="$(LINUX_KARCH)" \ - CROSS_COMPILE="$(TARGET_CROSS)" \ - CC="$(TARGET_CC)" \ - CPP="$(TARGET_CC)" \ - LD="$(TARGET_CROSS)ld" \ - KERNELVERSION="$(KERNEL)" \ - KERNEL_SOURCE="$(LINUX_DIR)" \ - KDIR="$(LINUX_DIR)" \ - all - $(TARGET_CC) $(PKG_BUILD_DIR)/apdbg.c -o $(PKG_BUILD_DIR)/apdbg -endef - -define Package/zd1211-utils/install - $(INSTALL_DIR) $(1)/usr/sbin - $(CP) $(PKG_BUILD_DIR)/apdbg $(1)/usr/sbin/ - $(CP) $(PKG_BUILD_DIR)/sta $(1)/usr/sbin/$(PKG_NAME)-sta -endef - -$(eval $(call Package,zd1211-utils)) -$(eval $(call KernelPackage,zd1211)) |