diff options
Diffstat (limited to 'common/image.c')
| -rw-r--r-- | common/image.c | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/common/image.c b/common/image.c index 6eaf41eb1..82e7aa436 100644 --- a/common/image.c +++ b/common/image.c @@ -148,6 +148,7 @@ static table_entry_t uimage_comp[] = {  	{	IH_COMP_BZIP2,	"bzip2",	"bzip2 compressed",	},  	{	IH_COMP_GZIP,	"gzip",		"gzip compressed",	},  	{	IH_COMP_LZMA,	"lzma",		"lzma compressed",	}, +	{	IH_COMP_LZO,	"lzo",		"lzo compressed",	},  	{	-1,		"",		"",			},  }; @@ -435,11 +436,7 @@ phys_size_t getenv_bootm_size(void)  	char *s = getenv ("bootm_size");  	if (s) {  		phys_size_t tmp; -#ifdef CONFIG_SYS_64BIT_STRTOUL  		tmp = (phys_size_t)simple_strtoull (s, NULL, 16); -#else -		tmp = (phys_size_t)simple_strtoul (s, NULL, 16); -#endif  		return tmp;  	} |