modules.mk 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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/ocf-ubsec-ssb
  8. TITLE:=BCM5365P IPSec Core driver
  9. DEPENDS:=@TARGET_brcm47xx @!TARGET_brcm47xx_mips74k +kmod-crypto-ocf
  10. KCONFIG:=CONFIG_OCF_UBSEC_SSB
  11. FILES:=$(LINUX_DIR)/crypto/ocf/ubsec_ssb/ubsec_ssb.ko
  12. AUTOLOAD:=$(call AutoLoad,10,ubsec_ssb)
  13. $(call AddDepends/crypto)
  14. endef
  15. define KernelPackage/ocf-ubsec-ssb/description
  16. This package contains the OCF driver for the BCM5365p IPSec Core
  17. endef
  18. $(eval $(call KernelPackage,ocf-ubsec-ssb))
  19. define KernelPackage/bgmac
  20. TITLE:=Broadcom bgmac driver
  21. KCONFIG:=CONFIG_BGMAC
  22. DEPENDS:=@TARGET_brcm47xx @!TARGET_brcm47xx_legacy
  23. SUBMENU:=$(NETWORK_DEVICES_MENU)
  24. FILES:=$(LINUX_DIR)/drivers/net/ethernet/broadcom/bgmac.ko
  25. AUTOLOAD:=$(call AutoLoad,19,bgmac,1)
  26. endef
  27. define KernelPackage/bgmac/description
  28. Kernel modules for Broadcom bgmac Ethernet adapters.
  29. endef
  30. $(eval $(call KernelPackage,bgmac))