diff options
author | Chris Packham | 2018-05-03 20:19:02 +1200 |
---|---|---|
committer | Tom Rini | 2018-05-14 21:28:38 -0400 |
commit | 9b23c73d5e044aa19883b6528f549fff227f6703 (patch) | |
tree | 14245225bce0ec5755f6fcc46ff32c355ab6207a /cmd/Kconfig | |
parent | a8ca5c8adb3efe892982389aae8b2a234939a588 (diff) |
net: Add Kconfig option for BOOTP_NTPSERVER
Add a Kconfig option for BOOTP_NTPSERVER to enable the DHCP/BOOTP option
to configure the sntp server address.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index eb14e08f773..38406fcfdac 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1094,6 +1094,10 @@ config BOOTP_SUBNETMASK default y depends on CMD_BOOTP +config BOOTP_NTPSERVER + bool "Request & store 'ntpserverip' from BOOTP/DHCP server" + depends on CMD_BOOTP + config BOOTP_PXE bool "Send PXE client arch to BOOTP/DHCP server" default y |