kernel: mpc85xx: fix build of kmod-usb2-fsl
Fix buildbot error for mpc85xx. ehci-fsl.ko should be packaged inside the usb2 package, because it depends on the ehci kernel module. The fsl-mph-dr-of.ko module can stay in an own package because the ehci driver depends on it. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 48932
This commit is contained in:
parent
21cf64b4ad
commit
daf367240a
1 changed files with 10 additions and 9 deletions
|
@ -365,13 +365,10 @@ $(eval $(call KernelPackage,usb-ohci-pci))
|
|||
define KernelPackage/usb2-fsl
|
||||
TITLE:=Support for Freescale USB2 controllers
|
||||
DEPENDS:=@TARGET_mpc85xx
|
||||
KCONFIG:=\
|
||||
CONFIG_USB_FSL_MPH_DR_OF \
|
||||
CONFIG_USB_EHCI_FSL
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/drivers/usb/host/ehci-fsl.ko \
|
||||
$(LINUX_DIR)/drivers/usb/host/fsl-mph-dr-of.ko
|
||||
AUTOLOAD:=$(call AutoLoad,39,ehci-fsl fsl-mph-dr-of,1)
|
||||
HIDDEN:=1
|
||||
KCONFIG:=CONFIG_USB_FSL_MPH_DR_OF
|
||||
FILES:=$(LINUX_DIR)/drivers/usb/host/fsl-mph-dr-of.ko
|
||||
AUTOLOAD:=$(call AutoLoad,39,fsl-mph-dr-of,1)
|
||||
$(call AddDepends/usb)
|
||||
endef
|
||||
|
||||
|
@ -439,7 +436,8 @@ define KernelPackage/usb2
|
|||
CONFIG_USB_OCTEON_EHCI=y \
|
||||
CONFIG_USB_EHCI_HCD_ORION=y \
|
||||
CONFIG_USB_EHCI_HCD_PLATFORM=y \
|
||||
CONFIG_USB_EHCI_HCD_AT91=y
|
||||
CONFIG_USB_EHCI_HCD_AT91=y \
|
||||
CONFIG_USB_EHCI_FSL
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/drivers/usb/host/ehci-hcd.ko \
|
||||
$(LINUX_DIR)/drivers/usb/host/ehci-platform.ko
|
||||
|
@ -449,7 +447,10 @@ define KernelPackage/usb2
|
|||
ifneq ($(wildcard $(LINUX_DIR)/drivers/usb/host/ehci-atmel.ko),)
|
||||
FILES+=$(LINUX_DIR)/drivers/usb/host/ehci-atmel.ko
|
||||
endif
|
||||
AUTOLOAD:=$(call AutoLoad,40,ehci-hcd ehci-platform ehci-orion ehci-atmel,1)
|
||||
ifneq ($(wildcard $(LINUX_DIR)/drivers/usb/host/ehci-fsl.ko),)
|
||||
FILES+=$(LINUX_DIR)/drivers/usb/host/ehci-fsl.ko
|
||||
endif
|
||||
AUTOLOAD:=$(call AutoLoad,40,ehci-hcd ehci-platform ehci-orion ehci-atmel ehci-fsl,1)
|
||||
$(call AddDepends/usb)
|
||||
endef
|
||||
|
||||
|
|
Loading…
Reference in a new issue