diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/env_common.c | 2 | ||||
| -rw-r--r-- | common/env_embedded.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/common/env_common.c b/common/env_common.c index 596af82d7..c7e9bea04 100644 --- a/common/env_common.c +++ b/common/env_common.c @@ -112,7 +112,7 @@ const uchar default_environment[] = {  	"hostname="	MK_STR(CONFIG_HOSTNAME)		"\0"  #endif  #ifdef	CONFIG_BOOTFILE -	"bootfile="	MK_STR(CONFIG_BOOTFILE)		"\0" +	"bootfile="	CONFIG_BOOTFILE			"\0"  #endif  #ifdef	CONFIG_LOADADDR  	"loadaddr="	MK_STR(CONFIG_LOADADDR)		"\0" diff --git a/common/env_embedded.c b/common/env_embedded.c index 9b3018a48..6ce130776 100644 --- a/common/env_embedded.c +++ b/common/env_embedded.c @@ -166,7 +166,7 @@ env_t environment __PPCENV__ = {  	"hostname="	MK_STR(CONFIG_HOSTNAME)		"\0"  #endif  #ifdef	CONFIG_BOOTFILE -	"bootfile="	MK_STR(CONFIG_BOOTFILE)		"\0" +	"bootfile="	CONFIG_BOOTFILE			"\0"  #endif  #ifdef	CONFIG_LOADADDR  	"loadaddr="	MK_STR(CONFIG_LOADADDR)		"\0" |