aboutsummaryrefslogtreecommitdiff
path: root/fs/jffs2/compr_lzari.c
AgeCommit message (Collapse)AuthorFilesLines
2010-01-15JFFS2: drop support for LZARI compression modeWolfgang Denk1-259/+0
Support for LZARI compression mode was added based on a MTD CVS snapshot of March 13, 2005. However, fs/jffs2/compr_lzari.c contains contradictory licensing terms: the original copyright clause says "All rights reserved. Permission granted for non-commercial use.", but later reference to the file 'LICENCE' in the jffs2 directory was added which says GPL v2 or later. As no boards ever used LZARI compression, and this file is also not present in recent MTD code, we resolve this conflict by removing the conflicting file and references to it. Also copy the referenced but missing file 'LICENCE' from the current MTD source tree. Signed-off-by: Wolfgang Denk <wd@denx.de>
2008-08-31fs: Move conditional compilation to MakefileJean-Christophe PLAGNIOL-VILLARD1-3/+0
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2007-07-09fs/: Remove obsolete references to CONFIG_COMMANDSJon Loeliger1-2/+2
Signed-off-by: Jon Loeliger <jdl@freescale.com>
2007-07-04fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).Jon Loeliger1-1/+1
This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by: Jon Loeliger <jdl@freescale.com>
2005-05-05It's better to handle LZO and LZARI compression mdoes for JFFS2 withLABEL_2005_05_05_1920wdenk1-2/+2
a single #define.
2005-05-05Major upate of JFFS2 code; now in sync with snapshot of MTD CVS ofwdenk1-0/+262
March 13, 2005); new configuration options CONFIG_JFFS2_LZO and CONFIG_JFFS2_LZARI are added. Both are undefined by default.