wireless.mk 840 B

12345678910111213141516171819202122232425262728
  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/owl-loader
  9. SUBMENU:=$(WIRELESS_MENU)
  10. TITLE:=Owl loader for initializing Atheros PCI(e) Wifi chips
  11. DEPENDS:=@PCI_SUPPORT
  12. KCONFIG:=CONFIG_OWL_LOADER
  13. FILES:=$(LINUX_DIR)/drivers/misc/owl-loader.ko
  14. AUTOLOAD:=$(call AutoProbe,owl-loader)
  15. endef
  16. define KernelPackage/owl-loader/description
  17. Kernel module that helps to initialize certain Qualcomm
  18. Atheros' PCI(e) Wifi chips, which have the init data
  19. (which contains the PCI device ID for example) stored
  20. together with the calibration data in the file system.
  21. This is necessary for devices like the Cisco Meraki Z1.
  22. endef
  23. $(eval $(call KernelPackage,owl-loader))