1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-24 05:42:59 +02:00

The package kmod-net-prism54 misses the firmware file in /lib/firmware.

Signed-Off-By: Joerg Albert <jal2 at gmx.de>


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13223 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2008-11-15 17:39:50 +00:00
parent e257205d3f
commit eab51e2e0d

View File

@ -196,5 +196,22 @@ define KernelPackage/net-prism54/description
Kernel modules for Intersil Prism54 support
endef
# Prism54 FullMAC firmware (jbnore.free.fr seems to be rather slow, so we use daemonizer.de)
#PRISM54_FW:=p54pcifm_1.0.4.3.arm
PRISM54_FW:=1.0.4.3.arm
define Download/net-prism54
FILE:=$(PRISM54_FW)
# URL:=http://jbnote.free.fr/prism54usb/data/firmwares/
URL:=http://daemonizer.de/prism54/prism54-fw/fw-fullmac/
MD5SUM:=8bd4310971772a486b9784c77f8a6df9
endef
define KernelPackage/net-prism54/install
$(INSTALL_DIR) $(1)/lib/firmware
$(INSTALL_DATA) $(DL_DIR)/$(PRISM54_FW) $(1)/lib/firmware/isl3890
endef
$(eval $(call Download,net-prism54))
$(eval $(call KernelPackage,net-prism54))