Author: blogic Date: 2015-10-19 12:10:14 +0200 (Mon, 19 Oct 2015) New Revision: 47222
Modified: trunk/package/firmware/linux-firmware/Makefile Log: firmware: linux-firmware: Add ibt-firmware and ar3k-firmware packages Some bluetooth devices require firmware. Add intel bluetooth and ar3k for now. Signed-off-by: Pushpal Sidhu <[email protected]> Modified: trunk/package/firmware/linux-firmware/Makefile =================================================================== --- trunk/package/firmware/linux-firmware/Makefile 2015-10-19 10:10:02 UTC (rev 47221) +++ trunk/package/firmware/linux-firmware/Makefile 2015-10-19 10:10:14 UTC (rev 47222) @@ -61,3 +61,43 @@ endef $(eval $(call BuildPackage,r8188eu-firmware)) + +define Package/ibt-firmware + SECTION:=firmware + CATEGORY:=Firmware + URL:=http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git + TITLE:=Intel bluetooth firmware +endef + +define Build/Compile + +endef + +define Package/ibt-firmware/install + $(INSTALL_DIR) $(1)/lib/firmware/intel + $(CP) \ + $(PKG_BUILD_DIR)/intel/*.bseq \ + $(1)/lib/firmware/intel +endef + +$(eval $(call BuildPackage,ibt-firmware)) + +define Package/ar3k-firmware + SECTION:=firmware + CATEGORY:=Firmware + URL:=http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git + TITLE:=ath3k firmware +endef + +define Build/Compile + +endef + +define Package/ar3k-firmware/install + $(INSTALL_DIR) $(1)/lib/firmware/ar3k + $(CP) \ + $(PKG_BUILD_DIR)/ar3k/*.dfu \ + $(1)/lib/firmware/ar3k +endef + +$(eval $(call BuildPackage,ar3k-firmware)) _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
