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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Character device configuration
  3. #
  4. mainmenu_option next_comment
  5. comment 'I2C support'
  6. tristate 'I2C support' CONFIG_I2C
  7. if [ "$CONFIG_I2C" != "n" ]; then
  8.    dep_tristate 'I2C bit-banging interfaces'  CONFIG_I2C_ALGOBIT $CONFIG_I2C
  9.    if [ "$CONFIG_I2C_ALGOBIT" != "n" ]; then
  10.       dep_tristate '  Philips style parallel port adapter' CONFIG_I2C_PHILIPSPAR $CONFIG_I2C_ALGOBIT $CONFIG_PARPORT
  11.       dep_tristate '  ELV adapter' CONFIG_I2C_ELV $CONFIG_I2C_ALGOBIT
  12.       dep_tristate '  Velleman K9000 adapter' CONFIG_I2C_VELLEMAN $CONFIG_I2C_ALGOBIT
  13.       if [ "$CONFIG_ARCH_SA1100" = "y" ]; then
  14.          dep_bool '  SA1100 I2C GPIO adapter' CONFIG_I2C_BIT_SA1100_GPIO $CONFIG_I2C_ALGOBIT
  15.       fi
  16.    fi
  17.    dep_tristate 'I2C PCF 8584 interfaces' CONFIG_I2C_ALGOPCF $CONFIG_I2C
  18.    if [ "$CONFIG_I2C_ALGOPCF" != "n" ]; then
  19.       dep_tristate '  Elektor ISA card' CONFIG_I2C_ELEKTOR $CONFIG_I2C_ALGOPCF
  20.    fi
  21.    if [ "$CONFIG_MIPS_ITE8172" = "y" ]; then
  22.       dep_tristate 'ITE I2C Algorithm' CONFIG_ITE_I2C_ALGO $CONFIG_I2C
  23.       if [ "$CONFIG_ITE_I2C_ALGO" != "n" ]; then
  24.          dep_tristate '  ITE I2C Adapter' CONFIG_ITE_I2C_ADAP $CONFIG_ITE_I2C_ALGO
  25.       fi
  26.    fi
  27.    if [ "$CONFIG_8xx" = "y" ]; then
  28.       dep_tristate 'MPC8xx CPM I2C interface' CONFIG_I2C_ALGO8XX $CONFIG_I2C
  29.       if [ "$CONFIG_RPXLITE" = "y" -o "$CONFIG_RPXCLASSIC" = "y" ]; then
  30.          dep_tristate '  Embedded Planet RPX Lite/Classic suppoort' CONFIG_I2C_RPXLITE $CONFIG_I2C_ALGO8XX
  31.       fi
  32.    fi
  33.    if [ "$CONFIG_405" = "y" ]; then
  34.       dep_tristate 'PPC 405 I2C Algorithm' CONFIG_I2C_PPC405_ALGO $CONFIG_I2C
  35.       if [ "$CONFIG_I2C_PPC405_ALGO" != "n" ]; then
  36.          dep_tristate '  PPC 405 I2C Adapter' CONFIG_I2C_PPC405_ADAP $CONFIG_I2C_PPC405_ALGO
  37.       fi
  38.    fi
  39.    if [ "$CONFIG_ARCH_PXA" = "y" ]; then
  40.       dep_tristate 'PXA I2C Algorithm' CONFIG_I2C_PXA_ALGO $CONFIG_I2C
  41.       dep_tristate 'PXA I2C Adapter'   CONFIG_I2C_PXA_ADAP $CONFIG_I2C_PXA_ALGO
  42.    fi
  43.    if [ "$CONFIG_ALL_PPC" = "y" ] ; then
  44.       dep_tristate 'Keywest I2C interface in Apple Core99 machines' CONFIG_I2C_KEYWEST $CONFIG_I2C
  45.    fi
  46. # This is needed for automatic patch generation: sensors code starts here
  47. # This is needed for automatic patch generation: sensors code ends here
  48.    dep_tristate 'I2C device interface' CONFIG_I2C_CHARDEV $CONFIG_I2C
  49.    dep_tristate 'I2C /proc interface (required for hardware sensors)' CONFIG_I2C_PROC $CONFIG_I2C
  50. fi
  51. endmenu