Add usb gadget feature flag
authormb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 25 Aug 2010 17:35:34 +0000 (17:35 +0000)
committermb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 25 Aug 2010 17:35:34 +0000 (17:35 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22798 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/kernel/modules/usb.mk
scripts/metadata.pl
target/Config.in
target/linux/omap24xx/Makefile

index fa83d91..4e44191 100644 (file)
@@ -38,6 +38,7 @@ define KernelPackage/usb-gadget
   KCONFIG:=CONFIG_USB_GADGET
   FILES:=
   AUTOLOAD:=
+  DEPENDS:=@USB_GADGET_SUPPORT
   $(call AddDepends/usb)
 endef
 
index 63809c4..7902dec 100755 (executable)
@@ -158,6 +158,7 @@ sub target_config_features(@) {
                /pci/ and $ret .= "\tselect PCI_SUPPORT\n";
                /pcie/ and $ret .= "\tselect PCIE_SUPPORT\n";
                /usb/ and $ret .= "\tselect USB_SUPPORT\n";
+               /usbgadget/ and $ret .= "\tselect USB_GADGET_SUPPORT\n";
                /pcmcia/ and $ret .= "\tselect PCMCIA_SUPPORT\n";
                /squashfs/ and $ret .= "\tselect USES_SQUASHFS\n";
                /jffs2/ and $ret .= "\tselect USES_JFFS2\n";
index 48fd827..21cc3a4 100644 (file)
@@ -34,6 +34,9 @@ config USB_SUPPORT
        select AUDIO_SUPPORT
        bool
 
+config USB_GADGET_SUPPORT
+       bool
+
 config BIG_ENDIAN
        bool
 
index 81b59a8..901d24b 100644 (file)
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 ARCH:=arm
 BOARD:=omap24xx
 BOARDNAME:=TI OMAP-24xx
-FEATURES:=squashfs jffs2
+FEATURES:=squashfs jffs2 usb usbgadget
 
 LINUX_VERSION:=2.6.35.3
 
This page took 0.04844 seconds and 4 git commands to generate.