remove defconfig. Now "make defconfig" simply uses defaults from Config.in
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@@ -7,7 +7,7 @@ menu "Networking Utilities"
|
||||
|
||||
config FEATURE_IPV6
|
||||
bool "Enable IPv6 support"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Enable IPv6 support in busybox.
|
||||
This adds IPv6 support in the networking applets.
|
||||
@@ -48,26 +48,26 @@ config VERBOSE_RESOLUTION_ERRORS
|
||||
|
||||
config ARP
|
||||
bool "arp"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Manipulate the system ARP cache.
|
||||
|
||||
config ARPING
|
||||
bool "arping"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Ping hosts by ARP packets.
|
||||
|
||||
config BRCTL
|
||||
bool "brctl"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Manage ethernet bridges.
|
||||
Supports addbr/delbr and addif/delif.
|
||||
|
||||
config FEATURE_BRCTL_FANCY
|
||||
bool "Fancy options"
|
||||
default n
|
||||
default y
|
||||
depends on BRCTL
|
||||
help
|
||||
Add support for extended option like:
|
||||
@@ -78,7 +78,7 @@ config FEATURE_BRCTL_FANCY
|
||||
|
||||
config FEATURE_BRCTL_SHOW
|
||||
bool "Support show, showmac and showstp"
|
||||
default n
|
||||
default y
|
||||
depends on BRCTL && FEATURE_BRCTL_FANCY
|
||||
help
|
||||
Add support for option which prints the current config:
|
||||
@@ -86,19 +86,19 @@ config FEATURE_BRCTL_SHOW
|
||||
|
||||
config DNSD
|
||||
bool "dnsd"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Small and static DNS server daemon.
|
||||
|
||||
config ETHER_WAKE
|
||||
bool "ether-wake"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Send a magic packet to wake up sleeping machines.
|
||||
|
||||
config FAKEIDENTD
|
||||
bool "fakeidentd"
|
||||
default n
|
||||
default y
|
||||
select FEATURE_SYSLOG
|
||||
help
|
||||
fakeidentd listens on the ident port and returns a predefined
|
||||
@@ -106,7 +106,7 @@ config FAKEIDENTD
|
||||
|
||||
config FTPD
|
||||
bool "ftpd"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
simple FTP daemon. You have to run it via inetd.
|
||||
|
||||
@@ -130,38 +130,38 @@ config FEATURE_FTPD_ACCEPT_BROKEN_LIST
|
||||
|
||||
config FTPGET
|
||||
bool "ftpget"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Retrieve a remote file via FTP.
|
||||
|
||||
config FTPPUT
|
||||
bool "ftpput"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Store a remote file via FTP.
|
||||
|
||||
config FEATURE_FTPGETPUT_LONG_OPTIONS
|
||||
bool "Enable long options in ftpget/ftpput"
|
||||
default n
|
||||
default y
|
||||
depends on LONG_OPTS && (FTPGET || FTPPUT)
|
||||
help
|
||||
Support long options for the ftpget/ftpput applet.
|
||||
|
||||
config HOSTNAME
|
||||
bool "hostname"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Show or set the system's host name.
|
||||
|
||||
config HTTPD
|
||||
bool "httpd"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Serve web pages via an HTTP server.
|
||||
|
||||
config FEATURE_HTTPD_RANGES
|
||||
bool "Support 'Ranges:' header"
|
||||
default n
|
||||
default y
|
||||
depends on HTTPD
|
||||
help
|
||||
Makes httpd emit "Accept-Ranges: bytes" header and understand
|
||||
@@ -170,7 +170,7 @@ config FEATURE_HTTPD_RANGES
|
||||
|
||||
config FEATURE_HTTPD_USE_SENDFILE
|
||||
bool "Use sendfile system call"
|
||||
default n
|
||||
default y
|
||||
depends on HTTPD
|
||||
help
|
||||
When enabled, httpd will use the kernel sendfile() function
|
||||
@@ -178,7 +178,7 @@ config FEATURE_HTTPD_USE_SENDFILE
|
||||
|
||||
config FEATURE_HTTPD_SETUID
|
||||
bool "Enable -u <user> option"
|
||||
default n
|
||||
default y
|
||||
depends on HTTPD
|
||||
help
|
||||
This option allows the server to run as a specific user
|
||||
@@ -196,7 +196,7 @@ config FEATURE_HTTPD_BASIC_AUTH
|
||||
|
||||
config FEATURE_HTTPD_AUTH_MD5
|
||||
bool "Support MD5 crypted passwords for http Authentication"
|
||||
default n
|
||||
default y
|
||||
depends on FEATURE_HTTPD_BASIC_AUTH
|
||||
help
|
||||
Enables basic per URL authentication from /etc/httpd.conf
|
||||
@@ -212,7 +212,7 @@ config FEATURE_HTTPD_CGI
|
||||
|
||||
config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
|
||||
bool "Support for running scripts through an interpreter"
|
||||
default n
|
||||
default y
|
||||
depends on FEATURE_HTTPD_CGI
|
||||
help
|
||||
This option enables support for running scripts through an
|
||||
@@ -223,7 +223,7 @@ config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
|
||||
|
||||
config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
|
||||
bool "Set REMOTE_PORT environment variable for CGI"
|
||||
default n
|
||||
default y
|
||||
depends on FEATURE_HTTPD_CGI
|
||||
help
|
||||
Use of this option can assist scripts in generating
|
||||
@@ -241,7 +241,7 @@ config FEATURE_HTTPD_ENCODE_URL_STR
|
||||
|
||||
config FEATURE_HTTPD_ERROR_PAGES
|
||||
bool "Support for custom error pages"
|
||||
default n
|
||||
default y
|
||||
depends on HTTPD
|
||||
help
|
||||
This option allows you to define custom error pages in
|
||||
@@ -254,7 +254,7 @@ config FEATURE_HTTPD_ERROR_PAGES
|
||||
|
||||
config FEATURE_HTTPD_PROXY
|
||||
bool "Support for reverse proxy"
|
||||
default n
|
||||
default y
|
||||
depends on HTTPD
|
||||
help
|
||||
This option allows you to define URLs that will be forwarded
|
||||
@@ -266,7 +266,7 @@ config FEATURE_HTTPD_PROXY
|
||||
|
||||
config IFCONFIG
|
||||
bool "ifconfig"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Ifconfig is used to configure the kernel-resident network interfaces.
|
||||
|
||||
@@ -280,7 +280,7 @@ config FEATURE_IFCONFIG_STATUS
|
||||
|
||||
config FEATURE_IFCONFIG_SLIP
|
||||
bool "Enable slip-specific options \"keepalive\" and \"outfill\""
|
||||
default n
|
||||
default y
|
||||
depends on IFCONFIG
|
||||
help
|
||||
Allow "keepalive" and "outfill" support for SLIP. If you're not
|
||||
@@ -288,7 +288,7 @@ config FEATURE_IFCONFIG_SLIP
|
||||
|
||||
config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
|
||||
bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
|
||||
default n
|
||||
default y
|
||||
depends on IFCONFIG
|
||||
help
|
||||
Allow the start address for shared memory, start address for I/O,
|
||||
@@ -305,7 +305,7 @@ config FEATURE_IFCONFIG_HW
|
||||
|
||||
config FEATURE_IFCONFIG_BROADCAST_PLUS
|
||||
bool "Set the broadcast automatically"
|
||||
default n
|
||||
default y
|
||||
depends on IFCONFIG
|
||||
help
|
||||
Setting this will make ifconfig attempt to find the broadcast
|
||||
@@ -313,20 +313,20 @@ config FEATURE_IFCONFIG_BROADCAST_PLUS
|
||||
|
||||
config IFENSLAVE
|
||||
bool "ifenslave"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Userspace application to bind several interfaces
|
||||
to a logical interface (use with kernel bonding driver).
|
||||
|
||||
config IFPLUGD
|
||||
bool "ifplugd"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Network interface plug detection daemon.
|
||||
|
||||
config IFUPDOWN
|
||||
bool "ifupdown"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Activate or deactivate the specified interfaces. This applet makes
|
||||
use of either "ifconfig" and "route" or the "ip" command to actually
|
||||
@@ -353,7 +353,7 @@ config IFUPDOWN_IFSTATE_PATH
|
||||
|
||||
config FEATURE_IFUPDOWN_IP
|
||||
bool "Use ip applet"
|
||||
default n
|
||||
default y
|
||||
depends on IFUPDOWN
|
||||
help
|
||||
Use the iproute "ip" command to implement "ifup" and "ifdown", rather
|
||||
@@ -375,7 +375,7 @@ config FEATURE_IFUPDOWN_IP_BUILTIN
|
||||
|
||||
config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
|
||||
bool "Use busybox ifconfig and route applets"
|
||||
default y
|
||||
default n
|
||||
depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
|
||||
select IFCONFIG
|
||||
select ROUTE
|
||||
@@ -396,7 +396,7 @@ config FEATURE_IFUPDOWN_IPV4
|
||||
|
||||
config FEATURE_IFUPDOWN_IPV6
|
||||
bool "Support for IPv6"
|
||||
default n
|
||||
default y
|
||||
depends on IFUPDOWN && FEATURE_IPV6
|
||||
help
|
||||
If you need support for IPv6, turn this option on.
|
||||
@@ -404,7 +404,7 @@ config FEATURE_IFUPDOWN_IPV6
|
||||
### UNUSED
|
||||
###config FEATURE_IFUPDOWN_IPX
|
||||
### bool "Support for IPX"
|
||||
### default n
|
||||
### default y
|
||||
### depends on IFUPDOWN
|
||||
### help
|
||||
### If this option is selected you can use busybox to work with IPX
|
||||
@@ -412,7 +412,7 @@ config FEATURE_IFUPDOWN_IPV6
|
||||
|
||||
config FEATURE_IFUPDOWN_MAPPING
|
||||
bool "Enable mapping support"
|
||||
default n
|
||||
default y
|
||||
depends on IFUPDOWN
|
||||
help
|
||||
This enables support for the "mapping" stanza, unless you have
|
||||
@@ -430,7 +430,7 @@ config FEATURE_IFUPDOWN_EXTERNAL_DHCP
|
||||
|
||||
config INETD
|
||||
bool "inetd"
|
||||
default n
|
||||
default y
|
||||
select FEATURE_SYSLOG
|
||||
help
|
||||
Internet superserver daemon
|
||||
@@ -472,7 +472,7 @@ config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
|
||||
|
||||
config FEATURE_INETD_RPC
|
||||
bool "Support RPC services"
|
||||
default n
|
||||
default y
|
||||
depends on INETD
|
||||
select FEATURE_HAVE_RPC
|
||||
help
|
||||
@@ -480,7 +480,7 @@ config FEATURE_INETD_RPC
|
||||
|
||||
config IP
|
||||
bool "ip"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
The "ip" applet is a TCP/IP interface configuration and routing
|
||||
utility. You generally don't need "ip" to use busybox with
|
||||
@@ -509,21 +509,21 @@ config FEATURE_IP_ROUTE
|
||||
|
||||
config FEATURE_IP_TUNNEL
|
||||
bool "ip tunnel"
|
||||
default n
|
||||
default y
|
||||
depends on IP
|
||||
help
|
||||
Add support for tunneling commands to "ip".
|
||||
|
||||
config FEATURE_IP_RULE
|
||||
bool "ip rule"
|
||||
default n
|
||||
default y
|
||||
depends on IP
|
||||
help
|
||||
Add support for rule commands to "ip".
|
||||
|
||||
config FEATURE_IP_SHORT_FORMS
|
||||
bool "Support short forms of ip commands"
|
||||
default n
|
||||
default y
|
||||
depends on IP
|
||||
help
|
||||
Also support short-form of ip <OBJECT> commands:
|
||||
@@ -573,7 +573,7 @@ config IPRULE
|
||||
|
||||
config IPCALC
|
||||
bool "ipcalc"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
ipcalc takes an IP address and netmask and calculates the
|
||||
resulting broadcast, network, and host range.
|
||||
@@ -588,14 +588,14 @@ config FEATURE_IPCALC_FANCY
|
||||
|
||||
config FEATURE_IPCALC_LONG_OPTIONS
|
||||
bool "Enable long options"
|
||||
default n
|
||||
default y
|
||||
depends on IPCALC && LONG_OPTS
|
||||
help
|
||||
Support long options for the ipcalc applet.
|
||||
|
||||
config NAMEIF
|
||||
bool "nameif"
|
||||
default n
|
||||
default y
|
||||
select FEATURE_SYSLOG
|
||||
help
|
||||
nameif is used to rename network interface by its MAC address.
|
||||
@@ -610,7 +610,7 @@ config NAMEIF
|
||||
|
||||
config FEATURE_NAMEIF_EXTENDED
|
||||
bool "Extended nameif"
|
||||
default n
|
||||
default y
|
||||
depends on NAMEIF
|
||||
help
|
||||
This extends the nameif syntax to support the bus_info and driver
|
||||
@@ -623,21 +623,21 @@ config FEATURE_NAMEIF_EXTENDED
|
||||
|
||||
config NC
|
||||
bool "nc"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
A simple Unix utility which reads and writes data across network
|
||||
connections.
|
||||
|
||||
config NC_SERVER
|
||||
bool "Netcat server options (-l)"
|
||||
default n
|
||||
default y
|
||||
depends on NC
|
||||
help
|
||||
Allow netcat to act as a server.
|
||||
|
||||
config NC_EXTRA
|
||||
bool "Netcat extensions (-eiw and filename)"
|
||||
default n
|
||||
default y
|
||||
depends on NC
|
||||
help
|
||||
Add -e (support for executing the rest of the command line after
|
||||
@@ -646,13 +646,13 @@ config NC_EXTRA
|
||||
|
||||
config NETSTAT
|
||||
bool "netstat"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
netstat prints information about the Linux networking subsystem.
|
||||
|
||||
config FEATURE_NETSTAT_WIDE
|
||||
bool "Enable wide netstat output"
|
||||
default n
|
||||
default y
|
||||
depends on NETSTAT
|
||||
help
|
||||
Add support for wide columns. Useful when displaying IPv6 addresses
|
||||
@@ -660,7 +660,7 @@ config FEATURE_NETSTAT_WIDE
|
||||
|
||||
config FEATURE_NETSTAT_PRG
|
||||
bool "Enable PID/Program name output"
|
||||
default n
|
||||
default y
|
||||
depends on NETSTAT
|
||||
help
|
||||
Add support for -p flag to print out PID and program name.
|
||||
@@ -668,13 +668,13 @@ config FEATURE_NETSTAT_PRG
|
||||
|
||||
config NSLOOKUP
|
||||
bool "nslookup"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
nslookup is a tool to query Internet name servers.
|
||||
|
||||
config NTPD
|
||||
bool "ntpd"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
The NTP client/server daemon.
|
||||
|
||||
@@ -688,14 +688,14 @@ config FEATURE_NTPD_SERVER
|
||||
|
||||
config PING
|
||||
bool "ping"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
|
||||
elicit an ICMP ECHO_RESPONSE from a host or gateway.
|
||||
|
||||
config PING6
|
||||
bool "ping6"
|
||||
default n
|
||||
default y
|
||||
depends on FEATURE_IPV6 && PING
|
||||
help
|
||||
This will give you a ping that can talk IPv6.
|
||||
@@ -710,26 +710,26 @@ config FEATURE_FANCY_PING
|
||||
|
||||
config PSCAN
|
||||
bool "pscan"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Simple network port scanner.
|
||||
|
||||
config ROUTE
|
||||
bool "route"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Route displays or manipulates the kernel's IP routing tables.
|
||||
|
||||
config SLATTACH
|
||||
bool "slattach"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
slattach is a small utility to attach network interfaces to serial
|
||||
lines.
|
||||
|
||||
#config TC
|
||||
# bool "tc"
|
||||
# default n
|
||||
# default y
|
||||
# help
|
||||
# show / manipulate traffic control settings
|
||||
#
|
||||
@@ -739,14 +739,14 @@ config SLATTACH
|
||||
|
||||
config TCPSVD
|
||||
bool "tcpsvd"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
tcpsvd listens on a TCP port and runs a program for each new
|
||||
connection.
|
||||
|
||||
config TELNET
|
||||
bool "telnet"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Telnet is an interface to the TELNET protocol, but is also commonly
|
||||
used to test other simple protocols.
|
||||
@@ -772,7 +772,7 @@ config FEATURE_TELNET_AUTOLOGIN
|
||||
|
||||
config TELNETD
|
||||
bool "telnetd"
|
||||
default n
|
||||
default y
|
||||
select FEATURE_SYSLOG
|
||||
help
|
||||
A daemon for the TELNET protocol, allowing you to log onto the host
|
||||
@@ -815,14 +815,14 @@ config TELNETD
|
||||
|
||||
config FEATURE_TELNETD_STANDALONE
|
||||
bool "Support standalone telnetd (not inetd only)"
|
||||
default n
|
||||
default y
|
||||
depends on TELNETD
|
||||
help
|
||||
Selecting this will make telnetd able to run standalone.
|
||||
|
||||
config FEATURE_TELNETD_INETD_WAIT
|
||||
bool "Support -w SEC option (inetd wait mode)"
|
||||
default n
|
||||
default y
|
||||
depends on FEATURE_TELNETD_STANDALONE
|
||||
help
|
||||
This option allows you to run telnetd in "inet wait" mode.
|
||||
@@ -843,7 +843,7 @@ config FEATURE_TELNETD_INETD_WAIT
|
||||
|
||||
config TFTP
|
||||
bool "tftp"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
This enables the Trivial File Transfer Protocol client program. TFTP
|
||||
is usually used for simple, small transfers such as a root image
|
||||
@@ -851,7 +851,7 @@ config TFTP
|
||||
|
||||
config TFTPD
|
||||
bool "tftpd"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
This enables the Trivial File Transfer Protocol server program.
|
||||
It expects that stdin is a datagram socket and a packet
|
||||
@@ -882,7 +882,7 @@ config FEATURE_TFTP_PUT
|
||||
|
||||
config FEATURE_TFTP_BLOCKSIZE
|
||||
bool "Enable 'blksize' and 'tsize' protocol options"
|
||||
default n
|
||||
default y
|
||||
depends on TFTP || TFTPD
|
||||
help
|
||||
Allow tftp to specify block size, and tftpd to understand
|
||||
@@ -890,7 +890,7 @@ config FEATURE_TFTP_BLOCKSIZE
|
||||
|
||||
config FEATURE_TFTP_PROGRESS_BAR
|
||||
bool "Enable tftp progress meter"
|
||||
default n
|
||||
default y
|
||||
depends on TFTP && FEATURE_TFTP_BLOCKSIZE
|
||||
help
|
||||
Show progress bar.
|
||||
@@ -905,20 +905,20 @@ config TFTP_DEBUG
|
||||
|
||||
config TRACEROUTE
|
||||
bool "traceroute"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Utility to trace the route of IP packets.
|
||||
|
||||
config TRACEROUTE6
|
||||
bool "traceroute6"
|
||||
default n
|
||||
default y
|
||||
depends on FEATURE_IPV6 && TRACEROUTE
|
||||
help
|
||||
Utility to trace the route of IPv6 packets.
|
||||
|
||||
config FEATURE_TRACEROUTE_VERBOSE
|
||||
bool "Enable verbose output"
|
||||
default n
|
||||
default y
|
||||
depends on TRACEROUTE
|
||||
help
|
||||
Add some verbosity to traceroute. This includes among other things
|
||||
@@ -941,13 +941,13 @@ config FEATURE_TRACEROUTE_USE_ICMP
|
||||
|
||||
config TUNCTL
|
||||
bool "tunctl"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
tunctl creates or deletes tun devices.
|
||||
|
||||
config FEATURE_TUNCTL_UG
|
||||
bool "Support owner:group assignment"
|
||||
default n
|
||||
default y
|
||||
depends on TUNCTL
|
||||
help
|
||||
Allow to specify owner and group of newly created interface.
|
||||
@@ -966,20 +966,20 @@ config IFUPDOWN_UDHCPC_CMD_OPTIONS
|
||||
|
||||
config UDPSVD
|
||||
bool "udpsvd"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
udpsvd listens on an UDP port and runs a program for each new
|
||||
connection.
|
||||
|
||||
config VCONFIG
|
||||
bool "vconfig"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
Creates, removes, and configures VLAN interfaces
|
||||
|
||||
config WGET
|
||||
bool "wget"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
wget is a utility for non-interactive download of files from HTTP,
|
||||
HTTPS, and FTP servers.
|
||||
@@ -1000,14 +1000,14 @@ config FEATURE_WGET_AUTHENTICATION
|
||||
|
||||
config FEATURE_WGET_LONG_OPTIONS
|
||||
bool "Enable long options"
|
||||
default n
|
||||
default y
|
||||
depends on WGET && LONG_OPTS
|
||||
help
|
||||
Support long options for the wget applet.
|
||||
|
||||
config ZCIP
|
||||
bool "zcip"
|
||||
default n
|
||||
default y
|
||||
select FEATURE_SYSLOG
|
||||
help
|
||||
ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
|
||||
|
@@ -5,14 +5,14 @@
|
||||
|
||||
config UDHCPD
|
||||
bool "udhcp server (udhcpd)"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
udhcpd is a DHCP server geared primarily toward embedded systems,
|
||||
while striving to be fully functional and RFC compliant.
|
||||
|
||||
config DHCPRELAY
|
||||
bool "dhcprelay"
|
||||
default n
|
||||
default y
|
||||
depends on UDHCPD
|
||||
help
|
||||
dhcprelay listens for dhcp requests on one or more interfaces
|
||||
@@ -21,7 +21,7 @@ config DHCPRELAY
|
||||
|
||||
config DUMPLEASES
|
||||
bool "Lease display utility (dumpleases)"
|
||||
default n
|
||||
default y
|
||||
depends on UDHCPD
|
||||
help
|
||||
dumpleases displays the leases written out by the udhcpd server.
|
||||
@@ -30,7 +30,7 @@ config DUMPLEASES
|
||||
|
||||
config FEATURE_UDHCPD_WRITE_LEASES_EARLY
|
||||
bool "Rewrite the lease file at every new acknowledge"
|
||||
default n
|
||||
default y
|
||||
depends on UDHCPD
|
||||
help
|
||||
If selected, udhcpd will write a new file with leases every
|
||||
@@ -48,7 +48,7 @@ config DHCPD_LEASES_FILE
|
||||
|
||||
config UDHCPC
|
||||
bool "udhcp client (udhcpc)"
|
||||
default n
|
||||
default y
|
||||
help
|
||||
udhcpc is a DHCP client geared primarily toward embedded systems,
|
||||
while striving to be fully functional and RFC compliant.
|
||||
@@ -68,7 +68,7 @@ config FEATURE_UDHCPC_ARPING
|
||||
|
||||
config FEATURE_UDHCP_PORT
|
||||
bool "Enable '-P port' option for udhcpd and udhcpc"
|
||||
default n
|
||||
default y
|
||||
depends on UDHCPD || UDHCPC
|
||||
help
|
||||
At the cost of ~300 bytes, enables -P port option.
|
||||
@@ -76,7 +76,7 @@ config FEATURE_UDHCP_PORT
|
||||
|
||||
config UDHCP_DEBUG
|
||||
int "Maximum verbosity level for udhcp applets (0..9)"
|
||||
default 0
|
||||
default 9
|
||||
range 0 9
|
||||
depends on UDHCPD || UDHCPC || DHCPRELAY
|
||||
help
|
||||
@@ -88,7 +88,7 @@ config UDHCP_DEBUG
|
||||
|
||||
config FEATURE_UDHCP_RFC3397
|
||||
bool "Support for RFC3397 domain search (experimental)"
|
||||
default n
|
||||
default y
|
||||
depends on UDHCPD || UDHCPC
|
||||
help
|
||||
If selected, both client and server will support passing of domain
|
||||
|
Reference in New Issue
Block a user