From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris Packham Date: Fri, 27 Apr 2018 21:55:04 +1200 Subject: [U-Boot] [PATCH 1/2] net: Add Kconfig option for BOOTP_NTPSERVER Message-ID: <20180427095505.25035-1-judge.packham@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Add a Kconfig option for BOOTP_NTPSERVER to enable the DHCP/BOOTP option to configure the sntp server address. Signed-off-by: Chris Packham --- cmd/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/Kconfig b/cmd/Kconfig index bc1d2f31c010..dfb0fddb7671 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1086,6 +1086,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 -- 2.17.0