Re: [OE-core] [PATCH v2] sstate.bbclass: add option to use alternate compression in lieu of gzip

2011-12-06 Thread McClintock Matthew-B29882
On Fri, Dec 2, 2011 at 11:24 AM, Matthew McClintock m...@freescale.com wrote: -               tar -czf ${SSTATE_PKG} * +               tar -${SSTATE_PKG_TAROPT}cf ${SSTATE_PKG} *        else -               tar -cz --file=${SSTATE_PKG} --files-from=/dev/null +               tar

[OE-core] [PATCH v2] sstate.bbclass: add option to use alternate compression in lieu of gzip

2011-12-02 Thread Matthew McClintock
The savings can be substantial. The resutls below are for a core-image-minimal type image: gzip:1.1G sstate-cache xz 714M sstate-cache Signed-off-by: Matthew McClintock m...@freescale.com --- v2: This one actually works! meta/classes/sstate.bbclass | 19 +++ 1