Re: [U-Boot] [PATCH 2/2] Add unlzo command

2012-09-18 Thread Joe Hershberger
Hi Mike, On Fri, Aug 17, 2012 at 6:26 PM, Mike Frysinger wrote: > On Friday 17 August 2012 16:59:44 Joe Hershberger wrote: >> --- a/common/Makefile >> +++ b/common/Makefile >> >> ifdef CONFIG_LZMA >> COBJS-$(CONFIG_CMD_UNLZMA) += cmd_unlzma.o >> endif >> +ifdef CONFIG_LZO >> +COBJS-$(CONFIG_CM

Re: [U-Boot] [PATCH 2/2] Add unlzo command

2012-08-17 Thread Mike Frysinger
On Friday 17 August 2012 16:59:44 Joe Hershberger wrote: > --- a/common/Makefile > +++ b/common/Makefile > > ifdef CONFIG_LZMA > COBJS-$(CONFIG_CMD_UNLZMA) += cmd_unlzma.o > endif > +ifdef CONFIG_LZO > +COBJS-$(CONFIG_CMD_UNLZO) += cmd_unlzo.o > +endif imo, these ifdefs shouldn't exist. the co

[U-Boot] [PATCH 2/2] Add unlzo command

2012-08-17 Thread Joe Hershberger
Provide access to the lzo decompressor from the command line. Signed-off-by: Joe Hershberger --- common/Makefile| 3 +++ common/cmd_unlzo.c | 65 ++ 2 files changed, 68 insertions(+) create mode 100644 common/cmd_unlzo.c diff --git a/com