diff options
author | lars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-03-25 15:04:44 +0000 |
---|---|---|
committer | lars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-03-25 15:04:44 +0000 |
commit | 1c6727552a93c3f045e07dcd6de9e61d8a32280e (patch) | |
tree | 46ab4a795a69529c4d3e431d7f5836c0354261d6 /include | |
parent | cc7ea8a7c84a150236f6aac2a443ceb9b7ded956 (diff) |
include/target.mk: Only set usb feature flag for a target if there is a HCD
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20425 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/target.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/target.mk b/include/target.mk index 61ff2d21a..5eb8547cc 100644 --- a/include/target.mk +++ b/include/target.mk @@ -148,7 +148,9 @@ ifeq ($(DUMP),1) FEATURES += pcie endif ifneq ($(CONFIG_USB)$(CONFIG_USB_SUPPORT),) - FEATURES += usb + ifneq ($(CONFIG_USB_ARCH_HAS_HCD)$(CONFIG_USB_EHCI_HCD),) + FEATURES += usb + endif endif ifneq ($(CONFIG_PCMCIA)$(CONFIG_PCCARD),) FEATURES += pcmcia |