nuttx-apps/netutils/wakeonlan/Kconfig
Xiang Xiao bb1e93cb67 netutils/wakeonlan: Remove the tab from the blank line in Kconfig
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2021-05-12 10:48:44 +01:00

32 lines
741 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config NETUTILS_WAKEONLAN
bool "WakeOnLAN support"
default n
depends on NET_UDP && NET_SOCKOPTS
---help---
Enable the wake on LAN command "wol". This command
sends a WakeOnLAN magic packet to target MAC address.
if NETUTILS_WAKEONLAN
config NETUTILS_WAKEONLAN_PROGNAME
string "Program name"
default "wol"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config NETUTILS_WAKEONLAN_PRIORITY
int "WakeOnLAN task priority"
default 100
config NETUTILS_WAKEONLAN_STACKSIZE
int "WakeOnLAN stack size"
default DEFAULT_TASK_STACKSIZE
endif