[openwrt/openwrt] mac80211: reintroduce rt61/rt73 support

LEDE Commits lede-commits at lists.infradead.org
Mon Oct 28 16:08:28 PDT 2024


ansuel pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/4f1b7f58291e42993922455937c49400e5e43751

commit 4f1b7f58291e42993922455937c49400e5e43751
Author: Christian Marangi <ansuelsmth at gmail.com>
AuthorDate: Fri Oct 25 00:12:05 2024 +0200

    mac80211: reintroduce rt61/rt73 support
    
    Reintroduce rt61/rt73 support as they looks to be pretty standard and
    currently required by Gemini or Xway-legacy targets.
    
    Notice that they are b/g card.
    
    Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
---
 package/kernel/mac80211/ralink.mk | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/package/kernel/mac80211/ralink.mk b/package/kernel/mac80211/ralink.mk
index 83d208ee1a..6925d9c549 100644
--- a/package/kernel/mac80211/ralink.mk
+++ b/package/kernel/mac80211/ralink.mk
@@ -1,6 +1,7 @@
 PKG_DRIVERS += \
 	rt2x00-lib rt2x00-pci rt2x00-usb rt2x00-mmio \
-	rt2800-lib rt2800-mmio rt2800-pci rt2800-soc rt2800-usb
+	rt2800-lib rt2800-mmio rt2800-pci rt2800-soc rt2800-usb \
+  rt61-pci rt73-usb
 
 PKG_CONFIG_DEPENDS += \
 	CONFIG_PACKAGE_RT2X00_LIB_DEBUGFS \
@@ -128,4 +129,18 @@ $(call KernelPackage/rt2x00/Default)
   AUTOLOAD:=$(call AutoProbe,rt2800usb)
 endef
 
+define KernelPackage/rt61-pci
+$(call KernelPackage/rt2x00/Default)
+  DEPENDS+= @PCI_SUPPORT +kmod-rt2x00-pci +kmod-eeprom-93cx6 +kmod-lib-crc-itu-t +rt61-pci-firmware
+  TITLE+= (RT2x61 PCI)
+  FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/ralink/rt2x00/rt61pci.ko
+  AUTOLOAD:=$(call AutoProbe,rt61pci)
+endef
 
+define KernelPackage/rt73-usb
+  $(call KernelPackage/rt2x00/Default)
+  DEPENDS+= @USB_SUPPORT +kmod-rt2x00-usb +kmod-lib-crc-itu-t +rt73-usb-firmware
+  TITLE+= (RT73 USB)
+  FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/ralink/rt2x00/rt73usb.ko
+  AUTOLOAD:=$(call AutoProbe,rt73usb)
+endef




More information about the lede-commits mailing list