modules.mk 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # Copyright (C) 2010 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/ata-magicbox-cf
  8. SUBMENU:=$(BLOCK_MENU)
  9. TITLE:=Magicbox v2/OpenRB Compact flash support
  10. DEPENDS:=@TARGET_ppc40x
  11. KCONFIG:=CONFIG_PATA_MAGICBOX_CF
  12. FILES:=$(LINUX_DIR)/drivers/ata/pata_magicbox_cf.ko
  13. AUTOLOAD:=$(call AutoLoad,41,pata_magicbox_cf,1)
  14. $(call AddDepends/ata)
  15. endef
  16. define KernelPackage/ata-magicbox-cf/description
  17. Support for Magicbox v2/OpenRB on-board CF slot.
  18. endef
  19. $(eval $(call KernelPackage,ata-magicbox-cf))
  20. define KernelPackage/usb-isp116x-hcd
  21. TITLE:=Support for the ISP116x USB Host Controller
  22. DEPENDS:=@TARGET_ppc40x
  23. KCONFIG:= \
  24. CONFIG_USB_ISP116X_HCD \
  25. CONFIG_USB_ISP116X_HCD_OF=y \
  26. CONFIG_USB_ISP116X_HCD_PLATFORM=n
  27. FILES:=$(LINUX_DIR)/drivers/usb/host/isp116x-hcd.ko
  28. AUTOLOAD:=$(call AutoLoad,50,isp116x-hcd)
  29. $(call AddDepends/usb)
  30. endef
  31. define KernelPackage/usb-isp116x-hcd/description
  32. Kernel support for the ISP116X USB Host Controller
  33. endef
  34. $(eval $(call KernelPackage,usb-isp116x-hcd))