modules.mk 1020 B

12345678910111213141516171819202122232425262728293031323334
  1. define KernelPackage/ata-dwc
  2. TITLE:=DesignWare Cores SATA support
  3. KCONFIG:=CONFIG_SATA_DWC
  4. FILES:=$(LINUX_DIR)/drivers/ata/sata_dwc_460ex.ko
  5. AUTOLOAD:=$(call AutoLoad,40,sata_dwc_460ex,1)
  6. $(call AddDepends/ata)
  7. endef
  8. define KernelPackage/ata-dwc/description
  9. Platform support for the on-chip SATA controller.
  10. endef
  11. $(eval $(call KernelPackage,ata-dwc))
  12. define KernelPackage/hw-crypto-4xx
  13. TITLE:=Driver AMCC PPC4xx crypto accelerator
  14. KCONFIG:= \
  15. CONFIG_CRYPTO_HW=y \
  16. CONFIG_HW_RANDOM=y \
  17. CONFIG_CRYPTO_DEV_PPC4XX \
  18. CONFIG_HW_RANDOM_PPC4XX=y
  19. DEPENDS:=@TARGET_apm821xx +kmod-random-core +kmod-crypto-manager \
  20. +kmod-crypto-ccm +kmod-crypto-gcm \
  21. +kmod-crypto-sha1 +kmod-crypto-sha256 +kmod-crypto-sha512
  22. FILES:=$(LINUX_DIR)/drivers/crypto/amcc/crypto4xx.ko
  23. AUTOLOAD:=$(call AutoLoad,09,crypto4xx,1)
  24. $(call AddDepends/crypto)
  25. endef
  26. define KernelPackage/hw-crypto-4xx/description
  27. Platform support for the on-chip crypto acceleration.
  28. endef
  29. $(eval $(call KernelPackage,hw-crypto-4xx))