modules.mk 600 B

12345678910111213141516171819202122
  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/ppfe
  8. SUBMENU:=$(NETWORK_DEVICES_MENU)
  9. TITLE:=Freescale PPFE Driver support
  10. DEPENDS:=@TARGET_layerscape
  11. KCONFIG:=CONFIG_FSL_PPFE=y \
  12. CONFIG_FSL_PPFE_UTIL_DISABLED=y
  13. FILES:=$(LINUX_DIR)/drivers/staging/fsl_ppfe/pfe.ko
  14. AUTOLOAD:=$(call AutoLoad,35,pfe)
  15. endef
  16. define KernelPackage/ppfe/description
  17. Kernel modules for Freescale PPFE Driver support.
  18. endef
  19. $(eval $(call KernelPackage,ppfe))