Re: [U-Boot] [PATCH] Add support for LZ4 decompression algorithm

2015-10-03 Thread Julius Werner
> > I get this build error with sandbox. > > test/built-in.o: In function `uncompress_using_lz4': > /home/sjg/c/src/third_party/u-boot/files/test/compression.c:278: > undefined reference to `ulz4fn' > Yeah... that's because you didn't configure it in. I'm not really sure how this is supposed to wo

Re: [U-Boot] [PATCH] Add support for LZ4 decompression algorithm

2015-10-03 Thread Simon Glass
Hi Julius, On 2 October 2015 at 23:18, Julius Werner wrote: >> >> I get this build error with sandbox. >> >> test/built-in.o: In function `uncompress_using_lz4': >> /home/sjg/c/src/third_party/u-boot/files/test/compression.c:278: >> undefined reference to `ulz4fn' > > > Yeah... that's because you

Re: [U-Boot] [PATCH] Add support for LZ4 decompression algorithm

2015-10-02 Thread Simon Glass
Hi Julius, On 25 September 2015 at 18:27, Julius Werner wrote: > This patch adds support for LZ4-compressed FIT image contents. This > algorithm has a slightly worse compression ration than LZO while being > nearly twice as fast to decompress. When loading images from a fast > storage medium this

[U-Boot] [PATCH] Add support for LZ4 decompression algorithm

2015-09-26 Thread Julius Werner
This patch adds support for LZ4-compressed FIT image contents. This algorithm has a slightly worse compression ration than LZO while being nearly twice as fast to decompress. When loading images from a fast storage medium this usually results in a boot time win. Compile-tested only since I don't h