Config.in
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/config-language.txt.
  4. #
  5. # Parport configuration.
  6. #
  7. mainmenu_option next_comment
  8. comment 'Parallel port support'
  9. tristate 'Parallel port support' CONFIG_PARPORT
  10. if [ "$CONFIG_PARPORT" != "n" ]; then
  11.    dep_tristate '  PC-style hardware' CONFIG_PARPORT_PC $CONFIG_PARPORT
  12.    if [ "$CONFIG_PARPORT_PC" != "n" -a "$CONFIG_SERIAL" != "n" ]; then
  13.       if [ "$CONFIG_SERIAL" = "m" ]; then
  14.          define_tristate CONFIG_PARPORT_PC_CML1 m
  15.       else
  16.          define_tristate CONFIG_PARPORT_PC_CML1 $CONFIG_PARPORT_PC
  17.       fi
  18.       dep_tristate '    Multi-IO cards (parallel and serial)' CONFIG_PARPORT_SERIAL $CONFIG_PARPORT_PC_CML1
  19.    fi
  20.    if [ "$CONFIG_PARPORT_PC" != "n" ]; then
  21.       if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
  22.          bool '    Use FIFO/DMA if available (EXPERIMENTAL)' CONFIG_PARPORT_PC_FIFO
  23.          bool '    SuperIO chipset support (EXPERIMENTAL)' CONFIG_PARPORT_PC_SUPERIO
  24.       fi
  25.       if [ "$CONFIG_HOTPLUG" = "y" -a "$CONFIG_PCMCIA" != "n" ]; then
  26.          if [ "$CONFIG_PARPORT_PC" = "y" ]; then
  27.             dep_tristate '    Support for PCMCIA management for PC-style ports' CONFIG_PARPORT_PC_PCMCIA $CONFIG_PCMCIA
  28.          else
  29.             dep_tristate '    Support for PCMCIA management for PC-style ports' CONFIG_PARPORT_PC_PCMCIA $CONFIG_PARPORT_PC
  30.          fi
  31.       fi
  32.    fi
  33.    if [ "$CONFIG_ARM" = "y" ]; then
  34.       dep_tristate '  Archimedes hardware' CONFIG_PARPORT_ARC $CONFIG_PARPORT
  35.    fi
  36.    if [ "$CONFIG_AMIGA" = "y" ]; then
  37.       dep_tristate '  Amiga builtin port' CONFIG_PARPORT_AMIGA $CONFIG_PARPORT
  38.       if [ "$CONFIG_ZORRO" != "n" ]; then
  39.  dep_tristate '  Multiface III parallel port' CONFIG_PARPORT_MFC3 $CONFIG_PARPORT
  40.       fi
  41.    else
  42.       define_tristate CONFIG_PARPORT_AMIGA n
  43.       define_tristate CONFIG_PARPORT_MFC3 n
  44.    fi
  45.    if [ "$CONFIG_ATARI" = "y" ]; then
  46.       dep_tristate '  Atari hardware' CONFIG_PARPORT_ATARI $CONFIG_PARPORT
  47.    else
  48.       define_tristate CONFIG_PARPORT_ATARI n
  49.    fi
  50.    if [ "$CONFIG_GSC_LASI" = "y" ]; then
  51.       dep_tristate '  LASI/ASP builtin parallel-port' CONFIG_PARPORT_GSC $CONFIG_PARPORT
  52.    else
  53.       define_tristate CONFIG_PARPORT_GSC n
  54.    fi
  55.    if [ "$CONFIG_SBUS" = "y" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
  56.       dep_tristate '  Sparc hardware (EXPERIMENTAL)' CONFIG_PARPORT_SUNBPP $CONFIG_PARPORT
  57.    else
  58.       define_tristate CONFIG_PARPORT_SUNBPP n
  59.    fi
  60.    # If exactly one hardware type is selected then parport will optimise away
  61.    # support for loading any others.  Defeat this if the user is keen.
  62.    bool '  Support foreign hardware' CONFIG_PARPORT_OTHER
  63.    bool '  IEEE 1284 transfer modes' CONFIG_PARPORT_1284
  64. fi
  65. endmenu