From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Beno=C3=AEt_Th=C3=A9baudeau?= Date: Fri, 10 Aug 2012 19:45:31 +0200 (CEST) Subject: [U-Boot] [PATCH 2/5] env_common: Add missing ethprime In-Reply-To: <1334481525.2280373.1344620691713.JavaMail.root@advansee.com> Message-ID: <651400486.2280394.1344620731065.JavaMail.root@advansee.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The ethprime env var was missing from env_common. Signed-off-by: Beno?t Th?baudeau Cc: Wolfgang Denk --- .../common/env_common.c | 3 +++ 1 file changed, 3 insertions(+) diff --git u-boot-4d3c95f.orig/common/env_common.c u-boot-4d3c95f/common/env_common.c index d9e990d..911a6af 100644 --- u-boot-4d3c95f.orig/common/env_common.c +++ u-boot-4d3c95f/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