]> git.hungrycats.org Git - linux/commitdiff
[PATCH] PATCH 2.5: kconfig missing EXPERIMENTAL (2_14)
authorGreg Banks <gnb@alphalink.com.au>
Thu, 20 Jun 2002 06:44:26 +0000 (23:44 -0700)
committerLinus Torvalds <torvalds@penguin.transmeta.com>
Thu, 20 Jun 2002 06:44:26 +0000 (23:44 -0700)
Four symbols CONFIG_ATM_CLIP, CONFIG_ATM_CLIP_NO_ICMP, CONFIG_ATM_LANE,
and CONFIG_ATM_MPOA depend on CONFIG_EXPERIMENTAL but do not say so
in their banners.

net/Config.in

index d56b29187ab67912c52873c4933d916b61f8d61c..752875ca5d9247b5ddd60af07210b3d410cc1cc8 100644 (file)
@@ -34,14 +34,14 @@ if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
    bool 'Asynchronous Transfer Mode (ATM) (EXPERIMENTAL)' CONFIG_ATM
    if [ "$CONFIG_ATM" = "y" ]; then
       if [ "$CONFIG_INET" = "y" ]; then
-        bool '  Classical IP over ATM' CONFIG_ATM_CLIP
+        bool '  Classical IP over ATM (EXPERIMENTAL)' CONFIG_ATM_CLIP
         if [ "$CONFIG_ATM_CLIP" = "y" ]; then
-           bool '    Do NOT send ICMP if no neighbour' CONFIG_ATM_CLIP_NO_ICMP
+           bool '    Do NOT send ICMP if no neighbour (EXPERIMENTAL)' CONFIG_ATM_CLIP_NO_ICMP
         fi
       fi
-      tristate '  LAN Emulation (LANE) support' CONFIG_ATM_LANE
+      tristate '  LAN Emulation (LANE) support (EXPERIMENTAL)' CONFIG_ATM_LANE
       if [ "$CONFIG_INET" = "y" -a "$CONFIG_ATM_LANE" != "n" ]; then
-        tristate '    Multi-Protocol Over ATM (MPOA) support' CONFIG_ATM_MPOA
+        tristate '    Multi-Protocol Over ATM (MPOA) support (EXPERIMENTAL)' CONFIG_ATM_MPOA
       fi
    fi
 fi