- Kai Germaschewski: ymfpci cleanups and resource leak fixes
[davej-history.git] / net / Config.in
blob4d4f6c37312639b529d9d847b4c723d0218d4cdd
2 # Network configuration
4 mainmenu_option next_comment
5 comment 'Networking options'
6 tristate 'Packet socket' CONFIG_PACKET
7 if [ "$CONFIG_PACKET" != "n" ]; then
8    bool '  Packet socket: mmapped IO' CONFIG_PACKET_MMAP
9 fi
10 bool 'Kernel/User netlink socket' CONFIG_NETLINK
11 if [ "$CONFIG_NETLINK" = "y" ]; then
12    bool '  Routing messages' CONFIG_RTNETLINK
13    tristate '  Netlink device emulation' CONFIG_NETLINK_DEV
15 bool 'Network packet filtering (replaces ipchains)' CONFIG_NETFILTER
16 if [ "$CONFIG_NETFILTER" = "y" ]; then
17    bool '  Network packet filtering debugging' CONFIG_NETFILTER_DEBUG
19 bool 'Socket Filtering'  CONFIG_FILTER
20 tristate 'Unix domain sockets' CONFIG_UNIX
21 bool 'TCP/IP networking' CONFIG_INET
22 if [ "$CONFIG_INET" = "y" ]; then
23    source net/ipv4/Config.in
24    if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
25 #   IPv6 as module will cause a CRASH if you try to unload it
26       tristate '  The IPv6 protocol (EXPERIMENTAL)' CONFIG_IPV6
27       if [ "$CONFIG_IPV6" != "n" ]; then
28          source net/ipv6/Config.in
29       fi
30    fi
31    if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
32       source net/khttpd/Config.in
33    fi
35 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
36    bool 'Asynchronous Transfer Mode (ATM) (EXPERIMENTAL)' CONFIG_ATM
37    if [ "$CONFIG_ATM" = "y" ]; then
38       if [ "$CONFIG_INET" = "y" ]; then
39          bool '  Classical IP over ATM' CONFIG_ATM_CLIP
40          if [ "$CONFIG_ATM_CLIP" = "y" ]; then
41             bool '    Do NOT send ICMP if no neighbour' CONFIG_ATM_CLIP_NO_ICMP
42          fi
43       fi
44       tristate '  LAN Emulation (LANE) support' CONFIG_ATM_LANE
45       if [ "$CONFIG_INET" = "y" -a "$CONFIG_ATM_LANE" != "n" ]; then
46          tristate '    Multi-Protocol Over ATM (MPOA) support' CONFIG_ATM_MPOA
47       fi
48    fi
51 comment ' '
52 tristate 'The IPX protocol' CONFIG_IPX
53 if [ "$CONFIG_IPX" != "n" ]; then
54    source net/ipx/Config.in
56 tristate 'Appletalk protocol support' CONFIG_ATALK
57 tristate 'DECnet Support' CONFIG_DECNET
58 if [ "$CONFIG_DECNET" != "n" ]; then
59    source net/decnet/Config.in
61 tristate '802.1d Ethernet Bridging' CONFIG_BRIDGE
62 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
63    tristate 'CCITT X.25 Packet Layer (EXPERIMENTAL)' CONFIG_X25
64    tristate 'LAPB Data Link Driver (EXPERIMENTAL)' CONFIG_LAPB
65    bool '802.2 LLC (EXPERIMENTAL)' CONFIG_LLC
66    bool 'Frame Diverter (EXPERIMENTAL)' CONFIG_NET_DIVERT
67 #   if [ "$CONFIG_LLC" = "y" ]; then
68 #      bool '  Netbeui (EXPERIMENTAL)' CONFIG_NETBEUI
69 #   fi
70    if [ "$CONFIG_INET" = "y" ]; then
71       tristate 'Acorn Econet/AUN protocols (EXPERIMENTAL)' CONFIG_ECONET
72    fi
73    if [ "$CONFIG_ECONET" != "n" ]; then
74       bool '  AUN over UDP' CONFIG_ECONET_AUNUDP
75       bool '  Native Econet' CONFIG_ECONET_NATIVE
76    fi
77    tristate 'WAN router' CONFIG_WAN_ROUTER
78    bool 'Fast switching (read help!)' CONFIG_NET_FASTROUTE
79    bool 'Forwarding between high speed interfaces' CONFIG_NET_HW_FLOWCONTROL
80    if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
81       mainmenu_option next_comment
82       comment 'QoS and/or fair queueing'
83       bool 'QoS and/or fair queueing (EXPERIMENTAL)' CONFIG_NET_SCHED
84       if [ "$CONFIG_NET_SCHED" = "y" ]; then
85          source net/sched/Config.in
86       fi
87 #      bool 'Network code profiler' CONFIG_NET_PROFILE
88       endmenu
89    fi
91 endmenu