File: Config.in

package info (click to toggle)
kernel-image-2.4.18-hppa 62.3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 156,012 kB
  • ctags: 448,723
  • sloc: ansic: 2,586,445; asm: 145,047; makefile: 8,574; sh: 3,097; perl: 2,578; yacc: 1,177; tcl: 577; lex: 352; awk: 251; lisp: 218; sed: 72
file content (48 lines) | stat: -rw-r--r-- 1,497 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#
# HIL device driver configuration
#

mainmenu_option next_comment
comment 'HIL support'


if [ "$CONFIG_INPUT" = "n" ]; then
   comment 'Input support needed for HIL support'
else
   bool 'HIL core support' CONFIG_HIL

   if [ "$CONFIG_HIL" != "n" ]; then
    dep_tristate '  HIL Keyboard (basic) support' CONFIG_HIL_KBD_BASIC $CONFIG_INPUT_KEYBDEV

    comment ' HIL driver core support'
    tristate '  HP System Device Controller i8042 Support' CONFIG_HP_SDC
    dep_tristate '  HP SDC Real Time Clock' CONFIG_HP_SDC_RTC $CONFIG_HP_SDC

    dep_tristate '  HIL MLC Support' CONFIG_HIL_MLC $CONFIG_HP_SDC $CONFIG_INPUT_SERIO
    if [ "$CONFIG_INPUT_SERIO" = "n"  ]; then
      comment '  Serial IO support needed for HIL keyboard and mouse support'
    else
      # This is not accurate but for now it will save confusion.
      define_tristate CONFIG_HP_SDC_MLC $CONFIG_HIL_MLC
    fi
    
    comment ' HIL device driver'
  
    if [ "$CONFIG_HIL_MLC" != "n"  ]; then
      if [ "$CONFIG_INPUT_KEYBDEV" = "n" ]; then
        comment '  Keyboard input needed for HIL keyboard support'
      else
        dep_tristate '  HIL Keyboard (full) support' CONFIG_HIL_KBD $CONFIG_INPUT_KEYBDEV $CONFIG_HIL_MLC
      fi

      if [ "$CONFIG_INPUT_MOUSEDEV" = "n" ]; then
        comment '  Mouse input support needed for HIL mouse/pointer support'
      else
        dep_tristate '  HIL Mouse & Pointer support' CONFIG_HIL_PTR $CONFIG_INPUT_MOUSEDEV $CONFIG_HIL_MLC
      fi
    fi

   fi
fi

endmenu