⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.in

📁 linux-2.4.29操作系统的源码
💻 IN
字号:
## USB device-side configuration# for 2.4 kbuild, drivers/usb/gadget/Config.in## Long term, this likely doesn't all belong in one directory# Plan to split it up eventually.#mainmenu_option next_commentcomment 'Support for USB gadgets'tristate 'Support for USB Gadgets' CONFIG_USB_GADGETif [ "$CONFIG_USB_GADGET" = "y" -o "$CONFIG_USB_GADGET" = "m" ]; then    #  # really want _exactly one_ device controller driver at a time,  # since they control compile options for gadget drivers.  #  choice 'USB Peripheral Controller Driver' "\	NetChip-2280			CONFIG_USB_GADGET_NET2280 \	Toshiba-TC86C001(Goku-S)	CONFIG_USB_GADGET_GOKU \	" NetChip-2280  define_tristate CONFIG_USB_GADGET_CONTROLLER n  if [ "$CONFIG_PCI" = "y" -a "$CONFIG_USB_GADGET_NET2280" = "y" ] ; then    define_tristate CONFIG_USB_NET2280 $CONFIG_USB_GADGET    define_tristate CONFIG_USB_GADGET_CONTROLLER $CONFIG_USB_NET2280  fi  if [ "$CONFIG_PCI" = "y" -a "$CONFIG_USB_GADGET_GOKU" = "y" ] ; then    define_tristate CONFIG_USB_GOKU $CONFIG_USB_GADGET    define_tristate CONFIG_USB_GADGET_CONTROLLER $CONFIG_USB_GOKU  fi  # or any other controller that supports high speed transfers ...  define_bool CONFIG_USB_GADGET_DUALSPEED $CONFIG_USB_GADGET_NET2280  if [ "$CONFIG_USB_GADGET_CONTROLLER" = "y" -o "$CONFIG_USB_GADGET_CONTROLLER" = "m" ] ; then  #  # no reason not to enable more than one gadget driver module, but  # for static linking that would make no sense since the usb model  # has exactly one of these upstream connections and only one  # lowest-level driver can control it.  #  # gadget drivers are compiled to work on specific hardware, since  #  # (a) gadget driver need hardware-specific configuration, like what  #     endpoint names and numbers to use, maxpacket sizes, etc  #  # (b) specific hardware features like iso endpoints may be required  #  comment 'USB Gadget Drivers'  dep_tristate '  Gadget Zero (DEVELOPMENT)' CONFIG_USB_ZERO $CONFIG_USB_GADGET_CONTROLLER  dep_tristate '  Ethernet Gadget' CONFIG_USB_ETH $CONFIG_USB_GADGET_CONTROLLER $CONFIG_NET  if [ "$CONFIG_USB_ETH" = "y" -o "$CONFIG_USB_ETH" = "m" ] ; then    dep_bool       '    RNDIS support (EXPERIMENTAL)' CONFIG_USB_ETH_RNDIS $CONFIG_EXPERIMENTAL  fi  dep_tristate '  File-backed Storage Gadget (DEVELOPMENT)' CONFIG_USB_FILE_STORAGE $CONFIG_USB_GADGET_CONTROLLER  dep_mbool '    File-backed Storage Gadget test mode' CONFIG_USB_FILE_STORAGE_TEST $CONFIG_USB_FILE_STORAGE      # enforce the "only one statically linked gadget driver" rule    if [ "$CONFIG_USB_ZERO" = "y" ]; then      # zero = y      define_tristate CONFIG_USB_ETH n      define_tristate CONFIG_USB_FILE_STORAGE n    fi    if [ "$CONFIG_USB_ETH" = "y" ]; then      define_tristate CONFIG_USB_ZERO n      # eth = y      define_tristate CONFIG_USB_FILE_STORAGE n    fi    if [ "$CONFIG_USB_FILE_STORAGE" = "y" ]; then      define_tristate CONFIG_USB_ZERO n      define_tristate CONFIG_USB_ETH n      # file_storage = y    fi  fifiendmenu

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -