diff options
author | Nicolas Thill <nico@openwrt.org> | 2008-09-15 10:17:13 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2008-09-15 10:17:13 +0000 |
commit | 772fe7fe71d929ae742edfc3b0b46a1877433b03 (patch) | |
tree | 216796f322676f01a6e08b324c0f3d216ed43767 /package/acx-mac80211/Makefile | |
parent | aca19fe74c6eba3e2bdb7e10ce1c431e2f558645 (diff) | |
download | upstream-772fe7fe71d929ae742edfc3b0b46a1877433b03.tar.gz upstream-772fe7fe71d929ae742edfc3b0b46a1877433b03.tar.bz2 upstream-772fe7fe71d929ae742edfc3b0b46a1877433b03.zip |
use the Download/ macro to get ACX firmwares
SVN-Revision: 12612
Diffstat (limited to 'package/acx-mac80211/Makefile')
-rw-r--r-- | package/acx-mac80211/Makefile | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/package/acx-mac80211/Makefile b/package/acx-mac80211/Makefile index ad498824ea..865719160a 100644 --- a/package/acx-mac80211/Makefile +++ b/package/acx-mac80211/Makefile @@ -20,15 +20,6 @@ PKG_SOURCE_PROTO:=git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_VERSION:=$(PKG_REV) -PKG_FW_C16_NAME:=tiacx111c16 -PKG_FW_C16_URL:=http://teknoraver.net/software/acx-mac80211/ -#PKG_FW_C16_MD5SUM:=fcd07de4b25e1d2aaf3b78b27c5b7ee9 #version 1.2.1.34 -PKG_FW_C16_MD5SUM:=7026826460376f6b174f9225bd7781b9 #version 2.3.1.31 - -PKG_FW_C19_NAME:=tiacx111c19 -PKG_FW_C19_URL:=http://ipkg.k1k2.de/files/ -PKG_FW_C19_MD5SUM:=a1fa9681e297b4e36e257090fc12265a - include $(INCLUDE_DIR)/package.mk define KernelPackage/acx-mac80211 @@ -43,13 +34,24 @@ define KernelPackage/acx-mac80211/description Driver for acx111 cards (Mac80211 version) endef -$(STAMP_BUILT): $(DL_DIR)/$(PKG_FW_C16_NAME) $(DL_DIR)/$(PKG_FW_C19_NAME) -$(DL_DIR)/$(PKG_FW_C16_NAME): - $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_FW_C16_NAME)" "$(PKG_FW_C16_MD5SUM)" $(PKG_FW_C16_URL) +C16_FW:=tiacx111c16 +C19_FW:=tiacx111c19 + +define Download/tiacx111c16 + FILE:=$(C16_FW) + URL:=http://teknoraver.net/software/acx-mac80211/ + MD5SUM:=7026826460376f6b174f9225bd7781b9 +endef +$(eval $(call Download,tiacx111c16)) + +define Download/tiacx111c19 + FILE:=$(C19_FW) + URL:=http://ipkg.k1k2.de/files/ + MD5SUM:=a1fa9681e297b4e36e257090fc12265a +endef +$(eval $(call Download,tiacx111c19)) -$(DL_DIR)/$(PKG_FW_C19_NAME): - $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_FW_C19_NAME)" "$(PKG_FW_C19_MD5SUM)" $(PKG_FW_C19_URL) PKG_EXTRA_KCONFIG:= \ CONFIG_ACX_MAC80211=m \ @@ -77,8 +79,8 @@ endef define KernelPackage/acx-mac80211/install $(INSTALL_DIR) $(1)/lib/firmware - $(INSTALL_DATA) $(DL_DIR)/$(PKG_FW_C16_NAME) $(1)/lib/firmware/ - $(INSTALL_DATA) $(DL_DIR)/$(PKG_FW_C19_NAME) $(1)/lib/firmware/ + $(INSTALL_DATA) $(DL_DIR)/$(C16_FW) $(1)/lib/firmware/ + $(INSTALL_DATA) $(DL_DIR)/$(C19_FW) $(1)/lib/firmware/ endef $(eval $(call KernelPackage,acx-mac80211)) |