summaryrefslogtreecommitdiffstats
path: root/drivers/net/wan/Config.in
blob: 503854a0f9aa2dbab280a36a23d873804ed2d914 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#
# wan devices configuration
#

mainmenu_option next_comment
comment 'Wan interfaces'

bool 'Wan interfaces support' CONFIG_WAN
if [ "$CONFIG_WAN" = "y" ]; then

	# There is no way to detect a comtrol sv11 - force it modular for now.
	
	dep_tristate 'Comtrol Hostess SV-11 support' CONFIG_HOSTESS_SV11 m

	# The COSA/SRP driver has not been tested as non-modular yet.

	dep_tristate 'COSA/SRP sync serial boards support' CONFIG_COSA m

	# There is no way to detect a Sealevel board. Force it modular

	dep_tristate 'Sealevel Systems 4021 support' CONFIG_SEALEVEL_4021 m

	tristate 'Frame relay DLCI support' CONFIG_DLCI
	if [ "$CONFIG_DLCI" != "n" ]; then
	   int 'Max open DLCI' CONFIG_DLCI_COUNT 24
	   int 'Max DLCI per device' CONFIG_DLCI_MAX 8
	   dep_tristate '  SDLA (Sangoma S502/S508) support' CONFIG_SDLA $CONFIG_DLCI
	fi

	# Wan router core.

	if [ "$CONFIG_WAN_ROUTER" != "n" ]; then
	   bool 'WAN router drivers' CONFIG_WAN_ROUTER_DRIVERS
	   if [ "$CONFIG_WAN_ROUTER_DRIVERS" = "y" ]; then
	      dep_tristate '  Sangoma WANPIPE(tm) multiprotocol cards' CONFIG_VENDOR_SANGOMA $CONFIG_WAN_ROUTER_DRIVERS
	      if [ "$CONFIG_VENDOR_SANGOMA" != "n" ]; then
		 int 'Maximum number of cards' CONFIG_WANPIPE_CARDS 1
		 bool '    WANPIPE X.25 support' CONFIG_WANPIPE_X25
		 bool '    WANPIPE Frame Relay support' CONFIG_WANPIPE_FR
		 bool '    WANPIPE PPP support' CONFIG_WANPIPE_PPP
	      fi
	      if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
		 dep_tristate '  Cyclom 2X(tm) cards (EXPERIMENTAL)' CONFIG_CYCLADES_SYNC $CONFIG_WAN_ROUTER_DRIVERS
		 if [ "$CONFIG_CYCLADES_SYNC" != "n" ]; then
		    bool '    Cyclom 2X X.25 support' CONFIG_CYCLOMX_X25
		 fi
	      fi
	   fi
	fi

	# X.25 network drivers

	if [ "$CONFIG_X25" != "n" ]; then
	   if [ "$CONFIG_LAPB" != "n" ]; then
	      dep_tristate 'LAPB over Ethernet driver' CONFIG_LAPBETHER $CONFIG_LAPB
	      dep_tristate 'X.25 async driver' CONFIG_X25_ASY $CONFIG_LAPB
	   fi
	fi

	tristate 'SBNI12-xx support' CONFIG_SBNI
fi

endmenu