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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # HIL device driver configuration
  3. #
  4. mainmenu_option next_comment
  5. comment 'HIL support'
  6. if [ "$CONFIG_INPUT" = "n" ]; then
  7.    comment 'Input support needed for HIL support'
  8. else
  9.    bool 'HIL core support' CONFIG_HIL
  10.    if [ "$CONFIG_HIL" != "n" ]; then
  11.     dep_tristate '  HIL Keyboard (basic) support' CONFIG_HIL_KBD_BASIC $CONFIG_INPUT_KEYBDEV
  12.     comment ' HIL driver core support'
  13.     tristate '  HP System Device Controller i8042 Support' CONFIG_HP_SDC
  14.     dep_tristate '  HP SDC Real Time Clock' CONFIG_HP_SDC_RTC $CONFIG_HP_SDC
  15.     dep_tristate '  HIL MLC Support' CONFIG_HIL_MLC $CONFIG_HP_SDC $CONFIG_INPUT_SERIO
  16.     if [ "$CONFIG_INPUT_SERIO" = "n"  ]; then
  17.       comment '  Serial IO support needed for HIL keyboard and mouse support'
  18.     else
  19.       # This is not accurate but for now it will save confusion.
  20.       define_tristate CONFIG_HP_SDC_MLC $CONFIG_HIL_MLC
  21.     fi
  22.     
  23.     comment ' HIL device driver'
  24.   
  25.     if [ "$CONFIG_HIL_MLC" != "n"  ]; then
  26.       if [ "$CONFIG_INPUT_KEYBDEV" = "n" ]; then
  27.         comment '  Keyboard input needed for HIL keyboard support'
  28.       else
  29.         dep_tristate '  HIL Keyboard (full) support' CONFIG_HIL_KBD $CONFIG_INPUT_KEYBDEV $CONFIG_HIL_MLC
  30.       fi
  31.       if [ "$CONFIG_INPUT_MOUSEDEV" = "n" ]; then
  32.         comment '  Mouse input support needed for HIL mouse/pointer support'
  33.       else
  34.         dep_tristate '  HIL Mouse & Pointer support' CONFIG_HIL_PTR $CONFIG_INPUT_MOUSEDEV $CONFIG_HIL_MLC
  35.       fi
  36.     fi
  37.    fi
  38. fi
  39. endmenu