mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
728afd14fa
The firmware file for mt7601u (MediaTek MT7601U Wireless MACs) has been moved to the mediatek/ folder by commit 8451c2b1 mt76xx: Move the old Mediatek WiFi firmware to mediatek Address this by updating the location of the firmware file in our linux-firmware Makefile generating the mt7601u-firmware package. All other MediaTek Wi-Fi firmware files are supplied by OpenWrt's own repository rather than being taken from linux-firmware. Fixes:d53fe5d9ce
("linux-firmware: update to 20230515") Signed-off-by: Daniel Golle <daniel@makrotopia.org> (cherry picked from commitd26ecbcf95
)
53 lines
1.8 KiB
Makefile
53 lines
1.8 KiB
Makefile
Package/mt7601u-firmware = $(call Package/firmware-default,MediaTek MT7601U firmware)
|
|
define Package/mt7601u-firmware/install
|
|
$(INSTALL_DIR) $(1)/lib/firmware/mediatek
|
|
$(INSTALL_DATA) \
|
|
$(PKG_BUILD_DIR)/mediatek/mt7601u.bin \
|
|
$(1)/lib/firmware/mediatek
|
|
endef
|
|
$(eval $(call BuildPackage,mt7601u-firmware))
|
|
|
|
Package/rt2800-pci-firmware = $(call Package/firmware-default,Ralink RT28xx/3xxx PCI/SoC firmware)
|
|
define Package/rt2800-pci-firmware/install
|
|
$(INSTALL_DIR) $(1)/lib/firmware
|
|
$(INSTALL_DATA) \
|
|
$(PKG_BUILD_DIR)/rt2860.bin \
|
|
$(PKG_BUILD_DIR)/rt3290.bin \
|
|
$(1)/lib/firmware
|
|
endef
|
|
$(eval $(call BuildPackage,rt2800-pci-firmware))
|
|
|
|
Package/rt2800-usb-firmware = $(call Package/firmware-default,Ralink RT28xx/3xxx USB firmware)
|
|
define Package/rt2800-usb-firmware/install
|
|
$(INSTALL_DIR) $(1)/lib/firmware
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/rt2870.bin $(1)/lib/firmware/
|
|
endef
|
|
$(eval $(call BuildPackage,rt2800-usb-firmware))
|
|
|
|
Package/rt61-pci-firmware = $(call Package/firmware-default,Ralink RT2561 firmware)
|
|
define Package/rt61-pci-firmware/install
|
|
$(INSTALL_DIR) $(1)/lib/firmware
|
|
$(INSTALL_DATA) \
|
|
$(PKG_BUILD_DIR)/rt2561.bin \
|
|
$(PKG_BUILD_DIR)/rt2561s.bin \
|
|
$(PKG_BUILD_DIR)/rt2661.bin \
|
|
$(1)/lib/firmware/
|
|
endef
|
|
$(eval $(call BuildPackage,rt61-pci-firmware))
|
|
|
|
Package/rt73-usb-firmware = $(call Package/firmware-default,Ralink RT2573 firmware)
|
|
define Package/rt73-usb-firmware/install
|
|
$(INSTALL_DIR) $(1)/lib/firmware
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/rt73.bin $(1)/lib/firmware/
|
|
endef
|
|
$(eval $(call BuildPackage,rt73-usb-firmware))
|
|
|
|
Package/mt7622bt-firmware = $(call Package/firmware-default,mt7622bt firmware)
|
|
define Package/mt7622bt-firmware/install
|
|
$(INSTALL_DIR) $(1)/lib/firmware/mediatek
|
|
$(INSTALL_DATA) \
|
|
$(PKG_BUILD_DIR)/mediatek/mt7622pr2h.bin \
|
|
$(1)/lib/firmware/mediatek
|
|
endef
|
|
$(eval $(call BuildPackage,mt7622bt-firmware))
|