From c9f20d9fb93c6c316518483fd103f3afab5cf1af Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 5 Dec 2002 08:41:41 +0000 Subject: Yet another major rework of the BusyBox config system, using the considerably modified Kbuild system I put into uClibc. With this, there should be no more need to modify Rules.mak since I've moved all the interesting options into the config system. I think I've got everything updated, but you never know, I may have made some mistakes, so watch closely. -Erik --- networking/config.in | 92 ---------------------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 networking/config.in (limited to 'networking/config.in') diff --git a/networking/config.in b/networking/config.in deleted file mode 100644 index de5b92064..000000000 --- a/networking/config.in +++ /dev/null @@ -1,92 +0,0 @@ -# -# For a description of the syntax of this configuration file, -# see scripts/kbuild/config-language.txt. -# - -mainmenu_option next_comment -comment 'Networking Utilities' - -bool 'Enable IPv6 support' CONFIG_FEATURE_IPV6 -bool 'hostname' CONFIG_HOSTNAME -bool 'ifconfig' CONFIG_IFCONFIG -if [ "$CONFIG_IFCONFIG" = "y" ]; then - bool ' Enable status reporting output (+7k)' CONFIG_FEATURE_IFCONFIG_STATUS - bool ' Enable slip-specific options "keepalive" and "outfill"' CONFIG_FEATURE_IFCONFIG_SLIP - bool ' Enable options "mem_start", "io_addr", and "irq"' CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ - bool ' Enable option "hw" (ether only)' CONFIG_FEATURE_IFCONFIG_HW - bool ' Set the broadcast automatically' CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS -fi -bool 'ifupdown' CONFIG_IFUPDOWN -if [ "$CONFIG_IFUPDOWN" = "y" ]; then - bool ' Enable support for IPv4' CONFIG_FEATURE_IFUPDOWN_IPV4 - bool ' Enable support for IPv6 (requires ip command)' CONFIG_FEATURE_IFUPDOWN_IPV6 - bool ' Enable support for IPX (requires ipx_interface command)' CONFIG_FEATURE_IFUPDOWN_IPX -fi -bool 'ip' CONFIG_IP -if [ "$CONFIG_IP" = "y" ]; then - bool ' address' CONFIG_FEATURE_IP_ADDRESS - bool ' link' CONFIG_FEATURE_IP_LINK - bool ' route' CONFIG_FEATURE_IP_ROUTE - bool ' tunnel' CONFIG_FEATURE_IP_TUNNEL -fi -bool 'ipcalc' CONFIG_IPCALC -if [ "$CONFIG_IPCALC" = "y" ]; then - bool ' Fancy IPCALC, more options, adds 300 bytes' CONFIG_FEATURE_IPCALC_FANCY -fi -bool 'ipaddr' CONFIG_IPADDR -if [ "$CONFIG_IP" = "y" ] && [ "$CONFIG_IPADDR" = "y" ]; then - define_bool CONFIG_FEATURE_IP_ADDRESS y -fi -bool 'iplink' CONFIG_IPLINK -if [ "$CONFIG_IP" = "y" ] && [ "$CONFIG_IPLINK" = "y" ]; then - define_bool CONFIG_FEATURE_IP_LINK y -fi -bool 'iproute' CONFIG_IPROUTE -if [ "$CONFIG_IP" = "y" ] && [ "$CONFIG_IPROUTE" = "y" ]; then - define_bool CONFIG_FEATURE_IP_ROUTE y -fi -bool 'iptunnel' CONFIG_IPTUNNEL -if [ "$CONFIG_IP" = "y" ] && [ "$CONFIG_IPTUNNEL" = "y" ]; then - define_bool CONFIG_FEATURE_IP_TUNNEL y -fi -bool 'nc' CONFIG_NC -bool 'netstat' CONFIG_NETSTAT -bool 'nslookup' CONFIG_NSLOOKUP -bool 'ping' CONFIG_PING -if [ "$CONFIG_PING" = "y" ]; then - bool ' Enable fancy ping output' CONFIG_FEATURE_FANCY_PING -fi -if [ "$CONFIG_FEATURE_IPV6" = "y" ]; then - bool 'ping6' CONFIG_PING6 - if [ "$CONFIG_PING6" = "y" ]; then - bool ' Enable fancy ping6 output' CONFIG_FEATURE_FANCY_PING6 - fi -fi -bool 'route' CONFIG_ROUTE -bool 'telnet' CONFIG_TELNET -if [ "$CONFIG_TELNET" = "y" ]; then - bool ' Pass TERM type to remote host' CONFIG_FEATURE_TELNET_TTYPE -fi -bool 'telnetd' CONFIG_TELNETD -bool 'tftp' CONFIG_TFTP -if [ "$CONFIG_TFTP" = "y" ]; then - bool ' Enable "get" command' CONFIG_FEATURE_TFTP_GET - bool ' Enable "put" command' CONFIG_FEATURE_TFTP_PUT - bool ' Enable "blocksize" option' CONFIG_FEATURE_TFTP_BLOCKSIZE - bool ' Enable debug' CONFIG_FEATURE_TFTP_DEBUG -fi -bool 'traceroute' CONFIG_TRACEROUTE -if [ "$CONFIG_TRACEROUTE" = "y" ]; then - bool ' Enable verbose output' CONFIG_FEATURE_TRACEROUTE_VERBOSE - bool ' Enable SO_DEBUG option' CONFIG_FEATURE_TRACEROUTE_SO_DEBUG -fi -bool 'wget' CONFIG_WGET -if [ "$CONFIG_WGET" = "y" ]; then - bool ' Enable a nifty process meter (+2k)' CONFIG_FEATURE_WGET_STATUSBAR - bool ' Enable HTTP authentication' CONFIG_FEATURE_WGET_AUTHENTICATION -fi - -source networking/udhcp/config.in - -endmenu - -- cgit v1.2.3