79e8722743
Support Stateless and Stateful. The renew6 is used as follows: - Stateless: renew6 eth0 - Stateful: renew6 eth0 1 Signed-off-by: liqinhui <liqinhui@xiaomi.com>
32 lines
693 B
Plaintext
32 lines
693 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config SYSTEM_DHCPC_RENEW6
|
|
tristate "DHCP IPv6 Address Renewal"
|
|
default n
|
|
select NETUTILS_DHCP6C
|
|
depends on NET_UDP && NET_IPv6
|
|
---help---
|
|
Enable the DHCP client 'renew6' command
|
|
|
|
if SYSTEM_DHCPC_RENEW6
|
|
|
|
config DHCPC_RENEW6_PROGNAME
|
|
string "Program dhcpv6 name"
|
|
default "renew6"
|
|
---help---
|
|
This is the name of the program that will be used when the NSH ELF
|
|
program is installed.
|
|
|
|
config DHCPC_RENEW6_PRIORITY
|
|
int "DHCPC6 task priority"
|
|
default 100
|
|
|
|
config DHCPC_RENEW6_STACKSIZE
|
|
int "DHCPC6 stack size"
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
endif
|