File: Config.in

package info (click to toggle)
kernel-source-2.4.14 2.4.14-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 139,160 kB
  • ctags: 428,423
  • sloc: ansic: 2,435,554; asm: 141,119; makefile: 8,258; sh: 3,099; perl: 2,561; yacc: 1,177; cpp: 755; tcl: 577; lex: 352; awk: 251; lisp: 218; sed: 72
file content (31 lines) | stat: -rw-r--r-- 850 bytes parent folder | download | duplicates (5)
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
#
# IrDA protocol configuration
#

if [ "$CONFIG_NET" != "n" ]; then

   mainmenu_option next_comment
   comment 'IrDA (infrared) support'
   dep_tristate 'IrDA subsystem support' CONFIG_IRDA $CONFIG_NET

   if [ "$CONFIG_IRDA" != "n" ]; then
      comment 'IrDA protocols'
      source net/irda/irlan/Config.in
      source net/irda/irnet/Config.in
      source net/irda/ircomm/Config.in
      bool '  Ultra (connectionless) protocol' CONFIG_IRDA_ULTRA
      bool '  IrDA protocol options' CONFIG_IRDA_OPTIONS
      if [ "$CONFIG_IRDA_OPTIONS" != "n" ]; then
	 comment '  IrDA options'
	 bool '    Cache last LSAP' CONFIG_IRDA_CACHE_LAST_LSAP
	 bool '    Fast RRs' CONFIG_IRDA_FAST_RR
	 bool '    Debug information' CONFIG_IRDA_DEBUG
      fi
   fi

   if [ "$CONFIG_IRDA" != "n" ]; then
      source drivers/net/irda/Config.in
   fi
   endmenu
fi