Config.in
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # PCMCIA bus subsystem configuration
  3. #
  4. # Right now the non-CardBus choices are not supported
  5. # by the integrated kernel driver.
  6. #
  7. mainmenu_option next_comment
  8. comment 'PCMCIA/CardBus support'
  9. #dep_tristate 'CardBus support' CONFIG_PCMCIA $CONFIG_PCI
  10. #if [ "$CONFIG_PCMCIA" != "n" ]; then
  11. #  define_bool CONFIG_CARDBUS y
  12. #fi
  13. tristate 'PCMCIA/CardBus support' CONFIG_PCMCIA
  14. if [ "$CONFIG_PCMCIA" != "n" ]; then
  15.    # yes, I really mean the following...
  16.    if [ "$CONFIG_ISA" = "y" -o "$CONFIG_ARCH_SA1100" = "y" ]; then
  17.       define_bool CONFIG_PCMCIA_PROBE y
  18.    fi
  19.    if [ "$CONFIG_PCI" != "n" ]; then
  20.       bool '  CardBus support' CONFIG_CARDBUS
  21.    fi
  22.    dep_bool '  i82092 compatible bridge support' CONFIG_I82092 $CONFIG_PCI
  23.    bool '  i82365 compatible bridge support' CONFIG_I82365
  24.    bool '  Databook TCIC host bridge support' CONFIG_TCIC
  25.    if [ "$CONFIG_HD64465" = "y" ]; then
  26.       dep_tristate '  HD64465 host bridge support' CONFIG_HD64465_PCMCIA $CONFIG_PCMCIA
  27.    fi
  28. fi
  29. if [ "$CONFIG_ARM" = "y" ]; then
  30.    dep_tristate '  CLPS6700 support' CONFIG_PCMCIA_CLPS6700 $CONFIG_ARCH_CLPS711X $CONFIG_PCMCIA
  31.    dep_tristate '  SA1100 support' CONFIG_PCMCIA_SA1100 $CONFIG_ARCH_SA1100 $CONFIG_PCMCIA
  32.    dep_tristate '  PXA250/210 support' CONFIG_PCMCIA_PXA $CONFIG_ARCH_PXA $CONFIG_PCMCIA
  33. fi
  34. endmenu