diff options
author | Hamish Guthrie <hcg@openwrt.org> | 2011-08-22 11:04:13 +0000 |
---|---|---|
committer | Hamish Guthrie <hcg@openwrt.org> | 2011-08-22 11:04:13 +0000 |
commit | 01a4c735e3d34355f4c9bbd4bc8fab603972a1f7 (patch) | |
tree | 816508af2c0d64af9d520a7f4a70f8e0f88e1957 /package | |
parent | 17ba548afe2a449d140af82cec64b04fc6a66ba5 (diff) | |
download | upstream-01a4c735e3d34355f4c9bbd4bc8fab603972a1f7.tar.gz upstream-01a4c735e3d34355f4c9bbd4bc8fab603972a1f7.tar.bz2 upstream-01a4c735e3d34355f4c9bbd4bc8fab603972a1f7.zip |
[package] mac80211: Fix the location firmware is copied to (libertas_sdio driver loads firmware from /lib/formware/libertas)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28069 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/mac80211/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/mac80211/Makefile b/package/mac80211/Makefile index 307916216c..2faae577d3 100644 --- a/package/mac80211/Makefile +++ b/package/mac80211/Makefile @@ -1255,7 +1255,7 @@ define KernelPackage/libertas-usb/install endef define KernelPackage/libertas-sd/install - $(INSTALL_DIR) $(1)/lib/firmware + $(INSTALL_DIR) $(1)/lib/firmware/libertas $(INSTALL_DATA) \ $(PKG_BUILD_DIR)/$(PKG_LINUX_FIRMWARE_SUBDIR)/libertas/sd8385_helper.bin \ $(PKG_BUILD_DIR)/$(PKG_LINUX_FIRMWARE_SUBDIR)/libertas/sd8385.bin \ @@ -1265,7 +1265,7 @@ define KernelPackage/libertas-sd/install $(PKG_BUILD_DIR)/$(PKG_LINUX_FIRMWARE_SUBDIR)/libertas/sd8686_v8.bin \ $(PKG_BUILD_DIR)/$(PKG_LINUX_FIRMWARE_SUBDIR)/libertas/sd8688_helper.bin \ $(PKG_BUILD_DIR)/$(PKG_LINUX_FIRMWARE_SUBDIR)/libertas/sd8688.bin \ - $(1)/lib/firmware/ + $(1)/lib/firmware/libertas endef define KernelPackage/cfg80211/install |