mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
Previously the build failed if NET_ICMPv6_AUTOCONF was disabled (due to the missing `netlib_obtain_ipv6addr` symbol). Closes: #2412
31 lines
716 B
Text
31 lines
716 B
Text
#
|
|
# 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 && NET_ICMPv6_AUTOCONF
|
|
---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
|