1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 21:09:29 +03:00

zd1211-firmware: remove uneeded commands in install, use a separate description, cleanup

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8657 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2007-09-07 08:24:28 +00:00
parent 4aac3b42a2
commit 871b6cb89a

View File

@ -12,30 +12,30 @@ 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
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
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/
define Package/zd1211-firmware/description
This package contains firmware needed to run a zd1211 wifi stick with the rw driver
endef
define Build/Compile
endef
define Package/zd1211-firmware/install
$(INSTALL_DIR) $(1)/lib/firmware/zd1211
$(INSTALL_DATA) $(PKG_BUILD_DIR)/zd* $(1)/lib/firmware/zd1211/
endef
$(eval $(call BuildPackage,zd1211-firmware))