|
@@ -17,14 +17,6 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
PKG_SOURCE_URL:=@SF/acx100
|
|
PKG_SOURCE_URL:=@SF/acx100
|
|
|
PKG_MD5SUM:=7d5ce3215708e4e9f95cf567a9ee3a12
|
|
PKG_MD5SUM:=7d5ce3215708e4e9f95cf567a9ee3a12
|
|
|
|
|
|
|
|
-PKG_FW_C16_NAME:=tiacx111c16
|
|
|
|
|
-PKG_FW_C16_URL:=http://teknoraver.net/software/acx-mac80211/
|
|
|
|
|
-PKG_FW_C16_MD5SUM:=7026826460376f6b174f9225bd7781b9
|
|
|
|
|
-
|
|
|
|
|
-PKG_FW_C19_NAME:=tiacx111c19
|
|
|
|
|
-PKG_FW_C19_URL:=http://ipkg.k1k2.de/files/
|
|
|
|
|
-PKG_FW_C19_MD5SUM:=a1fa9681e297b4e36e257090fc12265a
|
|
|
|
|
-
|
|
|
|
|
PKG_UNPACK:= \
|
|
PKG_UNPACK:= \
|
|
|
bzcat $(DL_DIR)/$(PKG_SOURCE) | \
|
|
bzcat $(DL_DIR)/$(PKG_SOURCE) | \
|
|
|
$(TAR) -C $(KERNEL_BUILD_DIR) $(TAR_OPTIONS); \
|
|
$(TAR) -C $(KERNEL_BUILD_DIR) $(TAR_OPTIONS); \
|
|
@@ -45,13 +37,23 @@ define KernelPackage/acx/description
|
|
|
This package contains a driver for TI ACX1xx 802.11a/b/g chipsets.
|
|
This package contains a driver for TI ACX1xx 802.11a/b/g chipsets.
|
|
|
endef
|
|
endef
|
|
|
|
|
|
|
|
-$(STAMP_BUILT): $(DL_DIR)/$(PKG_FW_C16_NAME) $(DL_DIR)/$(PKG_FW_C19_NAME)
|
|
|
|
|
|
|
+C16_FW:=tiacx111c16
|
|
|
|
|
+C19_FW:=tiacx111c19
|
|
|
|
|
|
|
|
-$(DL_DIR)/$(PKG_FW_C16_NAME):
|
|
|
|
|
- $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_FW_C16_NAME)" "$(PKG_FW_C16_MD5SUM)" $(PKG_FW_C16_URL)
|
|
|
|
|
|
|
+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)
|
|
|
|
|
|
|
|
|
|
define Build/Compile
|
|
define Build/Compile
|
|
|
$(MAKE) -C $(LINUX_DIR) \
|
|
$(MAKE) -C $(LINUX_DIR) \
|
|
@@ -71,8 +73,8 @@ endef
|
|
|
|
|
|
|
|
define KernelPackage/acx/install
|
|
define KernelPackage/acx/install
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware
|
|
$(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
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,acx))
|
|
$(eval $(call KernelPackage,acx))
|