modules.mk 571 B

123456789101112131415161718192021
  1. #
  2. # Copyright (C) 2006-2012 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. define KernelPackage/bgmac
  8. TITLE:=Broadcom bgmac driver
  9. KCONFIG:=CONFIG_BGMAC
  10. DEPENDS:=@TARGET_brcm47xx @!TARGET_brcm47xx_legacy
  11. SUBMENU:=$(NETWORK_DEVICES_MENU)
  12. FILES:=$(LINUX_DIR)/drivers/net/ethernet/broadcom/bgmac.ko
  13. AUTOLOAD:=$(call AutoLoad,19,bgmac,1)
  14. endef
  15. define KernelPackage/bgmac/description
  16. Kernel modules for Broadcom bgmac Ethernet adapters.
  17. endef
  18. $(eval $(call KernelPackage,bgmac))