Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

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

    r3232 r3621  
    135135      Most other ftp servers seem to behave similar to this.
    136136
     137config FEATURE_FTP_AUTHENTICATION
     138    bool "Enable authentication"
     139    default y
     140    depends on FTPD
     141    help
     142      Enable basic system login as seen in telnet etc.
     143
    137144config FTPGET
    138145    bool "ftpget"
     
    174181      "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
    175182      downloads, seeking in multimedia players etc.
    176 
    177 config FEATURE_HTTPD_USE_SENDFILE
    178     bool "Use sendfile system call"
    179     default y
    180     depends on HTTPD
    181     help
    182       When enabled, httpd will use the kernel sendfile() function
    183       instead of read/write loop.
    184183
    185184config FEATURE_HTTPD_SETUID
     
    499498config FEATURE_INETD_RPC
    500499    bool "Support RPC services"
    501     default y
     500    default n  # very rarely used, and needs Sun RPC support in libc
    502501    depends on INETD
    503502    select FEATURE_HAVE_RPC
     
    535534      Add support for routing table management to "ip".
    536535
     536config FEATURE_IP_ROUTE_DIR
     537    string "ip route configuration directory"
     538    default "/etc/iproute2"
     539    depends on FEATURE_IP_ROUTE
     540    help
     541      Location of the "ip" applet routing configuration.
     542
    537543config FEATURE_IP_TUNNEL
    538544    bool "ip tunnel"
     
    548554    help
    549555      Add support for rule commands to "ip".
     556
     557config FEATURE_IP_NEIGH
     558    bool "ip neighbor"
     559    default y
     560    depends on IP
     561    help
     562      Add support for neighbor commands to "ip".
    550563
    551564config FEATURE_IP_SHORT_FORMS
     
    560573      ip tunnel -> iptunnel
    561574      ip rule   -> iprule
     575      ip neigh  -> ipneigh
    562576
    563577      Say N unless you desparately need the short form of the ip
     
    599613    depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_RULE
    600614
     615config IPNEIGH
     616    bool
     617    default y
     618    depends on FEATURE_IP_SHORT_FORMS && FEATURE_IP_NEIGH
     619
    601620config IPCALC
    602621    bool "ipcalc"
     
    664683      Make ntpd usable as a NTP server. If you disable this option
    665684      ntpd will be usable only as a NTP client.
     685
     686config FEATURE_NTPD_CONF
     687    bool "Make ntpd understand /etc/ntp.conf"
     688    default y
     689    depends on NTPD
     690    help
     691      Make ntpd look in /etc/ntp.conf for peers. Only "server address"
     692      is supported.
    666693
    667694config PSCAN
     
    744771      Note that for busybox telnetd to work you need several things:
    745772      First of all, your kernel needs:
    746           UNIX98_PTYS=y
    747           DEVPTS_FS=y
     773          CONFIG_UNIX98_PTYS=y
    748774
    749775      Next, you need a /dev/pts directory on your root filesystem:
     
    942968      Creates, removes, and configures VLAN interfaces
    943969
    944 config WGET
    945     bool "wget"
    946     default y
    947     help
    948       wget is a utility for non-interactive download of files from HTTP
    949       and FTP servers.
    950 
    951 config FEATURE_WGET_STATUSBAR
    952     bool "Enable a nifty process meter (+2k)"
    953     default y
    954     depends on WGET
    955     help
    956       Enable the transfer progress bar for wget transfers.
    957 
    958 config FEATURE_WGET_AUTHENTICATION
    959     bool "Enable HTTP authentication"
    960     default y
    961     depends on WGET
    962     help
    963       Support authenticated HTTP transfers.
    964 
    965 config FEATURE_WGET_LONG_OPTIONS
    966     bool "Enable long options"
    967     default y
    968     depends on WGET && LONG_OPTS
    969     help
    970       Support long options for the wget applet.
    971 
    972 config FEATURE_WGET_TIMEOUT
    973     bool "Enable read timeout option -T SEC"
    974     default y
    975     depends on WGET
    976     help
    977       Supports network read timeout for wget, so that wget will give
    978       up and timeout when reading network data, through the -T command
    979       line option.  Currently only network data read timeout is
    980       supported (i.e., timeout is not applied to the DNS nor TCP
    981       connection initialization).  When FEATURE_WGET_LONG_OPTIONS is
    982       also enabled, the --timeout option will work in addition to -T.
    983 
    984970config ZCIP
    985971    bool "zcip"
Note: See TracChangeset for help on using the changeset viewer.