diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-09-03 08:02:23 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-09-03 08:02:23 +0000 |
commit | 3db8008c0a2479c4e7664fc8fc03a38ec50c1ec9 (patch) | |
tree | 40326ea34430601fdc1156c7880684273a713fa2 /package/zd1211-firmware/Makefile | |
parent | fc147b86a228c19414f0f1af83574b6e6bfddbc0 (diff) | |
download | upstream-3db8008c0a2479c4e7664fc8fc03a38ec50c1ec9.tar.gz upstream-3db8008c0a2479c4e7664fc8fc03a38ec50c1ec9.tar.bz2 upstream-3db8008c0a2479c4e7664fc8fc03a38ec50c1ec9.zip |
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/Makefile')
-rw-r--r-- | package/zd1211-firmware/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/package/zd1211-firmware/Makefile b/package/zd1211-firmware/Makefile new file mode 100644 index 0000000000..fb510ad9bc --- /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)) |