wireless.mk 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #
  2. # Copyright (C) 2006-2008 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. WIRELESS_MENU:=Wireless Drivers
  8. define KernelPackage/net-prism54
  9. SUBMENU:=$(WIRELESS_MENU)
  10. TITLE:=Intersil Prism54 support
  11. DEPENDS:=@PCI_SUPPORT +@DRIVER_WEXT_SUPPORT +prism54-firmware
  12. KCONFIG:=CONFIG_PRISM54
  13. FILES:= \
  14. $(LINUX_DIR)/drivers/net/wireless/prism54/prism54.ko@lt4.5 \
  15. $(LINUX_DIR)/drivers/net/wireless/intersil/prism54/prism54.ko@ge4.5
  16. AUTOLOAD:=$(call AutoProbe,prism54)
  17. endef
  18. define KernelPackage/net-prism54/description
  19. Kernel modules for Intersil Prism54 support
  20. endef
  21. $(eval $(call KernelPackage,net-prism54))
  22. define KernelPackage/net-rtl8192su
  23. SUBMENU:=$(WIRELESS_MENU)
  24. TITLE:=RTL8192SU support (staging)
  25. DEPENDS:=@USB_SUPPORT +@DRIVER_WEXT_SUPPORT +kmod-usb-core +rtl8192su-firmware
  26. KCONFIG:=\
  27. CONFIG_STAGING=y \
  28. CONFIG_R8712U
  29. FILES:=$(LINUX_DIR)/drivers/staging/rtl8712/r8712u.ko
  30. AUTOLOAD:=$(call AutoProbe,r8712u)
  31. endef
  32. define KernelPackage/net-rtl8192su/description
  33. Kernel modules for RealTek RTL8712 and RTL81XXSU fullmac support.
  34. endef
  35. $(eval $(call KernelPackage,net-rtl8192su))
  36. define KernelPackage/owl-loader
  37. SUBMENU:=$(WIRELESS_MENU)
  38. TITLE:=Owl loader for initializing Atheros PCI(e) Wifi chips
  39. DEPENDS:=@PCI_SUPPORT
  40. KCONFIG:=CONFIG_OWL_LOADER
  41. FILES:=$(LINUX_DIR)/drivers/misc/owl-loader.ko
  42. AUTOLOAD:=$(call AutoProbe,owl-loader)
  43. endef
  44. define KernelPackage/owl-loader/description
  45. Kernel module that helps to initialize certain Qualcomm
  46. Atheros' PCI(e) Wifi chips, which have the init data
  47. (which contains the PCI device ID for example) stored
  48. together with the calibration data in the file system.
  49. This is necessary for devices like the Cisco Meraki Z1.
  50. endef
  51. $(eval $(call KernelPackage,owl-loader))