diff options
| author | wdenk <wdenk> | 2005-04-02 22:37:54 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2005-04-02 22:37:54 +0000 | 
| commit | 414eec35e3832f4f9ce8a25ace7ead638be1f76f (patch) | |
| tree | a599df7a979e35b52494cfcd0d3f11d4270bc755 /common/cmd_net.c | |
| parent | be6b6e4e2de5fc857fb8207b5fce3f463c33f793 (diff) | |
| download | olio-uboot-2014.01-414eec35e3832f4f9ce8a25ace7ead638be1f76f.tar.xz olio-uboot-2014.01-414eec35e3832f4f9ce8a25ace7ead638be1f76f.zip | |
Fix problems with SNTP support;
enable SNTP support in some boards.
Diffstat (limited to 'common/cmd_net.c')
| -rw-r--r-- | common/cmd_net.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_net.c b/common/cmd_net.c index b6d436e9c..18ea4b96f 100644 --- a/common/cmd_net.c +++ b/common/cmd_net.c @@ -137,13 +137,13 @@ static void netboot_update_env (void)  	if (NetOurNISDomain[0])  		setenv ("domain", NetOurNISDomain); -#if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_TIMEOFFSET) +#if (CONFIG_COMMANDS & CFG_CMD_SNTP) && (CONFIG_BOOTP_MASK & CONFIG_BOOTP_TIMEOFFSET)  	if (NetTimeOffset) {  		sprintf (tmp, "%d", NetTimeOffset);  		setenv ("timeoffset", tmp);  	}  #endif -#if (CONFIG_BOOTP_MASK & CONFIG_BOOTP_NTPSERVER) +#if (CONFIG_COMMANDS & CFG_CMD_SNTP) && (CONFIG_BOOTP_MASK & CONFIG_BOOTP_NTPSERVER)  	if (NetNtpServerIP) {  		ip_to_string (NetNtpServerIP, tmp);  		setenv ("ntpserverip", tmp); |