modules.mk 996 B

1234567891011121314151617181920212223242526272829303132333435
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Copyright (C) Jiang Yutang <[email protected]>
  4. define KernelPackage/ahci-qoriq
  5. SUBMENU:=$(BLOCK_MENU)
  6. TITLE:=Freescale QorIQ AHCI SATA support
  7. KCONFIG:=CONFIG_AHCI_QORIQ
  8. FILES:=$(LINUX_DIR)/drivers/ata/ahci_qoriq.ko
  9. AUTOLOAD:=$(call AutoLoad,40,ahci-qoriq,1)
  10. $(call AddDepends/ata,+kmod-ata-ahci-platform @TARGET_layerscape)
  11. endef
  12. define KernelPackage/ahci-qoriq/description
  13. This option enables support for the Freescale QorIQ AHCI SoC's
  14. onboard AHCI SATA.
  15. endef
  16. $(eval $(call KernelPackage,ahci-qoriq))
  17. define KernelPackage/ppfe
  18. SUBMENU:=$(NETWORK_DEVICES_MENU)
  19. TITLE:=Freescale PPFE Driver support
  20. DEPENDS:=@TARGET_layerscape
  21. KCONFIG:=CONFIG_FSL_PPFE \
  22. CONFIG_FSL_PPFE_UTIL_DISABLED=y
  23. FILES:=$(LINUX_DIR)/drivers/staging/fsl_ppfe/pfe.ko
  24. AUTOLOAD:=$(call AutoLoad,35,pfe)
  25. endef
  26. define KernelPackage/ppfe/description
  27. Kernel modules for Freescale PPFE Driver support.
  28. endef
  29. $(eval $(call KernelPackage,ppfe))