diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-10 16:35:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-10 16:35:40 +0000 |
commit | 2d21f6c6d667ba34612b3fb4aa4f4e64fbb4231b (patch) | |
tree | 829fdc805964e7b24b32c08520ca9dec07b53993 /package/firmware/linux-firmware | |
parent | 727f2d336d8cdefbeaf76bc904df3476b58ceb84 (diff) | |
download | upstream-2d21f6c6d667ba34612b3fb4aa4f4e64fbb4231b.tar.gz upstream-2d21f6c6d667ba34612b3fb4aa4f4e64fbb4231b.tar.bz2 upstream-2d21f6c6d667ba34612b3fb4aa4f4e64fbb4231b.zip |
linux-firmware: move realtek firmware packages to realtek.mk
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48173
Diffstat (limited to 'package/firmware/linux-firmware')
-rw-r--r-- | package/firmware/linux-firmware/Makefile | 32 | ||||
-rw-r--r-- | package/firmware/linux-firmware/realtek.mk | 32 |
2 files changed, 34 insertions, 30 deletions
diff --git a/package/firmware/linux-firmware/Makefile b/package/firmware/linux-firmware/Makefile index 6faa752290..8b02bee2a0 100644 --- a/package/firmware/linux-firmware/Makefile +++ b/package/firmware/linux-firmware/Makefile @@ -23,34 +23,6 @@ PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org> include $(INCLUDE_DIR)/package.mk -define Package/r8169-firmware - SECTION:=firmware - CATEGORY:=Firmware - URL:=http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git - TITLE:=RealTek r8169 firmware -endef - -define Package/r8169-firmware/install - $(INSTALL_DIR) $(1)/lib/firmware/rtl_nic - $(CP) \ - $(PKG_BUILD_DIR)/rtl_nic/* \ - $(1)/lib/firmware/rtl_nic -endef - -define Package/r8188eu-firmware - SECTION:=firmware - CATEGORY:=Firmware - URL:=http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git - TITLE:=RealTek r8188eu firmware -endef - -define Package/r8188eu-firmware/install - $(INSTALL_DIR) $(1)/lib/firmware/rtlwifi - $(CP) \ - $(PKG_BUILD_DIR)/rtlwifi/rtl8188eufw.bin \ - $(1)/lib/firmware/rtlwifi -endef - define Package/ibt-firmware SECTION:=firmware CATEGORY:=Firmware @@ -83,7 +55,7 @@ define Build/Compile endef +include $(wildcard ./*.mk) + $(eval $(call BuildPackage,ar3k-firmware)) $(eval $(call BuildPackage,ibt-firmware)) -$(eval $(call BuildPackage,r8169-firmware)) -$(eval $(call BuildPackage,r8188eu-firmware)) diff --git a/package/firmware/linux-firmware/realtek.mk b/package/firmware/linux-firmware/realtek.mk new file mode 100644 index 0000000000..9bf1cef3bf --- /dev/null +++ b/package/firmware/linux-firmware/realtek.mk @@ -0,0 +1,32 @@ +define Package/r8169-firmware + SECTION:=firmware + CATEGORY:=Firmware + URL:=http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git + TITLE:=RealTek r8169 firmware +endef + +define Package/r8169-firmware/install + $(INSTALL_DIR) $(1)/lib/firmware/rtl_nic + $(CP) \ + $(PKG_BUILD_DIR)/rtl_nic/* \ + $(1)/lib/firmware/rtl_nic +endef + +$(eval $(call BuildPackage,r8169-firmware)) + + +define Package/r8188eu-firmware + SECTION:=firmware + CATEGORY:=Firmware + URL:=http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git + TITLE:=RealTek r8188eu firmware +endef + +define Package/r8188eu-firmware/install + $(INSTALL_DIR) $(1)/lib/firmware/rtlwifi + $(CP) \ + $(PKG_BUILD_DIR)/rtlwifi/rtl8188eufw.bin \ + $(1)/lib/firmware/rtlwifi +endef + +$(eval $(call BuildPackage,r8188eu-firmware)) |