2d21f6c6d6
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 48173
32 lines
800 B
Makefile
32 lines
800 B
Makefile
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))
|