diff options
| author | richardretanubun <richardretanubun@ruggedcom.com> | 2008-09-29 18:28:23 -0400 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:00 +0200 | 
| commit | c68a05feeb88de9fcf158e67ff6423c4cc988f88 (patch) | |
| tree | f970fa26b563081ab5a61196d696c6d2bd069018 /tools/env/fw_env.c | |
| parent | 41410eee472b0f42e03a77f961bbc55ef58f3c01 (diff) | |
| download | olio-uboot-2014.01-c68a05feeb88de9fcf158e67ff6423c4cc988f88.tar.xz olio-uboot-2014.01-c68a05feeb88de9fcf158e67ff6423c4cc988f88.zip | |
Adds two more ethernet interface to 83xx
Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
Six eth interface is chosen because the platform I am using combines
UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'tools/env/fw_env.c')
| -rw-r--r-- | tools/env/fw_env.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c index 46747d337..6e9c34f3d 100644 --- a/tools/env/fw_env.c +++ b/tools/env/fw_env.c @@ -157,6 +157,12 @@ static char default_environment[] = {  #ifdef	CONFIG_ETH3ADDR  	"eth3addr=" MK_STR (CONFIG_ETH3ADDR) "\0"  #endif +#ifdef	CONFIG_ETH4ADDR +	"eth4addr=" MK_STR (CONFIG_ETH4ADDR) "\0" +#endif +#ifdef	CONFIG_ETH5ADDR +	"eth5addr=" MK_STR (CONFIG_ETH5ADDR) "\0" +#endif  #ifdef	CONFIG_ETHPRIME  	"ethprime=" CONFIG_ETHPRIME "\0"  #endif |