File: Config.in

package info (click to toggle)
kernel-source-2.0.32 2.0.32-5
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 29,648 kB
  • ctags: 86,850
  • sloc: ansic: 542,141; asm: 26,201; makefile: 3,423; sh: 1,195; perl: 727; tcl: 408; cpp: 277; lisp: 211; awk: 134
file content (27 lines) | stat: -rw-r--r-- 771 bytes parent folder | download | duplicates (3)
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
#
# Network configuration
#
mainmenu_option next_comment
comment 'Networking options'
bool 'Network firewalls' CONFIG_FIREWALL
bool 'Network aliasing'  CONFIG_NET_ALIAS
bool 'TCP/IP networking' CONFIG_INET
if [ "$CONFIG_INET" = "y" ]; then
  source net/ipv4/Config.in
fi
comment ' '
tristate 'The IPX protocol' CONFIG_IPX
tristate 'Appletalk DDP' CONFIG_ATALK
bool 'Amateur Radio AX.25 Level 2' CONFIG_AX25
if [ "$CONFIG_AX25" = "y" ]; then
  bool 'AX.25 over Ethernet' CONFIG_BPQETHER
  bool 'Amateur Radio NET/ROM' CONFIG_NETROM
fi
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
  bool 'Bridging (EXPERIMENTAL)' CONFIG_BRIDGE
fi
bool 'Kernel/User network link driver' CONFIG_NETLINK
if [ "$CONFIG_NETLINK" = "y" ]; then
  bool 'Routing messages' CONFIG_RTNETLINK
fi
endmenu