diff mbox

[U-Boot,2/5] env_common: Add missing ethprime

Message ID 651400486.2280394.1344620731065.JavaMail.root@advansee.com
State Accepted
Commit 84209afb87d10300a326589b5ce6e9e56bd5195b
Delegated to: Tom Rini
Headers show

Commit Message

Benoît Thébaudeau Aug. 10, 2012, 5:45 p.m. UTC
The ethprime env var was missing from env_common.

Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Cc: Wolfgang Denk <wd@denx.de>
---
 .../common/env_common.c                            |    3 +++
 1 file changed, 3 insertions(+)

Comments

Tom Rini Sept. 18, 2012, 7:05 p.m. UTC | #1
On Fri, Aug 10, 2012 at 07:45:31AM -0000, Beno?t Th?baudeau wrote:

> The ethprime env var was missing from env_common.
> 
> Signed-off-by: Beno?t Th?baudeau <benoit.thebaudeau@advansee.com>
> Cc: Wolfgang Denk <wd@denx.de>

Applied to u-boot/master, thanks!
diff mbox

Patch

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