CONFIG_CMD_SNTP doesn't do anything useful withou CONFIG_CMD_DATE (which sunxi doesn't set, nor does it provide the required rtc_set() function).
Also drop some of the more obscure BOOTP options which there doesn't seem to be any need for. Highlighted by Marek during upstream review. Signed-off-by: Ian Campbell <[email protected]> --- include/configs/sunxi-common.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h index 2adaec0..035bc60 100644 --- a/include/configs/sunxi-common.h +++ b/include/configs/sunxi-common.h @@ -405,19 +405,10 @@ #ifdef CONFIG_CMD_NET #define CONFIG_CMD_NFS -#define CONFIG_CMD_SNTP -#define CONFIG_TIMESTAMP /* Needed by SNTP */ #define CONFIG_CMD_DNS #define CONFIG_NETCONSOLE -#define CONFIG_BOOTP_NISDOMAIN -#define CONFIG_BOOTP_BOOTFILESIZE #define CONFIG_BOOTP_DNS2 #define CONFIG_BOOTP_SEND_HOSTNAME -#define CONFIG_BOOTP_NTPSERVER -#define CONFIG_BOOTP_TIMEOFFSET -#define CONFIG_BOOTP_MAY_FAIL -#define CONFIG_BOOTP_SERVERIP -#define CONFIG_BOOTP_DHCP_REQUEST_DELAY 50000 #endif #if !defined CONFIG_ENV_IS_IN_MMC && \ -- 1.9.0 -- You received this message because you are subscribed to the Google Groups "linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
