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 (36 lines) | stat: -rw-r--r-- 1,078 bytes parent folder | download | duplicates (9)
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
#
# Amateur Radio protocols and AX.25 device configuration
#
# 19971130	Now in an own category to make correct compilation of the 
#		AX.25 stuff easier...
#		Joerg Reuter DL1BKE <jreuter@yaina.de>
# 19980129	Moved to net/ax25/Config.in, sourcing device drivers.

mainmenu_option next_comment
comment 'Amateur Radio support'
bool 'Amateur Radio support' CONFIG_HAMRADIO

if [ "$CONFIG_HAMRADIO" != "n" ]; then
   if [ "$CONFIG_NET" != "n" ]; then
      comment 'Packet Radio protocols'
      tristate '  Amateur Radio AX.25 Level 2 protocol' CONFIG_AX25
      if [ "$CONFIG_AX25" != "n" ]; then
	 bool '    AX.25 DAMA Slave support' CONFIG_AX25_DAMA_SLAVE
#	 bool '    AX.25 DAMA Master support' CONFIG_AX25_DAMA_MASTER
	 dep_tristate '    Amateur Radio NET/ROM protocol' CONFIG_NETROM $CONFIG_AX25
	 dep_tristate '    Amateur Radio X.25 PLP (Rose)' CONFIG_ROSE $CONFIG_AX25
      fi

      if [ "$CONFIG_AX25" != "n" ]; then
	 mainmenu_option next_comment
	 comment 'AX.25 network device drivers'

	 source drivers/net/hamradio/Config.in

	 endmenu
      fi
   fi

fi

endmenu