2017-05-21 10:51:26 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2017-06-23 18:13:51 -06:00
|
|
|
config SYSTEM_DHCPC_RENEW
|
2018-09-03 09:29:56 -06:00
|
|
|
tristate "DHCP Address Renewal"
|
2017-05-21 10:51:26 -06:00
|
|
|
default n
|
|
|
|
select NETUTILS_DHCPC
|
2017-05-21 10:53:45 -06:00
|
|
|
depends on NET_UDP && NET_BROADCAST && NET_IPv4 && NET_ETHERNET
|
2017-05-21 10:51:26 -06:00
|
|
|
---help---
|
2020-02-23 12:51:44 +08:00
|
|
|
Enable the DHCP client 'renew' command
|
2017-05-21 10:51:26 -06:00
|
|
|
|
2017-06-23 18:13:51 -06:00
|
|
|
if SYSTEM_DHCPC_RENEW
|
2017-05-21 10:51:26 -06:00
|
|
|
|
2017-06-23 18:13:51 -06:00
|
|
|
config DHCPC_RENEW_PROGNAME
|
2017-05-21 10:51:26 -06:00
|
|
|
string "Program name"
|
|
|
|
default "renew"
|
|
|
|
---help---
|
2019-08-23 11:59:28 -06:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2017-05-21 10:51:26 -06:00
|
|
|
program is installed.
|
|
|
|
|
2017-06-23 18:13:51 -06:00
|
|
|
config DHCPC_RENEW_PRIORITY
|
2017-05-21 10:51:26 -06:00
|
|
|
int "DHCPC task priority"
|
|
|
|
default 100
|
|
|
|
|
2017-06-23 18:13:51 -06:00
|
|
|
config DHCPC_RENEW_STACKSIZE
|
2017-05-21 10:51:26 -06:00
|
|
|
int "DHCPC stack size"
|
2020-03-27 14:10:33 +09:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2017-05-21 10:51:26 -06:00
|
|
|
|
|
|
|
endif
|