nuttx-apps/system/dhcp6c/Kconfig
Lars Kruse d35dd65727 system/dhcp6c: add NET_ICMPv6_AUTOCONF dependency
Previously the build failed if NET_ICMPv6_AUTOCONF was disabled
(due to the missing `netlib_obtain_ipv6addr` symbol).

Closes: #2412
2024-10-08 19:56:50 +08:00

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