modules.mk 1.0 KB

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