Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/networking/Config.src

    r2725 r3232  
    5252    bool "arp"
    5353    default y
    54     depends on PLATFORM_LINUX
     54    select PLATFORM_LINUX
    5555    help
    5656      Manipulate the system ARP cache.
     
    5959    bool "arping"
    6060    default y
    61     depends on PLATFORM_LINUX
     61    select PLATFORM_LINUX
    6262    help
    6363      Ping hosts by ARP packets.
     
    6666    bool "brctl"
    6767    default y
    68     depends on PLATFORM_LINUX
     68    select PLATFORM_LINUX
    6969    help
    7070      Manage ethernet bridges.
     
    8383
    8484config FEATURE_BRCTL_SHOW
    85     bool "Support show, showmac and showstp"
     85    bool "Support show"
    8686    default y
    8787    depends on BRCTL && FEATURE_BRCTL_FANCY
    8888    help
    8989      Add support for option which prints the current config:
    90         showmacs, showstp, show
     90        show
    9191
    9292config DNSD
     
    9999    bool "ether-wake"
    100100    default y
    101     depends on PLATFORM_LINUX
     101    select PLATFORM_LINUX
    102102    help
    103103      Send a magic packet to wake up sleeping machines.
     
    200200      Utilizes password settings from /etc/httpd.conf for basic
    201201      authentication on a per url basis.
     202      Example for httpd.conf file:
     203      /adm:toor:PaSsWd
    202204
    203205config FEATURE_HTTPD_AUTH_MD5
     
    206208    depends on FEATURE_HTTPD_BASIC_AUTH
    207209    help
    208       Enables basic per URL authentication from /etc/httpd.conf
    209       using md5 passwords.
     210      Enables encrypted passwords, and wildcard user/passwords
     211      in httpd.conf file.
     212      User '*' means 'any system user name is ok',
     213      password of '*' means 'use system password for this user'
     214      Examples:
     215      /adm:toor:$1$P/eKnWXS$aI1aPGxT.dJD5SzqAKWrF0
     216      /adm:root:*
     217      /wiki:*:*
    210218
    211219config FEATURE_HTTPD_CGI
     
    224232      This option enables support for running scripts through an
    225233      interpreter. Turn this on if you want PHP scripts to work
    226       properly. You need to supply an additional line in your httpd
    227       config file:
     234      properly. You need to supply an additional line in your
     235      httpd.conf file:
    228236      *.php:/path/to/your/php
    229237
     
    282290    bool "ifconfig"
    283291    default y
    284     depends on PLATFORM_LINUX
     292    select PLATFORM_LINUX
    285293    help
    286294      Ifconfig is used to configure the kernel-resident network interfaces.
     
    330338    bool "ifenslave"
    331339    default y
    332     depends on PLATFORM_LINUX
     340    select PLATFORM_LINUX
    333341    help
    334342      Userspace application to bind several interfaces
     
    338346    bool "ifplugd"
    339347    default y
    340     depends on PLATFORM_LINUX
     348    select PLATFORM_LINUX
    341349    help
    342350      Network interface plug detection daemon.
     
    380388    bool "Use busybox ip applet"
    381389    default y
    382     depends on FEATURE_IFUPDOWN_IP && PLATFORM_LINUX
     390    depends on FEATURE_IFUPDOWN_IP
     391    select PLATFORM_LINUX
    383392    select IP
    384393    select FEATURE_IP_ADDRESS
     
    499508    bool "ip"
    500509    default y
    501     depends on PLATFORM_LINUX
     510    select PLATFORM_LINUX
    502511    help
    503512      The "ip" applet is a TCP/IP interface configuration and routing
     
    612621      Support long options for the ipcalc applet.
    613622
    614 config NAMEIF
    615     bool "nameif"
    616     default y
    617     depends on PLATFORM_LINUX
    618     select FEATURE_SYSLOG
    619     help
    620       nameif is used to rename network interface by its MAC address.
    621       Renamed interfaces MUST be in the down state.
    622       It is possible to use a file (default: /etc/mactab)
    623       with list of new interface names and MACs.
    624       Maximum interface name length: IFNAMSIZ = 16
    625       File fields are separated by space or tab.
    626       File format:
    627       # Comment
    628       new_interface_name    XX:XX:XX:XX:XX:XX
    629 
    630 config FEATURE_NAMEIF_EXTENDED
    631     bool "Extended nameif"
    632     default y
    633     depends on NAMEIF
    634     help
    635       This extends the nameif syntax to support the bus_info and driver
    636       checks. The syntax is compatible to the normal nameif.
    637       File format:
    638         new_interface_name  driver=asix bus=usb-0000:00:08.2-3
    639         new_interface_name  bus=usb-0000:00:08.2-3 00:80:C8:38:91:B5
    640         new_interface_name  mac=00:80:C8:38:91:B5
    641         new_interface_name  00:80:C8:38:91:B5
    642 
    643623config NETSTAT
    644624    bool "netstat"
    645625    default y
    646     depends on PLATFORM_LINUX
     626    select PLATFORM_LINUX
    647627    help
    648628      netstat prints information about the Linux networking subsystem.
     
    673653    bool "ntpd"
    674654    default y
    675     depends on PLATFORM_LINUX
     655    select PLATFORM_LINUX
    676656    help
    677657      The NTP client/server daemon.
     
    685665      ntpd will be usable only as a NTP client.
    686666
    687 config PING
    688     bool "ping"
    689     default y
    690     depends on PLATFORM_LINUX
    691     help
    692       ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
    693       elicit an ICMP ECHO_RESPONSE from a host or gateway.
    694 
    695 config PING6
    696     bool "ping6"
    697     default y
    698     depends on FEATURE_IPV6 && PING
    699     help
    700       This will give you a ping that can talk IPv6.
    701 
    702 config FEATURE_FANCY_PING
    703     bool "Enable fancy ping output"
    704     default y
    705     depends on PING
    706     help
    707       Make the output from the ping applet include statistics, and at the
    708       same time provide full support for ICMP packets.
    709 
    710667config PSCAN
    711668    bool "pscan"
     
    717674    bool "route"
    718675    default y
    719     depends on PLATFORM_LINUX
     676    select PLATFORM_LINUX
    720677    help
    721678      Route displays or manipulates the kernel's IP routing tables.
     
    724681    bool "slattach"
    725682    default y
    726     depends on PLATFORM_LINUX
     683    select PLATFORM_LINUX
    727684    help
    728685      slattach is a small utility to attach network interfaces to serial
     
    911868    bool "traceroute"
    912869    default y
    913     depends on PLATFORM_LINUX
     870    select PLATFORM_LINUX
    914871    help
    915872      Utility to trace the route of IP packets.
     
    948905    bool "tunctl"
    949906    default y
    950     depends on PLATFORM_LINUX
     907    select PLATFORM_LINUX
    951908    help
    952909      tunctl creates or deletes tun devices.
     
    981938    bool "vconfig"
    982939    default y
    983     depends on PLATFORM_LINUX
     940    select PLATFORM_LINUX
    984941    help
    985942      Creates, removes, and configures VLAN interfaces
     
    989946    default y
    990947    help
    991       wget is a utility for non-interactive download of files from HTTP,
    992       HTTPS, and FTP servers.
     948      wget is a utility for non-interactive download of files from HTTP
     949      and FTP servers.
    993950
    994951config FEATURE_WGET_STATUSBAR
     
    1028985    bool "zcip"
    1029986    default y
    1030     depends on PLATFORM_LINUX
     987    select PLATFORM_LINUX
    1031988    select FEATURE_SYSLOG
    1032989    help
Note: See TracChangeset for help on using the changeset viewer.