From: Benoît Thébaudeau Date: Fri, 10 Aug 2012 07:45:31 +0000 (+0000) Subject: env_common: Add missing ethprime X-Git-Tag: v2012.10-rc1~27 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=84209afb87d10300a326589b5ce6e9e56bd5195b;p=u-boot env_common: Add missing ethprime The ethprime env var was missing from env_common. Signed-off-by: Benoît Thébaudeau Cc: Wolfgang Denk --- diff --git a/common/env_common.c b/common/env_common.c index d9e990dbbe..911a6afd1b 100644 --- a/common/env_common.c +++ b/common/env_common.c @@ -80,6 +80,9 @@ const uchar default_environment[] = { #ifdef CONFIG_ETH5ADDR "eth5addr=" MK_STR(CONFIG_ETH5ADDR) "\0" #endif +#ifdef CONFIG_ETHPRIME + "ethprime=" CONFIG_ETHPRIME "\0" +#endif #ifdef CONFIG_IPADDR "ipaddr=" MK_STR(CONFIG_IPADDR) "\0" #endif