summaryrefslogtreecommitdiffstats
path: root/package/zd1211-firmware
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-03 08:02:23 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-03 08:02:23 +0000
commitdbaafc7591a851674bb5d7ca413c3a5ee0ce4fa0 (patch)
tree40326ea34430601fdc1156c7880684273a713fa2 /package/zd1211-firmware
parent4516e63994dc9190b41a1353b178407c5f4dd330 (diff)
rename zd1211_firmware to zd1211-firmware
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8585 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/zd1211-firmware')
-rw-r--r--package/zd1211-firmware/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/package/zd1211-firmware/Makefile b/package/zd1211-firmware/Makefile
new file mode 100644
index 000000000..fb510ad9b
--- /dev/null
+++ b/package/zd1211-firmware/Makefile
@@ -0,0 +1,41 @@
+#
+# 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
+
+PKG_NAME:=zd1211-firmware
+PKG_VERSION:=1.3
+PKG_RELEASE:=1
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
+
+PKG_SOURCE:=$(PKG_NAME)$(PKG_VERSION).tar.bz2
+PKG_SOURCE_URL:=http://downloads.sourceforge.net/zd1211/
+PKG_MD5SUM:=cfff76ea35f4f93c37f6c99aa2058140
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/zd1211-firmware
+ SECTION:=net
+ CATEGORY:=Network
+ TITLE:=zd1211 wifi firmware
+ DESCRIPTION:=\
+ This package contains firmware needed to run a zd1211 wifi stick with the rw driver
+endef
+
+define Package/zd1211-firmware/install
+ $(INSTALL_DIR) $(PKG_INSTALL_DIR)/lib/firmware/zd1211/
+ $(INSTALL_DIR) $(1)/lib/firmware/zd1211/
+ $(INSTALL_DATA) $(PKG_BUILD_DIR)/zd* $(PKG_INSTALL_DIR)/lib/firmware/zd1211/
+ $(INSTALL_DATA) $(PKG_BUILD_DIR)/zd* $(1)/lib/firmware/zd1211/
+endef
+
+define Build/Compile
+endef
+
+$(eval $(call BuildPackage,zd1211-firmware))