summaryrefslogtreecommitdiffstats
path: root/net/Config.in
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1997-01-07 02:33:00 +0000
committer <ralf@linux-mips.org>1997-01-07 02:33:00 +0000
commitbeb116954b9b7f3bb56412b2494b562f02b864b1 (patch)
tree120e997879884e1b9d93b265221b939d2ef1ade1 /net/Config.in
parent908d4681a1dc3792ecafbe64265783a86c4cccb6 (diff)
Import of Linux/MIPS 2.1.14
Diffstat (limited to 'net/Config.in')
-rw-r--r--net/Config.in36
1 files changed, 36 insertions, 0 deletions
diff --git a/net/Config.in b/net/Config.in
new file mode 100644
index 000000000..834001fdc
--- /dev/null
+++ b/net/Config.in
@@ -0,0 +1,36 @@
+#
+# Network configuration
+#
+mainmenu_option next_comment
+comment 'Networking options'
+bool 'Kernel/User network link driver' CONFIG_NETLINK
+if [ "$CONFIG_NETLINK" = "y" ]; then
+ bool 'Routing messages' CONFIG_RTNETLINK
+fi
+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
+
+ if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+ tristate 'The IPv6 protocol' CONFIG_IPV6
+ fi
+fi
+
+comment ' '
+tristate 'The IPX protocol' CONFIG_IPX
+if [ "$CONFIG_IPX" != "n" ]; then
+ bool 'Full internal IPX network' CONFIG_IPX_INTERN
+fi
+tristate 'Appletalk DDP' CONFIG_ATALK
+tristate 'Amateur Radio AX.25 Level 2' CONFIG_AX25
+if [ "$CONFIG_AX25" != "n" ]; then
+ dep_tristate 'Amateur Radio NET/ROM' CONFIG_NETROM $CONFIG_AX25
+ dep_tristate 'Amateur Radio X.25 PLP (Rose)' CONFIG_ROSE $CONFIG_AX25
+fi
+if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
+# tristate 'CCITT X.25 Packet Layer' CONFIG_X25
+ bool 'Bridging (EXPERIMENTAL)' CONFIG_BRIDGE
+fi
+endmenu