home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / arm / plat-mxc / Makefile < prev   
Encoding:
Makefile  |  2009-09-09  |  764 b   |  39 lines

  1. #
  2. # Makefile for the linux kernel.
  3. #
  4.  
  5. # Common support
  6. obj-y := cpu_common.o gpio.o clock.o wdog.o snoop.o io.o time.o
  7.  
  8. obj-$(CONFIG_ARCH_MX2) += iomux-mx1-mx2.o dma-mx1-mx2.o
  9.  
  10. ifeq ($(CONFIG_MXC_TZIC),y)
  11. obj-y += tzic.o
  12. else
  13. obj-y += irq.o
  14. endif
  15.  
  16. obj-$(CONFIG_ARCH_MX51) += usb_common.o utmixc.o dvfs_core.o spba.o sdma/
  17.  
  18. # CPU FREQ support
  19. obj-$(CONFIG_CPU_FREQ_IMX)    += cpufreq.o
  20.  
  21. # USB support
  22. obj-$(CONFIG_ISP1504_MXC) += isp1504xc.o
  23.  
  24. # obj-$(CONFIG_USB_EHCI_FSL_UTMI) += utmixc.o
  25. ifneq ($(strip $(CONFIG_USB_EHCI_FSL_UTMI) $(CONFIG_USB_GADGET_FSL_UTMI)),)
  26. obj-y += utmixc.o
  27. endif
  28.  
  29. ifneq ($(CONFIG_USB_EHCI_ARC_H1)$(CONFIG_USB_EHCI_ARC_H2),)
  30. ifeq ($(CONFIG_ARCH_MX51),y)
  31. obj-y += isp1504xc.o
  32. endif
  33. endif
  34.  
  35. ifeq ($(CONFIG_USB),y)
  36. obj-y += usb_common.o
  37. endif
  38.  
  39.